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
Properties
Link copied to clipboard
the grand mean (average of subgroup means) — center line of the x-bar chart.
Link copied to clipboard
the control limits for the accompanying R chart.
Link copied to clipboard
The x-bar chart limits as a ControlChartLimits instance for uniform handling.