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 @@ -482,7 +482,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
482
482
-i " pandas.plotting.scatter_matrix PR07,SA01" \
483
483
-i " pandas.plotting.table PR07,RT03,SA01" \
484
484
-i " pandas.qcut PR07,SA01" \
485
- -i " pandas.read_feather SA01" \
486
485
-i " pandas.read_orc SA01" \
487
486
-i " pandas.read_spss SA01" \
488
487
-i " pandas.reset_option SA01" \
Original file line number Diff line number Diff line change @@ -107,6 +107,14 @@ def read_feather(
107
107
type of object stored in file
108
108
DataFrame object stored in the file.
109
109
110
+ See Also
111
+ --------
112
+ read_csv : Read a comma-separated values (csv) file into a pandas DataFrame.
113
+ read_excel : Read an Excel file into a pandas DataFrame.
114
+ read_spss : Read an SPSS file into a pandas DataFrame.
115
+ read_orc : Load an ORC object into a pandas DataFrame.
116
+ read_sas : Read SAS file into a pandas DataFrame.
117
+
110
118
Examples
111
119
--------
112
120
>>> df = pd.read_feather("path/to/file.feather") # doctest: +SKIP
You can’t perform that action at this time.
0 commit comments