You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bench::mark() produces a summary tibble with 13 columns, but Reprex only shows the first 6 of them (see first run of mark() in reprex below). It does this even if you select all columns by index or name. The columns really are there (see second run of mark()), it's just that reprex won't print them. It doesn't print any column above 6 even if you specifically select them with mark(...)[, c(1, 7)] (see third run of mark()).
#' 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()
).The text was updated successfully, but these errors were encountered: