Learn R Programming

multivarious (version 0.2.0)

partial_projector.projector: construct a partial_projector from a projector instance

Description

construct a partial_projector from a projector instance

Usage

# S3 method for projector
partial_projector(x, colind, ...)

Value

A partial_projector instance

Arguments

x

The original projector instance, typically an object of class bi_projector or any other class that implements a partial_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

Run this code

X <- matrix(rnorm(10*10), 10, 10)
pfit <- pca(X, ncomp=9)
proj <- project(pfit, X)

pp <- partial_projector(pfit, 1:5)

Run the code above in your browser using DataLab