When using ggplot like this
data_frame(diamonds)
ggplot(diamonds,aes(cut)) +
geom_bar()
I get a plot as expected, however when I do this:
ggplot(diamonds,aes(cut)) +
geom_bar() +
coord_flip()
I flip the plot but the new "y" values go from bottom to top, is it possible to flip the coordinate AND have the values going from top to botton? So "fair" would be the top most value, then "good", then "very good"... etc.