グラフの下の色付きの領域の凡例ボックスにラベルを表示できるようにしたいと思います。色付きの領域は13<x<17から22<x<29の間です
使ってます:
for i in data.findOne()
a = [element['total'] for element in i['counts']]
P.plot(a, label="curve 1", color='green')
where = np.zeros(len(a),dtype=bool)
where[13:17] = True
where[22:29] = True
P.fill_between(np.arange(len(a)),a,where=where,color='green', alpha='0.5')
P.legend()
P.show()
凡例を表示するコマンドをどこに挿入できますか?影付きの領域の凡例を、曲線の凡例ボックスと同じ凡例ボックスに入れたいと思います。
ありがとうございました!
これはどのように見えるかです: