Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
ProcessControl[RChart] - generate the R chart
Calling Sequence
RChart(X, n, options, plotoptions)
Parameters
X
-
data
n
(optional) sample size
options
(optional) equation(s) of the form option=value where option is one of color, confidencelevel, controllimits, ignore, rbar, or speclimits; specify options for generating the R chart
plotoptions
(optional) parameters to pass to the plot command
Description
The RChart command generates control chart for the range (R chart) for the specified observations. The chart also contains the upper control limit (UCL), the lower control limit (LCL), and the average range (represented by the center line) of the individual samples. Unless explicitly given, the average range and the control limits are 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.
color=list -- This option specifies colors of the various components of the R chart. The value of this option must be a list containing the color of the control limits, center line, data to be plotted, and the specification limits.
confidencelevel=realcons -- This option specifies the required confidence level. The default value is 0.9973, corresponding to a 3 sigma confidence level.
controllimits=deduce or [realcons, realcons] -- This option specifies the values for the control limits. The first element is the value of the lower control limit. The second element is the value of the upper control limit. For data with variable sample size, the value of this option must be a list of control limits for each sample. If this option is set to deduce (the default value), the control limits are computed based on the data.
ignore=truefalse -- This option controls how missing values are handled by the RChart command. Missing values are represented by undefined or Float(undefined). So, if ignore=false and X contains missing data, the RChart 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.
speclimits=none, [realcons, realcons] -- This option specifies the values for the specification limits. The first element is the value of the lower specification limit. The second element is the value of the upper specification limit. The default value is none.
Examples
Estimate for R: .0232400000000001 Sample Size: constant Estimated Control Limits: [0, .049137712873306]
Estimate for R: .0221600000000007 Sample Size: variable
Sample Size: constant
Estimate for R: .0232400000000001 Estimated Control Limits: [.00632047186904479, .0401595281309555]
Sample Size: variable
Estimate for R: .0221600000000007
See Also
infolevel, ProcessControl, ProcessControl[RControlLimits], 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