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