Learn R Programming

rmake (version 1.1.0)

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

Description

Visualize dependencies defined by a rule or a list of rules

Usage

visualize(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

makefile(), rule()

Examples

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

# }
# NOT RUN {
visualize(job)
# }

Run the code above in your browser using DataLab