Closed pit9921 closed 3 years ago
Is there any possibility how to iretate over all columns in df? I have asked already here: https://stackoverflow.com/questions/67447727/iretate-over-columns-in-df-and-calculate-euclidean-distance-with-one-column-in-pandas?
Solution found.
Hi,
with the following code there is possible to synchronize two time series (x and y).
import numpy as np from scipy.spatial.distance import euclidean
Is there any way how to synchronize more than two time series?
I tried to:
distance, path = fastdtw(x, y, z, dist=euclidean)
but only size-1 arrays can be converted to Python scalars.