From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55469) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyyhh-0008DN-MB for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iyyhe-000147-CS for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:25 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36994) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyyhe-00013q-8d for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:22 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iyyhe-0008LU-87 for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:22 -0500 Subject: [bug#39416] [PATCH 32/34] gnu: Add package r-tam Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:56:24 +0100 Message-Id: <20200204135626.28261-32-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-tam): New variable. --- gnu/packages/cran.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 396e9521a6..d7da059bee 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -20168,3 +20168,36 @@ further details on estimation and the package structure. For tutorials on how to use the CDM package see George and Robitzsch (2015, ) as well as Ravand and Robitzsch (2015).") (license license:gpl2+))) + +(define-public r-tam + (package + (name "r-tam") + (version "3.3-10") + (source + (origin + (method url-fetch) + (uri (cran-uri "TAM" version)) + (sha256 + (base32 + "1rkjp5x6wrk1dfspp1imvfals0wvy4w1wb8a5mhfbnilc7vgnlbq")))) + (properties `((upstream-name . "TAM"))) + (build-system r-build-system) + (propagated-inputs + `(("r-cdm" ,r-cdm) + ("r-rcpp" ,r-rcpp) + ("r-rcpparmadillo" ,r-rcpparmadillo))) + (home-page + "http://www.edmeasurementsurveys.com/TAM/Tutorials/") + (synopsis "Test Analysis Modules") + (description + "Includes marginal maximum likelihood estimation and joint maximum +likelihood estimation for unidimensional and multidimensional item response +models. The package functionality covers the Rasch model, 2PL model, 3PL +model, generalized partial credit model, multi-faceted Rasch model, nominal +item response model, structured latent class model, mixture distribution IRT +models, and located latent class models. Latent regression models and +plausible value imputation are also supported. For details see Adams, Wilson +and Wang, 1997 , Adams, Wilson and Wu, 1997 +, Formann, 1982 , +Formann, 1992 .") + (license license:gpl2+))) -- 2.20.1