为了账号安全,请及时绑定邮箱和手机立即绑定

有没有办法在包含一万个使用python编码的实例的数据帧中找到特殊符号,如“?”,“*”,“NA”?

有没有办法在包含一万个使用python编码的实例的数据帧中找到特殊符号,如“?”,“*”,“NA”?

郎朗坤 2022-08-11 17:16:25
如何使用python代码在数据框中查找特殊字符.并找到它们的位置。为此,我在python中使用正则表达式,但我没有得到任何东西。如果每列包含特殊字符,则希望显示该列的文本。
查看完整描述

1 回答

?
凤凰求蛊

TA贡献1825条经验 获得超4个赞

考虑到以下作为输入数据帧,我已经执行了操作。


    name    val

0   a   1

1   *   2

2   b   NaN

3   d   1

4   g   ?

5   t   3

6   h   4

import numpy as np

import pandas as pd


f=pd.read_csv('data_file.csv')

f=pd.DataFrame(f)


#the below loop will provide you with the location of null values. i.e. "NaN"

for i,j in zip(*np.where(pd.isnull(f))):

    print("{},{}".format(i,j))


o/p: 2,1


#similarly finding location of '*' and '?'

special=['*','?']

for k in special:

    print(np.where(f.applymap(lambda x: x == k)),'location for ',k)


o/p: 

(array([1], dtype=int64), array([0], dtype=int64)) location for  *

(array([4], dtype=int64), array([1], dtype=int64)) location for  ?



eg:

i/n: f.iloc[1,0]

o/p: '*'


查看完整回答
反对 回复 2022-08-11
  • 1 回答
  • 0 关注
  • 74 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信