+ Reply to Thread
Results 1 to 8 of 8

Thread: Minimum sample size for paired t-tests

  1. #1
    Points: 332, Level: 6
    Level completed: 64%, Points required for next Level: 18

    Posts
    8
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Minimum sample size for paired t-tests



    Hi All,

    I remember reading somewhere that the minimum sample size to conduct paired t-tests was ~30, as this will ensure that there is adequate power, robustness of normality, and reliability of results.

    I have to critically review a study for my course, and they have used paired t-tests using a sample size of 17. Could I say that perhaps this was an inappropriate statistical test to use because of the low sample size, and that the non-parametric alternative (Wilcoxon) would have been more appropriate?

    Thanks for your help.

  2. #2
    Cookie Scientist
    Points: 5,905, Level: 49
    Level completed: 78%, Points required for next Level: 45
    Jake's Avatar
    Location
    Boulder, CO
    Posts
    793
    Thanks
    17
    Thanked 313 Times in 239 Posts

    Re: Minimum sample size for paired t-tests

    You may find the following table of power values helpful:
    Code: 
    Table of MINIMUM SAMPLE SIZES (# of pairs)
         EffectSize_CohensD
    Power 0.2 (small) 0.5 (medium) 0.8 (large)
      0.5          98           18           9
      0.6         125           22          10
      0.7         157           27          12
      0.8         199           34          15
      0.9         265           44          19
    As for your critiques, the power critique would perhaps have been useful before the data was collected, but after the study has been run it kind of becomes a moot point. You can compute the retrospective power based on the observed effect size if you like, and argue that in the future a larger sample size would be more desireable for power reasons (assuming the power analysis indicates that the study was underpowered, which historically has typically been the case), but either way it doesn't have all that much bearing on the present study after the fact. The critique about Wilcoxon's test is unfortunately just off base, since the non-parametric alternative certainly won't have greater power than the parametric test.

    In case you are interested to play around with some power analyses yourself, the table above was generated with the following R code:
    Code: 
    library(pwr)
    
    params <- expand.grid(d = c(.2, .5, .8), power=seq(.5, .9, .1))
    getPwr <- function(D, pow) pwr.t.test(n = NULL, d = D, sig.level = 0.05, power = pow, 
                                     type = "paired", alternative = "two.sided")$n
    # table of MINIMUM SAMPLE SIZES (# of pairs)
    matrix(ceiling(mapply(getPwr, params[,1], params[,2])), ncol=3, byrow=T,
           dimnames=list(Power=seq(.5, .9, .1), EffectSize_CohensD=paste(c(.2, .5, .8), c("(small)","(medium)","(large)"))))
    “In God we trust. All others must bring data.”
    ~W. Edwards Deming

  3. The Following 2 Users Say Thank You to Jake For This Useful Post:

    bozatron (09-19-2012), trinker (09-20-2012)

  4. #3
    Points: 3,892, Level: 39
    Level completed: 62%, Points required for next Level: 58

    Posts
    302
    Thanks
    16
    Thanked 15 Times in 15 Posts

    Re: Minimum sample size for paired t-tests

    As long as certain assumptions (normality, no outliers....) are met then the sample size of 17 pairs is not necessarily of concern. Kind of like what Jake mentioned above, talking about the power would be a good thing to point out.

    As with a lot of things about statistics (like p-values) certain numbers are rather arbitrary and simply based on how sure you want to be about something (http://www.jedcampbell.com/?p=262).

  5. The Following User Says Thank You to lancearmstrong1313 For This Useful Post:

    bozatron (09-19-2012)

  6. #4
    Test of Gnomality
    Points: 8,275, Level: 61
    Level completed: 42%, Points required for next Level: 175
    Awards:
    Activity Award
    hlsmith's Avatar
    Posts
    1,507
    Thanks
    98
    Thanked 255 Times in 248 Posts

    Re: Minimum sample size for paired t-tests

    I will add that if assumptions held and they found a significant difference than they did not have a sample size issue. If they reported no difference, then you would wonder if they had enough observations to discern a difference. The other thing you need to question with this sample size, is whether it was reflective of the population. Can 17 people tell you about all of the other people not included in the study?

  7. The Following User Says Thank You to hlsmith For This Useful Post:

    bozatron (09-19-2012)

  8. #5
    Points: 332, Level: 6
    Level completed: 64%, Points required for next Level: 18

    Posts
    8
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Re: Minimum sample size for paired t-tests

    Hi All,

    Thanks so much for your help. The points you have made have definitely made me think about it a lot more and I have come up with a number of other issues that I can point out from it.

    With regards to whether the sample can be seen as representative of the population - I have also been thinking about this, as their findings are specifically for children and adolescents with clinical anxiety disorders and who are seeking treatment from a speciality community mental health clinic. To me, it seems like having only 17 participants would make it difficult to say that any significant findings can be generalised to this specific population group, particularly when they did not have a wide variety of anxiety disorders within their sample. What do you guys think?

  9. #6
    Test of Gnomality
    Points: 8,275, Level: 61
    Level completed: 42%, Points required for next Level: 175
    Awards:
    Activity Award
    hlsmith's Avatar
    Posts
    1,507
    Thanks
    98
    Thanked 255 Times in 248 Posts

    Re: Minimum sample size for paired t-tests

    What is the citation for this article. I am drafting a manuscript on a possibly related topic and may be interested. In addition, if I read it, I will post the limiations as I see them.

  10. #7
    Points: 332, Level: 6
    Level completed: 64%, Points required for next Level: 18

    Posts
    8
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Re: Minimum sample size for paired t-tests

    Bӧgels, S. M., & Siqueland, L. (2006). Family cognitive behavioral therapy for children and adolescents with clinical anxiety disorders. Journal of the American Academy of Child and Adolescent Psychiatry, 45(2), 134-141.

    Let me know how you go, I have a couple of methodological limitations that I have identified already however I am a little unsure if they are correct, so it would be interesting to see if we identify similar ones.

    Hopefully it is relevant to your manuscript!

    Thanks again for your help!

  11. #8
    Points: 332, Level: 6
    Level completed: 64%, Points required for next Level: 18

    Posts
    8
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Re: Minimum sample size for paired t-tests


    Hi,

    Just checking in to see if his article was relevant to your work at all and what you thought of it?

    Thanks again.

+ Reply to Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts








Advertise on Talk Stats