I have a data set of about 400 bivariate time series which each contain roughly 80,000 observations. After looking at them manually it is obvious that some are very similar and so I want to cluster them using DTW (Dynamic Time Warping).
Now, if I try creating the distance matrix for the whole set using the DTW method, R tells me it needs 50 GB of RAM (which I don't have). Is it possible to calculate the distance between two time series separately using a for loop (or similar)?
Which other distance methods would you recommend for clustering time series?