gpt4 book ai didi

r - 移动 R Plot 标题

转载 作者:行者123 更新时间:2023-12-01 13:08:23 26 4
gpt4 key购买 nike

我试图在 R Plot 中创建一个图表,只是想知道是否有任何方法可以将侧标题标签移动到离图表更近的地方。

我已经将字体变小并将标签分成两行,但是当我将它分成两行时,顶线从屏幕上掉下来,底线离图表的编号 Y 轴很远.有没有办法将标签移近 y 轴,以便整个事物可见?

最佳答案

尝试调整 mar:

mar.old <- par('mar')
print(mar.old)

par(mar=rep(10, 4)) # some ridiculous values
plot(density(rnorm(1000)), ylab='foo\nbar\nbaz\nquux')

par(mar=mar.old) # restore original

有关 mar 的更多信息,请参阅 ?par:

mar A numerical vector of the form c(bottom, left, top, right) which gives the number of lines of margin to be specified on the four sides of the plot. The default is c(5, 4, 4, 2) + 0.1.

关于r - 移动 R Plot 标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1125907/

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