There are six popular SVD engines in R (base::svd, corpcor, RSpectra, irlba, rsvd, svd (PROPACK)) – each with its own argument list, naming conventions and edge-cases (some refuse to return the full rank, others crash on tall-skinny matrices).
svd_wrapper() smooths that out:
bi_projector – an S3 class that stores
loadings v, scores s, singular values
sdev plus the fitted pre-processor.That means immediate access to verbs such as project(),
reconstruct(), truncate(),
partial_project().
set.seed(1)
X <- matrix(rnorm(35*10), 35, 10) # 35 obs × 10 vars
sv_fast <- svd_wrapper(X, ncomp = 5, preproc = center(), method = "fast")
# irlba backend (if installed) gives identical results
sv_irlba <- if (requireNamespace("irlba", quietly = TRUE)) {
suppressWarnings(svd_wrapper(X, ncomp = 5, preproc = center(), method = "irlba"))
}
# Same downstream code works for both objects:
head(scores(sv_fast)) # 35 × 5
#> [,1] [,2] [,3] [,4] [,5]
#> [1,] -2.9415181 -1.6140167 0.2117456 0.12109736 -0.46419317
#> [2,] 0.4743086 0.3458298 -0.8467096 -1.21167498 0.02074819
#> [3,] -1.6999172 -1.1535717 -1.0276227 -0.33535843 0.37155930
#> [4,] 0.1131790 0.7789166 -0.7394153 0.43625966 2.24260205
#> [5,] 0.8437314 -1.7600608 -0.8939140 0.77861595 0.81936957
#> [6,] 0.6063990 -1.8810077 1.2246519 0.03652504 -1.40433408
if (!is.null(sv_irlba)) {
all.equal(scores(sv_fast), scores(sv_irlba))
}
#> [1] "Mean relative difference: 0.8059074"pca()Most people really want PCA, so pca() is a thin wrapper
that
svd_wrapper() with sane defaults,data(iris)
X_iris <- as.matrix(iris[, 1:4])
pca_fit <- pca(X_iris, ncomp = 4) # defaults to method = "fast", preproc=center()
print(pca_fit)
#> PCA object -- derived from SVD
#>
#> Data: 150 observations x 4 variables
#> Components retained: 4
#>
#> Variance explained (per component):
#> 1 2 3 4 92.46 5.31 1.71 0.52% (cumulative: 92.46 97.77 99.48 100%)bi_projector?Think bidirectional mapping:
data space (p variables) ↔ component space (d ≤ p)
new samples: project() ← scores
new variables: project_vars() ← loadings
reconstruction ↔ (scores %*% t(loadings))
A bi_projector therefore carries
| slot | shape | description |
|---|---|---|
v |
p × d | component loadings (columns) |
s |
n × d | score matrix (rows = observations) |
sdev |
d | singular values (or SDs related to components) |
preproc |
– | fitted transformer so you never leak training stats |
Because pca() returns a bi_projector, you
get other methods for free:
The next chunk quietly touches a few more branches used in the unit
tests (std_scores(), perm_test(),
rotate()), but keeps printing to a minimum:
# std scores
head(std_scores(svd_wrapper(X, ncomp = 3))) # Use the earlier X data
#> [,1] [,2] [,3]
#> [1,] -2.1517996 -1.2898029 -0.009068656
#> [2,] 0.2706758 0.3540074 -0.658705409
#> [3,] -1.3315759 -0.7788579 -1.206524820
#> [4,] -0.0595748 0.7971995 -0.971493443
#> [5,] 0.5035052 -1.2105838 -1.291893170
#> [6,] 0.4441909 -1.5304768 0.866038002
# tiny permutation test (10 perms; obviously too few for science)
# This requires perm_test.pca method
# Make sure X_iris is centered if perm_test needs centered data
perm_res <- perm_test(pca_fit, X_iris, nperm = 10, comps = 2)
#> Pre-calculating reconstructions for stepwise testing...
#> Running 10 permutations sequentially for up to 2 PCA components (alpha=0.050, serial)...
#> Testing Component 1/2...
#> Component 1 p-value (0.09091) > alpha (0.050). Stopping sequential testing.
print(perm_res$component_results)
#> # A tibble: 1 × 5
#> comp observed pval lower_ci upper_ci
#> <int> <dbl> <dbl> <dbl> <dbl>
#> 1 1 0.925 0.0909 0.682 0.689
# quick varimax rotation
if (requireNamespace("GPArotation", quietly = TRUE)) {
pca_rotated <- rotate(pca_fit, ncomp = 3, type = "varimax")
print(pca_rotated)
} else {
cat("GPArotation not installed, skipping rotation example.\n")
}
#> PCA object -- derived from SVD
#>
#> Data: 150 observations x 4 variables
#> Components retained: 4
#>
#> Variance explained (per component):
#> 1 2 3 4 46.56 3.92 5.68 43.84% (cumulative: 46.56 50.48 56.16 100%)
#>
#> Explained variance from rotation:
#> 82.9 %
#> 6.98 %
#> 10.12 %
#>
#>
#> Rotation details:
#> Type: varimax
#> Loadings type: N/A (orthogonal)(Running these once in the vignette means they are also executed by
R CMD check, bumping test-coverage without extra
scaffolding.)
svd_wrapper() gives you a unified front end to
half-a-dozen SVD engines.pca() piggy-backs on that, returning a fully featured
bi_projector.bi_projector contract means the same verbs &
plotting utilities work for any decomposition you wrap into the
framework later.sessionInfo()
#> R version 4.5.1 (2025-06-13)
#> Platform: aarch64-apple-darwin20
#> Running under: macOS Sonoma 14.3
#>
#> Matrix products: default
#> BLAS: /Library/Frameworks/R.framework/Versions/4.5-arm64/Resources/lib/libRblas.0.dylib
#> LAPACK: /Library/Frameworks/R.framework/Versions/4.5-arm64/Resources/lib/libRlapack.dylib; LAPACK version 3.12.1
#>
#> locale:
#> [1] C/en_CA.UTF-8/en_CA.UTF-8/C/en_CA.UTF-8/en_CA.UTF-8
#>
#> time zone: America/Toronto
#> tzcode source: internal
#>
#> attached base packages:
#> [1] stats graphics grDevices utils datasets methods base
#>
#> other attached packages:
#> [1] glmnet_5.0 Matrix_1.7-3 knitr_1.51 tibble_3.3.1
#> [5] dplyr_1.2.1 ggplot2_4.0.3 multivarious_0.3.2
#>
#> loaded via a namespace (and not attached):
#> [1] GPArotation_2026.4-1 sass_0.4.10 utf8_1.2.6
#> [4] generics_0.1.4 shape_1.4.6.1 lattice_0.22-7
#> [7] digest_0.6.39 magrittr_2.0.5 evaluate_1.0.5
#> [10] grid_4.5.1 RColorBrewer_1.1-3 iterators_1.0.14
#> [13] fastmap_1.2.0 foreach_1.5.2 jsonlite_2.0.0
#> [16] ggrepel_0.9.8 RSpectra_0.16-2 survival_3.8-3
#> [19] mgcv_1.9-3 scales_1.4.0 codetools_0.2-20
#> [22] jquerylib_0.1.4 Rdpack_2.6.6 reformulas_0.4.4
#> [25] cli_3.6.6 rlang_1.2.0 chk_0.10.0
#> [28] rbibutils_2.4.1 splines_4.5.1 withr_3.0.2
#> [31] cachem_1.1.0 yaml_2.3.12 otel_0.2.0
#> [34] tools_4.5.1 corpcor_1.6.10 vctrs_0.7.3
#> [37] R6_2.6.1 matrixStats_1.5.0 proxy_0.4-29
#> [40] lifecycle_1.0.5 randomForest_4.7-1.2 MASS_7.3-65
#> [43] irlba_2.3.7 pkgconfig_2.0.3 pillar_1.11.1
#> [46] bslib_0.10.0 geigen_2.3 gtable_0.3.6
#> [49] glue_1.8.1 Rcpp_1.1.1-1.1 xfun_0.57
#> [52] tidyselect_1.2.1 farver_2.1.2 nlme_3.1-168
#> [55] htmltools_0.5.9 rmarkdown_2.31 labeling_0.4.3
#> [58] compiler_4.5.1 S7_0.2.2