I have list of data want to plot on a subplot. Then I want to lable ylable with different set of colour. See the simple code example below:-
import matplotlib.pyplot as plt
plt.plot([1,2,3,4])
plt.ylabel('yellow red blue')
plt.show()
This produces the following image:-

In the resultant image ylable is named as 'yellow red blue' and all in black colour. But I would like to have this label coloured like this:-
'yellow' with yellow colour, 'red' with red colour and 'blue' with blue colour.
Is it possible with matplotlib?
