April 2020
Intermediate to advanced
330 pages
7h 44m
English
For our first task, we will use the tic-tac-toe dataset from the ReinforcementLearning package. In this case, the dataset is built for us; however, we will investigate how it is made to understand how to get data into the proper format for reinforcement learning:
library(ReinforcementLearning)data("tictactoe")
After running these lines, you will see the data object in the data Environment pane. Its current type is <Promise>; however, we will change that in the next step to see what is contained ...
Read now
Unlock full access