I want to take a subset of a MultiIndex pandas dataframe, test for values less than zero and set them to zero.
For example:
df = pd.DataFrame({('A','a'): [-1,-1,0,10,12],
('A','b'): [0,1,2,3,-1],
('B','a'): [-20,-10,0,10,20],
('B','b'): [-200,-100,0,100,200]})
df[df['A']<0] = 0.0
gives
A B
a b a b
0 -1 0 -20 -200
1 -1 1 -10 -100
2 0 2 0 0
3 10 3 10 100
4 12 -1 20 200
Which shows that it was not able to set based on the condition. Alternatively if I do chained assignment:
df.loc[:,'A'][df['A']<0] = 0.0
this gives the same result (and setting with copy warning).
I could loop through each column based on the condition that the first level is the one that I want:
for one,two in df.columns.values:
if one == 'A':
df.loc[df[(one,two)]<0, (one,two)] = 0.0
which gives the desired result:
A B
a b a b
0 0 0 -20 -200
1 0 1 -10 -100
2 0 2 0 0
3 10 3 10 100
4 12 0 20 200
What is the best way to do this in pandas?