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

In [2]:
ggplot(meat, aes(x='date', ymin='beef - 1000', ymax='beef + 1000')) + \
    geom_ribbon() + \
    scale_x_date(labels=date_format('%B %-d, %Y'))


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

In [3]:
ggplot(meat, aes(x='date', ymin='beef*0.9', ymax='beef*1.1')) + \
    geom_ribbon() + \
    scale_x_date(labels=date_format('%B %-d, %Y'))


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

In [4]:
ggplot(meat, aes(x='date', y='beef', ymin='beef*0.9', ymax='beef*1.1')) + \
    geom_ribbon() + \
    geom_point() + \
    scale_x_date(labels=date_format('%B %-d, %Y'))


Out[4]:
<ggplot: (288635925)>

In [ ]: