In [1]:
from ggplot import *
%matplotlib inline
In [2]:
# geom_blank don't do shit
ggplot(diamonds, aes(x='price')) + geom_blank()
Out[2]:
In [3]:
# no matter what you throw at it
# geom_blank don't do shit
ggplot(diamonds, aes(x='price')) + \
geom_blank() + \
facet_grid("cut", "clarity")
Out[3]:
In [ ]: