Question

Problem 6.67: The waiting time for treatmening in a "minute-clinic" locaed in a drugstore is monitored using control charts for individuals and the moving range. Table 6E.24 contains 30 successive measurements. (a) Set up individual and moving range control charts using this data. (b) Plot these observations on the charts constructed in part (a). Interpret the results. Does the process seem to be in statistical control? (c) Plot the waiting time data on a normal probability plot. Is it reasonable to assume normality for these data? Wouldn't a variable like waiting time often tend to have a distribution with a long tail (skewed) to the right? Why?

5. The waiting time for treatment in a minute-clinic located in a drugstore is monitored using control charts for individua

0 0
Add a comment Improve this question Transcribed image text
Answer #1

R Code for individual and moving control charts.

# Clinic waiting time Dataset

waiting_time <- c(2.49,3.39,7.41,2.88,0.76,1.32,7.05,1.37,6.17,5.12,1.34, 0.50,4.35,1.67,1.63,4.88,15.19,

0.67,4.14,2.16,1.14,2.66,4.67,1.54,5.06,3.40,1.39,1.11,6.92,36.99)

# Installing qcc package

install.packages("qcc")

# Loading qcc package

library(qcc)

# PART (a)

# ' Create the individuals chart and qcc object

wait.x <- qcc(waiting_time, type = "xbar.one", plot = TRUE)

#' Create the moving range chart and qcc object. qcc takes a two-column matrix

#' that is used to calculate the moving range.

wait.xmr.raw.r <- matrix(cbind(waiting_time[1:length(waiting_time)-1], waiting_time[2:length(waiting_time)]),

ncol=2)

my.xmr.mr <- qcc(wait.xmr.raw.r, type="R", plot = TRUE)

Code screen shot Clinic waiting time Dataset 2 waiting time c(2.49,3.39,7.41,2.88,0.76,1.32,7.05,1.37,6.17,5.12,1.34, 0.50,4.

Output-Indlvldual Chart xbar.one Chart for waiting_ time CL 1 3 5 7 911 14 17 20 23 26 29 Group Number of groups30 Center 4.6

Output- Moving Range chart R Chart for wait.xmr.raw.r CL CL 1 3 5 7 9 11 14 1720 23 26 29 Group Number of groups 29 Center =

Add a comment
Know the answer?
Add Answer to:
Problem 6.67: The waiting time for treatmening in a "minute-clinic" locaed in a drugstore is monitored using con...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • The waiting time for treatment in a "minute-clinic" located in a drugstore is monitored using con...

    The waiting time for treatment in a "minute-clinic" located in a drugstore is monitored using control charts for individuals and the moving range. Table 6E.24 contains 30 successive measurements on waiting time. TABLE 6E.24 Clinic Waiting Time for Exercise 6.66 Waiting Waiting Waiting Observation Time Observation Time Observation Time 1.14 22 2.66 4.67 1.54 5.06 3.40 1.39 1.11 6.92 30 36.99 2.49 3.39 741 2.88 0.76 1.32 7.05 1.37 6.17 5.12 21 1.34 12 13 14 15 16 17 4.35...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT