plot_nmprogress returns a plot or set of plots showing the evolution of
parameter estimates by iteration.
plot_nmprogress(
fileName,
fileExt = ".lst",
metric = "perc",
lineCol = "#902C10",
idlineCol = "black"
)A NONMEM output file prefix, without extension (e.g. 'run315').
The file extension for NONMEM output, set to '.lst' by default.
What to show in the plot. Allowed options are 'est' (the actual estimate) or 'perc' (the percentage change in the estimated or OFV since estimation began). Default is 'perc'.
Line color. Default is '#902C10'.
Identity line color (only used if 'perc' metric is selected). Default is black.
A set of plots.
if (FALSE) { # \dontrun{
plot_nmprogress("run315")
plot_nmprogress("run315", ".nmlst")
} # }