Does anybody know how to scale the y-axis with matplotlib? I don't want to change the y-limit, I just want to extend the physical space.
^ ^
| |
| |
+----> |
Before +---->
After
Thanks!
|
|
Does anybody know how to scale the y-axis with matplotlib? I don't want to change the y-limit, I just want to extend the physical space.
Thanks!
|
||
|
|
|
|
just use a larger height value when you instantiate the figure:
where for a figure already created, i believe there is a |
|||
|
|
|
Use the subplots_adjust function to control the abount of whitespace: fig.subplots_adust(bottom=0.05, top=0.95) There is an icon on the toolbar to do this interactively with a widget |
||
|