>From 432030ab35533f974358b0fdd580c3f2658978b8 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 13:30:50 +0100 Subject: [v2 15/34] gnu: Add package r-mi * gnu/packages/cran.scm (r-mi): New variable. --- gnu/packages/cran.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index ad4cf0bb0b..25c3057bea 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19661,3 +19661,30 @@ 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