Skip to content

Commit 2e93c63

Browse files
DOC: fix SA01 for pandas.read_orc (#58891)
1 parent bef7c39 commit 2e93c63

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
@@ -480,7 +480,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
480480
-i "pandas.plotting.parallel_coordinates PR07,RT03,SA01" \
481481
-i "pandas.plotting.scatter_matrix PR07,SA01" \
482482
-i "pandas.qcut PR07,SA01" \
483-
-i "pandas.read_orc SA01" \
484483
-i "pandas.read_spss SA01" \
485484
-i "pandas.set_eng_float_format RT03,SA01" \
486485
-i "pandas.testing.assert_extension_array_equal SA01" \

pandas/io/orc.py

+8
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,14 @@ def read_orc(
8585
DataFrame
8686
DataFrame based on the ORC file.
8787
88+
See Also
89+
--------
90+
read_csv : Read a comma-separated values (csv) file into a pandas DataFrame.
91+
read_excel : Read an Excel file into a pandas DataFrame.
92+
read_spss : Read an SPSS file into a pandas DataFrame.
93+
read_sas : Load a SAS file into a pandas DataFrame.
94+
read_feather : Load a feather-format object into a pandas DataFrame.
95+
8896
Notes
8997
-----
9098
Before using this function you should read the :ref:`user guide about ORC <io.orc>`

0 commit comments

Comments
 (0)