We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da1ec73 commit e713596Copy full SHA for e713596
pandas/core/arrays/boolean.py
@@ -63,6 +63,12 @@ class BooleanDtype(BaseMaskedDtype):
63
-------
64
None
65
66
+ See Also
67
+ --------
68
+ BooleanArray : Array of boolean (True/False) data with missing values.
69
+ Int64Dtype : Extension dtype for int64 integer data.
70
+ StringDtype : Extension dtype for string data.
71
+
72
Examples
73
--------
74
>>> pd.BooleanDtype()
@@ -78,11 +84,6 @@ class BooleanDtype(BaseMaskedDtype):
78
84
[True, False, <NA>]
79
85
Length: 3, dtype: boolean
80
86
81
- See Also
82
- --------
83
- BooleanArray : Array of boolean (True/False) data with missing values.
- Int64Dtype : Extension dtype for int64 integer data.
- StringDtype : Extension dtype for string data.
87
"""
88
89
name: ClassVar[str] = "boolean"
0 commit comments