def most_used_hashtags(n, hashtag_df):
15 points Create a dataframe with the n most used hashtags overall and how many times they were used each month
The dataframe must have the following columns:
'hashtag', string, the text of the hastag
'created_at', datetime, the time the hashtag was tweeted
'count', int, the times the hastag was used each month
use resample
Choose the correct statement regarding the function most_used_hashtags:
A) The function calculates the total number of tweets containing each hashtag.
B) The function resamples the data to find the most used hashtags each month.
C) The function returns the average count of hashtags used each month.
D) The function counts the total number of hashtags used each day.