Description Usage Value Examples
The function returns a tibble with the table name, MIMIC module and a description (all descriptive data are referenced from the MIMIC-IV website).
1 |
a tibble containing meta data concerning MIMIC IV tables.
1 2 3 4 5 6 7 8 9 10 11 | core <- m4_meta_data()
core <- core[core$module == "mimic_core", ]
for (i in 1:length(core)) {
cat(stringr::str_c(
"select * from physionet-data.",
core[i, "module"],
".",
core[i, "table"],
"\n"
))
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.