check_parameters_near_bounds
Check if any estimated parameter value is close to its bounds
check_parameters_near_bounds( model, values, zero_limit = 0.001, significant_digits = 2 )
model
: (Model) Pharmpy model objectvalues
: (array) Series of values with index a subset of parameter names.zero_limit
: (numeric) maximum distance to 0 boundssignificant_digits
: (numeric) maximum distance to non-zero bounds in number of significant digits(data.frame) Logical Series with same index as values
## Not run: model <- load_example_model("pheno") results <- load_example_modelfit_results("pheno") check_parameters_near_bounds(model, results$parameter_estimates) ## End(Not run)