以下のコードは、PythonND-Array列のNaN値をチェックするために作成されました。temparr1またはtemparr2のいずれかにNaNがある場合、対応する行を両方から削除します。問題は、それが機能していないように見えることです。手伝ってくれませんか。
temparr1=arr[index[indexkey]][:]// We get a column from arr, an nd-array of size 0 to 9470
temparr2=arr[index[secondIndexKey]][:]// Same as above, but with the next column
rwc=range(0,len(arr)) We get a bit vector of a sort to check.
for i in range(0,len(arr)):
if(isnan(temparr1[i]) or isnan(temparr2[i]) ):
rwc = rwc[:i-1]+rwc[i+1:] // Remove the value from the bit Vector for a NaN value in the arrays.
print i
temparr1 = []
temparr2 = []
for i in rwc:
temparr1.append(arr[index[indexkey]][i])
temparr2.append(arr[index[secondIndexKey]][i])// Extract the data for the corresponding values in RWC and get them into the temparrs.
なぜそれが機能しないのか、なぜ私はまだNaNを取得しているのか誰かに教えてもらえますか?
配列は次のようになります:[99,242,122、nan、42、nan、414、................]