cchart.S: S Control Chart.

Description Usage Arguments Details Value Author(s) Examples

View source: R/cchart.S.R

Description

This function builds a S control chart.

Usage

1
cchart.S(x, type = "n", m = NULL)

Arguments

x

The data to be plotted.

type

A character string specifying the type of S control chart to be plotted where "n" plots a S chart with normalized probability limits and "e" plots a S chart with exact limits.

m

The sample sizes. Only necessary in the control chart with exact (probability) limits.

Details

The exact limits are the alpha/2 and 1-alpha/2 quantiles of the S distribution which is proportional to the square root of a chi-square distribution.

Value

Return a S control chart.

Author(s)

Daniela R. Recchia, Emanuel P. Barbosa

Examples

1
2
3
4
5
data(softdrink)
#S chart with normalized probability limits
cchart.S(softdrink, type = "n")
#S chart with exact probability limits
cchart.S(softdrink, type = "e", 10)

IQCC documentation built on May 1, 2019, 10:58 p.m.