diff --git a/ci/code_checks.sh b/ci/code_checks.sh index ebcc99100be70..afa58ec7d0208 100755 --- a/ci/code_checks.sh +++ b/ci/code_checks.sh @@ -167,7 +167,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then -i "pandas.Series.str.encode PR07,RT03,SA01" \ -i "pandas.Series.str.find RT03" \ -i "pandas.Series.str.fullmatch RT03" \ - -i "pandas.Series.str.get RT03,SA01" \ -i "pandas.Series.str.index RT03" \ -i "pandas.Series.str.ljust RT03,SA01" \ -i "pandas.Series.str.lower RT03" \ diff --git a/pandas/core/strings/accessor.py b/pandas/core/strings/accessor.py index dd9276179cf4d..60f25ea44dc73 100644 --- a/pandas/core/strings/accessor.py +++ b/pandas/core/strings/accessor.py @@ -1085,6 +1085,13 @@ def get(self, i): Returns ------- Series or Index + Series or Index where each value is the extracted element from + the corresponding input component. + + See Also + -------- + Series.str.extract : Extract capture groups in the regex as columns + in a DataFrame. Examples --------