In [1]:
    
%matplotlib inline
from ggplot import *
    
In [2]:
    
ggplot(diamonds, aes(x='cut')) + \
    geom_bar() + \
    scale_x_discrete("Cut (Quality)")
    
    
    Out[2]:
In [ ]: