Skip to content
New Workbook
Sign up
Introduction to Regression with statsmodels in Python

Introduction to Regression with statsmodels in Python

Run the hidden code cell below to import the data used in this course.

# Importing pandas
import pandas as pd

# Importing the course arrays
conversion = pd.read_csv("datasets/ad_conversion.csv")
churn = pd.read_csv("datasets/churn.csv")
fish = pd.read_csv("datasets/fish.csv")
sp500 = pd.read_csv("datasets/sp500_yearly_returns.csv")
taiwan = pd.read_csv("datasets/taiwan_real_estate2.csv")

Take Notes

Add notes about the concepts you've learned and code cells with code you want to keep.

Add your notes here

# Add your code snippets here