Skip to contents

Visualize dependencies defined by a rule or a list of rules

Usage

visualizeRules(x, legend = TRUE)

Arguments

x

An instance of the S3 rmake.rule class or a list of such objects

legend

Whether to draw a legend

See also

Author

Michal Burda

Examples

job <- c('data1.csv', 'data2.csv') %>>%
  rRule('process.R') %>>%
  'data.rds' %>>%
  markdownRule('report.Rmd') %>>%
  'report.pdf'

if (FALSE) { # \dontrun{
visualizeRules(job)
} # }