plot_regr {conmolfields} | R Documentation |
Plots regression
Description
Plots regression
Usage
plot_regr(x, y, xlab = "Predicted", ylab = "Experimental", rparams = TRUE)
Arguments
Examples
##---- Should be DIRECTLY executable !! ----
##-- ==> Define data, use random,
##-- or do help(data=index) for the standard data sets.
## The function is currently defined as
function (x, y, xlab = "Predicted", ylab = "Experimental", rparams = TRUE)
{
plot(x, y, xlab = xlab, ylab = ylab)
abline(coef = c(0, 1))
if (rparams) {
rp <- regr_param(x, y)
text <- sprintf("R2=%6.4f RMSE=%.3g MAE=%.3g", rp$R2,
rp$RMSE, rp$MAE)
title(sub = text)
}
}
[Package
conmolfields version 0.0-19
Index]