This article was updated on July 7 2018. Before installing anything I signed up on https://github.com/ and created my R-ANALYTICS repository: https://github.com/LaranIkal/R-ANALYTICS Now the installation and setup. 1. I installed git on Ubuntu, from a terminal window: $ sudo apt-get update $ sudo apt-get install git 2.- I configured git: I did this through the git config command. I provided my name and email address because git embeds this information into each commit. Open a terminal and run: $ git config --global user.name "Your Name" --> This is part of your link: https://github.com/LaranIkal, you see, my name is LaranIkal $ git config --global user.email "youremail@domain.com" To see all of the configuration items just type: $ git config --list As a note, it is saved to a file called ~/.gitconfig in your home folder. Steps In Rstudio: 1.- Checking/Setting Rstudio right configuration to u...
How to do things related to R, Installation, packages usage and algorithm samples.