Cluster.plot plots items by their cluster loadings (taken, e.g., from ICLUST
) or factor loadings (taken, eg., from fa
). Cluster membership may be assigned apriori or may be determined in terms of the highest (absolute) cluster loading for each item.
If the input is an object of class "kmeans", then the cluster centers are plotted.
cluster.plot(ic.results, cluster = NULL, cut = 0, labels=NULL,
title = "Cluster plot",pch=18,pos,...)
fa.plot(ic.results, cluster = NULL, cut = 0, labels=NULL,title,
jiggle=FALSE,amount=.02,pch=18,pos,...)
factor.plot(ic.results, cluster = NULL, cut = 0, labels=NULL,title,jiggle=FALSE,
amount=.02,pch=18,pos,...) #deprecated
Both of these functions may be called directly or by calling the generic plot function. (see example).
ICLUST
, ICLUST.graph
, fa.graph
, plot.psych
circ.data <- circ.sim(24,500)
circ.fa <- fa(circ.data,2)
plot(circ.fa,cut=.5)
Run the code above in your browser using DataLab