Description Usage Arguments Details Value Examples
egger.table create egger test to be previewed in markdown.
1 | egger.table(x)
|
x |
object of class eggers test or an output of egger test |
The purpose of egger.table function, is to create egger test' results in a table to be previewed in markdown.
Nothing
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Not run:
library(shiny)
SMD <- metafor::dat.normand1999
colnames(SMD) <- c("Study","source",'n.e' ,'mean.e', 'sd.e', 'n.c' ,'mean.c', 'sd.c')
SMDmeta <- meta::metacont(
mean.e = mean.e, sd.e = sd.e, n.e= n.e,
mean.c= mean.c, sd.c = sd.c, n.c = n.c,
data = SMD, sm = 'SMD'
)
g <- dmetar::eggers.test(SMDmeta)
egger.table(g)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.