inst/examples/basic/code.R

my_mtcars = function(){
  data(mtcars)
  mtcars
}

my_random = function(){
  data.frame(y = rnorm(32))
}

my_plot = function(mtcars, random){
  plot(mtcars$mpg, random$y)
}
wlandau/parallelRemake documentation built on May 4, 2019, 8:44 a.m.