metafor modeling within-study variance The Next CEO of Stack Overflowmetafor: Including data in forest plot but not meta-analysis modelMeta-analysis: Forest plot of summary estimates using metafor packageMeta-regression with metafor: Where has the variance gone?interpreting meta-regression outputs from metaforAnnual rate of change effect size Meta-analysis in MetaforMeta-analysis in RHow can I^2 ==0 (heterogeneity measure) in RMA random effects meta analysis in R?specify fixed effect two-level variable rma.mvCreate a forest plot for weighted mean effect size for each study in meta-analysisHow can I use a glmer output for rma.glmm input in mixed model logistic regression meta-analysis?

Could a dragon use its wings to swim?

Gauss' Posthumous Publications?

How seriously should I take size and weight limits of hand luggage?

What is the difference between 'contrib' and 'non-free' packages repositories?

Find the majority element, which appears more than half the time

What day is it again?

Another proof that dividing by 0 does not exist -- is it right?

Does int main() need a declaration on C++?

Raspberry pi 3 B with Ubuntu 18.04 server arm64: what pi version

Prodigo = pro + ago?

Is the offspring between a demon and a celestial possible? If so what is it called and is it in a book somewhere?

Is it a bad idea to plug the other end of ESD strap to wall ground?

How do I keep Mac Emacs from trapping M-`?

Ising model simulation

Is it possible to make a 9x9 table fit within the default margins?

Would a grinding machine be a simple and workable propulsion system for an interplanetary spacecraft?

Can you teleport closer to a creature you are Frightened of?

Does Germany produce more waste than the US?

My boss doesn't want me to have a side project

Is it OK to decorate a log book cover?

Car headlights in a world without electricity

"Eavesdropping" vs "Listen in on"

Small nick on power cord from an electric alarm clock, and copper wiring exposed but intact

Which acid/base does a strong base/acid react when added to a buffer solution?



metafor modeling within-study variance



The Next CEO of Stack Overflowmetafor: Including data in forest plot but not meta-analysis modelMeta-analysis: Forest plot of summary estimates using metafor packageMeta-regression with metafor: Where has the variance gone?interpreting meta-regression outputs from metaforAnnual rate of change effect size Meta-analysis in MetaforMeta-analysis in RHow can I^2 ==0 (heterogeneity measure) in RMA random effects meta analysis in R?specify fixed effect two-level variable rma.mvCreate a forest plot for weighted mean effect size for each study in meta-analysisHow can I use a glmer output for rma.glmm input in mixed model logistic regression meta-analysis?










0















I am preparing a correlational meta-analysis. Some studies in my sample provide multiple effect sizes based on various different measures for the predictor, the criterion variable, or both. To avoid that I over- or underestimate the precision of the final estimate, I wanted to model both within-study variance and between-study variance. Therefore, I entered several effect sizes for study 1 and several effect sizes for further studies.



Here is a sample of my data:



> study<-c(1,1,1,2,3,3)
> number<-c(1:6)
> yi<-c(.12,.18,.05,.14,.19,.24)
> vi<-c(.0005,.0005,.0005,.0012,.0009,.0008)
> example<-data.frame(study, number, yi,vi)
> head(example)
study number yi vi
1 1 1 0.12 0.0005
2 1 2 0.18 0.0005
3 1 3 0.05 0.0005
4 2 4 0.14 0.0012
5 3 5 0.19 0.0009
6 3 6 0.24 0.0008


I followed recommendations outlined here to fit a three-level meta-analysis: http://www.metafor-project.org/doku.php/analyses:konstantopoulos2011



> res.mv <- rma.mv(yi, vi, random = ~ factor(number) | study, data=example)
> print(res.mv, digits=3)

Multivariate Meta-Analysis Model (k = 6; method: REML)

Variance Components:

outer factor: study (nlvls = 3)
inner factor: factor(number) (nlvls = 6)

estim sqrt fixed
tau^2 0.004 0.064 no
rho 0.384 no

Test for Heterogeneity:
Q(df = 5) = 35.299, p-val < .001

Model Results:

estimate se zval pval ci.lb ci.ub
0.156 0.034 4.608 <.001 0.090 0.222 ***

---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1


However, I later found out that the model used above assumes that the sampling errors of the effect size estimates are independent, which is obviously not the case here, as multiple estimates are obtained from the same group of people. Is there anything I can do to account for this dependency in the model?










share|improve this question


























    0















    I am preparing a correlational meta-analysis. Some studies in my sample provide multiple effect sizes based on various different measures for the predictor, the criterion variable, or both. To avoid that I over- or underestimate the precision of the final estimate, I wanted to model both within-study variance and between-study variance. Therefore, I entered several effect sizes for study 1 and several effect sizes for further studies.



    Here is a sample of my data:



    > study<-c(1,1,1,2,3,3)
    > number<-c(1:6)
    > yi<-c(.12,.18,.05,.14,.19,.24)
    > vi<-c(.0005,.0005,.0005,.0012,.0009,.0008)
    > example<-data.frame(study, number, yi,vi)
    > head(example)
    study number yi vi
    1 1 1 0.12 0.0005
    2 1 2 0.18 0.0005
    3 1 3 0.05 0.0005
    4 2 4 0.14 0.0012
    5 3 5 0.19 0.0009
    6 3 6 0.24 0.0008


    I followed recommendations outlined here to fit a three-level meta-analysis: http://www.metafor-project.org/doku.php/analyses:konstantopoulos2011



    > res.mv <- rma.mv(yi, vi, random = ~ factor(number) | study, data=example)
    > print(res.mv, digits=3)

    Multivariate Meta-Analysis Model (k = 6; method: REML)

    Variance Components:

    outer factor: study (nlvls = 3)
    inner factor: factor(number) (nlvls = 6)

    estim sqrt fixed
    tau^2 0.004 0.064 no
    rho 0.384 no

    Test for Heterogeneity:
    Q(df = 5) = 35.299, p-val < .001

    Model Results:

    estimate se zval pval ci.lb ci.ub
    0.156 0.034 4.608 <.001 0.090 0.222 ***

    ---
    Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1


    However, I later found out that the model used above assumes that the sampling errors of the effect size estimates are independent, which is obviously not the case here, as multiple estimates are obtained from the same group of people. Is there anything I can do to account for this dependency in the model?










    share|improve this question
























      0












      0








      0








      I am preparing a correlational meta-analysis. Some studies in my sample provide multiple effect sizes based on various different measures for the predictor, the criterion variable, or both. To avoid that I over- or underestimate the precision of the final estimate, I wanted to model both within-study variance and between-study variance. Therefore, I entered several effect sizes for study 1 and several effect sizes for further studies.



      Here is a sample of my data:



      > study<-c(1,1,1,2,3,3)
      > number<-c(1:6)
      > yi<-c(.12,.18,.05,.14,.19,.24)
      > vi<-c(.0005,.0005,.0005,.0012,.0009,.0008)
      > example<-data.frame(study, number, yi,vi)
      > head(example)
      study number yi vi
      1 1 1 0.12 0.0005
      2 1 2 0.18 0.0005
      3 1 3 0.05 0.0005
      4 2 4 0.14 0.0012
      5 3 5 0.19 0.0009
      6 3 6 0.24 0.0008


      I followed recommendations outlined here to fit a three-level meta-analysis: http://www.metafor-project.org/doku.php/analyses:konstantopoulos2011



      > res.mv <- rma.mv(yi, vi, random = ~ factor(number) | study, data=example)
      > print(res.mv, digits=3)

      Multivariate Meta-Analysis Model (k = 6; method: REML)

      Variance Components:

      outer factor: study (nlvls = 3)
      inner factor: factor(number) (nlvls = 6)

      estim sqrt fixed
      tau^2 0.004 0.064 no
      rho 0.384 no

      Test for Heterogeneity:
      Q(df = 5) = 35.299, p-val < .001

      Model Results:

      estimate se zval pval ci.lb ci.ub
      0.156 0.034 4.608 <.001 0.090 0.222 ***

      ---
      Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1


      However, I later found out that the model used above assumes that the sampling errors of the effect size estimates are independent, which is obviously not the case here, as multiple estimates are obtained from the same group of people. Is there anything I can do to account for this dependency in the model?










      share|improve this question














      I am preparing a correlational meta-analysis. Some studies in my sample provide multiple effect sizes based on various different measures for the predictor, the criterion variable, or both. To avoid that I over- or underestimate the precision of the final estimate, I wanted to model both within-study variance and between-study variance. Therefore, I entered several effect sizes for study 1 and several effect sizes for further studies.



      Here is a sample of my data:



      > study<-c(1,1,1,2,3,3)
      > number<-c(1:6)
      > yi<-c(.12,.18,.05,.14,.19,.24)
      > vi<-c(.0005,.0005,.0005,.0012,.0009,.0008)
      > example<-data.frame(study, number, yi,vi)
      > head(example)
      study number yi vi
      1 1 1 0.12 0.0005
      2 1 2 0.18 0.0005
      3 1 3 0.05 0.0005
      4 2 4 0.14 0.0012
      5 3 5 0.19 0.0009
      6 3 6 0.24 0.0008


      I followed recommendations outlined here to fit a three-level meta-analysis: http://www.metafor-project.org/doku.php/analyses:konstantopoulos2011



      > res.mv <- rma.mv(yi, vi, random = ~ factor(number) | study, data=example)
      > print(res.mv, digits=3)

      Multivariate Meta-Analysis Model (k = 6; method: REML)

      Variance Components:

      outer factor: study (nlvls = 3)
      inner factor: factor(number) (nlvls = 6)

      estim sqrt fixed
      tau^2 0.004 0.064 no
      rho 0.384 no

      Test for Heterogeneity:
      Q(df = 5) = 35.299, p-val < .001

      Model Results:

      estimate se zval pval ci.lb ci.ub
      0.156 0.034 4.608 <.001 0.090 0.222 ***

      ---
      Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1


      However, I later found out that the model used above assumes that the sampling errors of the effect size estimates are independent, which is obviously not the case here, as multiple estimates are obtained from the same group of people. Is there anything I can do to account for this dependency in the model?







      r hierarchical multi-level metafor






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 8 at 19:01









      Saja01Saja01

      63




      63






















          0






          active

          oldest

          votes












          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55069420%2fmetafor-modeling-within-study-variance%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55069420%2fmetafor-modeling-within-study-variance%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

          2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived

          Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme