7

I want to adjust the function's parameters so that the items don't overlap. I've tried changing the rsize, e.size and gap.size but nothing works. Any ideas?

enter image description here

Phil
  • 7,287
  • 3
  • 36
  • 66
Amanda
  • 71
  • 2

1 Answers1

1

If this is made for the purpose of presenting this to others, you can save your fa.diagram() as a pdf using the pdf() command in R, specifying the height to be much larger than the width.

Something like:

pdf("my_fa_diagram.pdf", height=30, width=5)
fa.diagram(faresults, main="Factor Analysis")
dev.off()
Jess
  • 11
  • 1