Vom Nutzer gesetzte Priors

Bayesianische Regressionsmodellierung mit rstanarm

Jake Thompson

Psychometrician, ATLAS, University of Kansas

Warum den Standard-Prior ändern?

  • Gute Gründe anzunehmen, dass der Parameter einen bestimmten Wert hat
  • Einschränkungen für den Parameter
Bayesianische Regressionsmodellierung mit rstanarm

Einen Prior festlegen

stan_model <- stan_glm(kid_score ~ mom_iq, data = kidiq,
  prior_intercept = normal(location = 0, scale = 10),
  prior = normal(location = 0, scale = 2.5),
  prior_aux = exponential(rate = 1)
)
Bayesianische Regressionsmodellierung mit rstanarm

Einen Prior festlegen

stan_model <- stan_glm(kid_score ~ mom_iq, data = kidiq,
  prior_intercept = normal(location = 0, scale = 10, autoscale = FALSE),
  prior = normal(location = 0, scale = 2.5, autoscale = FALSE),
  prior_aux = exponential(rate = 1, autoscale = FALSE)
)
Bayesianische Regressionsmodellierung mit rstanarm

Einen Prior festlegen

stan_model <- stan_glm(kid_score ~ mom_iq, data = kidiq,
  prior_intercept = normal(location = 3, scale = 2),
  prior = cauchy(location = 0, scale = 1))
  • Viele verschiedene Priors
    • normal()
    • exponential()
    • student_t()
    • cauchy()
  • ?priors
Bayesianische Regressionsmodellierung mit rstanarm

Flache Priors

stan_model <- stan_glm(kid_score ~ mom_iq, data = kidiq,
  prior_intercept = NULL,
  prior = NULL,
  prior_aux = NULL)
prior_summary(stan_model)
Priors for model 'stan_model' 
 ------
Intercept (after predictors centered)
 ~ flat

Coefficients
 ~ flat

Auxiliary (sigma)
 ~ flat
 ------
See help('prior_summary.stanreg') for more details
Bayesianische Regressionsmodellierung mit rstanarm

Lass uns üben!

Bayesianische Regressionsmodellierung mit rstanarm

Preparing Video For Download...