plot.hclustvar {ClustOfVar} | R Documentation |
Dendrogram of the hierarchy of variables
Description
Dendrogram of the hierarchy of variables resulting from hclustvar
and aggregation levels plot.
Usage
## S3 method for class 'hclustvar'
plot(x, type = "tree", sub = "", ...)
Arguments
x |
an object of class |
type |
if type="tree" plot of the dendrogram and if type="index" aggregation levels plot. |
sub |
a sub title for the plot. |
... |
further arguments passed to or from other methods. |
See Also
Examples
data(wine)
X.quanti <- PCAmixdata::splitmix(wine)$X.quanti
X.quali <- PCAmixdata::splitmix(wine)$X.quali
tree <- hclustvar(X.quanti,X.quali)
plot(tree)
#Aggregation levels plot
plot(tree,type="index")
[Package ClustOfVar version 1.1 Index]