2016-10-12 22:27:58 +08:00
# R for Data Science
2022-03-21 22:24:42 +08:00
2022-04-13 22:23:20 +08:00
<!-- badges: start -->
2022-08-21 04:27:14 +08:00
[![Render and deploy Book to Netlify ](https://github.com/hadley/r4ds/actions/workflows/quarto-book-netlify.yaml/badge.svg )](https://github.com/hadley/r4ds/actions/workflows/quarto-book-netlify.yaml)
2022-04-13 22:23:20 +08:00
<!-- badges: end -->
2015-07-28 05:52:19 +08:00
2022-11-12 06:11:00 +08:00
This repository contains the source of [R for Data Science ](http://r4ds.hadley.nz ) book.
2022-07-29 20:46:19 +08:00
The book is built using [Quarto ](https://quarto.org/ ).
2015-07-28 05:52:19 +08:00
2016-02-16 03:40:19 +08:00
The R packages used in this book can be installed via
```{r}
devtools::install_github("hadley/r4ds")
```
2020-10-06 06:56:27 +08:00
2022-03-21 22:24:42 +08:00
## Images
### Omnigraffle drawings
2022-08-29 18:24:32 +08:00
- Font: 12pt Guardian Sans Condensed / Ubuntu mono
2022-03-21 22:24:42 +08:00
- Export as 300 dpi png.
2022-08-29 18:24:32 +08:00
- Website font is 18 px = 13.5 pt, so scale dpi to match font sizes: 270 = 300 \* 12 / 13.5.
(I also verified this empirically by screenshotting.)
2022-04-13 22:23:20 +08:00
2022-08-29 18:24:32 +08:00
``` r
2022-03-21 22:24:42 +08:00
#| echo: FALSE
#| out.width: NULL
knitr::include_graphics("diagrams/transform.png", dpi = 270)
2022-08-29 18:24:32 +08:00
```
### Screenshots
- Make sure you're using a light theme.
For small interface elements (eg. toolbars), zoom in twice.
- Screenshot with Cmd + Shift + 4.
- Don't need to set dpi:
``` r
#| echo: FALSE
#| out.width: NULL
knitr::include_graphics("screenshots/rstudio-wg.png")
```
2022-03-21 22:24:42 +08:00
2020-10-06 06:56:27 +08:00
## Code of Conduct
2022-03-21 22:24:42 +08:00
Please note that r4ds uses a [Contributor Code of Conduct ](https://contributor-covenant.org/version/2/0/CODE_OF_CONDUCT.html ).
By contributing to this book, you agree to abide by its terms.