Last data update: 2014.03.03

R: Plots an mpcv object.
plot.mpcvR Documentation

Plots an mpcv object.

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

## 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

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)

Results