grapes-fcache_df-grapes: cache_df that force recreating the cached file

%fcache_df%R Documentation

cache_df that force recreating the cached file

Description

cache_df that force recreating the cached file

Usage

call %fcache_df% fname

Arguments

call

function call

fname

filename

Examples

temp_file <- tempfile(fileext = ".tsv")
calc_mtcars_cyl <- function(cyl) {
    message("calculating")
    as.data.frame(mtcars[mtcars$cyl == cyl, ])
}

# Call "calc_mtcars_cyl" function
res1 <- calc_mtcars_cyl(6) %cache_df% temp_file

# Force re-calling the function
res2 <- calc_mtcars_cyl(6) %fcache_df% temp_file

tanaylab/tgutil documentation built on March 16, 2024, 12:07 a.m.