Related questions
factor analysis using R
Im trying to do a factor analysis using R with varimax rotation, but not successful. I run the same exact data on SAS and can get result.
in R, if I use
fa(r=cor(m1), nfactors=8, fm="ml", rotate="…
Venn diagram from list of clusters and co-occurring factors
I've got an input file with a list of ~50000 clusters and presence of a number of factors in each of them (~10 million entries in total), see a smaller example below:
set.seed(1)
x = paste("cluster-",sample(c(1:100),500,replace=TRUE),sep="")
…