TypeError:|TypeError: an integer is required (got type str)

这里是把时间戳转化为正常时间碰到的问题:
运行traindata['context_timestamp']=traindata['context_timestamp'].apply(transform_time)报错如下(其中transform_time是自己已经定义好的时间戳转化函数):

TypeError:|TypeError: an integer is required (got type str)
文章图片


百度了一下还是不知道哪里出错,然后自己
【TypeError:|TypeError: an integer is required (got type str)】traindata.info(),数据类型如下:
TypeError:|TypeError: an integer is required (got type str)
文章图片

后来就瞎弄,最后好了,其实就是加了一个类型转化:
traindata['context_timestamp']=traindata['context_timestamp'].astype('int').apply(transform_time)



    推荐阅读