Simple Linear Regression | |||
Pages:
01_intro 02_formulas 03_data 04_implementation 05_gradient_descent 99_formulas 99_nitty_gritty One Page |
01_intro
20160102
IntroductionYou have a bunch of related x,y coordinates (eg. the house sales in function of surface area) and you want to find out what line is a good representation of that data. Ie. you want to apply 'simple linear regression'. The resulting line can be represented by this function: y = w₁ x + w₀, whereby w₁ is called the slope and w₀ is the intercept. |