Learn R Programming

neatStats (version 1.13.3)

path_neat: Script Path

Description

Gives, in RStudio, the path to the script file in which it is executed.

Usage

path_neat(subdir = "")

Value

Script file's path as string. If subdir is given, it is appended to the original path.

Arguments

subdir

String, optional. Subdirectory relative to the script's path.

Examples

Run this code

# assuming the given script is at path "C:/script_folder/"
path_neat('') # returns "C:/script_folder/"
path_neat('my_subdir/misc/') # returns "C:/script_folder/my_subdir/misc/"

# Note: the returned string can be used as argument for base::setwd()
# e.g. setwd( path_neat() ) # sets working directory to the script's path

Run the code above in your browser using DataLab