reg_dtree | R Documentation |
Creates a regression object that uses the Decision Tree method for regression It wraps the tree library.
reg_dtree(attribute)
attribute |
attribute target to model building. |
A decision tree regression object
data(Boston)
model <- reg_dtree("medv")
# preparing dataset for random sampling
sr <- sample_random()
sr <- train_test(sr, Boston)
train <- sr$train
test <- sr$test
model <- fit(model, train)
test_prediction <- predict(model, test)
test_predictand <- test[,"medv"]
test_eval <- evaluate(model, test_predictand, test_prediction)
test_eval$metrics
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.