Matplotlib弃用警告

时间:2018-08-30 02:54:52

标签: python matplotlib

我正在尝试使用matplot在jupyter笔记本中绘制直方图,在这里我试图在同一轴上放置2个数据集以进行比较,并且我不断收到过时警告,但我似乎无法弄清楚为什么。到底是什么引起了这个问题?

ax3 = fig2.add_subplot(331)
ax3.set_xlabel("Danceability")
ax3.set_ylabel('Count')
ax3.set_title('Danceability Distribution')
pos_dance.hist(alpha = 0.5, bins = 30)
ax4 = fig2.add_subplot(331)
neg_dance.hist(alpha = 0.5, bins = 30)

0 个答案:

没有答案