Extensions#
These are primarily intended for library authors looking to extend pandas objects.
Register an ExtensionType with pandas as class decorator.  | 
|
Register a custom accessor on DataFrame objects.  | 
|
Register a custom accessor on Series objects.  | 
|
Register a custom accessor on Index objects.  | 
|
A custom data type, to be paired with an ExtensionArray.  | 
Abstract base class for custom 1-D array types.  | 
|
  | 
A pandas ExtensionArray for NumPy data.  | 
Additionally, we have some utility methods for ensuring your object behaves correctly.
  | 
Check if indexer is a valid array indexer for array.  | 
The sentinel pandas.api.extensions.no_default is used as the default
value in some methods. Use an is comparison to check if the user
provides a non-default value.