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)


hughjonesd/pastapi documentation built on Sept. 9, 2019, 12:56 p.m.