Learn R Programming

LPCM (version 0.43)

print.lpc: Printing output for lpc and lpc.spline objects

Description

Takes an object of class lpc or lpc.spline and displays some standard output.

Usage

## S3 method for class 'lpc':
print( x, digits = max(3, getOption("digits") - 3), ...) 
## S3 method for class 'lpc.spline':
print( x, digits = max(3, getOption("digits") - 3), ...)

Arguments

x
an object of class lpc or lpc.spline.
digits
not yet in use.
...
further arguments.

Value

  • Some short text.

See Also

lpc

Examples

Run this code
data(calspeedflow)
lpc1 <- lpc(calspeedflow[,3:4])
print(lpc1)
lpc2 <- lpc.spline(lpc1)
print(lpc2)

Run the code above in your browser using DataLab