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

In [7]:
ggplot(meat, aes(x='date', y='beef')) + \
    geom_area()


Out[7]:
<ggplot: (285532941)>

In [ ]: