I have four of these kind of dataframes each with a different name (Apple,Ball,Cat)
with different values of frequency but same 4 season names
Seasons Frequency
DJF 9886
JJA 5408
MAM 12876
SON 6932
And I am trying to make a group bar plot.
The graph I'm looking for is like this, where
c,d,e,f will be the names - Apple, Ball, Cat.
Y-axis will be Frequency
Each group will have 4 bars: DJF,JJA,MAM,SON
Filled by seasons
The number of Frequency written above the bar plot.
How can I format the data to make it suitable for ggplot (cbind, melt etc) and use it in ggplot?