Skip to content

Instantly share code, notes, and snippets.

@gustavoschmoeller
Last active January 7, 2021 18:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gustavoschmoeller/6ed0b25a501837aa4057dcc5dde25aae to your computer and use it in GitHub Desktop.
Save gustavoschmoeller/6ed0b25a501837aa4057dcc5dde25aae to your computer and use it in GitHub Desktop.
drop na
# Retirando os valores NaN do dataset
df.dropna(inplace=True)
df.isnull().sum()
Data 0
Temperatura Media (C) 0
Temperatura Minima (C) 0
Temperatura Maxima (C) 0
Precipitacao (mm) 0
Final de Semana 0
Consumo de cerveja (litros) 0
dtype: int64
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment