Multivariable Regression with Python

The general linear model can be exteded from simple linear regression (which only has one predictor value) by adding other terms into the linear model. There is a nice blog article that digs deeper into some of the statistics here: http://connor-johnson.com/2014/02/18/linear-regression-with-python/ This article is a simpler layman's guide to multivariable linear regression with some basic techniques … Continue reading Multivariable Regression with Python

Simple Linear Regression with Galton

Introduction Although recent advances in Deep Learning neural networks get all the interest and air-time at the moment, many practical machine learning tasks can be achieved using simpler techniques. Linear Regression is relatively easy to understand and very effective for solving many prediction problems in an efficient way. This is a simple practical guide to … Continue reading Simple Linear Regression with Galton