plot_iofv_vs_iofv
Plot individual OFV of two models against each other
plot_iofv_vs_iofv(iofv1, iofv2, name1, name2)
iofv1
: (array) Estimated iOFV of the first modeliofv2
: (array) Estimated iOFV of the second modelname1
: (str) Name of first modelname2
: (str) Name of second model(alt.Chart) Scatterplot
## 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)