I have code that saves a shape with:
savefig("foo.eps", orientation = 'portrait', format = 'eps')
If I do not specify anything, the number will be saved correctly, but when I print it, the figure fills only half of the A4 sheet. If I change the line as:
savefig("foo.eps", papertype = 'a4', orientation = 'portrait', format = 'eps')
Doesnβt touch anything! How to set the size of the figure so that it fills the entire sheet A4? Thank you very much in advance.
python matplotlib
Py-ser
source share