Go to file
hadley 5bc883cef3 Add book title 2016-03-02 07:11:46 -06:00
data Updates data set for model chapter to BLS NLS cross-section. 2016-01-07 13:25:25 -05:00
diagrams Pull out iteration and pipes chapters 2016-03-01 08:29:58 -06:00
images Removes unused visualization figures. 2015-12-13 17:03:51 -05:00
screenshots Very brief RStudio orientation 2015-12-08 06:53:57 -06:00
.Rbuildignore Rstudio writes post-package conversion 2015-11-10 08:56:01 -06:00
.gitignore Pull out iteration and pipes chapters 2016-03-01 08:29:58 -06:00
.travis.yml Oops 2016-02-17 07:09:45 +11:00
DESCRIPTION Switch to rstudio/bookdown 2016-02-17 06:39:15 +11:00
LICENSE First commit 2015-07-27 16:52:19 -05:00
README.md Update README.md 2016-02-15 19:40:19 +00:00
_bookdown.yml Pull out iteration and pipes chapters 2016-03-01 08:29:58 -06:00
_build.sh Switch to rstudio/bookdown 2016-02-17 06:39:15 +11:00
_common.R Run common code at the start of every chapter 2016-02-17 16:33:25 +11:00
_output.yaml Tweak output display 2016-03-01 08:47:57 -06:00
communicate.Rmd Drop jekyll markdown 2016-02-17 16:26:32 +11:00
contribute.rmd Drop jekyll markdown 2016-02-17 16:26:32 +11:00
cover.png First commit 2015-07-27 16:52:19 -05:00
data-structures.Rmd Drop jekyll markdown 2016-02-17 16:26:32 +11:00
databases.Rmd Drop jekyll markdown 2016-02-17 16:26:32 +11:00
datetimes.Rmd Drop jekyll markdown 2016-02-17 16:26:32 +11:00
functions.Rmd Pull out iteration and pipes chapters 2016-03-01 08:29:58 -06:00
harvard-sentences.txt Slowly working through different stringr functions. 2015-10-30 09:55:03 -05:00
import.Rmd Drop jekyll markdown 2016-02-17 16:26:32 +11:00
index.rmd Add book title 2016-03-02 07:11:46 -06:00
intro.Rmd Run common code at the start of every chapter 2016-02-17 16:33:25 +11:00
issues.json More writing about purrr and lists 2015-11-21 08:31:32 +13:00
iteration.Rmd Pull out iteration and pipes chapters 2016-03-01 08:29:58 -06:00
lists.Rmd Pull out iteration and pipes chapters 2016-03-01 08:29:58 -06:00
model-assess.Rmd Drop jekyll markdown 2016-02-17 16:26:32 +11:00
model-vis.Rmd Drop jekyll markdown 2016-02-17 16:26:32 +11:00
model.Rmd Fixing typos 2016-02-24 15:56:08 -05:00
pipes.Rmd Pull out iteration and pipes chapters 2016-03-01 08:29:58 -06:00
program.Rmd Pull out iteration and pipes chapters 2016-03-01 08:29:58 -06:00
r4ds.Rproj Switch to rstudio/bookdown 2016-02-17 06:39:15 +11:00
relational-data.Rmd Run common code at the start of every chapter 2016-02-17 16:33:25 +11:00
rmarkdown.Rmd Drop jekyll markdown 2016-02-17 16:26:32 +11:00
robust-code.Rmd Typo in code chunk comments 2016-02-27 12:11:50 -08:00
science.Rmd Drop jekyll markdown 2016-02-17 16:26:32 +11:00
shiny.Rmd Drop jekyll markdown 2016-02-17 16:26:32 +11:00
strings.Rmd Drop jekyll markdown 2016-02-17 16:26:32 +11:00
tidy.Rmd Drop jekyll markdown 2016-02-17 16:26:32 +11:00
transform.Rmd Run common code at the start of every chapter 2016-02-17 16:33:25 +11:00
understand.Rmd Drop jekyll markdown 2016-02-17 16:26:32 +11:00
variation.Rmd Run common code at the start of every chapter 2016-02-17 16:33:25 +11:00
visualize.Rmd Run common code at the start of every chapter 2016-02-17 16:33:25 +11:00
work.Rmd Drop jekyll markdown 2016-02-17 16:26:32 +11:00

README.md

R packages

This is code and text behind the R for data science book.

The site is built using [bookdown]

devtools::install_github("yihui/knitr")
devtools::install_github("rstudio/bookdown")

jekyll, with a custom plugin to render .rmd files with knitr and pandoc. To create the site, you need:

  • jekyll gem: gem install jekyll
  • bookdown: install_github("hadley/bookdown")
  • pandoc
  • knitr: install.packages("knitr")

The R packages used in this book can be installed via

devtools::install_github("hadley/r4ds")