Yearly summary of SNOMED CT code usage from 1st August 2011 to 31st July 2025. The variables in this dataset include:
Format
A data frame with 1,682,534 rows and 7 columns:
- start_date
Start date of code usage count
- end_date
End date of code usage count
- snomed_code
SNOMED Concept ID
- usage
Yearly summary of code usage. Note that counts are rounded to the nearest 10. Counts of 5 or below are displayed as 5.
- active_at_start
Specifying whether code was active at the start date.
- active_at_end
Specifying whether code was active at the end date.
- description
Description of SNOMED Concept ID
Examples
# Filter for code usage records from 2022-08-01 onwards
snomed_usage |>
dplyr::filter(start_date >= "2022-08-1")
#> # A tibble: 465,455 × 7
#> start_date end_date snomed_code description usage active_at_start
#> <date> <date> <chr> <chr> <int> <lgl>
#> 1 2024-08-01 2025-07-31 279991000000102 Short message … 4.27e8 TRUE
#> 2 2024-08-01 2025-07-31 184103008 Patient teleph… 2.77e8 TRUE
#> 3 2024-08-01 2025-07-31 423876004 Clinical docum… 8.83e7 TRUE
#> 4 2024-08-01 2025-07-31 72313002 Systolic arter… 7.06e7 TRUE
#> 5 2024-08-01 2025-07-31 1091811000000102 Diastolic arte… 7.06e7 TRUE
#> 6 2024-08-01 2025-07-31 1068881000000101 eConsultation … 6.17e7 TRUE
#> 7 2024-08-01 2025-07-31 60621009 Body mass inde… 5.08e7 TRUE
#> 8 2024-08-01 2025-07-31 1000731000000107 Serum creatini… 5.02e7 TRUE
#> 9 2024-08-01 2025-07-31 27113001 Body weight (o… 4.89e7 TRUE
#> 10 2024-08-01 2025-07-31 1000661000000107 Serum sodium l… 4.83e7 TRUE
#> # ℹ 465,445 more rows
#> # ℹ 1 more variable: active_at_end <lgl>
# Filter for code usage records from 2022-08-01 onwards
# where the description contains the word "anxiety"
snomed_usage |>
dplyr::filter(start_date >= "2022-08-1") |>
dplyr::filter(grepl("anxiety", description, ignore.case = TRUE))
#> # A tibble: 500 × 7
#> start_date end_date snomed_code description usage active_at_start
#> <date> <date> <chr> <chr> <int> <lgl>
#> 1 2024-08-01 2025-07-31 231504006 Mixed anxiety a… 2.46e6 TRUE
#> 2 2024-08-01 2025-07-31 445455005 Generalized Anx… 1.26e6 TRUE
#> 3 2024-08-01 2025-07-31 197480006 Anxiety disorde… 1.25e6 TRUE
#> 4 2024-08-01 2025-07-31 836571000000106 Generalised anx… 7.01e5 TRUE
#> 5 2024-08-01 2025-07-31 48694002 Anxiety (findin… 5.95e5 TRUE
#> 6 2024-08-01 2025-07-31 198288003 Anxiety state (… 5.20e5 TRUE
#> 7 2024-08-01 2025-07-31 21897009 Generalized anx… 1.56e5 TRUE
#> 8 2024-08-01 2025-07-31 908501000000101 Anxiety screeni… 1.10e5 TRUE
#> 9 2024-08-01 2025-07-31 286644009 Level of anxiet… 6.71e4 TRUE
#> 10 2024-08-01 2025-07-31 161470009 History of anxi… 4.76e4 TRUE
#> # ℹ 490 more rows
#> # ℹ 1 more variable: active_at_end <lgl>