标签: r ggplot2 data-visualization ggcorrplot
是否可以将字幕添加到ggcorrplot图?我已经阅读了文档,并且软件包中没有内置字幕功能。
git remote add azure https://dev.azure.com/OHIF/dcm4che/_git
谢谢
答案 0 :(得分:2)
由于我们处理了ggplot对象,因此可以简单地添加它们
library(ggcorrplot) data(mtcars) ggcorrplot(round(cor(mtcars), 1)) + labs(title = "My title", subtitle = "Here is a subtitle")