You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current function write_excel writes into a sheet object by reference, which is more flexible, but also harder to use.
Namespace implications
We should consider renaming write_excel. My suggestion:
write_excel(st, "file.xlsx") # <- new function
write_excel_sheet(st, sheet_obj) # <- formerly write_excel
If we don't want to introduce breaking changes, we could also use
write_xlsx(st, "file.xlsx") # <- new function
write_excel(st, sheet_obj) # <- leave unchanged
The reason why I prefer the first option is, that this way write_excel is consistent with write_pdf, write_png and so on in the sense that a file is produced.
The text was updated successfully, but these errors were encountered:
It would be nice to get a new excel export function that can directly create
xlsx
files such asThe current function
write_excel
writes into a sheet object by reference, which is more flexible, but also harder to use.Namespace implications
We should consider renaming
write_excel
. My suggestion:If we don't want to introduce breaking changes, we could also use
The reason why I prefer the first option is, that this way
write_excel
is consistent withwrite_pdf
,write_png
and so on in the sense that a file is produced.The text was updated successfully, but these errors were encountered: