Learn R Programming

drake (version 4.2.0)

this_cache: Function this_cache

Description

Get a specific drake cache at the exact specified file path

Usage

this_cache(path = NULL)

Arguments

path

file path of the cache

Examples

Run this code
# NOT RUN {
x <- this_cache() # Does not exist yet
load_basic_example()
make(my_plan)
y <- this_cache()
z <- this_cache(".drake") # same as above
manual <- new_cache("manual_cache")
manual2 <- get_cache("manual_cache") # same as above
# }

Run the code above in your browser using DataLab