tidy_eval {formatR} | R Documentation |
Insert output to source code
Description
Evaluate R code by chunks, then insert the output to each chunk. As the output is masked in comments, the source code will not break.
Usage
tidy_eval(
source = "clipboard",
...,
file = "",
prefix = "## ",
envir = parent.frame()
)
Arguments
source |
The input file name (by default the clipboard; see
|
... |
Other arguments passed to |
file |
The file name to write to via |
prefix |
The prefix to mask the output. |
envir |
The environment in which to evaluate the code. By default the
parent frame; set |
Value
Evaluated R code with corresponding output (printed on screen or written to a file).
References
Examples
library(formatR)
## evaluate simple code as a character vector
tidy_eval(text = c("a<-1+1;a", "matrix(rnorm(10),5)"))
## evaluate a file
tidy_eval(system.file("format", "messy.R", package = "formatR"))
[Package formatR version 1.14 Index]