So I'm dealing with an analysis on donations. I have dates for September and the total sum of donations on that date i.e. Sept 17th $1000, Sept 18th $2000 etc. I have all this info in a Dataframe. Now I want to see if there is a relation between the day of the week and the amount donated. For this I want to make a bar graph that has a different color for each day of the week (Mon-Fri) on top of the graph I made for the donation and dates graph.
How do I do that? I already have the dataframe that contains Date, Amount Donated, Day of the Week. How do I plot this out? I can use pandas and seaborn
