Modifică modelul pentru a folosi un prior informativ
Codul afișat reprezintă modelul vechi pe care l-ai construit de la zero în capitolul 2.
Acest exercițiu face parte din cursul
Fundamentals of Bayesian Data Analysis in R
Instrucțiuni pentru exercițiu
- Modifică modelul pentru a folosi noul prior informativ pentru
proportion_clicks, pe care tocmai l-ai selectat:
rbeta(n_draws, shape1 = 5, shape2 = 95)
Exercițiu interactiv practic
Încearcă acest exercițiu completând acest cod de exemplu.
n_draws <- 100000
n_ads_shown <- 100
# Change the prior on proportion_clicks
proportion_clicks <-
runif(n_draws, min = 0.0, max = 0.2)
n_visitors <-
rbinom(n_draws, size = n_ads_shown,
prob = proportion_clicks)
prior <-
data.frame(proportion_clicks, n_visitors)
posterior <-
prior[prior$n_visitors == 13, ]
# This plots the prior and the posterior in the same plot
par(mfcol = c(2, 1))
hist(prior$proportion_clicks,
xlim = c(0, 0.25))
hist(posterior$proportion_clicks,
xlim = c(0, 0.25))