-->

Non-repetitive random number in numpy

2019-01-13 17:25发布

问题:

My question is: How can I generate non-repetitive random numbers in numpy?

list = np.random.random_integers(20,size=(10))

回答1:

If you don't insist on using NumPy, you can use random.sample() from the standard library:

print random.sample(range(20), 10)

With NumPy, you will have to use numpy.random.shuffle() and slicing:

a = numpy.arange(20)
numpy.random.shuffle(a)
print a[:10]


回答2:

I think numpy.random.sample doesn't work right, now. This is my way:

import numpy as np
np.random.choice(range(20), 10, replace=False)


回答3:

You can get this by sorting as well:

random_numbers = np.random.random([num_samples, max_int])
samples = np.argsort(random_numbers, axis=1)


回答4:

Simply generate an array that contains the required range of numbers, then shuffle them by repeatedly swapping a random one with the 0th element in the array. This produces a random sequence that doesn't contain duplicate values.