Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
ProcessControl[RControlLimits] - compute control limits for the R chart
Calling Sequence
RControlLimits(X, n, options)
Parameters
X
-
data
n
(optional) sample size
options
(optional) equation(s) of the form option=value where option is one of confidencelevel, ignore, or rbar; specify options for computing the control limits
Description
The RControlLimits command computes the upper and lower control limits for the R chart. Unless explicitly given, the average range of individual samples is computed based on the data.
The first parameter X is either a single data sample - given as a Vector or list - or a list of data samples. Each value represents an individual observation. Note, that the individual samples can be of variable size.
If X is a single data sample, the second parameter n is used to specify the size of individual samples.
Computation
All computations involving data are performed in floating-point; therefore, all data provided must have type realcons and all returned solutions are floating-point, even if the problem is specified with exact values.
For more information about computation in the ProcessControl package, see the ProcessControl help page.
Options
The options argument can contain one or more of the following options.
confidencelevel=realcons -- This option specifies the required confidence level. The default value is 0.9973, corresponding to a 3 sigma confidence level.
ignore=truefalse -- This option controls how missing values are handled by the RControlLimits command. Missing values are represented by undefined or Float(undefined). So, if ignore=false and X contains missing data, the RControlLimits command returns undefined. If ignore=true, all missing items in X are ignored. The default value is true.
rbar=deduce or realcons -- This option specifies the average range of individual samples.
Examples
Sample Size: constant
Sample Size: variable
See Also
infolevel, ProcessControl, ProcessControl[RChart], ProcessControl[SChart], ProcessControl[XBarChart], Statistics
References
Montgomery, Douglas C. Introduction to Statistical Quality Control. 2nd ed. New York: John Wiley & Sons, 1991.
Download Help Document