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

In [3]:
ggplot(mpg, aes(x='cty', y='hwy', shape='trans')) + \
    geom_point() + \
    geom_hline(y=25)


Out[3]:
<ggplot: (285189981)>

In [ ]: