tclustic.object {fsdaR} | R Documentation |
Objects returned by the function tclustIC
Description
An object of class tclustic.object
holds information about
the result of a call to tclustIC
.
Value
The functions print()
and summary()
are used to obtain and print a
summary of the results. An object of class tclustic
is a list containing at least the following components:
call |
the matched call |
kk |
a vector containing the values of |
cc |
a vector containing the values of |
alpha |
trimming level |
whichIC |
Information criteria used |
CLACLA |
a matrix of size |
IDXCLA |
a matrix of lists of size |
MIXMIX |
a matrix of size |
IDXMIX |
a matrix of lists of size |
MIXCLA |
a matrix of size |
Examples
## Not run:
data(hbk, package="robustbase")
(out <- tclustIC(hbk[, 1:3]))
class(out)
summary(out)
## End(Not run)