Closed DesiQuintans closed 11 months ago
This is a bench feature. The docs say:
' 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
.
bench::mark()
produces a summary tibble with 13 columns, but Reprex only shows the first 6 of them (see first run ofmark()
in reprex below). It does this even if you select all columns by index or name. The columns really are there (see second run ofmark()
), it's just that reprex won't print them. It doesn't print any column above 6 even if you specifically select them withmark(...)[, c(1, 7)]
(see third run ofmark()
).