
Save a named matrix as an Excel file.
matrix.save_named_matrix_to_excel.Rd
Save a named matrix as an Excel file.
Usage
matrix.save_named_matrix_to_excel(
matrix_data,
file_path,
sheet_name = "Sheet1",
save_type = "new"
)
Arguments
- matrix_data
matrix. Matrix for saving.
- file_path
character. Path to the Excel file.
- sheet_name
character. Name of the Excel sheet.
- save_type
character. Defines whether the Excel file should be created or overwritten (save_type = "new"), or new sheet should be added to the existing Excel file (save_type = "add").