TypeError:无效的类型提升

时间:2018-09-10 12:41:25

标签: python pandas matplotlib

我正在尝试绘制下面的数据,这些数据具有值和日期,但出现错误

      Date      Subscriber
0   2017-08-01  168190046
1   2017-08-02  168773207
2   2017-08-03  169123818
3   2017-08-04  170301024

%matplotlib inline
plt.xlabel('Date')
plt.ylabel('LTE_Subs')
plt.scatter(df.Date,df.LTE_Subs,color='red',marker='+')

0 个答案:

没有答案