GOF_kling_gupta_efficiency {HyMETT} | R Documentation |
Calculate Kling–Gupta Efficiency (KGE)
Description
Calculate Kling–Gupta Efficiency (KGE) (or modified KGE ('KGE)) between modeled (simulated) and observed values.
Usage
GOF_kling_gupta_efficiency(mod, obs, modified = FALSE, na.rm = TRUE)
Arguments
mod |
'numeric' vector. Modeled or simulated values. Must be same length as |
obs |
'numeric' vector. Observed or comparison values. Must be same length as |
modified |
'boolean' |
na.rm |
'boolean' |
Value
Value of computed KGE or 'KGE.
References
Kling, H., Fuchs, M. and Paulin, M., 2012. Runoff conditions in the upper Danube basin under an
ensemble of climate change scenarios: Journal of Hydrology, v. 424-425, p. 264-277.
[Also available at https://doi.org/10.1016/j.jhydrol.2012.01.011.]
Gupta, H.V., Kling, H., Yilmaz, K.K., and Martinez, G.G., 2009. Decomposition of the mean
squared error and NSE performance criteria: Implications for improving hydrological modelling:
Journal of Hydrology, v. 377, no.1-2, p. 80-91.
[Also available at https://doi.org/10.1016/j.jhydrol.2009.08.003.]
Examples
GOF_kling_gupta_efficiency(
mod = example_mod$streamflow_cfs, obs = example_obs$streamflow_cfs
)