Skip to content

Commit 0729042

Browse files
DOC: fix SA01 for pandas.read_orc
1 parent b0c4194 commit 0729042

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
@@ -481,7 +481,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
481481
-i "pandas.plotting.scatter_matrix PR07,SA01" \
482482
-i "pandas.plotting.table PR07,RT03,SA01" \
483483
-i "pandas.qcut PR07,SA01" \
484-
-i "pandas.read_orc SA01" \
485484
-i "pandas.read_spss SA01" \
486485
-i "pandas.reset_option SA01" \
487486
-i "pandas.set_eng_float_format RT03,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)