-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
plotPopulationTimeProfile
- upper quantile is not shown
#1062
Labels
Comments
I think I know what's the problem. |
With #1054 library(ospsuite)
simFilePath <- system.file("extdata", "Aciclovir.pkml", package = "ospsuite")
sim <- loadSimulation(simFilePath)
outputPaths <- c(
"Organism|PeripheralVenousBlood|Aciclovir|Plasma (Peripheral Venous Blood)",
"Organism|Muscle|Intracellular|Aciclovir|Concentration"
)
simResults <- importResultsFromCSV(
simulation = sim,
filePaths = system.file("extdata", "SimResults_pop.csv", package = "ospsuite")
)
myDataCombined <- DataCombined$new()
myDataCombined$addSimulationResults(
simulationResults = simResults,
quantitiesOrPaths = outputPaths[[2]],
groups = "Aciclovir PVB"
)
plotPopulationTimeProfile(myDataCombined, quantiles = c(.2, .5, .8)) Created on 2022-08-09 by the reprex package (v2.0.1.9000) |
IndrajeetPatil
added a commit
that referenced
this issue
Aug 9, 2022
17 tasks
Ah ok, I wasn't using the latest version of the branch... My bad. |
No, no, I meant that that PR would fix this issue 😅 |
IndrajeetPatil
changed the title
Aug 9, 2022
plotPopulationTimeProfile
- upper quantile is not shown.plotPopulationTimeProfile
- upper quantile is not shown
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In the current version, only the mid quantile is shown as a line and the lower quantile as shaded area, the upper quantile is not presented:
The text was updated successfully, but these errors were encountered: