Checks a NONMEM output file that's a whitespace-delimited file (for instance .grd or .ext)

check_nonmem_table_output(.path, .x_var = NULL, .x_floor = NULL)

check_grd(.mod, .iter_floor = 0)

# S3 method for character
check_grd(.mod, .iter_floor = 0)

# S3 method for bbi_nonmem_model
check_grd(.mod, .iter_floor = 0)

# S3 method for bbi_nonmem_summary
check_grd(.mod, .iter_floor = 0)

check_ext(.mod, .iter_floor = 0)

# S3 method for character
check_ext(.mod, .iter_floor = 0)

# S3 method for bbi_nonmem_model
check_ext(.mod, .iter_floor = 0)

# S3 method for bbi_nonmem_summary
check_ext(.mod, .iter_floor = 0)

Arguments

.path

Character scalar path to the file

.x_var

name of variable to filter with .x_floor

.x_floor

Filters file to only rows with .x_var GREATER THAN this value.

.mod

Model to check. Either a bbi_nonmem_model object or a file path.

.iter_floor

Filters file to only rows with ITERATION GREATER THAN this value.

Methods (by generic)

  • check_grd: Checks .grd file from a file path

  • check_grd: Checks .grd file from a bbi_nonmem_model

  • check_grd: Checks .grd file from a bbi_nonmem_summary

  • check_ext: Checks .ext file from a file path

  • check_ext: Checks .ext file from a bbi_nonmem_model object

  • check_ext: Checks .ext file from a bbi_nonmem_summary object