У мене є список, який містить значення, одне із значень, яке я отримав, - '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.