+ All Categories
Home > Documents > 5-5 Inference on the Ratio of Variances of Two Normal Populations

5-5 Inference on the Ratio of Variances of Two Normal Populations

Date post: 06-Feb-2016
Category:
Upload: jabir
View: 29 times
Download: 0 times
Share this document with a friend
Description:
5-5 Inference on the Ratio of Variances of Two Normal Populations. 5-5.1 The F Distribution. We wish to test the hypotheses:. The development of a test procedure for these hypotheses requires a new probability distribution, the F distribution. - PowerPoint PPT Presentation
Popular Tags:
80
of Variances of Two Normal Populations 5-5.1 The F Distribution We wish to test the hypotheses: The development of a test procedure for these hypotheses requires a new probability distribution, the F distribution.
Transcript
Page 1: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-5 Inference on the Ratio of Variances of Two Normal Populations

5-5.1 The F DistributionWe wish to test the hypotheses:

• The development of a test procedure for these hypotheses requires a new probability distribution, the F distribution.

Page 2: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-5 Inference on the Ratio of Variances of Two Normal Populations

5-5.1 The F Distribution

Page 3: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-5 Inference on the Ratio of Variances of Two Normal Populations

5-5.1 The F Distribution

Page 4: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-5 Inference on the Ratio of Variances of Two Normal Populations

The Test Procedure

Page 5: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-5 Inference on the Ratio of Variances of Two Normal Populations

The Test Procedure

Page 6: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-5 Inference on the Ratio of Variances of Two Normal Populations

The Test Procedure

Page 7: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-5 Inference on the Ratio of Variances of Two Normal Populations

Example 5-10 OPTIONS NOOVP NODATE NONUMBER LS=80;DATA;n1=15; n2=15; alpha=0.05;df1=n1-1; df2=n2-1;s1=1.96; s2=2.13;f0=(s1**2)/(s2**2);pvalue=2*probf(f0, df1, df2);f=finv(pvalue/2, df1, df2);f1=1-probf(f0, df2, df1);f2=1/f1;CL=f0*f1;CU=f0*f2;PROC PRINT;var f0 df1 df2 pvalue f f1 f2 CL CU;RUN; QUIT;

OBS f0 df1 df2 p-value f f1 f2 CL CU 1 0.84675 14 14 0.75995 0.84675 0.62002 1.61284 0.52500 1.36566

Page 8: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-5 Inference on the Ratio of Variances of Two Normal Populations

5-5.2 Confidence Interval on the Ratio of Two Variances

Page 9: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-5 Inference on the Ratio of Variances of Two Normal Populations

Page 10: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-5 Inference on the Ratio of Variances of Two Normal Populations

Page 11: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-6 Inference on Two Population Proportions

5-6.1 Hypothesis Testing on the Equality of Two Binomial Proportions

Page 12: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-6 Inference on Two Population Proportions 5-6.1 Hypothesis Testing on the Equality of Two Binomial Proportions

Page 13: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-6 Inference on Two Population Proportions

Page 14: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-6 Inference on Two Population Proportions

Page 15: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-6 Inference on Two Population Proportions

Page 16: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-6 Inference on Two Population Proportions

OPTIONS NOOVP NODATE NONUMBER LS=80;DATA EX512;N1=300; N2=300; ALPHA=0.05;DFT1=253; DFT2=196;P1HAT=DFT1/N1; P2HAT=DFT2/N2;DIFFP=P1HAT-P2HAT;PHAT=(DFT1+DFT2)/(N1+N2);Z0=DIFFP/SQRT(PHAT*(1-pHAT)*(1/N1+1/N2));PVALUE=2*(1-PROBNORM(Z0));ZVALUE=ABS(PROBIT(ALPHA/2));LIMIT=ZVALUE*SQRT((P1HAT*(1-P1HAT)/N1) + (P2HAT*(1-p2HAT)/N2));UL=DIFFP+LIMIT; LL=DIFFP-LIMIT;PROC PRINT;var P1HAT P2HAT DIFFP PHAT Z0 ZVALUE PVALUE LL UL;RUN; QUIT;

OBS P1HAT P2HAT DIFFP PHAT Z0 ZVALUE PVALUE LL UL 1 0.84333 0.65333 0.19 0.74833 5.36215 1.95996 8.2238E-8 0.12224 0.25776

Page 17: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-6 Inference on Two Population Proportions

5-6.2 Type II Error and Choice of Sample Size

Page 18: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-6 Inference on Two Population Proportions

5-6.2 Type II Error and Choice of Sample Size

Page 19: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-6 Inference on Two Population Proportions

5-6.2 Type II Error and Choice of Sample Size

Page 20: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

5-8.1 Completely Randomized Experiment and Analysis of Variance

Tre

atm

ent

s

(Replicates)

Page 21: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

5-8.1 Completely Randomized Experiment and Analysis of Variance

• The levels of the factor are sometimes called treatments.

• Each treatment has six observations or replicates.

• The runs are run in random order.

Page 22: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

5-8.1 Completely Randomized Experiment and Analysis of Variance

Page 23: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

5-8.1 Completely Randomized Experiment and Analysis of Variance

= + =0

Page 24: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

5-8.1 Completely Randomized Experiment and Analysis of Variance

Page 25: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

5-8.1 Completely Randomized Experiment and Analysis of Variance

Page 26: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Page 27: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

5-8.1 Completely Randomized Experiment and Analysis of Variance

Page 28: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

5-8.1 Completely Randomized Experiment and Analysis of Variance

Page 29: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Page 30: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

5-8.1 Completely Randomized Experiment and Analysis of Variance

Page 31: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Which means differ?

Page 32: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Multiple Comparisons

If we wish to make all pairwise comparisons we need to worry about the probability of a type I error on each test and also the probability of making at least one type I error on all the tests. This latter error is referred to as the experiment-wise error rate or the overall error rate. A number of procedures are available to protect the overall error rate. They all compare the differences to a cut-off value. The cut-off values all have the form

Page 33: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Steps in Multiple Comparisons

1) Calculate .2) Determine cut-off. Any difference in 1) larger than the cut-off have

corresponding means that are significantly different from one another.

A. Fisher’s Least Significant Difference (LSD). This does not protect the overall error rate. The overall error rate will be approximately , where c is the number of comparisons being made.

If all then

Page 34: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Steps in Multiple Comparisons

B. Tukey’s Highest Significance Difference (HSD). This controls overall error rate. The overall error rate will be a.

If all then An alternative in unbalanced designs is

With Tukey’s you need both the degrees of freedom (n – r) and also the number of means being compared (r).

Page 35: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Steps in Multiple Comparisons

C. Student’s, Neuman’s, Keuls (SNK). This overall error rate is between that of Fisher’s and

Tukey’s. d is the number of means apart the two means being

compared are in the ordered list of means (d between 2 and r). Notice, more than one cut-off is needed for the SNK. The SNK is done sequentially, starting with the means the farthest apart. Once a pair of means is found to be not significantly different, all pairs closer together are deemed not significantly different.

Page 36: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Page 37: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Residual Analysis and Model Checking

Page 38: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Residual Analysis and Model Checking

Page 39: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Residual Analysis and Model Checking

Page 40: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Residual Analysis and Model Checking

Page 41: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

OPTIONS NOOVP NODATE NONUMBER LS=80;proc format; value hc 1=' 5%' 2='10%' 3='15%' 4='20%';DATA ex514;INPUT hc strength @@; format hc hc.;CARDS;1 7 2 12 3 14 4 19 1 8 2 17 3 18 4 25 1 15 2 13 3 19 4 22 1 11 2 18 3 17 4 231 9 2 19 3 16 4 18 1 10 2 15 3 18 4 20proc anova data=ex514; class hc; model strength= hc; means hc/lsd snk tukey;TITLE 'proc anova balanced 1-way anova';proc sort; by hc;proc boxplot; plot strength*hc;proc glm data=ex514; class hc; model strength= hc; means hc/lsd snk tukey; output out=new p=phat r=resid;TITLE 'proc glm 1-way anova';proc plot data=new; plot resid*(phat hc); Title 'Residual plot'; RUN; QUIT;

Page 42: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

proc anova balanced 1-way anova The ANOVA Procedure Class Level Information Class Levels Values hc 4 5% 10% 15% 20% Number of Observations Read 24 Number of Observations Used 24

proc anova balanced 1-way anova

The ANOVA ProcedureDependent Variable: strength Sum of Source DF Squares Mean Square F Value Pr > F Model 3 382.7916667 127.5972222 19.61 <.0001 Error 20 130.1666667 6.5083333 Corrected Total 23 512.9583333

R-Square Coeff Var Root MSE strength Mean 0.746243 15.98628 2.551144 15.95833

Source DF Anova SS Mean Square F Value Pr > F hc 3 382.7916667 127.5972222 19.61 <.0001

Page 43: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

proc anova balanced 1-way anova

The ANOVA Procedure t Tests (LSD) for strength

NOTE: This test controls the Type I comparisonwise error rate, not the experimentwise error rate.

Alpha 0.05 Error Degrees of Freedom 20 Error Mean Square 6.508333 Critical Value of t 2.08596 Least Significant Difference 3.0724

Means with the same letter are not significantly different.

t Grouping Mean N hc A 21.167 6 20% B 17.000 6 15%

B 15.667 6 10% C 10.000 6 5%

Page 44: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

proc anova balanced 1-way anova

The ANOVA Procedure Student-Newman-Keuls Test for strength

NOTE: This test controls the Type I experimentwise error rate under the complete null hypothesis but not under partial null hypotheses.

Alpha 0.05 Error Degrees of Freedom 20 Error Mean Square 6.508333

Number of Means 2 3 4 Critical Range 3.0724227 3.726419 4.1225627

Means with the same letter are not significantly different.

SNK Grouping Mean N hc A 21.167 6 20% B 17.000 6 15%

B 15.667 6 10% C 10.000 6 5%

Page 45: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

proc anova balanced 1-way anova

The ANOVA Procedure Tukey's Studentized Range (HSD) Test for strength

NOTE: This test controls the Type I experimentwise error rate, but it generally has a higher Type II error rate than REGWQ.

Alpha 0.05 Error Degrees of Freedom 20 Error Mean Square 6.508333 Critical Value of Studentized Range 3.95829 Minimum Significant Difference 4.1226

Means with the same letter are not significantly different.

Tukey Grouping Mean N hc A 21.167 6 20% B 17.000 6 15%

B 15.667 6 10% C 10.000 6 5%

Page 46: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Page 47: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

proc glm 1-way anova

The GLM ProcedureDependent Variable: strength Sum of Source DF Squares Mean Square F Value Pr > F Model 3 382.7916667 127.5972222 19.61 <.0001 Error 20 130.1666667 6.5083333 Corrected Total 23 512.9583333

R-Square Coeff Var Root MSE strength Mean 0.746243 15.98628 2.551144 15.95833

Source DF Type I SS Mean Square F Value Pr > F hc 3 382.7916667 127.5972222 19.61 <.0001

Source DF Type III SS Mean Square F Value Pr > F hc 3 382.7916667 127.5972222 19.61 <.0001

Page 48: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Residual plot

resid*phat 도표 . 범례 : A = 1 관측치 , B = 2 관측치 , 등 .

resid | | 5.000 + A 4.500 + 4.000 + 3.500 + A 3.000 + A 2.500 + A 2.000 + A 1.500 + A A 1.000 + A B 0.500 + A 0.000 + A A-0.500 + A-1.000 + A A-1.500 + A-2.000 + A-2.500 + A A-3.000 + A A-3.500 + A-3.667 + A | ---+----------+----------+----------+----------+----------+----------+-- 10 12 14 16 18 20 22

phat

Residual plot

resid*hc 도표 . 범례 : A = 1 관측치 , B = 2 관측치 , 등 .

resid | | 5.000 + A 4.500 + 4.000 + A 3.500 + A 3.000 + 2.500 + A 2.000 + A 1.500 + A A 1.000 + A B 0.500 + A 0.000 + A A -0.500 + A -1.000 + A A -1.500 + A -2.000 + A A -2.500 + A -3.000 + A A -3.500 + A -3.667 + A | ---+-----------------+-----------------+-----------------+-- 5% 10% 15% 20%

hc

Page 49: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Kruskal-Wallis Nonparametric Test

H0: All k populations have the same distributionH1: Not all populations have the same distribution.

Test Statistic:

Here the Ri are the sum of the ranks for each population. The ranks are found by ranking the data in all populations combined. The n is the total sample size and ni is the sample size of the sample from the ith population.

Rejection Region:Paired comparison of population i to j:

Page 50: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Example

An article in Fortune compared rent in five American cities: New York, Chicago, Detroit, Tampa, and Orlando. The following data are small random samples of rants (in dollars) in the five cities. The New York data are Manhattan only. Conduct the Kruskal-Wallis test to determine whether evidence exists that there are significant differences in the rents in these cities. If differences exit, where are they?

OPTIONS NOOVP NODATE NONUMBER LS=80;proc format; value city 1=' New York' 2='Chicago' 3='Detroit' 4='Tampa' 5='Orlando';DATA rent;INPUT city rent @@; format city city.;CARDS;1 900 1 1200 1 850 1 1320 1 1400 1 1150 1 9752 625 2 640 2 775 2 1000 2 690 2 550 2 840 2 7503 415 3 400 3 420 3 560 3 780 3 620 3 800 3 3904 410 4 310 4 320 4 280 4 500 4 385 4 4405 340 5 425 5 275 5 210 5 575 5 360proc npar1way data=rent wilcoxon; class city; var rent;TITLE 'Kruskal-Wallis Test';RUN; QUIT;

Kruskal-Wallis Test The NPAR1WAY Procedure Wilcoxon Scores (Rank Sums) for Variable rent Classified by Variable city

Sum of Expected Std Dev Mean city N Scores Under H0 Under H0 Score -------------------------------------------------------------------------------- New York 7 228.0 129.50 25.018327 32.571429 Chicago 8 192.0 148.00 26.280538 24.000000 Detroit 8 135.0 148.00 26.280538 16.875000 Tampa 7 62.0 129.50 25.018327 8.857143 Orlando 6 49.0 111.00 23.558438 8.166667

Kruskal-Wallis Test Chi-Square 26.4930 DF 4 Pr > Chi-Square <.0001

Page 51: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Kruskal-Wallis Nonparametric Test

H0: All k populations have the same distributionH1: Not all populations have the same distribution.

Test Statistic:

Here the Ri are the sum of the ranks for each population. The ranks are found by ranking the data in all populations combined. The n is the total sample size and ni is the sample size of the sample from the ith population.

Rejection Region:Paired comparison of population i to j:

Page 52: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

5-8.2 Randomized Complete Block Experiment

The randomized block design is an extension of the paired t-test to situations where the factor of interest has more than two levels.

Page 53: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

5-8.2 Randomized Complete Block ExperimentFor example, consider the situation where two different methods were used to predict the shear strength of steel plate girders. Say we use four girders as the experimental units.

Page 54: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

5-8.2 Randomized Complete Block Experiment

Page 55: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

5-8.2 Randomized Complete Block Experiment

The appropriate linear statistical model:

We assume

• treatments and blocks are initially fixed effects

• blocks do not interact

Page 56: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

5-8.2 Randomized Complete Block Experiment

The hypotheses of interest are:

Page 57: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

5-8.2 Randomized Complete Block Experiment

Page 58: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

5-8.2 Randomized Complete Block Experiment

The mean squares are:

Page 59: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

5-8.2 Randomized Complete Block ExperimentThe expected values of these mean squares are:

Page 60: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

5-8.2 Randomized Complete Block Experiment

Page 61: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

5-8.2 Randomized Complete Block Experiment

Page 62: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Page 63: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Page 64: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Page 65: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Page 66: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Which means differ?

Page 67: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

5-8.2 Randomized Complete Block Experiment

Page 68: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples? Residual Analysis and Model Checking

Page 69: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Residual Analysis and Model Checking

Page 70: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Residual Analysis and Model Checking

Page 71: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Residual Analysis and Model Checking

Page 72: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

OPTIONS NOOVP NODATE NONUMBER LS=80;DATA ex515;DO type=1 to 4; DO fabsam=1 TO 5; INPUT strength @@; OUTPUT; END; END;CARDS;1.3 1.6 0.5 1.2 1.1 2.2 2.4 0.4 2 1.8 1.8 1.7 0.6 1.5 1.3 3.9 4.4 2 4.1 3.4PROC ANOVA DATA=ex515; CLASS type fabsam; MODEL strength= type fabsam; MEANS TYPE/SNK; output out=new p=phat r=resid;TITLE 'Randomized Block Design FabSample: Block, ChemType: Treatment';proc sort; by type;proc boxplot; plot strength*type;proc plot data=new; plot resid*phat; /* Residual Plot */ plot resid*type; /* Residual by Chemical Type */ plot resid*fabsam; /* Residuals by block */proc anova data=ex515; class type; model strength=type; means type/snk;TITLE 'one-way anova';run; quit;

Example 5-15

Page 73: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Randomized Block Design FabSample: Block, ChemType: Treatment

The ANOVA Procedure Class Level Information

Class Levels Values type 4 1 2 3 4 fabsam 5 1 2 3 4 5

Number of Observations Read 20 Number of Observations Used 20

------------------------------------------------------------------------------------------------- Randomized Block Design FabSample: Block, ChemType: Treatment The ANOVA ProcedureDependent Variable: strength Sum of Source DF Squares Mean Square F Value Pr > F Model 7 24.73700000 3.53385714 44.59 <.0001 Error 12 0.95100000 0.07925000 Corrected Total 19 25.68800000

R-Square Coeff Var Root MSE strength Mean 0.962979 14.36295 0.281514 1.960000

Source DF Anova SS Mean Square F Value Pr > F type 3 18.04400000 6.01466667 75.89 <.0001 fabsam 4 6.69300000 1.67325000 21.11 <.0001

Page 74: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Randomized Block Design FabSample: Block, ChemType: Treatment The ANOVA Procedure Student-Newman-Keuls Test for strength NOTE: This test controls the Type I experimentwise error rate under the complete null hypothesis but not under partial null hypotheses.

Alpha 0.05 Error Degrees of Freedom 12 Error Mean Square 0.07925

Number of Means 2 3 4 Critical Range 0.3879266 0.4749996 0.5285978

Means with the same letter are not significantly different.

SNK Grouping Mean N type A 3.5600 5 4 B 1.7600 5 2 C B 1.3800 5 3 C 1.1400 5 1

Page 75: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Randomized Block Design FabSample: Block, ChemType: Treatment The ANOVA Procedure Student-Newman-Keuls Test for strength NOTE: This test controls the Type I experimentwise error rate under the complete null hypothesis but not under partial null hypotheses.

Alpha 0.05 Error Degrees of Freedom 12 Error Mean Square 0.07925

Number of Means 2 3 4 Critical Range 0.3879266 0.4749996 0.5285978

Means with the same letter are not significantly different.

SNK Grouping Mean N type A 3.5600 5 4 B 1.7600 5 2 C B 1.3800 5 3 C 1.1400 5 1

Page 76: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Page 77: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

Randomized Block Design FabSample: Block, ChemType: Treatment

resid*phat 도표 . 범례 : A = 1 관측치 , B = 2 관측치 , 등 .resid | | 0.5 + | A | 0.4 + | | 0.3 + A A | A | 0.2 + | | 0.1 + A A | A A | A 0.0 + A A | A | -0.1 + A A | A | A A -0.2 + | A | A -0.3 + | | -0.4 + | | A -0.5 + | --+-------------+-------------+-------------+-------------+-------------+- 0 1 2 3 4 5 phat

Randomized Block Design FabSample: Block, ChemType: Treatment resid*fabsam 도표 . 범례 : A = 1 관측치 , B = 2 관측치 , 등 . resid | | 0.5 + | A | 0.4 + | | 0.3 + A A | A | 0.2 + | | 0.1 + A A | A A | A 0.0 + A A | A | -0.1 + A A | A | A A -0.2 + | A | A -0.3 + | | -0.4 + | | A -0.5 + | ---+--------------+--------------+--------------+--------------+-- 1 2 3 4 5

fabsam

Randomized Block Design FabSample: Block, ChemType: Treatment resid*type 도표 . 범례 : A = 1 관측치 , B = 2 관측치 , 등 . resid | | 0.5 + | A | 0.4 + | | 0.3 + A A | A | 0.2 + | | 0.1 + B | A A | A 0.0 + A A | A | -0.1 + A A | A | B -0.2 + | A | A -0.3 + | | -0.4 + | | A -0.5 + | ---+------------------+------------------+------------------+-- 1 2 3 4

type

Page 78: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

one-way anova The ANOVA ProcedureDependent Variable: strength Sum of Source DF Squares Mean Square F Value Pr > F Model 3 18.04400000 6.01466667 12.59 0.0002 Error 16 7.64400000 0.47775000 Corrected Total 19 25.68800000

R-Square Coeff Var Root MSE strength Mean 0.702429 35.26503 0.691195 1.960000

Source DF Anova SS Mean Square F Value Pr > F type 3 18.04400000 6.01466667 12.59 0.0002

Page 79: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

5-8 What If We Have More Than Two Samples?

one-way anova The ANOVA Procedure Student-Newman-Keuls Test for strength NOTE: This test controls the Type I experimentwise error rate under the complete null hypothesis but not under partial null hypotheses.

Alpha 0.05 Error Degrees of Freedom 16 Error Mean Square 0.47775

Number of Means 2 3 4 Critical Range 0.9267163 1.1279913 1.2506944

Means with the same letter are not significantly different.

SNK Grouping Mean N type A 3.5600 5 4 B 1.7600 5 2 B 1.3800 5 3

B 1.1400 5 1

Page 80: 5-5 Inference on the Ratio of Variances         of Two Normal Populations

Recommended