Loads data sets from excel. The excel file containing the data
must be located in the folder projectConfiguration$dataFolder
and be named projectConfiguration$dataFile
.
Importer configuration file must be located in the same folder and named
projectConfiguration$dataImporterConfigurationFile
.
Arguments
- projectConfiguration
Object of class
ProjectConfiguration
containing the necessary information.- sheets
String or a list of strings defining which sheets to load. If
NULL
(default), all sheets within the file are loaded.- importerConfiguration
DataImporterConfiguration
object used to load the data. IfNULL
(default), default esqlabs importer configuration as defined inprojectConfiguration$dataImporterConfigurationFile
will be used.
Examples
if (FALSE) { # \dontrun{
# Create default project configuration
projectConfiguration <- createProjectConfiguration()
dataSets <- loadObservedData(projectConfiguration)
} # }