In [3]:
%matplotlib inline
from ggplot import *
import pandas as pd

In [9]:
df = pd.melt(meat, id_vars="date")

In [16]:
ggplot(diamonds, aes(x='carat', y='price', color='cut')) + \
    geom_point() + \
    facet_grid("clarity", "color")


Out[16]:
<ggplot: (297340641)>

In [18]:
ggplot(diamonds, aes(x='carat', y='price')) + \
    stat_smooth(method='loess') + \
    facet_grid("clarity", "cut")


Out[18]:
<ggplot: (316040685)>

In [ ]: