You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
No - not a problem. It's an honest-to-gosh simple request to make life easier.
When you call plot() you create a new window. Two calls, two windows created. If you could pass subplot() arguments to the underlying subplot() call, then you could control the layout with minimal extra code.
Describe the solution you'd like
Add **kwargs to plot() call such that subplot() can be controlled. I believe the following simple edit would work:
While it's very easy to loop and call subplot() myself, I feel that the cool way plot() was implemented should be retained; but with these added controls.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
No - not a problem. It's an honest-to-gosh simple request to make life easier.
When you call
plot()
you create a new window. Two calls, two windows created. If you could passsubplot()
arguments to the underlyingsubplot()
call, then you could control the layout with minimal extra code.Describe the solution you'd like
Add
**kwargs
toplot()
call such thatsubplot()
can be controlled. I believe the following simple edit would work:Describe alternatives you've considered
While it's very easy to loop and call
subplot()
myself, I feel that the cool wayplot()
was implemented should be retained; but with these added controls.The text was updated successfully, but these errors were encountered: