Statistics Toolbox | ![]() ![]() |
Plot dendrogram showing group mean clusters after MANOVA
Syntax
Description
generates a dendrogram plot of the group means after a multivariate analysis of variance (MANOVA). manovacluster(stats)
stats
is the output stats
structure from manova1
. The clusters are computed by applying the single linkage method to the matrix of Mahalanobis distances between group means.
See dendrogram
for more information on the graphical output from this function. The dendrogram is most useful when the number of groups is large.
uses the specified method in place of single linkage. 'manovacluster(stats,
'method
')
method
' can be any of the following character strings that identify ways to create the cluster hierarchy. See linkage
for further explanation.
'single' |
Shortest distance (default) |
'complete' |
Largest distance |
'average' |
Average distance |
'centroid' |
Centroid distance |
'ward' |
Incremental sum of squares |
returns a vector of handles to the lines in the figure.H = manovacluster(stats,
'method
')
Example
Let's analyze the larger car dataset to determine which countries produce cars with the most similar characteristics.
load carbig X = [MPG Acceleration Weight Displacement]; [d,p,stats] = manova1(X,Origin); manovacluster(stats)
See Also
cluster
, dendrogram
, linkage
, manova1
![]() | manova1 | mean | ![]() |