Visualizing Data using t-SNE, Laurens van der Maaten and Geoffrey Hinton, 2008Journal of Machine Learning Research, Vol. 9 (JMLR.org)DOI: 10.1162/jmlr.2008.02579a - This foundational paper introduced the t-distributed Stochastic Neighbor Embedding (t-SNE) algorithm for visualizing high-dimensional data.
The Elements of Statistical Learning: Data Mining, Inference, and Prediction, Trevor Hastie, Robert Tibshirani, and Jerome Friedman, 2009 (Springer) - A widely respected textbook providing a statistical framework for various machine learning methods, including a detailed chapter on dimensionality reduction techniques like Principal Component Analysis (PCA). (2nd edition)
sklearn.decomposition.PCA, scikit-learn developers, 2024 - Official documentation for scikit-learn's PCA implementation, offering details on parameters, attributes, and usage examples.
sklearn.manifold.TSNE, scikit-learn developers, 2024 - Official documentation for scikit-learn's t-SNE implementation, providing information on hyperparameters like perplexity and learning rate, and practical considerations.