Top "Pca" questions

Principal component analysis (PCA) is a statistical technique for dimension reduction often used in clustering or factor analysis.

Incremental PCA on big data

I just tried using the IncrementalPCA from sklearn.decomposition, but it threw a MemoryError just like the PCA and RandomizedPCA …

python scikit-learn bigdata hdf5 pca
How do I use principal component analysis in supervised machine learning classification problems?

I have been working through the concepts of principal component analysis in R. I am comfortable with applying PCA to …

machine-learning pca supervised-learning principal-components
Identifying & removing outliers from PCA & QQ plots

I have a 132 x 107 dataset which consists of 2 patient types - (33 of patient 1) and (99 of patient 2). I'm looking for outliers …

r pca outliers quantile
PCA and KNN algorithm

I am using KNN to classify handwritten digits. I also now have implemented PCA to reduce the dimensionality. From 256 I …

algorithm pca knn
Invalid 'dimnames' given for data set

I have selected a few columns of my original dataset with the code: envfriend <- data.l1[c("eb_1","…

r pca rowname
ggbiplot - change the group color and marker

In the example ggbiplot script plot there are 3 groups, how can I change the marker colors and shapes? library(ggbiplot) …

r pca ggbiplot
Plot a Correlation Circle in Python

I've been doing some Geometrical Data Analysis (GDA) such as Principal Component Analysis (PCA). I'm looking to plot a Correlation …

python correlation pca eigenvalue eigenvector
MATLAB is running out of memory but it should not be

I'm trying to apply PCA on my data using princomp(x), that has been standardized. The data is <16 x 1036800 …

matlab memory out-of-memory linear-algebra pca
How to use Robust PCA output as principal-component (eigen)vectors from traditional PCA

I am using PCA to reduce the dimensionality of a N-dimensional dataset, but I want to build in robustness to …

python pca
How to use princomp () function in R when covariance matrix has zero's?

While using princomp() function in R, the following error is encountered : "covariance matrix is not non-negative definite". I think, this …

r statistics pca eigenvector princomp