get_CItable {ushr} | R Documentation |
Make parameter summary table
Description
This function collate confidence intervals and parameter estimates from all subjects (fitted with the same model) into a nice table.
Usage
get_CItable(CIlist, param_names, free_param_index, fitted)
Arguments
CIlist |
a list of confidence intervals and parameter estimates obtained from fitting either the single or biphasic model to each eligible subject. |
param_names |
character vector of the parameter names. This should be c("A", "delta", "B", "gamma") for the biphasic model or c("B", "gamma") for the single phase model. |
free_param_index |
logical vector indicating whether the parameters A, delta, B, gamma are to be included. This should be c(TRUE, TRUE, TRUE, TRUE) for the biphasic model and c(FALSE, FALSE, TRUE, TRUE) for the single phase model. |
fitted |
data frame with an 'id' column of the unique identifiers for each subject represented in CIlist. Identifiers should be ordered according to their appearance in CIlist. |