library(icd)
head(uranium_pathology, 10)
#> case icd10
#> 1 1 F17.9
#> 2 1 I21.9
#> 3 1 K75.9
#> 4 1 R55
#> 5 2 I25.1
#> 6 2 I35.8
#> 7 2 I63.9
#> 8 2 I64
#> 9 2 J43.9
#> 10 2 J84.1
head(comorbid_charlson(uranium_pathology))
#> MI CHF PVD Stroke Dementia Pulmonary Rheumatic PUD LiverMild
#> 1 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
#> 2 FALSE FALSE FALSE TRUE FALSE TRUE FALSE FALSE FALSE
#> 3 TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
#> 4 FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
#> 5 FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
#> 6 TRUE FALSE TRUE FALSE FALSE TRUE FALSE FALSE FALSE
#> DM DMcx Paralysis Renal Cancer LiverSevere Mets HIV
#> 1 FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
#> 2 FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
#> 3 FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
#> 4 FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
#> 5 FALSE FALSE FALSE FALSE FALSE FALSE TRUE FALSE
#> 6 FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
comorbid_charlson(uranium_pathology,
return_df = TRUE,
return_binary = TRUE)[1:5, 1:5]
#> case MI CHF PVD Stroke
#> 1 1 1 0 0 0
#> 2 2 0 0 0 1
#> 3 3 1 0 0 0
#> 4 4 0 0 0 0
#> 5 5 0 0 0 0
hist(charlson(uranium_pathology),
main = "Histogram of Charlson scores in Uranium data",
xlab = "Charlson Score")
Calculate comorbidities, Charlson and van Walraven scores, perform fast and accurate validation, conversion, manipulation, filtering and comparison of ICD-9 and ICD-10 codes. This package enables a work flow from raw lists of ICD codes in hospital databases to comorbidities. ICD-9 and ICD-10 comorbidity mappings from Quan (Deyo and Elixhauser versions), Elixhauser and AHRQ included. Common ambiguities and code formats are handled.
This package is what you need to generate data for ‘Table 1’ of your prospective or retrospective study.
When calculating which patients have which comorbidities, the data are typically structured in long or wide formats:
# long format ICD-9-CM codes, with present-on-arrival flags
patients_icd9
#> visit_id icd9 poa
#> 1 1000 40201 Y
#> 2 1000 2258 <NA>
#> 3 1000 7208 N
#> 4 1000 25001 Y
#> 5 1001 34400 X
#> 6 1001 4011 Y
#> 7 1002 4011 E
# long format ICD-10 codes, real mortality data
uranium_pathology[1:5, ]
#> case icd10
#> 1 1 F17.9
#> 2 1 I21.9
#> 3 1 K75.9
#> 4 1 R55
#> 5 2 I25.1
# wide format, real ICD-9 discharge diagnoses
vermont_dx[1:5, c(1, 6:15)]
#> visit_id DX1 DX2 DX3 DX4 DX5 DX6 DX7 DX8 DX9 DX10
#> 1 7 27801 03842 51881 41519 99591 42842 5849 5609 6826 5853
#> 2 10 71526 25000 42830 4280 4019 4241 311 49390 2724 73300
#> 3 13 71535 59651 78052 27800 V8537 311 4019 53081 56400
#> 4 16 71535 49390 53081 27800 V140 V141 V142 V160 V8538
#> 5 37 71536 4241 2859 2720 4414 53081 V5866
In real life, there are often problems with the data, such as NA
values, out-of-order visit_id
s, non-existent or invalid ICD codes, etc.. Although standard R tools or the tidyverse
can be used to clean the data, knowing the specific validation rules for ICD-9 and ICD-10 codes, as well as the standardized structure of healthcare data enables faster and more accurate data cleaning.
# use AHRQ revision of Elixhauser comorbidities, show only first eight columns
comorbid_ahrq(patients_icd9)[, 1:8]
#> CHF Valvular PHTN PVD HTN Paralysis NeuroOther Pulmonary
#> 1000 TRUE FALSE FALSE FALSE TRUE FALSE FALSE FALSE
#> 1001 FALSE FALSE FALSE FALSE TRUE TRUE FALSE FALSE
#> 1002 FALSE FALSE FALSE FALSE TRUE FALSE FALSE FALSE
Things work beautifully using magrittr %>%
to chain functions together. magrittr
is useful for chains of commands, such as the following:
# find Elixhauser comorbidities which were present-on-arrival
patients_icd9 %>% filter_poa %>% comorbid_elix
#> CHF Arrhythmia Valvular PHTN PVD HTN Paralysis NeuroOther
#> 1000 FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
#> 1001 FALSE FALSE FALSE FALSE FALSE TRUE FALSE FALSE
#> Pulmonary DM DMcx Hypothyroid Renal Liver PUD HIV Lymphoma
#> 1000 FALSE TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
#> 1001 FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
#> Mets Tumor Rheumatic Coagulopathy Obesity WeightLoss FluidsLytes
#> 1000 FALSE FALSE FALSE FALSE FALSE FALSE FALSE
#> 1001 FALSE FALSE FALSE FALSE FALSE FALSE FALSE
#> BloodLoss Anemia Alcohol Drugs Psychoses Depression
#> 1000 FALSE FALSE FALSE FALSE FALSE FALSE
#> 1001 FALSE FALSE FALSE FALSE FALSE FALSE
# same as above, then summarize five columns:
patients_icd9 %>%
filter_poa %>%
comorbid_elix %>%
extract(, 5:10) %>%
colSums
#> PVD HTN Paralysis NeuroOther Pulmonary DM
#> 0 1 0 0 0 1
# convert vermont discharge data to wide format,
# find comorbidities, convert TRUE to 1 and show first few
vermont_cmb <- vermont_dx %>% wide_to_long %>%
icd9_comorbid_quan_deyo %>%
apply(2, as.integer) # convert logical to integer
head(vermont_cmb)
#> MI CHF PVD Stroke Dementia Pulmonary Rheumatic PUD LiverMild DM DMcx
#> [1,] 0 1 0 0 0 0 0 0 0 0 0
#> [2,] 0 1 0 0 0 1 0 0 0 1 0
#> [3,] 0 0 0 0 0 0 0 0 0 0 0
#> [4,] 0 0 0 0 0 1 0 0 0 0 0
#> [5,] 0 0 1 0 0 0 0 0 0 0 0
#> [6,] 0 0 0 0 0 0 0 0 0 0 0
#> Paralysis Renal Cancer LiverSevere Mets HIV
#> [1,] 0 1 1 0 0 0
#> [2,] 0 0 0 0 0 0
#> [3,] 0 0 0 0 0 0
#> [4,] 0 0 0 0 0 0
#> [5,] 0 0 0 0 0 0
#> [6,] 0 0 0 0 0 0
barplot(colSums(vermont_cmb[, 1:5]),
main = "Incidence of Elixhauser Comorbidities in Vermont data")
The above can be rewritten in classic R with many parentheses:
head(apply(icd9_comorbid_quan_deyo(wide_to_long(vermont_dx)), 2, as.integer))
icd
will guess the type and form of input data when possible, but there are sometimes ambiguities when ICD-9 and ICD-10 codes are mixed.
is_valid("100") # valid ICD-9 code
#> [1] TRUE
is_valid("A1001") # valid ICD-10 code
#> [1] TRUE
is_valid(c("100", "A1001")) # they can't both be valid
#> [1] TRUE FALSE
You can let icd
guess types, or specify the type of your data explicitly:
# decimal format ICD-10 codes
codes <- c("A10.01", "L40.50", "Z77.098")
# set class to be icd10cm (and implicitly icd10)
as.icd10cm(codes)
#> [1] "A10.01" "L40.50" "Z77.098"
# indicate decimal code and icd10 (not necessarily icd10cm)
codes %>% as.decimal_diag %>% as.icd10
#> [1] "A10.01" "L40.50" "Z77.098"
Doing this avoids mistakes in guessing type. For example code V10
is valid in both ICD-9 and ICD-10.
ICD codes are usually presented in decimal format (beware, for this is not a number), e.g., the ICD-9 code 003.21
, or ICD-10 code T81.10XD
, whereas most electronic records seem to use the short form without a decimal place. These are not interchangeable simply by removing the decimal place, and great care is taken to do this correctly. Most ICD-9 codes do not have a letter prefix, so there is possible ambiguity here. icd was designed to deal with the common problem of incorrectly formatted ICD codes. The assumption is made that short codes of three or fewer characters are describing only the ‘major’ part: there is no other reasonable interpretation. For example, 020
must be taken to mean 20
, not 2.0
or even 0.20
. In most cases, when icd works on ICD-9 codes, it will convert any codes of fewer than three characters into zero-padded three-digit codes.
decimal_to_short(c("1", "10.20", "100", "123.45"))
#> [1] "001" "01020" "100" "12345"
short_to_decimal(c("1", "22", "2244", "1005"))
#> [1] "001" "022" "224.4" "100.5"
# similar operations with magrittr, also showing invalid codes
codes <- as.icd9(c("87.65", "9999", "Aesop", -100, "", NA))
decimal_to_short(codes)
#> [1] "08765" "" "" "" "" NA
# ICD-10
decimal_to_short("T81.10XD")
#> [1] "T8110XD"
# guess both ICD version (9, but could be 10?), and decimal vs short form
is_valid("V10.2")
#> [1] TRUE
# state we are using short or decimal codes:
is_valid(c("099.17", "-1"), short_code = TRUE)
#> [1] FALSE FALSE
is_valid(c("099.17", "-1.1"), short_code = FALSE)
#> [1] TRUE FALSE
is_valid(c("1", "001", "100", "123456", "003.21"), short_code = TRUE)
#> [1] TRUE TRUE TRUE FALSE FALSE
There are various ways of extracting the description of the condition described by an ICD-9 code. the explain group of functions return a data frame with a column for the ICD-9 code, a column for the full length Diagnosis, and a column for the short Description.
explain_code("1.0") # 'decimal' format code inferred
#> [1] "Cholera due to vibrio cholerae"
explain_code("0019") # 'short' format code inferred
#> [1] "Cholera, unspecified"
# we can be explicit about short vs decimal
explain_code("434.00", short_code = FALSE)
#> [1] "Cerebral thrombosis without mention of cerebral infarction"
explain_code(c("43410", "43491"), short_code = TRUE)
#> [1] "Cerebral embolism without mention of cerebral infarction"
#> [2] "Cerebral artery occlusion, unspecified with cerebral infarction"
#explain top level code with children
"391" %>% explain_code # single three-digit code
#> [1] "Rheumatic fever with heart involvement"
"391" %>% children # let's see the child codes
#> [1] "391" "3910" "3911" "3912" "3918" "3919"
"391" %>% children %>% explain_code # children condensed to parent code
#> [1] "Rheumatic fever with heart involvement"
"391" %>% children %>% explain_code(condense = FALSE) # prevent condense
#> [1] "Rheumatic fever with heart involvement"
#> [2] "Acute rheumatic pericarditis"
#> [3] "Acute rheumatic endocarditis"
#> [4] "Acute rheumatic myocarditis"
#> [5] "Other acute rheumatic heart disease"
#> [6] "Acute rheumatic heart disease, unspecified"
Arbitrary named list(s) of codes:
explain_code(list(somecodes = as.icd9(c("001", "391")),
morecodes = as.icd9cm(c("001.1", "001.9"))))
#> $somecodes
#> [1] "Cholera"
#> [2] "Rheumatic fever with heart involvement"
#>
#> $morecodes
#> [1] "Cholera due to vibrio cholerae el tor"
#> [2] "Cholera, unspecified"
001
(Cholera) isn’t itself a diagnostic code, i.e. leaf node in the hierarchy, but 390
(Rheumatic fever without heart involvement) is. Both are explained correctly:
explain_code(list(cholera = "001", rheumatic_heart = "390"))
#> $cholera
#> [1] "Cholera"
#>
#> $rheumatic_heart
#> [1] "Rheumatic fever without mention of heart involvement"
Now try to explain on a non-existent (but ‘valid’) ICD-9 code:
s <- explain_code("001.5") # gives warning
As we have just seen, explain_code
can convert lists of ICD-9 or ICD-10 codes to a human-readable format. Let’s apply the explain_code
to a list of comorbidity ICD-9 codes in one of the commonly-used mappings. This makes comprehending a complicated list much easier. Taking the list for dementia:
length(icd9_map_quan_deyo[["Dementia"]]) # 133 possible ICD-9 codes
#> [1] 133
length(icd10_map_quan_deyo[["Dementia"]]) # the ICD-10 map is different
#> [1] 20
# explain_code summarizes these to just two groups:
icd9_map_quan_deyo[["Dementia"]] %>% explain_code(warn = FALSE)
#> [1] "Dementias"
#> [2] "Dementia in conditions classified elsewhere"
#> [3] "Senile degeneration of brain"
# contrast with:
icd9_map_quan_deyo[["Dementia"]] %>% explain_code(condense = TRUE, warn = FALSE)
#> [1] "Dementias"
#> [2] "Dementia in conditions classified elsewhere"
#> [3] "Senile degeneration of brain"
Use a range with more than two hundred ICD-9 codes (most of them not real):
length("390" %i9da% "392.1")
#> [1] 244
"390" %i9da% "392.1" %>% explain_code(warn = FALSE)
#> [1] "Rheumatic fever without mention of heart involvement"
#> [2] "Rheumatic fever with heart involvement"
#> [3] "Rheumatic chorea with heart involvement"
The warnings here are irrelevant because we know that `%i9da% produces codes which do not correspond to diagnoses. However, in other usage, the user would typically expect the ICD-9 codes he or she is using to be diagnostic, hence the default to warn.
This flag is recorded with each ICD-9 code, indicating whether that diagnosis was present on admission. With some caution, codes flagged specifically not POA can be treated as new diseases during an admission.
Present-on-arrival (POA) is typically a factor, or vector of values such as “Y”, “N”, “X”, “E”, or NA. Intermediate codes, such as “exempt”, “unknown” and NA mean that “yes” is not the same as “not no.” This requires four functions to cover the possibilities stored in poa_choices
:
#> [1] "yes" "no" "notYes" "notNo"
Filter for present-on-arrival being “Y”
patients_icd9 %>% filter_poa_yes
#> visit_id icd9
#> 1 1000 40201
#> 4 1000 25001
#> 6 1001 4011
Show that yes is not equal to not no (e.g. due to NA in poa
field)
patients_icd9 %>% filter_poa_not_no
#> visit_id icd9
#> 1 1000 40201
#> 2 1000 2258
#> 4 1000 25001
#> 5 1001 34400
#> 6 1001 4011
#> 7 1002 4011
The comorbidities from different sources are provided as lists. At present only the most recent mapping of ICD-9 codes to comorbidities is provided. See these github issues.
This package contains ICD-9-CM to comorbidity mappings from several sources, based on either the Charlson or Elixhauser lists of comorbidities. Updated versions of these lists from AHRQ and Quan et al are included, along with the original Elixhauser mapping . Since some data is provided in SAS source code format, this package has internal functions to parse this SAS source code and generate R data structures. This processing is limited to what is needed for this purpose, although may be generalizable and useful in other contexts. Other lists are transcribed directly from the published articles, but interpretation of SAS code used for the original publications is preferable.
The AHRQ keeps an updated version of the Elixhauser classification of ICD-9-CM codes into comorbidities, useful for research. They provide the data in the form of SAS code [@AgencyforHealthcareResearchandQuality_Elixhausercomorbiditysoftware_2018]. The names of the comorbidities derived from ICD-9 and ICD-10 codes are the same. Maps contain the ICD code to comorbidity mappings; the functions that apply those mappings are called things like icd10_comorbid_ahrq
.
names(icd9_map_ahrq)
#> [1] "CHF" "Valvular" "PHTN" "PVD"
#> [5] "HTN" "HTNcx" "Paralysis" "NeuroOther"
#> [9] "Pulmonary" "DM" "DMcx" "Hypothyroid"
#> [13] "Renal" "Liver" "PUD" "HIV"
#> [17] "Lymphoma" "Mets" "Tumor" "Rheumatic"
#> [21] "Coagulopathy" "Obesity" "WeightLoss" "FluidsLytes"
#> [25] "BloodLoss" "Anemia" "Alcohol" "Drugs"
#> [29] "Psychoses" "Depression"
icd9_map_ahrq$CHF[1:5]
#> [1] "39891" "40201" "40211" "40291" "40401"
icd10_map_ahrq$CHF[1:5]
#> [1] "I0981" "I501" "I5020" "I5021" "I5022"
Elixhauser originally devleoped this set of comorbidities to predict long term mortality based on hospital ICD-9-CM coding records [@elixhauser_comorbidity_1998]. The AHRQ comorbidities are an updated version of this, however the original Elixhauser have been used in many publications.
# the names of the comorbidities in each map are available as named lists:
names_elix[1:5]
#> $`01`
#> [1] "Congestive heart failure"
#>
#> $`02`
#> [1] "Cardiac arrhythmias"
#>
#> $`03`
#> [1] "Valvular disease"
#>
#> $`04`
#> [1] "Pulmonary circulation disorders"
#>
#> $`05`
#> [1] "Peripheral vascular disorders"
unlist(unname(names_elix))
#> [1] "Congestive heart failure"
#> [2] "Cardiac arrhythmias"
#> [3] "Valvular disease"
#> [4] "Pulmonary circulation disorders"
#> [5] "Peripheral vascular disorders"
#> [6] "Hypertension, combined"
#> [7] "Paralysis"
#> [8] "Other neurological disorders"
#> [9] "Chronic pulmonary disease"
#> [10] "Diabetes, uncomplicated"
#> [11] "Diabetes, complicated"
#> [12] "Hypothyroidism"
#> [13] "Renal failure"
#> [14] "Liver disease"
#> [15] "Peptic ulcer disease excluding bleeding"
#> [16] "HIV/AIDS"
#> [17] "Lymphoma"
#> [18] "Metastatic cancer"
#> [19] "Solid tumor without metastasis"
#> [20] "Rheumatoid arthritis/collagen vascular diseases"
#> [21] "Coagulopathy"
#> [22] "Obesity"
#> [23] "Weight loss"
#> [24] "Fluid and electrolye disorders"
#> [25] "Blood loss anemia"
#> [26] "Deficiency anemias"
#> [27] "Alcohol abuse"
#> [28] "Drug abuse"
#> [29] "Psychoses"
#> [30] "Depression"
# The map contents have ICD codes with the class set
icd9_map_elix$HTNcx
#> [1] "40210" "40290" "40410" "40490" "40511" "40519" "40591" "40599"
icd10_map_elix$HTNcx
#> [1] "I11" "I12" "I13" "I15"
In a classic paper, Quan [@quan_updating_2011] paper looked at indices using both ICD-10 and ICD-9-CM. Quan generated updated ICD-9-CM codes for all 30 of Elixhauser and all 17 of Charlson/Deyo’s comorbidities. Thus there are two ‘Quan’ comorbidity mappings.
names(icd10_map_quan_deyo)
#> [1] "MI" "CHF" "PVD" "Stroke" "Dementia"
#> [6] "Pulmonary" "Rheumatic" "PUD" "LiverMild" "DM"
#> [11] "DMcx" "Paralysis" "Renal" "Cancer" "LiverSevere"
#> [16] "Mets" "HIV"
names(icd10_map_quan_elix)
#> [1] "CHF" "Arrhythmia" "Valvular" "PHTN"
#> [5] "PVD" "HTN" "HTNcx" "Paralysis"
#> [9] "NeuroOther" "Pulmonary" "DM" "DMcx"
#> [13] "Hypothyroid" "Renal" "Liver" "PUD"
#> [17] "HIV" "Lymphoma" "Mets" "Tumor"
#> [21] "Rheumatic" "Coagulopathy" "Obesity" "WeightLoss"
#> [25] "FluidsLytes" "BloodLoss" "Anemia" "Alcohol"
#> [29] "Drugs" "Psychoses" "Depression"
Take my patients, find the ones where there definitely or maybe was a diagnosis present on admission, then generate comorbidities based on the AHRQ mapping. N.b. NotNo
is not the same as Yes
because of some exempt, unclassifiable conditions, or NA
values for the present-on-admission flag.
patients_icd9 %>%
filter_poa_not_no %>%
icd9_comorbid_ahrq %>%
extract(1:9)
#> [1] TRUE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
We will find the differences between some categories of the original Elixhauser and the updated version by Quan. Just taking the select few comorbidity groups for brevity:
difference <- diff_comorbid(icd9_map_elix, icd9_map_quan_elix,
all_names = c("CHF", "PHTN", "HTN", "Valvular"))
#> Comorbidity CHF:
#> icd9_map_quan_elix has 70 codes not in icd9_map_elix. First few are: 'Heart failure' 'Mal hypert hrt dis w hf' 'Mal hyp ht/kd I-IV w hf' 'Mal hyp ht/kd stg V w hf' 'Prim cardiomyopathy NEC'
#> Comorbidity PHTN:
#> icd9_map_quan_elix has 45 codes not in icd9_map_elix. First few are: 'Acute pulmonary heart disease' 'Chronic pulmonary heart disease' 'Arterioven fistu pul ves' 'Pulmon circulat dis NEC'
#> Comorbidity HTN:
#> icd9_map_quan_elix has 89 codes not in icd9_map_elix. First few are: 'Essential hypertension'
#> Comorbidity Valvular:
#> icd9_map_quan_elix has 106 codes not in icd9_map_elix. First few are: 'Diseases of mitral valve' 'Diseases of other endocardial structures' 'Other diseases of endocardium' 'Syphilitic endocarditis'
# reuslts also returned as data
str(difference)
#> List of 4
#> $ CHF :List of 3
#> ..$ both : chr [1:117] "39891" "40211" "40291" "40411" ...
#> ..$ only.x: chr(0)
#> ..$ only.y: chr [1:70] "40201" "40401" "40403" "4254" ...
#> $ PHTN :List of 3
#> ..$ both : chr [1:121] "4160" "41600" "41601" "41602" ...
#> ..$ only.x: chr(0)
#> ..$ only.y: chr [1:45] "4150" "41500" "41501" "41502" ...
#> $ HTN :List of 3
#> ..$ both : chr [1:22] "4011" "40110" "40111" "40112" ...
#> ..$ only.x: chr(0)
#> ..$ only.y: chr [1:89] "401" "4010" "40100" "40101" ...
#> $ Valvular:List of 3
#> ..$ both : chr [1:526] "09320" "09321" "09322" "09323" ...
#> ..$ only.x: chr(0)
#> ..$ only.y: chr [1:106] "0932" "09325" "09326" "09327" ...
Which pulmonary hypertension codes are only in Quan’s version?
difference$PHTN$only.y %>% get_defined %>% explain_code
#> [1] "Acute pulmonary heart disease"
#> [2] "Chronic pulmonary heart disease"
#> [3] "Arteriovenous fistula of pulmonary vessels"
#> [4] "Other specified diseases of pulmonary circulation"
(Passing through get_defined
stops explain_code
complaining that some of the input codes don’t exist. This is because the comorbidity mappings have every possible numerical ICD-9 code, not just the official ones. Could also use warn = FALSE
option in explain_code
)
icd9cm_hierarchy[
grepl(pattern = "(heart)|(cardiac)",
x = c(icd9cm_hierarchy$long_desc, icd9cm_hierarchy$short_desc),
ignore.case = TRUE),
"code"] %>% unique -> cardiac
then explain the list, just showing the first ten:
as.icd9(cardiac) %>% explain_code(warn = FALSE) %>% head(10)
#> [1] "Malignant neoplasm of thymus, heart, and mediastinum"
#> [2] "Rheumatic fever without mention of heart involvement"
#> [3] "Rheumatic fever with heart involvement"
#> [4] "Rheumatic chorea"
#> [5] "Other rheumatic heart disease"
#> [6] "Hypertensive heart disease"
#> [7] "Hypertensive heart and chronic kidney disease"
#> [8] "Other acute and subacute forms of ischemic heart disease"
#> [9] "Other forms of chronic ischemic heart disease"
#> [10] "Acute pulmonary heart disease"
I understand that comorbiditity assignment using SAS is a lengthy business. Let’s generate 100,000 patients with a random selection of comorbidities:
# codes selected from AHRQ mapping
many_patients <- icd:::generate_random_pts(1e7)
system.time(
comorbid_ahrq(many_patients)
)[["elapsed"]]
This takes about five seconds on a 2016 8-core workstation. More detailed benchmarks can be seen comparing icd to other packages in the vignette article in this package.
The user can provide any ICD-9, ICD-10 or other code mapping to comorbidities they wish. Submissions of other peer-reviewed published mappings could be included in this package, if their license permits. Create an issue in github or email me at jack@jackwasey.com) Included in this package is a small data set called icd9_chapters
, which lists the ICD-9-CM (and indeed ICD-9) Chapters. These can easily be expanded out and used as a mapping, so instead of a comorbidity, we see which patients have codes in each chapter of the ICD-9 defintion.
names(icd9_chapters)[c(1:5, 14)]
#> [1] "Infectious And Parasitic Diseases"
#> [2] "Neoplasms"
#> [3] "Endocrine, Nutritional And Metabolic Diseases, And Immunity Disorders"
#> [4] "Diseases Of The Blood And Blood-Forming Organs"
#> [5] "Mental Disorders"
#> [6] "Congenital Anomalies"
my_map <- icd:::icd9_chapters_to_map(icd9_chapters[c(2, 5, 14)])
icd9_comorbid(patients_icd9, my_map) # no positive
#> Neoplasms Mental Disorders Congenital Anomalies
#> 1000 TRUE FALSE FALSE
#> 1001 FALSE FALSE FALSE
#> 1002 FALSE FALSE FALSE
Suppose we want to exact match only real ICD-9 codes when looking up comorbdities for some patients. E.g. if the coder accidentally omitted a trailing zero, e.g. code 003.20
(Localized salmonella infection, unspecified) might have been written as 003.2
which has a heading (Localized salmonella infections) but is not itself billable. Use of ICD-9 codes for comorbidities generally assumes the codes are either right or wrong. How do we match only real codes, for a strict interpretation of comorbidities? It’s one line or R code:
ahrq_strict <- lapply(icd9_map_ahrq, get_defined)
str(icd9_map_ahrq[1:5]) # first five of the original:
#> List of 5
#> $ CHF : 'icd9' chr [1:121] "39891" "40201" "40211" "40291" ...
#> ..- attr(*, "icd_short_diag")= logi TRUE
#> $ Valvular: 'icd9' chr [1:554] "0932" "09320" "09321" "09322" ...
#> ..- attr(*, "icd_short_diag")= logi TRUE
#> $ PHTN : 'icd9' chr [1:133] "4151" "41510" "41511" "41512" ...
#> ..- attr(*, "icd_short_diag")= logi TRUE
#> $ PVD : 'icd9' chr [1:598] "440" "4400" "44000" "44001" ...
#> ..- attr(*, "icd_short_diag")= logi TRUE
#> $ HTN : 'icd9' chr [1:33] "4011" "40110" "40111" "40112" ...
#> ..- attr(*, "icd_short_diag")= logi TRUE
str(ahrq_strict[1:5]) # and first five of the result:
#> List of 5
#> $ CHF : 'icd9' chr [1:29] "39891" "40201" "40211" "40291" ...
#> ..- attr(*, "icd_short_diag")= logi TRUE
#> $ Valvular: 'icd9' chr [1:41] "0932" "09320" "09321" "09322" ...
#> ..- attr(*, "icd_short_diag")= logi TRUE
#> $ PHTN : 'icd9' chr [1:12] "4151" "41511" "41512" "41513" ...
#> ..- attr(*, "icd_short_diag")= logi TRUE
#> $ PVD : 'icd9' chr [1:63] "440" "4400" "4401" "4402" ...
#> ..- attr(*, "icd_short_diag")= logi TRUE
#> $ HTN : 'icd9' chr [1:8] "4011" "4019" "6420" "64200" ...
#> ..- attr(*, "icd_short_diag")= logi TRUE
Note the much smaller numbers of codes in each group, now we have discarded all the ones which are not defined as diagnoses.
The ICD-9-CM scheme is structured as follows: - Chapter - Sub-chapter - Major part (three-digit codes) - sub-division (first decimal place) - sub-sub-division (second decimal place)
For most combinations of zero to nine, nothing is defined. Sometimes, nodes at one level in the hierarchy are descriptive only of their children (branch nodes), whereas some are themselves billable.
new_since_27 <- setdiff(icd9cm_billable[["32"]][["code"]],
icd9cm_billable[["27"]][["code"]]) %>% head
lost_since_27 <- setdiff(icd9cm_billable[["27"]][["code"]],
icd9cm_billable[["32"]][["code"]]) %>% tail
# we know this is an ICD-9-CM code, so declare this using nice magrittr motif:
lost_since_27 %<>% as.icd9cm
lost_since_27 %<>% as.icd9cm
# these are a few which were gained since v27
data.frame(code = new_since_27, desc = new_since_27 %>% explain_code)
#> code desc
#> 1 04141 Escherichia coli [E.coli]
#> 2 04142 Unspecified malignant neoplasm of skin of lip
#> 3 04143 Basal cell carcinoma of skin of lip
#> 4 04149 Escherichia coli [E.coli]
#> 5 17300 Unspecified malignant neoplasm of skin of lip
#> 6 17301 Basal cell carcinoma of skin of lip
# these are a few which were lost since v27
data.frame(code = lost_since_27, desc = lost_since_27 %>% explain_code)
#> code
#> 1 V122
#> 2 V138
#> 3 V191
#> 4 V251
#> 5 V403
#> 6 V854
#> desc
#> 1 Endocrine, metabolic, and immunity disorders
#> 2 Other specified diseases
#> 3 Other eye disorders
#> 4 Encounter for insertion or removal of intrauterine contraceptive device
#> 5 Other behavioral problems
#> 6 Body Mass Index 40 and over, adult
This package allows fluid, fast and accurate manipulation of ICD-9 and ICD-10 codes, especially when combined with magrittr. Suggestions, contributions and comments are welcome via github.