Só para compartilhar com vocês que descobri que o isnull()
e isna()
são a mesma coisa. Segue explicação abaixo no Stack Overflow:
https://stackoverflow.com/questions/52086574/pandas-isna-and-isnull-what-is-the-difference
TRANSCREVENDO O CONTEÚDO DA IMAGEM:
isnull
is an alias for isna
. Literally in the code source of pandas:
isnull = isna
Indeed:
>>> pd.isnull
<function isna at 0x7fb4c5cefc80>
So I would recommend using isna
.