如何使用Seaborn绘制直方图,其中Date是索引列

时间:2019-04-04 10:28:38

标签: python-3.x histogram seaborn pandas-groupby date-histogram

我必须绘制直方图才能查看数据的分布。在数据中,列为订单日期和订单号。我有按订单号计数的订单日期。使用Seaborn绘制直方图时出现错误

df=df.groupby(['Order Date']).count()
print(df.info())
sns.distplot((df['Order Date']), hist=True, kde=False,
                 bins=int(100/5), color = 'blue',
             hist_kws={'edgecolor':'black'})
plt.title('Histogram of Orders by Time')
plt.xlabel('Date')
plt.ylabel('OrdersCount')
plt.show()

我希望在x轴上显示日期列

我找不到这个问题的答案-如果已经以其他格式回答了其他问题,我深感抱歉。

0 个答案:

没有答案