快速提问:是否可以控制
corrplot
中的标题大小和颜色?谢谢
MWE:
data(mtcars)
M <- cor(mtcars)
corrplot::corrplot(M, method = "circle", title="some random title here", mar=c(0,0,2,0))
这是一个使用@user20650 评论的有效、可测试的示例。这将使标题文本变小并呈红色:
data(mtcars)
M <- cor(mtcars)
pdf("test.pdf")
corrplot::corrplot(M, method = "circle", title="some random title here", mar=c(0,0,2,0), cex.main = 0.5, col.main = "red")
dev.off()