Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8291567 commit 11d9ec3Copy full SHA for 11d9ec3
1 file changed
examples/statistics/boxplot_color_demo.py
@@ -12,7 +12,7 @@
12
13
# Random test data
14
np.random.seed(123)
15
-all_data = [np.random.normal(0, std, size=(100, 4)) for std in range(1, 4)]
+all_data = [np.random.normal(0, std, size=100) for std in range(1, 4)]
16
labels = ['x1', 'x2', 'x3']
17
18
fig, axes = plt.subplots(nrows=1, ncols=2, figsize=(12, 5))
0 commit comments