Reputation: 534
Below is a screenshot, in which I create two figures containing 4 plots, with near-identical code. Notably, plots both are the same size, and they are generated by the same line of code:
fig, axes = plt.subplots(2, 2,figsize=(12, 10))
The first is displayed with no sliders, the second is displayed in a frame with sliders.
Why is that?
Upvotes: 3
Views: 1698
Reputation: 5637
But i am creating two figures the same size, why is it doing it for one and not the other?
It must be because you have clicked the rectangle box on the left of the output
Upvotes: 10