for i in range(10): print i, i**2, i**3
0 0 0 1 1 1 2 4 8 3 9 27 4 16 64 5 25 125 6 36 216 7 49 343 8 64 512 9 81 729
from ggplot import * %matplotlib inline ggplot(aes(x='date', y='beef'), data=meat) +\ geom_line() +\ stat_smooth(colour='blue', span=0.2)
<ggplot: (288366373)>
for i in range(10): print i, i-1, 1/(i+1.0)
0 -1 1.0 1 0 0.5 2 1 0.333333333333 3 2 0.25 4 3 0.2 5 4 0.166666666667 6 5 0.142857142857 7 6 0.125 8 7 0.111111111111 9 8 0.1