Assignment 2:“Regression Modeling in Practice”

This week’s assignment asks you to test a basic linear regression model for the association between your primary explanatory variable and a response variable, and to create a blog entry describing your results.

modelname = smf.ols(formula='QUANT_RESPONSE ~ QUANT_EXPLANATORY',
data =dataframe).fit()
print(modelname.summary())