Skip to content

Instantly share code, notes, and snippets.

@GregHilston
Created April 25, 2018 18:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GregHilston/ff0582657ff7cc3b8bfdde58b6d3f7c7 to your computer and use it in GitHub Desktop.
Save GregHilston/ff0582657ff7cc3b8bfdde58b6d3f7c7 to your computer and use it in GitHub Desktop.
Prepares our notebook, defining our imports and global variables
# 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