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

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


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

In [ ]: