plot_individual_predictions {pharmr} | R Documentation |
plot_individual_predictions
Description
Plot DV and predictions grouped on individuals
Usage
plot_individual_predictions(model, predictions, individuals = NULL)
Arguments
model |
(Model) Previously run Pharmpy model. |
predictions |
(data.frame) One column for each type of prediction |
individuals |
(array(numeric) (optional)) A vector of individuals to include. NULL for all individuals |
Value
(alt.Chart) Plot
Examples
## Not run:
model <- load_example_model("pheno")
res <- load_example_modelfit_results("pheno")
plot_individual_predictions(model, res$predictions, individuals=c(1, 2, 3, 4, 5))
## End(Not run)
[Package pharmr version 1.0.1 Index]