Below is the data that I have:
Item Date
Apple 09/06/2015
Orange 19/06/2015
Pear 01/09/2015
Kiwi 20/10/2015
I would like to count the items by the month and year in Date column in R.
Below is the output I would like to achieve:
Date Frequency
05/2015 0
06/2015 2
07/2015 0
08/2015 0
09/2015 1
10/2015 1
Thank you.