Learn R Programming

intubate (version 1.0.0)

metafor: Interfaces for metafor package for data science pipelines.

Description

Interfaces to metafor functions that can be used in a pipeline implemented by magrittr.

Usage

ntbt_escalc(data, ...) ntbt_rma(data, ...)

Arguments

data
data frame, tibble, list, ...
...
Other arguments passed to the corresponding interfaced function.

Value

Object returned by interfaced function.

Details

Interfaces call their corresponding interfaced function.

Examples

Run this code
## Not run: 
# library(intubate)
# library(magrittr)
# library(metafor)
# 
# 
# ## ntbt_escalc: Calculate Effect Sizes and Outcome Measures
# data(dat.bcg)
# dat.long <- to.long(measure = "RR", ai = tpos, bi = tneg, ci = cpos, di = cneg,
#                     data = dat.bcg, append = FALSE, vlong = TRUE)
# 
# ## Original function to interface
# dat <- escalc(measure="RR", outcome ~ group | study, weights = freq, data = dat.long)
# rma(yi, vi, data = dat)
# 
# ## The interface puts data as first parameter
# dat <- ntbt_escalc(dat.long, measure="RR", outcome ~ group | study, weights = freq)
# ntbt_rma(dat, yi, vi)
# 
# ## so it can be used easily in a pipeline.
# dat.long %>%
#   ntbt_escalc(measure="RR", outcome ~ group | study, weights = freq) %>%
#   ntbt_rma(yi, vi)
# ## End(Not run)

Run the code above in your browser using DataLab