Multidimensional/multivariate dynamic time warping (DTW) library/code in Python

前端 未结 3 1582
温柔的废话
温柔的废话 2021-02-08 17:31

I am working on a time series data. The data available is multi-variate. So for every instance of time there are three data points available. Format:

|

3条回答
  •  野的像风
    2021-02-08 18:10

    I think that it is a good idea to try out a method in whatever implementation is already available before considering whether it worth working on a reimplementation.

    Did you try the following ?

    from rpy2.robjects.packages import importr
    # You'll obviously need the R package "dtw" installed with your R
    dtw = importr("dtw")
    
    # all functions and objects in the R package "dtw" are now available
    # with `dtw.`
    

提交回复
热议问题