Learn R Programming

rmake (version 1.2.0)

visualizeRules: Visualize dependencies defined by a rule or a list of rules

Description

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

Author

Michal Burda

See Also

makefile(), rule()

Examples

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

if (FALSE) {
visualizeRules(job)
}

Run the code above in your browser using DataLab