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

Popularity for Observed Songs

Let's practice making predictions about song popularity from the Spotify songs data. This will get us used to the syntax we will use for making predictions for new data that was not observed.

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

Bayesian Regression Modeling with rstanarm

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

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

  • Estimate a model predicting popularity from song_age and artist_name
  • Print a summary of the estimated model
  • Create posterior distributions of the predicted scores for each song
  • Print the first 10 predicted scores for the first 5 songs

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

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

# Estimate the regression model
stan_model <- stan_glm(___, data = songs)

# Print the model summary
___(stan_model)

# Get posteriors of predicted scores for each observation
posteriors <- ___(stan_model)

# Print 10 predicted scores for 5 songs
___[___:___, ___:___]
Редактировать и запускать код