This function maps a matrix of ICD9 codes to AHRQ comorbidity measures.
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)
Value
a matrix with the same number of rows as the input and with the comorbidity measures in columns
Examples
data(dxDat)
drg <- dxDat$drg
icd <- dxDat[, -1L]
output <- cmbd(icd, drg=drg)