We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c5f4ca commit d4045f0Copy full SHA for d4045f0
pandas/core/dtypes/base.py
@@ -45,6 +45,11 @@ class ExtensionDtype:
45
"""
46
A custom data type, to be paired with an ExtensionArray.
47
48
+ This enables support for third-party and custom dtypes within the
49
+ pandas ecosystem. By implementing this interface and pairing it with a custom
50
+ `ExtensionArray`, users can create rich data types that integrate cleanly
51
+ with pandas operations, such as grouping, joining, or aggregation.
52
+
53
See Also
54
--------
55
extensions.register_extension_dtype: Register an ExtensionType
0 commit comments