XBarSChartResult

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

Results of an x-bar and S (standard deviation) control chart analysis.

The top-level properties (centerLine, ucl, lcl) describe the x-bar chart, which monitors the process mean. The nested sChart describes the S chart, which monitors the within-subgroup variability using the sample standard deviation.

The S chart is generally preferred over the R chart for subgroup sizes above 10, because the standard deviation uses all observations while the range uses only the extremes.

See also

Constructors

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

Properties

Link copied to clipboard

the grand mean (average of subgroup means) — center line of the x-bar chart.

Link copied to clipboard
val lcl: Double

the lower control limit of the x-bar chart, computed as grand mean minus A₃ times S-bar.

Link copied to clipboard

the control limits for the accompanying S chart.

Link copied to clipboard
val ucl: Double

the upper control limit of the x-bar chart, computed as grand mean plus A₃ times S-bar.

Link copied to clipboard

The x-bar chart limits as a ControlChartLimits instance for uniform handling.