Learn R Programming

radiant.model (version 1.6.7)

plot.evalreg: Plot method for the evalreg function

Description

Plot method for the evalreg function

Usage

# S3 method for evalreg
plot(x, vars = c("Rsq", "RMSE", "MAE"), ...)

Arguments

x

Return value from evalreg

vars

Measures to plot, i.e., one or more of "Rsq", "RMSE", "MAE"

...

further arguments passed to or from other methods

Details

See https://radiant-rstats.github.io/docs/model/evalreg.html for an example in Radiant

See Also

evalreg to generate results

summary.evalreg to summarize results

Examples

Run this code
data.frame(price = diamonds$price, pred1 = rnorm(3000), pred2 = diamonds$price) %>%
  evalreg(pred = c("pred1", "pred2"), "price") %>%
  plot()

Run the code above in your browser using DataLab