熊猫读取CSV日期时间列绘图

时间:2020-07-23 09:09:13

标签: python pandas csv

我正在使用Pandas从CSV导入数据。列之一是日期时间。我正在使用...

fromEvent(el, 'wheel').pipe(
  switchMap(e => 
    concat(
      //wrap the original event, which fires immediately
      of({kind: 'ON_WHEEL', e}),
      // fire a onWheelEnd after a 200ms delay
      // this event is unsubscribed by the switchMap if a new event comes in
      // before the delay
      of({kind: 'ON_WHEEL_END}).pipe(delay(200))
    )
  )
)

...将datetime列导入为“ datetime64 [ns]”,根据...,

datetime = ['datetime']
df= pd.read_csv(File, parse_dates=datetime)

...的格式正确。但是,当我根据“ datetime”列进行绘制时,它看起来像这样:

enter image description here

它应该看起来像这样(当我直接使用直接从SQL提取的相同数据时,它就是这样。)

enter image description here

我认为datetime列仍不是正确的dtype(即使它声明它是datetime64 [ns])。

我应该怎么做才能确保第一个情节看起来像第二个情节?

0 个答案:

没有答案