exampleData1 {dtComb}R Documentation

Examples data for the dtComb package

Description

A data set containing the results of diagnostic laparoscopy procedures for 225 patients.

Usage

data(exampleData1)

Format

A data frame with 225 rows and 3 variables:

group

Indicator if the procedure was needed, values needed and not_needed

ddimer

Biomarker 1, D-Dimer protein level in blood, ng/mL

log_leukocyte

Biomarker 2, Logarithm of Leukocyte count in blood, per mcL

Examples

data(exampleData1)
exampleData1$group <- factor(exampleData1$group)
gcol <- c("#E69F00", "#56B4E9")
plot(exampleData1$ddimer, exampleData1$log_leukocyte,
  col = gcol[as.numeric(exampleData1$group)]
)


[Package dtComb version 1.0.2 Index]