Description Usage Arguments Details Author(s) Examples
This will email out the Respiratory VAE file to the email specified
in the function. It is expected that the .data
parameter be filled in with the
results of the respiratory_vae_tbl()
function.
The RDCOMClient Library must be called into the namespace
first with any of the following
library(RDCOMClient)
require(RDCOMClient)
if(!require(pacman)) install.packages("pacman")
pacman::p_load("RDCOMClient")
1 | respiratory_vae_automation(.data, .delete_file = FALSE, .email)
|
.data |
The output from the tbl function |
.delete_file |
Default is FALSE, TRUE will delete file |
.email |
Provide the email address for the recipient. The email must be in double quotes like so: c("person@licommunityhospital.org;person2@licommunityhospital.org") using a semi-colon if there is more than one address. |
Takes the output from respiratory_vae_tbl()
and saves it to
an excel workbook using the writexl::write_xlsx()
function. The file is saved
to a location specified by the user and upon successful function completion the
file is deleted.
Steven P. Sanderson II, MPH
1 2 3 4 5 6 7 | ## Not run:
library(RDCOMClient)
respiratory_vae_query() %>%
respiratory_vae_tbl() %>%
respiratory_vae_automation()
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.