MatplotlibΒΆ

  • Designed to make simple things simple and complicated things possible.
>>> import numpy as np
>>> import matplotlib.pyplot as plt
>>> x = np.arange(10)
>>> plt.plot(x, x*x)
>>> plt.ylabel('some numbers')
>>> plt.show()