将pAWas df中PRAW的created_utc列转换为新时间列

时间:2017-01-06 18:07:09

标签: python praw

我在这里阅读了q& a&#(以及https://www.reddit.com/r/redditdev/comments/46g9ao/using_praw_to_call_reddit_api_need_help/),了解如何转换Reddit' created_utc'然而,变量到时间戳,我正在努力大规模地做这件事(超过5k行的数据)。使用PRAW脚本创建的.csv文件会为' created_utc创建一个列,'我想在pandas数据框中创建一个新列。

我收到错误消息:

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

当我尝试:

date = datetime.utcfromtimestamp(df.created_utc)

parsed_date = datetime.utcfromtimestamp(created_utc)

即使我可以将这些值放入&#39;列表中,&#39;我可以尝试重新编码以使其工作:

import datetime
print(
    datetime.datetime.fromtimestamp(
        int("1284101485")
    ).strftime('%Y-%m-%d %H:%M:%S')
)

帮助?

0 个答案:

没有答案