Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 11d9ec3

Browse files
committed
fix sample size in boxplot demo
1 parent 8291567 commit 11d9ec3

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
@@ -12,7 +12,7 @@
1212

1313
# Random test data
1414
np.random.seed(123)
15-
all_data = [np.random.normal(0, std, size=(100, 4)) for std in range(1, 4)]
15+
all_data = [np.random.normal(0, std, size=100) for std in range(1, 4)]
1616
labels = ['x1', 'x2', 'x3']
1717

1818
fig, axes = plt.subplots(nrows=1, ncols=2, figsize=(12, 5))

0 commit comments

Comments
 (0)