A map of 283 clinical concepts to 4-character ICD codes adapted from the Clinical Classifications Software (CCS) (Healthcare Cost and Utilization Project 2020) .
ccs
A data frame with 72,446 ICD-10-CM codes mapped to CCS multilevel categories.
Adapted from (Healthcare Cost and Utilization Project 2020) for 4-character ICD-10 codes.
The Clinical Classifications Software (CCS) is a database developed as part of the Healthcare Cost and Utilization Project (HCUP) which maps ICD-10-CM codes into 283 hierarchical and mutually-exclusive CCS categories. Level-1 categories correspond to the ICD-10's 17 chapters plus two supplementary classifications:
Infectious and parasitic diseases
Neoplasms
Endocrine; nutritional; and metabolic diseases and immunity disorders
Diseases of the blood and blood-forming organs
Diseases of the nervous system and sense organs
Diseases of the circulatory system
Diseases of the respiratory system
Diseases of the digestive system
Diseases of the genitourinary system
Complications of pregnancy; childbirth; and the puerperium
Diseases of the skin and subcutaneous tissue
Diseases of the musculoskeletal system and connective tissue
Congenital anomalies
Certain conditions originating in the perinatal period
Injury and poisoning
Symptoms; signs; and ill-defined conditions and factors influencing health status
Residual codes; unclassified; all E codes [259. and 260.]
Mental Illness
This dataset can help group ICD-10 into a smaller number of mutually-exclusive categories, such as aggregating data.
Healthcare Cost and Utilization Project (2020). “Beta Versions of the Classifications Software (CCS) for ICD-10-CM Diagnoses.” www.hcup-us.ahrq.gov/toolssoftware/ccsr/ccs_refined.jsp.
For the mapping function, see map_ICD10_CCS()
. For the Clinical
Classifications Software Refined, see ccsr
.
data("ccs")
head(ccs)
#> # A tibble: 6 × 11
#> icd_code ccs_cat_code ccs_cat_desc ccs_L1_code ccs_L1_desc ccs_L2_code
#> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 A000 135 Intestinal infection 9 Diseases o… 9.1
#> 2 A001 135 Intestinal infection 9 Diseases o… 9.1
#> 3 A009 135 Intestinal infection 9 Diseases o… 9.1
#> 4 A0100 135 Intestinal infection 9 Diseases o… 9.1
#> 5 A0101 76 Meningitis (except … 6 Diseases o… 6.1
#> 6 A0102 3 Bacterial infection… 1 Infectious… 1.1
#> # ℹ 5 more variables: ccs_L2_desc <chr>, icd_code_4chars <chr>,
#> # icd_code_3chars <chr>, keep_4chars <lgl>, keep_3chars <lgl>