Skip to content

Instantly share code, notes, and snippets.

@errord
Created August 18, 2014 07:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save errord/7ff55e71b48fcd525ccb to your computer and use it in GitHub Desktop.
Save errord/7ff55e71b48fcd525ccb to your computer and use it in GitHub Desktop.
linear regression with pylab
http://www.wired.com/2011/01/linear-regression-with-pylab/
@errord
Copy link
Author

errord commented Aug 18, 2014

Dot Physics
Linear regression with pylab
BY RHETT ALLAIN 01.14.11 | 8:16 PM | PERMALINK
Share on Facebook0
Tweet
inShare

In order to compliment my linear regression in google docs post (and because I keep forgetting how to do it), here is a quick and dirty guide to linear regression using python and pylab.

First some notes. One, there is some good info on this online (how else do you think I find this stuff?). Here is a great link:

SciPy Cookbook on linear regression.
Second, remember that I do things the ‘hard way’ sometimes. I am not really a programmer, I am a doer. Python lets me get stuff done even if it is not theoretically the best way. That is what makes python so great, really.

On to the problem. First, let me start with some data. I am just making this stuff up.

How about a plot? To do this, I am going to put the data into two lists (again, maybe not the best way to do this but you can’t stop me). Here is the code:

This is the graph it produces:

Now to add a linear function to that data. Here is the final code.

Let me point out a couple of the key lines.

(m,b) = polyfit(x,y,1)

This calls the polyfit function (that is in the pylab module). Polyfit takes two variables and a degree. In this case the degree is 1 for a linear function. The results goes to the two variables m (for the slope) and b for the y-intercept of the equation y = mx + b.

Once I have the coefficients m and b, really I am finished. I could just print these and move on. But everyone always likes a nice graph. How do you graph the fitting function? That is where this line comes in:

yp = polyval([m,b],x)

This just evaluates the polynomial with the coefficients [m,b] and value x. So, for every x data point I have, this calculates a y value from the fitting function. Now I have a new set of values yp.

To plot this, I want the fitting function as a normal line and the original data as just data points. That is why I call both plot() and scatter(). Here is the graph that it produces:

This has a slope of 1.076 and an intercept of 2.771.

And there you have it. Linear fitting in python.

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