In [1]:
%matplotlib inline
from ggplot import *
In [2]:
ggplot(mtcars, aes(x='wt', y='mpg')) + geom_point() + theme_xkcd()
Out[2]:
In [3]:
ggplot(mtcars, aes(x='wt', y='mpg', color='cyl')) + geom_point() + theme_xkcd()
Out[3]:
In [4]:
ggplot(meat, aes(x='date', y='beef')) + geom_line(color='red') + theme_xkcd()
Out[4]:
In [ ]: