public class PCA extends Object implements Projection<double[]>
PCA is mostly used as a tool in exploratory data analysis and for making predictive models. PCA involves the calculation of the eigenvalue decomposition of a data covariance matrix or singular value decomposition of a data matrix, usually after mean centering the data for each attribute. The results of a PCA are usually discussed in terms of component scores and loadings.
As a linear technique, PCA is built for several purposes: first, it enables us to decorrelate the original variables; second, to carry out data compression, where we pay decreasing attention to the numerical accuracy by which we encode the sequence of principal components; third, to reconstruct the original input data using a reduced number of variables according to a least-squares criterion; and fourth, to identify potential clusters in the data.
In certain applications, PCA can be misleading. PCA is heavily influenced when there are outliers in the data. In other situations, the linearity of PCA may be an obstacle to successful data reduction and compression.
Constructor and Description |
---|
PCA(double[][] data)
Constructor.
|
PCA(double[][] data,
boolean cor)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
double[] |
getCenter()
Returns the center of data.
|
double[] |
getCumulativeVarianceProportion()
Returns the cumulative proportion of variance contained in principal components,
ordered from largest to smallest.
|
double[][] |
getLoadings()
Returns the variable loading matrix, ordered from largest to smallest
by corresponding eigenvalues.
|
double[][] |
getProjection()
Returns the projection matrix W.
|
double[] |
getVariance()
Returns the principal component variances, ordered from largest to smallest,
which are the eigenvalues of the covariance or correlation matrix of learning data.
|
double[] |
getVarianceProportion()
Returns the proportion of variance contained in each principal component,
ordered from largest to smallest.
|
double[] |
project(double[] x)
Project a data point to the feature space.
|
double[][] |
project(double[][] x)
Project a set of data toe the feature space.
|
void |
setProjection(double p)
Set the projection matrix with top principal components that contain
(more than) the given percentage of variance.
|
void |
setProjection(int p)
Set the projection matrix with given number of principal components.
|
public PCA(double[][] data)
public PCA(double[][] data, boolean cor)
data
- training data of which each row is a sample. If the sample size
is larger than the data dimension and cor = false, SVD is employed for
efficiency. Otherwise, eigen decomposition on covariance or correlation
matrix is performed.cor
- true if use correlation matrix instead of covariance matrix if ture.public double[] getCenter()
public double[][] getLoadings()
public double[] getVariance()
public double[] getVarianceProportion()
public double[] getCumulativeVarianceProportion()
public double[][] getProjection()
public void setProjection(int p)
p
- choose top p principal components used for projection.public void setProjection(double p)
p
- the required percentage of variance.public double[] project(double[] x)
Projection
project
in interface Projection<double[]>
public double[][] project(double[][] x)
Projection
project
in interface Projection<double[]>
Copyright © 2015. All rights reserved.