makepipe 0.2.1

#'@title Load
#'@description Clean raw survey data and do derivations
#'@dependencies "data/raw.Rds", "lookup/concordance.csv"
#'@targets "data/1 data.Rds"
#'@makepipe
NULL

The entire pipeline can then be executed in one fell-swoop with make_with_dir(), simply by passing through the directory in which the scripts are located. Alternatively, you can construct your pipeline piece by piece using make_with_roxy(). For example, using the tags above, you would have

# This:
make_with_roxy("load.R")

# Instead of this:
make_with_source(
  "load.R", 
  targets = "data/1 data.Rds", 
  dependencies = c("data/raw.Rds", "lookup/concordance.csv"),
  label = "Load",
  note = "Clean raw survey data and do derivations"
)

makepipe 0.2.0

makepipe 0.1.0

make_*()

Segment

Bug fixes

Documentation

makepipe 0.0.5

makepipe 0.0.4

makepipe 0.0.3

makepipe 0.0.2

makepipe 0.0.1