Learn R Programming

metamisc (version 0.1.9)

DVTipd: Hypothetical dataset for diagnosis of Deep Vein Thrombosis (DVT)

Description

A hypothetical dataset with 500 subjects suspected of having deep vein thrombosis (DVT).

Usage

data(DVTipd)

Arguments

Format

A data frame with 500 observations of 15 variables.

sex

gender (0=female, 1=male)

malign

active malignancy (0=no active malignancy, 1=active malignancy)

par

paresis (0=no paresis, 1=paresis)

surg

recent surgery or bedridden

tend

tenderness venous system

oachst

oral contraceptives or hst

leg

entire leg swollen

notraum

absence of leg trauma

calfdif3

calf difference >= 3 cm

pit

pitting edema

vein

vein distension

altdiagn

alternative diagnosis present

histdvt

history of previous DVT

ddimdich

dichotimized D-dimer value

dvt

final diagnosis of DVT

Details

Hypothetical dataset derived from the Individual Participant Data Meta-Analysis from Geersing et al (2014). The dataset consists of consecutive outpatients with suspected deep vein thrombosis, with documented information on the presence or absence of proximal deep vein thrombosis (dvt) by an acceptable reference test. Acceptable such tests were either compression ultrasonography or venography at initial presentation, or, if venous imaging was not performed, an uneventful follow-up for at least three months.

Examples

Run this code
# NOT RUN {
data(DVTipd)
str(DVTipd) 
summary(apply(DVTipd,2,as.factor))

## Develop a prediction model to predict presence of DVT
model.dvt <- glm("dvt~sex+oachst+malign+surg+notraum+vein+calfdif3+ddimdich", 
                  family=binomial, data=DVTipd)
summary(model.dvt)
# }

Run the code above in your browser using DataLab