Learn R Programming

touch (version 0.1-6)

cmbd: Comorbidity measures from AHRQ HCUP

Description

This function maps a matrix of ICD9 codes to AHRQ comorbidity measures.

Usage

cmbd(icd, drg = NULL, needClean = TRUE, needPrep = TRUE)

Value

a matrix with the same number of rows as the input and with the comorbidity measures in columns

Arguments

icd

a character matrix of icd9 codes, with rows representing patients.

drg

a numeric vector of drg codes, with length the same as nrow(icd).

needClean

logical, TRUE means cleaning is needed (string trimming, zero supplementation)

needPrep

logical, TRUE means preparation is needed (convert char to numeric)

Author

Jun Yan

References

Elixhauser et. al. (1998)

Examples

Run this code

data(dxDat)
drg <- dxDat$drg
icd <- dxDat[, -1L]
output <- cmbd(icd, drg=drg)

Run the code above in your browser using DataLab