Skip to content

szego/ermise

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ermise

This R package is a set of tools and workflow enhancements for data processing and analysis projects.

Core features:

  • Create projects with a folder structure geared toward data processing and analysis using RStudio's New Project wizard (File > New Project...) or ermise::create_project()
  • Document package dependencies to facilitate collaboration using ermise::require_packages()
  • Start a new R Notebook for an analysis using ermise::new_analysis()
  • Start a new R source file to develop a helper function using ermise::new_src()

The template's folder structure is based on one recommended by Emily Riederer.

Create a new project

After installing this package, use Rstudio's New Project wizard (File > New Project...) to create a new "ermise Project". ermise will create some folders in the project directory:

RStudio's New Project wizard and ermise folder structure

You can also create the project without RStudio by calling ermise::create_project() directly.

The created folders are:

  • analysis: RMarkdown files that constitute the final data processing or analysis
  • src: R scripts that contain useful helper functions or other set-up tasks (e.g. data pulls)
  • data: Raw data - this folder should be considered read only!
  • save: Intermediate data objects created during the analysis
  • doc: Any long-form documentation or setup instructions
  • publish: Any files created by the analysis to be used outside of the project

ermise will also create a file called "required_packages.txt" in the project's root folder.

Document package dependencies

To facilitate collaboration on the project, you can call ermise::require_packages() to update the "required_packages.txt" file with new package names as necessary.

For example, this will add dplyr and tidyr to "required_packages.txt":

ermise::require_packages("dplyr", "tidyr")

This can be a decent start to share dependency information if you aren't at the point of needing more fully-featured environment management tools like renv.

Create new analysis and source files

Create a new R Notebook for an analysis using ermise::new_analysis(). This will create a new .Rmd file in the project's /analysis/ folder with some basic formatting. It will also include library() calls to load any packages it found in "required_packages.txt".

For example, run the following line to create a new analysis R Notebook:

ermise::new_analysis("Summary of hospital totals")

This creates a new file in /analysis/ called "summary_of_hospital_totals.Rmd". Assuming we already ran the code above to add dplyr and tidyr to "required_packages.txt", that new file would look like this:

An .Rmd file with the provided title, a place to enter a description, and a setup chunk containing library() calls to packages from required_packages.txt

Create a new R source file for a helper function using ermise::new_src(). This will create a new .R folder in /src/ with a simple code template for the helper function.

For example, run the following line to create a new source file:

ermise::new_src("clean_hospital_names")

This creates a new file in /src/ called "clean_hospital_names.R" that looks like this:

An .R file with a function template for a function called clean_hospital_names()

The comment block above the function follows roxygen2 formatting.

Installation

You can install ermise directly from GitHub using the devtools package:

devtools::install_github("szego/ermise")

After installing, create a new "ermise Project" using RStudio's New Project wizard (File > New Project...).


ermise (c) by Antonio R. Vargas

ermise is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.

You should have received a copy of the license along with this work. If not, see https://creativecommons.org/licenses/by-nc-sa/4.0/.

About

Mise en Place for R Analysis Projects

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy