Get startedGet started for free

Assessing model performance

To test which approach is best—the whole dataset model or the models for each house age category—you need to calculate some metrics. Here's, you'll compare the coefficient of determination and the residual standard error for each model.

Four models of price versus no. of convenience stores (mdl_all_ages, mdl_0_to_15, mdl_15_to_30, and mdl_30_to_45) are available; dplyr and broom are loaded.

This exercise is part of the course

Intermediate Regression in R

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Get the coeff. of determination for mdl_all_ages
___



# Get the coeff. of determination for mdl_0_to_15
___



# Get the coeff. of determination for mdl_15_to_30
___



# Get the coeff. of determination for mdl_30_to_45
___
Edit and Run Code