Skip to content

Instantly share code, notes, and snippets.

@1beb
Created February 2, 2016 16:17
Show Gist options
  • Save 1beb/1285a7689184b098703f to your computer and use it in GitHub Desktop.
Save 1beb/1285a7689184b098703f to your computer and use it in GitHub Desktop.
library(microbenchmark)
plus_test <- function(x) {
return(+x)
}
asint_test <- function(x) {
return(as.integer(x))
}
test_me <- function(n) {
x <- sample(c(TRUE,FALSE),n,replace = TRUE)
microbenchmark(
plus_test(x),
asint_test(x),
times = 20)
}
test_me(1)
test_me(10)
test_me(100)
test_me(1e3)
test_me(1e4)
test_me(1e5)
test_me(1e6)
test_me(1e7)
test_me(1e8)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment