From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55470) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyyhh-0008DP-Na 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-00014v-P0 for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:25 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36996) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyyhe-00014d-L8 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-0008Lc-Kv for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:22 -0500 Subject: [bug#39416] [PATCH 33/34] gnu: Add package r-erm Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:56:25 +0100 Message-Id: <20200204135626.28261-33-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-erm): New variable. --- gnu/packages/cran.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index d7da059bee..7e466e3fdf 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -20201,3 +20201,35 @@ and Wang, 1997 , Adams, Wilson and Wu, 1997 , Formann, 1982 , Formann, 1992 .") (license license:gpl2+))) + +(define-public r-erm + (package + (name "r-erm") + (version "1.0-0") + (source + (origin + (method url-fetch) + (uri (cran-uri "eRm" version)) + (sha256 + (base32 + "11p8j61arq1ih2qi33wf0442vcdbp3zvknzm5aknsifwl4mbzzly")))) + (properties `((upstream-name . "eRm"))) + (build-system r-build-system) + (propagated-inputs + `(("r-lattice" ,r-lattice) + ("r-mass" ,r-mass) + ("r-matrix" ,r-matrix))) + (native-inputs `(("gfortran" ,gfortran))) + (home-page + "https://cran.r-project.org/package=eRm") + (synopsis "Extended Rasch Modeling") + (description + "Fits Rasch models (RM), linear logistic test models (LLTM), rating scale +model (RSM), linear rating scale models (LRSM), partial credit models (PCM), +and linear partial credit models (LPCM). Missing values are allowed in the +data matrix. Additional features are the ML estimation of the person +parameters, Andersen's LR-test, item-specific Wald test, Martin-Loef-Test, +nonparametric Monte-Carlo Tests, itemfit and personfit statistics including +infit and outfit measures, ICC and other plots, automated stepwise item +elimination, simulation module for various binary data matrices.") + (license license:gpl3))) -- 2.20.1