robust.scores {EMMAgeo} | R Documentation |
Extract robust end-member scores.
Description
This function takes a list object with statistics of end-member loadings and propagates these uncertainties to end-member scores using Monte Carlo methods.
Usage
robust.scores(loadings, l, mc_n, cores = 1, plot = FALSE, ...)
Arguments
loadings |
|
l |
|
mc_n |
|
cores |
|
plot |
|
... |
Additional arguments passed to |
Value
List
with statistic descriptions of robust end-member
scores.
Author(s)
Michael Dietze, Elisabeth Dietze
See Also
Examples
## load example data set, potential end-members, output of model.EM()
data(example_EMpot)
## define limits for robust end-members
limits <- cbind(c(61, 74, 95, 102),
c(64, 76, 100, 105))
## get robust end-member loadings
robust_loadings <- robust.loadings(em = EMpot, limits = limits)
## model end-member scores uncertainties with minimum Monte Carlo runs
robust_scores <- robust.scores(loadings = robust_loadings,
mc_n = 5,
plot = TRUE)