Skip to content

Instantly share code, notes, and snippets.

@khalido
Last active April 2, 2018 23:17
Show Gist options
  • Save khalido/28ff81af9c610587786ed3544cb9cade to your computer and use it in GitHub Desktop.
Save khalido/28ff81af9c610587786ed3544cb9cade to your computer and use it in GitHub Desktop.
# autoreload linked files
%load_ext autoreload
%autoreload 2
# the viz stuff
%matplotlib inline
import matplotlib.pyplot as plt # mpl is the base of all python plotting angst
import seaborn as sns # put some trainer wheels & lipstick on mpl
from IPython import display # to display pics and other stuff which markdown doesn't
# cause data
import pandas as pd # dataframes!
import numpy as np # crunch them numbers
# talk to the web
import requests # easy way to get stuff from the internet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment