| tictactoe {sbrl} | R Documentation |
SHUFFLED TIC-TAC-TOE-ENDGAME DATASET
Description
This is a shuffled version of the Tic-Tac-Toe Endgame Data Set on UCI Machine Learning Repository.
Usage
data("tictactoe")
Format
A data frame with 958 observations on the following 10 variables.
c1a factor with levels
b,o,xc2a factor with levels
b,o,xc3a factor with levels
b,o,xc4a factor with levels
b,o,xc5a factor with levels
b,o,xc6a factor with levels
b,o,xc7a factor with levels
b,o,xc8a factor with levels
b,o,xc9a factor with levels
b,o,xlabelan integer with values
0,1
Details
This database encodes the complete set of possible board configurations at the end of tic-tac-toe games, where "x" is assumed to have played first. The target concept is "win for x" (i.e., true when "x" has one of 8 possible ways to create a "three-in-a-row").
Source
https://archive.ics.uci.edu/ml/datasets/Tic-Tac-Toe+Endgame
Examples
data(tictactoe)
## maybe str(tictactoe) ; plot(tictactoe) ...
#clean up
rm(list = ls())
gc()