construct a partial_projector from a projector
instance
partial_projector.projector.Rd
construct a partial_projector from a projector
instance
Usage
# S3 method for projector
partial_projector(x, colind, ...)
Arguments
- x
The original
projector
instance, typically an object of classbi_projector
or any other class that implements apartial_projector
method- colind
A numeric vector of column indices to select in the projection matrix. These indices correspond to the variables used for the partial projector
- ...
Additional arguments passed to the underlying
partial_projector
method
Examples
X <- matrix(rnorm(10*10), 10, 10)
pfit <- pca(X, ncomp=9)
proj <- project(pfit, X)
pp <- partial_projector(pfit, 1:5)