Skip to content

Commit 1938b4f

Browse files
authored
DOC: "Setting layouts" plots' label size GH34305 (#34394)
1 parent 4d44909 commit 1938b4f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

doc/source/user_guide/visualization.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1332,7 +1332,7 @@ otherwise you will see a warning.
13321332

13331333
.. ipython:: python
13341334
1335-
fig, axes = plt.subplots(4, 4, figsize=(6, 6))
1335+
fig, axes = plt.subplots(4, 4, figsize=(9, 9))
13361336
plt.subplots_adjust(wspace=0.5, hspace=0.5)
13371337
target1 = [axes[0][0], axes[1][1], axes[2][2], axes[3][3]]
13381338
target2 = [axes[3][0], axes[2][1], axes[1][2], axes[0][3]]
@@ -1369,6 +1369,7 @@ Another option is passing an ``ax`` argument to :meth:`Series.plot` to plot on a
13691369
.. ipython:: python
13701370
13711371
fig, axes = plt.subplots(nrows=2, ncols=2)
1372+
plt.subplots_adjust(wspace=0.2, hspace=0.5)
13721373
df['A'].plot(ax=axes[0, 0]);
13731374
axes[0, 0].set_title('A');
13741375
df['B'].plot(ax=axes[0, 1]);

0 commit comments

Comments
 (0)