numpy是无法直接判断出由数值与字符混合组成的数组中的数值型数据的,因为由数值类型和字符类型组成的numpy数组已经不是数值类型的数组了,而是dtype='<U11'。
1、math.isnan也不行,它只能判断float("nan"):
> import math > math.isnan(1) False > math.isnan('a') Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: a float is required > math.isnan(float("nan")) True >
2、np.isnan不可用,因为np.isnan只能用于数值型与np.nan组成的numpy数组:
> import numpy as np > test1=np.array([1,2,'aa',3]) > np.isnan(test1) Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: ufunc 'isnan' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''sa fe'' > test2=np.array([1,2,np.nan,3]) > np.isnan(test2) array([False, False, True, False], dtype=bool) >
解决办法:
方法1:将numpy数组转换为python的list,然后通过filter过滤出数值型的值,再转为numpy, 但是,有一个严重的问题,无法保证原来的索引
> import numpy as np > test1=np.array([1,2,'aa',3]) > list1=list(test1) > def filter_fun(x): ... try: ... return isinstance(float(x),(float)) ... except: ... return False ... > list(filter(filter_fun,list1)) ['1', '2', '3'] > np.array(filter(filter_fun,list1)) array(<filter object at 0x0339CA30>, dtype=object) > np.array(list(filter(filter_fun,list1))) array(['1', '2', '3'], dtype='<U1') > np.array([float(x) for x in filter(filter_fun,list1)]) array([ 1., 2., 3.]) >
方法2:利用map制作bool数组,然后再过滤数据和索引:
> import numpy as np > test1=np.array([1,2,'aa',3]) > list1=list(test1) > def filter_fun(x): ... try: ... return isinstance(float(x),(float)) ... except: ... return False ... > import pandas as pd > test=pd.DataFrame(test1,index=[1,2,3,4]) > test 0 1 1 2 2 3 aa 4 3 > index=test.index > index Int64Index([1, 2, 3, 4], dtype='int64') > bool_index=map(filter_fun,list1) > bool_index=list(bool_index) #bool_index这样的迭代结果只能list一次,一次再list时会是空,所以保存一下list的结果 > bool_index [True, True, False, True] > new_data=test1[np.array(bool_index)] > new_data array(['1', '2', '3'], dtype='<U11') > new_index=index[np.array(bool_index)] > new_index Int64Index([1, 2, 4], dtype='int64') > test2=pd.DataFrame(new_data,index=new_index) > test2 0 1 1 2 2 4 3 >
以上这篇numpy判断数值类型、过滤出数值型数据的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
华山资源网 Design By www.eoogi.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
华山资源网 Design By www.eoogi.com
暂无评论...
更新日志
2024年11月18日
2024年11月18日
- 【雨果唱片】中国管弦乐《鹿回头》WAV
- APM亚流新世代《一起冒险》[FLAC/分轨][106.77MB]
- 崔健《飞狗》律冻文化[WAV+CUE][1.1G]
- 罗志祥《舞状元 (Explicit)》[320K/MP3][66.77MB]
- 尤雅.1997-幽雅精粹2CD【南方】【WAV+CUE】
- 张惠妹.2007-STAR(引进版)【EMI百代】【WAV+CUE】
- 群星.2008-LOVE情歌集VOL.8【正东】【WAV+CUE】
- 罗志祥《舞状元 (Explicit)》[FLAC/分轨][360.76MB]
- Tank《我不伟大,至少我能改变我。》[320K/MP3][160.41MB]
- Tank《我不伟大,至少我能改变我。》[FLAC/分轨][236.89MB]
- CD圣经推荐-夏韶声《谙2》SACD-ISO
- 钟镇涛-《百分百钟镇涛》首批限量版SACD-ISO
- 群星《继续微笑致敬许冠杰》[低速原抓WAV+CUE]
- 潘秀琼.2003-国语难忘金曲珍藏集【皇星全音】【WAV+CUE】
- 林东松.1997-2039玫瑰事件【宝丽金】【WAV+CUE】