Pandas: Data Manipulation - isnull() function
isnull() function
The isnull() function is used to detect missing values for an array-like object.
This function takes a scalar or array-like object and indicates whether values are missing (NaN in numeric arrays, None or NaN in object arrays, NaT in datetimelike).
Syntax:
pandas.isnull(obj)
Parameters:
Name | Description | Type | Required / Optional |
---|---|---|---|
obj | Object to check for null or missing values. | scalar or array-like | Required |
Returns: bool or array-like of bool
For scalar input, returns a scalar boolean. For array input, returns an array of boolean indicating whether each corresponding element is missing.
Example:
Download the Pandas DataFrame Notebooks from here.
Previous: isna() function
Next: notna() function
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/pandas/isnull.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics