Example death records dataset with ICD11 cause-of-death coding
Format
A data frame with 6 columns and 244 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 | ICD11 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
icd11_example
#> # A tibble: 244 × 6
#> freeid Sex `Age value` `Age type` Code `Death date`
#> <dbl> <dbl> <dbl> <chr> <chr> <dbl>
#> 1 10001 2 6 Y "1A40.0" 2019
#> 2 10002 2 115 Y "1B10.0" 2019
#> 3 10003 2 115 Y "1B10.1" 2019
#> 4 10004 1 115 Y "1B10.Z" 2019
#> 5 10005 2 114 Y "1B11.0" 2019
#> 6 10006 2 115 Y "1B1Z " 2019
#> 7 10007 2 114 Y "1B1Z " 2019
#> 8 10008 1 109 Y "1B53 " 2019
#> 9 10009 1 109 Y "1B7Y " 2019
#> 10 10010 2 109 Y "1C60.Z" 2019
#> # ℹ 234 more rows