系统时间

系统时间为你提供执行 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))