😎 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.

9 satır
230B

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