Skip to content
Prev 4511 / 5636 Next

[R-meta] Metafor modeling question

Dear Yuhang,

Please see below for my answers.

Best,
Wolfgang
Yes, they are crossed in this example.
fitted(mm) gives you the fitted values and resid(mm) gives you the residuals, so you can just plot them against each other with plot(fitted(mm), resid(mm)) or you can use the standardized residuals on the y-axis with plot(fitted(mm), rstandard(mm)$z), since the residuals themselves are heteroscedastic, but the standardized residuals are ... well, standardized!

Whether such a plot is useful is difficult to say in general, but I suppose it can be used in the same manner as it is used with primary data.