print.projector: Pretty Print Method for 'projector' Objects

View source: R/projector.R View source: R/projector.R

print.projectorR 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)

bbuchsbaum/multivarious documentation built on April 15, 2024, 3:33 a.m.