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
Pandas has an extension framework, how do you register the accessors and extension arrays with modin? My API has lots of custom dtypes and accessors to do specialized analysis and it would be great if modin honored those.
Hi @achapkowski, thanks for the question! We merged PR #6961 on this matter last week. You can use register_dataframe_accessor, register_series_accessor or register_pd_accessor to register a custom accessor for a DataFrame, Series object or pd module, respectively. Just an example from our tests.
Pandas has an extension framework, how do you register the accessors and extension arrays with modin? My API has lots of custom dtypes and accessors to do specialized analysis and it would be great if modin honored those.
see: https://pandas.pydata.org/docs/development/extending.html
The text was updated successfully, but these errors were encountered: