Profiler
system.time()
> system.time(readLines("http://www.jhsph.edu"))
user system elapsed
0.003 0.002 0.820system.time({
lines <- readLines("http://www.jhsph.edu")
print(lines)
})
# prints a lot lof lines...
user system elapsed
0.184 0.038 0.675Rprof
Last updated