gpt4 book ai didi

r - ggplot2 - y 轴标题上的两行或多行

转载 作者:行者123 更新时间:2023-12-02 11:50:48 38 4
gpt4 key购买 nike

我的 y 轴标题需要两行或更多行文本。但是,如果我有多行,标题就会被切断。无论如何我可以解决这个问题吗?

ggplot(iris,aes(Sepal.Length, Sepal.Width)) +geom_line()+labs(y=expression(paste("line 1\nline2")))

enter image description here

最佳答案

theme 中使用 plot.margin 来更改绘图周围的空白

ggplot(iris, aes(Sepal.Length, Sepal.Width)) +
geom_line() +
labs(y = expression(paste("line 1\nline2"))) +
theme(plot.margin = margin(1, 1, 1, 1, "cm")
)

enter image description here

关于r - ggplot2 - y 轴标题上的两行或多行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61943246/

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