Python是进行数据分析的一种出色语言,主要是因为以数据为中心的python软件包具有奇妙的生态系统。 Pandas是其中的一种,使导入和分析数据更加容易。
Pandas Index.isna()
函数检测缺失值。它返回一个布尔值相同大小的对象,指示值是否为NA。 NA值(例如None,numpy.NaN或pd.NaT)被映射为True值。其他所有内容都映射为False值。空字符串“”或numpy.inf之类的字符不视为NA值(除非您设置pandas.options.mode.use_inf_as_na = True)。
用法: Index.isna()
参数:不带任何参数。
返回:一个布尔数组,表示我的值是否为NA
范例1:采用Index.isna()
函数检查索引中的任何值是否为NaN
值。
# importing pandas as pd
import pandas as pd
# Creating the Index
idx = pd.Index(['Labrador', None, 'Beagle', 'Mastiff',
'Lhasa', None, 'Husky', 'Beagle'])
# Print the Index
idx
输出:
现在,我们检查索引中的缺失值。
# checks for missing values.
idx.isna()
输出:
该函数返回的数组对象的大小与索引的大小相同。True
值表示缺少索引标签,并且False
值表示存在索引标签。
范例2:采用Index.isna()
用于检查是否考虑了缺少的Datetime索引的函数NaN
值与否。
# importing pandas as pd
import pandas as pd
# Creating the Datetime Index
idx = pd.DatetimeIndex([pd.Timestamp('2015-02-11'),
None, pd.Timestamp(''), pd.NaT])
# Print the Datetime Index
idx
输出:
现在,我们将检查日期时间索引中的标签是否存在。
# test whether the passed Datetime
# Index labels are missing or not.
idx.isna()
输出:
正如我们在输出中看到的那样,该函数返回的数组对象的大小与Datetime Index的大小相同。True
值表示缺少索引标签,并且False
值表示不缺少索引标签。
相关用法
- Python pandas.map()用法及代码示例
- Python Pandas Series.str.len()用法及代码示例
- Python Pandas.factorize()用法及代码示例
- Python Pandas TimedeltaIndex.name用法及代码示例
- Python Pandas dataframe.ne()用法及代码示例
- Python Pandas Series.between()用法及代码示例
- Python Pandas DataFrame.where()用法及代码示例
- Python Pandas Series.add()用法及代码示例
- Python Pandas.pivot_table()用法及代码示例
- Python Pandas Series.mod()用法及代码示例
- Python Pandas Dataframe.at[ ]用法及代码示例
- Python Pandas Dataframe.iat[ ]用法及代码示例
- Python Pandas.pivot()用法及代码示例
- Python Pandas dataframe.mul()用法及代码示例
- Python Pandas.melt()用法及代码示例
注:本文由纯净天空筛选整理自Shubham__Ranjan大神的英文原创作品 Python | Pandas Index.isna()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。