% Generated by roxygen2: do not edit by hand % Please edit documentation in R/rforest.R \name{plot.rforest.predict} \alias{plot.rforest.predict} \title{Plot method for rforest.predict function} \usage{ \method{plot}{rforest.predict}(x, xvar = "", facet_row = ".", facet_col = ".", color = "none", ...) } \arguments{ \item{x}{Return value from predict function predict.rforest} \item{xvar}{Variable to display along the X-axis of the plot} \item{facet_row}{Create vertically arranged subplots for each level of the selected factor variable} \item{facet_col}{Create horizontally arranged subplots for each level of the selected factor variable} \item{color}{Adds color to a scatter plot to generate a heat map. For a line plot one line is created for each group and each is assigned a different color} \item{...}{further arguments passed to or from other methods} } \description{ Plot method for rforest.predict function } \examples{ result <- mnl( ketchup, rvar = "choice", evar = c("price.heinz28", "price.heinz32", "price.heinz41", "price.hunts32"), lev = "heinz28" ) pred <- predict(result, pred_cmd = "price.heinz28 = seq(3, 5, 0.1)") plot(pred, xvar = "price.heinz28") } \seealso{ \code{\link{predict.mnl}} to generate predictions }