-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.Rmd
52 lines (41 loc) · 1.42 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
---
title: "(Re)Doing Bayesain Data Analysis"
author: "R Pruim"
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
documentclass: book
biblio-style: apalike
bibliography: /Users/rpruim/tex/inputs/BibTeX/all.bib
link-citations: yes
description: "Code, exercises and discussion to accompany a course taught from Kruschke's Doing Bayesian Data Analysis (2ed)"
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(
echo = TRUE,
fig.width = 5,
fig.height = 9,
out.width = "65%"
)
library(ggformula)
library(R2jags)
library(rstan)
library(coda)
```
# What's in These Notes
This "book" is a companion to Kruschke's *Doing Bayesian Data Analysis*.
The main reasons for this companion are to use a different style of R code that includes:
* use of modern packages like `tidyverse`, `R2jags`, `bayesplot`, and `ggformula`;
* adherence to a different style guide;
* less reliance on manually editing scripts and more use of resusable code available in packages;
* a workflow that takes advantage of RStudio and RMarkdown.
This is a work in progress. Please accept my apologies in advance for
* errors,
* inconsistencies
* lack of complete coverage
But feel free to
[post an issue on github](https://github.com/rpruim/Kruschke-Notes/issues)
if you spot things that require attention
or care to make suggestions for improvement.
I’ll be teaching from this book in Spring 2019, so I expect rapid development
during those months.
\newpage