尝试使用 R 在 clusplot 图表中显示列的值
Trying to display the value of a column in a clusplot chart using R
我在 Power Bi 中使用 R 并显示 Clusplot 图表 - 工作正常。
但是我怎样才能将第 1 列显示为簇中的标签,而不是数字 (1-27)。
这是我的代码:
library(cluster)
D=daisy(dataset, metric='gower')
H.fit <- hclust(D, method="ward")
plot(H.fit)
groups <- cutree(H.fit, k=5, tree) # cut tree into 4 clusters
rect.hclust(H.fit, k=3, border="red")
clusplot(dataset, groups, color=TRUE, shade=TRUE, lines=0, main= 'Customer segments', span=F, labels=2)
使用row.names
。
如果您的行没有名称,它们将使用行号。
我在 Power Bi 中使用 R 并显示 Clusplot 图表 - 工作正常。
但是我怎样才能将第 1 列显示为簇中的标签,而不是数字 (1-27)。
这是我的代码:
library(cluster)
D=daisy(dataset, metric='gower')
H.fit <- hclust(D, method="ward")
plot(H.fit)
groups <- cutree(H.fit, k=5, tree) # cut tree into 4 clusters
rect.hclust(H.fit, k=3, border="red")
clusplot(dataset, groups, color=TRUE, shade=TRUE, lines=0, main= 'Customer segments', span=F, labels=2)
使用row.names
。
如果您的行没有名称,它们将使用行号。