Skip to content

Instantly share code, notes, and snippets.

@jpotts18
Last active January 15, 2020 05:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jpotts18/dac94dc9514172ce020c to your computer and use it in GitHub Desktop.
Save jpotts18/dac94dc9514172ce020c to your computer and use it in GitHub Desktop.
Linear Regression on Boston Housing Data
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@comckay
Copy link

comckay commented Dec 7, 2016

You have an error in your formulation of $$\hat{Y} = \beta_0 + \beta_1 x_1 + \beta_2 x_2 + \beta_3 x_3 + ... \beta_n N$$
it should be $$\hat{Y} = \beta_0 + \beta_1 x_1 + \beta_2 x_2 + \beta_3 x_3 + ... \beta_n x_n$$

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment