Description Usage Arguments Details Value Functions Examples
View source: R/import_eso_functions.R
Works with consistent naming conventions to
simplify importing the monthly data table export.
See vignette("importing-pcrs")
for more information.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import_eso_data(year, month = FALSE, table_name)
import_personnel(year, month = FALSE)
import_patients(year, month = FALSE)
import_incidents_by_time(start, end)
import_treatments(year, month = FALSE)
import_stroke(year, month = FALSE)
import_narrative(year, month = FALSE)
import_cpr(year, month = FALSE)
|
year |
Year of data set as "YYYY" string |
month |
Month of data set as "MM" string, or FALSE to look for full year. |
table_name |
string of table name to find file. |
Requires file_root to be present in the environment.
Tibble with imported data
tibble of imported data
import_personnel
: Imports the crew information table.
import_patients
: Imports the patient information table and adds calculated age and age range.
import_incidents_by_time
: Imports vital sign records
import_treatments
: Imports complete treatment set
import_stroke
: Imports Stroke Form Data
import_narrative
: Import Narrative
import_cpr
: Imports CPR table
1 2 | import_eso_data("2020", "02", "Personnel") # Imports one month
import_eso_data("2020", FALSE, "Personnel") # Imports an entire year
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.