Description Usage Arguments Details Value Examples
View source: R/m4_dimensions.R
This function provides base access to the d_icd_procedures table which defines concepts recorded in the procedures_icd table in the hospital module.
1  | m4_d_icd_procedures(con, ...)
 | 
con | 
 A   | 
... | 
 additional optional passed along parameters.  | 
Table attributes for d_icd_procedures table:
(PKEY icd_code, icd_version) reference data for procedures_icd table
a tibble with the results.
1 2 3 4 5 6 7 8 9 10 11 12 13  | # To run examples, you must have the BIGQUERY_TEST_PROJECT environment
# variable set to name of project which has billing set up and to which
# you have write access.
con <- bigrquery::dbConnect(
  bigrquery::bigquery(),
  project = bigrquery::bq_test_project(),
  quiet = TRUE
)
tab <- m4_d_icd_procedures(con)
tab
bigrquery::dbDisconnect(con)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.