1 つの色の y 軸ラベルと目盛りラベルを赤で表示するにはどうすればよいでしょうか?
たとえば、「y ラベル」と 0 ~ 40 の値を赤で表示します。
import matplotlib.pyplot as plt
import numpy as np
x = np.arange(10)
fig = plt.figure()
ax = plt.subplot(111)
ax.set_ylabel("y-label")
for i in xrange(5):
ax.plot(x, i * x, label='$y = %ix$' % i)
ax.legend()
plt.show()