Skip to content

Instantly share code, notes, and snippets.

@marcopeix
Created August 6, 2019 18:25
Show Gist options
  • Save marcopeix/e51beaf10a98eb8bb6aac8dfb0883861 to your computer and use it in GitHub Desktop.
Save marcopeix/e51beaf10a98eb8bb6aac8dfb0883861 to your computer and use it in GitHub Desktop.
import warnings
warnings.filterwarnings('ignore')
import numpy as np
import pandas as pd
from scipy import stats
import statsmodels.api as sm
import matplotlib.pyplot as plt
%matplotlib inline
DATAPATH = 'data/AirQualityUCI.csv'
data = pd.read_csv(DATAPATH, sep=';')
data.head()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment