Skip to content

Commit 2e05c1b

Browse files
KeiOshimapmhatre1
authored andcommitted
DOC: fixinf SA01 issue for DataFrame.to_feather (pandas-dev#58378)
1 parent 21b7320 commit 2e05c1b

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

ci/code_checks.sh

-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
9999
-i "pandas.DataFrame.std PR01,RT03,SA01" \
100100
-i "pandas.DataFrame.sum RT03" \
101101
-i "pandas.DataFrame.swaplevel SA01" \
102-
-i "pandas.DataFrame.to_feather SA01" \
103102
-i "pandas.DataFrame.to_markdown SA01" \
104103
-i "pandas.DataFrame.to_parquet RT03" \
105104
-i "pandas.DataFrame.var PR01,RT03,SA01" \

pandas/core/frame.py

+10
Original file line numberDiff line numberDiff line change
@@ -2685,6 +2685,16 @@ def to_feather(self, path: FilePath | WriteBuffer[bytes], **kwargs) -> None:
26852685
This includes the `compression`, `compression_level`, `chunksize`
26862686
and `version` keywords.
26872687
2688+
See Also
2689+
--------
2690+
DataFrame.to_parquet : Write a DataFrame to the binary parquet format.
2691+
DataFrame.to_excel : Write object to an Excel sheet.
2692+
DataFrame.to_sql : Write to a sql table.
2693+
DataFrame.to_csv : Write a csv file.
2694+
DataFrame.to_json : Convert the object to a JSON string.
2695+
DataFrame.to_html : Render a DataFrame as an HTML table.
2696+
DataFrame.to_string : Convert DataFrame to a string.
2697+
26882698
Notes
26892699
-----
26902700
This function writes the dataframe as a `feather file

0 commit comments

Comments
 (0)