generate.paired | R Documentation |
Generates a dataset from contingency tables of binary diagnostic test results in a paired study design.
generate.paired(tab, ...)
tab |
An object of class |
... |
Additional arguments (usually not required). |
A dataframe containing:
d |
A numeric vector specifying the gold-standard results (1 = presence of disease, 0 = absence of disease). |
y1 |
A numeric vector specifying the results of diagnostic test 1 (1 = positive, 0 = negative). |
y2 |
A numeric vector specifying the results of diagnostic test 2 (1 = positive, 0 = negative). |
tab.paired
and read.tab.paired
.
data(Paired1) # Hypothetical study data
ftable(Paired1)
paired.layout <- tab.paired(d=d, y1=y1, y2=y2, data=Paired1)
new.df <- generate.paired(paired.layout)
head(new.df)
ftable(new.df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.