Skip to content

Commit 26e762d

Browse files
committed
DOC: make boxplot color figure smaller
1 parent f694505 commit 26e762d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/statistics/boxplot_color_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
all_data = [np.random.normal(0, std, size=100) for std in range(1, 4)]
1616
labels = ['x1', 'x2', 'x3']
1717

18-
fig, axes = plt.subplots(nrows=1, ncols=2, figsize=(12, 5))
18+
fig, axes = plt.subplots(nrows=1, ncols=2, figsize=(9, 4))
1919

2020
# rectangular box plot
2121
bplot1 = axes[0].boxplot(all_data,

0 commit comments

Comments
 (0)