rbenchmark: Benchmarking routine for R

ベンチマーク

> library(rbenchmark)

バージョン: 1.0.0


関数名 概略
benchmark a simple routine for benchmarking R code
rbenchmark rbenchmark provides a simple routine for benchmarking R code.

benchmark

処理するコードのベンチマークを実施

> benchmark(1:10 ^ 6)
    test replications elapsed relative user.self sys.self user.child
1 1:10^6          100   0.211        1       0.1    0.103      0.003
  sys.child
1     0.004
> sum(1:10) %>% benchmark()
  test replications elapsed relative user.self sys.self user.child
1    .          100       0       NA         0        0          0
  sys.child
1         0