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
df.convert { }.asColumn { } restricts name change df.convert { }.to { } is the same as df.replace { }.with { } - and even recommended as such in the documentation
We could either restrict name change in df.convert { }.to { }, keep it as is, or remove df.convert { }.to { }
related to #1143
The text was updated successfully, but these errors were encountered:
I vote for removing df.convert { }.to { } because it's confusingly named the same as df.convert { }.to<Int>(). It's not clear from the name when to choose to/with whereas asColumn/with is easier
df.convert { }.asColumn { }
restricts name changedf.convert { }.to { }
is the same asdf.replace { }.with { }
- and even recommended as such in the documentationWe could either restrict name change in
df.convert { }.to { }
, keep it as is, or removedf.convert { }.to { }
related to #1143
The text was updated successfully, but these errors were encountered: