XBarRChartResult

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

Results of an x-bar and R (range) control chart analysis.

The top-level properties (centerLine, ucl, lcl) describe the x-bar chart, which monitors the process mean. The nested rChart describes the R chart, which monitors the within-subgroup variability using the range.

See also

Constructors

Link copied to clipboard
constructor(centerLine: Double, ucl: Double, lcl: Double, rChart: 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 R-bar.

Link copied to clipboard

the control limits for the accompanying R chart.

Link copied to clipboard
val ucl: Double

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

Link copied to clipboard

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