1 / 26

3.7 Sample Size Determination Text, Section 3.7, pg. 101

3.7 Sample Size Determination Text, Section 3.7, pg. 101. FAQ in designed experiments Answer depends on lots of things; including what type of experiment is being contemplated, how it will be conducted, resources, and desired sensitivity

mikaia
Télécharger la présentation

3.7 Sample Size Determination Text, Section 3.7, pg. 101

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Design & Analysis of Experiments 7E 2009 Montgomery

  2. 3.7 Sample Size DeterminationText, Section 3.7, pg. 101 • FAQ in designed experiments • Answer depends on lots of things; including what type of experiment is being contemplated, how it will be conducted, resources, and desired sensitivity • Sensitivity refers to the difference in means that the experimenter wishes to detect • Generally, increasing the number of replicationsincreases the sensitivity or it makes it easier to detect small differences in means Design & Analysis of Experiments 7E 2009 Montgomery

  3. Sample Size DeterminationFixed Effects Case • Can choose the sample size to detect a specific difference in means and achieve desired values of type I and type II errors • Type I error – reject H0 when it is true ( ) • Type II error – fail to reject H0 when it is false ( ) • Power = 1 - • Operating characteristic curves plot against a parameter where Design & Analysis of Experiments 7E 2009 Montgomery

  4. Sample Size DeterminationFixed Effects Case---use of OC Curves • The OCcurves for the fixed effects model are in the Appendix, Table V • A very common way to use these charts is to define a difference in two means D of interest, then the minimum value of is • Typically work in term of the ratio of and try values of n until the desiredpower is achieved • Most statistics software packages will perform power and sample size calculations – see page 103 • There are some other methods discussed in the text Design & Analysis of Experiments 7E 2009 Montgomery

  5. Exemplo • Suponha que no exemplo taxa de gravação vs potência, com a=4 níveis de potência, deseja-se rejeitar a hipótese nula com probabilidade pelo menos 0,90 se quaisquer dois tratamentos diferem dde pelo menos 75 (u.m.) com nível de significância 0,01. • Suponha desvio-padrão de 25 (u.m.). • Assim o valor mínimo de 2 é N=na, n=4 no exemplo considerado.

  6. app_A_12a app_A_12a

  7. Sugestão de atividades • 1,2,4,6,8 a 11, 16, 18 a 20 (quinta edição) • Ler

  8. Design of Engineering Experiments– The Blocking Principle • Text Reference, Chapter 4 • Blocking and nuisance factors • The randomized complete block design or the RCBD • Extension of the ANOVA to the RCBD • Other blocking scenarios…Latin square designs

  9. The Blocking Principle • Blocking is a technique for dealing with nuisancefactors • A nuisance factor is a factor that probably has some effect on the response, but it’s of no interest to the experimenter…however, the variability it transmits to the response needs to be minimized • Typical nuisance factors include batches of raw material, operators, pieces of test equipment, time (shifts, days, etc.), different experimental units • Many industrial experiments involve blocking (or should) • Failure to block is a common flaw in designing an experiment (consequences?)

  10. The Blocking Principle • If the nuisance variable is known and controllable, we use blocking • If the nuisance factor is known and uncontrollable, sometimes we can use the analysis of covariance (see Chapter 15) to remove the effect of the nuisance factor from the analysis • If the nuisance factor is unknown and uncontrollable (a “lurking” variable), we hope that randomization balances out its impact across the experiment • Sometimes several sources of variability are combined in a block, so the block becomes an aggregate variable

  11. The Hardness Testing Example • Text reference, pg 121, 122 • We wish to determine whether 4 different tips produce different (mean) hardness reading on a Rockwell hardness tester • Gauge & measurement systems capability studies are frequent areas for applying DOX • Assignment of the tips to an experimental unit; that is, a test coupon • Structure of a completely randomized experiment • The test coupons are a source of nuisance variability • Alternatively, the experimenter may want to test the tips across coupons of various hardness levels • The need for blocking

  12. The Hardness Testing Example • To conduct this experiment as a RCBD, assign all 4 tips to each coupon • Each coupon is called a “block”; that is, it’s a more homogenous experimental unit on which to test the tips • Variability between blocks can be large, variability within a block should be relatively small • In general, a block is a specific level of the nuisance factor • A complete replicate of the basic experiment is conducted in each block • A block represents a restriction on randomization • All runs within a block are randomized

  13. The Hardness Testing Example • Suppose that we use b = 4 blocks: • Notice the two-way structure of the experiment • Once again, we are interested in testing the equality of treatment means, but now we have to remove the variability associated with the nuisance factor (the blocks)

  14. Extension of the ANOVA to the RCBD • Suppose that there are atreatments (factor levels) and b blocks • A statistical model (effects fixed model) for the RCBD is • The relevant (fixed effects) hypotheses are

  15. Extension of the ANOVA to the RCBD ANOVA partitioning of total variability:

  16. Extension of the ANOVA to the RCBD The degrees of freedom for the sums of squares in are as follows: Therefore, ratios of sums of squares to their degrees of freedom result in mean squares and the ratio of the mean square for treatments to the error mean square is an F statistic that can be used to test the hypothesis of equal treatment means

  17. ANOVA Display for the RCBD Manual computing (ugh!)…see Equations (4-9) – (4-12), page 124 Design-Expert analyzes the RCBD

  18. Manual computing:

  19. Vascular Graft Example (pg. 126) • To conduct this experiment as a RCBD, assign all 4 pressures to each of the 6 batches of resin • Each batch of resin is called a “block”; that is, it’s a more homogenous experimental unit on which to test the extrusion pressures

  20. Vascular Graft Example Design-Expert Output

  21. dado3=read.table("e:\\dox\\graft3.txt",header=T) psi=as.factor(dado3$psi) y=c(dado3$X1,dado3$X2,dado3$X3,dado3$X4,dado3$X5,dado3$X6) graft3=data.frame(block=gl(6,4),psi,y) graft3.aov=aov(y~psi+block,data=graft3) summary(graft3.aov) Df Sum Sq Mean Sq F value Pr(>F) psi 3 178.171 59.390 8.1071 0.001916 ** block 5 192.252 38.450 5.2487 0.005532 ** Residuals 15 109.886 7.326 --- Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1

  22. Residual Analysis for the Vascular Graft Example

  23. Residual Analysis for the Vascular Graft Example

  24. Residual Analysis for the Vascular Graft Example • Basic residual plots indicate that normality, constant variance assumptions are satisfied • No obvious problems with randomization • No patterns in the residuals vs. block • Can also plot residuals versus the pressure (residuals by factor) • These plots provide more information about the constant variance assumption, possible outliers

More Related