A short code for when you want to quickly check the operation of matplotlib at hand
sample
import matplotlib.pyplot as plt plt.plot([1,2,10,18,19,20]) plt.show()
Recommended Posts