Penalized regression for generalized linear models for
measurement error problems (aka. errors-in-variables). The package
contains a version of the lasso (L1-penalization) which corrects
for measurement error (Sorensen et al. (2015)
The goal of hdme is to provide penalized regression methods for High-Dimensional Measurement Error problems (errors-in-variables).
Install hdme
from CRAN using.
install.packages("hdme")
You can install the latest development version from github with:
# install.packages("devtools")devtools::install_github("osorensen/hdme", build_vignettes = TRUE)
hdme provides implementations of the following algorithms:
The methods implemented in the package include
James, Gareth M., and Peter Radchenko. 2009. “A Generalized Dantzig Selector with Shrinkage Tuning.” Biometrika 96 (2): 323–37.
Loh, Po-Ling, and Martin J. Wainwright. 2012. “High-Dimensional Regression with Noisy and Missing Data: Provable Guarantees with Nonconvexity.” Ann. Statist. 40 (3): 1637–64.
Rosenbaum, Mathieu, and Alexandre B. Tsybakov. 2010. “Sparse Recovery Under Matrix Uncertainty.” Ann. Statist. 38 (5): 2620–51.
Sorensen, Oystein, Arnoldo Frigessi, and Magne Thoresen. 2015. “Measurement Error in Lasso: Impact and Likelihood Bias Correction.” Statistica Sinica 25 (2): 809–29.
Sorensen, Oystein, Kristoffer Herland Hellton, Arnoldo Frigessi, and Magne Thoresen. 2018. “Covariate Selection in High-Dimensional Generalized Linear Models with Measurement Error.” Journal of Computational and Graphical Statistics 27 (4): 739–49. https://doi.org/10.1080/10618600.2018.1425626.
Rglpk
back to Imports and removed lpSolveAPI, as the latest version of Rglpk
passes all tests on CRAN, including osX.Fixed random number seed issue which caused test to fail in R-devel.
Internal fix to fit_corrected_lasso
and cv_corrected_lasso
. Got rid of duplicated code by calling the function set_radius
.
Since Rglpk
does not install automatically on macOS, this package was moved from Imports to Suggests. In addition, lpSolveAPI
was added to Suggests. This means that the package should build also on systems that do not have Rglpk
, in particular the versions of macOS on CRAN.
The changes involved adding an optional linear solver from lpSolveAPI
in the function musalgorithm()
.
Added a plot.gds
function, which plots the coefficients estimated by fit_gds
.
Internal adjustment, which removed importing of external packages into the namespace, and instead specified the functions explicitly using ::
.
tidyverse
has been removed from Suggests field DESCRIPTION
. dplyr
and tidyr
have been added instead. Similarly, library(tidyverse)
in the vignette has been replaced by library(dplyr)
, library(tidyr)
, and library(ggplot2)
.
hdme
is now on CRAN.