Created
September 3, 2015 17:12
-
-
Save myui/2c9df50db3de93a71b92 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@relation weather.symbolic | |
@attribute outlook {sunny, overcast, rainy} | |
@attribute temperature {hot, mild, cool} | |
@attribute humidity {high, normal} | |
@attribute windy {TRUE, FALSE} | |
@attribute play {yes, no} | |
@data | |
sunny,hot,high,FALSE,no | |
sunny,hot,high,TRUE,no | |
overcast,hot,high,FALSE,yes | |
rainy,mild,high,FALSE,yes | |
rainy,cool,normal,FALSE,yes | |
rainy,cool,normal,TRUE,no | |
overcast,cool,normal,TRUE,yes | |
sunny,mild,high,FALSE,no | |
sunny,cool,normal,FALSE,yes | |
rainy,mild,normal,FALSE,yes | |
sunny,mild,normal,TRUE,yes | |
overcast,mild,high,TRUE,yes | |
overcast,hot,normal,FALSE,yes | |
rainy,mild,high,TRUE,no |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Qué atributos serán utilizados para predecir la clase?