НачатьНачать бесплатно

Changing Priors

Now let's change the prior distributions for our Spotify model. Changing the priors allows us to specify our own beliefs about the expected values of the parameters. The songs dataset is already loaded.

Это упражнение является частью курса

Bayesian Regression Modeling with rstanarm

Посмотреть курс

Инструкции к упражнению

  • Predict popularity from song_age
  • Create a model, flat_prior that uses flat priors for all parameters
  • Print a summary of the prior distributions to the screen

Интерактивное практическое упражнение

Попробуйте выполнить это упражнение, дополнив этот пример кода.

# Estimate a model with flat priors
flat_prior <- stan_glm(___, data = ___,
    ___ = ___, ___ = ___, ___ = ___)

# Print a prior summary
___(flat_prior)
Редактировать и запускать код