In [14]:
import matplotlib.pyplot as plt
In [15]:
x=range(0,10)
In [16]:
y=[23,34,56,67,78,23,45,12,45,5]
In [17]:
plt.plot(x,y)
Out[17]:
In [18]:
plt.xlabel("my x label is nice")
Out[18]:
In [19]:
plt.ylabel("my y label is great")
Out[19]:
In [20]:
plt.title("my title is wonderful")
Out[20]:
In [21]:
plt.show()