File tree 1 file changed +11
-0
lines changed
1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -824,17 +824,28 @@ class ExcelWriter(object):
824
824
825
825
Notes
826
826
-----
827
+ None of methods and properties are considered public.
828
+
827
829
For compatibility with CSV writers, ExcelWriter serializes lists
828
830
and dicts to strings before writing.
829
831
830
832
Examples
831
833
--------
834
+
832
835
In order to write separate DataFrames to separate sheets
833
836
in a single Excel file, one can pass an ExcelWriter.
834
837
835
838
>>> with ExcelWriter('path_to_file.xlsx') as writer:
836
839
... df1.to_excel(writer, sheet_name='Sheet1')
837
840
... df2.to_excel(writer, sheet_name='Sheet2')
841
+
842
+ Attributes
843
+ ----------
844
+ None
845
+
846
+ Methods
847
+ -------
848
+ None
838
849
"""
839
850
# Defining an ExcelWriter implementation (see abstract methods for more...)
840
851
You can’t perform that action at this time.
0 commit comments