diff --git a/ci/code_checks.sh b/ci/code_checks.sh index b9b3ca24b4162..d643192d5b01f 100755 --- a/ci/code_checks.sh +++ b/ci/code_checks.sh @@ -482,7 +482,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then -i "pandas.plotting.scatter_matrix PR07,SA01" \ -i "pandas.plotting.table PR07,RT03,SA01" \ -i "pandas.qcut PR07,SA01" \ - -i "pandas.read_feather SA01" \ -i "pandas.read_orc SA01" \ -i "pandas.read_sas SA01" \ -i "pandas.read_spss SA01" \ diff --git a/pandas/io/feather_format.py b/pandas/io/feather_format.py index b42dbaa579ee7..8132167fbe05c 100644 --- a/pandas/io/feather_format.py +++ b/pandas/io/feather_format.py @@ -107,6 +107,14 @@ def read_feather( type of object stored in file DataFrame object stored in the file. + See Also + -------- + read_csv : Read a comma-separated values (csv) file into a pandas DataFrame. + read_excel : Read an Excel file into a pandas DataFrame. + read_spss : Read an SPSS file into a pandas DataFrame. + read_orc : Load an ORC object into a pandas DataFrame. + read_sas : Read SAS file into a pandas DataFrame. + Examples -------- >>> df = pd.read_feather("path/to/file.feather") # doctest: +SKIP