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
I would like to pass a renamecols function to transform. innerjoin takes a renamecols function and transform takes a renamecols::Bool. I want to replace the Bool with a function parameter that defaults to column_function(c) = "$(c)_function" and can be replaced with identity for users who currently pass renamecols=false.
The text was updated successfully, but these errors were encountered:
This is a good proposal in line with some other proposals to allow dst to be a function in src => fun => dst, see #2876.
We will just need to work out the best approach.
I would like to pass a
renamecols
function totransform
.innerjoin
takes arenamecols
function andtransform
takes arenamecols::Bool
. I want to replace the Bool with a function parameter that defaults tocolumn_function(c) = "$(c)_function"
and can be replaced withidentity
for users who currently passrenamecols=false
.The text was updated successfully, but these errors were encountered: