In [1]:
%matplotlib inline
from ggplot import *

In [2]:
ggplot(meat, aes(x='date', y='beef')) + geom_line() + stat_smooth(method='loess')


Out[2]:
<ggplot: (285113441)>

In [ ]: