tclusteda.object {fsdaR} | R Documentation |
Objects returned by the function tclustfsda
with the option monitoring=TRUE
Description
An object of class tclusteda.object
holds information about
the result of a call to tclustfsda
with the option monitoring=TRUE
.
Value
The functions print()
and summary()
are used to obtain and print a
summary of the results. An object of class tclusteda
is a list containing at least the following components:
call |
the matched call |
k |
number of groups |
alpha |
trimming level |
restrfactor |
restriction factor |
IDX |
an |
MU |
a 3 dimensional array of size k-by-p-by-length(alpha) containing the monitoring
of the centroid for each value of alpha. |
SIGMA |
A list of length |
Amon |
Amon stands for alpha monitoring. Matrix of size
|
Examples
## Not run:
data(hbk, package="robustbase")
(out <- tclustfsda(hbk[, 1:3], k=2, monitoring=TRUE))
class(out)
summary(out)
## End(Not run)