Mam listę zawierającą wartości, jedna z wartości, które otrzymałem, to „nan”
countries= [nan, 'USA', 'UK', 'France']
Próbowałem go usunąć, ale za każdym razem pojawia się błąd
cleanedList = [x for x in countries if (math.isnan(x) == True)]
TypeError: a float is required
Kiedy próbowałem tego:
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"
, a nie rzeczywista wartość NaN.