README.md

tidyproject

Travis-CI Build Status Coverage Status AppVeyor Build Status

Build Institutional Memory and Learning:

Memory:

Learning:

Installation

The alpha version is v0.3.2. The beta version is v0.5.2. Install the version you want with

install.packages("devtools")
devtools::install_github("tsahota/tidyproject@v0.5.2")
library(tidyproject)

Get the most recent stable release with:

devtools::install_github("tsahota/tidyproject")

Quick Tutorial

Make a project

Make a tidyproject by selecting File -> New Project -> New Directory -> New tidyproject

You should see a new directory structure. Opening the Rstudio project reconfigures default libraries to use the project library, e.g. try installing a package now:

devtools::install_github("tsahota/tidyproject")
library(tidyproject)

This package is now in your "ProjectLibrary" subdirectory. Loading packages from this tidyproject (e.g. with library), will cause packages in this specific project library load. If you want to switch projects, use Rstudio's "open project". Using setwd() is strongly discouraged.

Create a new script:

new_script("scriptname.R")

This will pre-fill some comment fields and store the script in your "Scripts" subdirectory.

Use code library

View code library with:

code_library()

Preview code with:

preview("nameofscript.R")

To get the full file path of code library files use ls_code_library. E.g.

ls_code_library("nameofscript.R")

will return a list of files matching nameofscript.R. Bring code into your project by staging and then importing:

ls_code_library("nameofscript.R") %>%
  stage() %>%
  import()

This will bring the code into a top directory staging which has the same substructure as the main analysis directory. Importing bring your code from the staged area to the main analysis directory. This two step process is done for reproducibility since as even if nameofscript.R changes in the code library in a way that breaks your code, the version of it that's been staged will remain static. Ensuring that your code will not break due to this.

If you want to replace your staged script (or the imported script) using the argument overwrite = TRUE. Be careful though.

Search for code

To list all R scripts in the ./Scripts subdirectory:

ls_scripts("./Scripts")

More refined searching is most easily accomplished with the pipe symbol, %>%, e.g. to find all scripts in ./Scripts that contain the text text_to_match:

ls_scripts("./Scripts") %>% search_raw("text_to_match")

To find all scripts in the Code Library that contain the text text_to_match:

ls_code_library() %>% search_raw("text_to_match")

Monitor your compliance

Check your tidyproject is set up correctly by typing the following:

check_session()

It complains about Renvironment_info.txt not being present. Take an snapshot of your R environment:

environment_info()

This will search your scripts in your "Scripts" directory for package dependencies and output version and environment information into Renvironment_info.txt of the main directory. If you run check_session() again it should pass now. If tidyproject ever gives you errors, check_session() is a good first port of call.

FAQ

+ How do I disable the ProjectLibrary

The ProjectLibrary is configured inside .Rprofile. Deleting this or deleting its contents will disable the ProjectLibrary.



tsahota/TidyProject documentation built on April 19, 2021, 9:14 p.m.