https://github.com/Diego-F-Pereira/R-Notes
My notes on R Programming Language
https://github.com/Diego-F-Pereira/R-Notes
Last synced: 4 months ago
JSON representation
My notes on R Programming Language
- Host: GitHub
- URL: https://github.com/Diego-F-Pereira/R-Notes
- Owner: Diego-F-Pereira
- Created: 2013-11-06T19:04:57.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-05-31T12:23:02.000Z (almost 11 years ago)
- Last Synced: 2024-08-13T07:14:28.907Z (8 months ago)
- Language: R
- Size: 281 KB
- Stars: 26
- Watchers: 17
- Forks: 124
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - Diego-F-Pereira/R-Notes - My notes on R Programming Language (R)
README
R-Notes
=======
This repo contains my personal notes for using R.All files have been written using R markdown.
Each folder in the repo contains the same files in different format so you can decide how you want to visualize them.
* If you want to read the explanations and code on-line without actually running the code, choose the **md** folder.
* If you want to read the explanations and code locally without actually running the code, **fork** the repo, **clone** it into your computer, go to the **html** folder, and open the **html** files.
* If you want to read the explanations and run the code locally, **fork** the repo, **clone** it into your computer, go to the **Rmd** folder, and open the **Rmd** files in R.
* If you want only to run the R code go to the **R** folder and run the **R** files in R.
In case you find that I forgot to update the R files (that happened) use the **purl()** function from the **knitr** package for extracting the **R** code from the **Rmd** files:library(knitr)
purl("./Minitutorial_01.Rmd")
purl("./Minitutorial_02.Rmd")
purl("./Minitutorial_03.Rmd")
# etcCheers!