export_xlsx.QR_matrix {JDCruncheR} | R Documentation |
Exporting QR_matrix objects in an Excel file
Description
To export a quality report in an Excel file.
Usage
## S3 method for class 'QR_matrix'
export_xlsx(
x,
layout = c("all", "modalities", "values", "combined"),
create = TRUE,
clear_sheet = TRUE,
auto_format = TRUE,
file_name,
sheet_names,
...
)
Arguments
x |
a |
layout |
the components of the report to export. By default, |
create |
logical indicating whether to create an Excel file if it doesn't exist yet ( |
clear_sheet |
logical indicating whether to clear the Excel sheets before the export ( |
auto_format |
logical indicating whether to format the output ( |
file_name |
optional argument to choose the path and name of the file to export. If not specified, an export.xls will be created in the working directory. |
sheet_names |
names of the exported Excel sheets. If not specified, the sheets will be named after the exported components. If specified, existing sheets with these names will be overwritten. |
... |
other unused parameters. |
Value
Returns invisibly (via invisible(x)
) a workbook object created by XLConnect::loadWorkbook()
for further manipulation.
See Also
Other QR_matrix functions:
export_xlsx()
,
export_xlsx.mQR_matrix()
,
extract_QR()
,
rbind.QR_matrix()
,
sort()
,
weighted_score()