groupby计数_折线图

送分小仙女□ 提交于 2019-12-10 17:21:52

groupby计数_折线图

date_count = data[['cust_isn','last_etl_acg_dt']].groupby('last_etl_acg_dt',as_index=False).count()
plt.figure(figsize=[12,6])
plt.plot(date_count.iloc[:,0],date_count.iloc[:,1],'.-')
plt.xticks(rotation=45)
plt.grid()
plt.ylim([0,200000])
plt.show()

在这里插入图片描述

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!