Description Usage Arguments Value Details Author(s) Examples
A function for implementing gaussian random projections (rp).
1  | lol.project.rp(X, r, scale = TRUE, ...)
 | 
X | 
 
  | 
r | 
 the rank of the projection. Note that   | 
scale | 
 whether to scale the random projection by the sqrt(1/d). Defaults to   | 
... | 
 trailing args.  | 
A list containing the following:
 | 
 
  | 
 | 
 
  | 
For more details see the help vignette:
vignette("rp", 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.rp(X=X, r=5)  # use lol to project into 5 dimensions
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.