Introducing version control
Data analytics projects with R can sometimes get very complex, especially when we have to work on our analysis over a longer period of time. To keep track of our changes and our progress in the project, it is important to use a version control system that can support us on these tasks. The best known of these version control approaches is Git. It helps us annotate every change we make to our code. This is also very helpful when we collaborate with other people, or when other people have to read and understand our code later on, and also when they need to understand the steps of its development. Git describes itself as a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. You can read about it at https://git-scm.com/.
Gits can be created on servers, or on our local machine. Their distributed nature lets you sync commits with other machines. An alternative to creating your...