DataFrame.toExcel
Converts a DataFrame or Series to Excel file and write file to disk or download in browser.
Deprecated in v1.1.0: Use the dfd.toExcel
function directly instead
DataFrame.toExcel(options)
Parameters | Type | Description | Default |
options | object, optional | Configuration object:
| { filePath: "./output.xlsx", sheetName: "Sheet1" } |
The toExcel function can be used to write out a DataFrame or Series to Excel (.xlsx) file. The output format will depend on the environment. In the following examples, we show you how to write/download an Excel file from Node and Browser environments.
Convert DataFrame to Excel and write to file path
Writing an Excel file to a local file path is only supported in the Nodejs environment
Convert DataFrame to Excel and download the file in a browser
You can automatically convert and download an Excel file in a browser environment, by specifying a fileName
.
Last updated