Answers for "How to Set Axis Range (xlim, ylim) in Matplotlib"

0

How to Set Axis Range (xlim, ylim) in Matplotlib

fig, ax = plt.subplots(figsize=(12, 6))

x = np.arange(0, 10, 0.1)
y = np.sin(x)
z = np.cos(x)

ax.plot(y, color='blue', label='Sine wave')
ax.plot(z, color='black', label='Cosine wave')

plt.xlim([25, 50])
plt.show()
Posted by: Guest on May-18-2021

Code answers related to "How to Set Axis Range (xlim, ylim) in Matplotlib"

Python Answers by Framework

Browse Popular Code Answers by Language