我使用 mtcars 数据使用autoplot函数创建了一个图形并得到这样的图形
这是我的代码:
library(cluster)
library(NbClust)
library(ggplot2)
library(ggfortify)
x <- mtcars
number.cluster <- NbClust(x, distance = "euclidean", min.nc = 1, max.nc = 5, method = "complete", index = "ch")
best.cluster <- as.numeric(number.cluster$Best.nc[1])
x.pam <- pam(x, best.cluster)
autoplot(x.pam, data = x, frame = T) + ggtitle("PAM MTCARS")
我的问题是如何根据此图获取 PC1 和 PC2 数据坐标?谢谢你