Question

12) An accounts department started an improvement project to try to reduce the number of internal purchase forms that its use
0 0
Add a comment Improve this question Transcribed image text
Answer #1

SOLUTION

First, calculate mean of all values

Mean = 11.1538

Std dev. = 3.9337

-------------------

R-code for getting the graph (all steps mentioned)

## CREATE DATA SET FROM GIVEN QUESTION

newd3 = data.frame(sno = c(1,2,3,4,5,6,7,10,11,12,13,14,15),tot = c(24,35,27,23,19,22,31,25,22,17,26,30,21), def = c(14,16,12,12,5,14,12,6,14,5,11,16,8))

## CALCULATE MEAN AND STANDARD DEVIATION OF 'NUMBER OF DEFECTIVE FORMS '

def_mean = mean(newd3$def)
def_mean

sd = sqrt(var(newd3$def))
sd

## CREATE TARGET VALUE, UCL AND LCL - AS PER QUESTION

t_val = 8
ucl = def_mean + 1*(sd)
lcl = 0

## PLOT GRAPHS LINES AND POINTS

ggplot(newd3, aes(x = sno, y = def)) + geom_point() + geom_hline(yintercept = t_val, col = "green") + geom_hline(yintercept = ucl, col = "red") + geom_hline(yintercept = lcl, col = "red") + geom_hline(yintercept = def_mean, col = "blue", linetype = "dotdash")

-------------------

15 10- 5 12 4 sno

The red lines are the UCL and LCL. The green line is the target value (8) and the dot-dash blue line is the mean of number of defective forms.

This is the detailed Control chart for the variable "number of defective forms".

Add a comment
Know the answer?
Add Answer to:
12) An accounts department started an improvement project to try to reduce the number of internal...
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
  • An accounts department is concerned about the number of internal purchase forms that its users completed...

    An accounts department is concerned about the number of internal purchase forms that its users completed incorrectly. As a result they are monitoring the proportion of purchase forms that were not completed correctly. This was chosen, rather than measuring the actual number of defects, because any number of defects on a form required about the same effort to revise. The following table shows number of forms completed incorrectly "out of 200 forms" that is processed each day. Construct a control...

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