Description Usage Arguments Value Examples
Function to perform a basic SELECT *
from the noted table projected down by the optional
where clause.
1 | m4_get_from_table(con, table, where = NULL)
|
con |
A |
table |
a character string representing a valid MIMIC-IV table name. |
where |
an optional character string representing a SQL |
a tibble with the results.
1 2 3 4 5 6 7 8 9 10 11 12 | # 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
)
m4_get_from_table(con, "d_items", where = "where itemid <= 220048")
bigrquery::dbDisconnect(con)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.