I create the model and do the predicition with this script in R,
model = C5.0(dataset1[1:100, -7], dataset1[1:100, 7])
if I run summary(model)
, the output is just confusion matrix and the decision tree.
Then, how to know the all prediction result that includes all data that already processed with all attributes, actual class and the prediction class?
Thank you.