因此,我试图从包含time
和temp
列的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'>
关于如何获取全息视图以使用此时间戳数据进行绘图或将其转换为可用形式的任何建议? 谢谢!