Matplotlib is how we plot our devious plots. Mostly in the form of functions.
Installation
import matplotlib.pyplot as pltSimple Plot
import matplotlib.pyplot as plt
x = range(100)
y = range(100)
plt.plot(x,y)
plot.show()Matplotlib is how we plot our devious plots. Mostly in the form of functions.
import matplotlib.pyplot as pltimport matplotlib.pyplot as plt
x = range(100)
y = range(100)
plt.plot(x,y)
plot.show()