Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
by Yanchang Zhao, RDataMining.com
Below are simple examples of profiling R code, which help to find out which steps or functions are most time consuming. It is very useful for improving efficiency of R code.
# profiling of running time
Rprof(“myFunction.out”)
y <- myFunction(x) # this is the function to profile
Rprof(NULL)
summaryRprof(“myFunction.out”)
The example below profiles memory as well. Memory allocation can also be profiled with function Rprofmem().
# profiling of both time and memory
Rprof(“myFunction.out”, memory.profiling=T)
y <- myFunction(x)
Rprof(NULL)
summaryRprof(“myFunction.out”, memory=”both”)
A detailed example of profiling R code can be found at http://www.stat.berkeley.edu/~nolan/stat133/Fall05/lectures/profilingEx.html.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.