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

In [2]:
ggplot(mtcars, aes(x='factor(cyl)', y='mpg')) + geom_boxplot()


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

In [ ]: