In [1]:
%matplotlib inline 
%pylab inline
import pandas as pd

pd.set_option('display.mpl_style', 'default')
figsize(15, 5)
fixed_df = pd.read_csv('data/bikes.csv', sep=';', encoding='latin1', parse_dates=['Date'], dayfirst=True, index_col='Date')
fixed_df[:3]


Populating the interactive namespace from numpy and matplotlib
/home/tony/Envs/octaveplay/local/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2885: FutureWarning: 
mpl_style had been deprecated and will be removed in a future version.
Use `matplotlib.pyplot.style.use` instead.

  exec(code_obj, self.user_global_ns, self.user_ns)
Out[1]:
Berri 1 Brébeuf (données non disponibles) Côte-Sainte-Catherine Maisonneuve 1 Maisonneuve 2 du Parc Pierre-Dupuy Rachel1 St-Urbain (données non disponibles)
Date
2012-01-01 35 NaN 0 38 51 26 10 16 NaN
2012-01-02 83 NaN 1 68 153 53 6 43 NaN
2012-01-03 135 NaN 2 104 248 89 3 58 NaN

In [4]:
fixed_df.plot(figsize=(15, 10))


Out[4]:
<matplotlib.axes._subplots.AxesSubplot at 0x7fbb1d8b1050>