python change axis limits code example
Example 1: set axis limits matplotlib
axes.set_xlim([xmin, xmax])
axes.set_ylim([ymin, ymax])
Example 2: matplotlib set axis limits
import matplotlib.pyplot as plt
import numpy as np
fig = plt.figure()
fig.set_size_inches(8, 8)
ax = fig.add_axes([0.15,0.2,0.7,0.7])
x = np.arange(0, 100, 0.1)
y = np.sin(x)
ax.plot(x,y, color='blue', label='Sine wave')
#Set axis limits
ax.set_xlim([25, 50])
ax.set_ylim([-1, 1])
plt.show()