knitr::opts_chunk$set(eval = FALSE)

The rstudioapi package allows you to interact with the running R session in a couple useful ways: you can send code to the R console, or restart the R session.

# restart R, then run some code after
rstudioapi::restartSession(command = "print('Welcome back!')")

# send some code to the console and execute it immediately
rstudioapi::sendToConsole("1 + 1", execute = TRUE)


eldinidle/ActiPro documentation built on July 1, 2020, 2:41 p.m.