plot.evalreg: Plot method for the evalreg function

plot.evalregR Documentation

Plot method for the evalreg function

Description

Plot method for the evalreg function

Usage

## S3 method for class '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

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


radiant-rstats/radiant.model documentation built on Nov. 29, 2023, 5:59 a.m.