Skip to content
Snippets Groups Projects
Commit cbe95e9c authored by Jeffrey Pullin's avatar Jeffrey Pullin
Browse files

Add more visualisation of possible mean parameter choices

parent 5321840b
No related branches found
No related tags found
No related merge requests found
......@@ -57,3 +57,12 @@ shape
rate
shape / rate
```
```{r other-params}
data.frame(x = seq(1, 10, by = 0.1)) %>%
ggplot(aes(x)) +
geom_function(fun = ~ dgamma(.x, 1, 1)) +
geom_function(fun = ~ dgamma(.x, 1, 2)) +
geom_function(fun = ~ dgamma(.x, 1, 3)) +
geom_function(fun = ~ dgamma(.x, 1, 4))
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment