how to sum the revenue from every day in a dataframe python code example
Example: how to sum the revenue from every day in a dataframe python
df.groupby('Date')['column_you_want_to_sum'].sum()
df.groupby('Date')['column_you_want_to_sum'].sum()