#title CART
[[TableOfContents]]

==== R ====
{{{
library(rpart)
cart=rpart(Species ~., data=iris, method="class")
plot(cart)
text(cart, use.n=FALSE, pretty=0)
}}}

==== 참고자료 ====
 * http://ai-times.tistory.com/159