From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55302) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyyha-00083r-MF for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iyyhZ-0000ro-F9 for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:18 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36980) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyyhZ-0000qj-9l for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:17 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iyyhZ-0008Jn-8o for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:17 -0500 Subject: [bug#39416] [PATCH 21/34] gnu: Add package r-rpf Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:56:13 +0100 Message-Id: <20200204135626.28261-21-ldb@leibniz-psychology.org> In-Reply-To: <20200204135626.28261-1-ldb@leibniz-psychology.org> References: <20200204135626.28261-1-ldb@leibniz-psychology.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 39416@debbugs.gnu.org Cc: Lars-Dominik Braun * gnu/packages/cran.scm (r-rpf): New variable. --- gnu/packages/cran.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 47acdf95ae..a607abd262 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19817,3 +19817,29 @@ etc.), and a parser for the Stan language. The @code{r-rstan} package provides user-facing R functions to parse, compile, test, estimate, and analyze Stan models.") (license license:bsd-3))) + +(define-public r-rpf + (package + (name "r-rpf") + (version "0.62") + (source + (origin + (method url-fetch) + (uri (cran-uri "rpf" version)) + (sha256 + (base32 + "1vgqhwi676bi9jjxljnxblw65b5szjwbp87wnsabc11vfjzc9wki")))) + (properties `((upstream-name . "rpf"))) + (build-system r-build-system) + (propagated-inputs + `(("r-mvtnorm" ,r-mvtnorm) + ("r-rcppeigen" ,r-rcppeigen))) + (home-page "https://github.com/jpritikin/rpf") + (synopsis "Response Probability Functions") + (description + "The purpose of this package is to factor out logic and math common to +Item Factor Analysis fitting, diagnostics, and analysis. It is envisioned as +core support code suitable for more specialized IRT packages to build upon. +Complete access to optimized C functions are made available with +@code{R_RegisterCCallable()}.") + (license license:gpl3+))) -- 2.20.1