With some code, I used to derive a histogram with different colors per bar:
When I use the same code now, I get this:
How do I change it back to being colorful?
I am using Visual Studio Code (if that matters) and my code looks something like this:
pd.Series([1,7,9,8,5], index=[1,2,3,4,5]).plot(kind="bar")
Thanks a lot!