sys_time_print {tidyfst} | R Documentation |
Convenient print of time taken
Description
Convenient printing of time elapsed. A wrapper of
data.table::timetaken
, but showing the results more directly.
Usage
sys_time_print(expr)
pst(expr)
Arguments
expr |
Valid R expression to be timed. |
Value
A character vector of the form HH:MM:SS,
or SS.MMMsec if under 60 seconds (invisibly for show_time
). See examples.
See Also
Examples
sys_time_print(Sys.sleep(1))
a = iris
sys_time_print({
res = iris %>%
mutate_dt(one = 1)
})
res
[Package tidyfst version 1.7.9 Index]