simpleTimeReport | R Documentation |
This function can be used to evaluate an expression line-by-line to capture outputs, errors, messages, and evaluation time.
simpleTimeReport(title = NULL, expr, envir = parent.frame())
title |
The title to be printed |
expr |
The expression to run |
envir |
The environment from which to evaluate the |
Evaluate code and report on the time difference
A reported_results
/list
object containing results, outputs,
messages, warnings, and errors
simpleTimeReport("example", {
print("1")
Sys.sleep(1)
warning("this is a warning")
for (i in 1:5) {
Sys.sleep(0.5)
}
sample(1e6, 1e6, TRUE)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.