I'm following this first example in statsmodels
tutorial:
http://statsmodels.sourceforge.net/devel/
How do I specify not to use constant term for linear fit in ols?
# Fit regression model (using the natural log of one of the regressors)
results = smf.ols('Lottery ~ Literacy + np.log(Pop1831)', data=dat).fit()