Probably a mundane question, but I am stuck. I have a time series of monthly observations, where the dates are specified as follows.
date = With[{first = DateObject[{2011, 1, 1}, "Day"]}, DateRange[first,
DatePlus[first, {{93, "Month"}, {-1, "Day"}}], {1, "Month"}]];
I am trying to plot the graph but have the quarterly, not monthly, dates appear on the X axis. For presentation reasons, I might need to reduce the frequency to semi-annual. This is what I get from my command.
DateListPlot[Accumulate[RandomReal[{1, -0.5}, {93}]], {2011, 1}, FrameTicks ->
{Automatic, {date, None}}, DateTicksFormat -> {"Month", "/", "Year"}]
Any help will be greatly appreciated!


