setsource | R Documentation |
This function sets the working directory to the source file location
(i.e., path of the current R script) in RStudio and is equivalent to using the
menu item Session - Set Working Directory - To Source File Location
.
Note that the R script needs to have a file location before this function can
be used.
setsource(path = TRUE, check = TRUE)
path |
logical: if |
check |
logical: if |
Returns the path of the source file location.
This function uses the documentPath()
function in the
rstudioapi package by Kevin Ushey, JJ Allaire, Hadley Wickham, and Gary
Ritchie (2023).
Takuya Yanagida takuya.yanagida@univie.ac.at
Ushey, K., Allaire, J., Wickham, H., & Ritchie, G. (2023). rstudioapi: Safely access the RStudio API. R package version 0.15.0 https://CRAN.R-project.org/package=rstudioapi
script.close
, script.new
, script.open
,
script.save
## Not run:
# Example 1: Set working directory to the source file location
setsource()
# Example 2: Set working directory to the source file location
# and assign path to an object
path <- setsource()
path
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.