Created
April 25, 2018 18:14
-
-
Save GregHilston/ff0582657ff7cc3b8bfdde58b6d3f7c7 to your computer and use it in GitHub Desktop.
Prepares our notebook, defining our imports and global variables
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
# ensure our graphs are displayed inline | |
%matplotlib inline | |
import os | |
import pandas as pd | |
import matplotlib.pyplot as plt | |
import seaborn as sb | |
import numpy as np | |
import folium | |
from folium import plugins | |
from folium.plugins import HeatMap | |
from folium.plugins import MarkerCluster | |
# useful to define where we'll be storing our data | |
data_directory = "data/" | |
# useful to define where we'll be storing our output | |
output_directory = "output/" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment