diff options
Diffstat (limited to 'gnu/packages/statistics.scm')
-rw-r--r-- | gnu/packages/statistics.scm | 343 |
1 files changed, 174 insertions, 169 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index ff0b9c2833..9fe5bbd95e 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -8,7 +8,7 @@ ;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com> ;;; Copyright © 2016, 2017 Raoul Bonnal <ilpuccio.febo@gmail.com> ;;; Copyright © 2017 Kyle Meyer <kyle@kyleam.com> -;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2017–2020, 2022 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2017 Alex Kost <alezost@gmail.com> ;;; Copyright © 2018 Alex Branham <alex.branham@gmail.com> ;;; Copyright © 2020 Tim Howes <timhowes@lavabit.com> @@ -68,6 +68,7 @@ #:use-module (gnu packages java) #:use-module (gnu packages javascript) #:use-module (gnu packages libffi) + #:use-module (gnu packages linux) #:use-module (gnu packages machine-learning) #:use-module (gnu packages maths) #:use-module (gnu packages multiprecision) @@ -150,7 +151,7 @@ be output in text, PostScript, PDF or HTML.") (define-public jags (package (name "jags") - (version "4.3.0") + (version "4.3.1") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/mcmc-jags/JAGS/" @@ -158,7 +159,7 @@ be output in text, PostScript, PDF or HTML.") "JAGS-" version ".tar.gz")) (sha256 (base32 - "1z3icccg2ic56vmhyrpinlsvpq7kcaflk1731rgpvz9bk1bxvica")))) + "0aa2w4g5057vn1qjp954s2kwxfmy1h7p5yn56fyi7sz9nmaq69gr")))) (build-system gnu-build-system) (home-page "http://mcmc-jags.sourceforge.net/") (native-inputs @@ -203,7 +204,7 @@ This package also provides @command{xls2csv} to export Excel files to CSV.") (define r-with-tests (package (name "r-with-tests") - (version "4.1.2") + (version "4.2.0") (source (origin (method url-fetch) (uri (string-append "mirror://cran/src/base/R-" @@ -211,7 +212,7 @@ This package also provides @command{xls2csv} to export Excel files to CSV.") version ".tar.gz")) (sha256 (base32 - "1brqmc7mmb0z94kcs4crgl6v9a6sxhm9fm3y177d81vjkxg24di0")))) + "123l17sv3smh5cz0vrjxjj8jf81bb860kah6iww9bl3skdqvgsiq")))) (build-system gnu-build-system) (arguments `(#:disallowed-references (,tzdata-for-tests) @@ -237,6 +238,16 @@ This package also provides @command{xls2csv} to export Excel files to CSV.") (("uname") uname-bin)) (substitute* "src/unix/sys-std.c" (("rm -Rf ") (string-append rm-bin " -Rf ")))))) + (add-after 'unpack 'patch-tests + (lambda _ + ;; This is needed because R is run during the check phase and + ;; /bin/sh doesn't exist in the build container. + (substitute* "src/unix/sys-unix.c" + (("\"/bin/sh\"") + (string-append "\"" (which "sh") "\""))) + ;; This test fails because line numbers are off by two. + (substitute* "tests/reg-packages.R" + (("8 <= print" m) (string-append "## " m))))) (add-after 'unpack 'build-reproducibly (lambda _ ;; The documentation contains time stamps to demonstrate @@ -315,6 +326,9 @@ as.POSIXct(if (\"\" != Sys.getenv(\"SOURCE_DATE_EPOCH\")) {\ (setenv "TZDIR" (search-input-directory inputs "share/zoneinfo")))) + (add-before 'check 'set-home + ;; Some tests require that HOME be set. + (lambda _ (setenv "HOME" "/tmp"))) (add-after 'build 'make-info (lambda _ (invoke "make" "info"))) (add-after 'build 'install-info @@ -493,14 +507,14 @@ D.V. Hinkley (1997, CUP), originally written by Angelo Canty for S.") (define-public r-mass (package (name "r-mass") - (version "7.3-55") + (version "7.3-57") (source (origin (method url-fetch) (uri (cran-uri "MASS" version)) (sha256 (base32 - "191i1iylvh2w2hi99fnm06731lma7z5snpjknfff1m9ziyy9qab5")))) + "13asg609szqq8d1a4ybr508qcanr9gvqd439vfras6mw0l0qi2xx")))) (properties `((upstream-name . "MASS"))) (build-system r-build-system) (home-page "http://www.stats.ox.ac.uk/pub/MASS4/") @@ -536,14 +550,14 @@ k-nearest neighbour, Learning Vector Quantization and Self-Organizing Maps.") (define-public r-cluster (package (name "r-cluster") - (version "2.1.2") + (version "2.1.3") (source (origin (method url-fetch) (uri (cran-uri "cluster" version)) (sha256 (base32 - "168l653ygkg21fwrqrf7lsqi5p6jzhgmcvhrwv7lznkdzdhag2jw")))) + "1ab466lniykz2a6kdnrbkk7hwair79xfmy6cqvhc8d6nana7mbd3")))) (build-system r-build-system) (native-inputs (list gfortran)) @@ -641,14 +655,14 @@ also flexible enough to handle most nonstandard requirements.") (define-public r-matrix (package (name "r-matrix") - (version "1.4-0") + (version "1.4-1") (source (origin (method url-fetch) (uri (cran-uri "Matrix" version)) (sha256 (base32 - "1xh62bwcly1blpvnagbhjym1qgw87yir3c72ylhvcla05rq67d62")))) + "0zigzgx4dv7ydcyppr5ypna9dxi9vzi944pgy07jnj4l3qflzcj2")))) (properties `((upstream-name . "Matrix"))) (build-system r-build-system) (propagated-inputs @@ -663,13 +677,13 @@ and operations on them using LAPACK and SuiteSparse.") (define-public r-nlme (package (name "r-nlme") - (version "3.1-155") + (version "3.1-157") (source (origin (method url-fetch) (uri (cran-uri "nlme" version)) (sha256 - (base32 "0kzzpl63l298yy18x62ypgbhdw61fgm30lc4nlhjjhjj5220yfcz")))) + (base32 "0v6rw6d7mk1szi5bgs5m91k76hgwcb7r704xaypvlv6bkmra5wnx")))) (build-system r-build-system) (propagated-inputs (list r-lattice)) @@ -685,13 +699,13 @@ nonlinear mixed-effects models.") (define-public r-mgcv (package (name "r-mgcv") - (version "1.8-39") + (version "1.8-40") (source (origin (method url-fetch) (uri (cran-uri "mgcv" version)) (sha256 - (base32 "15h1k9qyn8s8xy4x2361mj42vdq8ml5xskzqpkc45zj1a3gss6w4")))) + (base32 "19g4lzxjw931s68ni7ii81jwi25sf19qs8nlw8r94crvdhk2grnv")))) (build-system r-build-system) (propagated-inputs (list r-matrix r-nlme)) @@ -912,13 +926,13 @@ additions (tooltips, bipartite diagram type).") (define-public r-dichromat (package (name "r-dichromat") - (version "2.0-0") + (version "2.0-0.1") (source (origin (method url-fetch) (uri (cran-uri "dichromat" version)) (sha256 - (base32 "1l8db1nk29ccqg3mkbafvfiw0775iq4gapysf88xq2zp6spiw59i")))) + (base32 "10b0avdar3d1y8x2ya3x5kqxqg0z0mq872hdzvc1nn4amplph1d1")))) (build-system r-build-system) (home-page "https://cran.r-project.org/web/packages/dichromat") (synopsis "Color schemes for dichromats") @@ -995,13 +1009,13 @@ algorithms.") (define-public r-magrittr (package (name "r-magrittr") - (version "2.0.2") + (version "2.0.3") (source (origin (method url-fetch) (uri (cran-uri "magrittr" version)) (sha256 - (base32 "19k3q76qlri459iyyfgn9gl0w9lnv9v604yhpbc94nx71l6zvrkv")))) + (base32 "1ljmrrm36y31db5z4cl863ap8k3jcaxk0qzy3f0cn6iag4zzigx2")))) (build-system r-build-system) ;; knitr needs magrittr #; @@ -1064,13 +1078,13 @@ in which the whole-plots or split-plots or both can be freely exchangeable.") (define-public r-plyr (package (name "r-plyr") - (version "1.8.6") + (version "1.8.7") (source (origin (method url-fetch) (uri (cran-uri "plyr" version)) (sha256 - (base32 "11sjjdn146w95s1vsfmmgdls082cbnm1slv98xvyjhsl2mpx4mga")))) + (base32 "0zz88q055c38b9xqzfg1mwm7ikxzlyx3pnk16sfa8dbh2pqxm7vx")))) (build-system r-build-system) (propagated-inputs (list r-rcpp)) (home-page "http://had.co.nz/plyr") @@ -1104,13 +1118,13 @@ prototype-based, rather than class-based object oriented ideas.") (define-public r-rcolorbrewer (package (name "r-rcolorbrewer") - (version "1.1-2") + (version "1.1-3") (source (origin (method url-fetch) (uri (cran-uri "RColorBrewer" version)) (sha256 - (base32 "1pfcl8z1pnsssfaaz9dvdckyfnnc6rcq56dhislbf571hhg7isgk")))) + (base32 "1h0s0f4vvlk40cagp3qwhd0layzkjcnqkiwjyhwqns257i1gahjg")))) (build-system r-build-system) (home-page "https://cran.r-project.org/web/packages/RColorBrewer") (synopsis "ColorBrewer palettes") @@ -1215,13 +1229,13 @@ using just two functions: melt and dcast (or acast).") (define-public r-ggplot2 (package (name "r-ggplot2") - (version "3.3.5") + (version "3.3.6") (source (origin (method url-fetch) (uri (cran-uri "ggplot2" version)) (sha256 - (base32 "1si46bf9p09qzs208hqffwcb40305p361whmwhc1pwrsmx7jjxdh")))) + (base32 "1aa377jdfajj8ld2fh159y8havlibsr4pjisf6mkzk8g5awlxjxz")))) (build-system r-build-system) (propagated-inputs (list r-digest @@ -1427,13 +1441,13 @@ adapted for other output formats, such as HTML or LaTeX.") (define-public r-formatr (package (name "r-formatr") - (version "1.11") + (version "1.12") (source (origin (method url-fetch) (uri (cran-uri "formatR" version)) (sha256 (base32 - "0353aj975mj0yjc91z76bbfy86y7d5cvlqqyfr93cdng14nnd0dx")))) + "12wch1774113nlrc0lihfn5rbh4hln9sg6dv6zc2bvyb8fzyyllb")))) (build-system r-build-system) (native-inputs (list r-knitr)) @@ -1537,13 +1551,13 @@ emitter (http://pyyaml.org/wiki/LibYAML) for R.") (define-public r-knitr (package (name "r-knitr") - (version "1.37") + (version "1.39") (source (origin (method url-fetch) (uri (cran-uri "knitr" version)) (sha256 (base32 - "0qyp78v3hz4qimlc3w4hj5dzp44n2w085ay0l1zvxsxs9142mk9r")))) + "0wmcj6xv0bcqzmp5vm8s574rfx366rkgm03lgyppk9ywxgnna6n9")))) (build-system r-build-system) (propagated-inputs (list r-evaluate r-highr r-stringr r-xfun r-yaml)) @@ -1640,13 +1654,13 @@ you call it again with the same arguments it returns the pre-computed value.") (define-public r-crayon (package (name "r-crayon") - (version "1.5.0") + (version "1.5.1") (source (origin (method url-fetch) (uri (cran-uri "crayon" version)) (sha256 (base32 - "0m3rckps0c8v14h9vqnr81acv0az1jqwlsradcbkb2ndvnpjq4j4")))) + "1yaxwkmvjaillngfafgapakqjl6s86ly3j338f78xs58g0xwf9f0")))) (build-system r-build-system) (home-page "https://github.com/gaborcsardi/crayon") (synopsis "Colored terminal output for R") @@ -1680,13 +1694,13 @@ R packages that praise their users.") (define-public r-testthat (package (name "r-testthat") - (version "3.1.2") + (version "3.1.4") (source (origin (method url-fetch) (uri (cran-uri "testthat" version)) (sha256 (base32 - "0ndnmv3gbhlsyqya382wqfkkhlrgpdjmh7mymsv6ja52ihbachgd")))) + "02cwdix7v8zsvcmcl3h5hfi66w1ln9qi60risf5nl62f3c1yqzm4")))) (build-system r-build-system) (propagated-inputs (list r-brio @@ -1760,14 +1774,14 @@ like tidy evaluation.") (define-public r-tibble (package (name "r-tibble") - (version "3.1.6") + (version "3.1.7") (source (origin (method url-fetch) (uri (cran-uri "tibble" version)) (sha256 (base32 - "14l2i6ri3v5y0h8g0ahc4kz0pdqsp5yabxk2w8wavss6y44xjcsv")))) + "0wn8j7slfqrdl126g536sg1xkrvjd9rlsk0bjqk3b03nyj8hi9g1")))) (build-system r-build-system) (propagated-inputs (list r-ellipsis @@ -1790,13 +1804,13 @@ and printing capabilities than traditional data frames.") (define-public r-dplyr (package (name "r-dplyr") - (version "1.0.8") + (version "1.0.9") (source (origin (method url-fetch) (uri (cran-uri "dplyr" version)) (sha256 (base32 - "0xb04ckp29pva1h2rfahqhmk9gcwp2dbbx3av8ip40v7dnha6siv")))) + "0sxl9yzccsdhlrrwj26lmh9frsijxyfaf7csv8mf7d0q4qqzgqg2")))) (build-system r-build-system) (propagated-inputs (list r-generics @@ -1929,13 +1943,13 @@ and density estimation.") (define-public r-chron (package (name "r-chron") - (version "2.3-56") + (version "2.3-57") (source (origin (method url-fetch) (uri (cran-uri "chron" version)) (sha256 (base32 - "0p9zz96jfyf139924hdwkzhr8knkjvx6547ac53rknm3a6wwngl6")))) + "0cn2367mw27qf2nj8d1i182ns3nlzlkgix6c18mc3byihimdhicn")))) (build-system r-build-system) (home-page "https://cran.r-project.org/web/packages/chron") (synopsis "Chronological R objects which can handle dates and times") @@ -2019,9 +2033,6 @@ building design matrices.") ;; and is covered by the PSFL. (license (list license:bsd-2 license:psfl)))) -(define-public python2-patsy - (package-with-python2 python-patsy)) - (define-public python-statsmodels (package (name "python-statsmodels") @@ -2068,27 +2079,6 @@ statistical computations including descriptive statistics and estimation and inference for statistical models.") (license license:bsd-3))) -(define-public python2-statsmodels - (let ((stats (package-with-python2 python-statsmodels))) - (package/inherit stats - ;; Version 0.11.1 and later does not work with Python 2. It may build - ;; fine but loading modules fails. - (version "0.9.0") - (source - (origin - (method url-fetch) - (uri (pypi-uri "statsmodels" version)) - (sha256 - (base32 - "0fxs8a7sp4d7jvqlm36yi45i2d28kjfvraf9q8i9jr1chhxgjqb4")))) - (propagated-inputs - `(("python2-pytz" ,python2-pytz) - ("python2-numpy" ,python2-numpy) - ("python2-scipy" ,python2-scipy) - ("python2-pandas" ,python2-pandas) - ("python2-patsy" ,python2-patsy) - ("python2-matplotlib" ,python2-matplotlib)))))) - (define-public r-coda (package (name "r-coda") @@ -2113,14 +2103,14 @@ chain.") (define-public r-ade4 (package (name "r-ade4") - (version "1.7-18") + (version "1.7-19") (source (origin (method url-fetch) (uri (cran-uri "ade4" version)) (sha256 (base32 - "09f5kh2mwygqpnvf53k0r54k0cvaafxm9x4nm819gwv05k2g9dpc")))) + "1vv5y6badksnpjb3bcphhjdzzh6i2grmwnsalcf2cfpr3y412lf8")))) (build-system r-build-system) (propagated-inputs (list r-mass r-pixmap r-sp)) @@ -2245,17 +2235,19 @@ R version.") (define-public r-checkmate (package (name "r-checkmate") - (version "2.0.0") + (version "2.1.0") (source (origin (method url-fetch) (uri (cran-uri "checkmate" version)) (sha256 (base32 - "193gkifr9spp0x0rwnjq1spdhjkfkh4mv27iklskcj604075phhd")))) + "1ii11lypfz8qwswaiagaxnfq6wqkg3cq4j7k9q40sdd0cd8xv15p")))) (build-system r-build-system) (propagated-inputs (list r-backports)) + (native-inputs + (list r-knitr)) (home-page "https://github.com/mllg/checkmate") (synopsis "Fast and versatile argument checks") (description @@ -2310,14 +2302,14 @@ or source files in a key-value fashion.") (define-public r-batchjobs (package (name "r-batchjobs") - (version "1.8") + (version "1.9") (source (origin (method url-fetch) (uri (cran-uri "BatchJobs" version)) (sha256 (base32 - "1zz4sspj596pijxlz321g0jy2rg9ki83j6fihbwisjwr66p2vk1m")))) + "0xsw25j2ks9bqgz189qdcyj8hzz93snknlik83nj04s6vy0w7aax")))) (properties `((upstream-name . "BatchJobs"))) (build-system r-build-system) (propagated-inputs @@ -2406,16 +2398,17 @@ tables, autolinks and strikethrough text.") (define-public r-roxygen2 (package (name "r-roxygen2") - (version "7.1.2") + (version "7.2.0") (source (origin (method url-fetch) (uri (cran-uri "roxygen2" version)) (sha256 (base32 - "1zf55wywlpy7mk7zfyi3s9fhhg1m9kvafzj46iqw5cbvnlg3ssdk")))) + "12s436jn7aagjpc2lnlrhzwqgsdl8lbbwhkddih6rnxrczawzgrf")))) (build-system r-build-system) (propagated-inputs (list r-brew + r-cli r-commonmark r-cpp11 r-desc @@ -2427,6 +2420,7 @@ tables, autolinks and strikethrough text.") r-rlang r-stringi r-stringr + r-withr r-xml2)) (native-inputs (list r-knitr)) @@ -2440,14 +2434,14 @@ collation, and NAMESPACE files.") (define-public r-openssl (package (name "r-openssl") - (version "2.0.0") + (version "2.0.2") (source (origin (method url-fetch) (uri (cran-uri "openssl" version)) (sha256 (base32 - "0jsnzxa72bfxsdai25xyklmmrraaf9yv2nmqmf0bgzrkbzkgsa7b")))) + "1i7il5kkr1yp2xk8zw7max4llga4hfz0cx9sx0v2xnb9pg4ksbc6")))) (build-system r-build-system) (arguments (list @@ -2482,13 +2476,13 @@ integers.") (define-public r-httr (package (name "r-httr") - (version "1.4.2") + (version "1.4.3") (source (origin (method url-fetch) (uri (cran-uri "httr" version)) (sha256 (base32 - "1y8y1g1dkgv9jafrk1kj6pzxpw95c0rr9lplblfq2byrs1pfsas6")))) + "0skwi501rzndywn81704d68n1l6lrvqilf91q08cjfhpjvx171ls")))) (build-system r-build-system) (propagated-inputs (list r-curl r-jsonlite r-openssl r-mime r-r6)) @@ -2506,13 +2500,13 @@ functions make it easy to control additional request components.") (define-public r-git2r (package (name "r-git2r") - (version "0.29.0") + (version "0.30.1") (source (origin (method url-fetch) (uri (cran-uri "git2r" version)) (sha256 (base32 - "13nlrhma6kavvhranb43w3003vadfkyrn2f4l3r63iqavj0s3xzq")))) + "0h58djc9cim8iskkyhdxllbpf6ycl5zj9g4fp70k57k5qzfi7nc5")))) (build-system r-build-system) (inputs (list libgit2 zlib)) @@ -2721,13 +2715,13 @@ well as additional utilities such as panel and axis annotation functions.") (define-public r-rcpparmadillo (package (name "r-rcpparmadillo") - (version "0.10.8.1.0") + (version "0.11.1.1.0") (source (origin (method url-fetch) (uri (cran-uri "RcppArmadillo" version)) (sha256 (base32 - "1x7mk85rc4pmn17nm63k6rbkarsmghjapznias268545nfpib97g")))) + "15s8lx3s0g9npwmys509ahrqc786lg2cid21civ3wm219i4gq2zb")))) (properties `((upstream-name . "RcppArmadillo"))) (build-system r-build-system) (propagated-inputs @@ -2790,14 +2784,14 @@ encoder/decoder, round-off-error-free sum and cumsum, etc.") (define-public r-rprojroot (package (name "r-rprojroot") - (version "2.0.2") + (version "2.0.3") (source (origin (method url-fetch) (uri (cran-uri "rprojroot" version)) (sha256 (base32 - "07wy07yhms8zln9qb0iwx69dq08h4lrdi8kavjcplfxcskq638az")))) + "15zq606s544wmbvk5dw13xq0sspr9dsxyxlvzvn0r48f8x3l4q2h")))) (build-system r-build-system) (native-inputs (list r-knitr)) @@ -2813,13 +2807,13 @@ certain criterion, e.g., it contains a certain regular file.") (define-public r-rmarkdown (package (name "r-rmarkdown") - (version "2.13") + (version "2.14") (source (origin (method url-fetch) (uri (cran-uri "rmarkdown" version)) (sha256 - (base32 "0i07p3dxxv2s2a4xmyhc3qxmwg86vakniq5jjjclmcq2sahvw5vj")))) + (base32 "081j1hpxcwadn606ch5lq279s66c1b0f0mjvap7yimnrljpigv79")))) (properties `((upstream-name . "rmarkdown"))) (build-system r-build-system) (propagated-inputs @@ -2907,13 +2901,13 @@ that package, other packages are unaffected.") (define-public r-blob (package (name "r-blob") - (version "1.2.2") + (version "1.2.3") (source (origin (method url-fetch) (uri (cran-uri "blob" version)) (sha256 (base32 - "1yn7f13icaix0apxp4drnciwdn8bx8xmbd129jd7ck4rcly0axj9")))) + "06v3ldnmf6f99riym1cjbm5rklxmg6cpdixm6armc6rxxs1xd21d")))) (build-system r-build-system) (propagated-inputs (list r-rlang r-vctrs)) @@ -2928,13 +2922,13 @@ a column in data frame.") (define-public r-rsqlite (package (name "r-rsqlite") - (version "2.2.10") + (version "2.2.14") (source (origin (method url-fetch) (uri (cran-uri "RSQLite" version)) (sha256 (base32 - "1a00i24g4d4gvp7qmivpyfm24yfz4w4wsy2kplgfz0i0j0rzzbh6")))) + "0z307d7rx7blh2apc9dbw9vgad2ldbf9vbdjhmwlj0mwbs3nmqra")))) (properties `((upstream-name . "RSQLite"))) (build-system r-build-system) (propagated-inputs @@ -2958,15 +2952,13 @@ engine (version 3.8.8.2) is included.") (define-public r-rcurl (package (name "r-rcurl") - (version "1.95-0.1.2") + (version "1.98-1.6") (source (origin (method url-fetch) - (uri (string-append "https://www.bioconductor.org/packages/" - "release/extra/src/" - "contrib/RCurl_" version ".tar.gz")) + (uri (cran-uri "RCurl" version)) (sha256 (base32 - "0l7qi45jxlf898n0jazabnam1yyczvqfdknd00bdirhhiplpd1sc")))) + "18nif4phr5vfhri07mnchiym0qfm31ak9nxvb2v9ac84mij6idbc")))) (properties `((upstream-name . "RCurl"))) (build-system r-build-system) (arguments @@ -2979,10 +2971,11 @@ engine (version 3.8.8.2) is included.") (string-append "\ certs = Sys.getenv(\"CURL_CA_BUNDLE\") if (certs != \"\") { .opts = merge.list(.opts, list(cainfo=certs)) } -" m))) - #t))))) +" m)))))))) + (native-inputs + (list libxml2)) (inputs - `(("libcurl" ,curl))) + (list curl)) (propagated-inputs (list r-bitops)) (home-page "http://www.omegahat.net/RCurl") @@ -3122,14 +3115,14 @@ statements.") (define-public r-segmented (package (name "r-segmented") - (version "1.4-0") + (version "1.5-0") (source (origin (method url-fetch) (uri (cran-uri "segmented" version)) (sha256 (base32 - "0xn28gyqzmyz0kv352rkkznbj806arxj2am5a9gqsn1qzv9l0s9h")))) + "1d8np6psnmqyq3bxxd17ivp6pq6p8rx5hal4bgz8ckc4d1i9lp6n")))) (build-system r-build-system) (propagated-inputs (list r-mass)) (home-page "https://cran.r-project.org/web/packages/segmented") @@ -3565,13 +3558,13 @@ using the multicore functionality of the parallel package.") "datatables-extensions/Select")))) (package (name "r-dt") - (version "0.21") + (version "0.23") (source (origin (method url-fetch) (uri (cran-uri "DT" version)) (sha256 (base32 - "1yhlph9h8z78wqjddv598l2xrqpp605d70cxfb69m53hanw4hmzn")) + "0w6wgiwa3zgldp175a3q7zfw853xqc7mfj34n6hja48ln7yf42in")) (modules '((guix build utils))) (snippet '(for-each delete-file @@ -3716,13 +3709,13 @@ analysis of large sparse or dense matrices.") (define-public r-glmnet (package (name "r-glmnet") - (version "4.1-3") + (version "4.1-4") (source (origin (method url-fetch) (uri (cran-uri "glmnet" version)) (sha256 - (base32 "0nij8v44b5dvp1vc843sfkl9ds83n6g687m2p37q1rdn82m3bg34")))) + (base32 "1y80a3b5s24ywhlil3r7b3a0vs9j59d7jkxrqa8zz09x1c5ggc7n")))) (build-system r-build-system) (native-inputs (list gfortran r-knitr)) @@ -3817,14 +3810,14 @@ the way current RNG settings can be changed.") (define-public r-rtsne (package (name "r-rtsne") - (version "0.15") + (version "0.16") (source (origin (method url-fetch) (uri (cran-uri "Rtsne" version)) (sha256 (base32 - "0v17vxizrs1msay24xl2bckfajr2c82wpqj07lyssbrq197nwdsn")))) + "1mgviwrqwapn8w7rq0sjxca5vi7ylgmm876ijwp22a3chbf5m82j")))) (properties `((upstream-name . "Rtsne"))) (build-system r-build-system) (propagated-inputs @@ -3905,17 +3898,19 @@ message passing.") (define-public r-bigmemory (package (name "r-bigmemory") - (version "4.5.36") + (version "4.6.1") (source (origin (method url-fetch) (uri (cran-uri "bigmemory" version)) (sha256 (base32 - "03pg8mxdc7q0249visjmc8bc3xmwxsfg3i2n6higicj4cfz7zihq")))) + "0hainqkm7cs8gjm42vkpdrr0284smsbwdfackp34yv7dhxy1avmm")))) (build-system r-build-system) (propagated-inputs - (list r-bh r-rcpp r-bigmemory-sri)) + (list r-bh r-bigmemory-sri r-rcpp r-uuid)) + (inputs + (list `(,util-linux "lib"))) ;for -luuid (home-page "http://www.bigmemory.org") (synopsis "Manage large matrices with shared memory or memory-mapped files") (description "This package provides methods to create, store, access, and @@ -4075,13 +4070,13 @@ t-probabilities, quantiles, random deviates and densities.") (define-public r-matrixstats (package (name "r-matrixstats") - (version "0.61.0") + (version "0.62.0") (source (origin (method url-fetch) (uri (cran-uri "matrixStats" version)) (sha256 (base32 - "16pxsba5i51ifbbgvxln2w6nigbwd3290b2ckgzn5bmib7nc1lyv")))) + "1jjfsi5vzx6js7phlnd3v64fd05fg0jyz8iq5pivy36jdmmh3ql5")))) (properties `((upstream-name . "matrixStats"))) (build-system r-build-system) (arguments @@ -4466,13 +4461,13 @@ package instead.") (define-public r-hmisc (package (name "r-hmisc") - (version "4.6-0") + (version "4.7-0") (source (origin (method url-fetch) (uri (cran-uri "Hmisc" version)) (sha256 - (base32 "1bd1c8sichyijprfpnqj5g72nmgs9jvi0zyw8v4nsg1kn83fj71c")))) + (base32 "1gc71wg6f17x6nriphs1kk39ix7lpqk32clk1qshqy8wl6f2vv19")))) (properties `((upstream-name . "Hmisc"))) (build-system r-build-system) (native-inputs @@ -4573,14 +4568,14 @@ existing packages provide.") (define-public r-sfsmisc (package (name "r-sfsmisc") - (version "1.1-12") + (version "1.1-13") (source (origin (method url-fetch) (uri (cran-uri "sfsmisc" version)) (sha256 (base32 - "10h76pgzcxv1y5pkmba9607lvjrsyq62sq63s2n7ry7z5151h4lv")))) + "0622yf4fl1b1zm988dfwdrhq7pg0rllhm8wz1pqdmp72glsi05x8")))) (build-system r-build-system) (home-page "https://cran.r-project.org/web/packages/sfsmisc") (synopsis "Utilities from \"Seminar fuer Statistik\" ETH Zurich") @@ -4592,14 +4587,14 @@ Zurich, including many that are related to graphics.") (define-public r-gtools (package (name "r-gtools") - (version "3.9.2") + (version "3.9.2.1") (source (origin (method url-fetch) (uri (cran-uri "gtools" version)) (sha256 (base32 - "0lx97yafrms2mjym8rhcq5586z7s1iqgy8qfm4px3xl1yn5qkc83")))) + "0pxg0ang9q26hlwgf53pp1hq6rlarq5rnrrr9dl14f5kgfnynpzc")))) (build-system r-build-system) (home-page "https://cran.r-project.org/web/packages/gtools") (synopsis "Various R programming tools") @@ -4614,14 +4609,14 @@ tests for whether a value is missing, empty or contains only @code{NA} and (define-public r-gdata (package (name "r-gdata") - (version "2.18.0") + (version "2.18.0.1") (source (origin (method url-fetch) (uri (cran-uri "gdata" version)) (sha256 (base32 - "0zwdj7lscgxr8r62ii8hbdh4mb7sa9w4f5nv32zzrxdvymcpya2b")))) + "1n9jw136kk5ld27qvny7cx2s8l34jdgmzlx40x62mmcqjddksbsy")))) (build-system r-build-system) (inputs (list perl)) @@ -4654,14 +4649,14 @@ including: (define-public r-gplots (package (name "r-gplots") - (version "3.1.1") + (version "3.1.3") (source (origin (method url-fetch) (uri (cran-uri "gplots" version)) (sha256 (base32 - "0f8khaymz383w2ksnk80d4kpnvgmdk37pbycpsnl2vabaz11kbpr")))) + "05k7a8x62qs5g6mps62vb3mwjdnfjzvjb20yws3x0r2j42g3p1cz")))) (build-system r-build-system) (propagated-inputs (list r-catools r-gtools r-kernsmooth)) @@ -4997,14 +4992,14 @@ mixture models.") (define-public r-lars (package (name "r-lars") - (version "1.2") + (version "1.3") (source (origin (method url-fetch) (uri (cran-uri "lars" version)) (sha256 (base32 - "0blj44wqrx6lmym1m9v6wkz8zxzbjax2zl6swgdczci0ixb5nx34")))) + "17al1g0pvfz9frs2kxicqr8dyp7ciz3x87yx2l4lqd53ls6nm7n6")))) (build-system r-build-system) (inputs (list gfortran)) @@ -5044,14 +5039,14 @@ perform @dfn{independent component analysis} (ICA) and projection pursuit.") (define-public r-randomforest (package (name "r-randomforest") - (version "4.7-1") + (version "4.7-1.1") (source (origin (method url-fetch) (uri (cran-uri "randomForest" version)) (sha256 (base32 - "04q6gb917md4yw837cf9vlx1q8ljl06jw7yhykzb6nl47w55jnkq")))) + "1micz9794j7xmj755ln2692rzip8azndflxgdg6xn3j86issi7pm")))) (properties `((upstream-name . "randomForest"))) (build-system r-build-system) (home-page "https://www.stat.berkeley.edu/~breiman/RandomForests/") @@ -5130,14 +5125,14 @@ models, generalized linear models and model-based clustering.") (define-public r-mclust (package (name "r-mclust") - (version "5.4.9") + (version "5.4.10") (source (origin (method url-fetch) (uri (cran-uri "mclust" version)) (sha256 (base32 - "0s4mva0n04f3pl41msmzhlh7pnk0zbmf06n826smxkw6mz327wb5")))) + "0wh6nsbma4b0wsmqm2ynbznl2wlwdly4vg583f6z0zd1qkrvn6ra")))) (build-system r-build-system) (native-inputs (list gfortran r-knitr)) @@ -5176,14 +5171,14 @@ data for species delimitation, nearest neighbor based noise detection.") (define-public r-deoptimr (package (name "r-deoptimr") - (version "1.0-10") + (version "1.0-11") (source (origin (method url-fetch) (uri (cran-uri "DEoptimR" version)) (sha256 (base32 - "1m9ag073i7pbxsy74vkj0n4hjn6vmyc4n0k78nmslwwwmjh7nkvp")))) + "0nqn12n5qlyk2zsgh57dvizy5z71xgqrhrcqj6lbzybm9c7v6x0q")))) (properties `((upstream-name . "DEoptimR"))) (build-system r-build-system) (home-page "https://cran.r-project.org/web/packages/DEoptimR") @@ -5199,14 +5194,14 @@ can be efficiently implemented directly in the R language.") (define-public r-robustbase (package (name "r-robustbase") - (version "0.93-9") + (version "0.95-0") (source (origin (method url-fetch) (uri (cran-uri "robustbase" version)) (sha256 (base32 - "0i9wf4aq8zpn2np6z2rjja21ks9n740dgkiv0qfwdzk3ah3vapyp")))) + "094pxwp78bmqyn6vncyzrazqxnn8abqsbzhlcq44avfz8qffmyjw")))) (build-system r-build-system) (native-inputs (list gfortran)) @@ -5222,14 +5217,14 @@ regression methodology including model selections and multivariate statistics.") (define-public r-pcapp (package (name "r-pcapp") - (version "1.9-74") + (version "2.0-1") (source (origin (method url-fetch) (uri (cran-uri "pcaPP" version)) (sha256 (base32 - "1dlrz5plb8b89vr3j6sn9jwryyhcwflqkiilxkybbr379m1pp0sh")))) + "06hjhr0dzdp5yhd421q9scbv6w6bchicbn2bl7am490ncgrf544n")))) (properties `((upstream-name . "pcaPP"))) (build-system r-build-system) (propagated-inputs @@ -5244,14 +5239,14 @@ analysis} (PCA) by projection pursuit.") (define-public r-rrcov (package (name "r-rrcov") - (version "1.6-2") + (version "1.7-0") (source (origin (method url-fetch) (uri (cran-uri "rrcov" version)) (sha256 (base32 - "18x8y2b9n2plpn4086nkjk9c27p7gb78kbrv5pj9r8fb0idl5rn5")))) + "1z98j9973hl19b70dcwfcf55ifxr2a9v53daaq2sagynh95aik6b")))) (build-system r-build-system) (propagated-inputs (list r-lattice r-mvtnorm r-pcapp r-robustbase)) @@ -5439,14 +5434,14 @@ based on an interface to Fortran implementations by M. J. D. Powell.") (define-public r-rcppeigen (package (name "r-rcppeigen") - (version "0.3.3.9.1") + (version "0.3.3.9.2") (source (origin (method url-fetch) (uri (cran-uri "RcppEigen" version)) (sha256 (base32 - "0qp9gypar280lm84pc8w0fxw4jgwqygwi3qnl5sl52kpkcj8c14a")))) + "14ylrq7mmylmi513zkwyqqy43kqbz95fc6fzpagqvyx6snaffir5")))) (properties `((upstream-name . "RcppEigen"))) (build-system r-build-system) (propagated-inputs @@ -5507,18 +5502,24 @@ using modular prediction and response module classes.") (define-public r-quantreg (package (name "r-quantreg") - (version "5.88") + (version "5.93") (source (origin (method url-fetch) (uri (cran-uri "quantreg" version)) (sha256 - (base32 "0grsha18zkiil0qnxc1d7kc3w26i6aaa4av9n9ahdm8yf59yah0r")))) + (base32 "0fg5x6sa8mz2hh9nak0wajh4l6h03x216462vs94rgq0ln24kafl")))) (build-system r-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'set-HOME + (lambda _ (setenv "HOME" "/tmp")))))) (native-inputs - (list gfortran)) + (list gfortran + r-r-rsp)) ;for vignettes (propagated-inputs - (list r-matrix r-matrixmodels r-sparsem)) + (list r-mass r-matrix r-matrixmodels r-sparsem r-survival)) (home-page "https://www.r-project.org") (synopsis "Quantile regression") (description @@ -5532,14 +5533,14 @@ expected shortfall risk are also included.") (define-public r-nloptr (package (name "r-nloptr") - (version "2.0.0") + (version "2.0.3") (source (origin (method url-fetch) (uri (cran-uri "nloptr" version)) (sha256 (base32 - "16k124ll14p3ygny6i1zd7yza83bv2sk87x922n1bfn9rx4k3jk5")))) + "1mqnjswm0dl6vqc8b2s5k3n1mhanaha3l33vh68dh6zx8q9aq9kv")))) (build-system r-build-system) (native-inputs (list r-knitr ; for building vignettes @@ -5560,14 +5561,14 @@ algorithms.") (define-public r-lme4 (package (name "r-lme4") - (version "1.1-28") + (version "1.1-29") (source (origin (method url-fetch) (uri (cran-uri "lme4" version)) (sha256 (base32 - "03nw76bfyas6cdm9chyxqm5ks6r0qklf2fdy7h4pqrqss325x1fi")))) + "09p836an3pap7vdbhf1zkl0a7wc63ax2dc8mjrd6lw64ikj7vnc3")))) (build-system r-build-system) (propagated-inputs (list r-boot @@ -5642,13 +5643,13 @@ Companion to Applied Regression, Third Edition, Sage.") (define-public r-car (package (name "r-car") - (version "3.0-12") + (version "3.0-13") (source (origin (method url-fetch) (uri (cran-uri "car" version)) (sha256 - (base32 "00kk8l71508f73kyn21is1mx6kjbrzdq3ls94c5ajhiqmvpsd6dq")))) + (base32 "1ss7kvi5hf9s4b6i7y06zl4iip1w1h8ff4zzf529wk18h3dfhnnk")))) (build-system r-build-system) (propagated-inputs (list r-abind @@ -5792,14 +5793,14 @@ multivariate case.") (define-public r-tclust (package (name "r-tclust") - (version "1.4-2") + (version "1.5-1") (source (origin (method url-fetch) (uri (cran-uri "tclust" version)) (sha256 (base32 - "1nb5iky4kc832627jf28lzj19wrvgwg5da6fyl3kyf0npmyx1p4m")))) + "09zk38gih67a8lk72k46mfgv21jpnxh2nzrxc5ypdc2bfwq8nckk")))) (build-system r-build-system) ;; These are all suggested packages, not build dependencies. (propagated-inputs @@ -5838,14 +5839,14 @@ genome-wide association studies can be analyzed efficiently.") (define-public r-tsne (package (name "r-tsne") - (version "0.1-3") + (version "0.1-3.1") (source (origin (method url-fetch) (uri (cran-uri "tsne" version)) (sha256 (base32 - "0s8cv2pndkddq62rzlgzgfdjp1vjv5hz5i5957sllnb97vbzbzb6")))) + "126q6ha25wx9mdsfngzkyp8j2fj81ri1knjdq1iyvwx3q1dwdaql")))) (build-system r-build-system) (home-page "https://github.com/jdonaldson/rtsne/") (synopsis "t-Distributed Stochastic Neighbor Embedding for R") @@ -5856,14 +5857,14 @@ genome-wide association studies can be analyzed efficiently.") (define-public r-cairo (package (name "r-cairo") - (version "1.5-14") + (version "1.5-15") (source (origin (method url-fetch) (uri (cran-uri "Cairo" version)) (sha256 (base32 - "0ysc40smkjwk8fmp5dk0q3nbp9xkxzz9pd4z5zkp2mrvrvx52xq6")))) + "17g8s80h9kc0a4zpb153sprjm6ndjl3gkpb63aq5xh9ickzv2fmv")))) (properties `((upstream-name . "Cairo"))) (build-system r-build-system) (inputs @@ -6347,7 +6348,9 @@ Java package that provides routines for various statistical distributions.") "$(MAKE) -C lisp install; $(MAKE) -C doc install") (("\\$\\(INSTALL) -R \\./\\* \\$\\(ESSDESTDIR)/") "$(MAKE) -C etc install")) - #t)))) + #t)) + (patches + (search-patches "emacs-ess-fix-obsolete-function-alias.patch")))) (build-system gnu-build-system) (arguments (let ((base-directory "/share/emacs/site-lisp")) @@ -6452,14 +6455,14 @@ mediation and estimating power.") (define-public r-clubsandwich (package (name "r-clubsandwich") - (version "0.5.5") + (version "0.5.6") (source (origin (method url-fetch) (uri (cran-uri "clubSandwich" version)) (sha256 (base32 - "1ifnc2rg5agf7lpilmm27iq0af7ghfhkvwykajhvykgf6h4clvhf")))) + "0mll8q61vnb980dck8ihxcy89z8m7f8i16mqdvr4l2ljywkhpzvd")))) (properties `((upstream-name . "clubSandwich"))) (build-system r-build-system) (propagated-inputs @@ -6490,14 +6493,14 @@ Methods are provided for a variety of fitted models, including @code{lm()} and (define-public r-puniform (package (name "r-puniform") - (version "0.2.4") + (version "0.2.5") (source (origin (method url-fetch) (uri (cran-uri "puniform" version)) (sha256 (base32 - "0v2977y9cwjx74xk0ig745g09wn7nrcsrg4f6v315sglsm18iaa8")))) + "1zw8qbqnyhyvzrw6izrqgnmbawcqg2jdhcb8lxs1rd8y7cn4v4wj")))) (properties `((upstream-name . "puniform"))) (build-system r-build-system) (propagated-inputs @@ -6601,14 +6604,14 @@ or eta squared effect size.") (define-public r-logspline (package (name "r-logspline") - (version "2.1.16") + (version "2.1.17") (source (origin (method url-fetch) (uri (cran-uri "logspline" version)) (sha256 (base32 - "12hkdi77vkic05p2vhap025xdcg1n53ywm239v18713pihdlj63l")))) + "05c8l22zcvb086909h9vw7icphww703vkcxp2h881y4n1232pdq3")))) (properties `((upstream-name . "logspline"))) (build-system r-build-system) (native-inputs (list gfortran)) @@ -6694,13 +6697,13 @@ designs, one-way designs, general ANOVA designs, and linear regression.") (define-public r-norm (package (name "r-norm") - (version "1.0-9.5") + (version "1.0-10.0") (source (origin (method url-fetch) (uri (cran-uri "norm" version)) (sha256 (base32 - "01j1h412yfjx5r4dd0w8rhlf55997spgb6zd6pawy19rgw0byp1h")))) + "1iqcsa7mj9ahnkbsri0cf2wlhh2bv86vwsh3iwihh42cywd7k123")))) (build-system r-build-system) (native-inputs (list gfortran)) @@ -6776,14 +6779,14 @@ Michael Lim & Trevor Hastie (2015)") (define-public r-datasaurus (package (name "r-datasaurus") - (version "0.1.4") + (version "0.1.6") (source (origin (method url-fetch) (uri (cran-uri "datasauRus" version)) (sha256 (base32 - "1w1yhwwrmh95bklacz44wjwynxd8cj3z8b9zvsnzmk18m5a4k0fl")))) + "0vgylf3bab0xcfg08xwvfq9yhxy6w0fxi7wp4kkxfyjb0pw15qxk")))) (properties `((upstream-name . "datasauRus"))) (build-system r-build-system) (native-inputs (list r-knitr)) @@ -6808,13 +6811,13 @@ Annealing\" @url{doi:10.1145/3025453.3025912}.") (define-public r-lmom (package (name "r-lmom") - (version "2.8") + (version "2.9") (source (origin (method url-fetch) (uri (cran-uri "lmom" version)) (sha256 - (base32 "1lnj41gynaar5isyijg5nbll64qdxa12dnqvz7lxhaclqcjskqna")))) + (base32 "145va4dhl767mywk36xcmqilm21sfkqhcqi0s07qgq3k39sn4gin")))) (properties `((upstream-name . "lmom"))) (build-system r-build-system) (native-inputs (list gfortran)) @@ -6892,13 +6895,13 @@ Calculates confidence intervals for the difference in proportion.") (define-public r-desctools (package (name "r-desctools") - (version "0.99.44") + (version "0.99.45") (source (origin (method url-fetch) (uri (cran-uri "DescTools" version)) (sha256 - (base32 "04wp3sp6sahgq167465y38y13h1ia5a4zqazysacpjxd1if0578j")))) + (base32 "01gbmikpzjmymvb7p76k7wqvfvwznl6v0qa78jy7bi6fzmbp1zld")))) (properties `((upstream-name . "DescTools"))) (build-system r-build-system) (propagated-inputs @@ -6908,9 +6911,11 @@ Calculates confidence intervals for the difference in proportion.") r-exact r-expm r-gld + r-httr r-mass r-mvtnorm r-rcpp + r-readxl r-rstudioapi)) (native-inputs (list gfortran)) (home-page "https://andrisignorell.github.io/DescTools/") @@ -6991,13 +6996,13 @@ is used to allow menus, dialogs, and the response to mouse actions to be (define-public r-rlrsim (package (name "r-rlrsim") - (version "3.1-6") + (version "3.1-8") (source (origin (method url-fetch) (uri (cran-uri "RLRsim" version)) (sha256 - (base32 "1wkkibr250frsbfq70m9jdrylxb492zibf5w03z6zis98pjffssp")))) + (base32 "06i4slc7fj8xifq20i1vqfadfw2p81b0kfzga60139hnryz1zpva")))) (properties `((upstream-name . "RLRsim"))) (build-system r-build-system) (propagated-inputs (list r-lme4 r-mgcv r-nlme r-rcpp)) @@ -7014,13 +7019,13 @@ the presence of variance components/nonparametric terms for models fit with (define-public r-binom (package (name "r-binom") - (version "1.1-1") + (version "1.1-1.1") (source (origin (method url-fetch) (uri (cran-uri "binom" version)) (sha256 - (base32 "0mjj92dqf5q69jxzqya4izb1mly3mkydbnmlm4wb3zqqg82a324c")))) + (base32 "1yxyhsd0savwirlmgnq6973slfakqyfvjm0zz60cmc9v490my8gf")))) (properties `((upstream-name . "binom"))) (build-system r-build-system) (home-page "https://cran.r-project.org/package=binom") |