Skip to content

Commit 811e6a4

Browse files
DOC: fix SA01 for pandas.read_spss (#58934)
1 parent f7590e6 commit 811e6a4

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

ci/code_checks.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
474474
-i "pandas.plotting.lag_plot RT03,SA01" \
475475
-i "pandas.plotting.scatter_matrix PR07,SA01" \
476476
-i "pandas.qcut PR07,SA01" \
477-
-i "pandas.read_spss SA01" \
478477
-i "pandas.set_eng_float_format RT03,SA01" \
479478
-i "pandas.testing.assert_extension_array_equal SA01" \
480479
-i "pandas.tseries.offsets.BDay PR02,SA01" \

pandas/io/spss.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,14 @@ def read_spss(
5252
DataFrame
5353
DataFrame based on the SPSS file.
5454
55+
See Also
56+
--------
57+
read_csv : Read a comma-separated values (csv) file into a pandas DataFrame.
58+
read_excel : Read an Excel file into a pandas DataFrame.
59+
read_sas : Read an SAS file into a pandas DataFrame.
60+
read_orc : Load an ORC object into a pandas DataFrame.
61+
read_feather : Load a feather-format object into a pandas DataFrame.
62+
5563
Examples
5664
--------
5765
>>> df = pd.read_spss("spss_data.sav") # doctest: +SKIP

0 commit comments

Comments
 (0)