diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-06-13 14:21:59 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-06-13 15:24:28 +0200 |
commit | bc0b78bf32055eb651fecd21b0a67d2b88a8a230 (patch) | |
tree | 4bff88f5deddaf4fdd7137ff1915a7073f23436b /gnu/packages | |
parent | 4cc33ce2b24334f84b75eeb135ecb946b054c3e2 (diff) | |
download | guix-bc0b78bf32055eb651fecd21b0a67d2b88a8a230.tar.gz guix-bc0b78bf32055eb651fecd21b0a67d2b88a8a230.zip |
gnu: r-mi: Update to 1.1.
* gnu/packages/cran.scm (r-mi): Update to 1.1.
[native-inputs]: Add r-knitr.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/cran.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index be1398f42c..22d7ff0fa6 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -24821,18 +24821,20 @@ Models.") (define-public r-mi (package (name "r-mi") - (version "1.0") + (version "1.1") (source (origin (method url-fetch) (uri (cran-uri "mi" version)) (sha256 (base32 - "1h47k5mpbvhid83277dvvj2di493bgzz9iarpyv3r30y219l7x1l")))) + "11f75ivnax6p48mp2pasprws488cm2daym87sw2mcrywvf89fyjd")))) (properties `((upstream-name . "mi"))) (build-system r-build-system) (propagated-inputs (list r-arm r-matrix)) + (native-inputs + (list r-knitr)) (home-page "http://www.stat.columbia.edu/~gelman/") (synopsis "Missing data imputation and model checking") (description |