Skip to content

Commit 84dab89

Browse files
DOC: fix SA01 for pandas.read_feather (#58884)
1 parent 979d51e commit 84dab89

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

ci/code_checks.sh

-1
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
482482
-i "pandas.plotting.scatter_matrix PR07,SA01" \
483483
-i "pandas.plotting.table PR07,RT03,SA01" \
484484
-i "pandas.qcut PR07,SA01" \
485-
-i "pandas.read_feather SA01" \
486485
-i "pandas.read_orc SA01" \
487486
-i "pandas.read_spss SA01" \
488487
-i "pandas.reset_option SA01" \

pandas/io/feather_format.py

+8
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,14 @@ def read_feather(
107107
type of object stored in file
108108
DataFrame object stored in the file.
109109
110+
See Also
111+
--------
112+
read_csv : Read a comma-separated values (csv) file into a pandas DataFrame.
113+
read_excel : Read an Excel file into a pandas DataFrame.
114+
read_spss : Read an SPSS file into a pandas DataFrame.
115+
read_orc : Load an ORC object into a pandas DataFrame.
116+
read_sas : Read SAS file into a pandas DataFrame.
117+
110118
Examples
111119
--------
112120
>>> df = pd.read_feather("path/to/file.feather") # doctest: +SKIP

0 commit comments

Comments
 (0)