## `PCA` The `PCA` class implements principal components analysis (PCA), a standard machine learning data preparation technique. PCA can be used to reduce the number of dimensions in a dataset, or to preserve a certain percentage of the variance of a dataset. By default, `PCA` uses the full exact singular value decomposition (SVD), but supports the use of other more efficient decompositions, including approximate singular value decompositions. #### Simple usage example: ```c++ // Use PCA to reduce the number of dimensions to 5 on uniform random data. // This dataset is uniform random in 10 dimensions. // Replace with a data::Load() call or similar for a real application. arma::mat dataset(10, 1000, arma::fill::randu); // 1000 points. mlpack::PCA pca; // Step 1: create PCA object. pca.Apply(dataset, 5); // Step 2: reduce data dimension to 5. // Print some information about the modified dataset. std::cout << "The transformed data matrix has size " << dataset.n_rows /* 5 */ << " x " << dataset.n_cols << "." << std::endl; ```
#### Quick links: * [Constructors](#constructors): create `PCA` objects. * [`Apply()`](#applying-transformations): apply PCA transformation to data. * [Examples](#simple-examples) of simple usage and links to detailed example projects. * [Template parameters](#advanced-functionality-different-decomposition-strategies) for using different decomposition strategies. #### See also: * [`Radical`](radical.md): independent components analysis * [mlpack preprocessing utilities](../preprocessing.md) * [mlpack transformations](../transformations.md) * [Principal component analysis on Wikipedia](https://en.wikipedia.org/wiki/Principal_component_analysis) ### Constructors * `pca = PCA(scaleData=false)` - Construct a `PCA` object. - If `scaleData` is `true`, then all dimensions will have variance scaled to 1 before applying PCA. - The `scaleData` parameter can be inspected with `pca.ScaleData()`, and also set; `pca.ScaleData() = true` will enable data variance scaling. --- * `pca = PCA(scaleData, decompositionPolicy)` - Construct a `PCA` object with a custom decomposition policy. - See the documentation for using [different decomposition strategies](#advanced-functionality-different-decomposition-strategies). ### Applying Transformations * `pca.Apply(data, transformedData)` * `pca.Apply(data, transformedData, eigVal)` * `pca.Apply(data, transformedData, eigVal, eigVec)` - Transform the [column-major matrix](../matrices.md#representing-data-in-mlpack) `data` using PCA, storing the result in `transformedData`. - `data` should be a floating-point matrix (e.g. `arma::mat`, `arma::fmat`, `arma::sp_mat`, etc.) or an expression that evaluates to one. - `transformedData` should be a dense floating-point matrix (e.g., `arma::mat`, `arma::sp_mat`). - The size of `transformedData` will be the same as the size of `data`. - Dimensions in `transformedData` will be ordered decreasing in variance; that is, the first row of `transformedData` will correspond to the dimension with maximum variance. - Optionally, eigenvalues and eigenvectors of the covariance matrix can be returned: * If specified, `eigVal` should be a dense floating-point vector (e.g. `arma::vec`, `arma::fvec`, etc.) and will be filled with the eigenvalues of `transformedData`. * If specified, `eigvec` should be a dense floating-point matrix (e.g. `arma::mat`, `arma::fmat`, etc.) and will be filled with the eigenvectors of `transformedData`. --- * `double varRetained = pca.Apply(data, transformedData, newDimension)` - Use PCA to reduce the number of dimensions in the [column-major matrix](../matrices.md#representing-data-in-mlpack) `data` to `newDimension`, storing the result in `transformedData`. - `data` should be a floating-point matrix (e.g. `arma::mat`, `arma::fmat`, `arma::sp_mat`, etc.) or an expression that evaluates to one. - `transformedData` should be a dense floating-point matrix with the same element type as `data` (e.g. `arma::mat`, `arma::fmat`). - `transformedData` will have `newDimension` rows after the transformation. - Returns a `double` indicating the percentage of variance retained (between `0.0` and `1.0`). --- * `double varRetained = pca.Apply(data, transformedData, varianceToKeep)` - Use PCA to retain the dimensions of the [column-major matrix](../matrices.md#representing-data-in-mlpack) `data` that capture a factor of `varianceToKeep` of the data variance. - `data` should be a floating-point matrix (e.g. `arma::mat`, `arma::fmat`, `arma::sp_mat`, etc.) or an expression that evaluates to one. - `transformedData` should be a dense floating-point matrix with the same element type as `data` (e.g. `arma::mat`, `arma::fmat`). - `transformedData` will have `newDimension` rows after the transformation. - `varianceToKeep` should be a floating-point value between `0.0` and `1.0`. If `1.0`, all of the data variance is retained, and this is equivalent to the first version of `Apply()` (above). - Returns a `double` indicating the percentage of variance actually retained (between `0.0` and `1.0`). --- * `double varRetained = pca.Apply(data, newDimension)` * `double varRetained = pca.Apply(data, varianceToKeep)` - In-place versions of the two `Apply()` functions above. - Equivalent to `pca.Apply(data, data, newDimension)` or `pca.Apply(data, data, varianceToKeep)`. - `data` should be a dense floating-point matrix (e.g. `arma::mat`, `arma::fmat`, etc.). --- ### Simple Examples See also the [simple usage example](#simple-usage-example) for a trivial usage of the `PCA` class. --- Apply PCA to a dataset, keeping dimensions that capture 90% of the data variance. ```c++ // See https://datasets.mlpack.org/satellite.train.csv. arma::mat data; mlpack::data::Load("satellite.train.csv", data, true); const size_t origDim = data.n_rows; mlpack::PCA pca; // Keep 90% of the data variance. pca.Apply(data, 0.9); std::cout << "PCA kept " << data.n_rows << " of " << origDim << " dimensions " << "to capture 90\% of the data variance." << std::endl; ``` --- Apply PCA to a 32-bit floating point dataset with dimension scaling, keeping all dimensions, and printing the 5 largest eigenvalues of the covariance matrix of the transformed data. ```c++ // See https://datasets.mlpack.org/iris.csv. arma::fmat data; mlpack::data::Load("iris.csv", data, true); mlpack::PCA pca(true /* scale data when transforming */); arma::fvec eigval; arma::fmat transformedData; pca.Apply(data, transformedData, eigval); std::cout << "First point, before PCA: " << data.col(0).t(); std::cout << "First point, after PCA: " << transformedData.col(0).t(); std::cout << std::endl; // Now print the top 5 eigenvalues. for (size_t i = 0; i < 5; ++i) std::cout << "Eigenvalue " << i << ": " << eigval[i] << "." << std::endl; ``` --- Apply PCA to a random sparse dataset, to reduce the dimensionality to a 20-dimensional dense dataset. ```c++ arma::sp_mat data; // This dataset has 10k points in 1k dimensions, with 1% density. data.sprandn(1000, 10000, 0.01); mlpack::PCA pca(true /* scale data when transforming */); arma::mat transformedData; const double varianceRetained = pca.Apply(data, transformedData, 20); std::cout << "First point, before PCA: " << data.col(0).t(); std::cout << "First point, after PCA: " << transformedData.col(0).t(); // Note that for random uniform data, this won't capture very much of the // variance! It would be much more for a real, structured dataset. std::cout << "50 dimensions captured " << (100.0 * varianceRetained) << "\% of " << "the data variance." << std::endl; ``` --- ### Advanced Functionality: Different Decomposition Strategies By default, `PCA` uses the full exact singular value decomposition (SVD) to transform data. However, for very large datasets, it may be faster to use alternative strategies, some of which may be approximate. The `PCA` class has one template parameter that allows different decomposition strategies to be used. The full signature of the class is: ``` PCA