Learn Python and AI for free! One week only. No credit card needed.
Ends in:
See the advanced storage tutorial at https://github.com/ropensci/drake/blob/master/vignettes/storage.Rmd for details.
short_hash(cache = drake::get_cache(verbose = verbose),
verbose = drake::default_verbose())
drake cache. See new_cache()
.
If supplied, path
and search
are ignored.
logical or numeric, control printing to the console.
Use pkgconfig
to set the default value of verbose
for your R session:
for example, pkgconfig::set_config("drake::verbose" = 2)
.
FALSE
:print nothing.
TRUE
:print only targets to build.
in addition, print checks and cache info.
in addition, print any potentially missing items.
in addition, print imports. Full verbosity.
A character vector naming a hash algorithm.
# NOT RUN {
test_with_dir("Quarantine side effects.", {
load_basic_example() # Get the code with drake_example("basic").
# Run the project and return the internal master configuration list.
config <- make(my_plan)
# Locate the storr cache.
cache <- config$cache
# Get the short hash algorithm of the cache.
short_hash(cache)
})
# }
Run the code above in your browser using DataLab