码迷,mamicode.com
首页 > 其他好文 > 详细

R语言记录程序运行的时间

时间:2014-07-22 22:55:12      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:os   strong   io   art   for   cti   

f <- function(start_time) {
  start_time <- as.POSIXct(start_time)
  dt <- difftime(Sys.time(), start_time, units="secs")
  # Since you only want the H:M:S, we can ignore the date...
  # but you have to be careful about time-zone issues
  format(.POSIXct(dt,tz="GMT"), "%H:%M:%S")
}


how to use:

time1<-Sys.time()
...

f(time1)

R语言记录程序运行的时间,布布扣,bubuko.com

R语言记录程序运行的时间

标签:os   strong   io   art   for   cti   

原文地址:http://www.cnblogs.com/emanlee/p/3861144.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!