In [1]:
%matplotlib inline
from ggplot import *
In [2]:
ggplot(meat, aes(x='date', y='beef')) + geom_line() + stat_smooth(method='loess')
Out[2]:
In [ ]: