matchTab | R Documentation |
Tabulation of outcome vs exposure from a matched case control study
matchTab (case, exposed, strata, decimal)
case |
Outcome variables where 0 = control and 1 = case |
exposed |
Exposure variable where 0 = non-exposed and 1 = exposed |
strata |
Identification number for each matched set |
decimal |
Number of digits displayed after the decimal point |
Tabulation for an unmatched case control study is based on individual records classified by outcome and exposure variables.
Matched tabulation is tallying based on each matched set. The simplest form is McNemar's table where only one case is matched with one control. 'matchTab' can handle 1:m matching where m can vary from 1 to m. A MLE method is then used to compute the conditional odds ratio.
Virasakdi Chongsuvivatwong cvirasak@gmail.com
'table', 'cc' and 'clogit'
.data <- infert ## Not run: # matchTab(case, induced, stratum) # Tabulation successful but OR not computed # because 'induced' is not binary ## End(Not run) attach(.data) ia <- induced > 0 # any induced abortion matchTab(case, ia, stratum) # See also clogit(case ~ ia + strata(stratum), data=infert) detach(.data) rm(list=ls())
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.