Hubmeta is a meta-analysis toolkit.
You can install the released version of hubmeta from GITHUB with:
install.packages("devtools")
devtools::install_github("hubmeta/r")
This is a basic example which shows you how to solve a common problem:
library(hubmeta)
data <- meta_analysis(c(.18, .0, .08, .15, .27, .1, .28, .17, .02, .28),
c(426, 328, 122, 284, 472, 154, 372, 674, 110, 116),
c(.85, .77, .80, .86, .80, .79, .91, .85, .92, .85),
c(.63, .63, .62, .39, .24, .85, .89, .48, .68, .84),
c(0.95, 0.80)
)
For more information take a look at Colab Notebook.