ComenzarEmpieza gratis

R-squared for a Bayesian Model

Now let's calculate the R-squared for a Bayesian model so we can assess the predictions of models estimated with stan_glm. The stan_model object is already loaded.

Este ejercicio forma parte del curso

Bayesian Regression Modeling with rstanarm

Ver curso

Instrucciones del ejercicio

  • Calculate the variance of the residuals of stan_model
  • Calculate the variance of the fitted values of stan_model
  • Calculate the R-squared

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Save the variance of residulas
ss_res <- ___(___(stan_model))

# Save the variance of fitted values
ss_fit <- ___(___(stan_model))

# Calculate the R-squared
1 - (___ / (___ + ___))
Editar y ejecutar código