clust-class {TCseq} | R Documentation |
clust
is a S4 class for storing results of a clustering
analysis for time course data.
:
The clust objects are returned from timeclust
and have
a show method printing a compact summary of their contents
Oject of this class contains the following slots:
method
clustering method that has been used
dist
distance method that has been used
data
a matrix of original or standardized data that has been used for the analysis
centers
a matrix of class centers
cluster
an integer vector of length n (n is the number of data points each integer indicates the cluster a data point belongs to. For the fuzzy cmeans clustering method, a data point is assigned to the closest cluster to which the data point has highest membership value.
membership
a matrix with membership values of the data points to all the clusters
Mengjun Wu