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 506f26c commit 70149d6Copy full SHA for 70149d6
1 file changed
examples/pylab_examples/boxplot_demo2.py
@@ -16,6 +16,9 @@
16
randomDists = ['Normal(1,1)',' Lognormal(1,1)', 'Exp(1)', 'Gumbel(6,4)',
17
'Triangular(2,9,11)']
18
N = 500
19
+
20
+np.random.seed(3) # make identical plots each time
21
22
norm = np.random.normal(1,1, N)
23
logn = np.random.lognormal(1,1, N)
24
expo = np.random.exponential(1, N)
0 commit comments