criterion
), the posterior probabilities of clustering memberships $z$ (posterior
), the weights $u$ (importance
), the uncertainty (uncertainty
), and the estimates of the cluster proportions, means and variances (getEstimates
) resulted from the clustering (filtering) operation.
criterion(object, ...)
criterion(object) <- value
posterior(object, assign=FALSE)
importance(object, assign=FALSE)
uncertainty(object)
getEstimates(object, data)
flowClust
or
filter
. For the replacement method of
criterion
, the object must be of class
flowClustList
or tmixFilterResultList
.type
, a
character string. May take "BIC"
, "ICL"
or
"logLike"
, to specify the criterion desired."BIC"
or "ICL"
.TRUE
, only the quantity
(z
for posterior
or u
for importance
)
associated with the cluster to which an observation is assigned will
be returned. Default is FALSE
, meaning that the quantities
associated with all the clusters will be returned.posterior
and importance
, a matrix of size $N x K$ is returned if assign=FALSE
(default). Otherwise, a vector of size $N$ is outputted. uncertainty
always outputs a vector of size $N$. getEstimates
returns a list with named elements, proportions
, locations
and, if the data object is provided, dispersion
. proportions
is a vector of size $P$ and contains the estimates of the $K$ cluster proportions. locations
is a matrix of size $K x P$ and contains the estimates of the $K$ mean vectors transformed back to the original scale (i.e., rbox(object@mu, object@lambda)
). dispersion
is an array of dimensions $K x P x P$, containing the approximate estimates of the $K$ covariance matrices on the original scale.
criterion
is to retrieve object@BIC
, object@ICL
or object@logLike
. It replacement method modifies object@index
and object@criterion
to select the best model according to the desired criterion. posterior
and importance
provide a means to conveniently retrieve information stored in object@z
and object@u
respectively. uncertainty
is to retrieve object@uncertainty
. getEstimates
is to retrieve information stored in object@mu
(transformed back to the original scale) and object@w
; when the data object is provided, an approximate variance estimate (on the original scale, obtained by performing one M-step of the EM algorithm without taking the Box-Cox transformation) will also be computed.
flowClust
, filter
, Map