Skip to content

Instantly share code, notes, and snippets.

View AdriMarteau's full-sized avatar
🐍

Adrien Marteau AdriMarteau

🐍
View GitHub Profile
@AdriMarteau
AdriMarteau / gist:2034867
Created March 14, 2012 07:33
timer in R
if (!require("tcltk2")) install.packages("tcltk2")
RUNNING <- F
timer.freq <- 1000 #in ms
timer.pause <- function() {RUNNING <<- F}
timer.start <- function() {RUNNING <<- T}
timer.init <- function()