set limits matplotlib code example
Example 1: set axis limits matplotlib
axes.set_xlim([xmin, xmax])
axes.set_ylim([ymin, ymax])
Example 2: matplotlib axes limits
axes.set_xlim([xmin, xmax])
axes.set_ylim([ymin, ymax])
axes.set_zlim([zmin, zmax])
Example 3: subplot matplotlib set limits
ax1.set_xlim([0,3000])
ax1.set_ylim([0,20])