-
Notifications
You must be signed in to change notification settings - Fork 0
/
r.qmd
110 lines (51 loc) · 2.81 KB
/
r.qmd
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# R
## Web
[Swirl](http://swirlstats.com/)
[R example repository](http://www.dwoll.de/rexrepos/)
Former CSCAR Consultant Michael Clark's
[Workshops](https://m-clark.github.io/workshops) and
[Documents](https://m-clark.github.io/documents) (all R-oriented, but some may
be more conceptual)
## Courses
[Coursera](https://www.coursera.org/courses?languages=en&query=r)
## Books
[Use R series](http://mirlyn.lib.umich.edu/Search/Home?lookfor=%22%20Use%20R!%22&type=series) (link to UM library)
## Statistical Modeling
[UCLA IDRE R resources](https://stats.idre.ucla.edu/r/)
[Understanding Interactions](https://stats.idre.ucla.edu/r/seminars/interactions-r/)
[Marginal Effects](https://errickson.net/marginsnotes/)
## Packages
[Posit pacakges](https://posit.co/products/open-source/rpackages/): some of the most popular packages out there
[RStart](https://github.com/rstudio/RStartHere): useful, well-documented, well-coded packages
[R Documentation](http://www.rdocumentation.org/): perhaps a little more user friendly than the task views. Easy search.
[Metacran](https://www.r-pkg.org/): another searchable database of R packages.
[CRAN Task Views](https://cran.r-project.org/web/views/): packages organized by topic at the R website.
[Ropensci](https://ropensci.org/): Open Tools for Open Science
[Tidyverse](http://tidyverse.org/): an overview of Hadley Wickham's packages and related.
## Visualization
[ggplot2](http://ggplot2.tidyverse.org/index.html)
[plotly](https://plotly.com/r/)
[htmlwidgets](http://www.htmlwidgets.org/)
## High Performance Computing
[Task View on HPC](https://cran.r-project.org/web/views/HighPerformanceComputing.html)
### I/O
[data.table::fread](https://CRAN.R-project.org/package=data.table)
[readr](https://CRAN.R-project.org/package=readr)
[feather](https://github.com/wesm/feather/tree/master/R)
### Data frames and their operations
[dplyr](https://CRAN.R-project.org/package=dplyr), [multidplyr](https://github.com/hadley/multidplyr)
[data.table](https://CRAN.R-project.org/package=data.table)
### Integration
[Rcpp](https://CRAN.R-project.org/package=Rcpp)
[rJava](https://CRAN.R-project.org/package=rJava)
### parallel
[parallel](https://CRAN.R-project.org/package=data.table)
[foreach](https://CRAN.R-project.org/package=foreach)
[partools](https://CRAN.R-project.org/package=partools)
### profiling
[profVis](https://CRAN.R-project.org/package=profvis)
## Other
[Rstudio](https://posit.co/products/open-source/rstudio/): Make your R efforts easier and expand them with the most popular IDE for R. Developers provide many useful packages as well.
[StackOverflow](http://stackoverflow.com/questions/tagged/r): Q & A tagged **'R'**
[RSeek](http://rseek.org/): for searching R on the web a little more efficiently
[Rbloggers](http://www.r-bloggers.com/): see what other R users are doing