PDFのプロットと2つの「ステップ」ヒストグラムを重ねた図があります。凡例には、1 本の線と 2 つの四角形が示されています。2 つのヒストグラムの凡例ハンドラーを変更して線も表示する方法はありますか? サンプルコードは次のとおりです。
x = np.linspace(0,2.5,1000)
plt.xlim((0,2.5))
plt.ylim((0,2.5))
plt.plot(x,rv.pdf(x),'k-.',label='pdf')
hist(series1,125,color='k',normed=1,histtype='step',label='hist 1',linestyle='dashed')
hist(series2,125,color='k',normed=1,histtype='step',label='hist 2')
plt.legend(loc='best')
rv は scipy.stats 確率変数です。