我有2个pandas数据框,我试图在同一图上绘制它们的累积分布。我更喜欢histype=step
带来的空缺样式,但是由于某些原因,alpha值确实很低,我似乎无法弄清楚如何解决它。
a.hist(cumulative=True, density=True, bins=100, alpha=1, histtype='step')
b.hist(cumulative=True, density=True, bins=100, alpha=1, histtype='step')
将Alpha设置为1.0以下(例如0.5)会使绘图更加不可读
如果我使用逐步填充样式,则alpha参数似乎可以正常工作。
a.hist(cumulative=True, density=True, bins=100, alpha=1, histtype='stepfilled')
b.hist(cumulative=True, density=True, bins=100, alpha=1, histtype='stepfilled')
我正在使用seaborn和pandas,以防万一。任何人都知道是什么导致了这种奇怪的行为或如何解决它?