File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
82
82
pandas.Timestamp.ceil \
83
83
pandas.Timestamp.floor \
84
84
pandas.Timestamp.round \
85
- pandas.ExcelWriter \
86
85
pandas.read_json \
87
86
pandas.io.json.build_table_schema \
88
87
pandas.io.formats.style.Styler.to_latex \
Original file line number Diff line number Diff line change @@ -935,7 +935,7 @@ class ExcelWriter(Generic[_WorkbookT]):
935
935
is installed otherwise `openpyxl <https://pypi.org/project/openpyxl/>`__
936
936
* `odswriter <https://pypi.org/project/odswriter/>`__ for ods files
937
937
938
- See `` DataFrame.to_excel` ` for typical usage.
938
+ See :meth:` DataFrame.to_excel` for typical usage.
939
939
940
940
The writer should be used as a context manager. Otherwise, call `close()` to save
941
941
and close any opened file handles.
@@ -1031,7 +1031,7 @@ class ExcelWriter(Generic[_WorkbookT]):
1031
1031
Here, the `if_sheet_exists` parameter can be set to replace a sheet if it
1032
1032
already exists:
1033
1033
1034
- >>> with ExcelWriter(
1034
+ >>> with pd. ExcelWriter(
1035
1035
... "path_to_file.xlsx",
1036
1036
... mode="a",
1037
1037
... engine="openpyxl",
@@ -1042,7 +1042,8 @@ class ExcelWriter(Generic[_WorkbookT]):
1042
1042
You can also write multiple DataFrames to a single sheet. Note that the
1043
1043
``if_sheet_exists`` parameter needs to be set to ``overlay``:
1044
1044
1045
- >>> with ExcelWriter("path_to_file.xlsx",
1045
+ >>> with pd.ExcelWriter(
1046
+ ... "path_to_file.xlsx",
1046
1047
... mode="a",
1047
1048
... engine="openpyxl",
1048
1049
... if_sheet_exists="overlay",
You can’t perform that action at this time.
0 commit comments