Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 R 中的 Kmeans 有疑问。我有一个数据框,例如 R 中可用的 IRIS 数据。我找到了一个网站,他们在其中创建了我喜欢的 kmeans 结果:
我的问题是,我想用我自己的数据(数据框 100X4)重现该图,但我找不到如何做到这一点。谁能帮我这个?
这是一个平行坐标图。例如,您可以使用parcoord来自MASS--
parcoord
MASS
library(MASS) iris$Species = as.numeric(iris$Species) parcoord(iris, col=iris$Species)