AP Statistics Curriculum 2007 NonParam ANOVA

From Socr

(Difference between revisions)
Jump to: navigation, search
(Notes)
(Calculations)
Line 31: Line 31:
==Calculations==
==Calculations==
-
# Rank all data from all groups together; i.e., rank the data from 1 to N ignoring group membership. Assign any tied values the average of the ranks they would have received had they not been tied.
+
Let ''N'' be the total number of observations, then <math>N = \sum_{i=1}^k {n_i}</math>.
-
# The test statistic is given by:
+
-
: <math>K = (N-1)\frac{\sum_{i=1}^g n_i(\bar{r}_{i\cdot} - \bar{r})^2}{\sum_{i=1}^g\sum_{j=1}^{n_i}(r_{ij} - \bar{r})^2}</math>, where:
+
-
#*<math>n_g</math> is the number of observations in group <math>g</math>
+
-
#*<math>r_{ij}</math> is the rank (among all observations) of observation ''j'' from group ''i''
+
-
#*<math>N</math> is the total number of observations across all groups
+
-
#*<math>\bar{r}_{i\cdot} = \frac{\sum_{j=1}^{n_i}{r_{ij}}}{n_i}</math>,
+
-
#*<math>\bar{r} =(N+1)/2</math> is the average of all the <math>r_{ij}</math>.
+
-
#*Notice that the denominator of the expression for <math>K</math> is exactly <math>(N-1)N(N+1)/12</math>. Thus <math>K = \frac{12}{N(N+1)}\sum_{i=1}^g n_i(\bar{r}_{i\cdot} - \bar{r})^2</math>.
+
-
# A correction for ties can be made by dividing <math>K</math> by <math>1 - \frac{\sum_{i=1}^G (t_{i}^3 - t_{i})}{N^3-N}</math>, where G is the number of groupings of different tied ranks, and t<sub>i</sub> is the number of tied values within group i that are tied at a particular value.  This correction usually makes little difference in the value of K unless there are a large number of ties.
+
-
# Finally, the p-value is approximated by <math>\Pr(\chi^2_{g-1} \ge K)</math>. If some n<sub>i</sub>'s are small (i.e., less than 5) the probability distribution of K can be quite different from this [http://en.wikipedia.org/wiki/Chi-square Chi-square distribution].  
+
-
The null hypothesis of equal population medians would then be rejected if <math>K \ge \chi^2_{\alpha: g-1}</math>.  
+
Let <math>R(X_{ij})</math> denote the rank assigned to <math>X_{ij}</math> and let <math>R_i</math> be the sum of ranks assigned to the <math>i^{th}</math> sample.
 +
 
 +
: <math>R_i = \sum_{j=1}^{n_i} {R(X_{ij})}, i = 1, 2,  ... , k</math>.
 +
 
 +
The SOCR program computes <math>R_i</math> for each sample. The test statistic is defined for the following formulation of hypotheses:
 +
 
 +
: <math>H_o</math>: All of the k population distribution functions are identical.
 +
: <math>H_1</math>: At least one of the populations tends to yield larger observations than at least one of the other populations.
 +
 
 +
Suppose {<math>X_{i,1}, X_{i,2}, \cdots, X_{i,n_i}</math>} represents the values of the <math>i^{th}</math> sample, where <math>1\leq i\leq k</math>.
 +
 +
: Test statistics:
 +
:: T = <math>(1/{{S}^{2}}) (\sum_{i=1}^{k} {{R_i}^{2}} / {n_i} {-}{N {(N + 1)}^{2} }) / 4</math>,
 +
where
 +
::<math>{{S}^{2}} = \left( \left({1/ {N - 1}}\right) \right) \sum{{R(X_{ij})}^{2}} {-} {N {\left(N + 1)\right)}^{2} } ) / 4</math>.
 +
 
 +
* Note: If there are no ties, then the test statistic is reduced to:
 +
::<math>T = \left(12 / N(N+1) \right) \sum_{i=1}^{k} {{R_i}^{2}} / {n_i} {-}  3 \left(N+1\right)</math>.
 +
\end{center}
 +
 
 +
However, the SOCR implementation allows for the possibility of having ties; so it uses the non-simplified, exact method of computation.
 +
 
 +
Multiple comparisons have to be done here. For each pair of groups, the following is computed and printed at the '''Result''' Panel.
 +
 
 +
<math>|R_{i} /n_{i} -R_{j} /n_{j} | > t_{1-\alpha /2} (S^{2^{} } (N-1-T)/(N-k))^{1/2_{} } /(1/n_{i} +1/n_{j} )^{1/2_{}}</math>.
 +
 
 +
The SOCR computation employs the exact method instead of the approximate one (Conover 1980), since computation is easy and fast to implement and the exact method is somewhat more accurate.  
===The Kruskal-Wallis Test using SOCR Analyses===
===The Kruskal-Wallis Test using SOCR Analyses===

Revision as of 20:38, 2 March 2008

Contents

General Advance-Placement (AP) Statistics Curriculum - Means of Several Independent Samples

In this section we extend the multi-sample inference which we discussed in the ANOVA section, to the situation where the ANOVA assumptions are invalid. Hence we use a non-parametric analysis to study differences in centrality between two or more populations.

Motivational Example

Suppose four groups of students were randomly assigned to be taught with four different techniques, and their achievement test scores were recorded. Are the distributions of test scores the same, or do they differ in location? The data is presented in the table below.

Teaching Method
Method 1 Method 2 Method 3 Method 4
Index 65 75 59 94
87 69 78 89
73 83 67 80
79 81 62 88

The small sample sizes, and the lack of information about the distribution of each of the four samples, imply that ANOVA may not be appropriate for analyzing these data.

The Kruskal-Wallis Test

Kruskal-Wallis one-way analysis of variance by ranks is a non-parametric method for testing equality of two or more population medians. Intuitively, it is identical to a one-way analysis of variance with the raw data (observed measurements) replaced by their ranks.

Since it is a non-parametric method, the Kruskal-Wallis test does not assume a normal population, unlike the analogous one-way ANOVA. However, the test does assume identically-shaped distributions for all groups, except for any difference in their centers (e.g., medians).

Calculations

Let N be the total number of observations, then N = \sum_{i=1}^k {n_i}.

Let R(Xij) denote the rank assigned to Xij and let Ri be the sum of ranks assigned to the ith sample.

R_i = \sum_{j=1}^{n_i} {R(X_{ij})}, i = 1, 2,  ... , k.

The SOCR program computes Ri for each sample. The test statistic is defined for the following formulation of hypotheses:

Ho: All of the k population distribution functions are identical.
H1: At least one of the populations tends to yield larger observations than at least one of the other populations.

Suppose {X_{i,1}, X_{i,2}, \cdots, X_{i,n_i}} represents the values of the ith sample, where 1\leq i\leq k.

Test statistics:
T = (1/{{S}^{2}}) (\sum_{i=1}^{k} {{R_i}^{2}} / {n_i} {-}{N {(N + 1)}^{2} }) / 4,

where

{{S}^{2}} = \left( \left({1/ {N - 1}}\right) \right) \sum{{R(X_{ij})}^{2}} {-} {N {\left(N + 1)\right)}^{2} } ) / 4.
  • Note: If there are no ties, then the test statistic is reduced to:
T = \left(12 / N(N+1) \right) \sum_{i=1}^{k} {{R_i}^{2}} / {n_i} {-}  3 \left(N+1\right).

\end{center}

However, the SOCR implementation allows for the possibility of having ties; so it uses the non-simplified, exact method of computation.

Multiple comparisons have to be done here. For each pair of groups, the following is computed and printed at the Result Panel.

|R_{i} /n_{i} -R_{j} /n_{j} | > t_{1-\alpha /2} (S^{2^{} } (N-1-T)/(N-k))^{1/2_{} } /(1/n_{i} +1/n_{j} )^{1/2_{}}.

The SOCR computation employs the exact method instead of the approximate one (Conover 1980), since computation is easy and fast to implement and the exact method is somewhat more accurate.

The Kruskal-Wallis Test using SOCR Analyses

It is much quicker to use SOCR Analyses to compute the statistical significance of this test. This SOCR KruskalWallis Test activity may also be helpful in understanding how to use this test in SOCR.

For the teaching-methods example above, we can easily compute the statistical significance of the differences between the group medians (centers):

Clearly, there are significant differences between the group medians, even after the multiple testing correction, all groups appear different from each other.

Group Method1 vs. Group Method2: 1.0 < 5.2056
Group Method1 vs. Group Method3: 4.0 < 5.2056
Group Method1 vs. Group Method4: 6.0 > 5.2056
Group Method2 vs. Group Method3: 5.0 < 5.2056
Group Method2 vs. Group Method4: 5.0 < 5.2056
Group Method3 vs. Group Method4: 10.0 > 5.2056

Practice Examples

TBD

Notes

References




Translate this page:

(default)

Deutsch

Español

Français

Italiano

Português

日本語

България

الامارات العربية المتحدة

Suomi

इस भाषा में

Norge

한국어

中文

繁体中文

Русский

Nederlands

Ελληνικά

Hrvatska

Česká republika

Danmark

Polska

România

Sverige

Personal tools