Answers for "how to set the size of plot in python"

18

increase figure size in matplotlib

plt.figure(figsize=(20,10))
Posted by: Guest on March-31-2020
0

plot size

from matplotlib.pyplot import figure
figure(num=None, figsize=(8, 6), dpi=80, facecolor='w', edgecolor='k')
Posted by: Guest on November-25-2020

Code answers related to "how to set the size of plot in python"

Python Answers by Framework

Browse Popular Code Answers by Language