mydata.plot(figsize=(12, 8))

import seaborn as sns
mydata.plot(figsize=(12, 8))

##BOKEH
from bokeh.plotting import show
from bokeh.io import output_notebook
from bokeh.charts import Line

#doesn't work in spyder!!
output_notebook()
p = Line(mydata, legend='bottom_right')
p.width = 600
p.height = 400
show(p)

#HTML
from bokeh.plotting import figure
from bokeh.palettes import RdYlBu11
from bokeh.plotting import show, output_file, reset_output

output_file("bokehplot.html")

mytools = ['pan', 'box_zoom', 'resize', 'wheel_zoom',
           'reset']  # Does not allow save and question options
p = figure(width=800, height=600, tools=mytools, x_axis_type='datetime')
cols = mydata.columns.values[:-1]
print cols
mypalette = RdYlBu11[0:len(cols)]