Time series distance metric

后端 未结 4 1379
鱼传尺愫
鱼传尺愫 2021-02-14 18:50

In order to clusterize a set of time series I\'m looking for a smart distance metric. I\'ve tried some well known metric but no one fits to my case.

ex: Let\'s assume t

4条回答
  •  爱一瞬间的悲伤
    2021-02-14 19:17

    Pietro P's answer is just a special case of applying a convolution to your time series.

    If I gave the kernel:

    [1,1,...,1,1,1,0,0,0,0,...0,0]
    

    I would get a cumulative series .

    Adding a convolution works because you're giving each data point information about it's neighbours - it's now order dependent.

    It might be interesting to try with a guassian convolution or other kernels.

提交回复
热议问题