calculate_pk_parameters_statistics
Calculate statistics for common pharmacokinetic parameters
Calculate the mean (expected value of the distribution), variance (variance of the distribution) and standard error for some individual pre-defined pharmacokinetic parameters.
calculate_pk_parameters_statistics( model, parameter_estimates, covariance_matrix = NULL, seed = NULL )
model
: (Model) A previously estimated modelparameter_estimates
: (array) Parameter estimatescovariance_matrix
: (data.frame (optional)) Parameter uncertainty covariance matrixseed
: (numeric (optional)) Random number generator or seed(data.frame) A DataFrame of statistics indexed on parameter and covariate value.
## Not run: model <- load_example_model("pheno") results <- load_example_modelfit_results("pheno") rng <- create_rng(23) pe <- results$parameter_estimates cov <- results$covariance_matrix calculate_pk_parameters_statistics(model, pe, cov, seed=rng) ## End(Not run)
calculate_individual_parameter_statistics : Calculation of statistics for arbitrary parameters