ControlChartLimits

data class ControlChartLimits(val centerLine: Double, val ucl: Double, val lcl: Double)(source)

Control limits for a single Shewhart control chart.

Contains the center line and the upper and lower control limits that define the expected range of variation for a stable (in-control) process. Points falling outside ucl or lcl signal a potential out-of-control condition.

See also

Constructors

Link copied to clipboard
constructor(centerLine: Double, ucl: Double, lcl: Double)

Properties

Link copied to clipboard

the process average used as the chart's center line.

Link copied to clipboard
val lcl: Double

the lower control limit (typically center line minus three sigma).

Link copied to clipboard
val ucl: Double

the upper control limit (typically center line plus three sigma).