Which algorithm can be used to reduce dimension of multiple time series?
In my dataset, a data point is essentially a Time series of 6 feature over a year per month so in all, it results in 6*12=72 features. I need to find class outliers so I perform dimensionality reduction hoping the difference in data is maintained and then apply k-means clustering and compute distance.
For dimensionality reduction I have tried PCA and simple autoencoder to reduce dimension from 72 to 6 but results are unsatisfactory.
Can anyone please suggest any other way to reduce dimension of this type of data.
Topic pytorch pca autoencoder python dimensionality-reduction
Category Data Science