You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It will be nice if someone can add that isnull() function have a contrary which is called notnull()
and notnull() function have a contrary which is called isnull()
into documentation
Hi,
It will be nice if someone can add that
isnull()
function have a contrary which is callednotnull()
and
notnull()
function have a contrary which is calledisnull()
into documentation
http://pandas.pydata.org/pandas-docs/stable/generated/pandas.Series.notnull.html
http://pandas.pydata.org/pandas-docs/stable/generated/pandas.Series.isnull.html
That's probably stupid for you but I was searching a long time to find that
(I was looking for
isnotnull()
)Maybe this documentation could also tell that
df[df['col'].notnull()]
is same as ``df[~df['col'].isnull()]`Kind regards
The text was updated successfully, but these errors were encountered: