カウント値のリストがあります。取得した値の1つは「nan」です。
countries= [nan, 'USA', 'UK', 'France']
削除しようとしましたが、毎回エラーが発生します
cleanedList = [x for x in countries if (math.isnan(x) == True)]
TypeError: a float is required
私がこれを試したとき:
cleanedList = cities[np.logical_not(np.isnan(countries))]
cleanedList = cities[~np.isnan(countries)]
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 ''safe''
"nan"
、実際のNaN値ではありません。