Gets all final estimates from an ext file or vector of ext files
Source:R/extendr-wrappers.R
get_final_estimates.RdGets all final estimates from an ext file or vector of ext files
Arguments
- paths
path to directory containing ext files (including subdirectories), single ext file, or vector of ext file paths
- parameters_only
bool if true removes ITERATION and OBJ column, default false
- only_method
character, filter for getting estimates from specified method only
- only_last
boolean, for grabbing only last estimation method parameters
Examples
if (FALSE) { # \dontrun{
get_final_estimates("model/nonmem/")
get_final_estimates("bootstrap/") # Searches subdirectories recursively
get_final_estimates(c("run001.ext", "run002.ext", "run003.ext"))
} # }