Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
ProcessControl[XBarControlLimits] - compute control limits for the X-bar chart
Calling Sequence
XBarControlLimits(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, mu, or sigma; specify options for computing the control limits
Description
The XBarControlLimits command computes the upper and lower control limits for the X-bar chart. Unless explicitly given, the mean and the standard deviation of the underlying quality characteristic 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.
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 XBarControlLimits command. Missing values are represented by undefined or Float(undefined). So, if ignore=false and X contains missing data, the XBarControlLimits command returns undefined. If ignore=true, all missing items in X are ignored. The default value is true.
mu=deduce or realcons -- This option specifies the mean of the underlying quality characteristic.
sigma=deduce, sbar, or rbar -- This option specifies how standard deviation of the underlying quality characteristic should be computed. It can be estimated either using the ranges or using the standard deviations of the individual samples. By default, the ranges are used for samples sizes less than 10. The range option cannot be uses for sample sizes larger than 25.
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