File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -484,7 +484,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
484
484
-i " pandas.qcut PR07,SA01" \
485
485
-i " pandas.read_feather SA01" \
486
486
-i " pandas.read_orc SA01" \
487
- -i " pandas.read_sas SA01" \
488
487
-i " pandas.read_spss SA01" \
489
488
-i " pandas.reset_option SA01" \
490
489
-i " pandas.set_eng_float_format RT03,SA01" \
Original file line number Diff line number Diff line change @@ -124,6 +124,14 @@ def read_sas(
124
124
DataFrame if iterator=False and chunksize=None, else SAS7BDATReader
125
125
or XportReader, file format is inferred from file extension.
126
126
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
+
127
135
Examples
128
136
--------
129
137
>>> df = pd.read_sas("sas_data.sas7bdat") # doctest: +SKIP
You can’t perform that action at this time.
0 commit comments