diff --git a/pandas/core/dtypes/base.py b/pandas/core/dtypes/base.py index d8a42d83b6c54..428fc24cd08ac 100644 --- a/pandas/core/dtypes/base.py +++ b/pandas/core/dtypes/base.py @@ -45,6 +45,11 @@ class ExtensionDtype: """ A custom data type, to be paired with an ExtensionArray. + This enables support for third-party and custom dtypes within the + pandas ecosystem. By implementing this interface and pairing it with a custom + `ExtensionArray`, users can create rich data types that integrate cleanly + with pandas operations, such as grouping, joining, or aggregation. + See Also -------- extensions.register_extension_dtype: Register an ExtensionType