Description Usage Arguments Value Details Author(s) Examples
A function that performs PCA on data.
1  | lol.project.pca(X, r, xfm = FALSE, xfm.opts = list(), robust = FALSE, ...)
 | 
X | 
 
  | 
r | 
 the rank of the projection.  | 
xfm | 
 whether to transform the variables before taking the SVD. 
  | 
xfm.opts | 
 optional arguments to pass to the   | 
robust | 
 whether to perform PCA on a robust estimate of the covariance matrix or not. Defaults to   | 
... | 
 trailing args.  | 
A list containing the following:
 | 
 
  | 
 | 
 the eigen values associated with the eigendecomposition.  | 
 | 
 
  | 
For more details see the help vignette:
vignette("pca", package = "lolR")
Eric Bridgeford
1 2 3 4  | library(lolR)
data <- lol.sims.rtrunk(n=200, d=30)  # 200 examples of 30 dimensions
X <- data$X; Y <- data$Y
model <- lol.project.pca(X=X, r=2)  # use pca to project into 2 dimensions
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.