leo.blog();

Matplotlib

matplotlib is a graphing / plotting library for Python. It has an API similar to Matlab plotting functions.

Example

import matplotlib.pyplot as plt

x = [1, 2, 3, 4, 5]
plt.plot(x)
plt.show()

Problems

Leave a Comment