I have some data (20 stock price time series) and want to compare different approaches for dimensionality reduction other than PCA (I want to fit only 2 variables in my AR model). I've tried autoencoders, but their reproduction error is very high. Apart from kernel PCA what are other methods I can try?
Asked
Active
Viewed 864 times
1 Answers
1
Besides PCA, Kernel PCA, and Autoencoders you can try:
- Laplacian Eigenmap (LE)
- Locally Linear Embedding (LLE)
- Isometric Mapping (Isomap)
- Singular Value Decomposition (SVD)
- Maximum Variance Unfolding (MVU)
- Locality preserving projection (LPP)
- Diffusion map (DM)
- Discrete Fourier Transform (DFT)
- Discrete Wavelet Transform (DWT)
For more information see:
A couple more that the authors did not mention are:
- t-Distributed Stochastic Neighbor Embedding (t-SNE)
- Symbolic Aggregate approXimation (SAX)
Brian O'Donnell
- 1,997
- 9
- 23