Answers for "how fix values of y axis to specific range in matplotlib"

2

set axis limits matplotlib

axes.set_xlim([xmin, xmax])
axes.set_ylim([ymin, ymax])
Posted by: Guest on March-09-2020
0

set axis plt python

from matplotlib import pyplot as plt
plt.axis([0, 10, 0, 20])
Posted by: Guest on November-28-2020

Code answers related to "how fix values of y axis to specific range in matplotlib"

Python Answers by Framework

Browse Popular Code Answers by Language