I am using data frame DF (simple generated example):
Month <- c(1,2,3,5,8,9,6,3,2,2,12,12)
Brand <- c("Brand4","Brand5","Brand13","Brand62","Brand2","Brand1","Brand12","Brand12","Bra nd62","Brand55","Brand2","Brand1")
USD <- abs(rnorm(12))*100
DF <- data.frame(Month, Brand, USD)
to plot a graph with qplot, which looks like this:
qplot(as.factor(Month), USD, data=DF, fill=Brand,
stat="summary", fun.y="sum", geom="bar",
main = "Graph", xlab = "Month", ylab = "USD")
In X axis I have months. However, 4, 8, 10 and 11 months are missing. I'd like to show seasonality of the data, so X axis should include all 12 months. Is it possible to fix X axis with numbers 1 to 12, that X axis would also show missing months with empty bars?
Is it possible to do with qplot function or should I use anything else?

