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
# args order is [axis, source, position, target, cmd], all default to None.# `cmd` is a placeholder; we don't have to use this name, can be called something better instead.df.move("row", 0, "after", 3)
df.move("column", "b", "after", "c")
# here we pass in only cmd, which gets split into [axis, source, position, target]# and used in the underlying implementation.df.move(cmd="row 0 after 3")
df.move(cmd="column b after c")
The text was updated successfully, but these errors were encountered:
Brief Description
Arose from discussion in PR #997 , proposed by @ericmjl , comment / review here.
The proposal is for a more declarative approach for
move
function. At the moment, the API is as such:Proposed API
The text was updated successfully, but these errors were encountered: