About matplotlib

常用函数:

import matplotlib.pyplot as plt
plt.plot(x, y, 'ro')
plt.xlabel('x')
plt.ylabel('y')
plt.savefig('fig.png')
plt.clf()  # clear figure

你可能感兴趣的:(About matplotlib)