View source: R/utilities-parameters.R
writeParameterStructureToXLS | R Documentation |
Write parameter structure to excel that can be loaded in MoBi
writeParameterStructureToXLS(
parameterStructure,
paramsXLSpath,
sheet = NULL,
append = FALSE
)
parameterStructure |
A list containing vectors 'paths' with the full paths to the parameters, 'values' the values of the parameters, and 'units' with the units the values are in. |
paramsXLSpath |
Path to the excel file |
sheet |
(Optional) name of the excel sheet |
append |
If TRUE, the existing excel file/sheet will be appended with the new parameter structure. If FALSE (default), the existing file will be overwritten. |
## Not run:
params <- list(paths = c("Container1|Path1", "Container|Second|Third|Path2"), values = c(1, 2), units = c("", "µmol"))
writeParameterStructureToXLS(params, "test.xlsx")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.