The workbch (“work bench”) package provides simple utility functions to help the R user keep track of projects and navigate between them. The package is designed around the concept of jobs, where a job might correspond to an RStudio project, a git repository, a research project or indeed all of the above. Jobs are assumed to be stored in a single folder, but can be associated with URLs (e.g., on GitHub, Overleaf, OSF, or elsewhere). The package is intended to be used interactively, though most functions can be called programmatically.
The workbch package has not been released on CRAN. You can install the development version from GitHub with:
The package consists of nine functions. Three functions are used to create, modify, and delete jobs
job_create()
. Create a new jobjob_modify()
. Modify or delete an existing jobjob_seek()
. Scans a directory recursively to find jobsThere are three functions that are useful for navigation:
job_open()
. Opens an RStudio project or changes working directoryjob_openurl()
. Opens a URL associated with a job in a browser windowjob_home()
. Returns the path to the job folderThere are three functions that are useful for keeping track of projects:
job_gitreport()
. Shows the git status of all jobsjob_glimpse()
. Shows all information stored about a jobjob_list()
. Displays a table summarising all jobs, or a subset of them.