Saturday, 13 April 2019

DT

install.packages("party")
library(party)

View(readingSkills)
input = readingSkills[c(1:105),]
View(input)

output= ctree(
nativeSpeaker ~ age + shoeSize + score,
data = input)

plot(output)

No comments:

Post a Comment