[Solved] How to plot bar chart when the columns of the data are each day of each month?
The pandas command Series.plot.bar accepts a color keyword, where you can input a list of colors (in RGBA or color names). I’m not entirely sure on what logic does the command follow when the list is too short, but if the list is the right length, it’ll work. Example: %matplotlib inline import pandas as pd … Read more