如何为 ggcorrplot 添加副标题?

How do you add a subtitle to a ggcorrplot?

有没有办法给 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")