Skip to content

Commit

Permalink
Fixes Open-Systems-Pharmacology#1278 goodness of fit export all the o…
Browse files Browse the repository at this point in the history
…utputs
  • Loading branch information
pchelle committed Sep 9, 2024
1 parent 7444997 commit 1d11ffb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/utilities-goodness-of-fit.R
Original file line number Diff line number Diff line change
Expand Up @@ -843,8 +843,8 @@ getTimeProfilePlotResults <- function(workflowType, timeRange, simulatedData, ob

outputGroups <- getOutputGroups(metaDataFrame)
for (outputGroup in outputGroups) {
resultId <- paste0("timeProfile-", utils::head(outputGroup$dimension, 1))
resultIdLog <- paste0("timeProfileLog-", utils::head(outputGroup$dimension, 1))
resultId <- paste0("timeProfile-", length(goodnessOfFitPlots)+1)
resultIdLog <- paste0("timeProfileLog-", length(goodnessOfFitPlots)+2)

selectedSimulatedData <- simulatedData[simulatedData$Group %in% outputGroup$group, ]
selectedObservedData <- observedData[observedData$Group %in% outputGroup$group, ]
Expand Down

0 comments on commit 1d11ffb

Please sign in to comment.