-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add write_csv to DataFrame #1922
Add write_csv to DataFrame #1922
Conversation
@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 |
Looks good to me 👍
I think taking |
@alamb thanks! |
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 |
@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?