Le embocamos un apply y listo el polio
(
nhanes_df
.select_columns("height", "weight", "gender", "diabetes", "general_health_condition")
.sort_values(
by=['gender','diabetes','general_health_condition','weight'],
ascending=True
)
.groupby(["gender", "general_health_condition"], dropna=False)
.apply(lambda x: x.ffill())
)
¿Quieres ver más aportes, preguntas y respuestas de la comunidad?