diff --git a/ci/code_checks.sh b/ci/code_checks.sh index 996f361e9440f..bdeeecd96521e 100755 --- a/ci/code_checks.sh +++ b/ci/code_checks.sh @@ -165,7 +165,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then -i "pandas.RangeIndex.start SA01" \ -i "pandas.RangeIndex.step SA01" \ -i "pandas.RangeIndex.stop SA01" \ - -i "pandas.Series SA01" \ -i "pandas.Series.__iter__ RT03,SA01" \ -i "pandas.Series.add PR07" \ -i "pandas.Series.backfill PR01,SA01" \ diff --git a/pandas/core/series.py b/pandas/core/series.py index 8a26d52bb5df1..2065a2ad5530e 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -262,6 +262,11 @@ class Series(base.IndexOpsMixin, NDFrame): # type: ignore[misc] copy : bool, default False Copy input data. Only affects Series or 1d ndarray input. See examples. + See Also + -------- + DataFrame : Two-dimensional, size-mutable, potentially heterogeneous tabular data. + Index : Immutable sequence used for indexing and alignment. + Notes ----- Please reference the :ref:`User Guide ` for more information.