how to plot a graph using matplotlib
from matplotlib import pyplot as plt plt.plot([0, 1, 2, 3, 4, 5], [0, 1, 4, 9, 16, 25]) plt.show()
how to plot a graph using matplotlib
from matplotlib import pyplot as plt plt.plot([0, 1, 2, 3, 4, 5], [0, 1, 4, 9, 16, 25]) plt.show()
matplotlib plot
import matplotlib.pyplot as plt fig = plt.figure(1) #identifies the figure plt.title("Y vs X", fontsize='16') #title plt.plot([1, 2, 3, 4], [6,2,8,4]) #plot the points plt.xlabel("X",fontsize='13') #adds a label in the x axis plt.ylabel("Y",fontsize='13') #adds a label in the y axis plt.legend(('YvsX'),loc='best') #creates a legend to identify the plot plt.savefig('Y_X.png') #saves the figure in the present directory plt.grid() #shows a grid under the plot plt.show()
how to plotting points on matplotlib
import matplotlib.pyplot as plt import numpy as np data = np.random.rand(1024,2) plt.scatter(data[:,0],data[:,1]) plt.show() // Don't be // fooled by this simplicity— plt.scatter() is a rich command.
pyplot python
import numpy as np import matplotlib.pyplot as plt x = np.array([1, 3, 4, 6]) y = np.array([2, 3, 5, 1]) plt.plot(x, y) plt.show()
matplotlib plot
>>> rng = np.arange(50) >>> rnd = np.random.randint(0, 10, size=(3, rng.size)) >>> yrs = 1950 + rng >>> fig, ax = plt.subplots(figsize=(5, 3)) >>> ax.stackplot(yrs, rng + rnd, labels=['Eastasia', 'Eurasia', 'Oceania']) >>> ax.set_title('Combined debt growth over time') >>> ax.legend(loc='upper left') >>> ax.set_ylabel('Total debt') >>> ax.set_xlim(xmin=yrs[0], xmax=yrs[-1]) >>> fig.tight_layout()
pyplot.plot
plot([x], y, [fmt], *, data=None, **kwargs) plot([x], y, [fmt], [x2], y2, [fmt2], ..., **kwargs)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us