You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The goal of the here package is to enable easy file referencing in
project-oriented workflows. In
contrast to using setwd(), which is fragile and dependent on the way
you organize your files, here uses the top-level directory of a project
to easily build paths to files.
Installation
Install the released version of here from CRAN:
install.packages("here")
Usage
The here package creates paths relative to the top-level directory. The
package displays the top-level of the current project on load or any
time you call here():
here::i_am("README.Rmd")
#> here() starts at /Users/kirill/git/R/r-lib/here
here()
#> [1] "/Users/kirill/git/R/r-lib/here"
You can build a path relative to the top-level directory in order to
read or write a file:
These relative paths work regardless of where the associated source file
lives inside your project, like analysis projects with data and reports
in different subdirectories. See the included demo
project for
an example.