Skip to contents

Display a human-readable summary of a projector object, including information about the dimensions of the projection matrix and the pre-processing pipeline.

Usage

# S3 method for projector
print(x, ...)

# S3 method for projector
print(x, ...)

Arguments

x

A projector object.

...

Additional arguments passed to print().

Value

the projector object

Examples

X <- matrix(rnorm(10*10), 10, 10)
svdfit <- svd(X)
p <- projector(svdfit$v)
print(p)
#> projector object:
#>   Projection matrix dimensions:  10 x 10