I was trying to create a plot for each of the 4 quarters in my data. So I used:
qplot(date, mape, data = df, facets = .~quarter)
The resulting plot was:

The X-axis is using all the months present in the "date" column - from Jan - Dec. But the data on the chart is limited to the months of the quarter for e.g. Jan-Feb-March in the Q1 facet, Apr-May-June for Q2 etc. How can I limit the x-axis to the months corresponding to the quarter only?
as an alternate, I did this but its not exactly how I want to display my data: qplot(strftime(df$date, format = "%b"), mape, data = predicted.modelset)
qplot(strftime(df$date, format = "%b"), mape, data = predicted.modelset)- vagabondqplot(date, mape, data = df) + facet_grid(.~quarter,scales="free_x")- jlhoward