在matplotlib中绘制x中的小时数,覆盖自动设置

时间:2015-06-12 11:06:03

标签: python matplotlib

我有一个包含一天中小时数据的数据框和一个包含身体活动的列。我想绘制活动' SVM'从第12个中午到第12个中午的x小时。然而,该图自动从00到23绘制。这是 加载文件后的部分代码:

enter code here

In [16] x = act1[['Time1']].values

In [17] y= act1[['SVM']].values

In [18] y
Out[18]: 
array([[  11.63],
       [  12.13],
       [  12.14],
       ..., 
       [  86.37],
       [ 154.61],
       [ 127.49]])

In [19]  plt.plot(x,y)
Out[19]: [<matplotlib.lines.Line2D at 0x9e7f5c0>]

0 个答案:

没有答案