Skip to content

Commit 73c4fce

Browse files
DOC: fix SA01 for pandas.NA (#59787)
1 parent 0d2505d commit 73c4fce

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

ci/code_checks.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
7070
--format=actions \
7171
-i ES01 `# For now it is ok if docstrings are missing the extended summary` \
7272
-i "pandas.Series.dt PR01" `# Accessors are implemented as classes, but we do not document the Parameters section` \
73-
-i "pandas.NA SA01" \
7473
-i "pandas.Period.freq GL08" \
7574
-i "pandas.Period.ordinal GL08" \
7675
-i "pandas.PeriodDtype.freq SA01" \

pandas/_libs/missing.pyx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,14 @@ class NAType(C_NAType):
347347
The NA singleton is a missing value indicator defined by pandas. It is
348348
used in certain new extension dtypes (currently the "string" dtype).
349349
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+
350358
Examples
351359
--------
352360
>>> pd.NA

0 commit comments

Comments
 (0)