😎 Give your xaringan slides some style
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
201B

  1. with_clean_session <- function(.f, args = list()) {
  2. empty_wd <- tempfile()
  3. dir.create(empty_wd)
  4. owd <- setwd(empty_wd)
  5. on.exit({setwd(owd); unlink(empty_wd, TRUE)})
  6. callr::r_safe(.f, args)
  7. }