Python vs R经过的时间

时间:2016-12-04 17:33:30

标签: python r time elapsed

R.studio中,为了衡量自程序开始运行以来经过的实际时间,我使用

t1=proc.time()
proc.time()-t1

在python中哪个是相应的函数?我想比较它们,他们需要以相同的单位来衡量相同的想法。 我已经使用了time.time()time.clock()os.times()

使用os.times()(2.85, 0.08, 0.0, 0.0, 1480873284.06)
使用time.time()8.46453595161
使用time.clock()2.620683

R中的proc time给出:

user:0.015   system:0.001   elapsed:0.029

我对Python中相应的已用时间感兴趣。

0 个答案:

没有答案