我正在尝试使用 ggplot2 创建 6 个数据变量的配对图,并根据它们所属的 k-means 聚类对点进行着色。我阅读了令人印象深刻的“GGally”包的文档以及 Adam Laiacano 的非正式修复 [http://adamlaiacano.tumblr.com/post/13501402316/colored-plotmatrix-in-ggplot2]。不幸的是,我找不到任何方法来获得所需的输出。
这是一个示例代码:-
#The Swiss fertility dataset has been used here
data_ <- read.csv("/home/tejaskale/Ubuntu\ One/IUCAA/Datasets/swiss.csv", header=TRUE)
data_ <- na.omit(data_)
u <- c(2, 3, 4, 5, 6, 7)
x <- data_[,u]
k <- 3
maxIterations <- 100
noOfStarts <- 100
filename <- 'swiss.csv'
library(ggplot2)
library(gridExtra)
library(GGally)
kmeansOutput <- kmeans(x, k, maxIterations, noOfStarts)
xNew <- cbind(x[,1:6], as.factor(kmeansOutput$cluster))
names(xNew)[7] <- 'cluster'
kmeansPlot <- ggpairs(xNew[,1:6], color=xNew$cluster)
OR
kmeansPlot <- plotmatrix(xNew[,1:6], mapping=aes(colour=xNew$cluster))
两个图都已创建,但未根据集群着色。
希望我没有错过论坛上这个问题的答案,如果确实如此,我深表歉意。任何帮助将不胜感激。
谢谢!