-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.Rmd
55 lines (44 loc) · 1.85 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
---
title: Easy Bayes with rstanarm and brms
author: |
<span class="noem">Michael Clark</span>
<a href='https://m-clark.github.io/'>m-clark.github.io</a>
<img class='arc' src="img/CSCAR_logos/signature-acronym.png" alt="University of Michigan: CSCAR">
<img class='cscar' src="img/ARC_logos/ARC-acronym-signature.png" alt="University of Michigan: Advanced Research Computing">
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
output:
bookdown::gitbook
always_allow_html: yes
documentclass: book
bibliography: BayesBasics.bib
biblio-style: apalike
link-citations: yes
description: "This is a workshop introducing modeling techniques with the rstanarm and brms packages."
cover-image: 'img/nineteeneightyR.png'
url: 'https\://m-clark.github.io/easy-bayes/' # evidently the \: is required or you'll get text in the title/toc area
favicon: 'img/R.ico'
github-repo: 'm-clark/'
nocite: |
@mcelreath2016, @kruschke2014doing
---
```{r chunk_setup, include=FALSE, eval=TRUE}
knitr::opts_chunk$set(echo = T, message=F, warning=F, comment=NA, autodep=F,
eval=F, cache.rebuild=F, cache=T, R.options=list(width=120),
fig.width=8, fig.align = 'center', dev.args=list(bg = 'transparent'), dev='svglite')
```
```{r load_common_packages, echo=FALSE, cache=FALSE, eval=TRUE, cache=FALSE}
library(tidyverse); library(ggplot2movies); library(tibble); library(tidyext);
library(broom); library(kableExtra); library(rstanarm); library(brms)
kable_df <- function(..., digits=3) {
kable(..., digits=digits) %>%
kable_styling(full_width = F)
}
```
#
```{r rimg, fig.align='center', out.width=200, echo=FALSE, cache=FALSE, eval=TRUE}
knitr::include_graphics('img/198R.png', dpi = NA)
```
```{r ccimg, fig.align='center', out.width=0, fig.show='hide', echo=FALSE, eval=TRUE}
knitr::include_graphics('img/mc_logo.png', dpi = NA)
```