plot_iofv_vs_iofv {pharmr} | R Documentation |
plot_iofv_vs_iofv
Description
Plot individual OFV of two models against each other
Usage
plot_iofv_vs_iofv(iofv1, iofv2, name1, name2)
Arguments
iofv1 |
(array) Estimated iOFV of the first model |
iofv2 |
(array) Estimated iOFV of the second model |
name1 |
(str) Name of first model |
name2 |
(str) Name of second model |
Value
(alt.Chart) Scatterplot
Examples
## Not run:
res1 <- load_example_modelfit_results("pheno")
res2 <- load_example_modelfit_results("pheno_linear")
plot_iofv_vs_iofv(res1$individual_ofv, res2$individual_ofv, "nonlin", "linear")
## End(Not run)
[Package pharmr version 1.0.1 Index]