/ProjectTemplate

A PennSIVE center project template for reproducible workflows

Primary LanguageR

ProjectTemplate

AppVeyor build status Travis build status Codecov test coverage

The goal of ProjectTemplate is to create a template for project workflows in the PennSIVE working group.

TODO

  • put Data in .Rbuildignore so eventually figure out where to best put a folder we are saving to
  • put tests in .Rbuildignore since they are empty. Eventually add tests
  • put results_generation.R in git ignore for now put it back later

Installation

You can install the released version of ProjectTemplate from GitHub with:

remotes::install_github("avalcarcel9/ProjectTemplate")

Example

First generate the data:

set.seed(23)
# Run the function
data_generation(iter = 10000,
                n = 1000,
                mu_x = 23,
                sd_x = 10,
                mu_y = 9,
                sd_y = 15,
                cores = 1)

Then run code that compiles the project results: - This may be done on the cluster and then results are pulled down locally