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

In [7]:
df = pd.DataFrame(dict(x=range(3), y=range(3), crayon=['sunset orange', 'inchworm', 'cadet blue']))
p = ggplot(aes(x='x', y='y', color='crayon'), data=df)
p += geom_point(size=850)
p + scale_color_crayon()


Out[7]:
<ggplot: (285370365)>

In [ ]: