Abijah
Abijah

Reputation: 534

Why does Jupyter sometimes put plots in scrollable frames?

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?

enter image description here

Upvotes: 3

Views: 1698

Answers (1)

blackraven
blackraven

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 enter image description here

Upvotes: 10

Related Questions