【发布时间】:2021-10-21 11:29:18
【问题描述】:
我正在从由 pandas 数据框生成的 CSV 中读取坐标集。坐标集的长度并不完全相同,因此它们用 NaN 填充。这是我要开始工作的代码:
df=pd.read_csv('contours_20150210.csv') # reading in the dataframe and xy coordinates
c131x=np.asarray(df["contour_131_x"])
c131y=np.asarray(df["contour_131_y"])
c193x=np.asarray(df["contour_193_x"])
c193y=np.asarray(df["contour_193_y"])
c211x=np.asarray(df["contour_211_x"])
c211y=np.asarray(df["contour_211_y"])
nn_193_211=[]
dist_193_211 = distance_matrix(c193,c211) #Computing the distances between all the sets of coordinates
for i in range(len(dist_193_211[:][1])):
nn_193_211.append([np.where(dist_193_211[i] == np.nanmin(dist_193_211[i]))[0][0],np.nanmin(dist_193_211[i])])
# I am looking for the nearest neighbors, both the value of the distance between them and which value that is in the list of coordinates
问题是当 for 循环到达 nans 时出现以下错误,即使我使用的是np.nanmin。
/tmp/ipykernel_3022/578260609.py:2: RuntimeWarning: All-NaN slice encountered
nn_193_211.append([np.where(dist_193_211[i] == np.nanmin(dist_193_211[i]))[0][0],np.nanmin(dist_193_211[i])])
---------------------------------------------------------------------------
IndexError Traceback (most recent call last)
/tmp/ipykernel_3022/578260609.py in <module>
1 for i in range(len(dist_193_211[:][1])):
----> 2 nn_193_211.append([np.where(dist_193_211[i] == np.nanmin(dist_193_211[i]))[0][0],np.nanmin(dist_193_211[i])])
3 print(nn_193_211[0:100])
4 #print(np.max(nn_193_211),np.min(nn_193_211))
IndexError: index 0 is out of bounds for axis 0 with size 0
我决定只截断填充 nan(它们是数组中唯一的 nan,其他地方没有丢失数据)。所以我阅读了 Python 中的 nans 并进行了以下测试:
print('c131x: ',c131x)
print('np.nan is np.nan:',np.nan is np.nan)
print('c131x[-1] is np.nan:',c131x[-1] is np.nan)
print(np.where(np.vectorize(c131x) is np.nan))
print(np.where(np.vectorize(c131y) is np.nan))
print(np.where(np.vectorize(c193x) is np.nan))
print(np.where(np.vectorize(c193y) is np.nan))
print(np.where(np.vectorize(c211x) is np.nan))
print(np.where(np.vectorize(c211y) is np.nan))
这是输出:
c131x: [-202.79993465 -202.49993494 -202.19993523 ... nan nan
nan]
np.nan is np.nan: True
c131x[-1] is np.nan: False
(array([], dtype=int64),)
(array([], dtype=int64),)
(array([], dtype=int64),)
(array([], dtype=int64),)
(array([], dtype=int64),)
(array([], dtype=int64),)
我的理解是np.nan is np.nan 和c131x[-1] is np.nan 都应该返回True:我错过了什么吗?如果我无法确定 nans 在哪里,我就无法对数组进行切片。
【问题讨论】:
-
请改用
np.isnan(np.vectorize(c131x))。与np.nan的任何比较都是错误的。 -
对吗?我知道
== np.nan什么都没有,包括np.nan,但我认为is仍然是一种有效的测试方式...
标签: python arrays pandas numpy nan