File tree 3 files changed +25
-13
lines changed
3 files changed +25
-13
lines changed Original file line number Diff line number Diff line change @@ -134,11 +134,6 @@ is the missing value for datetime data.
134
134
135
135
Timestamp
136
136
137
- .. autosummary ::
138
- :toctree: api/
139
-
140
- NaT
141
-
142
137
Properties
143
138
~~~~~~~~~~
144
139
.. autosummary ::
@@ -257,11 +252,6 @@ is the missing value for timedelta data.
257
252
258
253
Timedelta
259
254
260
- .. autosummary ::
261
- :toctree: api/
262
-
263
- NaT
264
-
265
255
Properties
266
256
~~~~~~~~~~
267
257
.. autosummary ::
@@ -465,7 +455,6 @@ pandas provides this through :class:`arrays.IntegerArray`.
465
455
UInt16Dtype
466
456
UInt32Dtype
467
457
UInt64Dtype
468
- NA
469
458
470
459
.. _api.arrays.float_na :
471
460
@@ -484,7 +473,6 @@ Nullable float
484
473
485
474
Float32Dtype
486
475
Float64Dtype
487
- NA
488
476
489
477
.. _api.arrays.categorical :
490
478
@@ -621,7 +609,6 @@ with a bool :class:`numpy.ndarray`.
621
609
:template: autosummary/class_without_autosummary.rst
622
610
623
611
BooleanDtype
624
- NA
625
612
626
613
627
614
.. Dtype attributes which are manually listed in their docstrings: including
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ are mentioned in the documentation.
53
53
options
54
54
extensions
55
55
testing
56
+ missing_value
56
57
57
58
.. This is to prevent warnings in the doc build. We don't want to encourage
58
59
.. these methods.
Original file line number Diff line number Diff line change
1
+ {{ header }}
2
+
3
+ .. _api.missing_value :
4
+
5
+ ==============
6
+ Missing values
7
+ ==============
8
+ .. currentmodule :: pandas
9
+
10
+ NA is the way to represent missing values for nullable dtypes (see below):
11
+
12
+ .. autosummary ::
13
+ :toctree: api/
14
+ :template: autosummary/class_without_autosummary.rst
15
+
16
+ NA
17
+
18
+ NaT is the missing value for timedelta and datetime data (see below):
19
+
20
+ .. autosummary ::
21
+ :toctree: api/
22
+ :template: autosummary/class_without_autosummary.rst
23
+
24
+ NaT
You can’t perform that action at this time.
0 commit comments