
Classification and regression trees
crtree(dataset, rvar, evar, type = "", lev = "", wts = "None",
cp = 0.001, nodes = NA, K = 10, seed = 1234, split = "gini",
prior = NA, cost = NA, margin = NA, check = "", data_filter = "")
Dataset name (string). This can be a dataframe in the global environment or an element in an r_data list from Radiant
The response variable in the model
Explanatory variables in the model
Model type (i.e., "classification" or "regression")
The level in the response variable defined as _success_
Weights to use in estimation
Minimum proportion of root node deviance required for split (default = 0.00001)
Maxiumum size of tree in number of nodes to return. If equal to NA no pruning is done
Number of folds use in cross-validation
Random seed used for cross-validation
Splitting criterium to use (i.e., "gini" or "information")
Adjust the initial probabily for the selected level (e.g., set to .5 in unbalanced samples)
Cost for each connection (e.g., email or mailing)
Margin on each customer purchase
Optional estimation parameters ("standardize" is the default)
Expression entered in, e.g., Data > View to filter the dataset in Radiant. The expression should be a string (e.g., "price > 10000")
A list with all variables defined in crtree as an object of class tree
See https://radiant-rstats.github.io/docs/model/crtree.html for an example in Radiant
summary.crtree
to summarize results
plot.crtree
to plot results
predict.crtree
for prediction
# NOT RUN {
result <- crtree("titanic", "survived", c("pclass","sex"), lev = "Yes")
result <- crtree("titanic", "survived", c("pclass","sex"))
result <- crtree("diamonds", "price", c("carat","clarity"), type = "regression")
# }
Run the code above in your browser using DataLab