check_high_correlations {pharmr} | R Documentation |
check_high_correlations
Description
Check for highly correlated parameter estimates
Usage
check_high_correlations(model, cor, limit = 0.9)
Arguments
model |
(Model) Pharmpy model object |
cor |
(data.frame) Estimated correlation matrix |
limit |
(numeric) Lower limit for a high correlation |
Value
(data.frame) Correlation values indexed on pairs of parameters for (absolute) correlations above limit
Examples
## Not run:
model <- load_example_model("pheno")
results <- load_example_modelfit_results("pheno")
cor <- results$correlation_matrix
check_high_correlations(model, cor, limit=0.3)
## End(Not run)
[Package pharmr version 1.0.1 Index]