From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60753) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fzRwl-0003Lw-Sn for guix-patches@gnu.org; Mon, 10 Sep 2018 15:34:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fzRwg-00050G-CI for guix-patches@gnu.org; Mon, 10 Sep 2018 15:34:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:59765) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fzRwg-0004zp-0H for guix-patches@gnu.org; Mon, 10 Sep 2018 15:34:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fzRwf-0006nm-Nl for guix-patches@gnu.org; Mon, 10 Sep 2018 15:34:01 -0400 Subject: [bug#32689] [PATCH] gnu: Add r-abundant. References: <918DDFCAA65E9447BD6F28DB666521DA991050@DAGONE.mdc-berlin.net> In-Reply-To: <918DDFCAA65E9447BD6F28DB666521DA991050@DAGONE.mdc-berlin.net> Resent-Message-ID: From: pimi Date: Mon, 10 Sep 2018 21:32:57 +0200 Message-ID: <20180910193257.8345-1-madalinionel.patrascu@mdc-berlin.de> MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 32689@debbugs.gnu.org Cc: pimi gnu/packages/cran.scm (r-abundant): New variable. --- gnu/packages/cran.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index d31f1c81a..41d6e44ed 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5614,3 +5614,27 @@ coordinate descent to solve the regularized inverse covariance matrix estimation problem.") ;; on the home-page it is mentioned that the release is under GPLv3 or later (license license:gpl3+))) + +(define-public r-abundant + (package + (name "r-abundant") + (version "1.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "abundant" version)) + (sha256 + (base32 "1m76qdmqvwpgm0sihazi2dna7cgsz9rljal18vgffb5wamwmg9k7")))) + (build-system r-build-system) + (propagated-inputs + `(("r-quic" ,r-quic))) + (home-page "https://cran.r-project.org/web/packages/abundant/") + (synopsis "Abundant regression and high-dimensional principal fitted components") + (description + "This package fits and predicts with the high-dimensional principal fitted components +model. It is demonstrated that asymptotic behavior of a class of methods for +sufficient dimension reduction in high-dimension regressions, are consistent in +a variety of settings, particularly in abundant regressions where most +predictors contribute some information on the response, and oracle rates are +possible.") + (license license:gpl2))) -- 2.17.1