Example death records dataset with ICD10 cause-of-death coding
Format
A data frame with 6 columns and 3613 rows:
Variable | Description |
FreeId | Record identifier |
Sex | Sex: 1 = Male; 2 = Female; 9 = unknown |
Age Value | Integer value for age |
Age Type | Is the age value in days (D), months (M), or years (Y) |
Code | ICD10 code for cause-of-death |
Death Date | Date of death in year format |
Source
https://www.who.int/standards/classifications/classification-of-diseases/services/codedit-tool
Examples
icd10_example
#> # A tibble: 3,613 × 6
#> FreeId Sex `Age Value` `Age Type` Code `Death Date`
#> <chr> <dbl> <dbl> <chr> <chr> <dbl>
#> 1 XX0001 2 0 D P219 2010
#> 2 XX0002 1 0 D P015 2010
#> 3 XX0003 2 0 D P015 2010
#> 4 XX0004 1 0 D P021 NA
#> 5 XX0005 2 5 D O230 2010
#> 6 XX0006 1 0 D P011 2010
#> 7 XX0007 1 0 D Q913 2010
#> 8 XX0008 1 1 D P220 2010
#> 9 XX0009 2 1 D Q790 2010
#> 10 XX0010 1 0 D P027 2010
#> # ℹ 3,603 more rows