我正在尝试使用from package重现以下stats::biplot
情节。ggplot2::autoplot
ggfortify
R
biplot(prcomp(USArrests, scale = TRUE))
这是我ggplot2::autoplot
的包中的代码ggfortify
R
及其输出。
devtools::install_github("sinhrks/ggfortify")
library(ggfortify)
ggplot2::autoplot(stats::prcomp(USArrests, scale=TRUE), label = TRUE, loadings.label = TRUE)
问题
- 为什么两个情节不同?如何重现基础情节?
- 如何添加基本图中所示的标签?