Support more DataFrame methods #2
Labels
enhancement
New feature or request
good first issue
Good for newcomers
help wanted
Extra attention is needed
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.iloc
properties
, which won't work exactly the same as othersAdding columns
df.assign
df.__setitem__
df.loc
,df.iloc
Indexes
df.reindex
Joining
df.merge
df.join
df.concat
pd.merge
pd.merge_asof
Reshaping
df.stack
df.unstack
Aggregating
df.pivot_table
df.groupby
Misc
df.pipe
?The text was updated successfully, but these errors were encountered: