JuliaML / TableTransforms.jl

Transforms and pipelines with tabular data in Julia
https://juliaml.github.io/TableTransforms.jl/stable
MIT License
102 stars 15 forks source link

`Rename` could accept a modification function #266

Closed juliohm closed 5 months ago

juliohm commented 5 months ago

It would be nice to be able to rename columns based on their current name:

table |> Rename(n -> n*"_suffix")

using a modification function that takes a string as input and returns another string with the new name.