summary.fclust {fclust} | R Documentation |
Summarizing fuzzy clustering output
Description
Summary method for class fclust
.
Usage
## S3 method for class fclust
## S3 method for class 'fclust'
summary(object, ...)
Arguments
object |
Object of class |
... |
Additional arguments for |
Details
The function displays the number of objects, the number of clusters, the cluster sizes, the closest hard clustering partition (objects assigned to the clusters with the highest membership degree), the cluster memberships (using the closest hard clustering partition), the number of objects with unclear assignment (when the maximal membership degree is lower than 0.5), the objects with unclear assignment and the cluster sizes without unclear assignments (only if objects with unclear assignment are present), the cluster summary (for every cluster: size, minimal membership degree, maximal membership degree, average membership degree, number of objects with unclear assignment) and the Euclidean distance matrix for the cluster prototypes.
Author(s)
Paolo Giordani, Maria Brigida Ferraro, Alessio Serafini
See Also
Fclust
, print.fclust
, plot.fclust
, unemployment
Examples
## unemployment data
data(unemployment)
## fuzzy k-means
unempFKM=FKM(unemployment,k=3,stand=1)
summary(unempFKM)