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

In [2]:
ggplot(diamonds, aes(x='carat', y='price', color='clarity')) + \
    geom_point() + \
    scale_color_brewer()


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

In [ ]: