diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-04-27 11:39:30 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-04-27 12:03:10 +0200 |
commit | 9c4f118bf788eac0a9270318ddef5985349a3b35 (patch) | |
tree | 3a9f69ad97c4fb0cd25290d182539ae5d98a7274 /gnu/packages/cran.scm | |
parent | 747c8f2a20a547feeb5eccf8d637588a68525066 (diff) | |
download | guix-9c4f118bf788eac0a9270318ddef5985349a3b35.tar guix-9c4f118bf788eac0a9270318ddef5985349a3b35.tar.gz |
gnu: Add r-mitools.
* gnu/packages/cran.scm (r-mitools): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index ffa0baa0b8..2220254161 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -7193,6 +7193,26 @@ replicating the evaluation as many times as specified, and returning the results conveniently wrapped into a data frame.") (license license:gpl2+))) +(define-public r-mitools + (package + (name "r-mitools") + (version "2.4") + (source + (origin + (method url-fetch) + (uri (cran-uri "mitools" version)) + (sha256 + (base32 + "0c2x2n1p53lcw0vx4vmy5j7m2f95i7g2iwbryl89imr99rvz617j")))) + (build-system r-build-system) + (propagated-inputs `(("r-dbi" ,r-dbi))) + (home-page "https://cran.r-project.org/web/packages/mitools/") + (synopsis "Tools for multiple imputation of missing data") + (description + "This package provides tools to perform analyses and combine results from +multiple-imputation datasets.") + (license license:gpl2))) + (define-public r-magick (package (name "r-magick") |