In [9]:
import matplotlib.pyplot as plt
%matplotlib inline

In [11]:
plt.plot([1,2,3,4])
plt.ylabel('some numbers')
plt.show()



In [14]:
import math

In [15]:
math.log(2)


Out[15]:
0.6931471805599453

In [16]:
[x for x in range(1,10)]


Out[16]:
[1, 2, 3, 4, 5, 6, 7, 8, 9]

In [20]:
plt.plot([math.log(x) for x in range(1,1000)])


Out[20]:
[<matplotlib.lines.Line2D at 0x1080e0390>]

In [ ]: