I want to use train and test in J48 decision-tree on R. here is my code:
library("RWeka")
data <- read.csv("try.csv")
resultJ48 <- J48(classificationTry~., data)
summary(resultJ48)
but I want to split my data into 70% train and 30% test, how can I use the J48 algo to do it?
many thanks!
use the
sample.split()
function of thecaTools
package. It is more leightweight than thecaret
package (which is a meta package if I remember correctly):