ComeçarComece de graça

Visualize forward fill imputation

To visualize time-series imputations, we can create two plots with the plot of original DataFrame overlapping the imputed DataFrame. Additionally, changing the linestyle, color and marker for the imputed DataFrame, helps to clearly distinguish the non-missing values and the imputed values. The imputed DataFrames can be plotted using the .plot() method.

In this exercise, you will first impute and then plot the time-series plot of forward filled DataFrame. The airquality DataFrame has been loaded for you.

Este exercício faz parte do curso

Dealing with Missing Data in Python

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Impute airquality DataFrame with ffill method
ffill_imputed = ___
Editar e executar o código