holoview不绘制与时间戳

时间:2019-01-27 22:03:48

标签: python python-3.x timestamp holoviews

因此,我试图从包含timetemp列的pandas df中绘制一些数据。我尝试使用以下方法制作一个简单的holoviews图:

tempplot = hv.Curve((df), 'time', 'temp')
tempplot

这给了我错误

TypeError: Cannot compare type 'Timestamp' with type 'str'

df.info()告诉我我有一个时间对象(y-m-d hh:mm:ss)和temp float64

我尝试使用

转换时间列
datetime.fromtimestamp(float(df["time"])).isoformat()

导致

TypeError: cannot convert the series to <class 'float'>

关于如何获取全息视图以使用此时间戳数据进行绘图或将其转换为可用形式的任何建议? 谢谢!

0 个答案:

没有答案