View source: R/myOpenXWriteWkbk.R
myOpenXWriteWkbk | R Documentation |
Write a named list to a workbook using openxlsx. Sheet names are list names.
myOpenXWriteWkbk(data_ls, file_v, append_v = T, overwrite_v = T)
data_ls |
list of tables to write |
file_v |
path to output file. |
append_v |
logical ind |
overwrite_v |
logical. Only matters if file_v already exists. If true, will append to existing workbook. If false, will overwrite existing workbook. |
If file_v doesn't exist, then append_v and overwrite_v don't matter If file_v does exist, there are two options: 1. Overwrite the existing file completely (requires append_v = F and overwrite_v = T) 1. Only append new sheets (requires append_v = T and overwrite_v = F) 1. Append new sheets and also overwrite existing sheets (requires append_v = T and overwrite_v = T) (Think this is the same as the firt one...)
writes to file
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.