3
ExcelWriterクラスのを使用したいと思っています。 ExcelWriterはpd.ExcelWriterのようにthisポストのように呼び出すことができますが、Pandas APIの情報はありません。だからどこの文書を見つけることができますか?ExcelWriterのドキュメントはどこにありますか
ExcelWriterクラスのを使用したいと思っています。 ExcelWriterはpd.ExcelWriterのようにthisポストのように呼び出すことができますが、Pandas APIの情報はありません。だからどこの文書を見つけることができますか?ExcelWriterのドキュメントはどこにありますか
"Working with Python Pandas and XlsxWriter" documentationとPandas Cookbook IO (Excel)をお読みください。ただ?
(疑問符)に続く関数/メソッド/コンストラクタの名前を入力し、Enter
を押してください - - それはあなたのdocstring
を紹介
別の便利なオプションは、ipython
またはJupyter Notebook
のようなPythonの対話シェルを使用することです。 ipython
で
デモ:
In [84]: pd.ExcelWriter?
Init signature: pd.ExcelWriter(path, engine=None, **kwargs)
Docstring:
Class for writing DataFrame objects into excel sheets, default is to use
xlwt for xls, openpyxl for xlsx. See DataFrame.to_excel for typical usage.
Parameters
----------
path : string
Path to xls or xlsx file.
engine : string (optional)
Engine to use for writing. If None, defaults to
``io.excel.<extension>.writer``. NOTE: can only be passed as a keyword
argument.
date_format : string, default None
Format string for dates written into Excel files (e.g. 'YYYY-MM-DD')
datetime_format : string, default None
Format string for datetime objects written into Excel files
(e.g. 'YYYY-MM-DD HH:MM:SS')
Notes
-----
For compatibility with CSV writers, ExcelWriter serializes lists
and dicts to strings before writing.