plot_regr: Plots regression

Description Usage Arguments Examples

Description

Plots regression

Usage

1
plot_regr(x, y, xlab = "Predicted", ylab = "Experimental", rparams = TRUE)

Arguments

x
y
xlab
ylab
rparams

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
##---- 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)
    }
  }

conmolfields documentation built on May 2, 2019, 4:18 p.m.