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

In [5]:
ggplot(meat, aes(x='date', y='beef')) + \
    geom_point() + \
    stat_smooth(ma=12, color='coral')


Out[5]:
<ggplot: (284489737)>

In [ ]: