From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55122) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyyhV-0007s4-Mk 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 1iyyhU-0000aP-Ly for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:13 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36956) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyyhU-0000ZY-Hj for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:12 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iyyhU-0008Hp-Hj for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:12 -0500 Subject: [bug#39416] [PATCH 14/34] gnu: Add package r-ltm Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:56:06 +0100 Message-Id: <20200204135626.28261-14-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-ltm): 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 8606695b7c..73dc753945 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19633,3 +19633,30 @@ observation schemes are supported. Both Markov transition rates and the hidden Markov output process can be modelled in terms of covariates, which may be constant or piecewise-constant in time.") (license license:gpl2+))) + +(define-public r-ltm + (package + (name "r-ltm") + (version "1.1-1") + (source + (origin + (method url-fetch) + (uri (cran-uri "ltm" version)) + (sha256 + (base32 + "1qrgzwx5l58qf5rfp1knxc84r0g943q5sdr3ky74zzwpnmrf2vf7")))) + (properties `((upstream-name . "ltm"))) + (build-system r-build-system) + (propagated-inputs + `(("r-mass" ,r-mass) + ("r-msm" ,r-msm) + ("r-polycor" ,r-polycor))) + (home-page "https://github.com/drizopoulos/ltm") + (synopsis "Latent Trait Models under IRT") + (description + "Analysis of multivariate dichotomous and polytomous data using latent +trait models under the Item Response Theory approach. It includes the Rasch, +the Two-Parameter Logistic, the Birnbaum's Three-Parameter, the Graded +Response, and the Generalized Partial Credit Models.") + (license license:gpl2+))) + -- 2.20.1