Measuring the performance of the regression model

To measure the performance of a regression model, we can calculate the distance from the predicted output and actual output as a quantifier of model performance. In this calculation, we often use root mean square error (RMSE) and relative square error (RSE) as common measurements. In the following recipe, we illustrate how to compute these measurements from a built regression model.

Getting ready

You need to have completed the previous recipe by fitting the house rental data into a regression model and have the fitted model assigned to the variable lmfit.

How to do it…

Perform the following steps to measure the performance of the regression model:

  1. Retrieve predicted values by using the predict function: ...

Get R for Data Science Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.