Skip to content
Prev 26684 / 398500 Next

factor analysis (pca): how to get the 'communalities'?

Wolfgang Lindner wrote:
It's not necessary for this particular name to put in in quotes, but you
can put any name in quotes:

 "x" <- 5
 x

Here you must quote (BAD idea to choose such names!, NOT
recommended!!!):
 "x 1" <- 5
 get("x 1")
Both ways are possible in this case.
R FAQ 7.16 - 2. item in the enumeration.
Uwe Ligges