Skip to content

Commit 979d51e

Browse files
DOC: fix SA01 for pandas.read_sas (#58883)
* DOC: fix SA01 for pandas.read_sas * DOC: fix SA01 for pandas.read_sas
1 parent 4a9ac5a commit 979d51e

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
@@ -484,7 +484,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
484484
-i "pandas.qcut PR07,SA01" \
485485
-i "pandas.read_feather SA01" \
486486
-i "pandas.read_orc SA01" \
487-
-i "pandas.read_sas SA01" \
488487
-i "pandas.read_spss SA01" \
489488
-i "pandas.reset_option SA01" \
490489
-i "pandas.set_eng_float_format RT03,SA01" \

pandas/io/sas/sasreader.py

+8
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,14 @@ def read_sas(
124124
DataFrame if iterator=False and chunksize=None, else SAS7BDATReader
125125
or XportReader, file format is inferred from file extension.
126126
127+
See Also
128+
--------
129+
read_csv : Read a comma-separated values (csv) file into a pandas DataFrame.
130+
read_excel : Read an Excel file into a pandas DataFrame.
131+
read_spss : Read an SPSS file into a pandas DataFrame.
132+
read_orc : Load an ORC object into a pandas DataFrame.
133+
read_feather : Load a feather-format object into a pandas DataFrame.
134+
127135
Examples
128136
--------
129137
>>> df = pd.read_sas("sas_data.sas7bdat") # doctest: +SKIP

0 commit comments

Comments
 (0)