3

I have to test the difference between two samples which were selected via stratified randomization. The problem is that the samples are not independent due to randomization was stratified.

How should I conduct the test?


Edit:

There are 80 patients. They were strafified by weight into four groups, each containing 20 observations. There are 4 treatments A,B,C,D. 5 patients from each group were randomly assigned to each of the four treatments.

The question is how to compare these treatments?


Weight is known to be the most important factor influencing the desease. The researcher tries to "adjust for weight", i.e., to provide "balance" of weights among the treatments.

The problem in comparing treatments for each weight separately is that we will then have only 5 observations per group.

mdewey
  • 16,541
  • 22
  • 30
  • 57
Viktor
  • 853
  • 1
  • 8
  • 22

1 Answers1

4

You needn't run separate ANOVAs within each strata. In essence, you have blocked on weight. You can just run a two-way (i.e., 4x4) factorial ANOVA. You don't have to worry about whether the blocking variable is significant or not, it just exists to reduce the error variance. It should enhance your statistical power.

gung - Reinstate Monica
  • 132,789
  • 81
  • 357
  • 650
  • I need an analog for ANOVA for the case when the observations (or residuals) are not normal. Will the Scheirer-Ray-Hare test be suitable here? Are there any implementations of the test in R? – Viktor Jul 01 '15 at 09:49
  • As long as you believe your response data to be meaningfully ordered, you can use ordinal logistic regression; see [here](http://stats.stackexchange.com/a/78366/7290). – gung - Reinstate Monica Jul 01 '15 at 13:21