Skip to contents

Gets all final estimates from an ext file or vector of ext files

Usage

get_final_estimates(
  paths,
  parameters_only = TRUE,
  only_method = NULL,
  only_last = TRUE
)

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

Value

data.frame of final estimates with model names

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"))
} # }