print.pod: Summary of POD objects

Description Usage Arguments Value Examples

View source: R/printPod.R

Description

Generate nicely formatted output of the POD object

Usage

1
2
## S3 method for class 'pod'
print(x, ...)

Arguments

x

An object of class 'pod'

...

Other parameters, not supported yet.

Value

Nothing is returned.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
x <- cbind(
 X=c( 0.1,1,2,5,10,20 ),
 S=c( 0,5,6,6,6,6 ),
 N=c( 6,6,6,6,6,6 )
)
obj <- analyzeSingleLab(x=x)
print(obj)
# or just
obj

obj <- analyzeSingleLab(x=x, qLOD=c(50, 70, 95))
obj

markusboenn/POD documentation built on Oct. 10, 2019, 10:53 a.m.