I have 204 data with 6 atribute.
When i create the model with all data with this script, model = C5.0(dataset1[,-7], dataset1[,7])
,
the result give me no node like the picture below.
But, if i just use 100 data with this script, model = C5.0(dataset1[1:100,-7], dataset1[1:100,7])
, the result give me a good decision tree like the picture below.
What is the problem? Is the problem in the data? Thank you.