Thursday 17 October 2019

DT -EA

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