棒グラフの色を変更したい。ただし、常に黒でプロットされます。どこが間違っていますか?
import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(111)
rects = ax.bar(range(len(l)), l, color = 'r')
ax.set_title('title')
ax.set_xlabel('xlabel')
ax.set_ylabel('ylabel')
plt.show()
他のパラメーター (「g」、「c」など) を試してみましたが、結果は常に同じです。