This seems so simple, but there is something fundamental I am not getting here. I have a dataframe with counts of some event per month as columns, per year as rows. Like this:
season sep oct nov dec jan feb
2000 2 7 47 152 259 140
2001 1 5 88 236 251 145
2002 2 14 72 263 331 147
2003 5 6 71 207 290 242
First, I would like to create a bar chart for one season. For example, for the 2000 season, a bar chart showing the values for each month as a vertical bar (alas, not enough rep points to post an image of an example). I'm guessing I need to reshape my data in some way?
Ultimately I would like to create a facet wrapped set of charts, one for each season.
Please note I found a similar post, but the post was over complicated due to a lack of clarity on the question.