LoslegenKostenlos starten

Specifying informative priors

Now let's specify a custom prior so that we can have more control over our model. The songs dataset is already loaded.

Diese Übung ist Teil des Kurses

<Kurs>Bayesian Regression Modeling with rstanarm</Kurs>
Kurs ansehen

Übungsanweisungen

  • Predict popularity from song_age
  • Specify a normal prior distribution for the predictor with a mean of 20 and standard deviation of 0.1
  • Print the prior summary to the screen

Interaktive praktische Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# Estimate the model with an informative prior
inform_prior <- stan_glm(___ ~ ___, data = songs,
    ___ = normal(___ = 20, ___ = 0.1, autoscale = FALSE))

# Print the prior summary
___(inform_prior)
Code bearbeiten und ausführen