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 can use .map(func) on any column in a df, like:

df=DataFrame({'a':[1,2,3,4,5,6],'b':[2,3,4,5,6,7]})

df['a']=df['a'].map(lambda x: x > 1)

I could also:

df['a'],df['b']=df['a'].map(lambda x: x > 1),df['b'].map(lambda x: x > 1)

Is there a more pythonic way to apply a function to all columns or the entire frame (without a loop)?

share|improve this question
Simplify your lambda to lambda x: x > 1 – Blender Oct 5 '12 at 6:59
@ Blender -- thanks, edited... – root Oct 5 '12 at 7:02
Just pointing that out. You don't really need to edit the original question. – Blender Oct 5 '12 at 7:03

1 Answer

up vote 6 down vote accepted

If I understand you right, you're looking for the applymap method.

>>> print df
   A  B  C
0 -1  0  0
1 -4  3 -1
2 -1  0  2
3  0  3  2
4  1 -1  0
>>> print df.applymap(lambda x: x>1)
       A      B      C
0  False  False  False
1  False   True  False
2  False  False   True
3  False   True   True
4  False  False  False
share|improve this answer
@ BrenBarn -- yes, this is exactly what I was looking for. didn't notice it from the docs. thanks. – root Oct 5 '12 at 7:03

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.