matplotlib.pyplot — Matplotlib 3.6.3 documentation
https://matplotlib.org/stable/api/pyplot_summary.html
WebIt provides an implicit, MATLAB-like, way of plotting. It also opens figures on your screen, and acts as the figure GUI manager. pyplot is mainly intended for interactive plots and simple cases of programmatic plot generation: import numpy as np import matplotlib.pyplot as plt x = np.arange(0, 5, 0.1) y = np.sin(x) plt.plot(x, y) The explicit object-oriented API is …
DA: 50 PA: 51 MOZ Rank: 87