Description Usage Arguments Value Examples
rdf_to_excel()
calls the CADSWES provided RdfToExcel tool for the specified
rdfs
. The RdfToExcelExecutable.exe should be found when searching the Path
environment variable, otherwise this function will error.
1 | rdf_to_excel(rdfs, path, xlsx = NULL)
|
rdfs |
Vector of rdf files. Should end in ".rdf" and exist in the
specified |
path |
Folder containing the rdf files. This is also where the Excel files will be created. |
xlsx |
The Excel file names. If |
Invisibly returns the absolute path to all created Excel files.
1 2 3 4 5 6 7 8 9 10 | ## Not run:
scen_path <- "M:/Shared/CRSS/2020/Scenario/Feb2020_2021,DNF,2007Dems,IG_DCP"
rdfs <- c('KeySlots.rdf','SystemConditions.rdf')
# will save excel files as KeySlots.xlsx and SystemConditions.xlsx
rdf_to_excel(rdfs, scen_path)
# or rename to Feb2020_KeySlots.xlsx and Feb2020_SystemConditions.xlsx
xlsx <- c("Feb2020_KeySlots.xlsx", "Feb2020_SystemConditions.xlsx")
rdf_to_excel(rdfs, scen_path, xlsx)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.