gren: Adaptive Group-Regularized Logistic Elastic Net Regression

Magnus Münch

1. Department of Epidemiology & Biostatistics, VU University Medical Center, Amsterdam, The Netherlands 2. Mathematical Institute, Leiden University, Leiden, The Netherlands
m.munch@vumc.nl

2018-07-28

1 Overview

This document contains the vignette for the R package gren. The document demonstrates the functionality and usage of the package with two example data sets. Also included are some questions regarding the functionality, which require the user to put some more thought into the data analysis. The vignette can also be used when ignoring the questions. All code to answer the questions is included, but for the the sake of computational time, the code is not run and the output is not shown. The package is based on the publication Münch et al. (2018).

The package enables the user to enhance classification performance and variable selection of the logistic elastic net through the inclusion of external information. The information comes in the form of a partitioning of the features into non-overlapping group. Example of such co-data are:

  1. Response-independent summaries in the primary data (e.g. standard deviation).
  2. Feature groupings from prior knowledge (e.g. pathways from public data bases).
  3. Feature-specific summaries from an independent study (e.g. p-values).

1.1 Elements of the package

Key elements of the gren package are:

  1. gren: main function of the package that estimated the model.
  2. cv.gren: convience function that gives cross-validated predictions
  3. coef.gren, predict.gren: extract coefficients and create predictions from an estimated model.
  4. denet, renet: density and random number generator for the elastic net prior distribution.

1.2 Getting started

The gren package is available online. Installation from CRAN is as follows:

Now we may load the package

The gren package imports the following R packages: glmnet, Rcpp, Iso, and pROC.

It might be useful to clear the global environment before starting

2 Example 1: microRNAs in colon cancer

2.1 Data

In this part, we will be working with an unpublished (anonymised) dataset containing deep sequenced microRNAs for a cohort of treated colorectal cancer patients. The data is read into the global environment with the following piece of code:

MicroRNAs are small non-coding strands of RNA that are believed to be important in epigenetic functioning. The microRNAs are contained in the mirCol object in the form of a matrix. The rows of the matrix contain the samples, while the columns contain the microRNAs. Run

to find the dimensions of the object containing the microRNAs. Note that gren requires an \(n \times p\) input matrix, with \(n\) and \(p\) the number of samples and features, respectively.

QUESTION How many microRNAs do we have? And what is the number of subjects?

The aim of the analysis is to classify treatment response, coded as either non-progressive/remission or progressive. The responses are given in the respCol object in the form of a factor.

QUESTION What is the number of non-progressive/remission patients? And the number of progressive patients?

In addition there are four clinical covariates that we may include in the analysis. They are contained in the data.frame named unpenCol. the first covariate denotes prior use of adjuvent therapy, a binary variable named adjth. The second is the type of systemic treatment in the form of a ternary variable called thscheme. The third is the numeric vector age and the fourth is the binary variable that codes for primary tumour differentiation called pcrcdiff.

QUESTION How many clinical covariates are there?

QUESTION Do we want to penalise these clinical covariates? Why/why not?

Lastly, there is a factor named mirExpr, which contains the group-memberships of the microRNAs. There are three groups: non differentially expressed microRNAs named nonExpr, medium differentially expressed microRNAS (0.001 \(<\) FDR \(\leq\) 0.05) named medExpr, and highly differentially expressed microRNAs (FDR \(<\) 0.001) called highExpr.These groups are based on a preliminary experiment in a different group of patients, where metastatic colorectal tumour tissue and primary colorectal tissue were compared to normal non-colorectal tissue and primary colorectal tissue, respectively (Neerincx et al. 2015). Run the following code to inspect the partitioning:

QUESTION What are the sizes of the different groups of microRNAs?

We expect that incorporation of this partitioning enhances therapy response classification, because tumor-specific miRNAs might be more relevant than non-specific ones.

QUESTION What group do you expect to receive the largest/smallest penalty?

2.2 Estimation

After inspection we standardise the microRNA expression levels. Note that the microRNA expression levels have already been pre-processed somewhat, so they are not counts anymore. But since we standardize them anyway, it doesn’t really matter.

Now that we have looked at the data and standardised the expression levels, we can estimate a group-regularized elastic net model using the gren function. gren takes several arguments, the most important ones are x, y, m, unpenalized, and partitions. These arguments constitute the data used for the estimation. For an explanation of these arguments and others use ?gren.

By default, gren estimates a binary logistic regression model. If the outcome data is not binary, but a sum of binary experiments, we may create a numeric vector m that contains the number of Bernoulli trials for each observation. Since our outcome here is binary, we do not specify it here.

In order to estimate the model, we have to specify a penalty mixing parameter alpha. This parameter determines the proportion of \(L_1\) and \(L_2\)-norm penalty. alpha=0 is a ridge model, while alpha=1 is the lasso model. We will start with the default value alpha=0.5. If lambda=NULL (default) it is estimated by cross-validation of the regular elastic net model. Furthermore we will include an unpenalized intercept by setting intercept=TRUE (default).

QUESTION Can you think of any reason why we don’t wish to penalise the intercept?

The following code fits a group-regularized elastic net model (we set a seed, to make the results reproducible). Note that it may take a few minutes, depending on your computer.

2.3 Interpreting results

Next we look at the results. The estimated penalty multipliers may be retrieved from the object and plotted. We add a dotted line at one, to indicate the not group-regularized setting:

QUESTION Why does the dotted line correspond to a regular (not group-regularized) model?

QUESTION Do the estimated penalty multipliers follow the expected pattern?

It might also be interesting to compare the model parameter estimates by the group-regularized regression with the regular elastic net estimates:

QUESTION Which model selects more microRNAs, the group-regularized model or the regular model? What is the overlap between the two?

To reduce the costs of clinical predictions, it is often desirable to obtain a sparse final model. In addition, under equal model sizes, the comparison of two models is easier to interpret. Feature selection is possible by setting psel to the desired number of features and is done by adjusting the global lambda after the penalty multipliers have been estimated. Here, we select 50 features. Again, this will likely take two or three minutes.

QUESTION How did the results change compared to before? Is there more or less overlap between the selected microRNAs?

2.4 Predictive performance

Since logistic regression is a classification method, we may compare classification performance of the regular and group-regularized elastic net. To avoid overestimation of performance we would like to use an indepenent data set to calculate the performance measures on. The simplest way of accomplishing this is by randomly splitting the data set in two parts, one for estimation and one for classification performance evaluation. But since we have a limited number of patients, splitting them in half would leave us with a very small dataset for estimation. With such a small data set we run the risk of bad estimators for the model. To avoid this we use cross-validation to estimate performance. Using cross-validation, we will still slightly overestimate performance, but since we are comparing two methods, we expect that this cancels out in the comparison.

The gren package contains a convenience function for performance cross-validation: cv.gren. This function is generally faster than naive cross-validation. An important extra argument is fix.lambda. If it is set to TRUE, the global lambda is fixed throughout the cross-validation iterations, which saves time, but slightly increases overestimation of performance. We compare with the regular elastic net by setting compare=TRUE. To make the comparison fair, we select the same number of features using psel=50.

Otherwise the following code estimates the performance by cross-validation (may take a few minutes to run):

Due to time constraints, we used 10-fold cross-validation to estimate performance by setting nfolds.out=10. It is of course possible to use more folds by changing this value.

To assess predictive performance we compare the ROCs of the group-regularized elastic net with the regular elastic net.

QUESTION Do you think that the inclusion of the co-data helped with predictive performance here?

It might also be informative to plot the (cross-validated) predicted probabilites of the two models:

QUESTION In what way does the inclusion of the co-data change the predicted probabilities?

3 Example 2: microRNAs in cervical cancer

3.1 Data

In this study, microRNAs from women were collected through self-samples. These women were either cervical cancer disease free or with high grade cervical lesions (CIN2/3). These lesions have a high risk for progression to cancer and hence need accurate detection (Novianti et al. 2017). The data consists of (transformed) sequenced microRNAs. We first load the data:

The mircoRNAs are given as a matrix object named mirCerv. The dependent variable is in the form of a factor called respCerv. In addition, there is the mirCons object, which contains the conservation status of the microRNAs (Agarwal et al. n.d.). The conservation status comes in three levels: not conserved, conserved across most mammals, and broadly conserved across most vertebrates. We may include conservation status as co-data, since we expect that conserved microRNAs are more important for body functioning and consequently might be important in CIN2/3 development.

3.2 Two partitions

We may create additional co-data by examining the microRNAs themselves. Here we create a co-data set based on the sample standard deviations of the microRNAs:

QUESTION What do you think the relation between the standard deviation and penalty parameter of the microRNAs should be?

We may include this co-data in the estimation by extending the partitions argument:

We may also specify an extra argument monotone, a list containing two logical vectors. The first indicates the whether the corresponding partitions penalty multipliers are monotone, while the second indicates whether the corresponding parititions penalty multipliers are monotonically decreasing with group number or not

QUESTION Would you impose a monotonicity constraint on the standard deviations partition? And if so, in what direction would the monotonicity be?

To include a monotonicity constraint create the following object:

To estimate the model with the monotonicity constraint, alpha=0.5, and with the selection of 50 features, run the following chunk of code (this may take a few minutes):

Again, we may inspect the penalty multipliers. This time we have two sets, so we create two barplots:

QUESTION Are the penalty multipliers of the conservation status according to expectation? And what about the standard deviation penalty multipliers?

Since we now have two partitions, it is not straightforward to see what the total penalty multiplication for each feature is. We calculate and inspect the total penalty multiplication per feature by:

QUESTION Can you discern the different groups from the two partitions from the histogram? Why/why not?

Again, we may use cross validation to estimate predictive performance of the model. The following code estimates the performance by cross-validation (may take a few minutes to estimate):

Again, we look at ROC plots to compare the performance of the group-regularized elastic net with the non group-regularized elastic net:

QUESTION Do you think that the inclusion of the co-data helped with predictive performance here?

It might also be informative to plot the (cross-validated) predicted probabilites of the two models:

QUESTION In what way does the inclusion of the co-data change the predicted probabilities?

References

Agarwal, Vikram, George W Bell, Jin-Wu Nam, and David P Bartel. n.d. “Predicting Effective microRNA Target Sites in Mammalian mRNAs.” eLife 4. Accessed July 19, 2018. https://doi.org/10.7554/eLife.05005.

Münch, Magnus M., Carel F. W. Peeters, Aad W. van der Vaart, and Mark A. van de Wiel. 2018. “Adaptive Group-Regularized Logistic Elastic Net Regression.” arXiv:1805.00389 [Stat], May. http://arxiv.org/abs/1805.00389.

Neerincx, M., D. L. S. Sie, M. A. van de Wiel, N. C. T. van Grieken, J. D. Burggraaf, H. Dekker, P. P. Eijk, et al. 2015. “MiR Expression Profiles of Paired Primary Colorectal Cancer and Metastases by Next-Generation Sequencing.” Oncogenesis 4 (10): e170. https://doi.org/10.1038/oncsis.2015.29.

Novianti, P. W., B. C. Snoek, S. M. Wilting, and M. A. van de Wiel. 2017. “Better Diagnostic Signatures from RNAseq Data Through Use of Auxiliary Co-Data.” Bioinformatics 30 (10): 1572–4. https://doi.org/10.1093/bioinformatics/btw837.