I'm going to be producing a lot of visuals for a report. My boss really likes the theme_clean()
horizontal lines but wants me to add the same lines to the x-axis. Is there an easy way to do this?
Here is my code
library(ggplot2)
library(ggthemes)
ggplot(mtcars, aes(x = mpg)) +
geom_point(aes(y = hp)) +
theme_clean(base_size=18)
How can I get the same style for my x-axis ticks (going vertical).
Best.