generate.paired {DTComPair} | R Documentation |
Generate Dataset from “tab.paired”-Object
Description
Generates a dataset from contingency tables of binary diagnostic test results in a paired study design.
Usage
generate.paired(tab, ...)
Arguments
tab |
An object of class |
... |
Additional arguments (usually not required). |
Value
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). |
See Also
tab.paired
and read.tab.paired
.
Examples
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)
[Package DTComPair version 1.2.4 Index]