statsmodels

Introduction and datasets

Introduction

builds on numpy, pandas, matplotlib, scipy

OLS

Introduction

import statsmodels.api as sm

results = sm.OLS(y, X).fit()

print(results.summary())

Robust standard errors

Time series

Introduction