I need to delete everything on the x axis, including labels and elevations, so that only the y axis is marked. How should I do it?
In the image below, I would like clarity and all marks and marks to be removed so that there is only an axis.
Ggplot example
data(diamonds) ggplot(data = diamonds, mapping = aes(x = clarity)) + geom_bar(aes(fill = cut))
ggplot chart:

Desired chart:

r ggplot2
Amstell Jan 29 '16 at 17:50 2016-01-29 17:50
source share