Here is a full list of outstanding DataFrame methods we'd like to eventually support. Each of these should be added in a separate PR. I'd recommend looking to tidylog for inspiration of actual implementation and log message content.
Select columns and/or filter rows
Adding columns
Indexes
Joining
Reshaping
Aggregating
Misc
Here is a full list of outstanding DataFrame methods we'd like to eventually support. Each of these should be added in a separate PR. I'd recommend looking to tidylog for inspiration of actual implementation and log message content.
Select columns and/or filter rows
df.loc,df.ilocproperties, which won't work exactly the same as othersAdding columns
df.assigndf.__setitem__df.loc,df.ilocIndexes
df.reindexJoining
df.mergedf.joindf.concatpd.mergepd.merge_asofReshaping
df.stackdf.unstackAggregating
df.pivot_tabledf.groupbyMisc
df.pipe?