Simplest equation one can go for stratified samples?
1
2
Entering edit mode
7.5 years ago
Naresh ▴ 60

Hi,

I am in need of a help writing estimating formula for sample size/power statistics. There are several equations on top of my head which I fail to understand.

I did look into some references, but is there a simplest equation one can go for stratified samples?

Help appreciated.

Kind regards Naresh

R sequencing • 1.2k views
ADD COMMENT
0
Entering edit mode

I would recommend instead using something like G*Power, which probably has what you need built-in.

ADD REPLY
0
Entering edit mode
7.4 years ago
ddiez ★ 2.0k

What about the R package pwr? Not sure about stratified samples, but you can easily compute the power, or alternatively estimate the parameters required to reach some particular power. Example from the documentation:

pwr.p.test(h = 0.2, n = 60, sig.level = 0.05, alternative = "two.sided")

 proportion power calculation for binomial distribution (arcsine transformation) 

              h = 0.2
              n = 60
      sig.level = 0.05
          power = 0.3408451
    alternative = two.sided

If we want to know for the above how many samples we need to achieve 0.8 power:

pwr.p.test(h = 0.2, power = 0.8, sig.level = 0.05, alternative = "two.sided")

     proportion power calculation for binomial distribution (arcsine transformation) 

              h = 0.2
              n = 196.2215
      sig.level = 0.05
          power = 0.8
    alternative = two.sided

Almost 200 samples! Also take a look at the plotting functions.

ADD COMMENT

Login before adding your answer.

Traffic: 1956 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6