Search code examples
pythonsampling

What does replacement mean in numpy.random.choice?


Here explains the function numpy.random.choice. However, I am confused about the third parameter replace. What is it? And in which case will it be useful? Thanks!


Solution

  • It controls whether the sample is returned to the sample pool. If you want only unique samples then this should be false.