Replies: 2 comments 1 reply
-
I'm trying to find a way to export that all to excel, including the formats. has anyone done that already |
Beta Was this translation helpful? Give feedback.
1 reply
-
Great tip
Em quarta-feira, 15 de março de 2023 às 00:32:28 BRT, betevents ***@***.***> escreveu:
you can use xlsxwriter engine for pandas and export dataframes, now it depends how do you want it formatted, one sheet, multiple sheets, columns etc
example from a dataframe:
writer = pd.ExcelWriter('test.xlsx', engine='xlsxwriter')
df.to_excel(writer, sheet_name='Sheet1')
writer.close()
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Everything is in the title :D
Beta Was this translation helpful? Give feedback.
All reactions