Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
278 views
in Technique[技术] by (71.8m points)

How to convert a float (fraction of minutes) to timedelta in pandas?

I would like to interpolate a signal that was measured in minutes: 1 ~= 1 min and 1.5 ~= 1min 30s. I would like to convert that to something timelike and see if the interpolation method works better.

My Series looks like:

retentionTime
0.066     2447
3.888     3357
4.061     3988
4.087     5143
4.381     4440
          ... 
question from:https://stackoverflow.com/questions/65877756/how-to-convert-a-float-fraction-of-minutes-to-timedelta-in-pandas

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The index can be converted to minutes using pandas.to_timedelta():

chrom.index = pd.to_timedelta(chrom.index, unit='minutes')

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...