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

In [4]:
ggplot(meat, aes(x='date', y='beef')) + \
    geom_point() + \
    geom_line() + \
    scale_x_date(format='%Y')


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

In [ ]: