plot.evalreg {radiant.model} | R 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 |
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()
[Package radiant.model version 1.6.6 Index]