Python中Timedelta转换为Int或Float方式

Timedelta转换为Int或Float方式

Pandas处理

import pandas as pd
dataSet['t'] =dataSet['time'].astype('timedelta64[D]').astype(float)
dataSet['t'] .head()

Numpy处理

import numpy as np
dataSet['t']=(dataSet['time']/np.timedelta64(1, 'D')).astype(float)
dataSet['t'] .head()

区别

方法(一)pandas是直接提取days数值,如90 days 04:48:00提取数值90;

方法(二)numpy是把整个时间进行换算,如90 days 04:48:00转化为90.200000。

可以根据实际需求,选择不同的方法进行时间转换。

timedelta、float 互转

Python中Timedelta转换为Int或Float方式_第1张图片

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

你可能感兴趣的:(Python中Timedelta转换为Int或Float方式)