From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55515) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyyhj-0008Eq-HM for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iyyhh-0001Av-JP for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:27 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36997) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyyhf-000153-SQ for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:23 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iyyhd-0008LM-Rh for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:21 -0500 Subject: [bug#39416] [PATCH 31/34] gnu: Add package r-cdm Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:56:23 +0100 Message-Id: <20200204135626.28261-31-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-cdm): New variable. --- gnu/packages/cran.scm | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index fe2ef959dd..396e9521a6 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -20130,3 +20130,41 @@ graphical model computation. See Epskamp et al. (2012) (description "Path diagrams and visual analysis of various SEM packages' output.") (license license:gpl2))) + +(define-public r-cdm + (package + (name "r-cdm") + (version "7.4-19") + (source + (origin + (method url-fetch) + (uri (cran-uri "CDM" version)) + (sha256 + (base32 + "1ln1r3rk004fmk55iy08bjh3vv4wnkb8zg2wj3r9rq7pi8jn8fv4")))) + (properties `((upstream-name . "CDM"))) + (build-system r-build-system) + (propagated-inputs + `(("r-mvtnorm" ,r-mvtnorm) + ("r-polycor" ,r-polycor) + ("r-rcpp" ,r-rcpp) + ("r-rcpparmadillo" ,r-rcpparmadillo))) + (home-page + "https://github.com/alexanderrobitzsch/CDM") + (synopsis "Cognitive Diagnosis Modeling") + (description + "Functions for cognitive diagnosis modeling and multidimensional item +response modeling for dichotomous and polytomous item responses. This package +enables the estimation of the DINA and DINO model (Junker & Sijtsma, 2001, +), the multiple group (polytomous) GDINA model +(de la Torre, 2011, ), the multiple choice DINA +model (de la Torre, 2009, ), the general +diagnostic model (GDM; von Davier, 2008, ), the +structured latent class model (SLCA; Formann, 1992, +) and regularized latent class analysis +(Chen, Li, Liu, & Ying, 2017, ). See George, +Robitzsch, Kiefer, Gross, and Uenlue (2017) for +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+))) -- 2.20.1