plot.qcs: function to create a plotting 'qcs' object

View source: R/plot.qcs.R

plot.qcsR Documentation

function to create a plotting 'qcs' object

Description

Generic function for plotting Shewhart charts of object of class 'qcs' to perform statistical quality control.

Usage

## S3 method for class 'qcs'
plot(
  x,
  title,
  subtitle,
  xlab,
  ylab,
  ylim,
  center.nominal = NULL,
  limits.specification = NULL,
  limits.alert = NULL,
  type.data = c("continuous", "atributte", "dependence"),
  ...
)

## S3 method for class 'qcs.xbar'
plot(
  x,
  title = NULL,
  subtitle = NULL,
  xlab = NULL,
  ylab = NULL,
  ylim = NULL,
  conf.nsigma.alert = NULL,
  center.nominal = NULL,
  limits.specification = NULL,
  ...
)

## S3 method for class 'qcs.S'
plot(
  x,
  title = NULL,
  subtitle = NULL,
  xlab = NULL,
  ylab = NULL,
  ylim = NULL,
  conf.nsigma.alert = NULL,
  center.nominal = NULL,
  limits.specification = NULL,
  ...
)

## S3 method for class 'qcs.R'
plot(
  x,
  title = NULL,
  subtitle = NULL,
  xlab = NULL,
  ylab = NULL,
  ylim = NULL,
  conf.nsigma.alert = NULL,
  center.nominal = NULL,
  limits.specification = NULL,
  ...
)

## S3 method for class 'qcs.one'
plot(
  x,
  title = NULL,
  subtitle = NULL,
  xlab = NULL,
  ylab = NULL,
  ylim = NULL,
  conf.nsigma.alert = NULL,
  center.nominal = NULL,
  limits.specification = NULL,
  ...
)

## S3 method for class 'qcs.p'
plot(
  x,
  title = NULL,
  subtitle = NULL,
  xlab = NULL,
  ylab = NULL,
  ylim = NULL,
  conf.nsigma.alert = NULL,
  center.nominal = NULL,
  limits.specification = NULL,
  ...
)

## S3 method for class 'qcs.np'
plot(
  x,
  title = NULL,
  subtitle = NULL,
  xlab = NULL,
  ylab = NULL,
  ylim = NULL,
  conf.nsigma.alert = NULL,
  center.nominal = NULL,
  limits.specification = NULL,
  ...
)

## S3 method for class 'qcs.c'
plot(
  x,
  title = NULL,
  subtitle = NULL,
  xlab = NULL,
  ylab = NULL,
  ylim = NULL,
  conf.nsigma.alert = NULL,
  center.nominal = NULL,
  limits.specification = NULL,
  ...
)

## S3 method for class 'qcs.u'
plot(
  x,
  title = NULL,
  subtitle = NULL,
  xlab = NULL,
  ylab = NULL,
  ylim = NULL,
  conf.nsigma.alert = NULL,
  center.nominal = NULL,
  limits.specification = NULL,
  ...
)

## S3 method for class 'qcs.ewma'
plot(
  x,
  title = NULL,
  subtitle = NULL,
  xlab = NULL,
  ylab = NULL,
  ylim = NULL,
  ...
)

## S3 method for class 'qcs.cusum'
plot(
  x,
  title = NULL,
  subtitle = NULL,
  xlab = NULL,
  ylab = NULL,
  ylim = NULL,
  ...
)

Arguments

x

Object qcs (Quality Control Statical)

title

an overall title for the plot

subtitle

a sub title for the plot

xlab

a title for the x axis

ylab

a title for the y axis

ylim

the y limits of the plot

center.nominal

a value specifying the center of group statistics or the "target" value of the process

limits.specification

a two-value vector specifying control limits.

limits.alert

a two-value vector specifying control alert limits.

type.data

a string specifying the type of data.

...

arguments to be passed to or from methods.

conf.nsigma.alert

a numeric value used to compute control limits, specifying the number of standard deviations (if conf.nsigma > 1) or the confidence level (if 0 < conf.nsigma < 1).

conf.nsigma

a numeric value used to compute control limits, specifying the number of standard deviations (if conf.nsigma > 1) or the confidence level (if 0 < conf.nsigma < 1).


qcr documentation built on March 18, 2022, 6 p.m.