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

In [3]:
ggplot(meat, aes(x='date', y='beef')) + \
    geom_area() + \
    scale_x_date(labels=date_format('%B %-d, %Y'))


Out[3]:
<ggplot: (273692089)>

In [5]:
ggplot(meat, aes(x='date', y='beef')) + \
    geom_area() + \
    scale_x_date(labels=date_format('%B %-d, %Y'))


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

In [8]:
ggplot(meat, aes(x='date', y='beef')) + \
    geom_area() + \
    geom_point() + \
    scale_x_date(labels=date_format('%B %-d, %Y'))


Out[8]:
<ggplot: (288764329)>

In [ ]: