cobie
cobie

Reputation: 7271

Classification Tree in R

Am totally new to R and I am trying to make use of classification trees for classifying some data. What has me confused is what library to make use of. Should I make use of rpart or tree?

Upvotes: 0

Views: 423

Answers (1)

Simon Urbanek
Simon Urbanek

Reputation: 13932

Use the rpart package. The tree package is included mainly for compatibility with older scripts.

Upvotes: 4

Related Questions