I've got a large set of data (20,000 data points), from which I want to take repeated samples of 10 data points. However, once I've picked those 10 data points, I want them to not be picked again.
I've tried using the sample
function, but it doesn't seem to have an option to sample without replacement over multiple calls of the function. Is there a simple way to do this?