gpt4 book ai didi

R Corrplot : italicize Y-axis labels

转载 作者:行者123 更新时间:2023-12-01 22:56:16 25 4
gpt4 key购买 nike

我有一个在 ggplot 中非常容易解决的问题,但无法弄清楚如何让它在 corrplot 中工作。如何使y轴标签为斜体??

library(corrplot)
M <- cor(mtcars)
corrplot(M, method="circle")

最佳答案

如果您使用font = 3,它会将所有坐标轴变为斜体。如果您只想要 Y 轴,解决方法是:

par(mar = c(4, 6, 4, 4))
temp <- corrplot(M, method = "circle", font = 3, tl.pos='n',
mar = c(0, 0, 4, 0))
mtext(unique(temp$corrPos$yName),
at = unique(temp$corrPos$y), side = 2, las = 1,
font = 3)
mtext(unique(temp$corrPos$xName),
at = unique(temp$corrPos$x), las = 2)

输出: enter image description here

尽管您可能需要对边距进行一些调整才能对齐。

关于R Corrplot : italicize Y-axis labels,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73183069/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com