Created
April 23, 2018 17:15
-
-
Save emredjan/993160ef9c4baea4fcf21b96eee55396 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%matplotlib inline | |
import numpy as np | |
import pandas as pd | |
import seaborn as sns | |
import matplotlib.pyplot as plt | |
import statsmodels.formula.api as smf | |
from statsmodels.graphics.gofplots import ProbPlot | |
plt.style.use('seaborn') # pretty matplotlib plots | |
plt.rc('font', size=14) | |
plt.rc('figure', titlesize=18) | |
plt.rc('axes', labelsize=15) | |
plt.rc('axes', titlesize=18) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment