From c700a5dace17551760543805b965f5fc6d95dc46 Mon Sep 17 00:00:00 2001 From: Tuhin Sharma Date: Tue, 23 Apr 2024 00:58:15 +0530 Subject: [PATCH 1/2] DOC: add SA01 to HDFStore.select --- pandas/io/pytables.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pandas/io/pytables.py b/pandas/io/pytables.py index 5c04342b9eb55..0af5c753977bd 100644 --- a/pandas/io/pytables.py +++ b/pandas/io/pytables.py @@ -859,6 +859,12 @@ def select( object Retrieved object from file. + See Also + -------- + HDFStore.select_as_coordinates : Returns the selection as an index. + HDFStore.select_column : Returns a single column from the table. + HDFStore.select_as_multiple : Retrieves pandas objects from multiple tables. + Examples -------- >>> df = pd.DataFrame([[1, 2], [3, 4]], columns=["A", "B"]) From 1c654fcc2beab04b66d6fbfea64cfc603210040d Mon Sep 17 00:00:00 2001 From: Tuhin Sharma Date: Tue, 23 Apr 2024 00:58:46 +0530 Subject: [PATCH 2/2] DOC: remove HDFStore.select --- ci/code_checks.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/ci/code_checks.sh b/ci/code_checks.sh index a7a4bcf165f2a..599d4d65b9101 100755 --- a/ci/code_checks.sh +++ b/ci/code_checks.sh @@ -122,7 +122,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then -i "pandas.DatetimeTZDtype.unit SA01" \ -i "pandas.Grouper PR02" \ -i "pandas.HDFStore.put PR01,SA01" \ - -i "pandas.HDFStore.select SA01" \ -i "pandas.HDFStore.walk SA01" \ -i "pandas.Index PR07" \ -i "pandas.Index.T SA01" \