在R中是否有衡量函数执行时间的标准化方法?
显然,我可以在执行前后取system.time
,然后取它们的差异,但我想知道是否有一些标准化的方法或函数(不希望发明轮子)。
我似乎记得我曾经用过如下的东西:
somesysfunction("myfunction(with,arguments)")
> Start time : 2001-01-01 00:00:00 # output of somesysfunction
> "Result" "of" "myfunction" # output of myfunction
> End time : 2001-01-01 00:00:10 # output of somesysfunction
> Total Execution time : 10 seconds # output of somesysfunction