File tree 2 files changed +8
-1
lines changed 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
70
70
--format=actions \
71
71
-i ES01 ` # For now it is ok if docstrings are missing the extended summary` \
72
72
-i " pandas.Series.dt PR01" ` # Accessors are implemented as classes, but we do not document the Parameters section` \
73
- -i " pandas.NA SA01" \
74
73
-i " pandas.Period.freq GL08" \
75
74
-i " pandas.Period.ordinal GL08" \
76
75
-i " pandas.PeriodDtype.freq SA01" \
Original file line number Diff line number Diff line change @@ -347,6 +347,14 @@ class NAType(C_NAType):
347
347
The NA singleton is a missing value indicator defined by pandas. It is
348
348
used in certain new extension dtypes (currently the "string" dtype).
349
349
350
+ See Also
351
+ --------
352
+ numpy.nan : Floating point representation of Not a Number (NaN) for numerical data.
353
+ isna : Detect missing values for an array-like object.
354
+ notna : Detect non-missing values for an array-like object.
355
+ DataFrame.fillna : Fill missing values in a DataFrame.
356
+ Series.fillna : Fill missing values in a Series.
357
+
350
358
Examples
351
359
--------
352
360
>>> pd.NA
You can’t perform that action at this time.
0 commit comments