Conteúdo do Curso
Pandas First Steps
Pandas First Steps
2. Reading Files in Pandas
3. Analyzing the Data
Viewing the DataQuiz: Using HeadQuiz: Head, Tail, and SampleExploring the DatasetColumn Names and Data TypesFinding Null ValuesQuiz: Identifying Null ValuesChallenge: Dropping Null ValuesChallenge: Filling Null ValuesQuiz: Null ValuesDescribing the Datamax() and min()Quiz: Statistical Operationssum() and count()Unique Values
Challenge: Filling Null Values
To handle null values while retaining each row of the DataFrame, we can utilize the fillna()
method. This allows us to populate each empty cell with a specific value (like a string or number) rather than eliminating it.
To replace null values with the number 0, the fillna()
method is used:
Tarefa
Swipe to begin your solution
- Replace null values in this DataFrame with the string
'no'
. - Print the general information of the DataFrame.
Solução
Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 3. Capítulo 9
Challenge: Filling Null Values
To handle null values while retaining each row of the DataFrame, we can utilize the fillna()
method. This allows us to populate each empty cell with a specific value (like a string or number) rather than eliminating it.
To replace null values with the number 0, the fillna()
method is used:
Tarefa
Swipe to begin your solution
- Replace null values in this DataFrame with the string
'no'
. - Print the general information of the DataFrame.
Solução
Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 3. Capítulo 9
Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo