The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.

grpsel

R-CMD-check codecov

Overview

An R package for sparse regression modelling with grouped predictors (including overlapping groups). grpsel uses the group subset selection penalty, usually leading to excellent selection and prediction. Optionally, the group subset penalty can be combined with a group lasso or ridge penalty for added shrinkage. Linear and logistic regression are currently supported. See this paper for more information.

Installation

To install the latest stable version from CRAN, run the following code:

install.packages('grpsel')

To install the latest development version from GitHub, run the following code:

devtools::install_github('ryan-thompson/grpsel')

Usage

The grpsel() function fits a group subset regression model for a sequence of tuning parameters. The cv.grpsel() function provides a convenient way to automatically cross-validate these parameters.

library(grpsel)

# Generate some grouped data
set.seed(123)
n <- 100 # Number of observations
p <- 10 # Number of predictors
g <- 5 # Number of groups
group <- rep(1:g, each = p / g) # Group structure
beta <- numeric(p)
beta[which(group %in% 1:2)] <- 1 # First two groups are nonzero
x <- matrix(rnorm(n * p), n, p)
y <- x %*% beta + rnorm(n)

# Fit the group subset selection regularisation path
fit <- grpsel(x, y, group)
coef(fit, lambda = 0.05)
##            [,1]
##  [1,] 0.1363219
##  [2,] 1.0738565
##  [3,] 0.9734311
##  [4,] 0.8432186
##  [5,] 1.1940502
##  [6,] 0.0000000
##  [7,] 0.0000000
##  [8,] 0.0000000
##  [9,] 0.0000000
## [10,] 0.0000000
## [11,] 0.0000000
# Cross-validate the group subset selection regularisation path
fit <- cv.grpsel(x, y, group)
coef(fit)
##            [,1]
##  [1,] 0.1363219
##  [2,] 1.0738565
##  [3,] 0.9734311
##  [4,] 0.8432186
##  [5,] 1.1940502
##  [6,] 0.0000000
##  [7,] 0.0000000
##  [8,] 0.0000000
##  [9,] 0.0000000
## [10,] 0.0000000
## [11,] 0.0000000

Documentation

See the package vignette or reference manual.

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.