I am extending this question to figure out how to make each of the lines a different shade of red or black. This might require making a custom color map or somehow tweaking the colormap "RdGy".
Using the data and packages from the last question, this is what I have so far:
df0.groupby([df0.ROI.str.split('_').str[0],'Band']).Mean.plot.kde(colormap='RdGy')
plt.legend()
plt.show()
And the figure looks like this:
But I want the 'bcs' lines to be shades of black and the 'red' lines to be shades of red. How is this possible?
It would also be great to customize the names of the lines in the legend, such as "BCS Band 1", etc.. but not sure how to do this either.