-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.Rmd
38 lines (30 loc) · 810 Bytes
/
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
---
title: "Learning bayesian data analysis with Statistical Rethinking"
author: "Alec L. Robitaille"
date: "`r Sys.Date()` [started: 2021-08-18]"
site: bookdown::bookdown_site
output: bookdown::bs4_book
bibliography: packages.bib
nocite: '@*'
url: https://www.statistical-rethinking.robitalec.ca/
description: |
Learning bayesian data analysis with Statistical Rethinking
---
# Overview {.unnumbered}
Alec L. Robitaille
```{r child="README.md"}
```
### Seed {.unnumbered}
```{r}
set.seed(42)
```
```{r, echo = FALSE}
knitr::opts_knit$set(root.dir = find_root(has_file('_targets.R')))
```
```{r write_bib, include = FALSE}
# automatically create a bib database for R packages
knitr::write_bib(c(
.packages(), 'bookdown', 'stantargets', 'cmdstanr', 'targets', 'data.table'),
'packages.bib'
)
```