print.projector {multivarious}R Documentation

Pretty Print Method for projector Objects

Description

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 class 'projector'
print(x, ...)

## S3 method for class '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)

[Package multivarious version 0.2.0 Index]