I have a sorted list, let say: (its not really just numbers, its a list of objects that are sorted with a complicated time consuming algorithm)

mylist = [ 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 ,9  , 10 ]

Is there some python function that will give me N of the items, but will keep the order ?

Example:

randomList = getRandom(mylist,4)
# randomList = [ 3 , 6 ,7 , 9 ]
randomList = getRandom(mylist,4)
# randomList = [ 1 , 2 , 4 , 8 ]

etc...

link|improve this question

Why don't you want to random.sample and then sort? – Daniel Jun 26 '11 at 8:15
It's sorted with a non trivial algorithm... it's not really just numbers – Yochai Timmer Jun 26 '11 at 8:16
2  
A very slight change to Daniel's comment: sample a range of [0,count), sort the sample (the numbers in the range have a natural ordering), then extract the values from mylist based on the indices. Using zip could achieve the same effect with slightly different mechanics. – pst Jun 26 '11 at 8:18
ok, can i get an answer + example so I have something to accept ? :) – Yochai Timmer Jun 26 '11 at 8:21
feedback

4 Answers

up vote 14 down vote accepted

Following code will generate a random sample of size 4.

rand_smpl = [ mylist[i] for i in sorted(random.sample(xrange(len(mylist)), 4)) ]

Edit -- Explanation:

random.sample(xrange(len(mylist)), sample_size)

generates a random sample of the indices of the original list.

This sample then gets sorted to preserve the ordering of elements in the original list.

Finally, the list comprehension pulls out the elements from the original list, given the sampled indices, and constructs the final sample (of actual elements).

link|improve this answer
feedback

Simple-to-code O(N + K*log(K)) way

Take a random sample without replacement of the indices, sort the indices, and take them from the original.

indices = random.sample(range(len(myList)), K)
[myList[i] for i in sorted(indices)]

Or more concisely:

[x[1] for x in sorted(random.sample(enumerate(myList),K))]

Optimized O(N)-time, O(1)-auxiliary-space way

You can alternatively use a math trick and iteratively go through myList from left to right, picking numbers with dynamically-changing probability (N-numbersPicked)/(total-numbersVisited). The advantage of this approach is that it's an O(N) algorithm since it doesn't involve sorting!

def orderedSampleWithoutReplacement(seq, k):
    if not 0<=k<=len(seq):
        raise ValueError('Required that 0 <= sample_size <= population_size')

    numbersPicked = 0
    for i,number in enumerate(seq):
        prob = (k-numbersPicked)/(len(seq)-i)
        if random.random() < prob:
            yield number
            numbersPicked += 1

Proof of concept and test that probabilities are correct:

Simulated with 1 trillion pseudorandom samples over the course of 5 hours:

>>> Counter(
        tuple(orderedSampleWithoutReplacement([0,1,2,3], 2))
        for _ in range(10**9)
    )
Counter({
    (0, 3): 166680161, 
    (1, 2): 166672608, 
    (0, 2): 166669915, 
    (2, 3): 166667390, 
    (1, 3): 166660630, 
    (0, 1): 166649296
})

Probabilities diverge from true probabilities by less a factor of 1.0001. Running this test again resulted in a different order meaning it isn't biased towards one ordering. Running the test with fewer samples for [0,1,2,3,4], k=3 and [0,1,2,3,4,5], k=4 had similar results.

edit: Not sure why people are voting up wrong comments or afraid to upvote... NO, there is nothing wrong with this method. =)

link|improve this answer
And the disadvantage is ... – pst Jun 26 '11 at 8:36
@pst: no disadvantage, just a speedup of O(N) rather O(N log(N)) – ninjagecko Jun 26 '11 at 8:45
@pst: Your last claim is incorrect because the probability goes to 1 naturally if samples are not picked up. Please be so kind as to back up your first claim with math, I would be very interested if you can prove I am wrong despite my extensive simulations. – ninjagecko Jun 26 '11 at 9:40
1  
Very nice, I was wondering how to do this linear approach too. Does this formula have a wikipedia page? :) – Jochen Ritzel Jun 26 '11 at 12:55
2  
I'm surprised this answer doesn't have more upvotes, it actually explains how the solution works (and provides another solution!), as opposed to the first answer which is just a one-line snippet-- giving me no idea why or how it worked. – crazy2be Jun 26 '11 at 16:15
show 2 more comments
feedback

Apparently random.sample was introduced in python 2.3

so for version under that, we can use shuffle (example for 4 items):

myRange =  range(0,len(mylist)) 
shuffle(myRange)
coupons = [ bestCoupons[i] for i in sorted(myRange[:4]) ]
link|improve this answer
1  
You're using Python 2.2?! You should upgrade... that's way out of date. – katrielalex Jun 26 '11 at 12:32
well, its what we have on the servers.. making a system-wide update is too much Bureaucracy – Yochai Timmer Jun 26 '11 at 19:26
feedback

Maybe you can just generate the sample of indices and then collect the items from your list.

randIndex = random.sample(range(len(mylist)), sample_size)
randIndex.sort()
rand = [mylist[i] for i in randIndex]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.