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]:
In [16]:
[x for x in range(1,10)]
Out[16]:
In [20]:
plt.plot([math.log(x) for x in range(1,1000)])
Out[20]:
In [ ]: