The function fmrs.gendata
generates a data set from an FMRs model. It has the form
fmrs.gendata(nObs, nComp, nCov, coeff, dispersion, mixProp, rho, umax, ...)
where n
is the sample size, nComp
is the order of FMRs model, nCov
is the number of regression covariates, coeff
, dispersion
and mixProp
are the parameters of regression models, i.e. regression coefficients, dispersion (standard deviation) of the errors (sub-distributions) and mixing proportions, respectively, and rho
is the used in the variance-covariance matrix for simulating the design matrix x
, and umax
is the upper bound for Uniform distribution for generating censoring times.
Depending on the choice of disFamily
, the function fmrs.gendata
generates a simulated data from FMRs models. For instance, if we choose disFamily = "norm"
, the function ignores the censoring parameter umax
and generates a data set from an FMR model with Normal sub-distributions. However, if we choose disFamily = "lnorm"
or disFamily = "weibull"
, the function generates data under a finite mixture of AFT regression model with Log-Normal or Weibull sub-distributions.
The fmrs.gendata
function returns a list which includes a vector of responses $y
, a matrix of covariates $x
and a vector of censoring indicators $delta
as well as the name of sub-distribution of the mixture model.
The function fmrs.mle
in fmrs package provides maximum likelihood estimation for the parameters of an FMRs model. The function has the following form,
fmrs.mle(y, x, delta, nComp, ...)
where y
, x
and delta
are observations, covariates and censoring indicators respectively, and nComp
is the order of FMRs, initCoeff
, initDispersion
and initmixProp
are initial values for EM and NR algorithms, and the rest of arguments of the function are controlling parameres. The function returns a fitted FMRs model with estimates of regression parameters, standard deviations and mixing proportions of the mixture model. It also returns the log-likelihood and BIC under the estimated model, the maximum number of iterations used in EM algorithm and the type of the fitted model.
Note that one can do ridge regression by setting a value for tuning parameter of the ridge penalty other than zero in the argument lambRidge
.
To do the variable selection we provided the function fmrs.varsel
with the form
fmrs.varsel(y, x, delta, nComp, ...)
where penFamily
is the penalty including "adplasso"
, "lasso"
, "mcp"
, "scad"
, "sica"
and "hard"
, and lambPen
is the set of tuning parameters for components of penalty. We can run the function fmrslme
first and use the parameter estimates as initial values for the function fmrs.varsel
.
There are two approaches for specifying tuning parameters: Common and Component-wise tuning parameters. If we consider choosing common tuning parameter, we can use the BIC criteria to search through the a set of candidate values in the interval \((0,\lambda_M)\), where \(\lambda_M\) is a prespecified number. The BIC is provided by the function fmrs.varsel
for each candidate point and we choose the optimal \(\hat\lambda\), the one that maximizes BIC. This approach will be good for the situations with enough samples sizes. It also reduces the computational burden.
On the other hand, if we consider choosing component-wise tuning parameters we use the following function to search for optimal \((\lambda_1, \ldots, \lambda_K)\) from the set of candidate values in \((0, \lambda_M)\). The function is
fmrs.tunsel(y, x, delta, nComp, ...)
It is a good practice run the function fmrs.mle
first and use the parameter estimates as initial values in the function fmrs.tunsel
. The function fmrs.mle
then returns a set optimal tuning parameters of size nComp
to be used in variable selection function. Note that this approach still is under theoretical study and is not proved to give optimal values in general.
We use a simulated data set to illustrate using fmrs
package. We generate the covariates (design matrix) from a multivariate normal distribution of dimension nCov=10
and sample size 200 with mean vector \(\bf 0\) and variance-covariance matrix \(\Sigma=(0.5^{|i-j|})\). We then generate time-to-event data from a finite mixture of two components AFT regression models with Log-Normal sub-distributions. The mixing proportions are set to \(\pi=(0.3, 0.7)\). We choose \(\boldsymbol\beta_0=(2,-1)\) as the intercepts, \(\boldsymbol\beta_1=(-1, -2, 1, 2, 0 , 0, 0, 0, 0, 0)\) and \(\boldsymbol\beta_2=(1, 2, 0, 0, 0 , 0, -1, 2, -2, 3)\) as the regression coefficients in first and second component, respectively.
We start by loading necessary libraries and assigning the parameters of model as follows.
## BugReports: https://github.com/shokoohi/fmrs/issues
set.seed(1980)
nComp = 2
nCov = 10
nObs = 500
dispersion = c(1, 1)
mixProp = c(0.4, 0.6)
rho = 0.5
coeff1 = c( 2, 2, -1, -2, 1, 2, 0, 0, 0, 0, 0)
coeff2 = c(-1, -1, 1, 2, 0, 0, 0, 0, -1, 2, -2)
umax = 40
Using the function fmrs.gendata
, we generate a data set from a finite mixture of accelerated failure time regression models with above settings as follow.
dat <- fmrs.gendata(nObs = nObs, nComp = nComp, nCov = nCov,
coeff = c(coeff1, coeff2), dispersion = dispersion,
mixProp = mixProp, rho = rho, umax = umax,
disFamily = "lnorm")
Now we assume that the generated data are actually real data. We find MLE of the parameters of the assumed model using following code. Note that almost all mixture of regression models depends on initial values. Here we generate the initial values form a Normal distribution with
res.mle <- fmrs.mle(y = dat$y, x = dat$x, delta = dat$delta,
nComp = nComp, disFamily = "lnorm",
initCoeff = rnorm(nComp*nCov+nComp),
initDispersion = rep(1, nComp),
initmixProp = rep(1/nComp, nComp))
summary(res.mle)
## -------------------------------------------
## Fitted Model:
## -------------------------------------------
## Finite Mixture of Accelerated Failure Time Regression Models
## Log-Normal Sub-Distributions
## 2 Components; 10 Covariates; 500 samples.
##
## Coefficients:
## Comp.1 Comp.2
## Intercept -1.023604483 2.16195076
## X.1 -0.947848918 1.88466885
## X.2 0.789698410 -0.87396027
## X.3 2.150264797 -2.14010452
## X.4 0.006753939 0.98526303
## X.5 0.057401304 1.97219759
## X.6 -0.059513105 0.25060283
## X.7 -0.129981745 0.03932427
## X.8 -0.878292858 -0.05870977
## X.9 1.928301008 -0.04922729
## X.10 -2.048080400 0.06103528
##
## Dispersions:
## Comp.1 Comp.2
## 0.8846122 0.9351534
##
## Mixing Proportions:
## Comp.1 Comp.2
## 0.5831731 0.4168269
##
## LogLik: -764.9188; BIC: 1685.203
As we see the ML estimates of regression coefficients are not zero. Therefore MLE cannot provide a sparse solution. In order to provide a sparse solution, we use the variable selection methods developed by Shokoohi et. al. (2016). First we need to find a good set of tuning parameters. It can be done by using component-wise tuning parameter selection function implemented in fmrs
as follows. In some settings, however, it is better to investigate if common tuning parameter performs better.
res.lam <- fmrs.tunsel(y = dat$y, x = dat$x, delta = dat$delta,
nComp = nComp, disFamily = "lnorm",
initCoeff = c(coefficients(res.mle)),
initDispersion = dispersion(res.mle),
initmixProp = mixProp(res.mle),
penFamily = "adplasso")
summary(res.lam)
## -------------------------------------------
## Selected Tuning Parameters:
## -------------------------------------------
## Finite Mixture of Accelerated Failure Time Regression Models
## Log-Normal Sub-Distributions
## 2 Components; adplasso Penalty;
##
## Component-wise lambda:
## Comp.1 Comp.2
## 0.0199 0.01
We have used MLE estimates as initial values for estimating the tuning parameters. Now we used the same set of values to do variable selection with adaptive lasso penalty as follows.
res.var <- fmrs.varsel(y = dat$y, x = dat$x, delta = dat$delta,
nComp = ncomp(res.mle), disFamily = "lnorm",
initCoeff=c(coefficients(res.mle)),
initDispersion = dispersion(res.mle),
initmixProp = mixProp(res.mle),
penFamily = "adplasso",
lambPen = slot(res.lam, "lambPen"))
summary(res.var)
## -------------------------------------------
## Fitted Model:
## -------------------------------------------
## Finite Mixture of Accelerated Failure Time Regression Models
## Log-Normal Sub-Distributions
## 2 Components; 10 Covariates; 500 samples.
##
## Coefficients:
## Comp.1 Comp.2
## Intercept -1.0512750 2.1437918
## X.1 -0.8943152 1.8453933
## X.2 0.7280492 -0.8485914
## X.3 2.1510976 -2.0749379
## X.4 0.0000000 0.9350182
## X.5 0.0000000 2.0218598
## X.6 0.0000000 0.1340205
## X.7 0.0000000 0.0000000
## X.8 -0.8879717 0.0000000
## X.9 1.8765916 0.0000000
## X.10 -2.0186396 0.0000000
##
## Selected Set:
## Comp.1 Comp.2
## X.1 1 1
## X.2 1 1
## X.3 1 1
## X.4 0 1
## X.5 0 1
## X.6 0 1
## X.7 0 0
## X.8 1 0
## X.9 1 0
## X.10 1 0
##
## Dispersions:
## Comp.1 Comp.2
## 0.8992599 0.9419583
##
## Mixing Proportions:
## Comp.1 Comp.2
## 0.5817755 0.4182245
##
## LogLik: -768.9993; BIC: 1643.647
The final variables that are selected using this procedure are those with non-zero coefficients. Note that a switching between components of mixture has happened here.
## Comp.1 Comp.2
## X.1 1 1
## X.2 1 1
## X.3 1 1
## X.4 0 1
## X.5 0 1
## X.6 0 1
## X.7 0 0
## X.8 1 0
## X.9 1 0
## X.10 1 0
Therefore, the variable selection and parameter estimation is done simultaneously using the fmrs package.
## R version 4.2.1 (2022-06-23)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 20.04.5 LTS
##
## Matrix products: default
## BLAS: /home/biocbuild/bbs-3.16-bioc/R/lib/libRblas.so
## LAPACK: /home/biocbuild/bbs-3.16-bioc/R/lib/libRlapack.so
##
## locale:
## [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
## [3] LC_TIME=en_GB LC_COLLATE=C
## [5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
## [7] LC_PAPER=en_US.UTF-8 LC_NAME=C
## [9] LC_ADDRESS=C LC_TELEPHONE=C
## [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
##
## attached base packages:
## [1] stats graphics grDevices utils datasets methods base
##
## other attached packages:
## [1] fmrs_1.8.0
##
## loaded via a namespace (and not attached):
## [1] lattice_0.20-45 digest_0.6.30 grid_4.2.1 R6_2.5.1
## [5] jsonlite_1.8.3 magrittr_2.0.3 evaluate_0.17 stringi_1.7.8
## [9] rlang_1.0.6 cachem_1.0.6 cli_3.4.1 jquerylib_0.1.4
## [13] Matrix_1.5-1 bslib_0.4.0 rmarkdown_2.17 splines_4.2.1
## [17] tools_4.2.1 stringr_1.4.1 survival_3.4-0 xfun_0.34
## [21] yaml_2.3.6 fastmap_1.1.0 compiler_4.2.1 htmltools_0.5.3
## [25] knitr_1.40 sass_0.4.2