robust.loadings {EMMAgeo} | R Documentation |
Extract robust end-member loadings
Description
This function takes a list object with potential end-member loadings and extracts those with modes in specified limits to describe them by mean and standard deviation.
Usage
robust.loadings(
em,
limits,
classunits,
amount,
type = "mean",
qt = c(0.25, 0.75),
plot = FALSE,
...
)
Arguments
em |
|
limits |
|
classunits |
|
amount |
|
type |
|
qt |
|
plot |
|
... |
Additional arguments passed to |
Value
List
with statistic descriptions of unscaled and scaled
end-member loadings.
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 with plot output
robust_loadings <- robust.loadings(em = EMpot,
limits = limits,
plot = TRUE)