Pandas
keyboard_arrow_down 655 guides
chevron_leftGeneral Functions
Method bdate_rangeMethod concatMethod crosstabMethod cutMethod date_rangeMethod factorizeMethod get_dummiesMethod infer_freqMethod interval_rangeMethod isnullMethod merge_asofMethod merge_orderedMethod notnullMethod period_rangeMethod pivotMethod pivot_tableMethod qcutMethod read_csvMethod to_datetimeMethod to_numericMethod to_timedeltaMethod uniqueMethod wide_to_long
check_circle
Mark as learned thumb_up
0
thumb_down
0
chat_bubble_outline
0
Comment auto_stories Bi-column layout
settings
Pandas | isnull method
schedule Aug 12, 2023
Last updated local_offer
Tags Pandas●Python
tocTable of Contents
expand_more Master the mathematics behind data science with 100+ top-tier guides
Start your free 7-days trial now!
Start your free 7-days trial now!
Pandas isnull(~)
method returns a boolean mask where True
is set for NaN
(missing values) and False
for non-NaN
.
Parameters
1. obj
| array-like
or object
The array-like (e.g. Series, DataFrames, Numpy arrays, lists and so on) in which to check for NaN
.
Return Value
If a single scalar object (e.g. a string and a numeric) is provided, then a single
boolean
is returned.Otherwise, a boolean mask where
True
represents non-NaN
values, andFalse
representingNaN
, is returned.
Examples
Scalars
pd.isnull("A")
False
pd.isnull(np.NaN)
True
pd.isnull(None)
True
Array-likes
Series
pd.isnull(s)
0 False1 True2 Falsedtype: bool
The return type is a Series
of booleans.
DataFrame
Consider the following DataFrame:
df
A B0 NaN 3.01 2.0 NaN
To check for existing values (non-NaN
values):
pd.isnull(df)
A B0 True False1 False True
The return type is a DataFrame
of booleans.
NOTE
Series and DataFrames have the method isnull()
, so you can call df.isnull()
directly.
Published by Isshin Inada
Edited by 0 others
Did you find this page useful?
thumb_up
thumb_down
Comment
Citation
Ask a question or leave a feedback...
Official Pandas Documentation
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.isnull.html
thumb_up
0
thumb_down
0
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!