plot.mpcv: Plots an mpcv object.

Description Usage Arguments Details Author(s) See Also Examples

View source: R/plot.mpcv.R

Description

Plots a mpcv object on the current graphics device. This function is a method for the generic function plot, for objects of class "mpcv".

Usage

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

Arguments

x

object of a class "mpcv".

...

other argument, currently no used.

Details

This function presents graphically the dataset, the given tolerance region (specification limits), the identified process region, the target and the marginal median for all pairs of a process quality characteristics (variables).

Author(s)

Krzysztof Ciupke, <krzysztof.ciupke at polsl.pl>

See Also

mpcv

Examples

1
2
3
4
5
6
7
data(industrial)   
x <- industrial$x
LSL <- industrial$LSL
USL <- industrial$USL
Target<- industrial$Target
res.ind <- mpcv(x, LSL=LSL, USL=USL, Target=Target, alpha=0.025, coef.lo=c(NA,.005))
plot(res.ind)

mpcv documentation built on May 2, 2019, 8:50 a.m.

Related to plot.mpcv in mpcv...