我在text3d中一直收到错误,即使我使用其他人的教程而不是我自己的数据 - 例如此网站:http://planspace.org/2013/02/03/pca-3d-visualization-and-clustering-in-r/。下面有错误的示例代码。 plot3d似乎运行正常,但是我对text3d缺少什么想法?
谢谢!
library(rgl)
plot3d(pc$scores[,1:3])
text3d(pc$scores[,1:3],texts=rownames(iris))
#Error in text3d(pc$scores[, 1:3], texts = rownames(iris)) :
# unused argument (texts = rownames(iris))
text3d(pc$loadings[,1:3], texts=rownames(pc$loadings), col="red")
#Error in text3d(pc$loadings[, 1:3], texts = rownames(pc$loadings), col = "red") :
# unused argument (texts = rownames(pc$loadings))
coords <- NULL
for (i in 1:nrow(pc$loadings)) {
coords <- rbind(coords, rbind(c(0,0,0),pc$loadings[i,1:3]))
}
lines3d(coords, col="red", lwd=4)
答案 0 :(得分:0)
对3.1.3的R版本更新是答案(运行R版本3.0.2)。谢谢!