generate.paired: Generate Dataset from "tab.paired"-Object

View source: R/DTComPair.R

generate.pairedR 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 tab.paired.

...

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)

DTComPair documentation built on Aug. 20, 2023, 5:06 p.m.