I’m trying to produce a 0 or 1 with numpy’s random.rand.
np.random.rand()
produces a random float between 0 and 1 but not just a 0 or a 1.
Thank you.
Advertisement
Answer
You can use np.random.choice with a list of [0,1]
, or use np.random.radint with a range of 0,2
JavaScript
x
15
15
1
In [1]: import numpy as np
2
3
In [2]: np.random.choice([0,1])
4
Out[2]: 0
5
6
In [5]: np.random.choice([0,1])
7
Out[5]: 1
8
9
In [8]: np.random.randint(2)
10
Out[8]: 0
11
12
In [9]: np.random.randint(2)
13
Out[9]: 1
14
15
You can also use the random module for the equivalent of these functions