Title: | Time Dependent Shared Frailty Cox Model |
---|---|
Description: | Fits time-dependent shared frailty Cox model (specifically the adapted Paik et al.'s Model) based on the paper "Centre-Effect on Survival After Bone Marrow Transplantation: Application of Time-Dependent Frailty Models", by C.M. Wintrebert, H. Putter, A.H. Zwinderman and J.C. van Houwelingen (2004) <doi:10.1002/bimj.200310051>. |
Authors: | Alessandra Ragni [aut, cre] |
Maintainer: | Alessandra Ragni <[email protected]> |
License: | GPL (>= 3) |
Version: | 0.0.1 |
Built: | 2025-03-31 21:16:02 UTC |
Source: | https://github.com/alessandragni/timedepfrail |
Function for studying the log-likelihood function from the point of view of a single parameter and, therefore, in a single direction. It performs both the optimization of the log-likelihood with respect to this parameter and the evaluation of the log-likelihood in several samples of the same parameter, while the other parameters can assume a constant assigned value or can vary in their range.
AdPaik_1D( formula, data, time_axis, index_param_to_vary, flag_optimal_params = FALSE, optimal_params = NULL, categories_range_min, categories_range_max, n_iter = 5, tol_optimize = 1e-06, flag_plot = FALSE, n_points = 150, cex = 0.7, cex_max = 0.8, color_bg = "black", color_max_bg = "red", pch = 21 )
AdPaik_1D( formula, data, time_axis, index_param_to_vary, flag_optimal_params = FALSE, optimal_params = NULL, categories_range_min, categories_range_max, n_iter = 5, tol_optimize = 1e-06, flag_plot = FALSE, n_points = 150, cex = 0.7, cex_max = 0.8, color_bg = "black", color_max_bg = "red", pch = 21 )
formula |
Formula object indicating the response variable, the covariates and the cluster variable. |
data |
Dataset in which the variables of the formula object are located. |
time_axis |
Partitioned time-domain. |
index_param_to_vary |
Index of the parameter, in the parameter vector, with respect to which the log-likelihood function is maximized in a one-dimensional way. The index s provided to identify the parameter under consideration inside the vector, avoiding providing its name or value. |
flag_optimal_params |
Are the other parameters extracted from the optimal vector of parameters? If so, the flag should be equal to TRUE. Otherwise, the flag is equal to FALSE. |
optimal_params |
Vector of optimal parameters, determined through an entire multi-dimensional maximization of the log-likelihood function. The default value (NULL) indicates that no vector is provided and the parameters are randomly extracted in their range. |
categories_range_min |
Vector containing the minimum value assumed by each parameter category. |
categories_range_max |
Vector containing the maximum value assumed by each parameter category. |
n_iter |
Number of times the one-dimensional analysis with respect to the indicated parameter must be executed. Default value is 5. See details for more information. |
tol_optimize |
Tolerance used in the optimize R function for the one-dimensional optimization of the log-likelihood function. |
flag_plot |
Logical value for plotting the trend of the log-likelihood function with respect to the parameter under consideration. A plot for each iteration (n_iter) is reported. Defaults to FALSE. Be careful that if the optimal parameters are provided, then the trend may be always the same and therefore it may be sufficient to set n_iter = 1. On the other hand, if optimal parameters are not provided, then it is recommended to impose a higher n_iter. |
n_points |
Number of internal points in which the log-likelihood function must be evaluated, to plot it. |
cex |
Dimension of the points in the plot. |
cex_max |
Dimension of the optimal point in the plot. |
color_bg |
Color used in the plot for the points. |
color_max_bg |
Color used for the optimal point in the plot. |
pch |
Shape to be used for the points. |
The one-dimensional analysis of the log-likelihood function can be performed in two ways, with two different aims and results:
Keeping fixed the other parameters (all the parameters in the vector, except for the one under consideration) to their optimal value (flag_optimal_params = TRUE), determined through the multi-dimensional optimization. In this way, the optimized value of the parameter coincides with the one get with the general and global approach and, therefore, there is no need to repeat this procedure several times (n_iter = 1). However, this approach is really useful if we want to check the trend the log-likelihood function and to observe if it increases, decreases or is constant.
Letting the other parameters vary in their range (flag_optimal_params = FALSE). The optimized parameter value will always assume a different
value, because it depends on the value of the other parameters, and it is suggested to repeat the procedure several times (n_iter 5),
so that it is possible to identify a precise existence region for such parameter
If the flag for the plot has been activated, the function returns both the plot of the one-dimensional log-likelihood function and a class S3 object. Otherwise, only a S3 object of class 'AdPaik_1D'. This class object is composed of:
numerical vector of length @n_iter containing the optimal estimated parameter.
numerical vector of length @n_iter containing the associated one-dimensional optimized log-likelihood value
# Consider the 'Academic Dropout dataset' data(data_dropout) # Define the variables needed for the model execution formula <- time_to_event ~ Gender + CFUP + cluster(group) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) eps <- 1e-10 # Identify a parameter existence range categories_range_min <- c(-8, -2, eps, eps, eps) categories_range_max <- c(-eps, 0.5, 1 - eps, 1, 10) index_param_to_vary <- 1 analysis_1D_opt <- AdPaik_1D(formula, data_dropout, time_axis, index_param_to_vary, flag_optimal_params = FALSE, optimal_params = NULL, flag_plot = TRUE, categories_range_min, categories_range_max, n_iter = 5) # or Study the log-likelihood behaviour categories_range_min <- c(-8, -2, eps, eps, eps) categories_range_max <- c(-eps, 0.4, 1 - eps, 1, 10) index_param_to_vary <- 14 # Call the main model result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max, TRUE) analysis_1D_opt <- AdPaik_1D(formula, data_dropout, time_axis, index_param_to_vary, flag_optimal_params = TRUE, flag_plot = TRUE, optimal_params = result$OptimalParameters, categories_range_min, categories_range_max, n_iter = 1)
# Consider the 'Academic Dropout dataset' data(data_dropout) # Define the variables needed for the model execution formula <- time_to_event ~ Gender + CFUP + cluster(group) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) eps <- 1e-10 # Identify a parameter existence range categories_range_min <- c(-8, -2, eps, eps, eps) categories_range_max <- c(-eps, 0.5, 1 - eps, 1, 10) index_param_to_vary <- 1 analysis_1D_opt <- AdPaik_1D(formula, data_dropout, time_axis, index_param_to_vary, flag_optimal_params = FALSE, optimal_params = NULL, flag_plot = TRUE, categories_range_min, categories_range_max, n_iter = 5) # or Study the log-likelihood behaviour categories_range_min <- c(-8, -2, eps, eps, eps) categories_range_max <- c(-eps, 0.4, 1 - eps, 1, 10) index_param_to_vary <- 14 # Call the main model result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max, TRUE) analysis_1D_opt <- AdPaik_1D(formula, data_dropout, time_axis, index_param_to_vary, flag_optimal_params = TRUE, flag_plot = TRUE, optimal_params = result$OptimalParameters, categories_range_min, categories_range_max, n_iter = 1)
Function for applying the 'Adapted Paik et al.'s Model', a Cox Model with time-dependent frailty, shared by individuals belonging to the same group/cluster.
To generate time-dependence, the temporal domain is divided into a certain number of intervals. The model log-likelihood function depends on a certain number of parameters and is maximized with respect to all of them, using a reinterpretation of the 'Powell's method in multidimension', that is a multi-dimensional optimization method based on repeated one-dimensional optimization of the log-likelihood function (with respect to one parameter at the time). In this context, the one-dimensional optimization is performed through the 'optimize' R function. For more information about the unknown model parameters, their type and numerosity refer to Details.
Several quantities are estimated at the end of the optimization phase, such as optimal parameters, baseline hazard, frailty dispersion (standard deviation and variance), posterior frailty estimates, with their variance and confidence interval, conditional survival function, Akaike Information Criterion (AIC), ...
AdPaikModel( formula, data, time_axis, categories_range_min, categories_range_max, n_extrarun = 60, tol_ll = 1e-06, tol_optimize = 1e-06, h_dd = 0.001, verbose = FALSE, print_previous_ll_values = c(TRUE, 3) )
AdPaikModel( formula, data, time_axis, categories_range_min, categories_range_max, n_extrarun = 60, tol_ll = 1e-06, tol_optimize = 1e-06, h_dd = 0.001, verbose = FALSE, print_previous_ll_values = c(TRUE, 3) )
formula |
Formula object having on the left hand side the time-to-event variable, that is the time-instant in which the individual failed. On the right hand side, it has the regressors and the cluster variable. |
data |
Dataset in which all variables of the formula object must be found and contained. This dataset can also contain other variables, but they will not be considered. It can be either a dataframe or a matrix, but in both cases the name of each column must correspond to the name of the formula variables. It is not necessary to attach it (in case of a data.frame) |
time_axis |
Temporal domain |
categories_range_min |
Vector containing the minimum value assumable by each parameter category. |
categories_range_max |
Vector containing the maximum value assumable by each parameter category. |
n_extrarun |
Total number of runs (iterations) are obtained summing to the number of parameters and n_extrarun. |
tol_ll |
Tolerance on the log-likelihood value. |
tol_optimize |
Internal tolerance for the one-dimensional optimization through 'optimize' R function. |
h_dd |
Discretization step used for the numerical approximation of the second derivative of the log-likelihood function. |
verbose |
Logical. If |
print_previous_ll_values |
If we want to print the previous values of the log-likelihood function. This can be useful for controlling that the optimization procedure is proceeding in a monotone way and it does not oscillate. This argument is composed of two elements: TRUE/FALSE if we want or not to print the previous values and how many values we want to print on the console. Default is (TRUE, 3), so that only the previous 3 values of the log-likelihood are printed. |
Two observation needs to made about the time-domain:
The time domain may coincide with the follow-up or it may be contained in it. Indeed, the left boundary can be greater than the beginning of the follow-up and, for instance, it can coincide with the time-instants in which the events begin to happen; conversely, the right boundary of the two must be the same.
The partition of the time domain into intervals can be made according to two selected criteria: (1) using an already existent partition of the follow-up (2) using the shape of the baseline hazard function for a time independent model as reference: divide the time-domain according to regions in which it has a peak or a plateau.
The parameters with respect to which the log-likelihood function must be optimized are:
baseline log-hazard (number of parameters = number of intervals of the time-domain)
data regressors
,
: parameters of the gamma distribution of
(time-independent/constant) (2 parameters)
: parameters of the gamma distribution of
(time-dependent) (number of parameters = number of intervals)
Another model parameter is
and it is get imposing the constraint that
.
As it can be notice, some parameters can be grouped into the same category (regressors, baseline log-hazard and so on)
and we can easily constraint them assigning each category both a minimum and maximum range.
The vector is structured as follows: (baseline log-hazard, regressors,
,
,
) with dimension
(n_intervals, n_regressors, 1, 1, n_intervals).
The output of the model call 'AdPaikModel(...)' is a S3 object of class 'AdPaik', composed of the following quantities:
formula: formula object provided in input by the user and specifying the relationship between the time-to-event, the covariates of the dataset (regressors) and the cluster variable.
dataset: matrix of the dataset containing the regressors and the dummy variables of the categorical covariates.
Regressors: categorical vector of length R, with the name of the regressors. They could be different from the original covariates of the dataset in case of categorical covariates. Indeed, each categorical covariate with n levels needs to be transformed into (n-1) dummy variables and, therefore, (n-1) new regressors.
NRegressors: number of regressors (R)
ClusterVariable: name of the variable with respect to which the individuals can be grouped.
NClusters: number of clusters/centres (also indicated with N).
ClusterCodes: vector of length equal to the number of clusters, containing the codes of the clusters.
TimeDomain: vector of the time-domain partition.
NIntervals: number of intervals of the time-domain, also called with L.
NObservations: number of observations of the dataset.
NParameters: number of parameters of the model. It can be computed as: .
ParametersCategories: Numerical vector of length 5, containing the numerosity of each parameter category.
ParametersRange: S3 object of class 'ParametersRange', containing ParametersRangeMin and ParametersRangeMax, two numerical vectors of length , giving the minimum and the maximum range of each parameter, respectively.
Loglikelihood: value of the maximized log-likelihood function, at the optimal estimated parameters.
AIC: 'Akaike Information Criterion': it can be computed as .
It quantifies the loss of information related to the model fitting and output.
The smaller, the less the loss of information and the better the model accuracy.
Status: Logical value. TRUE if the model reaches convergence, FALSE otherwise.
NRun: Number of runs necessary to reach convergence. If the model does not reach convergence, such number is equal to the maximum number of imposed runs.
OptimalParameters: numerical vector of length , containing the optimal estimated parameters (the parameters
that maximize the log-likelihood function).
StandardErrorParameters: numerical vector of length , corresponding to the standard error of each estimated parameters.
ParametersCI: S3 object of class 'ParametersCI', composed of two numerical vector of length equal to : the left and right 95\
interval of each estimated parameter of given level.
BaselineHazard: numerical vector of length equal to L, containing the baseline hazard step-function.
FrailtyDispersion: S3 object of class 'FrailtyDispersion', containing two numerical vectors of length equal to L with the standard deviation and the variance of the frailty. numerical vector of length equal to L (i.e. number of intervals of the time-domain), reporting the standard deviation of the frailty.
PosteriorFrailtyEstimates: S3 object of class 'PFE.AdPaik'. The object of class 'PFE.AdPaik' contains the Posterior Frailty Estimates computed with the procedure indicated in the reference paper and it is composed of three elements:
'alpha': posterior frailty estimates for . It is a vector of length equal to the number of centres.
'eps': posterior frailty estimates for . Matrix of dimension (N, L).
'Z': posterior frailty estimates for . Matrix of dimension (N, L).
PosteriorFrailtyVariance: S3 object of class 'PFV.AdPaik'. The object of class 'PFV.AdPaik' contains the Posterior Frailty Variances computed as indicated in the reference papaer and it is composed of three elements:
'alphaVar': posterior frailty variance for . It is a vector of length equal to the number of centres.
'epsVar': posterior frailty variance for . Matrix of dimension (N, L).
'ZVar': posterior frailty variance for . Matrix of dimension (N, L).
S3 object of class 'AdPaik', composed of several elements. See Details.
# Consider the 'Academic Dropout dataset' data(data_dropout) # Define the variables needed for the model execution formula <- time_to_event ~ Gender + CFUP + cluster(group) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) eps <- 1e-10 categories_range_min <- c(-8, -2, eps, eps, eps) categories_range_max <- c(-eps, 0, 1 - eps, 1, 10) # Call the main model result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max, TRUE)
# Consider the 'Academic Dropout dataset' data(data_dropout) # Define the variables needed for the model execution formula <- time_to_event ~ Gender + CFUP + cluster(group) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) eps <- 1e-10 categories_range_min <- c(-8, -2, eps, eps, eps) categories_range_max <- c(-eps, 0, 1 - eps, 1, 10) # Call the main model result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max, TRUE)
The method computes the baseline hazard step-function in each interval of the time-domain, using the estimated parameters
bas_hazard(object)
bas_hazard(object)
object |
S3 object of class 'AdPaik' returned by the main model output, that contains all the information for the computation of the frailty standard deviation. |
Numerical vector of length equal to the number of intervals of the time-domain, with the value of the baseline hazard step-function.
# Consider the 'Academic Dropout dataset' data(data_dropout) # Define the variables needed for the model execution formula <- time_to_event ~ Gender + CFUP + cluster(group) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) eps <- 1e-10 categories_range_min <- c(-8, -2, eps, eps, eps) categories_range_max <- c(-eps, 0, 1 - eps, 1, 10) # Call the main model result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) bas_hazard(result)
# Consider the 'Academic Dropout dataset' data(data_dropout) # Define the variables needed for the model execution formula <- time_to_event ~ Gender + CFUP + cluster(group) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) eps <- 1e-10 categories_range_min <- c(-8, -2, eps, eps, eps) categories_range_max <- c(-eps, 0, 1 - eps, 1, 10) # Call the main model result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) bas_hazard(result)
Extracts the optimal obtained with the
time-dependent frailty model proposed in the 'Adapted Paik et al.' framework.
## S3 method for class 'AdPaik' coef(object, ...)
## S3 method for class 'AdPaik' coef(object, ...)
object |
An S3 object of class |
... |
Additional arguments (ignored). |
The coef.AdPaik
function extracts the coefficients from the
OptimalParameters
field in object
.
The function validates the structure of object
and ensures compatibility
with the expected model output. It throws an error if the object is malformed or
inconsistent.
A named list containing the coefficients.
# Example using the 'Academic Dropout' dataset data(data_dropout) # Define the formula and time axis for the model formula <- time_to_event ~ Gender + CFUP + cluster(group) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) eps <- 1e-10 categories_range_min <- c(-8, -2, eps, eps, eps) categories_range_max <- c(-eps, 0, 1 - eps, 1, 10) # Run the main model result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max, TRUE) # Extract the coefficients coef(result)
# Example using the 'Academic Dropout' dataset data(data_dropout) # Define the formula and time axis for the model formula <- time_to_event ~ Gender + CFUP + cluster(group) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) eps <- 1e-10 categories_range_min <- c(-8, -2, eps, eps, eps) categories_range_max <- c(-eps, 0, 1 - eps, 1, 10) # Run the main model result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max, TRUE) # Extract the coefficients coef(result)
Extracts the standard errors for obtained with the
time-dependent frailty model proposed in the 'Adapted Paik et al.' framework.
coefseAdPaik(object)
coefseAdPaik(object)
object |
An S3 object of class |
The se.coef
function extracts the standard errors for the estimated parameters from the
StandardErrorParameters
field in object
.
The function validates the structure of object
and ensures compatibility
with the expected model output. It throws an error if the object is malformed or
inconsistent.
A named list containing the categories of the standard errors for the optimal parameters.
# Example using the 'Academic Dropout' dataset data(data_dropout) # Define the formula and time axis for the model formula <- time_to_event ~ Gender + CFUP + cluster(group) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) eps <- 1e-10 categories_range_min <- c(-8, -2, eps, eps, eps) categories_range_max <- c(-eps, 0, 1 - eps, 1, 10) # Run the main model result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max, TRUE) # Extract the coefficients coefseAdPaik(result)
# Example using the 'Academic Dropout' dataset data(data_dropout) # Define the formula and time axis for the model formula <- time_to_event ~ Gender + CFUP + cluster(group) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) eps <- 1e-10 categories_range_min <- c(-8, -2, eps, eps, eps) categories_range_max <- c(-eps, 0, 1 - eps, 1, 10) # Run the main model result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max, TRUE) # Extract the coefficients coefseAdPaik(result)
Extracts the confidence intervals for obtained with the
time-dependent frailty model proposed in the 'Adapted Paik et al.' framework.
## S3 method for class 'AdPaik' confint(object, parm = NULL, level = 0.95, ...)
## S3 method for class 'AdPaik' confint(object, parm = NULL, level = 0.95, ...)
object |
An S3 object of class |
parm |
A specification of which parameters are to be given confidence intervals, either a vector of numbers or a vector of names. Defaults to NULL, and all parameters are considered. Changing it is not supported for this model. It will be ignored. |
level |
The confidence level required. Defaults to 0.95. |
... |
Additional arguments to be passed to other methods. |
The confint.AdPaik
function extracts the standard errors for the beta coefficients from the
ParametersCI
field in object
.
The function validates the structure of object
and ensures compatibility
with the expected model output. It throws an error if the object is malformed or
inconsistent.
A named list containing the categories of the standard errors for the optimal parameters.
# Example using the 'Academic Dropout' dataset data(data_dropout) # Define the formula and time axis for the model formula <- time_to_event ~ Gender + CFUP + cluster(group) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) eps <- 1e-10 categories_range_min <- c(-8, -2, eps, eps, eps) categories_range_max <- c(-eps, 0, 1 - eps, 1, 10) # Run the main model result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max, TRUE) # Extract the coefficients confint(result)
# Example using the 'Academic Dropout' dataset data(data_dropout) # Define the formula and time axis for the model formula <- time_to_event ~ Gender + CFUP + cluster(group) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) eps <- 1e-10 categories_range_min <- c(-8, -2, eps, eps, eps) categories_range_max <- c(-eps, 0, 1 - eps, 1, 10) # Run the main model result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max, TRUE) # Extract the coefficients confint(result)
This dataset is extracted from an administrative database provided by a non-specified university and tracks students enrolled in 2012 over three academic years (or 6 semesters). We are interested in understanding what factors lead to students dropping out. Dropout students with a time-instant in the first semester have been removed, for internal reasons (the university cannot take preventive action to reduce or avoid their withdrawal). The students are followed for at most 3 academic years or, equivalently, 6 semesters (follow-up periods), from the first day of lecture up to the time-instant of withdrawal (i.e. survival event) or the end of the academic year.
data_dropout
data_dropout
A data frame with 4448 rows and 4 columns:
Categorical covariate (Male or Female).
Standardized numerical covariate indicating the number of credits \ passed by the students by the end of the first semester.
Time (in semesters) at which a student decides to leave the university. \ A value greater than 6.0 indicates the student did not drop out during the follow-up (e.g. 6.1 semesters)
Categorical variable indicating the student's course of study, with 16 different levels from CosA, CosB, ... , CosP.
Data for demonstration purposes.
AdPaik
ObjectsComputes the AIC for an AdPaik
model.
## S3 method for class 'AdPaik' extractAIC(fit, scale = NULL, k = 2, ...)
## S3 method for class 'AdPaik' extractAIC(fit, scale = NULL, k = 2, ...)
fit |
An |
scale |
Changing it is not supported for this model. It will be ignored. |
k |
Penalty parameter (default is 2 for AIC). |
... |
Additional arguments (ignored). |
A numeric vector with the number of parameters and AIC value.
The function computes both the standard deviation and the variance of the time-dependent frailty of the 'Adapted Paik et al.'s Model'.
Recalling the frailty structure as being composed by a constant group-dependent term
(
) and a time and group dependent term (
), the frailty variance (and standard deviation)
can be computed in two different way:
Considering only the time-dependent spread of the clusters/groups/centre: .
In this case, the flag_full should be FALSE and flag_variance should be TRUE.
Considering both the time-dependent and constant spread of the clusters: .
The new added term only moves upward the other case and the flag_full should be TRUE and flag_variance should be TRUE.
frailty_sd(object, flag_full = TRUE, flag_variance = FALSE)
frailty_sd(object, flag_full = TRUE, flag_variance = FALSE)
object |
S3 object of class 'AdPaik' returned by the main model output, that contains all the information for the computation of the frailty standard deviation. |
flag_full |
A boolean flag indicating whether to get the full standard deviation ( |
flag_variance |
A boolean flag indicating whether to get the frailty variance ( |
Numerical vector of length equal to the number of intervals of the time-domain, with the value of the frailty standard deviation or variance (either full or only the time-dependent component).
# Consider the 'Academic Dropout dataset' data(data_dropout) # Define the variables needed for the model execution formula <- time_to_event ~ Gender + CFUP + cluster(group) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) eps <- 1e-10 categories_range_min <- c(-8, -2, eps, eps, eps) categories_range_max <- c(-eps, 0, 1 - eps, 1, 10) # Call the main model result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) frailty_sd(result)
# Consider the 'Academic Dropout dataset' data(data_dropout) # Define the variables needed for the model execution formula <- time_to_event ~ Gender + CFUP + cluster(group) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) eps <- 1e-10 categories_range_min <- c(-8, -2, eps, eps, eps) categories_range_max <- c(-eps, 0, 1 - eps, 1, 10) # Call the main model result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) frailty_sd(result)
AdPaik
ObjectsReturns the log-likelihood of the fitted AdPaik
model.
## S3 method for class 'AdPaik' logLik(object, ...)
## S3 method for class 'AdPaik' logLik(object, ...)
object |
An |
... |
Additional arguments (ignored). |
A log-likelihood object with degrees of freedom (df
).
AdPaik
Returns the number of observations used in the model.
## S3 method for class 'AdPaik' nobs(object, ...)
## S3 method for class 'AdPaik' nobs(object, ...)
object |
An |
... |
Additional arguments (ignored). |
Integer: Number of observations.
This function plots the baseline hazard step-function based on the estimated parameters from the Adapted Paik et al.'s model.
plot_bas_hazard( result, xlim = c(min(result$TimeDomain), max(result$TimeDomain)), ylim = c(0, max(result$BaselineHazard)), xlab = "Time", ylab = "Values", main = "Baseline hazard step-function", color = "black", pch = 21, bg = "black", cex_points = 0.7 )
plot_bas_hazard( result, xlim = c(min(result$TimeDomain), max(result$TimeDomain)), ylim = c(0, max(result$BaselineHazard)), xlab = "Time", ylab = "Values", main = "Baseline hazard step-function", color = "black", pch = 21, bg = "black", cex_points = 0.7 )
result |
S3 object of class 'AdPaik', returned by the method call 'AdPaikModel(...)'. |
xlim |
A numeric vector specifying the x-axis limits. Default is set to the interval min-max of the time-domain. |
ylim |
A numeric vector specifying the y-axis limits. Default is 0 to the maximum value of the baseline hazard. |
xlab , ylab
|
String giving the x and y axis name. Default values are 'x' and 'y'. |
main |
Title of the plot. Default title is 'Baseline hazard step-function'. |
color |
Color used for plotting the horizontal segments of the step-function. Default one is 'black'. |
pch |
Symbol for marking the boundaries of each segment. Default is a dot (value 21). |
bg |
Color for the boundary symbols. Default matches the plot color ('black'). |
cex_points |
Size of the boundary symbols. Default is 0.7. |
The function plots a horizontal segment for each interval of the time domain, representing the baseline hazard. The boundaries of each segment are marked with colored dots, and subsequent segments are intentionally left unconnected to reflect the discrete nature of the intervals.
Plot of the baseline hazard step-function and value of the function in each interval.
# Import data data(data_dropout) # Define the variables needed for the model execution eps_paik <- 1e-10 categories_range_min <- c(-8, -2, eps_paik, eps_paik, eps_paik) categories_range_max <- c(-eps_paik, 0.4, 1 - eps_paik, 1, 10) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) formula <- time_to_event ~ Gender + CFUP + cluster(group) # Call the main model function result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) plot_bas_hazard(result)
# Import data data(data_dropout) # Define the variables needed for the model execution eps_paik <- 1e-10 categories_range_min <- c(-8, -2, eps_paik, eps_paik, eps_paik) categories_range_max <- c(-eps_paik, 0.4, 1 - eps_paik, 1, 10) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) formula <- time_to_event ~ Gender + CFUP + cluster(group) # Call the main model function result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) plot_bas_hazard(result)
This function generates a plot of either the frailty standard deviation or the frailty variance for the intervals in the time-domain.
plot_frailty_sd( result, flag_full = TRUE, flag_variance = FALSE, xlim = c(min(result$TimeDomain), max(result$TimeDomain)), ylim = NULL, xlab = "Time", ylab = "Values", main = NULL, pch = 21, color_bg = "blue", cex_points = 0.7 )
plot_frailty_sd( result, flag_full = TRUE, flag_variance = FALSE, xlim = c(min(result$TimeDomain), max(result$TimeDomain)), ylim = NULL, xlab = "Time", ylab = "Values", main = NULL, pch = 21, color_bg = "blue", cex_points = 0.7 )
result |
An S3 object of class 'AdPaik', returned by the main model call 'AdPaikModel(...)'. |
flag_full |
A boolean flag indicating whether to plot the full standard deviation ( |
flag_variance |
A boolean flag indicating whether to plot the frailty variance ( |
xlim |
A numeric vector specifying the range for the x-axis (intervals). If NULL, default is set to the interval min-max of the time-domain. |
ylim |
A numeric vector specifying the range for the y-axis (intervals). If NULL, default is 0 to the maximum value of the frailty variance/standard deviation. |
xlab |
A string for the x-axis label. Default is |
ylab |
A string for the y-axis label. Default is |
main |
A string for the plot title. Default title is |
pch |
A numeric or character symbol used for plotting the frailty standard deviation values. Default is a dot ( |
color_bg |
A string specifying the color used for the symbols. Default is |
cex_points |
A numeric value indicating the size of the plotting symbols. Default is |
The plot represents the values of the frailty standard deviation or variance for each time interval (represented by its mid point). It connects these points to illustrate the trend of the chosen metric.
This function supports plotting the full or only time dependent frailty standard deviation or variance retrieved from the main model (contained in the S3 object of class 'AdPaik').
A plot displaying either the frailty standard deviation or variance across the specified intervals.
# Import data data(data_dropout) # Define the variables needed for the model execution eps_paik <- 1e-10 categories_range_min <- c(-8, -2, eps_paik, eps_paik, eps_paik) categories_range_max <- c(-eps_paik, 0.4, 1 - eps_paik, 1, 10) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) formula <- time_to_event ~ Gender + CFUP + cluster(group) # Call the main model function result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) plot_frailty_sd(result)
# Import data data(data_dropout) # Define the variables needed for the model execution eps_paik <- 1e-10 categories_range_min <- c(-8, -2, eps_paik, eps_paik, eps_paik) categories_range_max <- c(-eps_paik, 0.4, 1 - eps_paik, 1, 10) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) formula <- time_to_event ~ Gender + CFUP + cluster(group) # Call the main model function result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) plot_frailty_sd(result)
This function plots the posterior frailty estimates for each group in each time interval (represented by its mid point). Each group's estimates are represented by a sequence of points connected by straight lines. The function can plot either the entire posterior frailty estimate or its time-independent and time-dependent components based on user-specified flags.
plot_post_frailty_est( result, flag_eps = FALSE, flag_alpha = FALSE, xlim = NULL, ylim = NULL, xlab = "Time", ylab = "Values", main = "Posterior frailty estimates", cex = 0.7, pch_type = seq(1, length(result$ClusterCodes)), color_bg = rep("black", length(result$ClusterCodes)), cex_legend = 0.7, pos_legend = "topright" )
plot_post_frailty_est( result, flag_eps = FALSE, flag_alpha = FALSE, xlim = NULL, ylim = NULL, xlab = "Time", ylab = "Values", main = "Posterior frailty estimates", cex = 0.7, pch_type = seq(1, length(result$ClusterCodes)), color_bg = rep("black", length(result$ClusterCodes)), cex_legend = 0.7, pos_legend = "topright" )
result |
S3 object of class 'AdPaik', returned by the method call 'AdPaikModel(...)'. |
flag_eps |
Logical flag indicating whether to plot only the time-dependent posterior frailty estimates. Default is FALSE. |
flag_alpha |
Logical flag indicating whether to plot only the time-independent posterior frailty estimates. Default is FALSE. |
xlim |
A numeric vector specifying the range for the x-axis (intervals). If NULL, default is set to the interval min-max of the time-domain, plus space for the legend. If flag_alpha = TRUE, the plot is produced around 1 (defaults to 0.8-1.4). |
ylim |
A numeric vector specifying the range for the y-axis (intervals). If NULL, default is min-max value of the posterior frailty estimate. |
xlab , ylab
|
String giving the x and y axis name. Default values are 'Time' and 'Values'. |
main |
Title of the plot. Default title is 'Posterior frailty estimates'. |
cex |
Dimension of the points used for plotting the estimates. |
pch_type |
Numerical vector of length equal to the number of clusters in the data, giving the symbol to be used for plotting the estimates. Default symbol (circle, 21) is the same for all clusters. |
color_bg |
Numerical vector of length equal to the number of clusters in the data, giving the color to be used for plotting the symbols for the estimates. Default ('black') is the same for all faculties. On the other hand, the same color is used throughout the intervals for the same faculty. |
cex_legend |
Dimension of the symbol in the legend. Default is 0.7. |
pos_legend |
Either a numeric vector providing the x and y coordinates for the legend or a string specifying the legend's position (e.g., 'bottomright', 'bottom', 'bottomleft', 'left', 'topleft', 'top', 'topright', 'right', 'center'). |
Recalling the frailty structure as and the posterior
frailty estimate as
,
this function allows plotting either the entire posterior frailty estimate
or its time-independent
or
time-dependent
components.
The user can control which components to display using the flag_eps and flag_alpha parameters.
Only one of these flags can be set to TRUE at a time.
The plot of the posterior frailty estimates.
# Import data data(data_dropout) # Define the variables needed for the model execution eps_paik <- 1e-10 categories_range_min <- c(-8, -2, eps_paik, eps_paik, eps_paik) categories_range_max <- c(-eps_paik, 0.4, 1 - eps_paik, 1, 10) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) formula <- time_to_event ~ Gender + CFUP + cluster(group) # Call the main model function result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) # Define variables for plotting the estimates pch_type <- c(21, seq(21,25,1), seq(21,25,1), seq(21,25,1)) color_bg <- c("darkblue", rep("red", 5), rep("purple", 5), rep("green",5)) plot_post_frailty_est(result, pch_type = pch_type, color_bg = color_bg)
# Import data data(data_dropout) # Define the variables needed for the model execution eps_paik <- 1e-10 categories_range_min <- c(-8, -2, eps_paik, eps_paik, eps_paik) categories_range_max <- c(-eps_paik, 0.4, 1 - eps_paik, 1, 10) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) formula <- time_to_event ~ Gender + CFUP + cluster(group) # Call the main model function result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) # Define variables for plotting the estimates pch_type <- c(21, seq(21,25,1), seq(21,25,1), seq(21,25,1)) color_bg <- c("darkblue", rep("red", 5), rep("purple", 5), rep("green",5)) plot_post_frailty_est(result, pch_type = pch_type, color_bg = color_bg)
This function plots the posterior frailty variances for each group in each time interval (represented by its mid point). Each group's estimates are represented by a sequence of points connected by straight lines. The function can plot either the entire posterior frailty variance or its time-independent and time-dependent components based on user-specified flags.
plot_post_frailty_var( result, flag_eps = FALSE, flag_alpha = FALSE, xlim = NULL, ylim = NULL, xlab = "Time", ylab = "Values", main = "Posterior frailty variances", cex = 0.7, pch_type = seq(1, length(result$ClusterCodes)), color_bg = rep("black", length(result$ClusterCodes)), cex_legend = 0.7, pos_legend = "topright" )
plot_post_frailty_var( result, flag_eps = FALSE, flag_alpha = FALSE, xlim = NULL, ylim = NULL, xlab = "Time", ylab = "Values", main = "Posterior frailty variances", cex = 0.7, pch_type = seq(1, length(result$ClusterCodes)), color_bg = rep("black", length(result$ClusterCodes)), cex_legend = 0.7, pos_legend = "topright" )
result |
S3 object of class 'AdPaik', returned by the method call 'AdPaikModel(...)'. |
flag_eps |
Logical flag indicating whether to plot only the time-dependent posterior frailty estimates. Default is FALSE. |
flag_alpha |
Logical flag indicating whether to plot only the time-independent posterior frailty estimates. Default is FALSE. |
xlim |
A numeric vector specifying the range for the x-axis (intervals). If NULL, default is set to the interval min-max of the time-domain, plus space for the legend. If flag_alpha = TRUE, the plot is produced around 1 (defaults to 0.8-1.4). |
ylim |
A numeric vector specifying the range for the y-axis (intervals). If NULL, default is min-max value of the posterior frailty estimate. |
xlab , ylab
|
String giving the x and y axis name. Default values are 'Time' and 'Values'. |
main |
Title of the plot. Default title is 'Posterior frailty estimates'. |
cex |
Dimension of the points used for plotting the estimates. |
pch_type |
Numerical vector of length equal to the number of clusters in the data, giving the symbol to be used for plotting the estimates. Default symbol (circle, 21) is the same for all clusters. |
color_bg |
Numerical vector of length equal to the number of clusters in the data, giving the color to be used for plotting the symbols for the estimates. Default ('black') is the same for all faculties. On the other hand, the same color is used throughout the intervals for the same faculty. |
cex_legend |
Dimension of the symbol in the legend. Default is 0.7. |
pos_legend |
Either a numeric vector providing the x and y coordinates for the legend or a string specifying the legend's position (e.g., 'bottomright', 'bottom', 'bottomleft', 'left', 'topleft', 'top', 'topright', 'right', 'center'). |
Recalling the frailty structure as and the posterior
frailty variance as
),
this function allows plotting either the entire posterior frailty variance
or its time-independent
or
time-dependent
components.
The user can control which components to display using the flag_eps and flag_alpha parameters.
Only one of these flags can be set to TRUE at a time.
The plot of the posterior frailty variances.
# Import data data(data_dropout) # Define the variables needed for the model execution eps_paik <- 1e-10 categories_range_min <- c(-8, -2, eps_paik, eps_paik, eps_paik) categories_range_max <- c(-eps_paik, 0.4, 1 - eps_paik, 1, 10) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) formula <- time_to_event ~ Gender + CFUP + cluster(group) # Call the main model function result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) # Define variables for plotting the variances pch_type <- c(21, seq(21,25,1), seq(21,25,1), seq(21,25,1)) color_bg <- c("darkblue", rep("red", 5), rep("purple", 5), rep("green",5)) plot_post_frailty_var(result, pch_type = pch_type, color_bg = color_bg)
# Import data data(data_dropout) # Define the variables needed for the model execution eps_paik <- 1e-10 categories_range_min <- c(-8, -2, eps_paik, eps_paik, eps_paik) categories_range_max <- c(-eps_paik, 0.4, 1 - eps_paik, 1, 10) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) formula <- time_to_event ~ Gender + CFUP + cluster(group) # Call the main model function result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) # Define variables for plotting the variances pch_type <- c(21, seq(21,25,1), seq(21,25,1), seq(21,25,1)) color_bg <- c("darkblue", rep("red", 5), rep("purple", 5), rep("green",5)) plot_post_frailty_var(result, pch_type = pch_type, color_bg = color_bg)
Plots the conditional survival function based on the 'Adapted Paik et al.' model's estimated coefficients and frailty effects, for each unit in each time interval (represented by its mid point).
plot_survivalAdPaik( result, lwd = 1, xlim = c(min(result$TimeDomain), max(result$TimeDomain)), ylim = c(0, 1), xlab = "Time", ylab = "Values", main = "Conditional Survival", cex = 0.2, cexlegend = 0.8 )
plot_survivalAdPaik( result, lwd = 1, xlim = c(min(result$TimeDomain), max(result$TimeDomain)), ylim = c(0, 1), xlab = "Time", ylab = "Values", main = "Conditional Survival", cex = 0.2, cexlegend = 0.8 )
result |
S3 object of class 'AdPaik' containing model results. |
lwd |
The line width of the plot. Default is 1. |
xlim |
A numeric vector specifying the range for the x-axis (intervals). Default is min-max value of the time domain. |
ylim |
A numeric vector specifying the range for the y-axis (intervals). Default is the range 0-1. |
xlab , ylab
|
String giving the x and y axis name. Default values are 'Time' and 'Values'. |
main |
Title of the plot. Default title is 'Survival'. |
cex |
Dimension of the points used for plotting the estimates. Defaults to 0.2. |
cexlegend |
Dimension of the text used for the legend. Defaults to 0.9. |
The plot of the conditional survival function.
# Import data data(data_dropout) # Define the variables needed for the model execution eps_paik <- 1e-10 categories_range_min <- c(-8, -2, eps_paik, eps_paik, eps_paik) categories_range_max <- c(-eps_paik, 0.4, 1 - eps_paik, 1, 10) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) formula <- time_to_event ~ Gender + CFUP + cluster(group) # Call the main model function result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) plot_survivalAdPaik(result)
# Import data data(data_dropout) # Define the variables needed for the model execution eps_paik <- 1e-10 categories_range_min <- c(-8, -2, eps_paik, eps_paik, eps_paik) categories_range_max <- c(-eps_paik, 0.4, 1 - eps_paik, 1, 10) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) formula <- time_to_event ~ Gender + CFUP + cluster(group) # Call the main model function result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) plot_survivalAdPaik(result)
Plots Related to the the 'Adapted Paik et Al.' Model
## S3 method for class 'AdPaik' plot( x, which = c(1, 2), captions = c("Plot 1: Baseline Hazard", "Plot 2: Posterior Frailty Estimate"), ... )
## S3 method for class 'AdPaik' plot( x, which = c(1, 2), captions = c("Plot 1: Baseline Hazard", "Plot 2: Posterior Frailty Estimate"), ... )
x |
An object of class 'AdPaik'. |
which |
A numeric vector indicating which plots to display. Choices: 1 = Baseline Hazard, 2 = Posterior Frailty Estimate. |
captions |
A character vector with captions for each plot. |
... |
Additional arguments to be passed to other methods. |
No return value. This function generates plots.
# Import data data(data_dropout) # Define the variables needed for the model execution eps_paik <- 1e-10 categories_range_min <- c(-8, -2, eps_paik, eps_paik, eps_paik) categories_range_max <- c(-eps_paik, 0.4, 1 - eps_paik, 1, 10) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) formula <- time_to_event ~ Gender + CFUP + cluster(group) # Call the main model function result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) plot(result)
# Import data data(data_dropout) # Define the variables needed for the model execution eps_paik <- 1e-10 categories_range_min <- c(-8, -2, eps_paik, eps_paik, eps_paik) categories_range_max <- c(-eps_paik, 0.4, 1 - eps_paik, 1, 10) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) formula <- time_to_event ~ Gender + CFUP + cluster(group) # Call the main model function result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) plot(result)
Function for computing the posterior frailty confidence intervals of the time-dependent shared frailty Cox model.
Recalling the structure of the frailty
with
and
as being composed by the sum
of two independent gamma distributions:
The posterior frailty estimate is .
This function allows to get the confidence intervals of either the entire posterior frailty estimates
or its time-independent
or
time-dependent
components.
The user can control which components to display using the flag_eps and flag_alpha parameters.
Only one of these flags can be set to TRUE at a time.
post_frailty_confint( object, level = 0.95, flag_eps = FALSE, flag_alpha = FALSE )
post_frailty_confint( object, level = 0.95, flag_eps = FALSE, flag_alpha = FALSE )
object |
S3 object of class 'AdPaik' returned by the main model output, that contains all the information for the computation of the frailty standard deviation. |
level |
A numeric value representing the confidence level for the posterior frailty confidence intervals. Default is 0.95 for 95% confidence. |
flag_eps |
Logical flag indicating whether to extract only the time-dependent posterior frailty estimates. Default is FALSE. |
flag_alpha |
Logical flag indicating whether to extract only the time-independent posterior frailty estimates. Default is FALSE. |
A list for posterior frailty confidence intervals, depending on the flag_eps and flag_alpha values. Specifically:
A list of length equal to the N containing posterior frailty confidence intervals for .
In this case the flag_eps must be FALSE and the flag_alpha must be TRUE.
A list of length equal to the NxL containing posterior frailty confidence intervals for .
In this case the flag_eps must be TRUE and the flag_alpha must be FALSE.
A list of length equal to the NxL containing posterior frailty confidence intervals for .
In this case the flag_eps must be FALSE and the flag_alpha must be FALSE.
# Consider the 'Academic Dropout dataset' data(data_dropout) # Define the variables needed for the model execution formula <- time_to_event ~ Gender + CFUP + cluster(group) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) eps <- 1e-10 categories_range_min <- c(-8, -2, eps, eps, eps) categories_range_max <- c(-eps, 0, 1 - eps, 1, 10) # Call the main model result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) post_frailty_confint(result)
# Consider the 'Academic Dropout dataset' data(data_dropout) # Define the variables needed for the model execution formula <- time_to_event ~ Gender + CFUP + cluster(group) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) eps <- 1e-10 categories_range_min <- c(-8, -2, eps, eps, eps) categories_range_max <- c(-eps, 0, 1 - eps, 1, 10) # Call the main model result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) post_frailty_confint(result)
Function for computing the posterior frailty estimates of the time-dependent shared frailty Cox model.
Recalling the structure of the frailty
with
and
as being composed by the sum
of two independent gamma distributions:
The posterior frailty estimate is .
This function allows to get either the entire posterior frailty estimate
or its time-independent
or
time-dependent
components.
The user can control which components to display using the flag_eps and flag_alpha parameters.
Only one of these flags can be set to TRUE at a time.
post_frailty_est(object, flag_eps = FALSE, flag_alpha = FALSE)
post_frailty_est(object, flag_eps = FALSE, flag_alpha = FALSE)
object |
S3 object of class 'AdPaik' returned by the main model output, that contains all the information for the computation of the frailty standard deviation. |
flag_eps |
Logical flag indicating whether to extract only the time-dependent posterior frailty estimates. Default is FALSE. |
flag_alpha |
Logical flag indicating whether to extract only the time-independent posterior frailty estimates. Default is FALSE. |
Vector or matrix of posterior frailty estimates, depending on the flag_eps and flag_alpha values. Specifically:
It is a vector of length equal to the N containing posterior frailty estimates for .
In this case the flag_eps must be FALSE and the flag_alpha must be TRUE.
Matrix of dimension (N, L) containing posterior frailty estimates for .
In this case the flag_eps must be TRUE and the flag_alpha must be FALSE.
Matrix of dimension (N, L) containing posterior frailty estimates for .
In this case the flag_eps must be FALSE and the flag_alpha must be FALSE.
# Consider the 'Academic Dropout dataset' data(data_dropout) # Define the variables needed for the model execution formula <- time_to_event ~ Gender + CFUP + cluster(group) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) eps <- 1e-10 categories_range_min <- c(-8, -2, eps, eps, eps) categories_range_max <- c(-eps, 0, 1 - eps, 1, 10) # Call the main model result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) post_frailty_est(result)
# Consider the 'Academic Dropout dataset' data(data_dropout) # Define the variables needed for the model execution formula <- time_to_event ~ Gender + CFUP + cluster(group) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) eps <- 1e-10 categories_range_min <- c(-8, -2, eps, eps, eps) categories_range_max <- c(-eps, 0, 1 - eps, 1, 10) # Call the main model result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) post_frailty_est(result)
Function for computing the posterior frailty variances of the time-dependent shared frailty Cox model.
Recalling the structure of the frailty
with
and
as being composed by the sum
of two independent gamma distributions:
The posterior frailty variance is ).
This function allows to get either the entire posterior frailty variance
or its time-independent
or
time-dependent
components.
The user can control which components to display using the flag_eps and flag_alpha parameters.
Only one of these flags can be set to TRUE at a time.
post_frailty_var(object, flag_eps = FALSE, flag_alpha = FALSE)
post_frailty_var(object, flag_eps = FALSE, flag_alpha = FALSE)
object |
S3 object of class 'AdPaik' returned by the main model output, that contains all the information for the computation of the frailty standard deviation. |
flag_eps |
Logical flag indicating whether to extract only the time-dependent posterior frailty estimates. Default is FALSE. |
flag_alpha |
Logical flag indicating whether to extract only the time-independent posterior frailty estimates. Default is FALSE. |
Vector or matrix of posterior frailty variances, depending on the flag_eps and flag_alpha values. Specifically:
It is a vector of length equal to the N containing posterior frailty variances for .
In this case the flag_eps must be FALSE and the flag_alpha must be TRUE.
Matrix of dimension (N, L) containing posterior frailty variances for .
In this case the flag_eps must be TRUE and the flag_alpha must be FALSE.
Matrix of dimension (N, L) containing posterior frailty variances for .
In this case the flag_eps must be FALSE and the flag_alpha must be FALSE.
# Consider the 'Academic Dropout dataset' data(data_dropout) # Define the variables needed for the model execution formula <- time_to_event ~ Gender + CFUP + cluster(group) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) eps <- 1e-10 categories_range_min <- c(-8, -2, eps, eps, eps) categories_range_max <- c(-eps, 0, 1 - eps, 1, 10) # Call the main model result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) post_frailty_var(result)
# Consider the 'Academic Dropout dataset' data(data_dropout) # Define the variables needed for the model execution formula <- time_to_event ~ Gender + CFUP + cluster(group) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) eps <- 1e-10 categories_range_min <- c(-8, -2, eps, eps, eps) categories_range_max <- c(-eps, 0, 1 - eps, 1, 10) # Call the main model result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) post_frailty_var(result)
This function prints a summary of the optimal parameters estimated in an AdPaik object.
## S3 method for class 'AdPaik' print(x, ...)
## S3 method for class 'AdPaik' print(x, ...)
x |
An object of class |
... |
Additional arguments (not used). |
Prints a summary of the AdPaik
object and returns it invisibly.
print
method for objects of class "summary.AdPaik"
. Formats and prints the model summary.
## S3 method for class 'summary.AdPaik' print(x, ...)
## S3 method for class 'summary.AdPaik' print(x, ...)
x |
An object of class |
... |
Additional arguments (currently unused). |
Prints a structured summary of the AdPaik
model.
summary
method for objects of class "AdPaik"
. It prepares a structured summary of the results.
## S3 method for class 'AdPaik' summary(object, ...)
## S3 method for class 'AdPaik' summary(object, ...)
object |
An object of class |
... |
Additional arguments (currently unused). |
An object of class "summary.AdPaik"
containing structured model summary information.
Computes the conditional survival function based on the 'Adapted Paik et al.' model's given the estimated coefficients and frailty effects.
survivalAdPaik(result)
survivalAdPaik(result)
result |
S3 object of class 'AdPaik' containing model results. |
A dataset where each row corresponds to an individual unit in the dataset, and the columns represent the survival function values over time interval, with the first column indicating the cluster to which the individual belongs.
# Import data data(data_dropout) # Define the variables needed for the model execution eps_paik <- 1e-10 categories_range_min <- c(-8, -2, eps_paik, eps_paik, eps_paik) categories_range_max <- c(-eps_paik, 0.4, 1 - eps_paik, 1, 10) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) formula <- time_to_event ~ Gender + CFUP + cluster(group) # Call the main model function result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) survivalAdPaik(result)
# Import data data(data_dropout) # Define the variables needed for the model execution eps_paik <- 1e-10 categories_range_min <- c(-8, -2, eps_paik, eps_paik, eps_paik) categories_range_max <- c(-eps_paik, 0.4, 1 - eps_paik, 1, 10) time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0) formula <- time_to_event ~ Gender + CFUP + cluster(group) # Call the main model function result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max) survivalAdPaik(result)