File tree 5 files changed +7
-7
lines changed
5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -840,10 +840,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
840
840
pandas.plotting.parallel_coordinates\
841
841
pandas.plotting.radviz\
842
842
pandas.plotting.table\
843
- pandas.read_orc\
844
- pandas.read_sas\
845
- pandas.read_spss\
846
- pandas.read_stata\
847
843
pandas.set_eng_float_format # There should be no backslash in the final line, please keep this comment in the last ignored function
848
844
RET=$(( $RET + $? )) ; echo $MSG " DONE"
849
845
Original file line number Diff line number Diff line change @@ -83,6 +83,7 @@ def read_orc(
83
83
Returns
84
84
-------
85
85
DataFrame
86
+ DataFrame based on the ORC file.
86
87
87
88
Notes
88
89
-----
Original file line number Diff line number Diff line change @@ -119,8 +119,9 @@ def read_sas(
119
119
120
120
Returns
121
121
-------
122
- DataFrame if iterator=False and chunksize=None, else SAS7BDATReader
123
- or XportReader
122
+ DataFrame, SAS7BDATReader, or XportReader
123
+ DataFrame if iterator=False and chunksize=None, else SAS7BDATReader
124
+ or XportReader, file format is inferred from file extension.
124
125
125
126
Examples
126
127
--------
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ def read_spss(
50
50
Returns
51
51
-------
52
52
DataFrame
53
+ DataFrame based on the SPSS file.
53
54
54
55
Examples
55
56
--------
Original file line number Diff line number Diff line change 161
161
162
162
Returns
163
163
-------
164
- DataFrame or pandas.api.typing.StataReader
164
+ DataFrame, pandas.api.typing.StataReader
165
+ If iterator or chunksize, returns StataReader, else DataFrame.
165
166
166
167
See Also
167
168
--------
You can’t perform that action at this time.
0 commit comments