Skip to content
Advertisement

Getting error in dataframe typeError: ‘Series’ objects are mutable, thus they cannot be hashed

I am trying to apply this operation on my dataframe df:

JavaScript

where data types of a,b,c are:

JavaScript

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
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement