From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55089) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyyhU-0007qr-VX for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iyyhT-0000WS-Rv for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:12 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36953) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyyhT-0000Vo-Ob for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:11 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iyyhT-0008HX-LP for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:11 -0500 Subject: [bug#39416] [PATCH 12/34] gnu: Add package r-polycor Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:56:04 +0100 Message-Id: <20200204135626.28261-12-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-polycor): 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 4b7ce21b1f..8c436d4c75 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19580,3 +19580,27 @@ et al (2016) . Vignette is Roberts et al (2019) .") (license license:expat))) +(define-public r-polycor + (package + (name "r-polycor") + (version "0.7-10") + (source + (origin + (method url-fetch) + (uri (cran-uri "polycor" version)) + (sha256 + (base32 + "0wzwzklflbhi8sv9m7ijwr16v9zmkk0j0v4pbcpf32f8lbn3psna")))) + (properties `((upstream-name . "polycor"))) + (build-system r-build-system) + (propagated-inputs + `(("r-matrix" ,r-matrix) ("r-mvtnorm" ,r-mvtnorm))) + (home-page + "https://r-forge.r-project.org/projects/polycor/") + (synopsis + "Polychoric and Polyserial Correlations") + (description + "Computes polychoric and polyserial correlations by quick \"two-step\" +methods or ML, optionally with standard errors; tetrachoric and biserial +correlations are special cases.") + (license license:gpl2+))) -- 2.20.1