如何在ggplot2中将y轴标题(非标签)旋转为水平?非常感谢您的帮助!
a1 %>% ggplot(aes(x=c(1:8), y=ev)) +
geom_bar(stat="identity", width=0.3, color="black", fill="grey") +
ylab("%")
答案 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))