-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmtcars.Rmd
executable file
·96 lines (72 loc) · 1.84 KB
/
mtcars.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
---
title: "Uncertainty examples with mtcars"
output:
github_document:
toc: true
---
```{r setup}
library(tidyverse)
library(modelr)
library(brms)
library(tidybayes)
library(gganimate)
```
```{r}
mtcars %>%
ggplot(aes(x = hp, y = mpg)) +
geom_point()
```
```{r}
m_linear = brm(mpg ~ hp, data = mtcars)
```
```{r}
mtcars %>%
data_grid(hp = seq_range(hp, n = 101)) %>%
add_fitted_draws(m_linear, n = 100) %>%
ggplot(aes(x = hp)) +
geom_line(aes(y = .value, group = .draw), alpha = .2) +
geom_point(aes(y = mpg), data = mtcars)
```
```{r}
mtcars %>%
data_grid(hp = seq_range(hp, n = 101)) %>%
add_fitted_draws(m_linear, n = 100) %>%
ggplot(aes(x = hp, y = mpg)) +
geom_line(aes(y = .value)) +
geom_point(data = mtcars) +
transition_manual(.draw)
```
```{r}
m_loglog = brm(mpg ~ hp, data = mtcars, family = lognormal)
```
```{r}
mtcars %>%
data_grid(hp = seq_range(hp, n = 101)) %>%
add_fitted_draws(m_loglog, n = 100) %>%
ggplot(aes(x = hp, y = mpg)) +
geom_line(aes(y = .value)) +
geom_point(data = mtcars) +
transition_manual(.draw)
```
```{r}
mtcars_clean = mtcars %>%
mutate(transmission = factor(am, labels = c("automatic", "manual")))
m_loglog_trans = brm(mpg ~ hp * transmission, data = mtcars_clean, family = lognormal)
```
```{r}
mtcars_clean %>%
data_grid(hp = seq_range(hp, n = 101), transmission) %>%
add_fitted_draws(m_loglog_trans, n = 100) %>%
ggplot(aes(x = hp, y = mpg, color = transmission)) +
geom_line(aes(y = .value, group = paste(transmission, .draw)), alpha = .1) +
geom_point(data = mtcars_clean)
```
```{r}
mtcars_clean %>%
data_grid(hp = seq_range(hp, n = 101), transmission) %>%
add_fitted_draws(m_loglog_trans, n = 100) %>%
ggplot(aes(x = hp, y = mpg, color = transmission)) +
geom_line(aes(y = .value)) +
geom_point(data = mtcars_clean) +
transition_manual(.draw)
```