Description Usage Arguments Value See Also Examples
Simple table specific reference function for the ICUSTAYS table data
1 | db_get_icustays(con, ...)
|
con |
A DBIConnection object, as returned by |
... |
an optional |
a tibble with the results.
For an overview of the MIMIC-III database, see: Overview of the MIMIC-III data. For details on the ICUSTAYS table, see: The icustays table.
1 2 3 4 5 6 7 | con <- RSQLite::dbConnect(RSQLite::SQLite(), ":memory:")
ex <- tibble::tibble(SUBJECT_ID = c(10006, 10011))
RSQLite::dbWriteTable(con, "ICUSTAYS", ex)
td <- db_get_icustays(con, where = "WHERE SUBJECT_ID = 10006")
RSQLite::dbDisconnect(con)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.