Learn R Programming

⚠️There's a newer version (1.0.2) of this package.Take me there.

regnet

Regularized Network-Based Variable Selection

Network-based regularization has achieved success in variable selection for high-dimensional biological data due to its ability to incorporate correlations among genomic features. This package provides procedures of network-based variable selection for generalized linear models (Ren et al.(2017) and Ren et al.(2019)). Two recent additions are the robust network regularization for the survival response and the network regularization for continuous response. Functions for other regularization methods will be included in the forthcoming upgraded versions.

How to install

  • To install from github, run these two lines of code in R
install.packages("devtools")
devtools::install_github("jrhub/regnet")
  • Released versions of regnet are available on R CRAN (link), and can be installed within R

via

install.packages("regnet")

Examples

Survival response

Example.1 (Robust Network)

data(SurvExample)
X = rgn.surv$X
Y = rgn.surv$Y
clv = c(1:5) # variable 1 to 5 are clinical variables, we choose not to penalize them here.
out = cv.regnet(X, Y, response="survival", penalty="network", clv=clv, robust=TRUE, verbo = TRUE)
out$lambda
b = regnet(X, Y, "survival", "network", out$lambda[1,1], out$lambda[1,2], clv=clv, robust=TRUE)  
index = which(rgn.surv$beta[-(1:6)] != 0)  # [-(1:6)] removes the intercept and clinical variables that are not subject to selection.
pos = which(b[-(1:6)] != 0)  
tp = length(intersect(index, pos))  
fp = length(pos) - tp  
list(tp=tp, fp=fp)  

Binary response

Example.2 (Network Logistic)

data(LogisticExample)
X = rgn.logi$X
Y = rgn.logi$Y
out = cv.regnet(X, Y, response="binary", penalty="network", folds=5, r = 4.5)  
out$lambda 
b = regnet(X, Y, "binary", "network", out$lambda[1,1], out$lambda[1,2], r = 4.5)
index = which(rgn.logi$beta[-1] != 0)   # [-1] removes the intercept
pos = which(b[-1] != 0)  
tp = length(intersect(index, pos))  
fp = length(pos) - tp  
list(tp=tp, fp=fp)  

News

regnet 0.4.0 [2019-6-7]

Based on users’ feedback, we have

  • Added more checking steps for data format, which help users make sure their data are in the correct format.
  • Provided more information in the documentation for troubleshooting .

regnet 0.3.0 [2018-5-21]

  • Two new, easy to use, integrated interfaces: cv.regnet() and regnet().
  • New methods for continuous and survival responses.
  • The new “clv” argument allows the presence of clinical variables that are not subject to penalty in the X matrix.

regnet 0.2.0 [2017-10-14]

  • Provides c++ implementation for coordinate descent algorithms. This update significantly increases the speed of cross-validation functions in this package.

Methods

This package provides implementation for methods proposed in

  • Ren, J., He, T., Li, Y., Liu, S., Du, Y., Jiang, Y., Wu, C. (2017). Network-based regularization for high dimensional SNP data in the case-control study of Type 2 diabetes. BMC Genetics, 18(1):44

  • Ren, J., Du, Y., Li, S., Ma, S., Jiang,Y. and Wu, C. (2019). Robust network-based regularization and variable selection for high dimensional genomics data in cancer prognosis. Genet. Epidemiol. 43:276-291

References

Copy Link

Version

Install

install.packages('regnet')

Monthly Downloads

231

Version

0.4.0

License

GPL-2

Issues

Pull Requests

Stars

Forks

Maintainer

Jie Ren

Last Published

June 8th, 2019

Functions in regnet (0.4.0)

print.cv.regnet

print a cv.glmnet object
regnet

fit a regression for given lambda with network-based regularization
regnet-package

Network-Based Regularization for Generalized Linear Models
cv.regnet

k-folds cross-validation for regnet
rgn

simulated data for demonstrating the features of regnet