我正在使用python 3.6,pandas和jupyter笔记本构建数据分析仪表板。将格式为Tue,2020年2月25日EST 15:32:52 EST的充满时间戳的列转换为02-25-2020 15:32时,出现以下错误。
pd.to_datetime(data['occurred']).dt.strftime('%m-%d-%Y %H:%M')
tzname EST identified but not understood.
Pass `tzinfos` argument in order to correctly return a timezone-aware datetime.
时间转换没有问题,但是会引发错误,我想解决这个问题。我曾尝试对此进行研究,但没有找到在to_datetime()函数中传递tzinfos的明确方法。