gpt4 book ai didi

r - 如何在ggplot2中旋转轴标签?

转载 作者:行者123 更新时间:2023-12-04 05:00:09 28 4
gpt4 key购买 nike

我有使用 ggplot2 enter image description here 生成的以下图表

我有 finalPlot作为 ggplot 对象。添加我使用的标签

finalPlot + stat_bin() + scale_x_continuous('Solution Cost') + scale_y_continuous('Number of Solutions')`

如何更改 y 轴标签的方向以使其显示为水平,并在可能的情况下将其跨越两条线,例如
Number of
Solutions

最佳答案

对于轴文本的旋转角度,您需要使用 element_text() .见 this post on SO对于一些例子。对于两行的间距,我会添加 "\n"在字符串中要放置换行符的位置上。

这将为 y 轴文本设置正确的方向并强制换行:

finalPlot + ylab("Number of\nSolutions") + 
theme(axis.title.y = element_text(angle = 0))

关于r - 如何在ggplot2中旋转轴标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10063701/

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