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
CSV.write will convert most datatypes to strings, similar to using x -> "$x"
For example it will print Symbols, Enums and Structs.
Could XLSX.writetable be expanded in a similar way ?
I can apply the following to my DataFrame before writing it to Excel, but it would be nice if the package did it.
mapcols( col -> eltype(col)<: Union{String,Number} ? col : (s-> "$s" ).(col), my_DataFrame )
The text was updated successfully, but these errors were encountered:
Lincoln-Hannah
changed the title
Doesn't support enums writing to Excel
Can supported types (for writing to Excel) be expanded - similar to CSV.write ?
Sep 1, 2023
CSV.write will convert most datatypes to strings, similar to using x -> "$x"
For example it will print Symbols, Enums and Structs.
Could XLSX.writetable be expanded in a similar way ?
I can apply the following to my DataFrame before writing it to Excel, but it would be nice if the package did it.
The text was updated successfully, but these errors were encountered: