将图例和标签放入dtwclust图中

时间:2019-01-21 13:40:26

标签: r plot cluster-analysis legend dtw

我在R中使用了dtwclust包来获得图片中的簇。

dtw_cluster2 = tsclust(transdatawide2, type="partitional",k=4,preproc = zscore,
                  distance="dtw_basic",centroid = "pam",trace=T)

plot(dtw_cluster2)

clusters

我想更改标签x,其中数字显示为实际日期,并且还添加图例以知道哪个时间序列对应于什么。 你知道怎么做吗?

head(transdatawide2)

     2015-01-06  2015-02-03  2015-03-02  2015-03-03
 A    0.00000    0.00000        0.0      0.00000
 B    0.10000    0.10000        0.1      0.00000

1 个答案:

答案 0 :(得分:0)

使用 labs.arg 参数。您可以在dtwclust documentation

中找到更多详细信息

plot(dtw_cluster2) + labs(title = "New plot title", x = "New x label")

或者您也可以使用plot(dtw_cluster2) + xlab("New x label")+ ylab("New x label") + ggtitle("New plot title")

希望这很有用