Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 595 Bytes

devnotes.md

File metadata and controls

20 lines (17 loc) · 595 Bytes

Notes for developers

Load the package in development mode

Set the working directory to this repository:

setwd("~/src/MOTRPAC/MotrpacRatTraining6mo")
library(devtools)

Load all of the functions defined in ./R:

load_all()

Create a test

Use usethis::use_r() and usethis::use_test(). See details here.

Create a vignette

Use usethis::use_vignette("vignette-title"), edit the .Rmd in vignettes/, and build it with devtools::build_rmd(). See details here.