Calculate the confusion index of Burrough et al., 1997.
confusionIndex(x)
A single numeric value.
Burrough, P.A., P.F.M. van Gaans, and R. Hootsmans. 1997. "Continuous Classification in Soil Survey: Spatial Correlation, Confusion and Boundaries." Geoderma 77: 115-35. doi:10.1016/S0016-7061(97)00018-9.
# a very simple example
p <- c(0.25, 0.25, 0.4, 0.05, 0.05)
confusionIndex(p)
#> [1] 0.85
# for comparison
shannonEntropy(p)
#> [1] 1.960964