Description Usage Arguments Details
By default data columns ('result', 'memory', 'time', 'gc') are omitted when printing in knitr. If you would like to include these columns set the knitr chunk option 'bench.all_columns = TRUE'.
1 |
x |
An R object to be printed |
... |
Additional arguments passed to the S3 method. Currently ignored,
except two optional arguments |
options |
A list of knitr chunk options set in the currently evaluated chunk. |
You can set bench.all_columns = TRUE
to show all columns of the bench mark
object.
1 2 3 4 5 | ```{r bench.all_columns = TRUE}
bench::mark(
subset(mtcars, cyl == 3),
mtcars[mtcars$cyl == 3, ])
```
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.