ggplot2: A black and white theme without major grid lines in the y axis
plt_theme_x.Rd
A theme with no minor grids in both axes and no major grid lines in the y axis.
Examples
library(ggplot2)
plot <-
ggplot(mtcars,aes(hp,drat))+
geom_point()
plot
plot + plt_theme_x()