Is there a way to create a biplot with the psych package using ggplot()

Viewed 16

I'm finding it hard to create a biplot in ggplot2 from a principal components analysis done in psych.

library(psych)
data("Thurstone")
pca1<-principal(Thurstone, nfactors=2, rotate="varimax")
#install.packages("ggfortify")
library(ggfortify)
autoplot(pca1)
0 Answers
Related