mdse
From valmetrics v1.0.0
by Kristin Piikki
mdse
Calculates the Median squared error (MdSE) from observed and predicted values.
Usage
mdse(o, p)
Arguments
- o
A numeric vector. Observed values.
- p
A numeric vector. Predicted values.
Details
Interpretation: smaller is better.
Value
Median squared error (MSE).
References
Piikki K., Wetterlind J., Soderstrom M., Stenberg B. (2021). Perspectives on validation in digital soil mapping of continuous attributes. A review. Soil Use and Management. 10.1111/sum.12694
Examples
# NOT RUN {
obs<-c(1:10)
pred<-c(1, 1 ,3, 2, 4, 5, 6, 8, 7, 10)
mdse(o=obs, p=pred)
# }
Community examples
Looks like there are no examples yet.