The goal of ‘mustashe’ is to save time on long-running computations by storing and reloading the resulting object after the first run. The next time the computation is run, instead of evaluating the code, the stashed object is loaded. ‘mustashe’ is great for storing intermediate objects in an analysis.
You can install the released version of ‘mustashe’ from CRAN with:
And the development version from GitHub with:
The ‘mustashe’ package is loaded like any other, using the library()
function.
Below is a simple example of how to use the stash()
function from ‘mustashe’.
Let’s say, for part of an analysis, we are running a long simulation to generate random data rnd_vals
. This is mocked below using the Sys.sleep()
function. We can time this process using the ‘tictoc’ library.
tictoc::tic("random simulation")
stash("rnd_vals", {
Sys.sleep(3)
rnd_vals <- rnorm(1e5)
})
#> Stashing object.
tictoc::toc()
#> random simulation: 3.638 sec elapsed
Now, if we come back tomorrow and continue working on the same analysis, the second time this process is run the code is not evaluated because the code passed to stash()
has not changed. Instead, the random values rnd_vals
is loaded.
tictoc::tic("random simulation")
stash("rnd_vals", {
Sys.sleep(3)
rnd_vals <- rnorm(1e5)
})
#> Loading stashed object.
tictoc::toc()
#> random simulation: 0.016 sec elapsed
A common problem with storing intermediates is that they have dependencies that can change. If a dependency changes, then we want the stashed value to be updated. This is accomplished by passing the names of the dependencies to the depends_on
argument.
For instance, let’s say we are calculating some value foo
using x
. (For the following example, I will use a print statement to indicate when the code is evaluated.)
x <- 100
stash("foo", depends_on = "x", {
print("Calculating `foo` using `x`.")
foo <- x + 1
})
#> Stashing object.
#> [1] "Calculating `foo` using `x`."
foo
#> [1] 101
Now if x
is not changed, then the code for foo
does not get re-evaluated.
x <- 100
stash("foo", depends_on = "x", {
print("Calculating `foo` using `x`.")
foo <- x + 1
})
#> Loading stashed object.
foo
#> [1] 101
But if x
does change, then foo
gets re-evaluated.
x <- 200
stash("foo", depends_on = "x", {
print("Calculating `foo` using `x`.")
foo <- x + 1
})
#> Updating stash.
#> [1] "Calculating `foo` using `x`."
foo
#> [1] 201
The ‘here’ package is useful for handling file paths in R projects, particularly when using an RStudio project. The main function, here::here()
, can be used to create the file path for stashing an object by calling use_here()
.
use_here()
#> The global option "mustashe.here" has been set `TRUE`.
#> Add `mustashe::use_here(silent = TRUE)` to you're '.Rprofile'
#> to have it set automatically in the future.
This behavior can be turned off, too.
The inspiration for this package came from the cache()
feature in the ‘ProjectTemplate’ package. While the functionality and implementation are a bit different, this would have been far more difficult to do without referencing the source code from ‘ProjectTemplate’.