View source: R/functions_wrapper.R
check_high_correlations | R Documentation |
Check for highly correlated parameter estimates
check_high_correlations(model, cor, limit = 0.9)
model |
(Model) Pharmpy model object |
cor |
(data.frame) Estimated correlation matrix |
limit |
(numeric) Lower limit for a high correlation |
(data.frame) Correlation values indexed on pairs of parameters for (absolute) correlations above limit
## 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.