😎 Give your xaringan slides some style
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

8 行
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. }