Matplotlib
keyboard_arrow_down 83 guides
chevron_leftCustomizing Plots Cookbook
check_circle
Mark as learned thumb_up
0
thumb_down
0
chat_bubble_outline
0
Comment auto_stories Bi-column layout
settings
Changing size of figures in Matplotlib
schedule Aug 12, 2023
Last updated local_offer
Tags Python●Matplotlib
tocTable of Contents
expand_more Master the mathematics behind data science with 100+ top-tier guides
Start your free 7-days trial now!
Start your free 7-days trial now!
We can change the size of figures in Matplotlib using the figsize
argument or using the set_size_inches
method.
Using figsize argument
Perhaps the easiest way is:
plt.figure(figsize=(10,5))plt.plot([1,2])plt.show()
This will output a graph with width 10 inches and height 5 inches.
Using set_size_inches method
To change the size of figures in Matplotlib, use the following snippet:
fig = matplotlib.pyplot.gcf()fig.set_size_inches(10, 5)plt.plot([1,2])plt.show()
This will output a graph with width 10 inches and height 5 inches.
Published by Isshin Inada
Edited by 0 others
Did you find this page useful?
thumb_up
thumb_down
Comment
Citation
Ask a question or leave a feedback...
thumb_up
0
thumb_down
0
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!