Last chance! 50% off unlimited learning
Sale ends in
y
with observed values x
.R2 (x, y)
RMSE (x, y)
MAE (x, y)
RMSEP (x, y)
MAEP (x, y)
R2
returns the coefficient of determination $R^2$ of a model. RMSE
returns the root mean squared error of a model.
MAE
returns the mean absolute error of a model.
RMSE
returns the percentual root mean squared error of a model.
MAE
returns the percentual mean absolute error of a model.
lm
, summary.lm
, predict.lm
, REGRDIAGNOSTICS
data(hydroSIMN)
datregr <- parameters
regr0 <- lm(Dm ~ .,datregr); summary(regr0)
regr1 <- lm(Dm ~ Am + Hm + Ybar,datregr); summary(regr1)
obs <- parameters[,"Dm"]
est0 <- regr0$fitted.values
est1 <- regr1$fitted.values
R2(obs, est0)
R2(obs, est1)
RMSE(obs, est0)
RMSE(obs, est1)
MAE(obs, est0)
MAE(obs, est1)
RMSEP(obs, est0)
RMSEP(obs, est1)
MAEP(obs, est0)
MAEP(obs, est1)
Run the code above in your browser using DataLab