Pandas列时间戳转时间

data['timestamp'] = data['OCC_TIM'].apply(lambda x:time.mktime(time.strptime(x,'%Y-%m-%d %H:%M:%S')))

你可能感兴趣的:(Pandas列时间戳转时间)