Description Usage Arguments Value See Also Examples
This method takes one or more objects of class esc
(which
are returned by each effect size calculation function) and
returns the combined result as a single data frame. This can
then be used for further computation, e.g. with the
rma
-function of the metafor-package.
1 |
... |
One or more objects of class |
A data frame with all relevant information from the effect size calculation.
1 2 3 4 5 6 7 8 9 | e1 <- esc_2x2(grp1yes = 30, grp1no = 50, grp2yes = 40,
grp2no = 45, study = "Study 1")
e2 <- esc_2x2(grp1yes = 30, grp1no = 50, grp2yes = 40, grp2no = 45,
es.type = "or", study = "Study 2")
e3 <- esc_t(p = 0.03, grp1n = 100, grp2n = 150, study = "Study 3")
e4 <- esc_mean_sd(grp1m = 7, grp1sd = 2, grp1n = 50, grp2m = 9, grp2sd = 3,
grp2n = 60, es.type = "logit", study = "Study 4")
combine_esc(e1, e2, e3, e4)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.