标签: python csv dataframe
我有一个数据框,其中有两列“时间”(日期)和“计数”,我想用x轴上的时间和y轴上的计数来绘制它。.
df = df[['time','count']]
plt.plot('time','count')