Skip to content

Instantly share code, notes, and snippets.

@alivx
Last active September 28, 2020 19:47
Show Gist options
  • Save alivx/39d1156ea15b60158b847accde10a360 to your computer and use it in GitHub Desktop.
Save alivx/39d1156ea15b60158b847accde10a360 to your computer and use it in GitHub Desktop.
#Trim spaces
ali.rename(columns=lambda x: x.strip(), inplace=True)
#Fill merged cells with upper head
ali = mini.fillna(method='ffill', axis=0)
#Replace nan with zero
support['xx'] = support['xx'].replace(np.nan, 0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment