r4ds/README.md

67 lines
1.8 KiB
Markdown
Raw Normal View History

2016-10-12 22:27:58 +08:00
# R for Data Science
2022-04-13 22:23:20 +08:00
<!-- badges: start -->
[![Render and deploy Book to Netlify](https://github.com/hadley/r4ds/actions/workflows/build_book.yaml/badge.svg)](https://github.com/hadley/r4ds/actions/workflows/build_book.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.
The book is built using [Quarto](https://quarto.org/).
2015-07-28 05:52:19 +08:00
## Images
### Omnigraffle drawings
- Font: 12pt Guardian Sans Condensed / Ubuntu mono
- Export as 300 dpi png.
- 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
``` r
#| echo: FALSE
#| out.width: NULL
knitr::include_graphics("diagrams/transform.png", dpi = 270)
```
### 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")
```
### O'Reilly
To generate book for O'Reilly, build the book then:
```{r}
# pak::pak("hadley/htmlbook")
htmlbook::convert_book()
html <- list.files("oreilly", pattern = "[.]html$", full.names = TRUE)
file.copy(html, "../r-for-data-science-2e/", overwrite = TRUE)
2022-11-19 01:26:25 +08:00
pngs <- list.files("oreilly", pattern = "[.]png$", full.names = TRUE, recursive = TRUE)
dest <- gsub("oreilly", "../r-for-data-science-2e/", pngs)
fs::dir_create(unique(dirname(dest)))
file.copy(pngs, dest, overwrite = TRUE)
```
Then commit and push to atlas.
## Code of Conduct
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.