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
It seems that given you allow that syntax when transforming a single column, why not also on multiple ones? the problem with the current approach? well, if I want to add two transformed columns which get the same generated name, I can't do that in one go. Or what's the best approach here?
julia> select(df, [:a, :b] => (a,b) -> a ./ b, [:a, :b] => (a,b) -> a .+ b)
ERROR: ArgumentError: duplicate target column name a_b_function passed
The text was updated successfully, but these errors were encountered:
I was trying to do this
It seems that given you allow that syntax when transforming a single column, why not also on multiple ones? the problem with the current approach? well, if I want to add two transformed columns which get the same generated name, I can't do that in one go. Or what's the best approach here?
The text was updated successfully, but these errors were encountered: