我正在绘制一些直方图并且遇到问题histtype=stepfilled
。填充曲线显然有一些错误的锚点:
还是我缺少一些设置?
代码非常简单:
ax2 = fig.add_subplot(212)
ax2.hist(self._neutrinoEnergies, histtype='stepfilled', color=colors.pop())
ax2.set_title(r'Neutrino Energies')
ax2.set_xlabel(r'$E_\nu$')
ax2.set_ylabel('count')
ax2.set_yscale('log')
顺便提一句。如果我设置histtype='bar'
,则根本没有条(尽管如果我不将 yscale 设置为 ,它会起作用'log'
):