Learn R Programming

xlcharts (version 0.0.1)

save_workbook: save_workbook

Description

Save the given workbook on the filesystem under the name filename.

https://openpyxl.readthedocs.io/en/latest/api/openpyxl.writer.excel.html

Usage

save_workbook(workbook, filename, ...)

Value

An openpyxl Python object.

Arguments

workbook

workbook

filename

filename

...

Additional arguments, i.e. kwargs.

Details

:param workbook: the workbook to save :type workbook: :class:`openpyxl.workbook.Workbook` :param filename: the path to which save the workbook :type filename: string :rtype: bool

Examples

Run this code
if (FALSE) {
save_workbook(workbook = wb, filename = tempfile())
}

Run the code above in your browser using DataLab