example_peps
This repository contains examples of PEPs (Portable Encapsulated Projects). Visit the PEP2.0.0 specification webiste to learn more about the PEP standard and features. Explore the examples interactively with Python or R:
Python
Your basic python workflow uses the peppy package and starts out like this:
import peppy
proj1 = peppy.Project("example_basic/project_config.yaml")More detailed Python vignettes are available as part of the documentation for the peppy package.
R
Your basic R workflow uses the pepr package and starts like this:
library('pepr')
p = pepr::Project("example_basic/project_config.yaml")More detailed R vignettes are available as part of the documentation for the pepr package.