我正在尝试制作2个Screeplots。 1. Screeplot,显示每台PC的差异 2.显示每个变量与PCx
的关系的图我用素食主义者来获取我的PCA:
LUI.C.V.PCA <- rda(LUI.C.V, scale=TRUE)
我从纯素指南尝试了这个,用我的LUI.C.V.PCA替换了x(2x):
screeplot(LUI.C.V.PCA, bstick = FALSE, type = c("barplot", "lines"), npcs = min(10, if (is.null(x$CCA)) x$CA$rank else x$CCA$rank), ptype = "o", bst.col = "red", bst.lty = "solid", xlab = "Component", ylab = "Inertia", main = deparse(substitute(LUI.C.V.PCA)))
错误:未找到对象'x'
有谁知道我做错了什么或我怎么能这么做? 谢谢!