print.mpcv: Prints an mpcv object

Description Usage Arguments Details Author(s) See Also Examples

View source: R/print.mpcv.R

Description

This function prints a mpcv object. It is a method for the generic function print of class "mpcv".

Usage

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

Arguments

x

object of class "mpcv".

...

other arguments, all currently ignored.

Details

This function prints values of the three components: CpV, PS and PD with names of variable which influence the components values the most.

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)
print(res.ind)

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

Related to print.mpcv in mpcv...