Learn R Programming

pmxNODE (version 0.1.0)

indparm_extractor_nm: NONMEM individual estimations extractor

Description

When the NOMEM model has been run, this function allows to extract the estimated individual parameters for NN parameters by combining information from the .res and the .phi file

Usage

indparm_extractor_nm(res_file, phi_file)

Value

Data frame with individual parameter estimates for NN parameters

Arguments

res_file

(Path/)Name of the results file of a NONMEM run, must include file extension, e.g., “.res”

phi_file

(Path/)Name of the phi file of a NONMEM run, must include file extension, e.g., “.phi”

Author

Dominic Bräm

Examples

Run this code
res_path <- system.file("extdata","nm_example1_model_converted_ind.res",package="pmxNODE")
phi_path <- system.file("extdata","nm_example1_model_converted_ind.phi",package="pmxNODE")
est_parms <- indparm_extractor_nm(res_path,phi_path)

Run the code above in your browser using DataLab