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

Predicted score distributions

Now let's practicing using posterior predictive scores to look at how our Spotify model fits to the real data.

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

Bayesian Regression Modeling with rstanarm

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

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

  • Calculate the posterior predicted scores for stan_model
  • Print a summary of the observed popularity scores in the songs data
  • Compare this to a summary of the 1st and 10th replications

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

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

# Calculate posterior predictive scores
predictions <- ___(stan_model)

# Print a summary of the observed data
summary(songs$___)

# Print a summary of the 1st replication
summary(predictions[___,])

# Print a summary of the 10th replication
summary(predictions[___,])
Редактировать и запускать код