The scales of loadings for biplots produced from stats::biplot
and ggplot2::autoplot
from ggfortify
R
package are different. How can I get the same loadings scales for biplots produced from stats::biplot
and ggplot2::autoplot
from ggfortify
R
package?
stats::biplot(prcomp(USArrests, scale = TRUE))
library(ggfortify)
ggplot2::autoplot(stats::prcomp(USArrests, scale=TRUE), label = TRUE, loadings.label = TRUE)