如何转换值以对应于时间序列?

时间:2019-01-05 16:08:31

标签: python timestamp

假设有一个时间序列

from 2018-12-31 01:00 to 2018-12-31 23:59. (timestamp 1546218000 ~ 1546300740) 

我想绘制与时间段成比例的值线。

例如,如果值是10和5,

10 will be [1546218000, 1546300740] # 10 is the biggest number and it corresponds to 01:00 to 23:59

5 will be  [1546218000, 1546259340] # 5 is half of 10 it corresponds to 01:00 to 12:29

如果值分别为20、10、5,则20将是[1546218000,1546300740],而10将是[1546218000,1546259340]。

如果与时间序列无关,我可以

( every value / the biggest value) * the biggest value

但是我不知道如何在时间序列上完成相同的工作。如果能得到一些模块或算法来完成这项工作,我将不胜感激。

0 个答案:

没有答案