-
Notifications
You must be signed in to change notification settings - Fork 674
FEAT: Properly implement map operator #4909
Copy link
Copy link
Open
Labels
EpicInternalsInternal modin functionalityInternal modin functionalityP2Minor bugs or low-priority feature requestsMinor bugs or low-priority feature requestsnew feature/request 💬Requests and pull requests for new featuresRequests and pull requests for new features
Metadata
Metadata
Assignees
Labels
EpicInternalsInternal modin functionalityInternal modin functionalityP2Minor bugs or low-priority feature requestsMinor bugs or low-priority feature requestsnew feature/request 💬Requests and pull requests for new featuresRequests and pull requests for new features
Type
Fields
Give feedbackNo fields configured for issues without a type.
Most of the behavior for the
mapoperator proposed in the Modin research papers is actually covered by the broadcast_* methods on dataframe/partition manager classes. We should refactor the codebase to use the logic forbroadcastwithinmapinstead, which hopefully enables performance improvements.mapshould also have an optionaldtypesargument to hint the type of the resulting dataframe.See also: stale algebra tracking issue #2924.