You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parameterPaths and outputPaths are used in the sensitivityTimeProfiles function signature to select data for plotting. These parameters also need to be consistently applied in the .aggregateSimulationAndObservedData function.
This logic within .aggregateSimulationAndObservedData needs to be adjusted accordingly :
if (!identical(names(simulationResults), parameterPaths)) {
stop(messages$invalidSimulationResultNames(
names(simulationResults), parameterPaths
))
}
The text was updated successfully, but these errors were encountered:
parameterPaths
andoutputPaths
are used in thesensitivityTimeProfiles
function signature to select data for plotting. These parameters also need to be consistently applied in the.aggregateSimulationAndObservedData
function.This logic within
.aggregateSimulationAndObservedData
needs to be adjusted accordingly :if (!identical(names(simulationResults), parameterPaths)) {
stop(messages$invalidSimulationResultNames(
names(simulationResults), parameterPaths
))
}
The text was updated successfully, but these errors were encountered: