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")
::install_github("osorensen/hdme", build_vignettes = TRUE) devtools
hdme
uses the Rglpk package, which
requires the GLPK library package to be installed. On some platforms
this requires a manual installation.
On Debian/Ubuntu, you might use:
sudo apt-get install libglpk-dev
On macOS, you might use:
brew install glpk
hdme provides implementations of the following algorithms:
The methods implemented in the package include
Contributions to hdme
are very welcome. If you have a
question or suspect you have found a bug, please open an Issue. Code
contribution by pull requests are also appreciated.
If using hdme in a scientific publication, please cite the following paper:
citation("hdme")
#>
#> To cite package 'hdme' in publications use:
#>
#> Sorensen, (2019). hdme: High-Dimensional Regression with Measurement
#> Error. Journal of Open Source Software, 4(37), 1404,
#> https://doi.org/10.21105/joss.01404
#>
#> A BibTeX entry for LaTeX users is
#>
#> @Article{,
#> title = {hdme: High-Dimensional Regression with Measurement Error},
#> journal = {Journal of Open Source Software},
#> volume = {4},
#> number = {37},
#> pages = {1404},
#> year = {2019},
#> doi = {10.21105/joss.01404},
#> author = {Oystein Sorensen},
#> }