DataCamp's newest R course will teach you the main techniques to speed up your data analysis in R by reducing computational time. Writing Efficient R code by Colin Gillespie.
The beauty of R is that it is built for performing data analysis. The downside is that sometimes R can be slow, thereby obstructing our analysis. For this reason, it is essential to become familiar with the main techniques for speeding up your analysis, so you can reduce computational time and get insights as quickly as possible.
Writing Efficient R Code features interactive exercises that combine high-quality video, in-browser coding, and gamification for an engaging learning experience that will make you a master in writing efficient, quick, R code!
What you'll learn:
Chapter 1: The Art of Benchmarking
In order to make your code go faster, you need to know how long it takes to run.
Chapter 2: Fine Tuning - Efficient Base R
R is flexible because you can often solve a single problem in many different ways. Some ways can be several orders of magnitude faster than the others.
Chapter 3: Diagnosing Problems - Code Profiling
Profiling helps you locate the bottlenecks in your code.