fa.diagram(fa.results,sort=TRUE,labels=NULL,cut=.3,simple=TRUE,errors=FALSE,
digits=1,e.size=.05,rsize=.15,side=2,main="Factor Analysis",cex=NULL, ...)
fa.graph(fa.results,out.file=NULL,labels=NULL,cut=.3,simple=TRUE,
size=c(8,6), node.font=c("Helvetica", 14),
edge.font=c("Helvetica", 10), rank.direction=c("RL","TB","LR","BT"), digits=1,main="Factor Analysis",graphviz=TRUE, ...)
fa.graph: A graph is drawn using rgraphviz. If an output file is specified, the graph instructions are also saved in the dot language.
fa.diagram does not use Rgraphviz and is the preferred function.
In fa.graph, although a nice graph is drawn for the orthogonal factor case, the oblique factor drawing is acceptable, but is better if cleaned up outside of R or done using fa.diagram.
omega.graph
, ICLUST.graph
test.simple <- fa(item.sim(16),2,rotate="oblimin")
#if(require(Rgraphviz)) {fa.graph(test.simple) }
fa.diagram(test.simple)
data(bifactor)
fa.diagram(fa(Thurstone,3,rotate="cluster"),cut=.4,digits=2)
Run the code above in your browser using DataLab