我在python中有两个.The数组,features数组( 4D)和labels数组(1D)。我想删除包含Nan值(在features数组中)及其对应标签的整行。X是特征数组,Y是标签数组。我在python中使用isnan函数作为当我放入axis=1时,我得到一个错误
IndexError: index 5 is outof b
原点数组类似于: array([nan, nan, 'hello', ..., nan, 'N', 61.0], dtype=object) 如何从该数组中删除所有字符串并获得一个具有浮点型数据类型的新数组我知道我可以使用python list做到这一点: [i for i in x if type(i) == float] 但是这种方式会将numpy.ndarray更改为list,有没有办法在