I am trying to apply this operation on my dataframe df:
JavaScript
x
2
1
df[df.a, 'b'] = df.c*df.b
2
where data types of a,b,c are:
JavaScript
1
4
1
a: bool
2
b: float64
3
c: float64
4
But I am getting the error TypeError: 'Series' objects are mutable, thus they cannot be hashed
Is it happening because of na value present in column b or c? If yes, is there a way to ignore the operation for na values?
Thanks.
Advertisement
Answer
Please try use the loc
accessor and it should be fine.
JavaScript
1
2
1
df.loc[df.a,'b']=df.c*df.b
2