其他分享
首页 > 其他分享> > pandas某一字段存在空值nan,如何找到这些列

pandas某一字段存在空值nan,如何找到这些列

作者:互联网

一、目标需求

pandas某一字段存在空值nan,如何找到这些列

二、代码

借助pandas库的isna()或者isnull()方法均可

import pandas as pd
datas[pd.isna(datas['省份'])==True]
datas[pd.isnull(datas['省份'])==True]

       返回结果均为dataframe,可通过shape[0]查看多少条数据

三、参考网址

Pandas中空值的判断方法,包括数值型、字符串型、时间类型等_小白白的博客-CSDN博客_pandas判断空值(作者:陈玓玏)https://blog.csdn.net/weixin_39750084/article/details/81750185

四、补充说明

      仅作为个人的学习记录过程,代码过于简单请勿喷

标签:某一字,isna,nan,空值,pd,pandas,datas
来源: https://blog.csdn.net/weixin_43718742/article/details/122490922