Answers for "custom position for axis matplotlib"

0

custom position for axis matplotlib

fig, ax = plt.subplots()
x,y,height,width = 0,1,1,1
ax.set_position((x,y,height, width), which='both')
Posted by: Guest on April-24-2022

Python Answers by Framework

Browse Popular Code Answers by Language