I have a whole bunch of columns in a dataframe that I'm plotting like this:
df.xs('Mean', level=1).cumsum().plot(cmap='winter').
This plots the cumulative sum of the means over time for all of my columns. (level 0 multiindex is time) However, I'd like to highlight a specific column in the plot with a different colour, but am unsure how to go about it. Something like this:
df.xs('Mean', level=1).cumsum().plot(cmap='winter', color={'my_specific_column':'red'}).
which will plot all of the other columns along the 'winter' cmap spectrum (teal to blue), except for 'my_specific_column', which will be red.
Any ideas?