R系统时间
示例
系统时间为您提供了执行R表达式所需的CPU时间,例如:
system.time(print("hello world"))# [1] "hello world"
# user system elapsed
# 0 0 0
您可以使用花括号来添加较大的代码段:
system.time({library(numbers)
Primes(1,10^5)
})
或使用它来测试功能:
fibb <- function (n) {if (n < 3) {
return(c(0,1)[n])
} else {
return(fibb(n - 2) + fibb(n -1))
}
}
system.time(fibb(30))
以上是 R系统时间 的全部内容, 来源链接: utcz.com/z/343165.html