Replies: 2 comments 1 reply
-
Currently nothing simple, I’m afraid, but we could probably implement that in a future release. Currently, Pmetrics allows differently formatted lines within the single outeq by specifying
So all the quantile lines for outeq 1 would be black/dashdot, and all the lines for outeq 2 would be red/solid. You could not differentially format the median, for example, within each outeq. Would that be acceptable? |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Hi everyone!
I would like to know if there is a way to overlay two sim plots on one graph that represent two different output equations
outeq
.Here's my code for reference:
sim1$plot(at = 1, outeq = 1, line = list(probs = c(0.25, 0.5, 0.75),
color = "black",
dash = c("dashdot", "solid", "dashdot")),
legend = T, log = F, xlab = "Time, h", ylab = "Concentration, mg/L",
title = "Estimated Pharmacokinetic Profile", xlim = c(30, 36))
sim1$plot(at = 1, outeq = 2, line = list(probs = c(0.25, 0.5, 0.75),
color = "red",
dash = c("dashdot", "solid", "dashdot")),
legend = T, log = F, xlab = "Time, h", ylab = "Concentration, mg/L",
title = "Estimated Pharmacokinetic Profile", xlim = c(30, 36))
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions