lduran2 / linear_regression_lesson

A quick lesson in settting up data for a linear regression, applying the regression in Python and evaluating the result.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

expected missing value for total_bedrooms not found

lduran2 opened this issue · comments

The total number of bedrooms in the original data has missing values. These are not found as of 10d82e9

This is because each next spreadsheets use the values of the current spreadsheet by equation. In that situation, when the current value is blank, we end up with a value of 0 in the next spreadsheet.

Proposed solution is to replace all empty cells with a string such as BLANK.

fixed by dd2279c