R-ggcorrplot添加字幕

时间:2018-10-18 12:40:53

标签: r ggplot2 data-visualization ggcorrplot

是否可以将字幕添加到ggcorrplot图?我已经阅读了文档,并且软件包中没有内置字幕功能。

git remote add azure https://dev.azure.com/OHIF/dcm4che/_git

enter image description here

谢谢

1 个答案:

答案 0 :(得分:2)

由于我们处理了ggplot对象,因此可以简单地添加它们

library(ggcorrplot)
data(mtcars)
ggcorrplot(round(cor(mtcars), 1)) + 
  labs(title = "My title",
       subtitle = "Here is a subtitle")

enter image description here