From ba663a331b2d94d434e2bb0fe7542a101daae3ba Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 13 Jul 2020 16:12:29 +0200 Subject: gnu: Add r-conquer. * gnu/packages/cran.scm (r-conquer): New variable. --- gnu/packages/cran.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index d8c9fa0f1e..ff6be76f89 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -22534,3 +22534,30 @@ it marks a leap forward in terms of web browser automation. Selenium automates web browsers (commonly referred to as browsers). Using RSelenium you can automate browsers locally or remotely.") (license license:agpl3+))) + +(define-public r-conquer + (package + (name "r-conquer") + (version "1.0.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "conquer" version)) + (sha256 + (base32 + "1c7id7wgspma5bdcirrhw7f9fp709zxpj31klivasdbvd4jgi4vb")))) + (properties `((upstream-name . "conquer"))) + (build-system r-build-system) + (propagated-inputs + `(("r-matrix" ,r-matrix) + ("r-matrixstats" ,r-matrixstats) + ("r-rcpp" ,r-rcpp) + ("r-rcpparmadillo" ,r-rcpparmadillo))) + (home-page "https://github.com/XiaoouPan/conquer") + (synopsis "Convolution-type smoothed quantile regression") + (description + "This package provides fast and accurate convolution-type smoothed +quantile regression, implemented using Barzilai-Borwein gradient descent with +a Huber regression warm start. Confidence intervals for regression +coefficients are constructed using multiplier bootstrap.") + (license license:gpl3))) -- cgit 1.4.1