plot.STB: Plot Objects of Class 'STB'.

Description Usage Arguments Details Author(s) See Also Examples

View source: R/stb.R

Description

Standard plotting method for objects of class 'STB'.

Usage

1
2
## S3 method for class 'STB'
plot(x, ...)

Arguments

x

(object) of class 'STB' as generated by function getSTB

...

arguments passed to other methods

Details

This function plots objects of class 'STB' as generated by function stb. Objects of S3-class 'STB' are list-type objects storing all the information needed to plot QQ-plots with simultaneous tolerance bounds.

Author(s)

Andre Schuetzenmeister andre.schuetzenmeister@roche.com

See Also

stb

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
## Not run: 
### generate an 'STB' object without plotting
obj <- stb(rnorm(30), plot=FALSE)
plot(obj)

### manipulate the 'STB' object for plotting
obj$legend=TRUE
plot(obj)

### add a previously generated STB-ocject to an existing plot
plot(sort(rnorm(30)), sort(rnorm(30)))
obj$add <- TRUE
plot(obj) 

## End(Not run)

STB documentation built on Sept. 15, 2021, 5:07 p.m.

Related to plot.STB in STB...