pyplot

基本使用

import matplotlib.pyplot as plt

plt.plot(xs, y1s)
plt.plot(xs, y2s, linestyle="-",marker="o",label="line")

plt.show()