from _api_doc_utils import *PCA transforms
Deterministic and randomized principal-components bases
1 Where it fits
Group: Transforms
PCA learns an orthogonal low-rank basis from a design matrix. It centers the training data, computes principal directions, and maps observations to component scores:
\[ Z = (X - \bar X) V_k. \]
With whiten=True, scores are rescaled by the singular values.
2 Objective and transforms
Let \(X_c=X-\mathbf1\bar x'\) and let \(X_c=U\operatorname{diag}(s)V'\) be its singular value decomposition. Ordinary scores are
\[ Z=X_cV_k, \]
and the rank-\(k\) reconstruction minimizes
\[ \min_{\operatorname{rank}(\tilde X)\leq k}\|X_c-\tilde X\|_F^2. \]
For a fitted sample of size \(n\), whitening returns
\[ Z_{\mathrm{white}} = X_cV_k\operatorname{diag}\left(\frac{\sqrt{n-1}}{s_j}\right), \]
so the retained in-sample score covariance is the identity. Inverse transformation removes that scaling before applying \(V_k'\) and adding \(\bar x\). The summary reports
\[ \widehat{\operatorname{Var}}_j=\frac{s_j^2}{n-1}, \qquad \text{explained ratio}_j = \frac{s_j^2}{\|X_c\|_F^2}, \]
where the ratio denominator includes variance in discarded components.
PCA delegates a truncated largest-singular-vector solve to Linfa. RandomizedPCA instead constructs a randomized range of width \(k+s\), performs the requested power iterations, and takes a small SVD in that range. It returns unwhitened scores only and exposes singular values but not explained-variance fields.
3 Inference and performance
These are deterministic or randomized feature transforms, not statistical coefficient estimators; neither class provides standard errors or uncertainty for the learned subspace. Principal directions are sign-indeterminate, and repeated singular values identify only a subspace.
A full centered design requires \(O(np)\) storage. Truncated PCA cost depends on the iterative eigensolver and requested \(k\). RandomizedPCA costs roughly \(O(np(k+s)(q+1))\) for oversampling \(s\) and power count \(q\), plus a small decomposition, and is most useful when \(k+s\ll\min(n,p)\). More power iterations improve spectral separation at additional passes over \(X\). Both transforms densify their input.
4 Python API
Constructors: cm.PCA and cm.RandomizedPCA
Use PCA(n_components, whiten=False) for the Linfa truncated solver or RandomizedPCA(n_components, oversamples=10, power_iter=1, seed=None) for randomized SVD. Both expose fit, transform, fit_transform, inverse_transform, and summary. At least two rows are required for PCA; randomized rank cannot exceed min(x.shape).
print(inspect.signature(cm.PCA))(n_components, whiten=False)
cls = cm.PCA
display(HTML(html_table(["Public method"], public_methods(cls))))| Public method |
|---|
fit(self, /, x) |
fit_transform(self, /, x) |
inverse_transform(self, /, scores) |
summary(self, /) |
transform(self, /, x) |
cls = cm.RandomizedPCA
display(HTML(html_table(["Public method"], public_methods(cls))))| Public method |
|---|
fit(self, /, x) |
fit_transform(self, /, x) |
inverse_transform(self, /, scores) |
summary(self, /) |
transform(self, /, x) |
5 Minimal example
rng = np.random.default_rng(22)
x = rng.normal(size=(150, 5)) @ np.array([[1, 0.2, 0.1, 0, 0], [0, 0.8, 0.3, 0.1, 0], [0, 0, 0.5, 0.2, 0.1], [0, 0, 0, 0.3, 0.2], [0, 0, 0, 0, 0.1]])
model = cm.PCA(n_components=2)
scores = model.fit_transform(x)
print(scores.shape)
print(model.summary()['explained_variance_ratio'])
print(model.inverse_transform(scores[:2]))
randomized = cm.RandomizedPCA(n_components=2, oversamples=3, power_iter=2, seed=22)
randomized_scores = randomized.fit_transform(x)
print(randomized_scores.shape)
print(randomized.summary()['singular_values'])(150, 2)
[0.42089057 0.07200027]
[[-0.59999493 -1.27742512 -1.11591991 -0.99028971 -0.23423421]
[-0.00377764 -0.12267584 0.63995918 0.15668705 -0.11929998]]
(150, 2)
[13.38707751 10.33775097]
6 summary() contract
The table below is generated by fitting the live class in this repository and then inspecting summary(). Shapes are shown because most values are plain NumPy arrays or scalars.
rng = np.random.default_rng(122)
x = rng.normal(size=(80, 5))
model = cm.PCA(n_components=2)
model.fit(x)
summary = model.summary()
display(HTML(html_table(["summary() key", "shape"], summary_shape_rows(summary))))| summary() key | shape |
|---|---|
n_components |
() |
n_features |
() |
n_samples |
() |
whiten |
() |
components |
(2, 5) |
mean |
(5,) |
explained_variance |
(2,) |
explained_variance_ratio |
(2,) |
singular_values |
(2,) |
RandomizedPCA.summary() returns the fitted mean, component rows, singular values, and randomized solver settings. It omits explained variance because that class does not retain the full-spectrum variance denominator.