Learn R Programming

LPCM (version 0.47-6)

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

Description

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

Usage

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

Value

Some short text.

Arguments

x

an object of class lpc, lpc.spline, or ms.

digits

not yet in use.

...

further arguments.

Author

JE

See Also

lpc, ms

Examples

Run this code
data(calspeedflow)
lpc1 <- lpc(calspeedflow[,3:4])
print(lpc1)
lpc2 <- lpc.spline(lpc1)
print(lpc2)
# \donttest{
ms1<- ms(calspeedflow[,3:4], plot=FALSE) 
print(ms1)# }

Run the code above in your browser using DataLab