Uh oh!
There was an error while loading. Please reload this page.
Add write_csv to DataFrame - #1922
Conversation
matthewmturner
commented
Mar 4, 2022
@alamb would you mind checking this out to see if going in right direction? I took the logic for writing csvs and put it in new function currently failing because of the signature of |
alamb
commented
Mar 4, 2022
Looks good to me 👍
I think taking |
matthewmturner
commented
Mar 5, 2022
@alamb thanks! |
jimexist
commented
Mar 5, 2022
Hi thanks for the contribution I wonder if we can use an extension trait for Csv writing method so that users can choose to use the method if they import the trait - same goes to other potential methods like write json files, etc. This way we can reduce the minimal dataframe struct size |
matthewmturner
commented
Mar 5, 2022
@jimexist im not opposed, but would the idea be to do this only for methods that are writing? or should this be generalized to all IO methods? Im just wondering where we draw the line between core dataframe methods and extensions. |
Which issue does this PR close?
Closes#1777 task 7
Rationale for this change
What changes are included in this PR?
Are there any user-facing changes?