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]:
In [5]:
ggplot(meat, aes(x='date', y='beef')) + \
geom_area() + \
scale_x_date(labels=date_format('%B %-d, %Y'))
Out[5]:
In [8]:
ggplot(meat, aes(x='date', y='beef')) + \
geom_area() + \
geom_point() + \
scale_x_date(labels=date_format('%B %-d, %Y'))
Out[8]:
In [ ]: