I am plotting a simple barplot using ggplot2
and it is oddly re-ordering the location of the 0 value. Here is the code and plot below:
x <- c("Oct-Nov","Nov-Dec", "Dec-Jan", "Jan-Feb", "Feb-March")
zz <- c(0.6363636, 0.1666667, 0.0000000, -0.2857143 , 0.6666667)
qplot(x, zz, geom = "bar", stat = "identity")
Any ideas on why this is? Thanks