当前位置:网站首页>How to delete gridlines in ggplot2 (with examples)

How to delete gridlines in ggplot2 (with examples)

2022-06-26 02:45:00 Mrrunsen

stay ggplot2 The easiest way to remove gridlines in is to use the theme_classic():

ggplot(df, aes(x=x, y=y)) +
  geom_point() +
  theme_classic()
原网站

版权声明
本文为[Mrrunsen]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/177/202206260130503963.html