This file describes the style guide for MSSL projects.
Underscores "_" not periods "."
- All calls to external packages should made on the Imports and Suggests lines in the DESCRIPTION file. Any calls to library() in the analysis should be commented out.
- Packrat
-R functions go in their own individual .r file. -The name of the file should be the same as the name of the function
- Calling functions from other packages
- As a lab, we'll be using the :: operator every single time we call a function from an external package, e.g. glue::glue, plyr::dplyr
All analysis should be in an R-Notebook.