Calculate the confusion index of Burrough et al., 1997.

confusionIndex(x)

Arguments

x

vector of probabilities (0,1), should not contain NA

Value

A single numeric value.

References

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.

Author

D.E. Beaudette

Examples


# 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