-
-
Notifications
You must be signed in to change notification settings - Fork 94
FAQ
Michel Lang edited this page Sep 14, 2020
·
8 revisions
knitr per default uses R's lazy-load database to store the results of individual chunks.
The lazy-load database is an internal feature of R, and has issues handling active bindings.
Fortunately, it is possible to disable lazy-loading by setting the chunk option cache.lazy to FALSE:
knitr::opts_chunk$set(cache = TRUE, cache.lazy = FALSE)Either run R's update.packages() to update all installed packages, or run
devtools::update_packages("mlr3verse", dependencies = TRUE)to update only the packages which mlr3verse imports (c.f. CRAN page).
CI
Roxygen (Documentation)
Style
Misc