“Upuść wartości zerowe w DataFrame” Kod odpowiedzi

Upuść wiersze zawierające wartości zerowe w PandaS DataFrame

df.dropna(inplace=True)
# to drop any rows that contain any null values
df.dropna(how='all', inplace=True)
# to drop the rows wich all of it's values is any

# if you want to drop the columns not the rows you just set the axis to 1 like this:
df.dropna(axis=1, inplace=True)
great_khopho

Pandy upuszczają rzędy z null w określonej kolumnie

df.dropna(subset=['Column name'])
Successful Squirrel

Upuść null rzędy pandy

df.dropna()
Bad Barracuda

Pandy usuwają rzędy z null w kolumnie

df = df[df['EPS'].notna()]
Joyous Jaguar

Upuść wartości zerowe w DataFrame

df=df.interpolate(method='pad', limit=3)
SaadMakhdoom

Odpowiedzi podobne do “Upuść wartości zerowe w DataFrame”

Pytania podobne do “Upuść wartości zerowe w DataFrame”

Więcej pokrewnych odpowiedzi na “Upuść wartości zerowe w DataFrame” w Python

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

Przeglądaj inne języki kodu