-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResources.Rmd
57 lines (41 loc) · 2.66 KB
/
Resources.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
title: "Resources"
author: "Jenna Landy"
output:
rmdformats::robobook
---
```{css, echo = FALSE}
.book {
padding-top: 40px
}
.book .book-body .page-inner section.normal h1, .book .book-body .page-inner section.normal h2, .book .book-body .page-inner section.normal h3, .book .book-body .page-inner section.normal h4 {
padding-top: 40px
}
```
## R Package Development
- [Writing an R package from scratch - short blog post on setting up packages](https://hilaryparker.com/2014/04/29/writing-an-r-package-from-scratch/)
- [R package primer: a minimal tutorial - Writing R packages](https://kbroman.org/pkg_primer/)
- [R Packages - Hadley Wickham's book for R package development](https://r-pkgs.org/)
- [Get started with roxygen2 - documentation tutorial](https://cran.r-project.org/web/packages/roxygen2/vignettes/roxygen2.html)
## Parameterized Rmd Reports
- [RStudio - Parmeters](https://rmarkdown.rstudio.com/lesson-6.html)
- [R Markdown: The Definitive Guide - Chapter 15.3: Knitting with parameters](https://bookdown.org/yihui/rmarkdown/params-knit.html)
## Rmd Customizations
- [RStudio - Output Formats](https://rmarkdown.rstudio.com/lesson-9.html)
- [RStudio - kable for pretty tables](https://rmarkdown.rstudio.com/lesson-7.html)
- [rmdformats - additional Rmd themes](https://juba.github.io/rmdformats/)
- [prettydoc - Rmd themes](https://prettydoc.statr.me/themes.html)
- [R Markdown: The Definitive Guide - Chapter 3.1: HTML document](https://bookdown.org/yihui/rmarkdown/html-document.html#table-of-contents)
## Interactive Plots
- [ggplotly - convert ggplot2 to plotly](https://www.rdocumentation.org/packages/plotly/versions/4.10.0/topics/ggplotly)
- [plotly - make interactive plots from scratch](https://plotly.com/r/)
- [leaflet - make interactive maps](https://rstudio.github.io/leaflet/)
- [R Graph Gallery: Interactive charts - demonstrations of different interactive plotting packages](https://r-graph-gallery.com/interactive-charts.html)
- [R Graph Gallery: Animation - demonstration of different animation plotting packages](https://r-graph-gallery.com/animation.html)
## Publishing R Markdown Websites with Github Pages
- [Making a web site with R Markdown - includes sharing with GitHub pages](https://psu-psychology.github.io/psy-525-reproducible-research-2020/how_to/make-website-with-rstudio.html)
- [RStudio - R Markdown Websites](https://rmarkdown.rstudio.com/lesson-13.html)
- [R Markdown: The Definitive Guide - Chapter 10: Websites](https://bookdown.org/yihui/rmarkdown/rmarkdown-site.html)
- [Pimp my Rmd: Share it online](https://holtzy.github.io/Pimp-my-rmd/#share_it_online)
## Other Cool Things!
- [flexdashboard](https://pkgs.rstudio.com/flexdashboard/)