Last active
March 23, 2019 09:13
-
-
Save alhoo/f68f8111cdc820cbb7455610c41a9f1b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
from IPython.core.display import display, HTML | |
display(HTML("<style>.container { width:100% !important; }</style>")) | |
%pylab inline | |
pylab.rcParams['figure.figsize'] = (20, 16) | |
from collections import Counter | |
from glob import glob | |
from datetime import datetime, timedelta | |
import numpy as np | |
import pandas as pd | |
import bokeh as bh | |
import sklearn | |
from bokeh.plotting import figure, show, output_notebook | |
from bokeh.sampledata.iris import flowers | |
output_notebook() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment