Base Frame Objects

Modin paritions data to scale efficiently. To keep track of everything a few key classes are introduced: Frame, Partition, AxisPartiton and PartitionManager.

  • Frame is the class conforming to DataFrame Algebra.

  • Partition is an element of a NxM grid which, when combined, represents the Frame

  • AxisPartition is a joined group of Parition-s along some axis (either rows or labels)

  • PartitionManager is the manager that implements the primitives used for DataFrame Algebra operations over Partition-s