This repository has been archived by the owner on Jan 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
refs.Rmd
41 lines (31 loc) · 2.1 KB
/
refs.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
title: "References"
date: '`r format(Sys.time(), "%Y-%m-%d %H:%M")`'
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = F)
```
## Cheatsheets
Most of these cheatsheets are from [rstudio.com/resources/cheatsheets](https://www.rstudio.com/resources/cheatsheets/).
```{r cheatsheets, results='asis'}
for (f in list.files('refs/cheatsheets')){
cat(sprintf('- [%s](refs/cheatsheets/%s)\n', f, f))
}
```
## Literature
```{r lit, results='asis'}
for (f in list.files('refs/lit')){
cat(sprintf('- [%s](refs/lit/%s)\n', f, f))
}
```
## Books
- [R for Data Science](http://r4ds.had.co.nz/) [<span class="octicon octicon-mark-github"></span>](https://github.com/hadley/r4ds) by Garrett Grolemund and Hadley Wickham
- [Advanced R](http://adv-r.had.co.nz/) [<span class="octicon octicon-mark-github"></span>](https://github.com/hadley/adv-r) by Hadley Wickham
- [Reproducible Research with R and Rstudio](http://christophergandrud.github.io/RepResR-RStudio/) by Christopher Gandrud
- [Practical Data Science with R](http://www.amazon.com/Practical-Data-Science-Nina-Zumel/dp/1617291560/) by Nina Zumel, John Mount and Jim Porzak
## Courses
- [Data Carpentry for Biologists](http://www.datacarpentry.org/semester-biology/) [<span class="octicon octicon-mark-github"></span>](https://github.com/datacarpentry/semester-biology) by Ethan White
- [Data Analysis and Visualization Using R](http://varianceexplained.org/RData/) [<span class="octicon octicon-mark-github"></span>](https://github.com/dgrtwo/RData) by David Robinson
- [Data wrangling, exploration, and analysis with R](http://stat545-ubc.github.io/) [<span class="octicon octicon-mark-github"></span>](https://github.com/STAT545-UBC/STAT545-UBC.github.io) by Jenny Bryan
- [Software Carpentry: R for reproducible scientific analysis](http://swcarpentry.github.io/r-novice-gapminder/) [<span class="octicon octicon-mark-github"></span>](https://github.com/swcarpentry/r-novice-gapminder) by Software Carpentry
- [Tools for Reproducible Research](http://kbroman.org/Tools4RR/) [<span class="octicon octicon-mark-github"></span>](https://github.com/kbroman/Tools4RR) by Karl Broman