The goal of hdme is to provide penalized regression methods forHigh-Dimensional Measurement Error problems (errors-in-variables).
Installhdme 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 uses theRglpk package, whichrequires the GLPK library package to be installed. On some platformsthis requires a manual installation.
On Debian/Ubuntu, you might use:
sudo apt-get install libglpk-devOn macOS, you might use:
brew install glpkhdme provides implementations of the following algorithms:
The methods implemented in the package include
Contributions tohdme are very welcome. If you have aquestion or suspect you have found a bug, pleaseopen an Issue. Codecontribution by pull requests are also appreciated.
If using hdme in a scientific publication, please cite the followingpaper:
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},#> }