p <- ggplot(d, aes(y=Win)) + opts(axis.text.x=theme_text(angle=90, hjust=1)) # default plot (left panel) # the variables are alphabetically reordered. p + geom_bar(aes(x=Team1), stat="identity") + opts(title="D
A good routine with such kind of data (qualitative and unsorted) to arrange the boxplots (or any other type such as bars or violins) in an in- or decreasing order to increase readability. Since the category “continent” does not have a natural ordering, I rearrange the boxplots by the...