Estimates regression parameters by optimizing a smoothed version of Gehan's statistic.
gehan_poly_estimation(y, Z, delta, binit, epsilon, optimx.alg, use.grad)A list containing: - `BETA`: The estimated beta coefficients. - `RESID`: The residuals from the model fit. - `ITERS`: The number of iterations performed during optimization.
A numeric vector of the response variable, survival times.
A matrix of covariates.
A censoring indicator vector where 1 indicates an uncensored observation and 0 indicates a censored observation.
Initial values for the beta coefficients.
Smoothing parameter.
Optimalization algorithm that will be used (see optimx package documentation for more information)
Indicator wheter numerical or excact gradient will be used, default is FALSE == numerical
The `gehan_poly_estimation` function performs estimation of regression parameters by minimizing the smoothed Gehan's loss function.