library(tidyverse)
<- 1e4
n
<- tibble(
sim mu = rnorm(n = n), # Default-Werte sind mean=0, sd = 1
sigma = runif(n = n, 0, 10)) %>%
mutate(
y = rnorm(n = n, mean = mu, sd = sigma))
ggplot(sim, aes(x = y)) +
geom_density() +
labs(x = "y", y = "Dichte") +
theme_minimal()
Sim-Prior
Exercise
Gegeben dem folgenden Modell, simulieren Sie Daten aus der Prior-Verteilung (Priori-Prädiktiv-Verteilung).
Likelihood: \(h_i \sim \mathcal{N}(\mu, \sigma)\)
Prior für \(\mu\): \(\mu \sim \mathcal{N}(0, 1)\)
Prior für \(\sigma\): \(\sigma \sim \mathcal{U}(0, 10)\)
Solution
Categories:
~