Ggplot2中心y轴标题

时间:2018-06-19 09:11:19

标签: r ggplot2

我确定这是一个简单的解决方案,但我环顾四周,找不到任何东西。

基本上我只想水平翻转y-axis标题,然后沿着y-axis居中。我设法翻转它,但我似乎无法找到一个以轴为中心的参数。

这是一个可重复的例子:

require(tidyverse)

iris %>% ggplot() + geom_point(aes(x = Sepal.Length, y = Sepal.Width)) +
theme(axis.title.y = element_text(angle=0))

提前致谢!

1 个答案:

答案 0 :(得分:0)

如果我理解正确,你几乎就在那里。在参数element_text下,您可以编辑参数vjusthjust以进行垂直和水平定位。

require(tidyverse)

iris %>% ggplot() + geom_point(aes(x = Sepal.Length, y = Sepal.Width)) +
theme(axis.title.y = element_text(angle=0, vjust = 0.5))

enter image description here