I have a database filled with different bird species that were seen on different dates (10 years of records).
Each row in the table contains:
Date, Time, Bird Species, Spot where it was seen
So it looks like:
2008-04-07, 14:22:48, Himalayan Snowcock, Spot-4
2008-04-19, 11:44:01, Ring-necked Pheasant, Spot-12
...
2019-05-20, 08:51:14, American Kestrel, Spot-8
It contains thousands of records like this.
Now I need to create a calendar detailing Birds x Months and on each cell it will contain the probability of seeing that bird on that month.
How can I compute the probability based on the records I have?