I have imported plotnine and run the following code.
The examples run, but when I run a plot like the one below I get all the x and y values printed in the margin. Anyone else r
x = np.arange(-5.,5.,0.25,dtype=float)
gamma = 5.
y = gamma * x / (x ** 2 + gamma)
gg = pd.DataFrame()
gg['x'] = x
gg['y'] = y
p = ggplot(aes(x,y),gg) + geom_point()
p.save(filename = 'test3.png', height=5, width=5, units = 'cm')
p