-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.Rmd
60 lines (43 loc) · 1.33 KB
/
index.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
57
58
59
60
---
title: "Efficient R programming"
author: "Colin Gillespie and Robin Lovelace"
date: "`r Sys.Date()`"
knit: "bookdown::render_book"
output:
bookdown::html_chapters:
css: style.css
md_extensions: +markdown_in_html_blocks
bookdown::pdf_book:
includes:
in_header: preamble.tex
keep_tex: yes
latex_engine: xelatex
documentclass: book
bibliography: refs.bib
biblio-style: apalike
link-citations: yes
---
<script type="text/javascript" async
src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
__Dependencies for this book__
This book has been written in **Markdown** and was built with the bookdown package.
This book has been written in **Markdown** and was built with the bookdown package.
The html version is also [available](https://csgillespie.github.io/efficientR/).
Pull requests are welcome.
To build this book, the following packages must be installed.
```{r eval=FALSE}
pkgs = c(
"numbers", "dplyr", "readxl",
"readr", "grid", "png",
"rbenchmark", "microbenchmark",
"fortunes", "pryr", "ggplot2")
to_install = pkgs[!pkgs %in% installed.packages()]
if(length(to_install))
install.packages(to_install)
```
GitHub packages to install.
```{r eval=FALSE}
gh_pkgs = c("csgillespie/efficient_pkg", "rstudio/bookdown")
devtools::install_github(gh_pkgs)
```