Statistical Indicator Definitions
Statistical-Indicators.Rmd
This document details the formulation of the statistical and complementary indicators used in the derivation of the MQI.
Statistical Performance Indicators
Temporal Indicators
Averaged measured value
Averaged modelled value
Bias (vec_bias()
)
Root Mean Square Error (vec_rmse()
)
Measurement Root Mean Square Uncertainty
(vec_rmsu()
)
Correlation coefficient (vec_cor()
)
Measurement standard deviation (vec_sd()
)
Modelling standard deviation (vec_sd()
)
Centred Root Mean Square Error (vec_crmse()
)
Model Quality Indicator (vec_mqi()
)
Spatial Indicators
Averaged measured value (all sampling points)
Averaged modelled value (all sampling points)
Bias (vec_bias()
)
Root Mean Square Error (vec_rmse()
)
Measurement Root Mean Square Uncertainty
(vec_rmsu()
)
Correlation coefficient (vec_cor()
)
Measurement standard deviation (vec_sd()
)
Modelling standard deviation (vec_sd()
)
Model Quality Indicator (vec_mqi()
)
Complementary Performance Indicators
Temporal Indicators
Bias Indicator (objective:
)
(vec_pi_bias()
)
Correlation Indicator (objective:
)
(vec_pi_cor()
)
Standard Deviation Indicator (objective:
)
(vec_pi_sd()
)
Centred Root Mean Square Indicator
(vec_ti_crmse()
)
Spatial Indicators
Bias Indicator (objective:
)
(vec_pi_bias()
)
Correlation Indicator (objective:
)
(vec_pi_cor()
)
Standard Deviation Indicator (objective:
)
(vec_pi_sd()
)
Root Mean Square Error Indicator (objective:
)
(vec_si_rmse()
)
Statistical Methods
Percentile by Linear Interpolation
In mqo_percentile()
, the 90th percentile value is
inferred by linear interpolation:
where is the calculated 90th percentile of the number of sampling points defined as the integer part of a given real number (e.g., ):
with the total number of available sampling points and the non-integer distance defined as:
Note: While mqo_percentile()
default to the 90th
percentile (quantile = 0.9
), any quantile between
0
and 1
can be calculated in this way.