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

In [5]:
ggplot(mpg, aes(x='cty', y='hwy')) + \
    geom_point() + \
    geom_abline(slope=1, intercept=5, color='steelblue')


Out[5]:
<ggplot: (285097725)>

In [ ]: