capture_expr {dipsaus} | R Documentation |
Captures Evaluation Output of Expressions as One Single String
Description
Evaluate expression and captures output as characters, then concatenate as one single string.
Usage
capture_expr(expr, collapse = "\n", type = c("output", "message"), ...)
Arguments
expr |
R expression |
collapse |
character to concatenate outputs |
type , ... |
passed to |
Value
Character of length 1: output captured by
capture.output
Examples
x <- data.frame(a=1:10)
x_str <- capture_expr({
print(x)
})
x_str
cat(x_str)
[Package dipsaus version 0.2.9 Index]