Skip to content

Latest commit

 

History

History
100 lines (77 loc) · 4.07 KB

internals.rst

File metadata and controls

100 lines (77 loc) · 4.07 KB

{{ header }}

Internals

This section will provide a look into some of pandas internals. It's primarily intended for developers of pandas itself.

Indexing

In pandas there are a few objects implemented which can serve as valid containers for the axis labels:

There are functions that make the creation of a regular index easy:

  • :func:`date_range`: fixed frequency date range generated from a time rule or DateOffset. An ndarray of Python datetime objects
  • :func:`period_range`: fixed frequency date range generated from a time rule or DateOffset. An ndarray of :class:`Period` objects, representing timespans

The motivation for having an Index class in the first place was to enable different implementations of indexing. This means that it's possible for you, the user, to implement a custom Index subclass that may be better suited to a particular application than the ones provided in pandas.

From an internal implementation point of view, the relevant methods that an Index must define are one or more of the following (depending on how incompatible the new object internals are with the Index functions):

MultiIndex

Internally, the :class:`MultiIndex` consists of a few things: the levels, the integer codes, and the level names:

.. ipython:: python

   index = pd.MultiIndex.from_product(
       [range(3), ["one", "two"]], names=["first", "second"]
   )
   index
   index.levels
   index.codes
   index.names

You can probably guess that the codes determine which unique element is identified with that location at each layer of the index. It's important to note that sortedness is determined solely from the integer codes and does not check (or care) whether the levels themselves are sorted. Fortunately, the constructors :meth:`~MultiIndex.from_tuples` and :meth:`~MultiIndex.from_arrays` ensure that this is true, but if you compute the levels and codes yourself, please be careful.

Values

pandas extends NumPy's type system with custom types, like :class:`Categorical` or datetimes with a timezone, so we have multiple notions of "values". For 1-D containers (Index classes and Series) we have the following convention:

  • cls._values refers is the "best possible" array. This could be an ndarray or ExtensionArray.

So, for example, Series[category]._values is a Categorical.

Subclassing pandas data structures

This section has been moved to :ref:`extending.subclassing-pandas`.