Last active
November 30, 2017 10:09
-
-
Save michaelosthege/6a7062e38f010b6814bea62284dbf73e to your computer and use it in GitHub Desktop.
Some pandas code snippets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# saving a DataFrame to an Excel spreadsheet | |
writer = pandas.ExcelWriter(fp_xlsx) | |
df.to_excel(writer, 'Sheetname') | |
writer.save() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment