From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55153) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyyhW-0007tO-EY for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iyyhV-0000br-4Q for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:14 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36958) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyyhV-0000bT-0o for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:13 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iyyhU-0008I0-Ud for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:12 -0500 Subject: [bug#39416] [PATCH 15/34] gnu: Add package r-mi Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:56:07 +0100 Message-Id: <20200204135626.28261-15-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-mi): New variable. --- gnu/packages/cran.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 73dc753945..b26b63afcb 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19660,3 +19660,25 @@ the Two-Parameter Logistic, the Birnbaum's Three-Parameter, the Graded Response, and the Generalized Partial Credit Models.") (license license:gpl2+))) +(define-public r-mi + (package + (name "r-mi") + (version "1.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "mi" version)) + (sha256 + (base32 + "1h47k5mpbvhid83277dvvj2di493bgzz9iarpyv3r30y219l7x1l")))) + (properties `((upstream-name . "mi"))) + (build-system r-build-system) + (propagated-inputs + `(("r-arm" ,r-arm) ("r-matrix" ,r-matrix))) + (home-page + "http://www.stat.columbia.edu/~gelman/") + (synopsis + "Missing Data Imputation and Model Checking") + (description + "The mi package provides functions for data manipulation, imputing missing values in an approximate Bayesian framework, diagnostics of the models used to generate the imputations, confidence-building mechanisms to validate some of the assumptions of the imputation algorithm, and functions to analyze multiply imputed data sets with the appropriate degree of sampling uncertainty.") + (license license:gpl2+))) -- 2.20.1