From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55468) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyyhh-0008DI-LE 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 1iyyhf-00016V-7c for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:25 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36998) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyyhf-00015X-2X 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 1iyyhf-0008Lm-15 for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:23 -0500 Subject: [bug#39416] [PATCH 34/34] gnu: Add package r-irtoys Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:56:26 +0100 Message-Id: <20200204135626.28261-34-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-irtoys): 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 7e466e3fdf..f83ac22d50 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -20233,3 +20233,35 @@ 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))) + +(define-public r-irtoys + (package + (name "r-irtoys") + (version "0.2.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "irtoys" version)) + (sha256 + (base32 + "0h6iiaxikhbxhbyksbjnb09qdxinlkwr2v9yzs5wslbni14paq5q")))) + (properties `((upstream-name . "irtoys"))) + (build-system r-build-system) + (propagated-inputs + `(("r-ltm" ,r-ltm) ("r-sm" ,r-sm))) + (home-page + "https://cran.r-project.org/package=irtoys") + (synopsis + "Collection of Functions Related to Item Response Theory (IRT)") + (description + "This package provides a collection of functions useful in learning and +practicing IRT, which can be combined into larger programs. Provides basic CTT +analysis, a simple common interface to the estimation of item parameters in IRT +models for binary responses with three different programs (ICL, BILOG-MG, and +ltm), ability estimation (MLE, BME, EAP, WLE, plausible values), item and +person fit statistics, scaling methods (MM, MS, Stocking-Lord, and the complete +Hebaera method), and a rich array of parametric and non-parametric (kernel) +plots. Estimates and plots Haberman's interaction model when all items are +dichotomously scored.") + (license license:gpl2+))) + -- 2.20.1