pool_odds_ratio: Calculates the pooled odds ratio (OR) and related confidence...

View source: R/pool_odds_ratio.R

pool_odds_ratioR Documentation

Calculates the pooled odds ratio (OR) and related confidence interval.

Description

pool_odds_ratio Calculates the pooled odds ratio and confidence interval.

Usage

pool_odds_ratio(object, conf.level = 0.95, dfcom = NULL)

Arguments

object

An object of class 'mistats' ('Multiply Imputed Statistical Analysis')

conf.level

Confidence level of the confidence intervals.

dfcom

Complete data degrees of freedom. Default number is taken from function odds_ratio

Value

The pooled OR and confidence intervals.

Author(s)

Martijn Heymans, 2021

See Also

with.milist, odds_ratio

Examples


library(magrittr)
lbpmilr %>%
   df2milist(impvar="Impnr") %>%
     with(expr=odds_ratio(Chronic ~ Radiation)) %>%
       pool_odds_ratio()

# Same as
imp_dat <- df2milist(lbpmilr, impvar="Impnr")
ra <- with(imp_dat, expr=odds_ratio(Chronic ~ Radiation))
res <- pool_odds_ratio(ra)


miceafter documentation built on Oct. 2, 2022, 5:08 p.m.