我正在尝试将嗅探时间转换为秒数。我已经在Python Pandas DataFrame中查看了将timedelta64[ns]列转换为秒,但是该解决方案不起作用。我想也许熊猫线可能有错。
print(sniffTime)
print(type(sniffTime))
输出:
821693000 nanoseconds
<class 'numpy.timedelta64'>
错误
AttributeError: 'numpy.timedelta64' object has no attribute 'total_seconds'
在线:
df['PerSec']=df['PerSec'].div(sniffTime.total_seconds())
繁星淼淼
相关分类