Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have several lists having all the same number of entries (each specifying an object property):

property_a = [545., 656., 5.4, 33.]
property_b = [ 1.2,  1.3, 2.3, 0.3]
...

and list with flags of the same length

good_objects = [True, False, False, True]

(which could easily be substituted with an equivalent index list:

good_indices = [0, 3]

What is the easiest way to generate new lists property_asel, property_bsel, ... which contain only the values indicated either by the True entries or the indices?

property_asel = [545., 33.]
property_bsel = [ 1.2, 0.3]
share|improve this question

3 Answers

up vote 6 down vote accepted

You could just use list comprehension:

property_asel = [val for is_good, val in zip(good_objects, property_a) if is_good]

or

property_asel = [property_a[i] for i in good_indices]

The latter one is faster because there are fewer good_indices than the length of property_a.

share|improve this answer
Does using zip here introduce a performance penalty? – fuenfundachtzig Jul 5 '10 at 11:36
1  
@fuen: Yes. Causes a lot on Python 2 (use itertools.izip instead), not so much on Python 3. This is because the zip in Python 2 will create a new list, but on Python 3 it will just return a (lazy) generator. – KennyTM Jul 5 '10 at 11:37
OK, so I should stick to your 2nd proposal then, because this makes up the central part of my code. – fuenfundachtzig Jul 5 '10 at 11:39
2  
@85: why are you worrying about performance? Write what you have to do, if it is slow, then test to find bottlenecks. – PreludeAndFugue Jul 5 '10 at 11:39
1  
You can just use from itertools import izip and use that instead of zip in the first example. That creates an iterator, same as Python 3. – Chris B. Jul 5 '10 at 20:34
show 4 more comments

I see 2 options.

  1. Using numpy:

    property_a = numpy.array([545., 656., 5.4, 33.])
    property_b = numpy.array([ 1.2,  1.3, 2.3, 0.3])
    good_objects = [True, False, False, True]
    good_indices = [0, 3]
    property_asel = property_a[good_objects]
    property_bsel = property_b[good_indices]
    
  2. Using a list comprehension and zip it:

    property_a = [545., 656., 5.4, 33.]
    property_b = [ 1.2,  1.3, 2.3, 0.3]
    good_objects = [True, False, False, True]
    good_indices = [0, 3]
    property_asel = [x for x, y in zip(property_a, good_objects) if y]
    property_bsel = [property_b[i] for i in good_indices]
    
share|improve this answer
Use 8 spaces to format code within a list. – KennyTM Jul 5 '10 at 11:36
1  
Using Numpy is a good suggestion since the OP seems to want to store numbers in lists. A two-dimensional array would be even better. – Philipp Jul 5 '10 at 13:35

Use the built in function zip

property_asel = [a for (a, truth) in zip(property_a, good_objects) if truth]

EDIT

Just looking at the new features of 2.7. There is now a function in the itertools module which is similar to the above code.

http://docs.python.org/library/itertools.html#itertools.compress

itertools.compress('ABCDEF', [1,0,1,0,1,1]) =>
  A, C, E, F
share|improve this answer
I'm underwhelmed by the use of itertools.compress here. The list comprehension is far more readable, without having to dig up what the heck compress is doing. – Paul McGuire Jul 5 '10 at 20:32
2  
Hm, I find the code using compress much more readable :) Maybe I'm biased, because it does exactly what I want. – fuenfundachtzig Jul 9 '10 at 15:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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