% Generated by roxygen2: do not edit by hand % Please edit documentation in R/crtree.R \name{predict.crtree} \alias{predict.crtree} \title{Predict method for the crtree function} \usage{ \method{predict}{crtree}( object, pred_data = NULL, pred_cmd = "", conf_lev = 0.95, se = FALSE, dec = 3, envir = parent.frame(), ... ) } \arguments{ \item{object}{Return value from \code{\link{crtree}}} \item{pred_data}{Provide the dataframe to generate predictions (e.g., titanic). The dataset must contain all columns used in the estimation} \item{pred_cmd}{Generate predictions using a command. For example, `pclass = levels(pclass)` would produce predictions for the different levels of factor `pclass`. To add another variable, create a vector of prediction strings, (e.g., c('pclass = levels(pclass)', 'age = seq(0,100,20)')} \item{conf_lev}{Confidence level used to estimate confidence intervals (.95 is the default)} \item{se}{Logical that indicates if prediction standard errors should be calculated (default = FALSE)} \item{dec}{Number of decimals to show} \item{envir}{Environment to extract data from} \item{...}{further arguments passed to or from other methods} } \description{ Predict method for the crtree function } \details{ See \url{https://radiant-rstats.github.io/docs/model/crtree.html} for an example in Radiant } \examples{ result <- crtree(titanic, "survived", c("pclass", "sex"), lev = "Yes") predict(result, pred_cmd = "pclass = levels(pclass)") result <- crtree(titanic, "survived", "pclass", lev = "Yes") predict(result, pred_data = titanic) \%>\% head() } \seealso{ \code{\link{crtree}} to generate the result \code{\link{summary.crtree}} to summarize results }