Answers for "matplotlib limit size of axes"

6

axis number size matplotlib

ax.tick_params(axis="x", labelsize=8)
ax.tick_params(axis="y", labelsize=20)
Posted by: Guest on March-29-2020
0

create limit using matplotlib

axes = plt.gca()
axes.set_xlim([xmin,xmax])
axes.set_ylim([ymin,ymax])
Posted by: Guest on July-15-2020

Python Answers by Framework

Browse Popular Code Answers by Language