View source: R/do_calibration.R
get_NSE | R Documentation |
Get Nash-Sutcliffe Efficiency
get_NSE(x_obs, x_sim)
x_obs |
Vector of observations |
x_sim |
Vector of simulated data |
Returns the NSE between x_obs
and x_sim
set.seed(100) x_obs <- 1:10 + rnorm(10) x_sim <- 1:10 get_NSE(x_obs, x_sim) get_NSE(x_obs, x_sim - 5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.