An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20080901/14bd6d4b/attachment.pl>
qcc help
3 messages · Renata Mara Schneckenberg Wowk, Cleber N.Borges, Jorge Ivan Velez
Renata Mara Schneckenberg Wowk wrote:
Hi Gents,
I need to get the control limits from qcc function.
As follows:
qcc(MDI, type = "xbar.one")
Call:
qcc(data = MDI, type = "xbar.one")
xbar.one chart for MDI
Summary of group statistics:
Min. 1st Qu. Median Mean 3rd Qu. Max.
0.3266 0.4249 0.4371 0.4333 0.4451 0.4858
Group sample size: 1
Number of groups: 383
Center of group statistics: 0.4332557
Standard deviation: 0.01520659
Control limits:
LCL UCL
0.387636 0.4788755
I want to get LCL and UCL. It is possible ?
Thanks in advance,
Renata
Hello, try this: results <- qcc(data = MDI, type = "xbar.one") names( results ) results$limits results$limits[1] results$limits[2] HTH cleber
An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20080902/23a1776d/attachment.pl>