Description Usage Arguments Details Value Examples
This function checks the validity of the xlsx file used as a GUI to create the data dictionary with XML format.
1 | is.validXLSX(ExcelName, verbose = FALSE)
|
ExcelName |
Character vector of length 1 with the name of the file to read. |
verbose |
|
The input xlsx file is a naive user interface to generate a data dictionary in XML
format with the specification of each single key-value pair in the dictionary. The function
performs a sequence of checks over each sheet of the input xlsx file. These checks are necessary
(though not sufficient) for the construction of the XML file with the function
RepoXLSToDD.
TRUE or FALSE.
1 2 3 4 | path <- system.file('extdata', package = 'RepoReadWrite')
ExcelName <- 'E30103.NombresVariables_V1.xlsx'
cat(file.path(path, ExcelName))
is.validXLSX(file.path(path, ExcelName), verbose = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.