¡Esta es una revisión vieja del documento!
See the first 3 rows: df.head(3)
df.head(3)
Remove column from dataframe: df.drop('column_name', axis=1). Also: df.drop(columns=['Esperado acumulado'])
df.drop('column_name', axis=1)
df.drop(columns=['Esperado acumulado'])