Compute all available model metrics
eval_all.Rd
computes all evaluation metrics given a prediction and a reference vector. The functionality includes general regression metrics and hydrological metrics (wrapper to bigiarini2020hydroGOFSlidingWindowReg):
Root Mean Square Error (RMSE)
Normalized Root Mean Square Error (NRMSE)
Coefficient of Determination (R2)
Nash-Sutcliffe Efficiency nash1970nscSlidingWindowReg
Kling-Gupta Efficiency gupta2009kgeSlidingWindowReg
Usage
eval_all(prediction, reference)
rmse(prediction, reference)
nrmse(prediction, reference)
r2(prediction, reference)
nse(prediction, reference)
kge(prediction, reference)
Functions
rmse()
: Root Mean Squared Errornrmse()
: Normalized Root Mean Squared Errorr2()
: Coefficient of Determinationnse()
: Nash-Sutcliffe Efficiencykge()
: Kling-Gupta Efficiency