R:控制 corrplot 中的标题大小和颜色

问题描述 投票:0回答:1

快速提问:是否可以控制

corrplot
中的标题大小和颜色?谢谢

MWE:

data(mtcars)
M <- cor(mtcars)
corrplot::corrplot(M, method = "circle", title="some random title here", mar=c(0,0,2,0))
r size correlation title r-corrplot
1个回答
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()
© www.soinside.com 2019 - 2024. All rights reserved.