-
Notifications
You must be signed in to change notification settings - Fork 9
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 rename/rename! of columns #16
Comments
I don't think this makes sense for Tables.jl; the Tables.jl interfaces are very much centered around the producer-consumer workflow; i.e. making generic input tables consumable, allowing generic sinks to work on any input. We haven't supported any kind of mutation at all since there are a lot of generic "table" types that couldn't support it. For these kind of data processing tasks, we've been putting functionality in TableOperations.jl; there we already have a generic So we could potentially have a dedicated |
Awesome. I will give it a try. The plan is to introduce a new table with the columns renamed. I can also try to make it lazy as suggested. |
We now have TableTransforms.Rename, which works for Tables.jl and is actively maintained. |
Would a function like
DataFrames.rename
be welcome in Tables.jl? I can try submitting a PR in the affirmative case.The text was updated successfully, but these errors were encountered: