Modin PandasDataframe Objects#
modin.core.dataframe.pandas
is the package which houses common implementations
of different Modin internal classes used by most pandas-based storage formats.
It also double-serves as the full example of how to implement Modin execution backend pieces (sans the execution part which is absent here), as it implements everything an execution backend needs to be fully conformant to Modin expectations.
PandasDataframe is the class conforming to Dataframe Algebra.
PandasDataframePartition implements
Partition
interface holdingpandas.DataFrame
.PandasDataframeAxisPartition is a joined group of
PandasDataframePartition
-s along some axis (either rows or labels)PandasDataframePartitionManager is the manager that implements the primitives used for Dataframe Algebra operations over
PandasDataframePartition
-s