I have a DataFrame cMean
. Its origin is some resampling of some data. It contains many NaN values and I wanted to get rid of them so I tried cMean[cMean.notnull()]
. However, they still show up:
Can you explain what is going on here? It seems cMean.notnull()
works correct, as you can see here: