“Jak uzyskać ilość wartości NAN w framie danych” Kod odpowiedzi

Jak uzyskać ilość wartości NAN w framie danych

#where A is the name of the column
#where df is the name of the dataframe
count = df["A"].isna().sum()
Determined Dragonfly

Znajdź liczbę pand NAN na kolumnę

In [1]: s = pd.Series([1,2,3, np.nan, np.nan])

In [4]: s.isna().sum()   # or s.isnull().sum() for older pandas versions
Out[4]: 2
Gifted Grasshopper

Odpowiedzi podobne do “Jak uzyskać ilość wartości NAN w framie danych”

Pytania podobne do “Jak uzyskać ilość wartości NAN w framie danych”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu