| DVTipd {metamisc} | R Documentation |
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)
Format
A data frame with 500 observations of 16 variables.
sexgender (0=female, 1=male)
malignactive malignancy (0=no active malignancy, 1=active malignancy)
parparesis (0=no paresis, 1=paresis)
surgrecent surgery or bedridden
tendtenderness venous system
oachstoral contraceptives or hst
legentire leg swollen
notraumabsence of leg trauma
calfdif3calf difference >= 3 cm
pitpitting edema
veinvein distension
altdiagnalternative diagnosis present
histdvthistory of previous DVT
ddimdichdichotimized D-dimer value
dvtfinal diagnosis of DVT
studystudy indicator
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.
Source
Geersing GJ, Zuithoff NPA, Kearon C, Anderson DR, Ten Cate-Hoek AJ, Elf JL, et al. Exclusion of deep vein thrombosis using the Wells rule in clinically important subgroups: individual patient data meta-analysis. BMJ. 2014;348:g1340.
Examples
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)