合流
适用于Python的时间序列实用程序库。
特征:
时间间隔均匀/不均匀的类
不等距时间序列的()
将等距时间序列转换为数据集()
时间序列的预测包装,例如keras()
安装
要求:
Python3.5+
安装:
git clone https://github.com/kweimann/conflux.git
cd conflux
pip install .
例子
插补
有关完整的示例,请参见examples/interpolation.py 。
# number of observations
n = 25
# time interval i.e. first and last timestamp
t0 , tn = [ 0 , 200 ]
# function producing observation value from observation ti
1