
Last chance! 50% off unlimited learning
Sale ends in
Perform common operations before running a script. Includes clearing environment objects, disabling scientific notation, loading common packages, and setting the working directory to the location of the current file.
begin(
wd = NULL,
load = c("magrittr", "dplyr"),
keep = NULL,
scipen = FALSE,
verbose = TRUE,
repos = "http://cran.us.r-project.org"
)
Path to set as working directory. If blank, the location of the current file open in RStudio will be used if available. If FALSE, the working directory will not be changed.
Packages to load. If not available, they'll be installed.
Environment objects to keep. If blank, all objects will be removed from the environment.
Do scientific notation in output?
Print information about what the function is doing?
choose the URL to install from.