This function computes the root mean square error (RMSE) of the two vectors
obs and sim. rel = FALSE returns the absolute RMSE,
rel = TRUE the relative one. If na.rm is TRUE, missing
values are omitted before the computation proceeds.
Usage
rmse(obs, sim, rel = F, na.rm = T)
Arguments
obs
a numeric vector containing observed values.
sim
a numeric vector containing simulated values.
rel
logical. If TRUE, the relative RMSE is calculated, if FALSE the
absolute RMSE is returned.