Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • How to display Standard Error of Effect Estimate instead of 95%Confidence Intervals in Random Effects Meta-Analysis

    Hi,
    I would like to find out what the pooled Standard Error of a meta-analysis effect size estimate is opposed to the pooled 95% Confidence Intervals.

    The dataset for the meta-analysis contains 54 different study results.
    As studies reported a combination of mean and SD scores, 2x2 table data or proportions, I used the meta eff command (in STATA 17) to transform the data in each individual study to a common effect size metric (using methods described in the Cochrane handbook of systematic reviews). This gives the SMD effect sizes and their standard errors for each of the 54 studies in the dataset.

    Once I transformed the data to a common effect size metric (with SE) for each individual study, I then used the metan command to get the overall effect size estimate.
    The command I used is: metan eff SEeff, label (namevar=Author) random lcols (Author samplesize).

    So I have the DerSimonian-Laird Random Effects Meta-Analysis results with the metan command.
    The STATA outputs for this display the individual studies SMD effect size estimates and their associated 95% Confidence Intervals as well as the pooled SMD effect size estimate and the associated 95% Confidence Intervals.

    I need Standard Error of the effect size.
    Is there a way I can display the pooled Standard Error of the effect size opposed to the 95% Confidence Intervals?

    Any clarification you can provide would be much appreciated.
    Kinds regards
    Nora

  • #2
    Looks like r(se_eff) is in the return list.

    Comment


    • #3
      Hi George, Many thanks for your reply.
      I am sorry I don't understand what you mean.
      I have a column for the Standard Error of the effect in the dataset. This is produced from the metaeff command.
      When I run the metan, to get the pooled effect size, the results include the effect size and confidence intervals. Is there a way to display a pooled standard error of the effect, opposed to the confidence intervals?
      thanks again
      N

      Comment


      • #4
        di `r(se_eff)'

        Comment


        • #5
          I do not understand the usefulness of presenting mean +- SE instead of mean (95% CI).

          If you really want that, you need to adapt your metan.ado as follows:

          Original (line 30, metan version 9):

          Code:
          ILevel(integer $S_level) OLevel(integer $S_level)
          to

          Adapted code:


          Code:
          ILevel(real $S_level) OLevel(integer $S_level)

          Then, you can present 68.27% confidence intervals, which are equivalent to 1SD (== standard error).

          Code:
          metan eff SEeff, ilevel(68.27)
          I strongly advise against any of these options, and if you proceed, you do so at your own risk.





          Comment


          • #6
            Obs: If you want to present the summary estimate +- SE, you should edit the Olevel option as well. And then:

            Code:
             
             metan eff SEeff, ilevel(68.27) olevel(68.27)

            Comment

            Working...
            X