如何在ggplot2中将y轴标题(非标签)旋转为水平

时间:2020-11-08 09:57:51

标签: r ggplot2

如何在ggplot2中将y轴标题(非标签)旋转为水平?非常感谢您的帮助!

a1 %>% ggplot(aes(x=c(1:8), y=ev)) +
  geom_bar(stat="identity", width=0.3, color="black", fill="grey") +
  ylab("%")

enter image description here

1 个答案:

答案 0 :(得分:1)

这可以通过theme(axis.title.y = element_text(angle = 0, vjust = 0.5))

实现
library(ggplot2)

ggplot(mtcars, aes(hp, mpg)) +
  geom_point() +
  theme(axis.title.y = element_text(angle = 0, vjust = 0.5))