Description Usage Arguments Details Value Author(s) Examples
Save a tibble/data.frame to an excel .xlsx
file. The file will automatically
with a save_dtime in the format of 20201109_132416 for November 11th, 2020
at 1:24:16PM.
1 | save_to_excel(.data, .file_name)
|
.data |
The tibble/data.frame that you want to save as an |
.file_name |
the name you want to give to the file. |
Requires a tibble/data.frame to be passed to it.
A saved excel file
Steven P. Sanderson II, MPH
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Not run:
coded_consults_query(.resp_pty = "013789") %>%
save_to_excel(.file_name = "coded_consults")
coded_consults_query(.resp_pty = "013789") %>%
coded_consults_top_providers_tbl(
.top_n = 10
, .attending_col = attending_md
, .consultant_col = consultant
) %>%
save_to_excel(.file_name = "coded_consults")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.