Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在 ggcorrplot 图中添加字幕?我已经阅读了文档,并且包中没有内置字幕功能。
library(ggcorrplot) data(mtcars) ggcorrplot(round(cor(mtcars), 1))
由于我们处理的是一个 ggplot 对象,我们可以简单地添加它们
library(ggcorrplot) data(mtcars) ggcorrplot(round(cor(mtcars), 1)) + labs(title = "My title", subtitle = "Here is a subtitle")