As in the title, I am plotting a serials of facet plots of histograms. But I do not want the y axis ticks (counts/density) to show up since it looks cluttered. I used the option theme(axis.ticks.y = element_blank()) to remove the y axis ticks but it does not work for geom_histogram.
Here is a simple reproducible example:
dd <- data.frame(x = c(1:100))
ggplot(dd, aes(x)) + geom_histogram() + theme(axis.ticks.y = element_blank())
Is it just not possible to do this with histogram plots, or is there some other way? Any help would be awesome. Thank you!
Add
axis.text.y=element_blank()as well: