File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -50,22 +50,21 @@ class BooleanDtype(BaseMaskedDtype):
50
50
51
51
.. warning::
52
52
53
- BooleanDtype is considered experimental. The implementation and
54
- parts of the API may change without warning.
53
+ BooleanDtype is considered experimental. The implementation and
54
+ parts of the API may change without warning.
55
55
56
56
Attributes
57
57
----------
58
58
name : str
59
59
String identifying the dtype ('boolean').
60
- na_value : pandas.NA
61
- The scalar missing value used for this dtype.
62
60
kind : str
63
61
The kind of data ('b' for boolean).
64
62
numpy_dtype : numpy.dtype
65
63
The underlying NumPy dtype used ('bool').
66
64
type : type
67
65
The scalar type for elements of this dtype (np.bool_).
68
66
67
+
69
68
See Also
70
69
--------
71
70
BooleanArray : Extension array for boolean data with missing values.
@@ -74,7 +73,7 @@ class BooleanDtype(BaseMaskedDtype):
74
73
Series : One-dimensional ndarray with axis labels.
75
74
DataFrame : Two-dimensional, size-mutable, tabular data.
76
75
77
- Examples
76
+ Examples
78
77
--------
79
78
Create a Series with BooleanDtype:
80
79
You can’t perform that action at this time.
0 commit comments