gnu: r-refgenome: Update to 1.7.7.
[jackhill/guix/guix.git] / gnu / packages / cran.scm
CommitLineData
056468dc 1;;; GNU Guix --- Functional package management for GNU
92ce1883 2;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
c80fb90f 3;;; Copyright © 2016, 2017 Ben Woodcroft <donttrustben@gmail.com>
ddbf2a98 4;;; Copyright © 2017, 2018 Roel Janssen <roel@gnu.org>
14b78ca6 5;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
53cc59a1 6;;; Copyright © 2017 Raoul Bonnal <ilpuccio.febo@gmail.com>
109b2f7c 7;;; Copyright © 2018 Vijayalakshmi Vedantham <vijimay12@gmail.com>
c56739df 8;;; Copyright © 2018 Sahithi Yarlagadda <sahi@swecha.net>
96e22362 9;;; Copyright © 2018 Sandeep Subramanian <sandeepsubramanian94@gmail.com>
d2a507ef 10;;; Copyright © 2018 Charlie Ritter <chewzeirta@posteo.net>
1cde7467 11;;; Copyright © 2018 Konrad Hinsen <konrad.hinsen@fastmail.net>
c994418b 12;;; Copyright © 2018 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
b55697fb 13;;; Copyright © 2018 Laura Lazzati <laura.lazzati.15@gmail.com>
60a166c6 14;;; Copyright © 2018 Leo Famulari <leo@famulari.name>
d9bec9a8 15;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com>
34bac6c3 16;;; Copyright © 2018, 2019 Brett Gilio <brettg@posteo.net>
100f5602 17;;; Copyright © 2019 Nicolò Balzarotti <anothersms@gmail.com>
056468dc
RW
18;;;
19;;; This file is part of GNU Guix.
20;;;
21;;; GNU Guix is free software; you can redistribute it and/or modify it
22;;; under the terms of the GNU General Public License as published by
23;;; the Free Software Foundation; either version 3 of the License, or (at
24;;; your option) any later version.
25;;;
26;;; GNU Guix is distributed in the hope that it will be useful, but
27;;; WITHOUT ANY WARRANTY; without even the implied warranty of
28;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29;;; GNU General Public License for more details.
30;;;
31;;; You should have received a copy of the GNU General Public License
32;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
33
34(define-module (gnu packages cran)
35 #:use-module ((guix licenses) #:prefix license:)
36 #:use-module (guix packages)
37 #:use-module (guix download)
92ce1883 38 #:use-module (guix git-download)
056468dc 39 #:use-module (guix utils)
c69d27db 40 #:use-module (guix build-system r)
44b0c5b5 41 #:use-module (gnu packages algebra)
ff939ef4 42 #:use-module (gnu packages base)
f33cb7ab 43 #:use-module (gnu packages bioinformatics)
7002c44f 44 #:use-module (gnu packages c)
546fc4aa 45 #:use-module (gnu packages compression)
92ce1883 46 #:use-module (gnu packages curl)
d9bec9a8 47 #:use-module (gnu packages databases)
f338e480 48 #:use-module (gnu packages fontutils)
062b6dbd 49 #:use-module (gnu packages gcc)
d884e407 50 #:use-module (gnu packages geo)
d0eb09a1 51 #:use-module (gnu packages ghostscript)
f338e480 52 #:use-module (gnu packages gl)
01af264d 53 #:use-module (gnu packages gnome)
3d62d98e 54 #:use-module (gnu packages graph)
01af264d 55 #:use-module (gnu packages gtk)
9b3ecb60 56 #:use-module (gnu packages haskell)
3f6e6e98 57 #:use-module (gnu packages icu4c)
f338e480 58 #:use-module (gnu packages image)
dab3e92c 59 #:use-module (gnu packages imagemagick)
3f6e6e98 60 #:use-module (gnu packages java)
92ce1883
RW
61 #:use-module (gnu packages javascript)
62 #:use-module (gnu packages lisp)
f97ce815 63 #:use-module (gnu packages machine-learning)
521e0703 64 #:use-module (gnu packages maths)
94989d4b 65 #:use-module (gnu packages mpi)
1ab51604 66 #:use-module (gnu packages multiprecision)
f313baf0 67 #:use-module (gnu packages networking)
3f6e6e98 68 #:use-module (gnu packages pcre)
e0268ff2 69 #:use-module (gnu packages perl)
e33498b8 70 #:use-module (gnu packages pkg-config)
9f56ceec 71 #:use-module (gnu packages python)
984a8aa6 72 #:use-module (gnu packages python-xyz)
e0268ff2 73 #:use-module (gnu packages statistics)
9944399a 74 #:use-module (gnu packages tls)
f338e480
RW
75 #:use-module (gnu packages web)
76 #:use-module (gnu packages xorg))
056468dc 77
88e4ed55
RW
78(define-public r-clipr
79 (package
80 (name "r-clipr")
8e79d820 81 (version "0.6.0")
88e4ed55
RW
82 (source
83 (origin
84 (method url-fetch)
85 (uri (cran-uri "clipr" version))
86 (sha256
87 (base32
8e79d820 88 "0k9kimkmmj9k7290sxiqn4kd1vvm4w7q9a44wp0w30b7yjpavx2m"))))
88e4ed55
RW
89 (build-system r-build-system)
90 (home-page "https://github.com/mdlincoln/clipr")
91 (synopsis "Read and write from the system clipboard")
92 (description
93 "This package provides simple utility functions to read from and write to
94the system clipboards.")
95 (license license:gpl3)))
96
3f22a115
RW
97(define-public r-ellipsis
98 (package
99 (name "r-ellipsis")
100 (version "0.1.0")
101 (source
102 (origin
103 (method url-fetch)
104 (uri (cran-uri "ellipsis" version))
105 (sha256
106 (base32
107 "0pw94qpg81xmsdsagpqxddv7m2cmdszmyyq99dk3caqqj01z7wg6"))))
108 (build-system r-build-system)
109 (home-page "https://github.com/hadley/ellipsis")
110 (synopsis "Tools for working with additional arguments")
111 (description
112 "In S3 generics, it's useful to take @code{...} so that methods can have
113additional arguments. But this flexibility comes at a cost: misspelled
114arguments will be silently ignored. The @code{ellipsis} package is an
115experiment that allows a generic to warn if any arguments passed in @code{...}
116are not used.")
117 (license license:gpl3)))
118
2b106a8d
RW
119(define-public r-sys
120 (package
121 (name "r-sys")
902905cc 122 (version "3.2")
2b106a8d
RW
123 (source
124 (origin
125 (method url-fetch)
126 (uri (cran-uri "sys" version))
127 (sha256
128 (base32
902905cc 129 "1k5vk5q9wa5sin0n226i05nymg469s24f6lx64yyhb7yc624j698"))))
2b106a8d
RW
130 (build-system r-build-system)
131 (home-page "https://github.com/jeroen/sys")
132 (synopsis "Powerful and reliable tools for running system commands in R")
133 (description
134 "This package provides drop-in replacements for the base @code{system2()}
135function with fine control and consistent behavior across platforms. It
136supports clean interruption, timeout, background tasks, and streaming STDIN /
137STDOUT / STDERR over binary or text connections. The package also provides
138functions for evaluating expressions inside a temporary fork. Such
139evaluations have no side effects on the main R process, and support reliable
140interrupts and timeouts. This provides the basis for a sandboxing
141mechanism.")
142 (license license:expat)))
143
9d3a4672
RW
144(define-public r-askpass
145 (package
146 (name "r-askpass")
147 (version "1.1")
148 (source
149 (origin
150 (method url-fetch)
151 (uri (cran-uri "askpass" version))
152 (sha256
153 (base32
154 "07q0ik8jzk44vpwh48rr3fnpd7dzsdhjjsl4l850rffv3dyq4h6v"))))
155 (build-system r-build-system)
156 (propagated-inputs `(("r-sys" ,r-sys)))
157 (home-page "https://github.com/jeroen/askpass")
158 (synopsis "Safe password entry for R")
159 (description
160 "This package provides cross-platform utilities for prompting the user
161for credentials or a passphrase, for example to authenticate with a server or
162read a protected key.")
163 (license license:expat)))
164
c80fb90f
RW
165(define-public r-vegan
166 (package
167 (name "r-vegan")
524c7188 168 (version "2.5-5")
c80fb90f
RW
169 (source
170 (origin
171 (method url-fetch)
172 (uri (cran-uri "vegan" version))
173 (sha256
174 (base32
524c7188 175 "0wb90ng02gi13854bjq0b8a2vrknyhb0s0l1v3z38c4zy9k54sw7"))))
c80fb90f
RW
176 (build-system r-build-system)
177 (native-inputs
178 `(("gfortran" ,gfortran)))
179 (propagated-inputs
180 `(("r-cluster" ,r-cluster)
181 ("r-knitr" ,r-knitr) ; needed for vignettes
182 ("r-lattice" ,r-lattice)
183 ("r-mass" ,r-mass)
184 ("r-mgcv" ,r-mgcv)
185 ("r-permute" ,r-permute)))
186 (home-page "https://cran.r-project.org/web/packages/vegan")
187 (synopsis "Functions for community ecology")
188 (description
189 "The vegan package provides tools for descriptive community ecology. It
190has most basic functions of diversity analysis, community ordination and
191dissimilarity analysis. Most of its multivariate tools can be used for other
192data types as well.")
193 (license license:gpl2+)))
194
786d3de2
CR
195(define-public r-tidyverse
196 (package
197 (name "r-tidyverse")
198 (version "1.2.1")
199 (source
200 (origin
201 (method url-fetch)
202 (uri (cran-uri "tidyverse" version))
203 (sha256
204 (base32
205 "0yy3fkjksgcn6wkbgsb0pbnmsyqs4m01mziqafhig578nixs4rxd"))))
206 (build-system r-build-system)
207 (propagated-inputs
208 `(("r-broom" ,r-broom)
209 ("r-cli" ,r-cli)
210 ("r-crayon" ,r-crayon)
211 ("r-dbplyr" ,r-dbplyr)
212 ("r-dplyr" ,r-dplyr)
213 ("r-forcats" ,r-forcats)
214 ("r-ggplot2" ,r-ggplot2)
215 ("r-haven" ,r-haven)
216 ("r-hms" ,r-hms)
217 ("r-httr" ,r-httr)
218 ("r-jsonlite" ,r-jsonlite)
219 ("r-lubridate" ,r-lubridate)
220 ("r-magrittr" ,r-magrittr)
221 ("r-modelr" ,r-modelr)
222 ("r-purrr" ,r-purrr)
223 ("r-readr" ,r-readr)
224 ("r-readxl" ,r-readxl)
225 ("r-reprex" ,r-reprex)
226 ("r-rlang" ,r-rlang)
227 ("r-rstudioapi" ,r-rstudioapi)
228 ("r-rvest" ,r-rvest)
229 ("r-stringr" ,r-stringr)
230 ("r-tibble" ,r-tibble)
231 ("r-tidyr" ,r-tidyr)
232 ("r-xml2" ,r-xml2)))
233 (home-page "https://tidyverse.tidyverse.org")
234 (synopsis "Install and load packages from the \"Tidyverse\"")
235 (description
236 "The @code{tidyverse} is a set of packages that work in harmony because
237they share common data representations and API design. This package is
238designed to make it easy to install and load multiple tidyverse packages in a
239single step.")
240 (license license:gpl3)))
241
8a1ef6ac
CR
242(define-public r-rvest
243 (package
244 (name "r-rvest")
8bfc6dc5 245 (version "0.3.4")
8a1ef6ac
CR
246 (source
247 (origin
248 (method url-fetch)
249 (uri (cran-uri "rvest" version))
250 (sha256
251 (base32
8bfc6dc5 252 "0ji5lk8g1gbv4d9c4jg1fg6rgsqrrwkm05j1id7drdw9kqdifgj1"))))
8a1ef6ac
CR
253 (build-system r-build-system)
254 (propagated-inputs
255 `(("r-httr" ,r-httr)
256 ("r-magrittr" ,r-magrittr)
257 ("r-selectr" ,r-selectr)
258 ("r-xml2" ,r-xml2)))
259 (home-page "https://github.com/hadley/rvest")
260 (synopsis "Simple web scraping for R")
261 (description
262 "@code{r-rvest} helps you scrape information from web pages. It is
263designed to work with @code{magrittr} to make it easy to express common web
264scraping tasks, inspired by libraries like @code{BeautifulSoup}.")
265 (license license:gpl3)))
266
81a9d4a4
CR
267(define-public r-selectr
268 (package
269 (name "r-selectr")
41e8bd77 270 (version "0.4-1")
81a9d4a4
CR
271 (source
272 (origin
273 (method url-fetch)
274 (uri (cran-uri "selectr" version))
275 (sha256
276 (base32
41e8bd77 277 "1jp27rxks4w29l47k42869hp8hnkzq2rnvsqbr44wd19fqb2zm4b"))))
81a9d4a4 278 (build-system r-build-system)
41e8bd77
RW
279 (propagated-inputs
280 `(("r-stringr" ,r-stringr)
281 ("r-r6" ,r-r6)))
81a9d4a4
CR
282 (home-page "https://sjp.co.nz/projects/selectr/")
283 (synopsis "Translate CSS selectors to XPath expressions")
284 (description
285 "@code{r-selectr} translates a CSS3 selector into an equivalent XPath
286expression. This allows you to use CSS selectors when working with the XML
287package as it can only evaluate XPath expressions. Also provided are
288convenience functions useful for using CSS selectors on XML nodes. This
289package is a port of the Python package @code{cssselect}.")
290 (license license:bsd-3)))
291
948740b0
CR
292(define-public r-reprex
293 (package
294 (name "r-reprex")
bd9f1479 295 (version "0.3.0")
948740b0
CR
296 (source
297 (origin
298 (method url-fetch)
299 (uri (cran-uri "reprex" version))
300 (sha256
301 (base32
bd9f1479 302 "0v7vxzs8alwz8y1cjicpimp5yimf1g9gb8x5wy3zhvrz6kk2lg10"))))
948740b0
CR
303 (build-system r-build-system)
304 (propagated-inputs
305 `(("r-callr" ,r-callr)
e3c1e93e 306 ("r-clipr" ,r-clipr)
1c9906c2 307 ("r-fs" ,r-fs)
e3c1e93e 308 ("r-rlang" ,r-rlang)
948740b0 309 ("r-rmarkdown" ,r-rmarkdown)
e3c1e93e
RW
310 ("r-whisker" ,r-whisker)
311 ("r-withr" ,r-withr)))
948740b0
CR
312 (home-page "https://github.com/tidyverse/reprex")
313 (synopsis "Prepare reproducible R code examples for sharing")
314 (description
315 "This package provides a convenience wrapper that uses the
316@code{rmarkdown} package to render small snippets of code to target formats
317that include both code and output. The goal is to encourage the sharing of
318small, reproducible, and runnable examples on code-oriented websites or email.
319@code{reprex} also extracts clean, runnable R code from various common formats,
320such as copy/paste from an R session.")
321 (license license:expat)))
322
10487c30
CR
323(define-public r-callr
324 (package
325 (name "r-callr")
d1021421 326 (version "3.2.0")
10487c30
CR
327 (source
328 (origin
329 (method url-fetch)
330 (uri (cran-uri "callr" version))
331 (sha256
332 (base32
d1021421 333 "1s5h2k7c1vgbry90xczin66q89cbkc6mvh4679l5rsz83087pd2b"))))
10487c30
CR
334 (build-system r-build-system)
335 (propagated-inputs
527c6055 336 `(("r-r6" ,r-r6)
6034a62a 337 ("r-processx" ,r-processx)))
10487c30
CR
338 (home-page "https://github.com/r-lib/callr#readme")
339 (synopsis "Call R from R")
340 (description
341 "It is sometimes useful to perform a computation in a separate R process,
b3fed5ed 342without affecting the current R process at all. This package does exactly
10487c30
CR
343that.")
344 (license license:expat)))
345
d7637e5e
CR
346(define-public r-readxl
347 (package
348 (name "r-readxl")
50d063b5 349 (version "1.3.1")
d7637e5e
CR
350 (source
351 (origin
352 (method url-fetch)
353 (uri (cran-uri "readxl" version))
354 (sha256
355 (base32
50d063b5 356 "15mambxr8c7k2ikdfsl1w3vxvm54dsnk0cl1qvks6iig7rql3d14"))))
d7637e5e
CR
357 (build-system r-build-system)
358 (propagated-inputs
359 `(("r-cellranger" ,r-cellranger)
b140569e 360 ("r-progress" ,r-progress)
d7637e5e
CR
361 ("r-rcpp" ,r-rcpp)
362 ("r-tibble" ,r-tibble)))
363 (home-page "https://readxl.tidyverse.org")
364 (synopsis "Read Excel files")
365 (description
366 "This package lets you import Excel files into R. It supports
367@file{.xls} via the embedded @code{libxls} C library and @file{.xlsx} via
368the embedded @code{RapidXML} C++ library.")
369 ;; XXX: This package bundles a copy of 'libxsl' which is BSD-2 and
370 ;; 'rapidxml' which is Boost.
371 (license (list license:gpl3 license:bsd-2 license:boost1.0))))
372
9a91c925
CR
373(define-public r-modelr
374 (package
375 (name "r-modelr")
34bac6c3 376 (version "0.1.4")
9a91c925
CR
377 (source
378 (origin
379 (method url-fetch)
380 (uri (cran-uri "modelr" version))
381 (sha256
382 (base32
34bac6c3 383 "1ngxphbjkv7yl1rg30sj36mfwhc76g452drjrq9abgab4k0pgnml"))))
9a91c925
CR
384 (build-system r-build-system)
385 (propagated-inputs
386 `(("r-broom" ,r-broom)
387 ("r-dplyr" ,r-dplyr)
388 ("r-lazyeval" ,r-lazyeval)
389 ("r-magrittr" ,r-magrittr)
390 ("r-purrr" ,r-purrr)
391 ("r-tibble" ,r-tibble)
392 ("r-tidyr" ,r-tidyr)))
393 (home-page "https://github.com/tidyverse/modelr")
394 (synopsis "Helper functions for modelling in pipelines")
395 (description
396 "Functions for modelling that help you seamlessly integrate modelling
397into a pipeline of data manipulation and visualisation.")
398 (license license:gpl3)))
399
92ce1883
RW
400(define-public r-httpuv
401 (package
402 (name "r-httpuv")
0b8ef655 403 (version "1.5.1")
92ce1883
RW
404 (source (origin
405 (method url-fetch)
406 (uri (cran-uri "httpuv" version))
407 (sha256
408 (base32
0b8ef655 409 "042piypg4c8sqrlcdl3dwajkafkbglsky3x7d0jpjv8s5wxnpfxm"))))
92ce1883 410 (build-system r-build-system)
92ce1883
RW
411 (propagated-inputs
412 `(("r-bh" ,r-bh)
413 ("r-later" ,r-later)
2391e97c
RW
414 ("r-promises" ,r-promises)
415 ("r-r6" ,r-r6)
416 ("r-rcpp" ,r-rcpp)))
92ce1883
RW
417 (home-page "https://github.com/rstudio/httpuv")
418 (synopsis "HTTP and WebSocket server library for R")
419 (description
420 "The httpuv package provides low-level socket and protocol support for
421handling HTTP and WebSocket requests directly from within R. It is primarily
422intended as a building block for other packages, rather than making it
423particularly easy to create complete web applications using httpuv alone.")
424 ;; This package includes third-party code that was originally released
425 ;; under various non-copyleft licenses. Full licensing information can be
426 ;; obtained here: https://github.com/rstudio/httpuv/blob/master/LICENSE
427 (license license:gpl3+)))
428
429(define-public r-jsonlite
430 (package
431 (name "r-jsonlite")
a2315c67 432 (version "1.6")
92ce1883
RW
433 (source (origin
434 (method url-fetch)
435 (uri (cran-uri "jsonlite" version))
436 (sha256
437 (base32
a2315c67 438 "0lyvhnr6n57h3a89bvipii7x17nvfaycm9j5j50bfrlr48jv9ic8"))))
92ce1883
RW
439 (build-system r-build-system)
440 (home-page "http://arxiv.org/abs/1403.2805")
441 (synopsis "Robust, high performance JSON parser and generator for R")
442 (description
443 "The jsonlite package provides a fast JSON parser and generator optimized
444for statistical data and the web. It offers flexible, robust, high
445performance tools for working with JSON in R and is particularly powerful for
446building pipelines and interacting with a web API. In addition to converting
447JSON data from/to R objects, jsonlite contains functions to stream, validate,
448and prettify JSON data. The unit tests included with the package verify that
449all edge cases are encoded and decoded consistently for use with dynamic data
450in systems and applications.")
451 (license license:expat)))
452
453(define-public r-servr
454 (package
455 (name "r-servr")
790db519 456 (version "0.13")
92ce1883
RW
457 (source (origin
458 (method url-fetch)
459 (uri (cran-uri "servr" version))
460 (sha256
461 (base32
790db519 462 "1n5haqkshrxcx557f1k7nrisvq3wak8v370s2r6yv691b8hvbscs"))))
92ce1883
RW
463 (build-system r-build-system)
464 (propagated-inputs
465 `(("r-httpuv" ,r-httpuv)
466 ("r-jsonlite" ,r-jsonlite)
467 ("r-mime" ,r-mime)
468 ("r-xfun" ,r-xfun)))
469 (home-page "https://github.com/yihui/servr")
470 (synopsis "Simple HTTP server to serve static files or dynamic documents")
471 (description
472 "Servr provides an HTTP server in R to serve static files, or dynamic
473documents that can be converted to HTML files (e.g., R Markdown) under a given
474directory.")
475 (license license:expat)))
476
477(define-public r-htmltools
478 (package
479 (name "r-htmltools")
480 (version "0.3.6")
481 (source (origin
482 (method url-fetch)
483 (uri (cran-uri "htmltools" version))
484 (sha256
485 (base32
486 "18k8r1s8sz1jy7dkz35n69wj20xhmllr53xmwb4pdzf2z61gpbs4"))))
487 (build-system r-build-system)
488 (arguments
489 `(#:phases
490 (modify-phases %standard-phases
491 ;; See https://github.com/rstudio/htmltools/pull/68
492 ;; The resource files are in the store and have mode 444. After
493 ;; copying the files R fails to remove them again because it doesn't
494 ;; have write access to them.
495 (add-after 'unpack 'copy-files-without-mode
496 (lambda _
497 (substitute* "R/html_dependency.R"
498 (("file.copy\\(from, to, " prefix)
499 (string-append prefix
500 "copy.mode = FALSE, ")))
501 #t)))))
502 (propagated-inputs
503 `(("r-digest" ,r-digest)
504 ("r-rcpp" ,r-rcpp)))
505 (home-page "https://cran.r-project.org/web/packages/htmltools")
506 (synopsis "R tools for HTML")
507 (description
508 "This package provides tools for HTML generation and output in R.")
509 (license license:expat)))
510
511(define-public r-htmlwidgets
512 (package
513 (name "r-htmlwidgets")
514 (version "1.3")
515 (source (origin
516 (method url-fetch)
517 (uri (cran-uri "htmlwidgets" version))
518 (sha256
519 (base32
520 "04jsdh14l2zifbjpbbh23w7bxz1wpsas0zb2gy2zwv4yqamzzr7i"))))
521 (build-system r-build-system)
522 (propagated-inputs
523 `(("r-htmltools" ,r-htmltools)
524 ("r-jsonlite" ,r-jsonlite)
525 ("r-yaml" ,r-yaml)))
526 (home-page "https://github.com/ramnathv/htmlwidgets")
527 (synopsis "HTML Widgets for R")
528 (description
529 "HTML widgets is a framework for creating HTML widgets that render in
530various contexts including the R console, R Markdown documents, and Shiny web
531applications.")
532 (license license:expat)))
533
534(define-public r-htmltable
535 (package
536 (name "r-htmltable")
1add168a 537 (version "1.13.1")
92ce1883
RW
538 (source
539 (origin
540 (method url-fetch)
541 (uri (cran-uri "htmlTable" version))
542 (sha256
543 (base32
1add168a 544 "1l44b33xgj2698k6nz17r8fl0ink14ryzng803apm9d6bnv357v8"))))
92ce1883
RW
545 (properties `((upstream-name . "htmlTable")))
546 (build-system r-build-system)
547 (propagated-inputs
548 `(("r-checkmate" ,r-checkmate)
549 ("r-htmltools" ,r-htmltools)
550 ("r-htmlwidgets" ,r-htmlwidgets)
551 ("r-knitr" ,r-knitr)
552 ("r-magrittr" ,r-magrittr)
553 ("r-rstudioapi" ,r-rstudioapi)
554 ("r-stringr" ,r-stringr)))
555 (home-page "http://gforge.se/packages/")
556 (synopsis "Advanced tables for Markdown/HTML")
557 (description
558 "This package provides functions to build tables with advanced layout
559elements such as row spanners, column spanners, table spanners, zebra
560striping, and more. While allowing advanced layout, the underlying
561CSS-structure is simple in order to maximize compatibility with word
562processors such as LibreOffice. The package also contains a few text
563formatting functions that help outputting text compatible with HTML or
564LaTeX.")
565 (license license:gpl3+)))
566
567(define-public r-curl
568 (package
569 (name "r-curl")
646e1ef0 570 (version "3.3")
92ce1883
RW
571 (source (origin
572 (method url-fetch)
573 (uri (cran-uri "curl" version))
574 (sha256
575 (base32
646e1ef0 576 "1gd5i25anzi28lg1f8p7g63z9d46xi0qaw4lxpml5p0f52lvkc0c"))))
92ce1883
RW
577 (build-system r-build-system)
578 (arguments
579 `(#:phases
580 (modify-phases %standard-phases
581 ;; The environment variable CURL_CA_BUNDLE is only respected when
582 ;; running Windows, so we disable the platform checks.
583 ;; This can be removed once the libcurl has been patched.
584 (add-after 'unpack 'allow-CURL_CA_BUNDLE
585 (lambda _
586 (substitute* "R/onload.R"
587 (("if \\(!grepl\\(\"mingw\".*")
588 "if (FALSE)\n"))
589 (substitute* "src/handle.c"
590 (("#ifdef _WIN32") "#if 1"))
591 #t)))))
592 (inputs
646e1ef0
RW
593 `(("libcurl" ,curl)
594 ("zlib" ,zlib)))
595 (native-inputs
596 `(("pkg-config" ,pkg-config)))
92ce1883
RW
597 (home-page "https://github.com/jeroenooms/curl")
598 (synopsis "HTTP client for R")
599 (description
600 "The @code{curl()} and @code{curl_download()} functions provide highly
601configurable drop-in replacements for base @code{url()} and
602@code{download.file()} with better performance, support for encryption, gzip
603compression, authentication, and other @code{libcurl} goodies. The core of
604the package implements a framework for performing fully customized requests
605where data can be processed either in memory, on disk, or streaming via the
606callback or connection interfaces.")
607 (license license:expat)))
608
609(define-public r-hwriter
610 (package
611 (name "r-hwriter")
612 (version "1.3.2")
613 (source
614 (origin
615 (method url-fetch)
616 (uri (cran-uri "hwriter" version))
617 (sha256
618 (base32
619 "0arjsz854rfkfqhgvpqbm9lfni97dcjs66isdsfvwfd2wz932dbb"))))
620 (build-system r-build-system)
621 (home-page "https://cran.r-project.org/web/packages/hwriter")
622 (synopsis "Output R objects in HTML format")
623 (description
624 "This package provides easy-to-use and versatile functions to output R
625objects in HTML format.")
626 (license license:lgpl2.1+)))
627
628(define-public r-rjson
629 (package
630 (name "r-rjson")
631 (version "0.2.20")
632 (source
633 (origin
634 (method url-fetch)
635 (uri (cran-uri "rjson" version))
636 (sha256
637 (base32
638 "0v1zvdd3svnavklh7y5xbwrrkbvx6053r4c5hgnk7hz7bqg7qa1s"))))
639 (build-system r-build-system)
640 (home-page "https://cran.r-project.org/web/packages/rjson")
641 (synopsis "JSON library for R")
642 (description
643 "This package provides functions to convert R objects into JSON objects
644and vice-versa.")
645 (license license:gpl2+)))
646
647(define-public r-shiny
648 (package
649 (name "r-shiny")
d235cf72 650 (version "1.2.0")
92ce1883
RW
651 (source
652 (origin
653 (method git-fetch)
654 (uri (git-reference
655 (url "https://github.com/rstudio/shiny.git")
656 (commit (string-append "v" version))))
657 (file-name (git-file-name name version))
658 (sha256
659 (base32
d235cf72 660 "1kl3dh68h4cnrm3rqn9pddk5n6bsmr5x0626bkfv0qqi0q92zin4"))))
92ce1883
RW
661 (build-system r-build-system)
662 (arguments
663 `(#:modules ((guix build r-build-system)
664 (guix build minify-build-system)
665 (guix build utils)
666 (ice-9 match))
667 #:imported-modules (,@%r-build-system-modules
668 (guix build minify-build-system))
669 #:phases
670 (modify-phases (@ (guix build r-build-system) %standard-phases)
671 (add-after 'unpack 'replace-bundled-minified-JavaScript
672 (lambda* (#:key inputs #:allow-other-keys)
673 (let ((replace-file (lambda (old new)
674 (format #t "replacing ~a with ~a\n" old new)
675 (delete-file old)
676 (symlink new old))))
677 ;; NOTE: Files in ./inst/www/shared/datepicker/js/locales/
678 ;; contain just data. They are not minified code, so we don't
679 ;; replace them.
680 (with-directory-excursion "inst/www/shared"
681 (replace-file "bootstrap/shim/respond.min.js"
682 (string-append (assoc-ref inputs "js-respond")
683 "/share/javascript/respond.min.js"))
684 (replace-file "bootstrap/shim/html5shiv.min.js"
685 (string-append (assoc-ref inputs "js-html5shiv")
686 "/share/javascript/html5shiv.min.js"))
687 (replace-file "json2-min.js"
688 (string-append (assoc-ref inputs "js-json2")
689 "/share/javascript/json2.min.js"))
690 (replace-file "strftime/strftime-min.js"
691 (string-append (assoc-ref inputs "js-strftime")
692 "/share/javascript/strftime.min.js"))
693 (replace-file "highlight/highlight.pack.js"
694 (string-append (assoc-ref inputs "js-highlight")
695 "/share/javascript/highlight.min.js"))
696 (replace-file "datatables/js/jquery.dataTables.min.js"
697 (string-append (assoc-ref inputs "js-datatables")
698 "/share/javascript/jquery.dataTables.min.js"))
699 (replace-file "selectize/js/selectize.min.js"
700 (string-append (assoc-ref inputs "js-selectize")
701 "/share/javascript/selectize.min.js"))
702 (replace-file "selectize/js/es5-shim.min.js"
703 (string-append (assoc-ref inputs "js-es5-shim")
704 "/share/javascript/es5-shim.min.js"))
705 (for-each (match-lambda
706 ((source . target)
707 (delete-file target)
708 (minify source #:target target)))
709 '(("jqueryui/jquery-ui.js" .
710 "jqueryui/jquery-ui.min.js")
92ce1883
RW
711 ("datepicker/js/bootstrap-datepicker.js" .
712 "datepicker/js/bootstrap-datepicker.min.js")
713 ("ionrangeslider/js/ion.rangeSlider.js" .
714 "ionrangeslider/js/ion.rangeSlider.min.js")
715 ("bootstrap/js/bootstrap.js" .
716 "bootstrap/js/bootstrap.min.js")
717 ("shiny.js" .
718 "shiny.min.js")
719 ("jquery.js" .
720 "jquery.min.js")))))
721 #t)))))
722 (propagated-inputs
723 `(("r-crayon" ,r-crayon)
724 ("r-httpuv" ,r-httpuv)
725 ("r-mime" ,r-mime)
726 ("r-jsonlite" ,r-jsonlite)
727 ("r-xtable" ,r-xtable)
728 ("r-digest" ,r-digest)
729 ("r-htmltools" ,r-htmltools)
730 ("r-r6" ,r-r6)
731 ("r-sourcetools" ,r-sourcetools)))
732 (inputs
733 `(("js-datatables" ,js-datatables)
734 ("js-html5shiv" ,js-html5shiv)
735 ("js-json2" ,js-json2)
736 ("js-respond" ,js-respond)
737 ("js-selectize" ,js-selectize)
738 ("js-strftime" ,js-strftime)
739 ("js-highlight" ,js-highlight)
740 ("js-es5-shim" ,js-es5-shim)))
8916034a
RW
741 (native-inputs
742 `(("uglify-js" ,uglify-js)))
92ce1883
RW
743 (home-page "http://shiny.rstudio.com")
744 (synopsis "Easy interactive web applications with R")
745 (description
746 "Makes it incredibly easy to build interactive web applications
747with R. Automatic \"reactive\" binding between inputs and outputs and
748extensive prebuilt widgets make it possible to build beautiful,
749responsive, and powerful applications with minimal effort.")
750 (license license:artistic2.0)))
751
752(define-public r-shinydashboard
753 (package
754 (name "r-shinydashboard")
755 (version "0.7.1")
756 (source (origin
757 (method url-fetch)
758 (uri (cran-uri "shinydashboard" version))
759 (sha256
760 (base32
761 "0khac8b27q3swdw07kl609hm0fjfjsjv591b388q99mqqr2rk92i"))))
762 (build-system r-build-system)
763 ;; The directory inst/AdminLTE/ contains a minified JavaScript file.
764 ;; Regenerate it from the included sources.
765 (arguments
766 `(#:modules ((guix build utils)
767 (guix build r-build-system)
768 (ice-9 popen))
769 #:phases
770 (modify-phases %standard-phases
771 (add-after 'unpack 'generate-minified-javascript
772 (lambda _
773 (with-directory-excursion "inst/AdminLTE"
774 (delete-file "app.min.js")
775 (let ((minified (open-pipe* OPEN_READ "uglify-js" "app.js")))
776 (call-with-output-file "app.min.js"
777 (lambda (port)
778 (dump-port minified port))))))))))
779 (propagated-inputs
780 `(("r-htmltools" ,r-htmltools)
781 ("r-promises" ,r-promises)
782 ("r-shiny" ,r-shiny)))
783 (native-inputs
784 `(("uglify-js" ,uglify-js)))
785 (home-page "http://rstudio.github.io/shinydashboard/")
786 (synopsis "Create dashboards with shiny")
787 (description "This package provides an extension to the Shiny web
788application framework for R, making it easy to create attractive dashboards.")
789 ;; This package includes software that was released under the Expat
790 ;; license, but the whole package is released under GPL version 2 or
791 ;; later.
792 (license license:gpl2+)))
793
794(define-public r-shinyfiles
795 (package
796 (name "r-shinyfiles")
8bc8cea9 797 (version "0.7.3")
92ce1883
RW
798 (source
799 (origin
800 (method url-fetch)
801 (uri (cran-uri "shinyFiles" version))
802 (sha256
803 (base32
8bc8cea9 804 "01as3l9ffj5dwac0vviais2x5l3027zxlj67kcvkdwxaj5hql33i"))))
92ce1883
RW
805 (properties `((upstream-name . "shinyFiles")))
806 (build-system r-build-system)
807 (propagated-inputs
808 `(("r-fs" ,r-fs)
809 ("r-htmltools" ,r-htmltools)
810 ("r-jsonlite" ,r-jsonlite)
811 ("r-shiny" ,r-shiny)
812 ("r-tibble" ,r-tibble)))
813 (home-page "https://github.com/thomasp85/shinyFiles")
814 (synopsis "Server-side file system viewer for Shiny")
815 (description
816 "This package provides functionality for client-side navigation of the
817server side file system in shiny apps. In case the app is running locally
818this gives the user direct access to the file system without the need to
819\"download\" files to a temporary location. Both file and folder selection as
820well as file saving is available.")
821 (license license:gpl2+)))
822
823(define-public r-crosstalk
824 (package
825 (name "r-crosstalk")
826 (version "1.0.0")
827 (source
828 (origin
829 (method url-fetch)
830 (uri (cran-uri "crosstalk" version))
831 (sha256
832 (base32
833 "0lfa89vhrzi7a1rghmygcjr8gzddw35sinb3jx6g49mc9jias7mk"))))
834 (build-system r-build-system)
835 (propagated-inputs
836 `(("r-ggplot2" ,r-ggplot2)
837 ("r-htmltools" ,r-htmltools)
838 ("r-jsonlite" ,r-jsonlite)
839 ("r-lazyeval" ,r-lazyeval)
840 ("r-r6" ,r-r6)
841 ("r-shiny" ,r-shiny)))
842 (home-page "https://rstudio.github.io/crosstalk/")
843 (synopsis "Inter-widget interactivity for HTML widgets")
844 (description
845 "This package provides building blocks for allowing HTML widgets to
846communicate with each other, with Shiny or without (i.e. static @code{.html}
847files). It currently supports linked brushing and filtering.")
848 (license license:expat)))
849
850(define-public r-rook
851 (package
852 (name "r-rook")
853 (version "1.1-1")
854 (source
855 (origin
856 (method url-fetch)
857 (uri (cran-uri "Rook" version))
858 (sha256
859 (base32
860 "00s9a0kr9rwxvlq433daxjk4ji8m0w60hjdprf502msw9kxfrx00"))))
861 (properties `((upstream-name . "Rook")))
862 (build-system r-build-system)
863 (propagated-inputs `(("r-brew" ,r-brew)))
864 (home-page "https://cran.r-project.org/web/packages/Rook")
865 (synopsis "Web server interface for R")
866 (description
867 "This package contains the Rook specification and convenience software
868for building and running Rook applications. A Rook application is an R
869reference class object that implements a @code{call} method or an R closure
870that takes exactly one argument, an environment, and returns a list with three
871named elements: the @code{status}, the @code{headers}, and the @code{body}.")
872 (license license:gpl2)))
873
874(define-public r-miniui
875 (package
876 (name "r-miniui")
877 (version "0.1.1.1")
878 (source
879 (origin
880 (method url-fetch)
881 (uri (cran-uri "miniUI" version))
882 (sha256
883 (base32
884 "1h5h2sc57h95d6bsgs95l26911g38hvjc1v50bc31xl9689l2as5"))))
885 (properties `((upstream-name . "miniUI")))
886 (build-system r-build-system)
887 (propagated-inputs
888 `(("r-htmltools" ,r-htmltools)
889 ("r-shiny" ,r-shiny)))
890 (home-page "https://cran.r-project.org/web/packages/miniUI/")
891 (synopsis "Shiny UI widgets for small screens")
892 (description
893 "This package provides UI widget and layout functions for writing Shiny apps that
894work well on small screens.")
895 (license license:gpl3)))
896
60a166c6
RW
897(define-public r-feather
898 (package
899 (name "r-feather")
1d7022f7 900 (version "0.3.3")
60a166c6
RW
901 (source
902 (origin
903 (method url-fetch)
904 (uri (cran-uri "feather" version))
905 (sha256
906 (base32
1d7022f7 907 "0ls8lmygyjq60467s88h66d7fczjp1d3a2106rfq4dx9lyfvdfsa"))))
60a166c6
RW
908 (build-system r-build-system)
909 (propagated-inputs
910 `(("r-hms" ,r-hms)
911 ("r-rcpp" ,r-rcpp)
912 ("r-tibble" ,r-tibble)))
913 (home-page "https://github.com/wesm/feather")
914 (synopsis "R Bindings to the Feather API")
915 (description "Read and write feather files, a lightweight binary columnar
916data store designed for maximum speed.")
917 (license license:asl2.0)))
918
2a2760a0
RW
919(define-public r-maps
920 (package
921 (name "r-maps")
922 (version "3.3.0")
923 (source
924 (origin
925 (method url-fetch)
926 (uri (cran-uri "maps" version))
927 (sha256
928 (base32
929 "05i2ppl5z4p8rawgqmy3z4ia05fcblpq1vvrmrkgkkpdlhczx6hr"))))
930 (build-system r-build-system)
931 (home-page "https://cran.r-project.org/web/packages/maps")
932 (synopsis "Draw geographical maps")
933 (description "This package provides an R module for display of maps.
36a4366d
EF
934Projection code and larger maps are in separate packages (@code{mapproj} and
935@code{mapdata}).")
2a2760a0
RW
936 (license license:gpl2)))
937
938(define-public r-mapproj
939 (package
940 (name "r-mapproj")
941 (version "1.2.6")
942 (source
943 (origin
944 (method url-fetch)
945 (uri (cran-uri "mapproj" version))
946 (sha256
947 (base32
948 "1rggww8cbwv0vzlj5afzhbsbngg4bzj5znbkz7wmxsbshfbsm9b2"))))
949 (build-system r-build-system)
950 (propagated-inputs `(("r-maps" ,r-maps)))
951 (home-page "https://cran.r-project.org/web/packages/mapproj")
952 (synopsis "Map projection in R")
953 (description "This package converts latitude/longitude into projected
954coordinates.")
955 (license (list license:gpl2 ; The R interface
956 (license:non-copyleft ; The C code
957 "https://www.gnu.org/licenses/license-list.en.html#lucent102"
958 "Lucent Public License Version 1.02")))))
959
960(define-public r-rgooglemaps
961 (package
962 (name "r-rgooglemaps")
963 (version "1.4.3")
964 (source
965 (origin
966 (method url-fetch)
967 (uri (cran-uri "RgoogleMaps" version))
968 (sha256
969 (base32
970 "06ab3lg1rwm93hkshf1vxfm8mlxq5qsjan0wx43lhnrysay65js4"))))
971 (properties `((upstream-name . "RgoogleMaps")))
972 (build-system r-build-system)
973 (propagated-inputs `(("r-png" ,r-png)))
974 (home-page "https://cran.r-project.org/web/packages/RgoogleMaps")
975 (synopsis "Use Google Maps in R")
976 (description "This package serves two purposes:
977@enumerate
978@item Provide a comfortable R interface to query the Google server for static
979 maps, and
980@item Use the map as a background image to overlay plots within R. This
981 requires proper coordinate scaling.
982@end enumerate\n")
983 (license license:gpl2+)))
984
985(define-public r-geosphere
986 (package
987 (name "r-geosphere")
988 (version "1.5-7")
989 (source
990 (origin
991 (method url-fetch)
992 (uri (cran-uri "geosphere" version))
993 (sha256
994 (base32
995 "186qdm5niq7v3d4w4rngx71znsgi44hnam7698bsx9ar5mg5b6wx"))))
996 (build-system r-build-system)
997 (propagated-inputs `(("r-sp" ,r-sp)))
998 (home-page "https://cran.r-project.org/web/packages/geosphere")
999 (synopsis "Spherical trigonometry")
1000 (description "This package computes spherical trigonometry for geographic
1001applications. That is, compute distances and related measures for angular
1002(longitude/latitude) locations.")
1003 (license license:gpl3+)))
1004
1005(define-public r-ggmap
1006 (package
1007 (name "r-ggmap")
20662a30 1008 (version "3.0.0")
2a2760a0
RW
1009 (source
1010 (origin
1011 (method url-fetch)
1012 (uri (cran-uri "ggmap" version))
1013 (sha256
1014 (base32
20662a30 1015 "13dmzl6z62pzjiffilarkji46vy0sacxa8a7mhrhc3biq3ylzhln"))))
2a2760a0
RW
1016 (build-system r-build-system)
1017 (propagated-inputs
20662a30
RW
1018 `(("r-bitops" ,r-bitops)
1019 ("r-digest" ,r-digest)
1020 ("r-dplyr" ,r-dplyr)
2a2760a0 1021 ("r-ggplot2" ,r-ggplot2)
20662a30
RW
1022 ("r-glue" ,r-glue)
1023 ("r-httr" ,r-httr)
2a2760a0 1024 ("r-jpeg" ,r-jpeg)
20662a30 1025 ("r-magrittr" ,r-magrittr)
2a2760a0
RW
1026 ("r-plyr" ,r-plyr)
1027 ("r-png" ,r-png)
20662a30 1028 ("r-purrr" ,r-purrr)
2a2760a0
RW
1029 ("r-rgooglemaps" ,r-rgooglemaps)
1030 ("r-rjson" ,r-rjson)
20662a30
RW
1031 ("r-scales" ,r-scales)
1032 ("r-stringr" ,r-stringr)
1033 ("r-tibble" ,r-tibble)
1034 ("r-tidyr" ,r-tidyr)))
2a2760a0
RW
1035 (home-page "https://github.com/dkahle/ggmap")
1036 (synopsis "Spatial visualization with ggplot2")
1037 (description "This package provides a collection of functions to visualize
1038spatial data and models on top of static maps from various online sources (e.g
1039Google Maps and Stamen Maps). It includes tools common to those tasks,
1040including functions for geolocation and routing.")
1041 (license license:gpl2)))
1042
d2a507ef
CR
1043(define-public r-haven
1044 (package
1045 (name "r-haven")
bef78244 1046 (version "2.1.0")
d2a507ef
CR
1047 (source
1048 (origin
1049 (method url-fetch)
1050 (uri (cran-uri "haven" version))
1051 (sha256
1052 (base32
bef78244 1053 "0x5fwc4q2gdxwwp5sxdd6q17jhpisd769y9kv0xgnjcm0cdwz8f0"))))
d2a507ef 1054 (build-system r-build-system)
35b32367
TGR
1055 (inputs
1056 `(("zlib" ,zlib)))
d2a507ef
CR
1057 (propagated-inputs
1058 `(("r-forcats" ,r-forcats)
1059 ("r-hms" ,r-hms)
1060 ("r-rcpp" ,r-rcpp)
1061 ("r-readr" ,r-readr)
1062 ("r-tibble" ,r-tibble)))
1063 (home-page "https://haven.tidyverse.org")
1064 (synopsis "Import and Export 'SPSS', 'Stata' and 'SAS' Files")
1065 (description
1066 "This package lets you mport foreign statistical formats into R via the
1067embedded @url{https://github.com/WizardMac/ReadStat,ReadStat} C library.")
1068 (license license:expat)))
1069
996bed06
RJ
1070(define-public r-amap
1071 (package
1072 (name "r-amap")
c86da03a 1073 (version "0.8-17")
996bed06
RJ
1074 (source (origin
1075 (method url-fetch)
1076 (uri (cran-uri "amap" version))
1077 (sha256
1078 (base32
c86da03a 1079 "1il94bkhl8192vawq4gr2gwyhqhid27jr2312rhvr72ssg8p713b"))))
996bed06 1080 (build-system r-build-system)
c86da03a 1081 (native-inputs
996bed06
RJ
1082 `(("gfortran" ,gfortran)))
1083 (home-page "http://mulcyber.toulouse.inra.fr/projects/amap/")
1084 (synopsis "Another multidimensional analysis package")
1085 (description "This package provides tools for clustering and principal
1086component analysis (with robust methods, and parallelized functions).")
1087 (license license:gpl2+)))
1088
53cc59a1
RW
1089(define-public r-ape
1090 (package
1091 (name "r-ape")
8e91ad0b 1092 (version "5.3")
53cc59a1
RW
1093 (source
1094 (origin
1095 (method url-fetch)
1096 (uri (cran-uri "ape" version))
1097 (sha256
1098 (base32
8e91ad0b 1099 "08wbk1kxhs32bmmvqlqanbdg1w235amd35k8m00fngsj9h9xzc08"))))
53cc59a1
RW
1100 (build-system r-build-system)
1101 (propagated-inputs
1102 `(("r-lattice" ,r-lattice)
1103 ("r-nlme" ,r-nlme)
1104 ("r-rcpp" ,r-rcpp)))
1105 (home-page "http://ape-package.ird.fr/")
1106 (synopsis "Analyses of phylogenetics and evolution")
1107 (description
1108 "This package provides functions for reading, writing, plotting, and
1109manipulating phylogenetic trees, analyses of comparative data in a
1110phylogenetic framework, ancestral character analyses, analyses of
1111diversification and macroevolution, computing distances from DNA sequences,
1112and several other tools.")
1113 (license license:gpl2+)))
1114
109b2f7c
VV
1115(define-public r-abbyyr
1116 (package
1117 (name "r-abbyyr")
5479e3e6 1118 (version "0.5.4")
109b2f7c
VV
1119 (source
1120 (origin
1121 (method url-fetch)
1122 (uri (cran-uri "abbyyR" version))
1123 (sha256
1124 (base32
5479e3e6 1125 "1jh1c1ad6mgw7brdh2isnza1qpjlfxnqr7jl76yd93axyfl76xjx"))))
109b2f7c
VV
1126 (properties `((upstream-name . "abbyyR")))
1127 (build-system r-build-system)
1128 (propagated-inputs
1129 `(("r-curl" ,r-curl)
1130 ("r-httr" ,r-httr)
1131 ("r-plyr" ,r-plyr)
1132 ("r-progress" ,r-progress)
1133 ("r-readr" ,r-readr)
1134 ("r-xml" ,r-xml)))
1135 (home-page "https://github.com/soodoku/abbyyR")
1136 (synopsis "Access to Abbyy Optical Character Recognition (OCR) API")
1137 (description
1138 "This package provides tools to get text from images of text using Abbyy
1139Cloud Optical Character Recognition (OCR) API. With abbyyyR, one can easily
1140OCR images, barcodes, forms, documents with machine readable zones, e.g.
1141passports and get the results in a variety of formats including plain text and
1142XML. To learn more about the Abbyy OCR API, see @url{http://ocrsdk.com/}.")
1143 (license license:expat)))
1144
056468dc
RW
1145(define-public r-colorspace
1146 (package
1147 (name "r-colorspace")
f9bc918b 1148 (version "1.4-1")
056468dc
RW
1149 (source
1150 (origin
1151 (method url-fetch)
1152 (uri (cran-uri "colorspace" version))
1153 (sha256
f9bc918b 1154 (base32 "0wyny3ah2d74hqv80s6imrarpna09gq3j9rjnz6zx2qg0lx72gb9"))))
056468dc 1155 (build-system r-build-system)
e9960d8c 1156 (home-page "https://cran.r-project.org/web/packages/colorspace")
056468dc
RW
1157 (synopsis "Color space manipulation")
1158 (description
1159 "This package carries out a mapping between assorted color spaces
1160including RGB, HSV, HLS, CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB and polar
1161CIELAB. Qualitative, sequential, and diverging color palettes based on HCL
1162colors are provided.")
1163 (license license:bsd-3)))
5bee6bf4
RW
1164
1165(define-public r-glue
1166 (package
1167 (name "r-glue")
b21eb347 1168 (version "1.3.1")
5bee6bf4
RW
1169 (source
1170 (origin
1171 (method url-fetch)
1172 (uri (cran-uri "glue" version))
1173 (sha256
1174 (base32
b21eb347 1175 "1a1ycg9r3gd91visp49q49rsrdgyf8kr9dxdy3hk99kikn4z5hag"))))
5bee6bf4
RW
1176 (build-system r-build-system)
1177 (home-page "https://github.com/tidyverse/glue")
1178 (synopsis "Interpreted string literals")
1179 (description
1180 "This package provides an implementation of interpreted string literals,
1181inspired by Python's Literal String Interpolation (PEP-0498) and
1182Docstrings (PEP-0257) and Julia's Triple-Quoted String Literals.")
1183 (license license:expat)))
847b4572 1184
ddbf2a98
RJ
1185(define-public r-pastecs
1186 (package
1187 (name "r-pastecs")
1188 (version "1.3.21")
1189 (source (origin
1190 (method url-fetch)
1191 (uri (cran-uri "pastecs" version))
1192 (sha256
1193 (base32
1194 "0z4dic94ar646w7zc2ggi5hgvf2qnznsani94c5pyql8zspz47lc"))))
1195 (build-system r-build-system)
1196 (propagated-inputs
1197 `(("r-boot" ,r-boot)))
1198 (home-page "http://www.sciviews.org/pastecs")
1199 (synopsis "Analysis of space-time ecological series")
1200 (description
1201 "This package provides functions for regulation, decomposition and analysis
1202of space-time series. The @code{pastecs} library is a PNEC-Art4 and IFREMER
1203initiative to bring PASSTEC 2000 functionalities to R.")
1204 (license license:gpl2+)))
1205
847b4572
RW
1206(define-public r-plogr
1207 (package
1208 (name "r-plogr")
0e947804 1209 (version "0.2.0")
847b4572
RW
1210 (source
1211 (origin
1212 (method url-fetch)
1213 (uri (cran-uri "plogr" version))
1214 (sha256
1215 (base32
0e947804 1216 "0a8dhzlna79ggyhfr0nncgh15a9n6r0dsz664pz0ah323wpblqqf"))))
847b4572
RW
1217 (build-system r-build-system)
1218 (home-page "https://github.com/krlmlr/plogr")
1219 (synopsis "R bindings for the plog C++ logging library")
1220 (description
1221 "This package provides the header files for a stripped-down version of
1222the plog header-only C++ logging library, and a method to log to R's standard
1223error stream.")
1224 (license license:expat)))
a8cba9dd 1225
a86049d9
TGR
1226(define-public r-pls
1227 (package
1228 (name "r-pls")
6f2fa038 1229 (version "2.7-1")
a86049d9
TGR
1230 (source
1231 (origin
1232 (method url-fetch)
1233 (uri (cran-uri "pls" version))
1234 (sha256
1235 (base32
6f2fa038 1236 "0jw3zl5z06023zxr74phnvwax8m3i4a4i6lsqiq6j15aq9zq3zgq"))))
a86049d9
TGR
1237 (build-system r-build-system)
1238 (home-page "http://mevik.net/work/software/pls.html")
1239 (synopsis "Partial Least Squares and Principal Component Regression")
1240 (description
1241 "The pls package implements multivariate regression methods: Partial Least
1242Squares Regression (@dfn{PLSR}), Principal Component Regression (@dfn{PCR}), and
1243Canonical Powered Partial Least Squares (@dfn{CPPLS}). It supports:
1244
1245@itemize
1246@item several algorithms: the traditional orthogonal scores (@dfn{NIPALS}) PLS
1247algorithm, kernel PLS, wide kernel PLS, Simpls, and PCR through @code{svd}
1248@item multi-response models (or @dfn{PLS2})
1249@item flexible cross-validation
1250@item Jackknife variance estimates of regression coefficients
1251@item extensive and flexible plots: scores, loadings, predictions, coefficients,
1252(R)MSEP, R², and correlation loadings
1253@item formula interface, modelled after @code{lm()}, with methods for predict,
1254print, summary, plot, update, etc.
1255@item extraction functions for coefficients, scores, and loadings
1256@item MSEP, RMSEP, and R² estimates
1257@item multiplicative scatter correction (@dfn{MSC})
1258@end itemize\n")
1259 (license license:gpl2)))
1260
b55e64d4
TGR
1261(define-public r-ps
1262 (package
1263 (name "r-ps")
422dea17 1264 (version "1.3.0")
b55e64d4
TGR
1265 (source
1266 (origin
1267 (method url-fetch)
1268 (uri (cran-uri "ps" version))
1269 (sha256
422dea17 1270 (base32 "1lcq7r0q4jb8x6k023zr2ydj2dg925bqqbkhx1phpnyjrk897498"))))
b55e64d4
TGR
1271 (build-system r-build-system)
1272 (home-page "http://ps.r-lib.org")
1273 (synopsis "List, query, and manipulate system processes")
1274 (description
1275 "The ps package implements an API to list, query, and manipulate system
1276processes. Most of its code is based on the @code{psutil} Python package.")
1277 (license license:bsd-3)))
1278
4f8247b5
RW
1279(define-public r-pkgbuild
1280 (package
1281 (name "r-pkgbuild")
4c871a55 1282 (version "1.0.3")
4f8247b5
RW
1283 (source
1284 (origin
1285 (method url-fetch)
1286 (uri (cran-uri "pkgbuild" version))
1287 (sha256
1288 (base32
4c871a55 1289 "0k8zwa66rm1ncx19ld5mbaxcjxkswiczpdqyssy44vl8k6scwfn9"))))
4f8247b5
RW
1290 (build-system r-build-system)
1291 (propagated-inputs
1292 `(("r-callr" ,r-callr)
2657e666 1293 ("r-cli" ,r-cli)
4f8247b5
RW
1294 ("r-crayon" ,r-crayon)
1295 ("r-desc" ,r-desc)
2657e666 1296 ("r-prettyunits" ,r-prettyunits)
4f8247b5
RW
1297 ("r-r6" ,r-r6)
1298 ("r-rprojroot" ,r-rprojroot)
1299 ("r-withr" ,r-withr)))
1300 (home-page "https://github.com/r-pkgs/pkgbuild")
1301 (synopsis "Find tools needed to build R packages")
1302 (description
1303 "This package provides functions used to build R packages. It locates
1304compilers needed to build R packages on various platforms and ensures the PATH
1305is configured appropriately so R can use them.")
1306 (license license:gpl3)))
1307
e362be8e
RW
1308(define-public r-pkgload
1309 (package
1310 (name "r-pkgload")
65dd0e67 1311 (version "1.0.2")
e362be8e
RW
1312 (source
1313 (origin
1314 (method url-fetch)
1315 (uri (cran-uri "pkgload" version))
1316 (sha256
1317 (base32
65dd0e67 1318 "0z7jvharafahi2gv5547mk1n499isjzw06kfwymmxc0gd575d1ii"))))
e362be8e
RW
1319 (build-system r-build-system)
1320 (propagated-inputs
1321 `(("r-desc" ,r-desc)
1322 ("r-pkgbuild" ,r-pkgbuild)
1323 ("r-rlang" ,r-rlang)
1324 ("r-rprojroot" ,r-rprojroot)
1325 ("r-rstudioapi" ,r-rstudioapi)
1326 ("r-withr" ,r-withr)))
1327 (home-page "https://github.com/r-lib/pkgload")
1328 (synopsis "Simulate package installation and attach")
1329 (description
1330 "This package simulates the process of installing a package and then
1331attaching it. This is a key part of the @code{devtools} package as it allows
1332you to rapidly iterate while developing a package.")
1333 (license license:gpl3)))
1334
a8cba9dd
RW
1335(define-public r-rcpp
1336 (package
1337 (name "r-rcpp")
06070c03 1338 (version "1.0.1")
a8cba9dd
RW
1339 (source
1340 (origin
1341 (method url-fetch)
1342 (uri (cran-uri "Rcpp" version))
1343 (sha256
06070c03 1344 (base32 "015rmxns8mhmnd9wnz9bmma4iwx2sf4bcwkkp9hcgvdmblzf0vg7"))))
a8cba9dd 1345 (build-system r-build-system)
f87a18e6
RW
1346 (native-inputs
1347 `(("r-knitr" ,r-knitr))) ; for vignettes
a8cba9dd
RW
1348 (home-page "http://www.rcpp.org")
1349 (synopsis "Seamless R and C++ integration")
1350 (description
1351 "The Rcpp package provides R functions as well as C++ classes which offer
1352a seamless integration of R and C++. Many R data types and objects can be
1353mapped back and forth to C++ equivalents which facilitates both writing of new
1354code as well as easier integration of third-party libraries. Documentation
1355about Rcpp is provided by several vignettes included in this package, via the
36a4366d 1356@code{Rcpp Gallery} site at <http://gallery.rcpp.org>, the paper by Eddelbuettel
a8cba9dd 1357and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see
36a4366d 1358@code{citation(\"Rcpp\")} for details on these last two.")
a8cba9dd 1359 (license license:gpl2+)))
eed58a08
RW
1360
1361(define-public r-bindr
1362 (package
1363 (name "r-bindr")
eb575e95 1364 (version "0.1.1")
eed58a08
RW
1365 (source
1366 (origin
1367 (method url-fetch)
1368 (uri (cran-uri "bindr" version))
1369 (sha256
1370 (base32
eb575e95 1371 "1l05fpk2yql3jka321c0bdgx6mqq9pvfrg2844lbjfpbgjkmqy3w"))))
eed58a08
RW
1372 (build-system r-build-system)
1373 (home-page "https://github.com/krlmlr/bindr")
1374 (synopsis "Parametrized active bindings")
1375 (description
1376 "This package provides a simple interface for creating active bindings
1377where the bound function accepts additional arguments.")
1378 (license license:expat)))
4bb0b4cc
RW
1379
1380(define-public r-bindrcpp
1381 (package
1382 (name "r-bindrcpp")
9f17c056 1383 (version "0.2.2")
4bb0b4cc
RW
1384 (source
1385 (origin
1386 (method url-fetch)
1387 (uri (cran-uri "bindrcpp" version))
1388 (sha256
1389 (base32
9f17c056 1390 "0rz4ibjdjsxl99ff3ha79z7cnjmilx4rx58fk9kk7ld9xc4hf4s8"))))
4bb0b4cc
RW
1391 (build-system r-build-system)
1392 (propagated-inputs
1393 `(("r-bindr" ,r-bindr)
1394 ("r-plogr" ,r-plogr)
1395 ("r-rcpp" ,r-rcpp)))
1396 (home-page "https://github.com/krlmlr/bindrcpp")
1397 (synopsis "Rcpp interface to active bindings")
1398 (description
1399 "This package provides an easy way to fill an environment with active
1400bindings that call a C++ function.")
1401 (license license:expat)))
33ce12e2
RW
1402
1403(define-public r-auc
1404 (package
1405 (name "r-auc")
1406 (version "0.3.0")
1407 (source
1408 (origin
1409 (method url-fetch)
1410 (uri (cran-uri "AUC" version))
1411 (sha256
1412 (base32
1413 "0ripcib2qz0m7rgr1kiz68nx8f6p408l1ww7j78ljqik7p3g41g7"))))
1414 (properties `((upstream-name . "AUC")))
1415 (build-system r-build-system)
e9960d8c 1416 (home-page "https://cran.r-project.org/web/packages/AUC")
33ce12e2
RW
1417 (synopsis "Compute the area under the curve of selected measures")
1418 (description
1419 "This package includes functions to compute the area under the curve of
1420selected measures: the area under the sensitivity curve (AUSEC), the area
1421under the specificity curve (AUSPC), the area under the accuracy
1422curve (AUACC), and the area under the receiver operating characteristic
1423curve (AUROC). The curves can also be visualized. Support for partial areas
1424is provided.")
1425 (license license:gpl2+)))
c69d27db
RW
1426
1427(define-public r-calibrate
1428 (package
1429 (name "r-calibrate")
1430 (version "1.7.2")
1431 (source
1432 (origin
1433 (method url-fetch)
1434 (uri (cran-uri "calibrate" version))
1435 (sha256
1436 (base32
1437 "010nb1nb9y7zhw2k6d2i2drwy5brp7b83mjj2w7i3wjp9xb6l1kq"))))
1438 (build-system r-build-system)
1439 (propagated-inputs
1440 `(("r-mass" ,r-mass)))
e9960d8c 1441 (home-page "https://cran.r-project.org/web/packages/calibrate")
c69d27db
RW
1442 (synopsis "Calibration of scatterplot and biplot axes")
1443 (description
1444 "This is a package for drawing calibrated scales with tick marks
1445on (non-orthogonal) variable vectors in scatterplots and biplots.")
1446 (license license:gpl2)))
2bdb5c3f
RW
1447
1448(define-public r-shape
1449 (package
1450 (name "r-shape")
fe5b8893 1451 (version "1.4.4")
2bdb5c3f
RW
1452 (source
1453 (origin
1454 (method url-fetch)
1455 (uri (cran-uri "shape" version))
1456 (sha256
1457 (base32
fe5b8893 1458 "0hadk3mapkhbh8xjkiz52vxdagmmgvm15xwpzb90ikw4giyipjzl"))))
2bdb5c3f 1459 (build-system r-build-system)
e9960d8c 1460 (home-page "https://cran.r-project.org/web/packages/shape")
2bdb5c3f
RW
1461 (synopsis "Functions for plotting graphical shapes")
1462 (description
1463 "This package provides functions for plotting graphical shapes such as
1464ellipses, circles, cylinders, arrows, ...")
1465 (license license:gpl3+)))
4847a62e
RW
1466
1467(define-public r-globaloptions
1468 (package
1469 (name "r-globaloptions")
693b4d0b 1470 (version "0.1.0")
4847a62e
RW
1471 (source
1472 (origin
1473 (method url-fetch)
1474 (uri (cran-uri "GlobalOptions" version))
1475 (sha256
1476 (base32
693b4d0b 1477 "1wlyqz1yhmhjwslrd7q69jbd9vsbjkjfc01g60kl3cdpyr8hlyjn"))))
4847a62e
RW
1478 (properties `((upstream-name . "GlobalOptions")))
1479 (build-system r-build-system)
1480 (home-page "https://github.com/jokergoo/GlobalOptions")
1481 (synopsis "Generate functions to get or set global options")
1482 (description
1483 "This package provides more controls on the option values such as
1484validation and filtering on the values, making options invisible or private.")
1485 (license license:gpl2+)))
2856369f
RW
1486
1487(define-public r-circlize
1488 (package
1489 (name "r-circlize")
b15c5c0e 1490 (version "0.4.6")
2856369f
RW
1491 (source
1492 (origin
1493 (method url-fetch)
1494 (uri (cran-uri "circlize" version))
1495 (sha256
1496 (base32
b15c5c0e 1497 "1yjnb88pnzk5c1p0vjxykc7cr3394ln5axviqcf12ajibvy8rj6f"))))
2856369f
RW
1498 (build-system r-build-system)
1499 (propagated-inputs
1500 `(("r-colorspace" ,r-colorspace)
1501 ("r-globaloptions" ,r-globaloptions)
1502 ("r-shape" ,r-shape)))
1503 (home-page "https://github.com/jokergoo/circlize")
1504 (synopsis "Circular visualization")
1505 (description
031462ba
TGR
1506 "Circular layout is an efficient way to visualise huge amounts of
1507information. This package provides an implementation of circular layout
1508generation in R as well as an enhancement of available software. Its
1509flexibility is based on the usage of low-level graphics functions such that
1510self-defined high-level graphics can be easily implemented by users for
1511specific purposes. Together with the seamless connection between the powerful
1512computational and visual environment in R, it gives users more convenience and
1513freedom to design figures for better understanding complex patterns behind
1514multi-dimensional data.")
2856369f 1515 (license license:gpl2+)))
5cc79c9c
RW
1516
1517(define-public r-powerlaw
1518 (package
1519 (name "r-powerlaw")
397dba01 1520 (version "0.70.2")
5cc79c9c
RW
1521 (source
1522 (origin
1523 (method url-fetch)
1524 (uri (cran-uri "poweRlaw" version))
1525 (sha256
1526 (base32
397dba01 1527 "1asr6ikr7hmj78jyg8r1gwvcjg14addkxdiz92nh06lv71a183r4"))))
5cc79c9c
RW
1528 (properties `((upstream-name . "poweRlaw")))
1529 (build-system r-build-system)
1530 (propagated-inputs
1531 `(("r-vgam" ,r-vgam)))
1532 (home-page "https://github.com/csgillespie/poweRlaw")
1533 (synopsis "Tools for the analysis of heavy tailed distributions")
1534 (description
1535 "This package provides an implementation of maximum likelihood estimators
1536for a variety of heavy tailed distributions, including both the discrete and
1537continuous power law distributions. Additionally, a goodness-of-fit based
1538approach is used to estimate the lower cut-off for the scaling region.")
1539 ;; Any of these GPL versions.
1540 (license (list license:gpl2 license:gpl3))))
05486604
RW
1541
1542(define-public r-compare
1543 (package
1544 (name "r-compare")
1545 (version "0.2-6")
1546 (source
1547 (origin
1548 (method url-fetch)
1549 (uri (cran-uri "compare" version))
1550 (sha256
1551 (base32
1552 "0k9zms930b5dz9gy8414li21wy0zg9x9vp7301v5cvyfi0g7xzgw"))))
1553 (build-system r-build-system)
e9960d8c 1554 (home-page "https://cran.r-project.org/web/packages/compare")
05486604
RW
1555 (synopsis "Comparing objects for differences")
1556 (description
1557 "This package provides functions to compare a model object to a
1558comparison object. If the objects are not identical, the functions can be
1559instructed to explore various modifications of the objects (e.g., sorting
1560rows, dropping names) to see if the modified versions are identical.")
1561 (license license:gpl2+)))
d3c67e1b
RW
1562
1563(define-public r-dendextend
1564 (package
1565 (name "r-dendextend")
089ac9af 1566 (version "1.12.0")
d3c67e1b
RW
1567 (source
1568 (origin
1569 (method url-fetch)
1570 (uri (cran-uri "dendextend" version))
1571 (sha256
1572 (base32
089ac9af 1573 "0mgsc9qkr5p6hss3wychdjvk263ay48yx543wawj72l7q7cgx1xl"))))
d3c67e1b
RW
1574 (build-system r-build-system)
1575 (propagated-inputs
089ac9af 1576 `(("r-ggplot2" ,r-ggplot2)
d3c67e1b 1577 ("r-magrittr" ,r-magrittr)
089ac9af 1578 ("r-viridis" ,r-viridis)))
d3c67e1b
RW
1579 (home-page "https://cran.r-project.org/web/packages/dendextend")
1580 (synopsis "Extending 'dendrogram' functionality in R")
1581 (description
1582 "This package offers a set of functions for extending @code{dendrogram}
1583objects in R, letting you visualize and compare trees of hierarchical
1584clusterings. You can adjust a tree's graphical parameters (the color, size,
1585type, etc of its branches, nodes and labels) and visually and statistically
1586compare different dendrograms to one another.")
1587 ;; Any of these versions
1588 (license (list license:gpl2 license:gpl3))))
e0268ff2
RW
1589
1590(define-public r-getoptlong
1591 (package
1592 (name "r-getoptlong")
5fa9be11 1593 (version "0.1.7")
e0268ff2
RW
1594 (source
1595 (origin
1596 (method url-fetch)
1597 (uri (cran-uri "GetoptLong" version))
1598 (sha256
1599 (base32
5fa9be11 1600 "1fl3w2n602ldybc5qj7qw4xmzzb804bsjkqwf6dswzj0vf0qiadr"))))
e0268ff2
RW
1601 (properties `((upstream-name . "GetoptLong")))
1602 (build-system r-build-system)
1603 (inputs
1604 `(("perl" ,perl)))
1605 (propagated-inputs
1606 `(("r-globaloptions" ,r-globaloptions)
1607 ("r-rjson" ,r-rjson)))
1608 (home-page "https://github.com/jokergoo/GetoptLong")
1609 (synopsis "Parsing command-line arguments and variable interpolation")
1610 (description
1611 "This is yet another command-line argument parser which wraps the
1612powerful Perl module @code{Getopt::Long} and with some adaptation for easier
1613use in R. It also provides a simple way for variable interpolation in R.")
1614 (license license:gpl2+)))
f2e974e1
RW
1615
1616(define-public r-fastmatch
1617 (package
1618 (name "r-fastmatch")
1619 (version "1.1-0")
1620 (source
1621 (origin
1622 (method url-fetch)
1623 (uri (cran-uri "fastmatch" version))
1624 (sha256
1625 (base32
1626 "0z80jxkygmzn11sq0c2iz357s9bpki548lg926g85gldhfj1md90"))))
1627 (build-system r-build-system)
1628 (home-page "http://www.rforge.net/fastmatch")
1629 (synopsis "Fast match function")
1630 (description
1631 "This package provides a fast @code{match} replacement for cases that
1632require repeated look-ups. It is slightly faster that R's built-in
1633@code{match} function on first match against a table, but extremely fast on
1634any subsequent lookup as it keeps the hash table in memory.")
1635 (license license:gpl2)))
a7f0faa2
RW
1636
1637(define-public r-ff
1638 (package
1639 (name "r-ff")
207c497e 1640 (version "2.2-14")
a7f0faa2
RW
1641 (source
1642 (origin
1643 (method url-fetch)
1644 (uri (cran-uri "ff" version))
1645 (sha256
1646 (base32
207c497e 1647 "1w724q4jpzbvzpilb2ifviaxkjgk9lzwxz9gksnvicbmfa20fqqw"))))
a7f0faa2
RW
1648 (build-system r-build-system)
1649 (propagated-inputs `(("r-bit" ,r-bit)))
1650 (home-page "http://ff.r-forge.r-project.org/")
1651 (synopsis "Memory-efficient storage of large data on disk and access functions")
1652 (description
1653 "This package provides data structures that are stored on disk but
1654behave (almost) as if they were in RAM by transparently mapping only a section
1655in main memory.")
a6e67d86
EF
1656 ;; error Architecture not supported.
1657 (supported-systems (delete "aarch64-linux" %supported-systems))
a7f0faa2 1658 (license license:gpl2)))
49c9c297
RW
1659
1660(define-public r-ffbase
1661 (package
1662 (name "r-ffbase")
ec0ee085 1663 (version "0.12.7")
49c9c297
RW
1664 (source
1665 (origin
1666 (method url-fetch)
1667 (uri (cran-uri "ffbase" version))
1668 (sha256
1669 (base32
ec0ee085 1670 "04kxx2f3f0743c5nvpb7x1x0pcd220dazpd5ag1pidxbz3xa85nw"))))
49c9c297
RW
1671 (build-system r-build-system)
1672 (propagated-inputs
1673 `(("r-bit" ,r-bit)
1674 ("r-fastmatch" ,r-fastmatch)
1675 ("r-ff" ,r-ff)))
1676 (home-page "http://github.com/edwindj/ffbase")
1677 (synopsis "Basic statistical functions for package 'ff'")
1678 (description
1679 "This package extends the out of memory vectors of @code{ff} with
1680statistical functions and other utilities to ease their usage.")
1681 (license license:gpl3)))
18a16ceb
RW
1682
1683(define-public r-prettyunits
1684 (package
1685 (name "r-prettyunits")
1686 (version "1.0.2")
1687 (source
1688 (origin
1689 (method url-fetch)
1690 (uri (cran-uri "prettyunits" version))
1691 (sha256
1692 (base32
1693 "0p3z42hnk53x7ky4d1dr2brf7p8gv3agxr71i99m01n2hq2ri91m"))))
1694 (build-system r-build-system)
1695 (propagated-inputs
1696 `(("r-assertthat" ,r-assertthat)
1697 ("r-magrittr" ,r-magrittr)))
1698 (home-page "https://github.com/gaborcsardi/prettyunits")
1699 (synopsis "Pretty, human readable formatting of quantities")
1700 (description
1701 "This package provides tools for pretty, human readable formatting of
1702quantities.")
1703 (license license:expat)))
71be51d5
RW
1704
1705(define-public r-reshape
1706 (package
1707 (name "r-reshape")
2b8126a4 1708 (version "0.8.8")
71be51d5
RW
1709 (source
1710 (origin
1711 (method url-fetch)
1712 (uri (cran-uri "reshape" version))
1713 (sha256
1714 (base32
2b8126a4 1715 "0s6i0sqxg1vldxs6miv8mi0zydxbqzgpmzfiwkj8y7jix3yrfmad"))))
71be51d5
RW
1716 (build-system r-build-system)
1717 (propagated-inputs
1718 `(("r-plyr" ,r-plyr)
1719 ("r-rcpp" ,r-rcpp)))
1720 (home-page "http://had.co.nz/reshape")
1721 (synopsis "Flexibly reshape data")
1722 (description
1723 "Flexibly restructure and aggregate data using just two functions:
1724@code{melt} and @code{cast}. This package provides them.")
1725 (license license:expat)))
c9c6f4b5
RW
1726
1727(define-public r-progress
1728 (package
1729 (name "r-progress")
7e8ac56a 1730 (version "1.2.2")
c9c6f4b5
RW
1731 (source
1732 (origin
1733 (method url-fetch)
1734 (uri (cran-uri "progress" version))
1735 (sha256
1736 (base32
7e8ac56a 1737 "0dgzb362641aqm8xd88iqa8jmpdm43xs0aba0d5kk6fvapnxi95l"))))
c9c6f4b5
RW
1738 (build-system r-build-system)
1739 (propagated-inputs
9de9dcd9
RW
1740 `(("r-crayon" ,r-crayon)
1741 ("r-hms" ,r-hms)
1742 ("r-prettyunits" ,r-prettyunits)
c9c6f4b5
RW
1743 ("r-r6" ,r-r6)))
1744 (home-page "https://github.com/gaborcsardi/progress")
1745 (synopsis "Terminal progress bars")
1746 (description
1747 "This package provides configurable progress bars. They may include
1748percentage, elapsed time, and/or the estimated completion time. They work in
1749terminals, in Emacs ESS, RStudio, Windows Rgui, and the macOS R.app. The
1750package also provides a C++ API, that works with or without Rcpp.")
1751 (license license:expat)))
ac840207
RW
1752
1753(define-public r-ggally
1754 (package
1755 (name "r-ggally")
9944399a 1756 (version "1.4.0")
ac840207
RW
1757 (source
1758 (origin
1759 (method url-fetch)
1760 (uri (cran-uri "GGally" version))
1761 (sha256
1762 (base32
9944399a 1763 "1zjmcc5bzagvy7c5cmdcl39xmx07fwi98yrj4i05w7y40kqcsiws"))))
ac840207
RW
1764 (properties `((upstream-name . "GGally")))
1765 (build-system r-build-system)
9944399a
RW
1766 (inputs
1767 `(("libressl" ,libressl)))
ac840207
RW
1768 (propagated-inputs
1769 `(("r-ggplot2" ,r-ggplot2)
1770 ("r-gtable" ,r-gtable)
1771 ("r-plyr" ,r-plyr)
1772 ("r-progress" ,r-progress)
1773 ("r-rcolorbrewer" ,r-rcolorbrewer)
9944399a
RW
1774 ("r-reshape" ,r-reshape)
1775 ("r-rlang" ,r-rlang)))
ac840207
RW
1776 (home-page "https://ggobi.github.io/ggally")
1777 (synopsis "Extension to ggplot2")
1778 (description
1779 "The R package ggplot2 is a plotting system based on the grammar of
1780graphics. GGally extends ggplot2 by adding several functions to reduce the
1781complexity of combining geometric objects with transformed data. Some of
1782these functions include a pairwise plot matrix, a two group pairwise plot
1783matrix, a parallel coordinates plot, a survival plot, and several functions to
1784plot networks.")
1785 (license license:gpl2+)))
3349faec
RW
1786
1787(define-public r-proxy
1788 (package
1789 (name "r-proxy")
e190d9af 1790 (version "0.4-23")
3349faec
RW
1791 (source
1792 (origin
1793 (method url-fetch)
1794 (uri (cran-uri "proxy" version))
1795 (sha256
1796 (base32
e190d9af 1797 "17b6qfllqrhzrxqgx7dccffgybnkcria5a68ap5ly3plg04ypm4x"))))
3349faec 1798 (build-system r-build-system)
e9960d8c 1799 (home-page "https://cran.r-project.org/web/packages/proxy")
3349faec
RW
1800 (synopsis "Distance and similarity measures")
1801 (description
1802 "This package provides an extensible framework for the efficient
1803calculation of auto- and cross-proximities, along with implementations of the
1804most popular ones.")
1805 (license license:gpl2)))
bc0081e7
RW
1806
1807(define-public r-sp
1808 (package
1809 (name "r-sp")
d87130cb 1810 (version "1.3-1")
bc0081e7
RW
1811 (source
1812 (origin
1813 (method url-fetch)
1814 (uri (cran-uri "sp" version))
1815 (sha256
1816 (base32
d87130cb 1817 "17xm1ig80p9wc860hm3bgishz6lj9fxgwqidj7rkbk4ap99qp62p"))))
bc0081e7
RW
1818 (build-system r-build-system)
1819 (propagated-inputs
1820 `(("r-lattice" ,r-lattice)))
e9960d8c 1821 (home-page "https://cran.r-project.org/web/packages/sp")
bc0081e7
RW
1822 (synopsis "Classes and methods for spatial data")
1823 (description
1824 "This package provides classes and methods for spatial data; the classes
1825document where the spatial location information resides, for 2D or 3D data.
1826Utility functions are provided, e.g. for plotting data as maps, spatial
1827selection, as well as methods for retrieving coordinates, for subsetting,
1828print, summary, etc.")
1829 (license license:gpl2+)))
e389d10f
RW
1830
1831(define-public r-rmtstat
1832 (package
1833 (name "r-rmtstat")
1834 (version "0.3")
1835 (source
1836 (origin
1837 (method url-fetch)
1838 (uri (cran-uri "RMTstat" version))
1839 (sha256
1840 (base32
1841 "1nn25q4kmh9kj975sxkrpa97vh5irqrlqhwsfinbck6h6ia4rsw1"))))
1842 (properties `((upstream-name . "RMTstat")))
1843 (build-system r-build-system)
e9960d8c 1844 (home-page "https://cran.r-project.org/web/packages/RMTstat")
e389d10f
RW
1845 (synopsis "Distributions, statistics and tests derived from random matrix theory")
1846 (description
1847 "This package provides functions for working with the Tracy-Widom laws
1848and other distributions related to the eigenvalues of large Wishart
1849matrices.")
1850 (license license:bsd-3)))
6427e620 1851
94989d4b
RJ
1852(define-public r-rmpi
1853 (package
1854 (name "r-rmpi")
5e8282a4 1855 (version "0.6-9")
94989d4b
RJ
1856 (source (origin
1857 (method url-fetch)
1858 (uri (cran-uri "Rmpi" version))
1859 (sha256
1860 (base32
5e8282a4 1861 "1rhycla98hxgnnxlxxldr1x51djak7c2jjvlrv3jcsvgwp1ymqdj"))))
94989d4b
RJ
1862 (properties `((upstream-name . "Rmpi")))
1863 (build-system r-build-system)
1864 (arguments
56d447ba
EB
1865 `(#:configure-flags '("--configure-args=\"--with-Rmpi-type=OPENMPI\"")
1866 #:phases (modify-phases %standard-phases
1867 (add-before 'install 'mpi-setup
1868 ,%openmpi-setup))))
94989d4b
RJ
1869 (inputs
1870 `(("openmpi" ,openmpi)))
9ebfdcd3
RW
1871 (native-inputs
1872 `(("pkg-config" ,pkg-config)))
94989d4b
RJ
1873 (home-page "http://www.stats.uwo.ca/faculty/yu/Rmpi")
1874 (synopsis "R interface to message-passing interface (MPI)")
1875 (description
1876 "This package provides an interface (wrapper) to MPI APIs. It also
1877provides an interactive R manager and worker environment.")
1878 (license license:gpl2+)))
1879
6427e620
RW
1880(define-public r-lmoments
1881 (package
1882 (name "r-lmoments")
739135b2 1883 (version "1.3-1")
6427e620
RW
1884 (source
1885 (origin
1886 (method url-fetch)
1887 (uri (cran-uri "Lmoments" version))
1888 (sha256
1889 (base32
739135b2 1890 "0pc63bj9a8hzr5m3yssrc4kin39fffwkl8rggs3sagzr12d4i7bw"))))
6427e620
RW
1891 (properties `((upstream-name . "Lmoments")))
1892 (build-system r-build-system)
739135b2
RW
1893 (propagated-inputs
1894 `(("r-rcpp" ,r-rcpp)
1895 ("r-rcpparmadillo" ,r-rcpparmadillo)))
6427e620
RW
1896 (home-page "http://www.tilastotiede.fi/juha_karvanen.html")
1897 (synopsis "L-moments and quantile mixtures")
1898 (description
1899 "This package contains functions to estimate L-moments and trimmed
1900L-moments from the data. It also contains functions to estimate the
1901parameters of the normal polynomial quantile mixture and the Cauchy polynomial
1902quantile mixture from L-moments and trimmed L-moments.")
1903 (license license:gpl2)))
28476b4b
RW
1904
1905(define-public r-distillery
1906 (package
1907 (name "r-distillery")
5686da76 1908 (version "1.0-6")
28476b4b
RW
1909 (source
1910 (origin
1911 (method url-fetch)
1912 (uri (cran-uri "distillery" version))
1913 (sha256
1914 (base32
5686da76 1915 "1mi3ig9jq0kd7yrwc5m37lmrw04p1b4lirnbsxi10z3n5yay4429"))))
28476b4b
RW
1916 (build-system r-build-system)
1917 (home-page "http://www.ral.ucar.edu/staff/ericg")
1918 (synopsis "Functions for confidence intervals and object information")
1919 (description
1920 "This package provides some very simple method functions for confidence
1921interval calculation and to distill pertinent information from a potentially
1922complex object; primarily used in common with the packages extRemes and
1923SpatialVx.")
1924 (license license:gpl2+)))
58db98c9
RW
1925
1926(define-public r-extremes
1927 (package
1928 (name "r-extremes")
987b0804 1929 (version "2.0-10")
58db98c9
RW
1930 (source
1931 (origin
1932 (method url-fetch)
1933 (uri (cran-uri "extRemes" version))
1934 (sha256
1935 (base32
987b0804 1936 "08fj72gpq2d6695hbm3cgwgal64z009ykrirby7g6r0akfcsx5ic"))))
58db98c9
RW
1937 (properties `((upstream-name . "extRemes")))
1938 (build-system r-build-system)
1939 (propagated-inputs
987b0804 1940 `(("r-distillery" ,r-distillery)
58db98c9
RW
1941 ("r-lmoments" ,r-lmoments)))
1942 (home-page "http://www.assessment.ucar.edu/toolkit/")
1943 (synopsis "Extreme value analysis")
1944 (description
1945 "ExtRemes is a suite of functions for carrying out analyses on the
1946extreme values of a process of interest; be they block maxima over long blocks
1947or excesses over a high threshold.")
1948 (license license:gpl2+)))
062b6dbd
RW
1949
1950(define-public r-lmtest
1951 (package
1952 (name "r-lmtest")
0b5b9d69 1953 (version "0.9-37")
062b6dbd
RW
1954 (source
1955 (origin
1956 (method url-fetch)
1957 (uri (cran-uri "lmtest" version))
1958 (sha256
1959 (base32
0b5b9d69 1960 "02nasm0j2vwkhz11dxqixs23msy1s3yj0jps6949fmgh9gwjkjfx"))))
062b6dbd
RW
1961 (build-system r-build-system)
1962 (propagated-inputs
1963 `(("r-zoo" ,r-zoo)))
1964 (native-inputs
1965 `(("gfortran" ,gfortran)))
e9960d8c 1966 (home-page "https://cran.r-project.org/web/packages/lmtest")
062b6dbd
RW
1967 (synopsis "Testing linear regression models")
1968 (description
1969 "This package provides a collection of tests, data sets, and examples for
1970diagnostic checking in linear regression models. Furthermore, some generic
1971tools for inference in parametric models are provided.")
1972 ;; Either version is okay
1973 (license (list license:gpl2 license:gpl3))))
d6b156dc 1974
c974008d
RJ
1975(define-public r-idr
1976 (package
1977 (name "r-idr")
1978 (version "1.2")
1979 (source (origin
1980 (method url-fetch)
1981 (uri (cran-uri "idr" version))
1982 (sha256
1983 (base32
1984 "05nvgw1xdg670bsjjrxkgd1mrdkciccpw4krn0zcgdf2r21dzgwb"))))
1985 (build-system r-build-system)
1986 (home-page "https://cran.r-project.org/web/packages/idr/")
1987 (synopsis "Irreproducible discovery rate")
1988 (description
1989 "This is a package for estimating the copula mixture model and plotting
1990correspondence curves in \"Measuring reproducibility of high-throughput
1991experiments\" (2011), Annals of Applied Statistics, Vol. 5, No. 3, 1752-1779,
1992by Li, Brown, Huang, and Bickel")
1993 (license license:gpl2+)))
1994
d6b156dc
RW
1995(define-public r-inline
1996 (package
1997 (name "r-inline")
0acbf8bb 1998 (version "0.3.15")
d6b156dc
RW
1999 (source (origin
2000 (method url-fetch)
2001 (uri (cran-uri "inline" version))
2002 (sha256
2003 (base32
0acbf8bb 2004 "0s4wssvpan189fijahknxq5s22ww9bzmdlmyhnra748r7khky17z"))))
d6b156dc 2005 (build-system r-build-system)
e9960d8c 2006 (home-page "https://cran.r-project.org/web/packages/inline")
d6b156dc
RW
2007 (synopsis "Functions to inline C, C++, Fortran function calls from R")
2008 (description
2009 "This package provides functionality to dynamically define R functions
2010and S4 methods with inlined C, C++ or Fortran code supporting @code{.C} and
2011@code{.Call} calling conventions.")
2012 ;; Any version of the LGPL.
2013 (license license:lgpl3+)))
8c72b830
RW
2014
2015(define-public r-bbmle
2016 (package
2017 (name "r-bbmle")
84078220 2018 (version "1.0.20")
8c72b830
RW
2019 (source
2020 (origin
2021 (method url-fetch)
2022 (uri (cran-uri "bbmle" version))
2023 (sha256
2024 (base32
84078220 2025 "1xzij7swrrzl5ly8l3lw6awh486zcm00251dwqws1y23fbgyh3vc"))))
8c72b830
RW
2026 (build-system r-build-system)
2027 (propagated-inputs
2028 `(("r-lattice" ,r-lattice)
2029 ("r-mass" ,r-mass)
2030 ("r-numderiv" ,r-numderiv)))
e9960d8c 2031 (home-page "https://cran.r-project.org/web/packages/bbmle")
8c72b830
RW
2032 (synopsis "Tools for General Maximum Likelihood Estimation")
2033 (description
c151b0b6
RW
2034 "This package provides methods and functions for fitting maximum
2035likelihood models in R. This package modifies and extends the @code{mle}
2036classes in the @code{stats4} package.")
8c72b830 2037 ;; Any version of the GPL
c151b0b6 2038 (license license:gpl2+)))
b31e4a96
RW
2039
2040(define-public r-emdbook
2041 (package
2042 (name "r-emdbook")
59c51342 2043 (version "1.3.11")
b31e4a96
RW
2044 (source
2045 (origin
2046 (method url-fetch)
2047 (uri (cran-uri "emdbook" version))
2048 (sha256
2049 (base32
59c51342 2050 "0a515jdzvg87npvrh7md7zp0v5nlz7c2jr7pba5dql6slb0d8j7q"))))
b31e4a96
RW
2051 (build-system r-build-system)
2052 (propagated-inputs
2053 `(("r-bbmle" ,r-bbmle)
2054 ("r-coda" ,r-coda)
2055 ("r-lattice" ,r-lattice)
2056 ("r-mass" ,r-mass)
2057 ("r-plyr" ,r-plyr)
2058 ("r-rcpp" ,r-rcpp)))
2059 (home-page "http://www.math.mcmaster.ca/bolker/emdbook")
2060 (synopsis "Support functions and data for \"Ecological Models and Data\"")
2061 (description
2062 "This package provides auxiliary functions and data sets for \"Ecological
2063Models and Data\", a book presenting maximum likelihood estimation and related
2064topics for ecologists (ISBN 978-0-691-12522-0).")
2065 ;; Any GPL version
2066 (license (list license:gpl2 license:gpl3))))
a3e36d37
RW
2067
2068(define-public r-lpsolve
2069 (package
2070 (name "r-lpsolve")
6edf0fb3 2071 (version "5.6.13.1")
a3e36d37
RW
2072 (source
2073 (origin
2074 (method url-fetch)
2075 (uri (cran-uri "lpSolve" version))
2076 (sha256
2077 (base32
6edf0fb3 2078 "1f10ywlaaldgjj84vs108ly0nsbkrdgbn5d6qj7nk93j1x1xrn3a"))))
a3e36d37
RW
2079 (properties `((upstream-name . "lpSolve")))
2080 (build-system r-build-system)
e9960d8c 2081 (home-page "https://cran.r-project.org/web/packages/lpSolve")
a3e36d37
RW
2082 (synopsis "R interface to Lp_solve to solve linear/integer programs")
2083 (description
2084 "Lp_solve is software for solving linear, integer and mixed integer
2085programs. This implementation supplies a \"wrapper\" function in C and some R
2086functions that solve general linear/integer problems, assignment problems, and
2087transportation problems.")
2088 (license license:lgpl2.0)))
521e0703
RW
2089
2090(define-public r-limsolve
2091 (package
2092 (name "r-limsolve")
2093 (version "1.5.5.3")
2094 (source
2095 (origin
2096 (method url-fetch)
2097 (uri (cran-uri "limSolve" version))
2098 (sha256
2099 (base32
2100 "1ll6ir42h3g2fzf0wqai213bm82gpwjj2hfma2np3mz024sc09rg"))))
2101 (properties `((upstream-name . "limSolve")))
2102 (build-system r-build-system)
2103 (propagated-inputs
2104 `(("r-lpsolve" ,r-lpsolve)
2105 ("r-mass" ,r-mass)
2106 ("r-quadprog" ,r-quadprog)))
2107 (native-inputs `(("gfortran" ,gfortran)))
e9960d8c 2108 (home-page "https://cran.r-project.org/web/packages/limSolve")
521e0703
RW
2109 (synopsis "Solving linear inverse models")
2110 (description
2111 "This package provides functions that:
2112
2113@enumerate
2114@item find the minimum/maximum of a linear or quadratic function,
2115@item sample an underdetermined or overdetermined system,
2116@item solve a linear system Ax=B for the unknown x.
2117@end enumerate
2118
2119It includes banded and tridiagonal linear systems. The package calls Fortran
2120functions from LINPACK.")
2121 ;; Any GPL version.
2122 (license (list license:gpl2+ license:gpl3+))))
6b4a9aec
RW
2123
2124(define-public r-fitdistrplus
2125 (package
2126 (name "r-fitdistrplus")
9e0162df 2127 (version "1.0-14")
6b4a9aec
RW
2128 (source
2129 (origin
2130 (method url-fetch)
2131 (uri (cran-uri "fitdistrplus" version))
2132 (sha256
2133 (base32
9e0162df 2134 "10q08wsv8v3w7797jdvvv60bgrf1bi6438wf0jcqv81ays82a245"))))
6b4a9aec
RW
2135 (build-system r-build-system)
2136 (propagated-inputs
2137 `(("r-mass" ,r-mass)
8c456dff 2138 ("r-npsurv" ,r-npsurv)
6b4a9aec
RW
2139 ("r-survival" ,r-survival)))
2140 (home-page "http://riskassessment.r-forge.r-project.org")
2141 (synopsis "Fitting a parametric distribution from data")
2142 (description
2143 "This package extends the @code{fitdistr} function of the MASS package
2144with several functions to help the fit of a parametric distribution to
2145non-censored or censored data. Censored data may contain left-censored,
2146right-censored and interval-censored values, with several lower and upper
2147bounds. In addition to @dfn{maximum likelihood estimation} (MLE), the package
2148provides moment matching (MME), quantile matching (QME) and maximum
2149goodness-of-fit estimation (MGE) methods (available only for non-censored
2150data). Weighted versions of MLE, MME and QME are available.")
2151 (license license:gpl2+)))
8d220073
RW
2152
2153(define-public r-energy
2154 (package
2155 (name "r-energy")
9c112bee 2156 (version "1.7-5")
8d220073
RW
2157 (source
2158 (origin
2159 (method url-fetch)
2160 (uri (cran-uri "energy" version))
2161 (sha256
2162 (base32
9c112bee 2163 "15k9dg0a82cs9ypm0wpcsff3il1hzhnnv86dv5ngby1r144czhi4"))))
8d220073
RW
2164 (build-system r-build-system)
2165 (propagated-inputs
2166 `(("r-boot" ,r-boot)
2167 ("r-rcpp" ,r-rcpp)))
e9960d8c 2168 (home-page "https://cran.r-project.org/web/packages/energy")
8d220073
RW
2169 (synopsis "Multivariate inference via the energy of data")
2170 (description
2171 "This package provides e-statistics (energy) tests and statistics for
2172multivariate and univariate inference, including distance correlation,
2173one-sample, two-sample, and multi-sample tests for comparing multivariate
2174distributions, are implemented. Measuring and testing multivariate
2175independence based on distance correlation, partial distance correlation,
2176multivariate goodness-of-fit tests, clustering based on energy distance,
2177testing for multivariate normality, distance components (disco) for
2178non-parametric analysis of structured data, and other energy
2179statistics/methods are implemented.")
2180 (license license:gpl2+)))
abcb8494
RW
2181
2182(define-public r-suppdists
2183 (package
2184 (name "r-suppdists")
2185 (version "1.1-9.4")
2186 (source
2187 (origin
2188 (method url-fetch)
2189 (uri (cran-uri "SuppDists" version))
2190 (sha256
2191 (base32
2192 "1ffx8wigqqvz2pnh06jjc0fnf4vq9z2rhwk2y3f9aszn18ap3dgw"))))
2193 (properties `((upstream-name . "SuppDists")))
2194 (build-system r-build-system)
e9960d8c 2195 (home-page "https://cran.r-project.org/web/packages/SuppDists")
abcb8494
RW
2196 (synopsis "Supplementary distributions")
2197 (description
2198 "This package provides ten distributions supplementing those built into
2199R. Inverse Gauss, Kruskal-Wallis, Kendall's Tau, Friedman's chi squared,
2200Spearman's rho, maximum F ratio, the Pearson product moment correlation
2201coefficient, Johnson distributions, normal scores and generalized
2202hypergeometric distributions. In addition two random number generators of
2203George Marsaglia are included.")
2204 (license license:gpl2+)))
05e8a3ef
RW
2205
2206(define-public r-ksamples
2207 (package
2208 (name "r-ksamples")
beb82eb9 2209 (version "1.2-9")
05e8a3ef
RW
2210 (source
2211 (origin
2212 (method url-fetch)
2213 (uri (cran-uri "kSamples" version))
2214 (sha256
2215 (base32
beb82eb9 2216 "1zs22p68d6320kcylisnk0b5wmpapxkyz15py09czxzw7npw8gms"))))
05e8a3ef
RW
2217 (properties `((upstream-name . "kSamples")))
2218 (build-system r-build-system)
2219 (propagated-inputs
2220 `(("r-suppdists" ,r-suppdists)))
e9960d8c 2221 (home-page "https://cran.r-project.org/web/packages/kSamples")
05e8a3ef
RW
2222 (synopsis "K-Sample rank tests and their combinations")
2223 (description
2224 "This package provides tools to compares k samples using the
2225Anderson-Darling test, Kruskal-Wallis type tests with different rank score
2226criteria, Steel's multiple comparison test, and the Jonckheere-Terpstra (JT)
2227test. It computes asymptotic, simulated or (limited) exact P-values, all
2228valid under randomization, with or without ties, or conditionally under random
2229sampling from populations, given the observed tie pattern. Except for Steel's
2230test and the JT test it also combines these tests across several blocks of
2231samples.")
2232 (license license:gpl2+)))
f97ce815
RW
2233
2234(define-public r-cvst
2235 (package
2236 (name "r-cvst")
b13b5674 2237 (version "0.2-2")
f97ce815
RW
2238 (source
2239 (origin
2240 (method url-fetch)
2241 (uri (cran-uri "CVST" version))
2242 (sha256
2243 (base32
b13b5674 2244 "05l3yzkfrbds09ah9cdwn2sn4ryhq78lz33ryzrgkv176jc8qjw5"))))
f97ce815
RW
2245 (properties `((upstream-name . "CVST")))
2246 (build-system r-build-system)
2247 (propagated-inputs
2248 `(("r-kernlab" ,r-kernlab)
2249 ("r-matrix" ,r-matrix)))
e9960d8c 2250 (home-page "https://cran.r-project.org/web/packages/CVST")
f97ce815
RW
2251 (synopsis "Fast cross-validation via sequential testing")
2252 (description
2253 "This package implements the fast cross-validation via sequential
2254testing (CVST) procedure. CVST is an improved cross-validation procedure
2255which uses non-parametric testing coupled with sequential analysis to
2256determine the best parameter set on linearly increasing subsets of the data.
2257Additionally to the CVST the package contains an implementation of the
2258ordinary k-fold cross-validation with a flexible and powerful set of helper
2259objects and methods to handle the overall model selection process. The
2260implementations of the Cochran's Q test with permutations and the sequential
2261testing framework of Wald are generic and can therefore also be used in other
2262contexts.")
2263 (license license:gpl2+)))
797e1dfb 2264
c5f033e0
RW
2265(define-public r-squarem
2266 (package
2267 (name "r-squarem")
2268 (version "2017.10-1")
2269 (source
2270 (origin
2271 (method url-fetch)
2272 (uri (cran-uri "SQUAREM" version))
2273 (sha256
2274 (base32
2275 "10xj26x7qjyvzndnbjl5krr9wabnb9cbrnp3m7xg673g8ddr12cv"))))
2276 (properties `((upstream-name . "SQUAREM")))
2277 (build-system r-build-system)
2278 (home-page "http://www.jhsph.edu/agingandhealth/People/Faculty_personal_pages/Varadhan.html")
2279 (synopsis "Squared Extrapolation Methods for Accelerating EM-Like Monotone Algorithms")
2280 (description
2281 "This package provides algorithms for accelerating the convergence of
2282slow, monotone sequences from smooth, contraction mapping such as the EM
2283algorithm. It can be used to accelerate any smooth, linearly convergent
2284acceleration scheme. A tutorial style introduction to this package is
2285available in a vignette.")
2286 (license license:gpl2+)))
2287
797e1dfb
RW
2288(define-public r-lava
2289 (package
2290 (name "r-lava")
bf6c8960 2291 (version "1.6.5")
797e1dfb
RW
2292 (source
2293 (origin
2294 (method url-fetch)
2295 (uri (cran-uri "lava" version))
2296 (sha256
2297 (base32
bf6c8960 2298 "13rlqdg42ylnz4hc932bl50xismrcr4d9ykcd9zs19cw5mckjx0f"))))
797e1dfb
RW
2299 (build-system r-build-system)
2300 (propagated-inputs
2301 `(("r-numderiv" ,r-numderiv)
92e4534c 2302 ("r-squarem" ,r-squarem)
797e1dfb
RW
2303 ("r-survival" ,r-survival)))
2304 (home-page "https://github.com/kkholst/lava")
2305 (synopsis "Latent variable models")
2306 (description
2307 "This package provides tools for the estimation and simulation of latent
2308variable models.")
2309 (license license:gpl3)))
d26b7c1b
RW
2310
2311(define-public r-drr
2312 (package
2313 (name "r-drr")
0f001b3c 2314 (version "0.0.3")
d26b7c1b
RW
2315 (source
2316 (origin
2317 (method url-fetch)
2318 (uri (cran-uri "DRR" version))
2319 (sha256
2320 (base32
0f001b3c 2321 "1yd1fvllfkcrwg9v322n4wkk4q4q84nvy58y4vac9pdr3yf3i4vl"))))
d26b7c1b
RW
2322 (properties `((upstream-name . "DRR")))
2323 (build-system r-build-system)
2324 (propagated-inputs
2325 `(("r-cvst" ,r-cvst)
2326 ("r-kernlab" ,r-kernlab)
2327 ("r-matrix" ,r-matrix)))
e9960d8c 2328 (home-page "https://cran.r-project.org/web/packages/DRR")
d26b7c1b
RW
2329 (synopsis "Dimensionality reduction via regression")
2330 (description
2331 "This package provides an implementation of dimensionality reduction via
2332regression using Kernel Ridge Regression.")
2333 (license license:gpl3)))
9dd707f0
RW
2334
2335(define-public r-prodlim
2336 (package
2337 (name "r-prodlim")
9ee81a36 2338 (version "2018.04.18")
9dd707f0
RW
2339 (source
2340 (origin
2341 (method url-fetch)
2342 (uri (cran-uri "prodlim" version))
2343 (sha256
2344 (base32
9ee81a36 2345 "1aslq87sqwikh8chxc378r38146y7kv79zz0kcq3j93ivx7va8jb"))))
9dd707f0
RW
2346 (build-system r-build-system)
2347 (propagated-inputs
2348 `(("r-kernsmooth" ,r-kernsmooth)
2349 ("r-lava" ,r-lava)
2350 ("r-rcpp" ,r-rcpp)
2351 ("r-survival" ,r-survival)))
e9960d8c 2352 (home-page "https://cran.r-project.org/web/packages/prodlim")
9dd707f0
RW
2353 (synopsis "Product-limit estimation for censored event history analysis")
2354 (description
2355 "This package provides a fast and user-friendly implementation of
2356nonparametric estimators for censored event history (survival) analysis with
2357the Kaplan-Meier and Aalen-Johansen methods.")
2358 (license license:gpl2+)))
b561f563
RW
2359
2360(define-public r-dimred
2361 (package
2362 (name "r-dimred")
7a67bca1 2363 (version "0.2.3")
b561f563
RW
2364 (source
2365 (origin
2366 (method url-fetch)
2367 (uri (cran-uri "dimRed" version))
2368 (sha256
2369 (base32
7a67bca1 2370 "110d6y83ib1nfpxzmvkvb3fn3brskwkdbsk4dqrdrswrd4znxrg6"))))
b561f563
RW
2371 (properties `((upstream-name . "dimRed")))
2372 (build-system r-build-system)
77f97229
RW
2373 (propagated-inputs
2374 `(("r-drr" ,r-drr)
2375 ("r-magrittr" ,r-magrittr)))
b561f563
RW
2376 (home-page "https://github.com/gdkrmr/dimRed")
2377 (synopsis "Framework for dimensionality reduction")
2378 (description
2379 "This package provides a collection of dimensionality reduction
2380techniques from R packages and provides a common interface for calling the
2381methods.")
2382 (license license:gpl3)))
1b663184
RW
2383
2384(define-public r-timedate
2385 (package
2386 (name "r-timedate")
51b7b0e3 2387 (version "3043.102")
1b663184
RW
2388 (source
2389 (origin
2390 (method url-fetch)
2391 (uri (cran-uri "timeDate" version))
2392 (sha256
2393 (base32
51b7b0e3 2394 "0wvl5pq261rvbgly7vilk3x3m9xk3ly6il1i5scwdf6srl1vlz1p"))))
1b663184
RW
2395 (properties `((upstream-name . "timeDate")))
2396 (build-system r-build-system)
2397 (home-page "https://www.rmetrics.org")
2398 (synopsis "Chronological and calendar objects")
2399 (description
2400 "This package provides an environment for teaching \"Financial
2401Engineering and Computational Finance\" and for managing chronological and
2402calendar objects.")
2403 (license license:gpl2+)))
f57b883e 2404
ce4e81cb
RW
2405(define-public r-magic
2406 (package
2407 (name "r-magic")
bba80fad 2408 (version "1.5-9")
ce4e81cb
RW
2409 (source
2410 (origin
2411 (method url-fetch)
2412 (uri (cran-uri "magic" version))
2413 (sha256
2414 (base32
bba80fad 2415 "0snmdh6vk0p6ar1swsihisinxrx7l8371dri5lk0z24ysgr5w7gs"))))
ce4e81cb
RW
2416 (build-system r-build-system)
2417 (propagated-inputs
2418 `(("r-abind" ,r-abind)))
2419 (home-page "https://github.com/RobinHankin/magic.git")
2420 (synopsis "Create and investigate magic squares")
2421 (description
2422 "This package provides a collection of efficient, vectorized algorithms
2423for the creation and investigation of magic squares and hypercubes, including
2424a variety of functions for the manipulation and analysis of arbitrarily
2425dimensioned arrays.")
2426 (license license:gpl2)))
2427
d9bec9a8
RW
2428(define-public r-rmysql
2429 (package
2430 (name "r-rmysql")
937e1557 2431 (version "0.10.17")
d9bec9a8
RW
2432 (source
2433 (origin
2434 (method url-fetch)
2435 (uri (cran-uri "RMySQL" version))
2436 (sha256
2437 (base32
937e1557 2438 "1xamf99ih44dvaxg5x4ivj0hkqssmabgqd7gh8b8q1srw7yg8kbm"))))
d9bec9a8
RW
2439 (properties `((upstream-name . "RMySQL")))
2440 (build-system r-build-system)
d9bec9a8
RW
2441 (inputs
2442 `(("mariadb" ,mariadb)
2443 ("zlib" ,zlib)))
2444 (propagated-inputs
2445 `(("r-dbi" ,r-dbi)))
2446 (home-page "https://github.com/r-dbi/RMySQL")
2447 (synopsis "Database interface and MySQL driver for R")
2448 (description
2449 "This package provides a DBI interface to MySQL / MariaDB. The RMySQL
2450package contains an old implementation based on legacy code from S-PLUS which
2451is being phased out. A modern MySQL client based on Rcpp is available from
2452the RMariaDB package.")
2453 (license license:gpl2)))
2454
5574cb81
RW
2455(define-public r-rpostgresql
2456 (package
2457 (name "r-rpostgresql")
2458 (version "0.6-2")
2459 (source
2460 (origin
2461 (method url-fetch)
2462 (uri (cran-uri "RPostgreSQL" version))
2463 (sha256
2464 (base32
2465 "1mdhw5821v2h7hpa53v10wz53k4i90r0vb6a3dia5gq8f9j1h088"))))
2466 (properties `((upstream-name . "RPostgreSQL")))
2467 (build-system r-build-system)
2468 (inputs
2469 `(("postgresql" ,postgresql)))
2470 (propagated-inputs
2471 `(("r-dbi" ,r-dbi)))
2472 (home-page "https://github.com/tomoakin/RPostgreSQL")
2473 (synopsis "R interface to the PostgreSQL database system")
2474 (description
2475 "This package provides a Database Interface (DBI) compliant driver for R
2476to access PostgreSQL database systems.")
2477 ;; The whole package is released under GPL version 2. It includes code
2478 ;; under the PostgreSQL license.
2479 (license license:gpl2)))
2480
9604429d
RW
2481(define-public r-geometry
2482 (package
2483 (name "r-geometry")
3d17dc5d 2484 (version "0.4.1")
9604429d
RW
2485 (source
2486 (origin
2487 (method url-fetch)
2488 (uri (cran-uri "geometry" version))
2489 (sha256
2490 (base32
3d17dc5d 2491 "0v3ivaw8vbjyxg08dd573qk3kqfyknj5hli9503dza6p6xz0dzmm"))))
9604429d 2492 (build-system r-build-system)
a023d43d
BG
2493 (propagated-inputs
2494 `(("r-magic" ,r-magic)
2495 ("r-lpsolve" ,r-lpsolve)
2496 ("r-rcpp" ,r-rcpp)
3d17dc5d 2497 ("r-rcppprogress" ,r-rcppprogress)))
9604429d
RW
2498 (home-page "http://geometry.r-forge.r-project.org/")
2499 (synopsis "Mesh generation and surface tesselation")
2500 (description
2501 "This package makes the qhull library available in R, in a similar manner
2502as in Octave. Qhull computes convex hulls, Delaunay triangulations, halfspace
2503intersections about a point, Voronoi diagrams, furthest-site Delaunay
2504triangulations, and furthest-site Voronoi diagrams. It runs in 2-d, 3-d, 4-d,
2505and higher dimensions. It implements the Quickhull algorithm for computing
2506the convex hull. Qhull does not support constrained Delaunay triangulations,
2507or mesh generation of non-convex objects, but the package does include some R
2508functions that allow for this. Currently the package only gives access to
2509Delaunay triangulation and convex hull computation.")
2510 ;; The Qhull sources are included and are distributed under a custom
2511 ;; non-copyleft license. The R sources are released under GPL version 2.
2512 (license (list license:gpl2
2513 (license:non-copyleft "http://www.qhull.org/COPYING.txt")))))
2514
f57b883e
RW
2515(define-public r-ddalpha
2516 (package
2517 (name "r-ddalpha")
a315d496 2518 (version "1.3.9")
f57b883e
RW
2519 (source
2520 (origin
2521 (method url-fetch)
2522 (uri (cran-uri "ddalpha" version))
2523 (sha256
2524 (base32
a315d496 2525 "1vzs0cvl6xw3h9i00rg3hs02xwgxcnh8326y10kxmhs3qq4m7nb2"))))
f57b883e
RW
2526 (build-system r-build-system)
2527 (propagated-inputs
2528 `(("r-bh" ,r-bh)
2529 ("r-class" ,r-class)
4f184233 2530 ("r-geometry" ,r-geometry)
f57b883e
RW
2531 ("r-mass" ,r-mass)
2532 ("r-rcpp" ,r-rcpp)
e90456b9
RW
2533 ("r-robustbase" ,r-robustbase)
2534 ("r-sfsmisc" ,r-sfsmisc)))
2535 (native-inputs
2536 `(("gfortran" ,gfortran)))
e9960d8c 2537 (home-page "https://cran.r-project.org/web/packages/ddalpha")
f57b883e
RW
2538 (synopsis "Depth-Based classification and calculation of data depth")
2539 (description
2540 "This package contains procedures for depth-based supervised learning,
2541which are entirely non-parametric, in particular the DDalpha-procedure (Lange,
2542Mosler and Mozharovskyi, 2014). The training data sample is transformed by a
2543statistical depth function to a compact low-dimensional space, where the final
2544classification is done. It also offers an extension to functional data and
2545routines for calculating certain notions of statistical depth functions. 50
2546multivariate and 5 functional classification problems are included.")
2547 (license license:gpl2)))
5a87093f
RW
2548
2549(define-public r-gower
2550 (package
2551 (name "r-gower")
1541f0a0 2552 (version "0.2.1")
5a87093f
RW
2553 (source
2554 (origin
2555 (method url-fetch)
2556 (uri (cran-uri "gower" version))
2557 (sha256
2558 (base32
1541f0a0 2559 "007ivwn1nagpi26qq8iih1c2l61c53glvv60n90hi341ry8vwgxg"))))
5a87093f 2560 (build-system r-build-system)
5a87093f
RW
2561 (home-page "https://github.com/markvanderloo/gower")
2562 (synopsis "Gower's distance")
2563 (description
2564 "This package provides tools to compute Gower's distance (or similarity)
2565coefficient between records, and to compute the top-n matches between records.
2566Core algorithms are executed in parallel on systems supporting OpenMP.")
2567 (license license:gpl3)))
649cf27c
RW
2568
2569(define-public r-rcpproll
2570 (package
2571 (name "r-rcpproll")
d0396c8e 2572 (version "0.3.0")
649cf27c
RW
2573 (source
2574 (origin
2575 (method url-fetch)
2576 (uri (cran-uri "RcppRoll" version))
2577 (sha256
2578 (base32
d0396c8e 2579 "0srzfhzkk42kzrdjnhbb37946jp1p688rgysy6k3i2is8jb21zyb"))))
649cf27c
RW
2580 (properties `((upstream-name . "RcppRoll")))
2581 (build-system r-build-system)
2582 (propagated-inputs
2583 `(("r-rcpp" ,r-rcpp)))
e9960d8c 2584 (home-page "https://cran.r-project.org/web/packages/RcppRoll")
649cf27c
RW
2585 (synopsis "Efficient rolling and windowed operations")
2586 (description
2587 "This package provides fast and efficient routines for common rolling /
2588windowed operations. Routines for the efficient computation of windowed mean,
2589median, sum, product, minimum, maximum, standard deviation and variance are
2590provided.")
2591 (license license:gpl2+)))
6c3d42d6
RW
2592
2593(define-public r-ipred
2594 (package
2595 (name "r-ipred")
5fce9013 2596 (version "0.9-9")
6c3d42d6
RW
2597 (source
2598 (origin
2599 (method url-fetch)
2600 (uri (cran-uri "ipred" version))
2601 (sha256
2602 (base32
5fce9013 2603 "0vs1hqfx7yd0xdbmfsf2gim7spkni0845cj6gswn0nhdfdq7ma0d"))))
6c3d42d6
RW
2604 (build-system r-build-system)
2605 (propagated-inputs
2606 `(("r-class" ,r-class)
2607 ("r-mass" ,r-mass)
2608 ("r-nnet" ,r-nnet)
2609 ("r-prodlim" ,r-prodlim)
2610 ("r-rpart" ,r-rpart)
2611 ("r-survival" ,r-survival)))
e9960d8c 2612 (home-page "https://cran.r-project.org/web/packages/ipred")
6c3d42d6
RW
2613 (synopsis "Improved predictors")
2614 (description
2615 "This package provides improved predictive models by indirect
2616classification and bagging for classification, regression and survival
2617problems as well as resampling based estimators of prediction error.")
2618 (license license:gpl2+)))
ba4527ab 2619
cdc129dc
RW
2620(define-public r-psych
2621 (package
2622 (name "r-psych")
523762e3 2623 (version "1.8.12")
cdc129dc
RW
2624 (source
2625 (origin
2626 (method url-fetch)
2627 (uri (cran-uri "psych" version))
2628 (sha256
2629 (base32
523762e3 2630 "0hvp0dkkkn0szaf5rkirr3kb8qmr4bxwl775m5wmpvn1kc25w5vf"))))
cdc129dc
RW
2631 (build-system r-build-system)
2632 (propagated-inputs
2633 `(("r-foreign" ,r-foreign)
2634 ("r-lattice" ,r-lattice)
2635 ("r-mnormt" ,r-mnormt)
2636 ("r-nlme" ,r-nlme)))
e9960d8c 2637 (home-page "https://cran.r-project.org/web/packages/psych/")
cdc129dc
RW
2638 (synopsis "Procedures for psychological, psychometric, and personality research")
2639 (description
2640 "This package provides a general purpose toolbox for personality,
2641psychometric theory and experimental psychology. Functions are primarily for
2642multivariate analysis and scale construction using factor analysis, principal
2643component analysis, cluster analysis and reliability analysis, although others
2644provide basic descriptive statistics. Item Response Theory is done using
2645factor analysis of tetrachoric and polychoric correlations. Functions for
2646analyzing data at multiple levels include within and between group statistics,
2647including correlations and factor analysis. Functions for simulating and
2648testing particular item and test structures are included. Several functions
2649serve as a useful front end for structural equation modeling. Graphical
2650displays of path diagrams, factor analysis and structural equation models are
2651created using basic graphics.")
2652 (license license:gpl2+)))
2653
25c67ecf
RW
2654(define-public r-generics
2655 (package
2656 (name "r-generics")
2657 (version "0.0.2")
2658 (source
2659 (origin
2660 (method url-fetch)
2661 (uri (cran-uri "generics" version))
2662 (sha256
2663 (base32
2664 "0xk1xhpy7gpv3pvaygzhpfdxj72zmb38pb4nscfyg2ff36vx3cvi"))))
2665 (build-system r-build-system)
2666 (home-page "https://github.com/r-lib/generics")
2667 (synopsis "Common S3 generics not provided by base R methods")
2668 (description
2669 "In order to reduce potential package dependencies and conflicts,
2670generics provides a number of commonly used S3 generics that are not provided
2671by base R methods related to model fitting.")
2672 (license license:gpl2)))
2673
6c8c8c6b
RW
2674(define-public r-broom
2675 (package
2676 (name "r-broom")
1235f0d3 2677 (version "0.5.2")
6c8c8c6b
RW
2678 (source
2679 (origin
2680 (method url-fetch)
2681 (uri (cran-uri "broom" version))
2682 (sha256
2683 (base32
1235f0d3 2684 "0qmclih5dm5sqzy4hplcfy677kr12pm9pnpv3r319g14dd27pbqn"))))
6c8c8c6b
RW
2685 (build-system r-build-system)
2686 (propagated-inputs
45c156bf
RW
2687 `(("r-backports" ,r-backports)
2688 ("r-dplyr" ,r-dplyr)
813d9c51 2689 ("r-generics" ,r-generics)
6c8c8c6b 2690 ("r-nlme" ,r-nlme)
45c156bf 2691 ("r-purrr" ,r-purrr)
6c8c8c6b
RW
2692 ("r-reshape2" ,r-reshape2)
2693 ("r-stringr" ,r-stringr)
45c156bf 2694 ("r-tibble" ,r-tibble)
6c8c8c6b 2695 ("r-tidyr" ,r-tidyr)))
6e19d50e 2696 (home-page "https://github.com/tidyverse/broom")
6c8c8c6b
RW
2697 (synopsis "Convert statistical analysis objects into tidy data frames")
2698 (description
2699 "This package provides tools to convert statistical analysis objects from
2700R into tidy data frames, so that they can more easily be combined, reshaped
2701and otherwise processed with tools like @code{dplyr}, @code{tidyr} and
2702@code{ggplot2}. The package provides three S3 generics: @code{tidy}, which
2703summarizes a model's statistical findings such as coefficients of a
2704regression; @code{augment}, which adds columns to the original data such as
2705predictions, residuals and cluster assignments; and @code{glance}, which
2706provides a one-row summary of model-level statistics.")
2707 (license license:expat)))
2708
ba4527ab
RW
2709(define-public r-recipes
2710 (package
2711 (name "r-recipes")
decea6ee 2712 (version "0.1.5")
ba4527ab
RW
2713 (source
2714 (origin
2715 (method url-fetch)
2716 (uri (cran-uri "recipes" version))
2717 (sha256
2718 (base32
decea6ee 2719 "056zv4vhayyy8q9izcdknbb9hff2gxivg21g5mkssia78vw8g3mg"))))
ba4527ab
RW
2720 (build-system r-build-system)
2721 (propagated-inputs
decea6ee
RW
2722 `(("r-dplyr" ,r-dplyr)
2723 ("r-generics" ,r-generics)
2724 ("r-glue" ,r-glue)
ba4527ab
RW
2725 ("r-gower" ,r-gower)
2726 ("r-ipred" ,r-ipred)
2727 ("r-lubridate" ,r-lubridate)
2728 ("r-magrittr" ,r-magrittr)
18a11c6d 2729 ("r-matrix" ,r-matrix)
ba4527ab
RW
2730 ("r-purrr" ,r-purrr)
2731 ("r-rcpproll" ,r-rcpproll)
2732 ("r-rlang" ,r-rlang)
2733 ("r-tibble" ,r-tibble)
decea6ee 2734 ("r-tidyr" ,r-tidyr)
ba4527ab 2735 ("r-tidyselect" ,r-tidyselect)
57039918
RW
2736 ("r-timedate" ,r-timedate)
2737 ("r-withr" ,r-withr)))
ba4527ab
RW
2738 (home-page "https://github.com/topepo/recipes")
2739 (synopsis "Preprocessing tools to create design matrices")
2740 (description
2741 "Recipes is an extensible framework to create and preprocess design
2742matrices. Recipes consist of one or more data manipulation and analysis
2743\"steps\". Statistical parameters for the steps can be estimated from an
2744initial data set and then applied to other data sets. The resulting design
2745matrices can then be used as inputs into statistical or machine learning
2746models.")
2747 (license license:gpl2)))
1ab867be
RW
2748
2749(define-public r-pdist
2750 (package
2751 (name "r-pdist")
2752 (version "1.2")
2753 (source
2754 (origin
2755 (method url-fetch)
2756 (uri (cran-uri "pdist" version))
2757 (sha256
2758 (base32
2759 "18nd3mgad11f2zmwcp0w3sxlch4a9y6wp8dfdyzvjn7y4b4bq0dd"))))
2760 (build-system r-build-system)
2761 (home-page "https://github.com/jeffwong/pdist")
2762 (synopsis "Partitioned distance function")
2763 (description
2764 "Pdist computes the euclidean distance between rows of a matrix X and
2765rows of another matrix Y. Previously, this could be done by binding the two
2766matrices together and calling @code{dist}, but this creates unnecessary
2767computation by computing the distances between a row of X and another row of
2768X, and likewise for Y. Pdist strictly computes distances across the two
2769matrices, not within the same matrix, making computations significantly faster
2770for certain use cases.")
2771 (license license:gpl3+)))
81e0b625
RW
2772
2773(define-public r-ggrepel
2774 (package
2775 (name "r-ggrepel")
00399a78 2776 (version "0.8.1")
81e0b625
RW
2777 (source
2778 (origin
2779 (method url-fetch)
2780 (uri (cran-uri "ggrepel" version))
2781 (sha256
2782 (base32
00399a78 2783 "10vjrcmx8yknfbx93d9a4y3z8gafri0fhimw6hcq733dmdvkml6m"))))
81e0b625
RW
2784 (build-system r-build-system)
2785 (propagated-inputs
2786 `(("r-ggplot2" ,r-ggplot2)
2787 ("r-rcpp" ,r-rcpp)
2788 ("r-scales" ,r-scales)))
2789 (home-page "http://github.com/slowkow/ggrepel")
2790 (synopsis "Repulsive text and label geometries for ggplot2")
2791 (description
2792 "This package provides text and label geometries for ggplot2 that help to
2793avoid overlapping text labels. Labels repel away from each other and away
2794from the data points.")
2795 (license license:gpl3)))
6b968c4c
RW
2796
2797(define-public r-corrplot
2798 (package
2799 (name "r-corrplot")
2800 (version "0.84")
2801 (source
2802 (origin
2803 (method url-fetch)
2804 (uri (cran-uri "corrplot" version))
2805 (sha256
2806 (base32
2807 "1k03qd8db7pwg1v318xapx5mpiypiz2n07qr19c4b45diri5xkhd"))))
2808 (build-system r-build-system)
2809 (home-page "https://github.com/taiyun/corrplot")
2810 (synopsis "Visualization of a correlation matrix")
2811 (description
2812 "This package provides a graphical display of a correlation matrix or
2813general matrix. It also contains some algorithms to do matrix reordering. In
2814addition, corrplot is good at details, including choosing color, text labels,
2815color labels, layout, etc.")
2816 ;; Any version of the GPL
2817 (license license:gpl2+)))
a40a04fd
RW
2818
2819(define-public r-stringdist
2820 (package
2821 (name "r-stringdist")
2bce7795 2822 (version "0.9.5.1")
a40a04fd
RW
2823 (source
2824 (origin
2825 (method url-fetch)
2826 (uri (cran-uri "stringdist" version))
2827 (sha256
2828 (base32
2bce7795 2829 "0gap1g9xwhp0zxqsznkc2carpvi80z03prr4q8m528684lznx2xa"))))
a40a04fd
RW
2830 (build-system r-build-system)
2831 (home-page "https://github.com/markvanderloo/stringdist")
2832 (synopsis "Approximate string matching and string distance functions")
2833 (description
2834 "This package implements an approximate string matching version of R's
2835native @code{match} function. It can calculate various string distances based
2836on edits (Damerau-Levenshtein, Hamming, Levenshtein, optimal sting alignment),
2837qgrams (q- gram, cosine, jaccard distance) or heuristic metrics (Jaro,
2838Jaro-Winkler). An implementation of soundex is provided as well. Distances
2839can be computed between character vectors while taking proper care of encoding
2840or between integer vectors representing generic sequences.")
2841 (license license:gpl3+)))
10e16fa9 2842
dc668352
RW
2843(define-public r-ucminf
2844 (package
2845 (name "r-ucminf")
2846 (version "1.1-4")
2847 (source
2848 (origin
2849 (method url-fetch)
2850 (uri (cran-uri "ucminf" version))
2851 (sha256
2852 (base32
2853 "01vggwg1w71k98qs6fhb0x1843vi322mf4g3hbclks94kcpkisx2"))))
2854 (build-system r-build-system)
2855 (native-inputs `(("gfortran" ,gfortran)))
2856 (home-page "https://cran.r-project.org/web/packages/ucminf/")
2857 (synopsis "General-purpose unconstrained non-linear optimization")
2858 (description
2859 "This package provides an implementation of an algorithm for
2860general-purpose unconstrained non-linear optimization. The algorithm is of
2861quasi-Newton type with BFGS updating of the inverse Hessian and soft line
2862search with a trust region type monitoring of the input to the line search
2863algorithm. The interface of @code{ucminf} is designed for easy interchange
2864with the package @code{optim}.")
2865 (license license:gpl2+)))
2866
b8f6e2f8
RW
2867(define-public r-ordinal
2868 (package
2869 (name "r-ordinal")
779174e4 2870 (version "2019.4-25")
b8f6e2f8
RW
2871 (source
2872 (origin
2873 (method url-fetch)
2874 (uri (cran-uri "ordinal" version))
2875 (sha256
2876 (base32
779174e4 2877 "1pvrkly4x12w32n7w1qljdwzqnlkv7rfa7rx0nz5vbiw29xas4i8"))))
b8f6e2f8
RW
2878 (build-system r-build-system)
2879 (propagated-inputs
2880 `(("r-mass" ,r-mass)
2881 ("r-matrix" ,r-matrix)
2882 ("r-numderiv" ,r-numderiv)
2883 ("r-ucminf" ,r-ucminf)))
2884 (home-page "https://github.com/runehaubo/ordinal")
2885 (synopsis "Regression models for ordinal data")
2886 (description
2887 "This package provides an implementation of cumulative link (mixed)
2888models also known as ordered regression models, proportional odds models,
2889proportional hazards models for grouped survival times and ordered models.
2890Estimation is via maximum likelihood and mixed models are fitted with the
2891Laplace approximation and adaptive Gauss-Hermite quadrature.")
2892 (license license:gpl2+)))
2893
fe1495e3
RW
2894(define-public r-jomo
2895 (package
2896 (name "r-jomo")
6d3cfb88 2897 (version "2.6-8")
fe1495e3
RW
2898 (source
2899 (origin
2900 (method url-fetch)
2901 (uri (cran-uri "jomo" version))
2902 (sha256
2903 (base32
6d3cfb88 2904 "097zfdcqc3a45ay8xxbraqh8xsfyivskkdmc2b4ca4n979lx8vyb"))))
fe1495e3
RW
2905 (build-system r-build-system)
2906 (propagated-inputs
2907 `(("r-lme4" ,r-lme4)
fccb2450 2908 ("r-mass" ,r-mass)
e7630cc9 2909 ("r-ordinal" ,r-ordinal)
fe1495e3
RW
2910 ("r-survival" ,r-survival)))
2911 (home-page "https://cran.r-project.org/web/packages/jomo/")
2912 (synopsis "Multilevel Joint Modelling Multiple Imputation")
2913 (description
2914 "Similarly to Schafer's package pan, jomo is a package for multilevel
2915joint modelling multiple imputation @url{Carpenter and Kenward (2013),
2916http://doi.org/10.1002/9781119942283}. Novel aspects of jomo are the
2917possibility of handling binary and categorical data through latent normal
2918variables, the option to use cluster-specific covariance matrices and to
2919impute compatibly with the substantive model.")
2920 (license license:gpl2)))
2921
03e718fb
RW
2922(define-public r-pan
2923 (package
2924 (name "r-pan")
a7265593 2925 (version "1.6")
03e718fb
RW
2926 (source
2927 (origin
2928 (method url-fetch)
2929 (uri (cran-uri "pan" version))
2930 (sha256
2931 (base32
a7265593 2932 "1dk3jjj826p7xrz10qz04vyc068xnypg7bp0pj4c32z3da0xzh5d"))))
03e718fb
RW
2933 (build-system r-build-system)
2934 (native-inputs `(("gfortran" ,gfortran)))
2935 (home-page "https://cran.r-project.org/web/packages/pan/")
2936 (synopsis "Multiple imputation for multivariate panel or clustered data")
2937 (description
2938 "This package implements multiple imputation for multivariate panel or
2939clustered data.")
2940 (license license:gpl3)))
2941
84e7147a
RW
2942(define-public r-mitml
2943 (package
2944 (name "r-mitml")
1c6d199e 2945 (version "0.3-7")
84e7147a
RW
2946 (source
2947 (origin
2948 (method url-fetch)
2949 (uri (cran-uri "mitml" version))
2950 (sha256
2951 (base32
1c6d199e 2952 "0yqyxkyi1kmv5k63wxj5kkg5g8igk1axk2csb4xhj6wz0p89dxy6"))))
84e7147a
RW
2953 (build-system r-build-system)
2954 (propagated-inputs
2955 `(("r-haven" ,r-haven)
2956 ("r-jomo" ,r-jomo)
2957 ("r-pan" ,r-pan)))
2958 (home-page "https://cran.r-project.org/web/packages/mitml/")
2959 (synopsis "Tools for multiple imputation in multilevel modeling")
2960 (description
2961 "This package provides tools for multiple imputation of missing data in
2962multilevel modeling. It includes a user-friendly interface to the packages
2963pan and jomo, and several functions for visualization, data management and the
2964analysis of multiply imputed data sets.")
2965 (license license:gpl2+)))
2966
10e16fa9
RW
2967(define-public r-mice
2968 (package
2969 (name "r-mice")
372f65ad 2970 (version "3.5.0")
10e16fa9
RW
2971 (source
2972 (origin
2973 (method url-fetch)
2974 (uri (cran-uri "mice" version))
2975 (sha256
2976 (base32
372f65ad 2977 "0icydc312sbvzbp0r0mhs2r77a2ly2xvz5w5amirz3wdkvgyrk2g"))))
10e16fa9
RW
2978 (build-system r-build-system)
2979 (propagated-inputs
aea3be25
RW
2980 `(("r-broom" ,r-broom)
2981 ("r-dplyr" ,r-dplyr)
2982 ("r-lattice" ,r-lattice)
10e16fa9 2983 ("r-mass" ,r-mass)
aea3be25 2984 ("r-mitml" ,r-mitml)
10e16fa9
RW
2985 ("r-nnet" ,r-nnet)
2986 ("r-rcpp" ,r-rcpp)
aea3be25 2987 ("r-rlang" ,r-rlang)
10e16fa9
RW
2988 ("r-rpart" ,r-rpart)
2989 ("r-survival" ,r-survival)))
2990 (home-page "https://cran.r-project.org/web/packages/mice/")
2991 (synopsis "Multivariate imputation by chained equations")
2992 (description
2993 "Multiple imputation using @dfn{Fully Conditional Specification} (FCS)
2994implemented by the MICE algorithm as described in @url{Van Buuren and
2995Groothuis-Oudshoorn (2011), http://doi.org/10.18637/jss.v045.i03}. Each
2996variable has its own imputation model. Built-in imputation models are
2997provided for continuous data (predictive mean matching, normal), binary
2998data (logistic regression), unordered categorical data (polytomous logistic
2999regression) and ordered categorical data (proportional odds). MICE can also
3000impute continuous two-level data (normal model, pan, second-level variables).
3001Passive imputation can be used to maintain consistency between variables.
3002Various diagnostic plots are available to inspect the quality of the
3003imputations.")
3004 ;; Any of these two versions.
3005 (license (list license:gpl2 license:gpl3))))
7fd5f60b 3006
02cdb45f
RW
3007(define-public r-truncnorm
3008 (package
3009 (name "r-truncnorm")
9d6f3925 3010 (version "1.0-8")
02cdb45f
RW
3011 (source
3012 (origin
3013 (method url-fetch)
3014 (uri (cran-uri "truncnorm" version))
3015 (sha256
3016 (base32
9d6f3925 3017 "0zn88wdd58223kibk085rhsikl4yhlrwiyq109hzjg06hy6lwmj9"))))
02cdb45f 3018 (build-system r-build-system)
e9960d8c 3019 (home-page "https://cran.r-project.org/web/packages/truncnorm/")
02cdb45f
RW
3020 (synopsis "Truncated normal distribution")
3021 (description "This package provides functions for the truncated normal
3022distribution with mean equal to @code{mean} and standard deviation equal to
3023@code{sd}. It includes density, distribution, quantile, and expected value
3024functions, as well as a random generation function.")
3025 (license license:gpl2)))
3026
cb8b4c11
RW
3027(define-public r-rsolnp
3028 (package
3029 (name "r-rsolnp")
3030 (version "1.16")
3031 (source
3032 (origin
3033 (method url-fetch)
3034 (uri (cran-uri "Rsolnp" version))
3035 (sha256
3036 (base32
3037 "0w7nkj6igr0gi7r7jg950lsx7dj6aipgxi6vbjsf5f5yc9h7fhii"))))
3038 (properties `((upstream-name . "Rsolnp")))
3039 (build-system r-build-system)
3040 (propagated-inputs
3041 `(("r-truncnorm" ,r-truncnorm)))
e9960d8c 3042 (home-page "https://cran.r-project.org/web/packages/Rsolnp/")
cb8b4c11
RW
3043 (synopsis "General non-linear optimization")
3044 (description "The Rsolnp package implements a general non-linear augmented
3045Lagrange multiplier method solver, a @dfn{sequential quadratic
3046programming} (SQP) based solver).")
3047 ;; Any version of the GPL.
3048 (license license:gpl2+)))
3049
7fd5f60b
RW
3050(define-public r-hardyweinberg
3051 (package
3052 (name "r-hardyweinberg")
3d60c807 3053 (version "1.6.2")
7fd5f60b
RW
3054 (source
3055 (origin
3056 (method url-fetch)
3057 (uri (cran-uri "HardyWeinberg" version))
3058 (sha256
3059 (base32
3d60c807 3060 "15i7b444hikkfgqmx2ki827998xwra38k9v7a7kavwz6zmq5mmv9"))))
7fd5f60b
RW
3061 (properties `((upstream-name . "HardyWeinberg")))
3062 (build-system r-build-system)
3063 (propagated-inputs
3064 `(("r-mice" ,r-mice)
d0394944
RW
3065 ("r-rcpp" ,r-rcpp)
3066 ("r-rsolnp" ,r-rsolnp)))
7fd5f60b
RW
3067 (home-page "https://cran.r-project.org/package=HardyWeinberg")
3068 (synopsis "Statistical tests and graphics for Hardy-Weinberg equilibrium")
3069 (description
3070 "This package contains tools for exploring Hardy-Weinberg equilibrium for
3071diallelic genetic marker data. All classical tests (chi-square, exact,
3072likelihood-ratio and permutation tests) for Hardy-Weinberg equilibrium are
3073included in the package, as well as functions for power computation and for
3074the simulation of marker data under equilibrium and disequilibrium. Routines
3075for dealing with markers on the X-chromosome are included. Functions for
3076testing equilibrium in the presence of missing data by using multiple
3077imputation are also provided. Implements several graphics for exploring the
3078equilibrium status of a large set of diallelic markers: ternary plots with
3079acceptance regions, log-ratio plots and Q-Q plots.")
3080 (license license:gpl2+)))
3a22732c
RW
3081
3082(define-public r-sm
3083 (package
3084 (name "r-sm")
5621b840 3085 (version "2.2-5.6")
3a22732c
RW
3086 (source
3087 (origin
3088 (method url-fetch)
3089 (uri (cran-uri "sm" version))
3090 (sha256
3091 (base32
5621b840 3092 "0c4whcx879gb4lwvqnzxl5n9xgpcqh2c54ip9ami3mwfprzcv45q"))))
3a22732c
RW
3093 (build-system r-build-system)
3094 (native-inputs `(("gfortran" ,gfortran)))
3095 (home-page "http://www.stats.gla.ac.uk/~adrian/sm/")
3096 (synopsis "Smoothing methods for nonparametric regression and density estimation")
3097 (description
3098 "This is software accompanying the book 'Applied Smoothing Techniques for
3099Data Analysis---The Kernel Approach with S-Plus Illustrations', Oxford
3100University Press. It provides smoothing methods for nonparametric regression
3101and density estimation")
3102 (license license:gpl2+)))
9232cac4 3103
6174db2b
RJ
3104(define-public r-venndiagram
3105 (package
3106 (name "r-venndiagram")
3107 (version "1.6.20")
3108 (source (origin
3109 (method url-fetch)
3110 (uri (cran-uri "VennDiagram" version))
3111 (sha256
3112 (base32
3113 "1ic1jaxzw98si2p4n1fl4n3myhd7fpw0njb634cwhviwybzv6775"))))
3114 (properties `((upstream-name . "VennDiagram")))
3115 (build-system r-build-system)
3116 (propagated-inputs
3117 `(("r-futile-logger" ,r-futile-logger)))
3118 (home-page "https://cran.r-project.org/web/packages/VennDiagram/")
3119 (synopsis "Generate High-Resolution Venn and Euler Plots")
3120 (description
3121 "This package provides a set of functions to generate high-resolution
3122Venn and Euler plots. It includes handling for several special cases,
3123including two-case scaling, and extensive customization of plot shape and
3124structure.")
3125 (license license:gpl2+)))
3126
9232cac4
RW
3127(define-public r-vioplot
3128 (package
3129 (name "r-vioplot")
7d4b9818 3130 (version "0.3.0")
9232cac4
RW
3131 (source
3132 (origin
3133 (method url-fetch)
3134 (uri (cran-uri "vioplot" version))
3135 (sha256
3136 (base32
7d4b9818 3137 "1ddmmqq7qrnvr5q518afnysrl7ccr8am9njknv3dpwaqzcdr9akn"))))
9232cac4 3138 (build-system r-build-system)
7d4b9818
RW
3139 (propagated-inputs
3140 `(("r-sm" ,r-sm)
3141 ("r-zoo" ,r-zoo)))
9232cac4
RW
3142 (home-page "http://wsopuppenkiste.wiso.uni-goettingen.de/~dadler")
3143 (synopsis "Violin plot")
3144 (description
3145 "This package provides a violin plot, which is a combination of a box
3146plot and a kernel density plot.")
3147 (license license:bsd-3)))
7b0569c0
RW
3148
3149(define-public r-rsofia
3150 (package
3151 (name "r-rsofia")
3152 (version "1.1")
3153 (source (origin
3154 (method url-fetch)
3155 ;; This package has been removed from CRAN, so we can
3156 ;; only fetch it from the archives.
3157 (uri (string-append "https://cran.r-project.org/src/"
3158 "contrib/Archive/RSofia/RSofia_"
3159 version ".tar.gz"))
3160 (sha256
3161 (base32
3162 "0q931y9rcf6slb0s2lsxhgqrzy4yqwh8hb1124nxg0bjbxvjbihn"))))
3163 (properties `((upstream-name . "RSofia")))
3164 (build-system r-build-system)
3165 (propagated-inputs
3166 `(("r-rcpp" ,r-rcpp)))
3167 (home-page "https://cran.r-project.org/src/contrib/Archive/RSofia")
3168 (synopsis "Port of sofia-ml to R")
3169 (description "This package is a port of sofia-ml to R. Sofia-ml is a
3170suite of fast incremental algorithms for machine learning that can be used for
3171training models for classification or ranking.")
3172 (license license:asl2.0)))
738dda83 3173
3699383e
RW
3174(define-public r-xts
3175 (package
3176 (name "r-xts")
cea8a607 3177 (version "0.11-2")
3699383e
RW
3178 (source
3179 (origin
3180 (method url-fetch)
3181 (uri (cran-uri "xts" version))
3182 (sha256
3183 (base32
cea8a607 3184 "1f0kxrvn13py3hk2gh2m56cqm39x3bqp1i350r5viddacrm2yxqj"))))
3699383e
RW
3185 (build-system r-build-system)
3186 (propagated-inputs `(("r-zoo" ,r-zoo)))
3699383e
RW
3187 (home-page "https://github.com/joshuaulrich/xts")
3188 (synopsis "Extensible time series")
3189 (description
3190 "This package provides for uniform handling of R's different time-based
3191data classes by extending @code{zoo}, maximizing native format information
3192preservation and allowing for user-level customization and extension, while
3193simplifying cross-class interoperability.")
3194 (license license:gpl2+)))
b72b42cf
RW
3195
3196(define-public r-performanceanalytics
3197 (package
3198 (name "r-performanceanalytics")
081d143d 3199 (version "1.5.2")
b72b42cf
RW
3200 (source
3201 (origin
3202 (method url-fetch)
3203 (uri (cran-uri "PerformanceAnalytics" version))
3204 (sha256
3205 (base32
081d143d 3206 "01bgm57z079g6r505w3bj293zkbd49fwa8sg55z87vizwavipml6"))))
b72b42cf
RW
3207 (properties
3208 `((upstream-name . "PerformanceAnalytics")))
3209 (build-system r-build-system)
3210 (propagated-inputs
081d143d
RW
3211 `(("r-quadprog" ,r-quadprog)
3212 ("r-xts" ,r-xts)
b72b42cf 3213 ("r-zoo" ,r-zoo)))
d062957a 3214 (home-page "https://r-forge.r-project.org/projects/returnanalytics/")
b72b42cf
RW
3215 (synopsis "Econometric tools for performance and risk analysis")
3216 (description "This is a collection of econometric functions for
3217performance and risk analysis. This package aims to aid practitioners and
3218researchers in utilizing the latest research in analysis of non-normal return
3219streams. In general, it is most tested on return (rather than price) data on
3220a regular scale, but most functions will work with irregular return data as
3221well, and increasing numbers of functions will work with P&L or price data
3222where possible.")
3223 ;; Either version may be picked.
3224 (license (list license:gpl2 license:gpl3))))
018cf270
RW
3225
3226(define-public r-laeken
3227 (package
3228 (name "r-laeken")
ed46a05c 3229 (version "0.5.0")
018cf270
RW
3230 (source
3231 (origin
3232 (method url-fetch)
3233 (uri (cran-uri "laeken" version))
3234 (sha256
3235 (base32
ed46a05c 3236 "1g9r3y7b0gl91hijk9awa8rjk97mqpkxinzq2cgmx0m38ng9ylpa"))))
018cf270
RW
3237 (build-system r-build-system)
3238 (propagated-inputs
3239 `(("r-boot" ,r-boot)
3240 ("r-mass" ,r-mass)))
e9960d8c 3241 (home-page "https://cran.r-project.org/web/packages/laeken/")
018cf270
RW
3242 (synopsis "Estimation of indicators on social exclusion and poverty")
3243 (description "This package provides tools for the estimation of indicators
3244on social exclusion and poverty, as well as an implementation of Pareto tail
3245modeling for empirical income distributions.")
3246 (license license:gpl2+)))
e5c17b8d
RW
3247
3248(define-public r-vcd
3249 (package
3250 (name "r-vcd")
2960f965 3251 (version "1.4-4")
e5c17b8d
RW
3252 (source
3253 (origin
3254 (method url-fetch)
3255 (uri (cran-uri "vcd" version))
3256 (sha256
3257 (base32
2960f965 3258 "1lp99h0wvsc61l1dgcqjxdrcgpgw88ak430cdsv43kmm43qssqd5"))))
e5c17b8d
RW
3259 (build-system r-build-system)
3260 (propagated-inputs
3261 `(("r-colorspace" ,r-colorspace)
3262 ("r-lmtest" ,r-lmtest)
3263 ("r-mass" ,r-mass)))
e9960d8c 3264 (home-page "https://cran.r-project.org/web/packages/vcd/")
e5c17b8d
RW
3265 (synopsis "Visualizing categorical data")
3266 (description "This package provides visualization techniques, data sets,
3267summary and inference procedures aimed particularly at categorical data.
3268Special emphasis is given to highly extensible grid graphics. The package was
3269originally inspired by the book \"Visualizing Categorical Data\" by Michael
3270Friendly and is now the main support package for a new book, \"Discrete Data
3271Analysis with R\" by Michael Friendly and David Meyer (2015).")
3272 (license license:gpl2)))
ae164260
RW
3273
3274(define-public r-ica
3275 (package
3276 (name "r-ica")
fabf0993 3277 (version "1.0-2")
ae164260
RW
3278 (source
3279 (origin
3280 (method url-fetch)
3281 (uri (cran-uri "ica" version))
3282 (sha256
3283 (base32
fabf0993 3284 "0ya1nph1zwhad0bfz4yxs27kl45yk1dhnphdlrq34p8pqrpmj8g7"))))
ae164260 3285 (build-system r-build-system)
e9960d8c 3286 (home-page "https://cran.r-project.org/web/packages/ica/")
ae164260
RW
3287 (synopsis "Independent component analysis")
3288 (description "This package provides tools for @dfn{Independent Component
3289Analysis} (ICA) using various algorithms: FastICA,
3290Information-Maximization (Infomax), and @dfn{Joint Approximate Diagonalization
3291of Eigenmatrices} (JADE).")
3292 (license license:gpl2+)))
bf025ff6
RW
3293
3294(define-public r-dtw
3295 (package
3296 (name "r-dtw")
cda93e83 3297 (version "1.20-1")
bf025ff6
RW
3298 (source
3299 (origin
3300 (method url-fetch)
3301 (uri (cran-uri "dtw" version))
3302 (sha256
3303 (base32
cda93e83 3304 "1w301xwizncy5r8v9rwwdxfshydgp3l1pnjla1fjn6n8lx3imjj3"))))
bf025ff6
RW
3305 (build-system r-build-system)
3306 (propagated-inputs `(("r-proxy" ,r-proxy)))
3307 (home-page "http://dtw.r-forge.r-project.org/")
3308 (synopsis "Dynamic Time Warping Algorithms")
3309 (description "This package provides a comprehensive implementation of
3310@dfn{dynamic time warping} (DTW) algorithms in R. DTW computes the
3311optimal (least cumulative distance) alignment between points of two time
3312series. Common DTW variants covered include local (slope) and global (window)
3313constraints, subsequence matches, arbitrary distance definitions,
3314normalizations, minimum variance matching, and so on.")
3315 (license license:gpl2+)))
15ef07f0
RW
3316
3317(define-public r-sdmtools
3318 (package
3319 (name "r-sdmtools")
5ac82ee3 3320 (version "1.1-221.1")
15ef07f0
RW
3321 (source
3322 (origin
3323 (method url-fetch)
3324 (uri (cran-uri "SDMTools" version))
3325 (sha256
3326 (base32
5ac82ee3 3327 "1fsgnlc7glawimzijp11j53g5bnfp1mdq9wb0754idmxcdi8a99q"))))
15ef07f0
RW
3328 (properties `((upstream-name . "SDMTools")))
3329 (build-system r-build-system)
3330 (propagated-inputs `(("r-r-utils" ,r-r-utils)))
3331 (home-page "http://www.rforge.net/SDMTools/")
3332 (synopsis "Species distribution modelling tools")
9c98e0e7 3333 (description "This package provides a set of tools for post processing
15ef07f0
RW
3334the outcomes of species distribution modeling exercises. It includes novel
3335methods for comparing models and tracking changes in distributions through
3336time. It further includes methods for visualizing outcomes, selecting
3337thresholds, calculating measures of accuracy and landscape fragmentation
3338statistics, etc.")
3339 (license license:gpl3+)))
ae3f2079
RW
3340
3341(define-public r-scatterplot3d
3342 (package
3343 (name "r-scatterplot3d")
5ade82bb 3344 (version "0.3-41")
ae3f2079
RW
3345 (source
3346 (origin
3347 (method url-fetch)
3348 (uri (cran-uri "scatterplot3d" version))
3349 (sha256
3350 (base32
5ade82bb 3351 "152xqz9c70qab86mpgng049gxsg5f4fpf1m8dh93fb9v1avjd0sc"))))
ae3f2079 3352 (build-system r-build-system)
e9960d8c 3353 (home-page "https://cran.r-project.org/web/packages/scatterplot3d/")
ae3f2079
RW
3354 (synopsis "3D scatter plot")
3355 (description "This package provides an implementation of scatter plots for
3356plotting. a three dimensional point cloud.")
3357 (license license:gpl2)))
f90018e5
RW
3358
3359(define-public r-ggridges
3360 (package
3361 (name "r-ggridges")
16a39c2d 3362 (version "0.5.1")
f90018e5
RW
3363 (source
3364 (origin
3365 (method url-fetch)
3366 (uri (cran-uri "ggridges" version))
3367 (sha256
3368 (base32
16a39c2d 3369 "0dhwcpy785ac2ny5bjp284595nnybi3554wd0yffsli0vzf7ry01"))))
f90018e5
RW
3370 (build-system r-build-system)
3371 (propagated-inputs
3372 `(("r-ggplot2" ,r-ggplot2)
3373 ("r-plyr" ,r-plyr)
0edd2fd1
RW
3374 ("r-scales" ,r-scales)
3375 ("r-withr" ,r-withr)))
f90018e5
RW
3376 (home-page "https://github.com/clauswilke/ggridges")
3377 (synopsis "Ridgeline plots in ggplot2")
3378 (description
3379 "Ridgeline plots provide a convenient way of visualizing changes in
3380distributions over time or space. This package enables the creation of such
3381plots in @code{ggplot2}.")
3382 (license license:gpl2)))
007f6d98
RW
3383
3384(define-public r-ggjoy
3385 (package
3386 (name "r-ggjoy")
c36745cf 3387 (version "0.4.1")
007f6d98
RW
3388 (source
3389 (origin
3390 (method url-fetch)
3391 (uri (cran-uri "ggjoy" version))
3392 (sha256
3393 (base32
c36745cf 3394 "012md2m0jqfcccb933j423m3ck31v3p0pd41gjxpyg9082y7ixyj"))))
007f6d98
RW
3395 (build-system r-build-system)
3396 (propagated-inputs
3397 `(("r-ggplot2" ,r-ggplot2)
3398 ("r-ggridges" ,r-ggridges)))
3399 (home-page "https://github.com/clauswilke/ggjoy")
3400 (synopsis "Joyplots in ggplot2")
3401 (description "Joyplots provide a convenient way of visualizing changes in
3402distributions over time or space. This package enables the creation of such
3403plots in @code{ggplot2}.")
3404 (license license:gpl2)))
2976f304
RW
3405
3406(define-public r-cli
3407 (package
3408 (name "r-cli")
78e29738 3409 (version "1.1.0")
2976f304
RW
3410 (source
3411 (origin
3412 (method url-fetch)
3413 (uri (cran-uri "cli" version))
3414 (sha256
3415 (base32
78e29738 3416 "02hdwvdq5nic6dhxj88jbgsc9m8yrz3yibigg6szkggxyk6hzh2g"))))
2976f304
RW
3417 (build-system r-build-system)
3418 (propagated-inputs
3419 `(("r-assertthat" ,r-assertthat)
3420 ("r-crayon" ,r-crayon)))
3421 (home-page "https://github.com/r-lib/cli#readme")
3422 (synopsis "Helpers for developing command line interfaces")
3423 (description "This package provides a suite of tools designed to build
3424attractive command line interfaces (CLIs). It includes tools for drawing
3425rules, boxes, trees, and Unicode symbols with ASCII alternatives.")
3426 (license license:expat)))
55577393
RW
3427
3428(define-public r-argparser
3429 (package
3430 (name "r-argparser")
3431 (version "0.4")
3432 (source
3433 (origin
3434 (method url-fetch)
3435 (uri (cran-uri "argparser" version))
3436 (sha256
3437 (base32
3438 "0s1wxshx4jk69wfxhycx973q6y8cmqrfymyjklhq1i8xrj0kmmx9"))))
3439 (build-system r-build-system)
3440 (home-page "https://bitbucket.org/djhshih/argparser")
3441 (synopsis "Command-line argument parser")
3442 (description
3443 "This package provides a cross-platform command-line argument parser
3444written purely in R with no external dependencies. It is useful with the
3445Rscript front-end and facilitates turning an R script into an executable
3446script.")
3447 (license license:gpl3+)))
a3257d42
RW
3448
3449(define-public r-debugme
3450 (package
3451 (name "r-debugme")
3452 (version "1.1.0")
3453 (source
3454 (origin
3455 (method url-fetch)
3456 (uri (cran-uri "debugme" version))
3457 (sha256
3458 (base32
3459 "1c9sg55zvf10h8198jdnpamm6f66lzw3c3jnmdp9ls6na0j0xbjd"))))
3460 (build-system r-build-system)
3461 (propagated-inputs `(("r-crayon" ,r-crayon)))
3462 (home-page "https://github.com/r-lib/debugme#readme")
3463 (synopsis "Debug R packages")
3464 (description
3465 "This package allows the user to specify debug messages as special string
3466constants, and control debugging of packages via environment variables.")
3467 (license license:expat)))
2058e37d
RW
3468
3469(define-public r-processx
3470 (package
3471 (name "r-processx")
4d970db8 3472 (version "3.3.1")
2058e37d
RW
3473 (source
3474 (origin
3475 (method url-fetch)
3476 (uri (cran-uri "processx" version))
3477 (sha256
3478 (base32
4d970db8 3479 "1bhbfacx2z2d97pz5bch45nvbvywhx2zp049czlfbdivkzgxn8v1"))))
2058e37d
RW
3480 (build-system r-build-system)
3481 (propagated-inputs
0e87bf01
RW
3482 `(("r-ps" ,r-ps)
3483 ("r-r6" ,r-r6)))
2058e37d
RW
3484 (home-page "https://github.com/r-lib/processx3")
3485 (synopsis "Execute and control system processes")
3486 (description
3487 "This package provides portable tools to run system processes in the
3488background. It can check if a background process is running; wait on a
3489background process to finish; get the exit status of finished processes; kill
3490background processes and their children; restart processes. It can read the
3491standard output and error of the processes, using non-blocking connections.
3492@code{processx} can poll a process for standard output or error, with a
3493timeout. It can also poll several processes at once.")
3494 (license license:expat)))
f285346a
RW
3495
3496(define-public r-tsp
3497 (package
3498 (name "r-tsp")
130314d8 3499 (version "1.1-7")
f285346a
RW
3500 (source
3501 (origin
3502 (method url-fetch)
3503 (uri (cran-uri "TSP" version))
3504 (sha256
3505 (base32
130314d8 3506 "0rxxhvqi55869dg2p82hzg5kvgcqf9h60cjcg00k3pv9aw4x07kb"))))
f285346a
RW
3507 (properties `((upstream-name . "TSP")))
3508 (build-system r-build-system)
3509 (propagated-inputs `(("r-foreach" ,r-foreach)))
3510 (home-page "https://cran.r-project.org/web/packages/TSP/")
3511 (synopsis "Traveling salesperson problem (TSP)")
3512 (description "This package provides basic infrastructure and some
3513algorithms for the @dfn{traveling salesperson problem}(TSP) (also known as the
3514traveling salesman problem).")
3515 (license license:gpl3)))
ffb59bce
RW
3516
3517(define-public r-qap
3518 (package
3519 (name "r-qap")
3520 (version "0.1-1")
3521 (source
3522 (origin
3523 (method url-fetch)
3524 (uri (cran-uri "qap" version))
3525 (sha256
3526 (base32
3527 "0d2d1ni1camixyi45lfy00f4pn3p063k7bsi8gj5scp6n15mdgb0"))))
3528 (build-system r-build-system)
3529 (native-inputs `(("gfortran" ,gfortran)))
d062957a 3530 (home-page "https://cran.r-project.org/web/packages/qap/")
ffb59bce
RW
3531 (synopsis "Heuristics for the quadratic assignment problem (QAP)")
3532 (description "This package implements heuristics for the @dfn{quadratic
3533assignment problem} (QAP). Currently only a simulated annealing heuristic is
3534available.")
3535 (license license:gpl3)))
7fe49f2a
RW
3536
3537(define-public r-gclus
3538 (package
3539 (name "r-gclus")
111516f9 3540 (version "1.3.2")
7fe49f2a
RW
3541 (source
3542 (origin
3543 (method url-fetch)
3544 (uri (cran-uri "gclus" version))
3545 (sha256
3546 (base32
111516f9 3547 "1cz0g0i972955hhaji30rx8448x7f3as7z1sww9i5h86ybgirilw"))))
7fe49f2a
RW
3548 (build-system r-build-system)
3549 (propagated-inputs `(("r-cluster" ,r-cluster)))
d062957a 3550 (home-page "https://cran.r-project.org/web/packages/gclus/")
7fe49f2a
RW
3551 (synopsis "Clustering graphics")
3552 (description "This package orders panels in scatterplot matrices and
3553parallel coordinate displays by some merit index. It contains various indices
3554of merit, ordering functions, and enhanced versions of @code{pairs} and
3555@code{parcoord} which color panels according to their merit level.")
3556 (license license:gpl2+)))
8e5e26d2
RW
3557
3558(define-public r-webshot
3559 (package
3560 (name "r-webshot")
8871a513 3561 (version "0.5.1")
8e5e26d2
RW
3562 (source
3563 (origin
3564 (method url-fetch)
3565 (uri (cran-uri "webshot" version))
3566 (sha256
3567 (base32
8871a513 3568 "08sb1xi376pfy1vwilk2d68zljsg9yiv04n2dkqz383gdhh0sxdr"))))
8e5e26d2
RW
3569 (build-system r-build-system)
3570 (propagated-inputs
8871a513
RW
3571 `(("r-callr" ,r-callr)
3572 ("r-jsonlite" ,r-jsonlite)
3573 ("r-magrittr" ,r-magrittr)))
8e5e26d2
RW
3574 (home-page "https://github.com/wch/webshot/")
3575 (synopsis "Take screenshots of web pages")
3576 (description
3577 "Webshot makes it easy to take screenshots of web pages from within R.
3578It can also run Shiny applications locally and take screenshots of the
3579application; and it can render and screenshot static as well as interactive R
3580Markdown documents.")
3581 (license license:gpl2)))
2e9d187b
RW
3582
3583(define-public r-seriation
3584 (package
3585 (name "r-seriation")
3586 (version "1.2-3")
3587 (source
3588 (origin
3589 (method url-fetch)
3590 (uri (cran-uri "seriation" version))
3591 (sha256
3592 (base32
3593 "1q6hw4hjw224b4y0dc0j630v2pgj6sn455nwkilb70w8k31hpk92"))))
3594 (build-system r-build-system)
3595 (propagated-inputs
3596 `(("r-cluster" ,r-cluster)
3597 ("r-colorspace" ,r-colorspace)
3598 ("r-dendextend" ,r-dendextend)
3599 ("r-gclus" ,r-gclus)
3600 ("r-gplots" ,r-gplots)
3601 ("r-mass" ,r-mass)
3602 ("r-qap" ,r-qap)
3603 ("r-registry" ,r-registry)
3604 ("r-tsp" ,r-tsp)))
3605 (native-inputs `(("gfortran" ,gfortran)))
3606 (home-page "http://s2.smu.edu/IDA/seriation/")
3607 (synopsis "Infrastructure for ordering objects using seriation")
3608 (description
3609 "This package provides infrastructure for seriation with an
3610implementation of several seriation/sequencing techniques to reorder matrices,
3611dissimilarity matrices, and dendrograms. It also provides (optimally)
3612reordered heatmaps, color images and clustering visualizations like
3613dissimilarity plots, and visual assessment of cluster tendency plots (VAT and
3614iVAT).")
3615 (license license:gpl3)))
e9e78d2c 3616
f6d2b45c
RW
3617(define-public r-xfun
3618 (package
3619 (name "r-xfun")
756f2d35 3620 (version "0.7")
f6d2b45c
RW
3621 (source
3622 (origin
3623 (method url-fetch)
3624 (uri (cran-uri "xfun" version))
3625 (sha256
3626 (base32
756f2d35 3627 "1gllyyjhkvswcwa15h1f3kb1l1drs2ifpxy4jjanmmhaj7wcmvy9"))))
f6d2b45c
RW
3628 (build-system r-build-system)
3629 (home-page "https://github.com/yihui/xfun")
3630 (synopsis "Miscellaneous functions")
3631 (description
3632 "This package provides miscellaneous functions commonly used in other
3633packages maintained by Yihui Xie.")
3634 (license license:expat)))
f2442968
RW
3635
3636(define-public r-utf8
3637 (package
3638 (name "r-utf8")
65ea783f 3639 (version "1.1.4")
f2442968
RW
3640 (source
3641 (origin
3642 (method url-fetch)
3643 (uri (cran-uri "utf8" version))
3644 (sha256
3645 (base32
65ea783f 3646 "0m0ywg8k3blfiahxvh1i4zn9dksrlc937d2lbza5fc38zjnrrnpn"))))
f2442968
RW
3647 (build-system r-build-system)
3648 (home-page "https://github.com/patperry/r-utf8")
3649 (synopsis "Unicode text processing")
3650 (description
3651 "This package provides tools to process and print UTF-8 encoded
3652international text (Unicode). Input, validate, normalize, encode, format, and
3653display.")
3654 (license license:asl2.0)))
c555ccab 3655
c87a3358
RW
3656(define-public r-zeallot
3657 (package
3658 (name "r-zeallot")
3659 (version "0.1.0")
3660 (source
3661 (origin
3662 (method url-fetch)
3663 (uri (cran-uri "zeallot" version))
3664 (sha256
3665 (base32
3666 "1sd1igcfnv27pa3bqxlbyxchi562h7grnjg1l7wxx3bwr49i57s3"))))
3667 (build-system r-build-system)
3668 (home-page "https://github.com/nteetor/zeallot")
3669 (synopsis "Multiple, unpacking, and destructuring assignment")
3670 (description
3671 "This package provides a @code{%<-%} operator to perform multiple,
3672unpacking, and destructuring assignment in R. The operator unpacks the
3673right-hand side of an assignment into multiple values and assigns these values
3674to variables on the left-hand side of the assignment.")
3675 (license license:expat)))
3676
6004bc1a
RW
3677(define-public r-vctrs
3678 (package
3679 (name "r-vctrs")
3680 (version "0.1.0")
3681 (source
3682 (origin
3683 (method url-fetch)
3684 (uri (cran-uri "vctrs" version))
3685 (sha256
3686 (base32
3687 "13w1r8zpalirpfaz5sykpn0mj4jmhxi2qkdcfq081ixlfjyzwa6c"))))
3688 (build-system r-build-system)
3689 (propagated-inputs
3690 `(("r-backports" ,r-backports)
3691 ("r-digest" ,r-digest)
3692 ("r-glue" ,r-glue)
3693 ("r-rlang" ,r-rlang)
3694 ("r-zeallot" ,r-zeallot)))
3695 (home-page "https://github.com/r-lib/vctrs")
3696 (synopsis "Vector helpers")
3697 (description
3698 "There are three main goals to the @code{vctrs} package:
3699
3700@enumerate
3701@item To propose @code{vec_size()} and @code{vec_type()} as alternatives to
3702 @code{length()} and @code{class()}. These definitions are paired with a
3703 framework for type-coercion and size-recycling.
3704@item To define type- and size-stability as desirable function properties, use
3705 them to analyse existing base function, and to propose better alternatives.
3706 This work has been particularly motivated by thinking about the ideal
3707 properties of @code{c()}, @code{ifelse()}, and @code{rbind()}.
3708@item To provide a new @code{vctr} base class that makes it easy to create new
3709 S3 vectors. @code{vctrs} provides methods for many base generics in terms of
3710 a few new @code{vctrs} generics, making implementation considerably simpler
3711 and more robust.
3712@end enumerate\n")
3713 (license license:gpl3)))
3714
c555ccab
RW
3715(define-public r-pillar
3716 (package
3717 (name "r-pillar")
d328379d 3718 (version "1.4.1")
c555ccab
RW
3719 (source
3720 (origin
3721 (method url-fetch)
3722 (uri (cran-uri "pillar" version))
3723 (sha256
3724 (base32
d328379d 3725 "0mcc09caxm69pghhz6b8vawj9ni63aijv5qba53pg4ph7rxclwgm"))))
c555ccab
RW
3726 (build-system r-build-system)
3727 (propagated-inputs
3728 `(("r-cli" ,r-cli)
3729 ("r-crayon" ,r-crayon)
6f5b157e 3730 ("r-fansi" ,r-fansi)
c555ccab 3731 ("r-rlang" ,r-rlang)
33ba8135
RW
3732 ("r-utf8" ,r-utf8)
3733 ("r-vctrs" ,r-vctrs)))
c555ccab
RW
3734 (home-page "https://github.com/r-lib/pillar")
3735 (synopsis "Coloured formatting for columns")
3736 (description
3737 "This package provides a @code{pillar} generic designed for formatting
3738columns of data using the full range of colours provided by modern
3739terminals.")
3740 (license license:gpl3)))
1c791925
RW
3741
3742(define-public r-uuid
3743 (package
3744 (name "r-uuid")
3745 (version "0.1-2")
3746 (source
3747 (origin
3748 (method url-fetch)
3749 (uri (cran-uri "uuid" version))
3750 (sha256
3751 (base32
3752 "1gmisd630fc8ybg845hbg13wmm3pk3npaamrh5wqbc1nqd6p0wfx"))))
3753 (build-system r-build-system)
3754 (home-page "http://www.rforge.net/uuid")
3755 (synopsis "Tools for generating and handling of UUIDs")
3756 (description
3757 "This package provides tools for generating and handling of
3758@dfn{Universally Unique Identifiers} (UUIDs).")
3759 (license license:expat)))
846f4c23
RW
3760
3761(define-public r-tinytex
3762 (package
3763 (name "r-tinytex")
154c2b0b 3764 (version "0.13")
846f4c23
RW
3765 (source
3766 (origin
3767 (method url-fetch)
3768 (uri (cran-uri "tinytex" version))
3769 (sha256
3770 (base32
154c2b0b 3771 "1bbphyrbk2rnyi0jhw4hj2w4l84kyhb0km901qd5qnnl0cy6dzvb"))))
846f4c23 3772 (build-system r-build-system)
8b0701d9
TGR
3773 (propagated-inputs
3774 `(("r-xfun" ,r-xfun)))
846f4c23
RW
3775 (home-page "https://github.com/yihui/tinytex")
3776 (synopsis "Helper functions for TeX Live and compiling LaTeX documents")
3777 (description
3778 "This package provides helper functions to install and maintain the LaTeX
3779distribution named TinyTeX, a lightweight, cross-platform, portable, and
3780easy-to-maintain version of TeX Live. This package also contains helper
3781functions to compile LaTeX documents, and install missing LaTeX packages
3782automatically.")
3783 (license license:expat)))
4376166b
RW
3784
3785(define-public r-metap
3786 (package
3787 (name "r-metap")
87bb1b8c 3788 (version "1.1")
4376166b
RW
3789 (source
3790 (origin
3791 (method url-fetch)
3792 (uri (cran-uri "metap" version))
3793 (sha256
3794 (base32
87bb1b8c 3795 "10kv7z8pik5iy374h399vws0ldf41y2nczlwh8axqf9dcwl084i0"))))
4376166b
RW
3796 (build-system r-build-system)
3797 (propagated-inputs
e32368c1
RW
3798 `(("r-lattice" ,r-lattice)
3799 ("r-rdpack" ,r-rdpack)))
4376166b
RW
3800 (home-page "http://www.dewey.myzen.co.uk/meta/meta.html")
3801 (synopsis "Meta-analysis of significance values")
3802 (description
3803 "The canonical way to perform meta-analysis involves using effect sizes.
3804When they are not available this package provides a number of methods for
3805meta-analysis of significance values including the methods of Edgington,
3806Fisher, Stouffer, Tippett, and Wilkinson; a number of data-sets to replicate
3807published results; and a routine for graphical display.")
3808 (license license:gpl2)))
5f4565b1
RW
3809
3810(define-public r-network
3811 (package
3812 (name "r-network")
20a48579 3813 (version "1.15")
5f4565b1
RW
3814 (source
3815 (origin
3816 (method url-fetch)
3817 (uri (cran-uri "network" version))
3818 (sha256
3819 (base32
20a48579 3820 "1cscw5978fyixhkicf06c4b2g1yf6gyi8vx86cz3dy75d41mrgjw"))))
5f4565b1 3821 (build-system r-build-system)
75cbc800
RW
3822 (propagated-inputs
3823 `(("r-magrittr" ,r-magrittr)
3824 ("r-tibble" ,r-tibble)))
40862677 3825 (home-page "https://statnet.org/")
5f4565b1
RW
3826 (synopsis "Classes for relational data")
3827 (description
3828 "This package provides tools to create and modify network objects. The
3829@code{network} class can represent a range of relational data types, and
3830supports arbitrary vertex/edge/graph attributes.")
3831 (license license:gpl2+)))
07a2f34d
RW
3832
3833(define-public r-statnet-common
3834 (package
3835 (name "r-statnet-common")
9d831327 3836 (version "4.2.0")
07a2f34d
RW
3837 (source
3838 (origin
3839 (method url-fetch)
3840 (uri (cran-uri "statnet.common" version))
3841 (sha256
3842 (base32
9d831327 3843 "0q942g6kqmqxfss1cxb3yg8y5r1k1h5cyy99s1cfisrn6hqc6xhi"))))
07a2f34d
RW
3844 (properties
3845 `((upstream-name . "statnet.common")))
3846 (build-system r-build-system)
1268a995
RW
3847 (propagated-inputs
3848 `(("r-coda" ,r-coda)))
40862677 3849 (home-page "https://statnet.org")
07a2f34d
RW
3850 (synopsis "R scripts and utilities used by the Statnet software")
3851 (description "This package provides non-statistical utilities used by the
3852software developed by the Statnet Project.")
3853 (license license:gpl3)))
1088744d
RW
3854
3855(define-public r-sna
3856 (package
3857 (name "r-sna")
3858 (version "2.4")
3859 (source
3860 (origin
3861 (method url-fetch)
3862 (uri (cran-uri "sna" version))
3863 (sha256
3864 (base32
3865 "1ks8819qvpdfansfqj9p32s1rhvl26frvbi78m4rx1wd1qcv74i2"))))
3866 (build-system r-build-system)
3867 (propagated-inputs
3868 `(("r-network" ,r-network)
3869 ("r-statnet-common" ,r-statnet-common)))
40862677 3870 (home-page "https://statnet.org")
1088744d
RW
3871 (synopsis "Tools for social network analysis")
3872 (description
3873 "This package provides a range of tools for social network analysis,
3874including node and graph-level indices, structural distance and covariance
3875methods, structural equivalence detection, network regression, random graph
3876generation, and 2D/3D network visualization.")
3877 (license license:gpl2+)))
93c21ddc
RW
3878
3879(define-public r-ttr
3880 (package
3881 (name "r-ttr")
534bf85b 3882 (version "0.23-4")
93c21ddc
RW
3883 (source
3884 (origin
3885 (method url-fetch)
3886 (uri (cran-uri "TTR" version))
3887 (sha256
3888 (base32
534bf85b 3889 "18mzyv6cmxmqyqsfwlx2b2k055887mfgc2jgj8xkn8c6m56n05zb"))))
93c21ddc
RW
3890 (properties `((upstream-name . "TTR")))
3891 (build-system r-build-system)
3892 (propagated-inputs
3893 `(("r-curl" ,r-curl)
3894 ("r-xts" ,r-xts)
3895 ("r-zoo" ,r-zoo)))
3896 (native-inputs `(("gfortran" ,gfortran)))
3897 (home-page "https://github.com/joshuaulrich/TTR")
3898 (synopsis "Technical trading rules")
3899 (description
3900 "This package provides functions and data to construct technical trading
3901rules with R.")
3902 (license license:gpl2)))
0b64332c
RW
3903
3904(define-public r-leaps
3905 (package
3906 (name "r-leaps")
3907 (version "3.0")
3908 (source
3909 (origin
3910 (method url-fetch)
3911 (uri (cran-uri "leaps" version))
3912 (sha256
3913 (base32
3914 "11gjmn1azrjw5xlvdb4gknj9985kck9x8zb9np1rnk2smp6pka2m"))))
3915 (build-system r-build-system)
3916 (native-inputs `(("gfortran" ,gfortran)))
d062957a 3917 (home-page "https://cran.r-project.org/web/packages/leaps/")
0b64332c
RW
3918 (synopsis "Regression subset selection")
3919 (description
3920 "This package provides tools for regression subset selection, including
3921exhaustive search.")
3922 (license license:gpl2+)))
d3cb62e5
RW
3923
3924(define-public r-splus2r
3925 (package
3926 (name "r-splus2r")
3927 (version "1.2-2")
3928 (source
3929 (origin
3930 (method url-fetch)
3931 (uri (cran-uri "splus2R" version))
3932 (sha256
3933 (base32
3934 "0xrbj8vxy0pc6hl7m8abv71d3hjw47cl51s7j7priadyqczkq6sz"))))
3935 (properties `((upstream-name . "splus2R")))
3936 (build-system r-build-system)
3937 (native-inputs `(("gfortran" ,gfortran)))
d062957a 3938 (home-page "https://cran.r-project.org/web/packages/splus2R/")
d3cb62e5
RW
3939 (synopsis "Supplemental S-PLUS functionality in R")
3940 (description
3941 "Currently there are many functions in S-PLUS that are missing in R. To
3942facilitate the conversion of S-PLUS packages to R packages, this package
3943provides some missing S-PLUS functionality in R.")
3944 (license license:gpl2)))
034ac9d6
RW
3945
3946(define-public r-ifultools
3947 (package
3948 (name "r-ifultools")
d8787b33 3949 (version "2.0-5")
034ac9d6
RW
3950 (source
3951 (origin
3952 (method url-fetch)
3953 (uri (cran-uri "ifultools" version))
3954 (sha256
3955 (base32
d8787b33 3956 "040kvbczcmmbaiaz0k0pdq9af541pjj6iwzh1a3w4szh9w6b5a3j"))))
034ac9d6
RW
3957 (build-system r-build-system)
3958 (propagated-inputs
3959 `(("r-mass" ,r-mass)
3960 ("r-splus2r" ,r-splus2r)))
d062957a 3961 (home-page "https://cran.r-project.org/web/packages/ifultools/")
034ac9d6
RW
3962 (synopsis "Insightful research tools")
3963 (description "This package provides C code used by the wmtsa, fractal, and
3964sapa R packages.")
3965 (license license:gpl2)))
0be7effe
RW
3966
3967(define-public r-sapa
3968 (package
3969 (name "r-sapa")
3970 (version "2.0-2")
3971 (source
3972 (origin
3973 (method url-fetch)
3974 (uri (cran-uri "sapa" version))
3975 (sha256
3976 (base32
3977 "056xlh14dnzq4x7sbp7ff2k61jxy7110a742b502vz549qfrr5ds"))))
3978 (build-system r-build-system)
3979 (propagated-inputs
3980 `(("r-ifultools" ,r-ifultools)
3981 ("r-splus2r" ,r-splus2r)))
d062957a 3982 (home-page "https://cran.r-project.org/web/packages/sapa/")
0be7effe
RW
3983 (synopsis "Spectral analysis for physical applications")
3984 (description "This package provides software for the book Spectral
3985Analysis for Physical Applications, Donald B. Percival and Andrew T. Walden,
3986Cambridge University Press, 1993.")
3987 (license license:gpl2)))
dceb1592 3988
3a4c6288
RW
3989(define-public r-aggregation
3990 (package
3991 (name "r-aggregation")
3992 (version "1.0.1")
3993 (source
3994 (origin
3995 (method url-fetch)
3996 (uri (cran-uri "aggregation" version))
3997 (sha256
3998 (base32
3999 "0j9g604m2ccc7hcy02539yja9cf3xcbl25gvp838bp4x8w18my46"))))
4000 (build-system r-build-system)
4001 (home-page "https://cran.r-project.org/web/packages/aggregation/")
4002 (synopsis "Methods for p-value aggregation")
4003 (description
4004 "This package contains functionality for performing the following methods
4005of p-value aggregation: Fisher's method, the Lancaster method (weighted
4006Fisher's method), and Sidak correction.")
4007 (license license:gpl3)))
4008
dceb1592
RW
4009(define-public r-quantmod
4010 (package
4011 (name "r-quantmod")
42e7552d 4012 (version "0.4-14")
dceb1592
RW
4013 (source
4014 (origin
4015 (method url-fetch)
4016 (uri (cran-uri "quantmod" version))
4017 (sha256
4018 (base32
42e7552d 4019 "1csljagnpkr1mmc18h70b64zbyj07kx972nip9dng39jfg7ilnyr"))))
dceb1592
RW
4020 (build-system r-build-system)
4021 (propagated-inputs
4022 `(("r-curl" ,r-curl)
4023 ("r-ttr" ,r-ttr)
4024 ("r-xts" ,r-xts)
4025 ("r-zoo" ,r-zoo)))
d062957a 4026 (home-page "https://cran.r-project.org/web/packages/quantmod/")
dceb1592
RW
4027 (synopsis "Quantitative financial modelling framework")
4028 (description "This package provides a quantitative financial modelling
4029framework to allow users to specify, build, trade, and analyse quantitative
4030financial trading strategies.")
4031 (license license:gpl3)))
b6dc3255
RW
4032
4033(define-public r-tseries
4034 (package
4035 (name "r-tseries")
7abb15f2 4036 (version "0.10-46")
b6dc3255
RW
4037 (source
4038 (origin
4039 (method url-fetch)
4040 (uri (cran-uri "tseries" version))
4041 (sha256
4042 (base32
7abb15f2 4043 "08kjw0bfj5gfcrxpblwqxwna8a5g9gnr7ya61qb02r263pyhm50j"))))
b6dc3255
RW
4044 (build-system r-build-system)
4045 (propagated-inputs
4046 `(("r-quadprog" ,r-quadprog)
4047 ("r-quantmod" ,r-quantmod)
4048 ("r-zoo" ,r-zoo)))
4049 (native-inputs
4050 `(("gfortran" ,gfortran)))
d062957a 4051 (home-page "https://cran.r-project.org/web/packages/tseries/")
b6dc3255
RW
4052 (synopsis "Time series analysis and computational finance")
4053 (description
4054 "This package provides functions relating to time series analysis and
4055computational finance.")
4056 (license license:gpl2)))
a2c079a7
RW
4057
4058(define-public r-wmtsa
4059 (package
4060 (name "r-wmtsa")
4061 (version "2.0-3")
4062 (source
4063 (origin
4064 (method url-fetch)
4065 (uri (cran-uri "wmtsa" version))
4066 (sha256
4067 (base32
4068 "1q436krz5p1f4a7a7sya6a9rh9x9mi8zzcgq66gbk9w9w4hcqcj6"))))
4069 (build-system r-build-system)
4070 (propagated-inputs
4071 `(("r-ifultools" ,r-ifultools)
4072 ("r-mass" ,r-mass)
4073 ("r-splus2r" ,r-splus2r)))
d062957a 4074 (home-page "https://cran.r-project.org/web/packages/wmtsa/")
a2c079a7
RW
4075 (synopsis "Wavelet methods for time series analysis")
4076 (description
4077 "This package provides software to accompany the book \"Wavelet Methods
4078for Time Series Analysis\", Donald B. Percival and Andrew T. Walden, Cambridge
4079University Press, 2000.")
4080 (license license:gpl2)))
4993a02a
RW
4081
4082(define-public r-tsa
4083 (package
4084 (name "r-tsa")
1fe9919a 4085 (version "1.2")
4993a02a
RW
4086 (source
4087 (origin
4088 (method url-fetch)
4089 (uri (cran-uri "TSA" version))
4090 (sha256
4091 (base32
1fe9919a 4092 "0gjfqibwdznz0nka95k4fjm935svxjpnqfywwz403crn2lh30h6q"))))
4993a02a
RW
4093 (properties `((upstream-name . "TSA")))
4094 (build-system r-build-system)
4095 (propagated-inputs
4096 `(("r-leaps" ,r-leaps)
4097 ("r-locfit" ,r-locfit)
1fe9919a 4098 ("r-mgcv" ,r-mgcv)))
4993a02a
RW
4099 (home-page "http://www.stat.uiowa.edu/~kchan/TSA.htm")
4100 (synopsis "Time series analysis")
4101 (description
4102 "This package contains R functions and datasets detailed in the book
4103\"Time Series Analysis with Applications in R (second edition)\" by Jonathan
4104Cryer and Kung-Sik Chan.")
4105 (license license:gpl2+)))
19da7fe3
RW
4106
4107(define-public r-extradistr
4108 (package
4109 (name "r-extradistr")
905734fd 4110 (version "1.8.10")
19da7fe3
RW
4111 (source
4112 (origin
4113 (method url-fetch)
4114 (uri (cran-uri "extraDistr" version))
4115 (sha256
4116 (base32
905734fd 4117 "00lvqp5bb3iak5myiz4rqm887bkq9sdh7aybmz84mmfni6q01m28"))))
19da7fe3
RW
4118 (properties `((upstream-name . "extraDistr")))
4119 (build-system r-build-system)
4120 (propagated-inputs
4121 `(("r-rcpp" ,r-rcpp)))
4122 (home-page "https://github.com/twolodzko/extraDistr")
4123 (synopsis "Additional univariate and multivariate distributions")
4124 (description
4125 "This package implements density, distribution functions, quantile
4126functions and random generation functions for a large number of univariate and
4127multivariate distributions.")
4128 (license license:gpl2)))
5b25bc55
RW
4129
4130(define-public r-fractal
4131 (package
4132 (name "r-fractal")
4133 (version "2.0-4")
4134 (source
4135 (origin
4136 (method url-fetch)
4137 (uri (cran-uri "fractal" version))
4138 (sha256
4139 (base32
4140 "18lr9z0gslvfc3z8vyj3krqj3bfhg60zv1fzinrwwkc4cpk1w7mp"))))
4141 (build-system r-build-system)
4142 (propagated-inputs
4143 `(("r-ifultools" ,r-ifultools)
4144 ("r-mass" ,r-mass)
4145 ("r-sapa" ,r-sapa)
4146 ("r-scatterplot3d" ,r-scatterplot3d)
4147 ("r-splus2r" ,r-splus2r)
4148 ("r-wmtsa" ,r-wmtsa)))
d062957a 4149 (home-page "https://cran.r-project.org/web/packages/fractal/")
5b25bc55
RW
4150 (synopsis "Fractal time series modeling and analysis")
4151 (description
4152 "This package provides tools for stochastic fractal and deterministic
4153chaotic time series analysis.")
4154 (license license:gpl2)))
6615a364
RW
4155
4156(define-public r-urca
4157 (package
4158 (name "r-urca")
4159 (version "1.3-0")
4160 (source
4161 (origin
4162 (method url-fetch)
4163 (uri (cran-uri "urca" version))
4164 (sha256
4165 (base32
4166 "1akaqwf3fvvvx4sgfn641fd4sj51s0701pvfl6s5hnz2k0iwh732"))))
4167 (build-system r-build-system)
4168 (propagated-inputs `(("r-nlme" ,r-nlme)))
4169 (native-inputs `(("gfortran" ,gfortran)))
d062957a 4170 (home-page "https://cran.r-project.org/web/packages/urca/")
6615a364
RW
4171 (synopsis "Unit root and cointegration tests for time series data")
4172 (description
4173 "This package provides unit root and cointegration tests encountered in
4174applied econometric analysis.")
4175 (license license:gpl2+)))
d32e5724
RW
4176
4177(define-public r-cubature
4178 (package
4179 (name "r-cubature")
5f1f1104 4180 (version "2.0.3")
d32e5724
RW
4181 (source
4182 (origin
4183 (method url-fetch)
4184 (uri (cran-uri "cubature" version))
4185 (sha256
4186 (base32
5f1f1104 4187 "0wvs80i4axj7pdcy9gjl08qzjbcjkldha94xy4gdxc34vgmh7gvr"))))
d32e5724
RW
4188 (build-system r-build-system)
4189 (propagated-inputs
4190 `(("r-rcpp" ,r-rcpp)))
4191 (home-page "https://github.com/bnaras/cubature")
4192 (synopsis "Adaptive multivariate integration over hypercubes")
4193 (description
4194 "This package is an R wrapper around the cubature C library for adaptive
4195multivariate integration over hypercubes. This version provides both
4196@code{hcubature} and @code{pcubature} routines in addition to a vector
4197interface.")
4198 ;; The included cubature C library is released under GPLv2+, but the
4199 ;; wrapper declares the license to be GPLv3+.
4200 (license (list license:gpl2+ license:gpl3+))))
7531ee84
RW
4201
4202(define-public r-trend
4203 (package
4204 (name "r-trend")
cd4abb6d 4205 (version "1.1.1")
7531ee84
RW
4206 (source
4207 (origin
4208 (method url-fetch)
4209 (uri (cran-uri "trend" version))
4210 (sha256
4211 (base32
cd4abb6d 4212 "1bd567n15k2vpmgbx02584k5kglrc58mlb5kgd07wdss3knpa48q"))))
7531ee84
RW
4213 (build-system r-build-system)
4214 (propagated-inputs
4215 `(("r-extradistr" ,r-extradistr)))
4216 (native-inputs
4217 `(("gfortran" ,gfortran)))
d062957a 4218 (home-page "https://cran.r-project.org/web/packages/trend/")
7531ee84
RW
4219 (synopsis "Non-parametric trend tests and change-point detection")
4220 (description
4221 "The analysis of environmental data often requires the detection of
4222trends and change-points. This package includes tests for trend
4223detection (Cox-Stuart Trend Test, Mann-Kendall Trend Test, (correlated)
4224Hirsch-Slack Test, partial Mann-Kendall Trend Test, multivariate (multisite)
4225Mann-Kendall Trend Test, (Seasonal) Sen's slope, partial Pearson and Spearman
4226correlation trend test), change-point detection (Lanzante's test procedures,
4227Pettitt's test, Buishand Range Test, Buishand U Test, Standard Normal
4228Homogeinity Test), detection of non-randomness (Wallis-Moore Phase Frequency
4229Test, Bartels rank von Neumann's ratio test, Wald-Wolfowitz Test) and the two
4230sample Robust Rank-Order Distributional Test.")
4231 (license license:gpl3)))
f96eda90
RW
4232
4233(define-public r-expm
4234 (package
4235 (name "r-expm")
a11d29b4 4236 (version "0.999-4")
f96eda90
RW
4237 (source
4238 (origin
4239 (method url-fetch)
4240 (uri (cran-uri "expm" version))
4241 (sha256
4242 (base32
a11d29b4 4243 "15k0acg2aqb2ajhwal6l7vhhp03m4lg579805d34554cl0kn9l2q"))))
f96eda90
RW
4244 (build-system r-build-system)
4245 (propagated-inputs `(("r-matrix" ,r-matrix)))
4246 (native-inputs `(("gfortran" ,gfortran)))
d062957a 4247 (home-page "https://r-forge.r-project.org/projects/expm/")
f96eda90
RW
4248 (synopsis "Tools for matrix exponentials and related quantities")
4249 (description
4250 "This package provides tools for the computation of the matrix
4251exponential, logarithm, square root, and related quantities.")
4252 (license license:gpl2+)))
68b6a67e
RW
4253
4254(define-public r-complexplus
4255 (package
4256 (name "r-complexplus")
4257 (version "2.1")
4258 (source
4259 (origin
4260 (method url-fetch)
4261 (uri (cran-uri "complexplus" version))
4262 (sha256
4263 (base32
4264 "16w9v7d1ckavqmr86l34frr37pkvdn0iqnb17ssb8xaggns5lgqx"))))
4265 (build-system r-build-system)
4266 (propagated-inputs
4267 `(("r-expm" ,r-expm)
4268 ("r-matrix" ,r-matrix)))
d062957a 4269 (home-page "https://cran.r-project.org/web/packages/complexplus/")
68b6a67e
RW
4270 (synopsis "Functions of complex or real variables")
4271 (description
4272 "This package extends several functions to the complex domain, including
4273the matrix exponential and logarithm, and the determinant.")
4274 (license license:gpl2)))
7b81a7ea
RW
4275
4276(define-public r-phontools
4277 (package
4278 (name "r-phontools")
4279 (version "0.2-2.1")
4280 (source
4281 (origin
4282 (method url-fetch)
4283 (uri (cran-uri "phonTools" version))
4284 (sha256
4285 (base32
4286 "01i481mhswsys3gpasw9gn6nxkfmi7bz46g5c84m13pg0cv8hxc7"))))
4287 (properties `((upstream-name . "phonTools")))
4288 (build-system r-build-system)
4289 (home-page "http://www.santiagobarreda.com/rscripts.html")
4290 (synopsis "Tools for phonetic and acoustic analyses")
4291 (description
4292 "This package contains tools for the organization, display, and analysis
4293of the sorts of data frequently encountered in phonetics research and
4294experimentation, including the easy creation of IPA vowel plots, and the
4295creation and manipulation of WAVE audio files.")
4296 (license license:bsd-2)))
d976454c
RW
4297
4298(define-public r-np
4299 (package
4300 (name "r-np")
02c57c01 4301 (version "0.60-9")
d976454c
RW
4302 (source
4303 (origin
4304 (method url-fetch)
4305 (uri (cran-uri "np" version))
4306 (sha256
4307 (base32
02c57c01 4308 "1z4jcpx8bbgwslv42wrphfd1qfq965qjn0kmfxm5f6hbbycahcgy"))))
d976454c
RW
4309 (build-system r-build-system)
4310 (propagated-inputs
4311 `(("r-boot" ,r-boot)
4312 ("r-cubature" ,r-cubature)
65d66b3e 4313 ("r-quadprog" ,r-quadprog)
d976454c
RW
4314 ("r-quantreg" ,r-quantreg)))
4315 (home-page "https://github.com/JeffreyRacine/R-Package-np")
4316 (synopsis "Non-parametric kernel smoothing methods for mixed data types")
4317 (description "This package provides non-parametric (and semi-parametric)
4318kernel methods that seamlessly handle a mix of continuous, unordered, and
4319ordered factor data types.")
4320 ;; Any version of the GPL.
4321 (license license:gpl3+)))
2a112be0
RW
4322
4323(define-public r-powerplus
4324 (package
4325 (name "r-powerplus")
4326 (version "3.1")
4327 (source
4328 (origin
4329 (method url-fetch)
4330 (uri (cran-uri "powerplus" version))
4331 (sha256
4332 (base32
4333 "0ayp6x34hkzgris4j3zbbs0r23n81bhww3wgfyy630ri4sk6brrn"))))
4334 (build-system r-build-system)
4335 (propagated-inputs
4336 `(("r-complexplus" ,r-complexplus)
4337 ("r-expm" ,r-expm)
4338 ("r-mass" ,r-mass)
4339 ("r-matrix" ,r-matrix)
4340 ("r-phontools" ,r-phontools)))
d062957a 4341 (home-page "https://cran.r-project.org/web/packages/powerplus/")
2a112be0
RW
4342 (synopsis "Exponentiation operations")
4343 (description
4344 "This package provides tools for the computation of matrix and scalar
4345exponentiation.")
4346 (license license:gpl2)))
021caafa
RW
4347
4348(define-public r-heatmaply
4349 (package
4350 (name "r-heatmaply")
5da9918d 4351 (version "0.16.0")
021caafa
RW
4352 (source
4353 (origin
4354 (method url-fetch)
4355 (uri (cran-uri "heatmaply" version))
4356 (sha256
4357 (base32
5da9918d 4358 "1qhxk48qh61qjxdlhl0qffdh3yh8iiwccid5ssngdv433q0cmyc1"))))
021caafa
RW
4359 (build-system r-build-system)
4360 (propagated-inputs
4361 `(("r-assertthat" ,r-assertthat)
4362 ("r-colorspace" ,r-colorspace)
4363 ("r-dendextend" ,r-dendextend)
4364 ("r-ggplot2" ,r-ggplot2)
021caafa
RW
4365 ("r-htmlwidgets" ,r-htmlwidgets)
4366 ("r-magrittr" ,r-magrittr)
4367 ("r-plotly" ,r-plotly)
4368 ("r-rcolorbrewer" ,r-rcolorbrewer)
4369 ("r-reshape2" ,r-reshape2)
4370 ("r-scales" ,r-scales)
4371 ("r-seriation" ,r-seriation)
4372 ("r-viridis" ,r-viridis)
4373 ("r-webshot" ,r-webshot)))
4374 (home-page "https://cran.r-project.org/package=heatmaply")
4375 (synopsis "Interactive cluster heat maps using plotly")
4376 (description
4377 "This package enables you to create interactive cluster heatmaps that can
4378be saved as a stand-alone HTML file, embedded in R Markdown documents or in a
4379Shiny app, and made available in the RStudio viewer pane. Hover the mouse
4380pointer over a cell to show details or drag a rectangle to zoom. A heatmap is
4381a popular graphical method for visualizing high-dimensional data, in which a
4382table of numbers is encoded as a grid of colored cells. The rows and columns
4383of the matrix are ordered to highlight patterns and are often accompanied by
4384dendrograms.")
4385 ;; Either version of the license.
4386 (license (list license:gpl2 license:gpl3))))
b2dc4cb4 4387
ff939ef4
RW
4388(define-public r-h5
4389 (package
4390 (name "r-h5")
4391 (version "0.9.9")
4392 (source
4393 (origin
4394 (method url-fetch)
4395 (uri (cran-uri "h5" version))
4396 (sha256
4397 (base32
4398 "14p7i1sj24ky87kd7qr3n9fc9l64s0bp0rwbyl6i2x69xn75gpsx"))))
4399 (build-system r-build-system)
4400 (inputs
4401 `(("zlib" ,zlib)
4402 ("hdf5" ,hdf5)))
4403 (native-inputs
4404 `(("which" ,which)))
4405 (propagated-inputs
4406 `(("r-rcpp" ,r-rcpp)))
4407 (home-page "https://github.com/mannau/h5")
4408 (synopsis "Interface to the HDF5 Library")
4409 (description
4410 "This package provides an S4 interface to the HDF5 library supporting
4411fast storage and retrieval of R-objects like vectors, matrices and arrays to
4412binary files in a language independent format. The HDF5 format can therefore
4413be used as an alternative to R's save/load mechanism. Since h5 is able to
4414access only subsets of stored data it can also handle data sets which do not
4415fit into memory.")
4416 (license license:bsd-2)))
4417
b2dc4cb4
RW
4418(define-public r-cgdsr
4419 (package
4420 (name "r-cgdsr")
4421 (version "1.2.10")
4422 (source
4423 (origin
4424 (method url-fetch)
4425 (uri (cran-uri "cgdsr" version))
4426 (sha256
4427 (base32
4428 "1xyhw7mhmjichr1l6f9y1qvfj9wm87kfbm87ji7lcwf36gxh5g23"))))
4429 (build-system r-build-system)
4430 (propagated-inputs
4431 `(("r-r-methodss3" ,r-r-methodss3)
4432 ("r-r-oo" ,r-r-oo)))
4433 (home-page "https://github.com/cBioPortal/cgdsr")
4434 (synopsis "R-based API for accessing the MSKCC Cancer Genomics Data Server")
4435 (description
4436 "This package provides a basic set of R functions for querying the Cancer
4437Genomics Data Server (CGDS), hosted by the Computational Biology Center at
4438Memorial-Sloan-Kettering Cancer Center (MSKCC).")
4439 (license license:lgpl3)))
a00968b7
RW
4440
4441(define-public r-import
4442 (package
4443 (name "r-import")
4444 (version "1.1.0")
4445 (source
4446 (origin
4447 (method url-fetch)
4448 (uri (cran-uri "import" version))
4449 (sha256
4450 (base32
4451 "0blf9539rbfwcmw8zsb4k58slb4pdnc075v34vmyjw752fznhcji"))))
4452 (build-system r-build-system)
4453 (home-page "https://github.com/smbache/import")
4454 (synopsis "Import mechanism for R")
4455 (description
4456 "This is an alternative mechanism for importing objects from packages.
4457The syntax allows for importing multiple objects from a package with a single
4458command in an expressive way. The import package bridges some of the gap
4459between using @code{library} (or @code{require}) and direct (single-object)
4460imports. Furthermore the imported objects are not placed in the current
4461environment. It is also possible to import objects from stand-alone @code{.R}
4462files.")
4463 (license license:expat)))
5d9b82ac
RW
4464
4465(define-public r-shinyace
4466 (package
4467 (name "r-shinyace")
f0fe1a5a 4468 (version "0.3.3")
5d9b82ac
RW
4469 (source
4470 (origin
4471 (method url-fetch)
4472 (uri (cran-uri "shinyAce" version))
4473 (sha256
4474 (base32
f0fe1a5a 4475 "02q6wqw349nlyf3mbf18cxif1xv9cal5qzccrdlnv73szqn9jk7j"))))
5d9b82ac
RW
4476 (properties `((upstream-name . "shinyAce")))
4477 (build-system r-build-system)
4478 (propagated-inputs
e86d3cc5
RW
4479 `(("r-shiny" ,r-shiny)
4480 ("r-jsonlite" ,r-jsonlite)))
5d9b82ac
RW
4481 (home-page "http://cran.r-project.org/web/packages/shinyAce")
4482 (synopsis "Ace editor bindings for Shiny")
4483 (description
4484 "This package provides Ace editor bindings to enable a rich text editing
4485environment within Shiny.")
4486 (license license:expat)))
f64fea1d 4487
72032c9d
RW
4488(define-public r-base64url
4489 (package
4490 (name "r-base64url")
4491 (version "1.4")
4492 (source
4493 (origin
4494 (method url-fetch)
4495 (uri (cran-uri "base64url" version))
4496 (sha256
4497 (base32
4498 "0n1c2b68vza1dh7sk38v6biiwm72c4jpl79kpdg1bsb0hq9qy18x"))))
4499 (build-system r-build-system)
4500 (propagated-inputs
4501 `(("r-backports" ,r-backports)))
4502 (home-page "https://github.com/mllg/base64url")
4503 (synopsis "Fast and URL-safe base64 encoder and decoder")
4504 (description
4505 "This package provides a URL-safe base64 encoder and decoder. In
4506contrast to RFC3548, the 62nd character (@code{+}) is replaced with @code{-},
4507the 63rd character (@code{/}) is replaced with @code{_}. Furthermore, the
4508encoder does not fill the string with trailing @code{=}. The resulting
4509encoded strings comply to the regular expression pattern @code{[A-Za-z0-9_-]}
4510and thus are safe to use in URLs or for file names. The package also comes
4511with a simple base32 encoder/decoder suited for case insensitive file
4512systems.")
4513 (license license:gpl3)))
4514
f64fea1d
RW
4515(define-public r-radiant-data
4516 (package
4517 (name "r-radiant-data")
cb40b6eb 4518 (version "0.9.9")
f64fea1d
RW
4519 (source
4520 (origin
4521 (method url-fetch)
4522 (uri (cran-uri "radiant.data" version))
4523 (sha256
4524 (base32
cb40b6eb 4525 "17mgm0sggh4f7ihqmj9m3996p3pqc7h2cwx6ll1ha3kg5mx0znyn"))
f64fea1d
RW
4526 (modules '((guix build utils)))
4527 (snippet
4528 '(begin
4529 ;; Delete files that are under CC-NC-SA.
4530 (delete-file-recursively "inst/app/tools/help")
4531 #t))))
4532 (properties `((upstream-name . "radiant.data")))
4533 (build-system r-build-system)
4534 (propagated-inputs
4535 `(("r-base64enc" ,r-base64enc)
4536 ("r-broom" ,r-broom)
4537 ("r-car" ,r-car)
4538 ("r-curl" ,r-curl)
4539 ("r-dplyr" ,r-dplyr)
4540 ("r-dt" ,r-dt)
36dc3591 4541 ("r-glue" ,r-glue)
f64fea1d
RW
4542 ("r-ggplot2" ,r-ggplot2)
4543 ("r-gridextra" ,r-gridextra)
4544 ("r-import" ,r-import)
4545 ("r-jsonlite" ,r-jsonlite)
4546 ("r-knitr" ,r-knitr)
4547 ("r-lubridate" ,r-lubridate)
4548 ("r-magrittr" ,r-magrittr)
4549 ("r-markdown" ,r-markdown)
36dc3591 4550 ("r-plotly" ,r-plotly)
f64fea1d
RW
4551 ("r-psych" ,r-psych)
4552 ("r-readr" ,r-readr)
36dc3591
RW
4553 ("r-readxl" ,r-readxl)
4554 ("r-rlang" ,r-rlang)
f64fea1d
RW
4555 ("r-rmarkdown" ,r-rmarkdown)
4556 ("r-rstudioapi" ,r-rstudioapi)
4557 ("r-scales" ,r-scales)
4558 ("r-shiny" ,r-shiny)
e5f9e9fa 4559 ("r-shinyfiles" ,r-shinyfiles)
f64fea1d 4560 ("r-shinyace" ,r-shinyace)
cb40b6eb 4561 ("r-stringi" ,r-stringi)
f64fea1d 4562 ("r-tibble" ,r-tibble)
36dc3591
RW
4563 ("r-tidyr" ,r-tidyr)
4564 ("r-writexl" ,r-writexl)))
f64fea1d
RW
4565 (home-page "https://github.com/radiant-rstats/radiant.data")
4566 (synopsis "Data menu for Radiant: business analytics using R and Shiny")
4567 (description
4568 "The Radiant Data menu includes interfaces for loading, saving, viewing,
4569visualizing, summarizing, transforming, and combining data. It also contains
4570functionality to generate reproducible reports of the analyses conducted in
4571the application.")
4572 (license license:agpl3)))
e2cafc24
RW
4573
4574(define-public r-algdesign
4575 (package
4576 (name "r-algdesign")
4577 (version "1.1-7.3")
4578 (source
4579 (origin
4580 (method url-fetch)
4581 (uri (cran-uri "AlgDesign" version))
4582 (sha256
4583 (base32
4584 "0bl7mx4dnmkgs2x1fj7cqnrp7jx18mqwxyga0rzlniq12h8mc3fz"))))
4585 (properties `((upstream-name . "AlgDesign")))
4586 (build-system r-build-system)
4587 (home-page "https://github.com/jvbraun/AlgDesign")
4588 (synopsis "Algorithmic experimental design")
4589 (description
4590 "This package provides tools to calculate exact and approximate theory
4591experimental designs for D, A, and I criteria. Very large designs may be
4592created. Experimental designs may be blocked or blocked designs created from
4593a candidate list, using several criteria. The blocking can be done when whole
4594and within plot factors interact.")
4595 (license license:gpl2+)))
35b0c051
RW
4596
4597(define-public r-signal
4598 (package
4599 (name "r-signal")
4600 (version "0.7-6")
4601 (source
4602 (origin
4603 (method url-fetch)
4604 (uri (cran-uri "signal" version))
4605 (sha256
4606 (base32
4607 "1vsxramz5qd9q9s3vlqzmfdpmwl2rhlb2n904zw6f0fg0xxjfq3b"))))
4608 (build-system r-build-system)
4609 (propagated-inputs `(("r-mass" ,r-mass)))
4610 (native-inputs `(("gfortran" ,gfortran)))
d062957a 4611 (home-page "https://cran.r-project.org/web/packages/signal/")
35b0c051
RW
4612 (synopsis "Signal processing")
4613 (description
4614 "This package provides a set of signal processing functions originally
4615written for Matlab and GNU Octave. It includes filter generation utilities,
4616filtering functions, resampling routines, and visualization of filter models.
4617It also includes interpolation functions.")
4618 (license license:gpl2)))
db80dd4a 4619
3dab50d9
RW
4620(define-public r-gsubfn
4621 (package
4622 (name "r-gsubfn")
2acc0e5f 4623 (version "0.7")
3dab50d9
RW
4624 (source
4625 (origin
4626 (method url-fetch)
4627 (uri (cran-uri "gsubfn" version))
4628 (sha256
4629 (base32
2acc0e5f 4630 "00j6b8b6xsx6v370h220x233rpk6asca78165y3d48jpwvwisdc9"))))
3dab50d9
RW
4631 (build-system r-build-system)
4632 (propagated-inputs `(("r-proto" ,r-proto)))
4633 (home-page "http://gsubfn.googlecode.com")
4634 (synopsis "Utilities for strings and function arguments.")
4635 (description
4636 "This package provides @code{gsubfn} which is like @code{gsub} but can
4637take a replacement function or certain other objects instead of the
4638replacement string. Matches and back references are input to the replacement
4639function and replaced by the function output. @code{gsubfn} can be used to
4640split strings based on content rather than delimiters and for quasi-perl-style
4641string interpolation. The package also has facilities for translating
4642formulas to functions and allowing such formulas in function calls instead of
4643functions.")
4644 (license license:gpl2+)))
3a563a41
RW
4645
4646(define-public r-sqldf
4647 (package
4648 (name "r-sqldf")
4649 (version "0.4-11")
4650 (source
4651 (origin
4652 (method url-fetch)
4653 (uri (cran-uri "sqldf" version))
4654 (sha256
4655 (base32
4656 "0q12vsb53p2wchgp8wfz5bk08wfnm0jxjrakclj4jyy6x3a7ksff"))))
4657 (build-system r-build-system)
4658 (propagated-inputs
4659 `(("r-chron" ,r-chron)
4660 ("r-dbi" ,r-dbi)
4661 ("r-gsubfn" ,r-gsubfn)
4662 ("r-proto" ,r-proto)
4663 ("r-rsqlite" ,r-rsqlite)))
4664 (home-page "https://github.com/ggrothendieck/sqldf")
4665 (synopsis "Manipulate R data frames using SQL")
4666 (description
4667 "The @code{sqldf} function is typically passed a single argument which is
4668an SQL select statement where the table names are ordinary R data frame names.
4669@code{sqldf} transparently sets up a database, imports the data frames into
4670that database, performs the SQL statement and returns the result using a
4671heuristic to determine which class to assign to each column of the returned
4672data frame. The @code{sqldf} or @code{read.csv.sql} functions can also be
4673used to read filtered files into R even if the original files are larger than
4674R itself can handle.")
4675 (license license:gpl2)))
94e46cab
RW
4676
4677(define-public r-abind
4678 (package
4679 (name "r-abind")
4680 (version "1.4-5")
4681 (source
4682 (origin
4683 (method url-fetch)
4684 (uri (cran-uri "abind" version))
4685 (sha256
4686 (base32
4687 "0b1zd8jbnl6l292cr9rb50m09fy3ylxvzkpgi5lfb1nbzddcwfis"))))
4688 (build-system r-build-system)
d062957a 4689 (home-page "https://cran.r-project.org/web/packages/abind/")
94e46cab
RW
4690 (synopsis "Combine multidimensional arrays")
4691 (description
4692 "This package provides tools to combine multidimensional arrays into a
4693single array. This is a generalization of @code{cbind} and @code{rbind}. It
4694works with vectors, matrices, and higher-dimensional arrays. It also provides
4695the functions @code{adrop}, @code{asub}, and @code{afill} for manipulating,
4696extracting and replacing data in arrays.")
4697 (license license:lgpl2.0+)))
fc784b66
RW
4698
4699(define-public r-prroc
4700 (package
4701 (name "r-prroc")
0430eb66 4702 (version "1.3.1")
fc784b66
RW
4703 (source
4704 (origin
4705 (method url-fetch)
4706 (uri (cran-uri "PRROC" version))
4707 (sha256
4708 (base32
0430eb66 4709 "1m28h8pcd78049lz2qixhkcr9h5b3jik3maqzfbvq9y58z71i4a7"))))
fc784b66
RW
4710 (properties `((upstream-name . "PRROC")))
4711 (build-system r-build-system)
d062957a 4712 (home-page "https://cran.r-project.org/web/packages/PRROC/")
fc784b66
RW
4713 (synopsis "Precision-Recall and ROC curves for weighted and unweighted data")
4714 (description
4715 "This package computes the areas under the @dfn{precision-recall} (PR)
4716and ROC curve for weighted (e.g. soft-labeled) and unweighted data. In
4717contrast to other implementations, the interpolation between points of the PR
4718curve is done by a non-linear piecewise function. In addition to the areas
4719under the curves, the curves themselves can also be computed and plotted by a
4720specific S3-method.")
4721 (license license:gpl3)))
661bb51e
RW
4722
4723(define-public r-vim
4724 (package
4725 (name "r-vim")
8b2c80b8 4726 (version "4.8.0")
661bb51e
RW
4727 (source
4728 (origin
4729 (method url-fetch)
4730 (uri (cran-uri "VIM" version))
4731 (sha256
4732 (base32
8b2c80b8 4733 "08x4a4yzgp8adgrv7a3666yma4b60n64mcsnvhzmwdy023f4ysrw"))))
661bb51e
RW
4734 (properties `((upstream-name . "VIM")))
4735 (build-system r-build-system)
4736 (propagated-inputs
4737 `(("r-car" ,r-car)
4738 ("r-colorspace" ,r-colorspace)
4739 ("r-data-table" ,r-data-table)
4740 ("r-e1071" ,r-e1071)
4741 ("r-laeken" ,r-laeken)
4742 ("r-mass" ,r-mass)
4743 ("r-nnet" ,r-nnet)
8b2c80b8 4744 ("r-ranger" ,r-ranger)
661bb51e
RW
4745 ("r-rcpp" ,r-rcpp)
4746 ("r-robustbase" ,r-robustbase)
4747 ("r-sp" ,r-sp)
4748 ("r-vcd" ,r-vcd)))
4749 (home-page "https://github.com/alexkowa/VIM")
4750 (synopsis "Visualization and imputation of missing values")
4751 (description
4752 "This package provides tools for the visualization of missing and/or
4753imputed values are introduced, which can be used for exploring the data and
4754the structure of the missing and/or imputed values. Depending on this
4755structure of the missing values, the corresponding methods may help to
4756identify the mechanism generating the missing values and allows to explore the
4757data including missing values. In addition, the quality of imputation can be
4758visually explored using various univariate, bivariate, multiple and
4759multivariate plot methods.")
4760 (license license:gpl2+)))
d10b0952
RW
4761
4762(define-public r-fnn
4763 (package
4764 (name "r-fnn")
b9b10413 4765 (version "1.1.3")
d10b0952
RW
4766 (source
4767 (origin
4768 (method url-fetch)
4769 (uri (cran-uri "FNN" version))
4770 (sha256
4771 (base32
b9b10413 4772 "0cllqlnynm5yaj4r64mqyyfc8phkb38rwssq8k8ikgfgr4jklxny"))))
d10b0952
RW
4773 (properties `((upstream-name . "FNN")))
4774 (build-system r-build-system)
1b5905fe 4775 (home-page "https://cran.r-project.org/web/packages/FNN")
d10b0952
RW
4776 (synopsis "Fast nearest neighbor search algorithms and applications")
4777 (description
4778 "This package provides cover-tree and kd-tree fast k-nearest neighbor
4779search algorithms. Related applications including KNN classification,
4780regression and information measures are implemented.")
4781 ;; The DESCRIPTION file erroneously states that GPL version 2.1 or
4782 ;; later can be used.
4783 (license license:gpl2+)))
be815dbd
RW
4784
4785(define-public r-smoother
4786 (package
4787 (name "r-smoother")
4788 (version "1.1")
4789 (source
4790 (origin
4791 (method url-fetch)
4792 (uri (cran-uri "smoother" version))
4793 (sha256
4794 (base32
4795 "0nqr1bvlr5bnasqg74zmknjjl4x28kla9h5cxpga3kq5z215pdci"))))
4796 (build-system r-build-system)
4797 (propagated-inputs
4798 `(("r-ttr" ,r-ttr)))
4799 (home-page "http://cran.r-project.org/web/packages/smoother")
4800 (synopsis "Functions relating to the smoothing of numerical data")
4801 (description
4802 "This package provides a collection of methods for smoothing numerical
4803data, commencing with a port of the Matlab gaussian window smoothing function.
4804In addition, several functions typically used in smoothing of financial data
4805are included.")
4806 (license license:gpl2)))
0efd09ac
RW
4807
4808(define-public r-riverplot
4809 (package
4810 (name "r-riverplot")
4811 (version "0.6")
4812 (source
4813 (origin
4814 (method url-fetch)
4815 (uri (cran-uri "riverplot" version))
4816 (sha256
4817 (base32
4818 "0q1icpny8nkxyjhawyjzwrw8qlz0ayn2xyrsqrm4vkxyv6c9xk8z"))))
4819 (build-system r-build-system)
4820 (home-page "https://logfc.wordpress.com")
4821 (synopsis "Sankey or ribbon plots")
4822 (description
4823 "Sankey plots are a type of diagram that is convenient to illustrate how
4824flow of information, resources etc. separates and joins, much like observing
4825how rivers split and merge. For example, they can be used to compare
4826different clusterings. This package provides an implementation of Sankey
4827plots for R.")
4828 (license license:gpl2+)))
c56739df
SY
4829
4830(define-public r-dyn
4831 (package
4832 (name "r-dyn")
4833 (version "0.2-9.6")
4834 (source
4835 (origin
4836 (method url-fetch)
4837 (uri (cran-uri "dyn" version))
4838 (sha256
4839 (base32
4840 "16fqv9k7yxdgybwzafjkyqm16qpgqz13lcjpi6a1nc8xbzlzh0gb"))))
4841 (build-system r-build-system)
4842 (propagated-inputs
4843 `(("r-zoo" ,r-zoo)))
4844 (home-page "https://cran.r-project.org/web/packages/dyn")
4845 (synopsis "Time series regression")
4846 (description
4847 "This package provides the dyn class interfaces @code{ts}, @code{irts},
4848@code{zoo} and @code{zooreg} time series classes to @code{lm}, @code{glm},
4849@code{loess}, @code{quantreg::rq}, @code{MASS::rlm},
4850@code{MCMCpack::MCMCregress()}, @code{quantreg::rq()},
4851@code{randomForest::randomForest()} and other regression functions, allowing
4852those functions to be used with time series including specifications that may
4853contain lags, diffs and missing values.")
4854 ;; Any GPL version.
4855 (license license:gpl2+)))
24fa6bca
SY
4856
4857(define-public r-catdap
4858 (package
4859 (name "r-catdap")
4860 (version "1.3.4")
4861 (source
4862 (origin
4863 (method url-fetch)
4864 (uri (cran-uri "catdap" version))
4865 (sha256
4866 (base32
4867 "0i877l61f6c75pczi235rzci67w29zv1d7z5zn5p5ymndclvlpl2"))))
4868 (build-system r-build-system)
4869 (native-inputs
4870 `(("gfortran" ,gfortran)))
4871 (home-page "https://cran.r-project.org/web/packages/catdap/")
4872 (synopsis "Tools for categorical data analysis")
4873 (description
4874 "This package provides functions for analyzing multivariate data.
4875Dependencies of the distribution of the specified variable (response
4876variable) to other variables (explanatory variables) are derived and
4877evaluated by the @dfn{Akaike Information Criterion} (AIC).")
4878 (license license:gpl2+)))
96e22362
SS
4879
4880(define-public r-arules
4881 (package
4882 (name "r-arules")
ea010aa3 4883 (version "1.6-3")
96e22362
SS
4884 (source
4885 (origin
4886 (method url-fetch)
4887 (uri (cran-uri "arules" version))
4888 (sha256
4889 (base32
ea010aa3 4890 "0dimrq1pz449z0mz9m87nhm5bpc0v789bcc3lghhh97wwi5zah9y"))))
96e22362
SS
4891 (build-system r-build-system)
4892 (propagated-inputs
4893 `(("r-matrix" ,r-matrix)))
4894 (home-page "https://github.com/mhahsler/arules")
4895 (synopsis "Mining association rules and frequent itemsets")
4896 (description
4897 "This package provides an infrastructure for representing, manipulating
4898and analyzing transaction data and patterns (frequent itemsets and association rules).
4899It also provides C implementations of the association mining algorithms Apriori
4900and Eclat.")
4901 (license license:gpl3)))
1cde7467
KH
4902
4903(define-public r-parsedate
4904 (package
4905 (name "r-parsedate")
86ad5dbc 4906 (version "1.2.0")
1cde7467
KH
4907 (source
4908 (origin
4909 (method url-fetch)
4910 (uri (cran-uri "parsedate" version))
4911 (sha256
4912 (base32
86ad5dbc 4913 "0gb3w6hmwxayhijpf36p5dk4h6bbdps57x3cgikwvvxkgi83rarr"))))
1cde7467 4914 (build-system r-build-system)
86ad5dbc
RW
4915 (propagated-inputs
4916 `(("r-rematch2" ,r-rematch2)))
1cde7467
KH
4917 (home-page "https://github.com/gaborcsardi/parsedate")
4918 (synopsis
4919 "Recognize and parse dates in various formats")
4920 (description
4921 "This package provides three functions for dealing with dates:
4922@code{parse_iso_8601} recognizes and parses all valid ISO 8601 date and
4923time formats, @code{parse_date} parses dates in unspecified formats,
4924and @code{format_iso_8601} formats a date in ISO 8601 format.")
4925 (license license:gpl2)))
2a27c0bb
SY
4926
4927(define-public r-abc-data
4928 (package
4929 (name "r-abc-data")
4930 (version "1.0")
4931 (source
4932 (origin
4933 (method url-fetch)
4934 (uri (cran-uri "abc.data" version))
4935 (sha256
4936 (base32
4937 "1bv1n68ah714ws58cf285n2s2v5vn7382lfjca4jxph57lyg8hmj"))))
4938 (properties `((upstream-name . "abc.data")))
4939 (build-system r-build-system)
4940 (home-page "https://cran.r-project.org/web/packages/abc.data/")
4941 (synopsis "Data for Approximate Bayesian Computation (ABC) package")
4942 (description
4943 "This package contains data which are used by functions of the abc
4944package which implements several @dfn{Approximate Bayesian Computation} (ABC)
4945algorithms for performing parameter estimation, model selection, and
4946goodness-of-fit.")
4947 (license license:gpl3+)))
82c8e0ae
SY
4948
4949(define-public r-abc
4950 (package
4951 (name "r-abc")
4952 (version "2.1")
4953 (source
4954 (origin
4955 (method url-fetch)
4956 (uri (cran-uri "abc" version))
4957 (sha256
4958 (base32
4959 "0ngzaaz2y2s03fhngvwipmy4kq38xrmyddaz6a6l858rxvadrlhb"))))
4960 (build-system r-build-system)
4961 (propagated-inputs
4962 `(("r-abc-data" ,r-abc-data)
4963 ("r-locfit" ,r-locfit)
4964 ("r-mass" ,r-mass)
4965 ("r-nnet" ,r-nnet)
4966 ("r-quantreg" ,r-quantreg)))
4967 (home-page "https://cran.r-project.org/web/packages/abc/")
4968 (synopsis "Tools for Approximate Bayesian Computation (ABC)")
4969 (description
4970 "This package implements several @dfn{Approximate Bayesian
4971Computation} (ABC) algorithms for performing parameter estimation, model
4972selection, and goodness-of-fit. Cross-validation tools are also available for
4973measuring the accuracy of ABC estimates, and to calculate the
4974misclassification probabilities of different models.")
4975 (license license:gpl3+)))
4b1f7a3e 4976
d182828f
RW
4977(define-public r-zip
4978 (package
4979 (name "r-zip")
394d118d 4980 (version "2.0.2")
d182828f
RW
4981 (source
4982 (origin
4983 (method url-fetch)
4984 (uri (cran-uri "zip" version))
4985 (sha256
4986 (base32
394d118d 4987 "1xvgs7mhxi0sdp5ix4nisqm9lf8f75b7ip7b1hqpq9bzh0x6z8ix"))))
d182828f
RW
4988 (build-system r-build-system)
4989 (home-page "https://github.com/gaborcsardi/zip")
4990 (synopsis "Cross-platform Zip compression")
4991 (description
4992 "This package provides a cross-platform Zip compression library for R.
4993It is a replacement for the @code{zip} function, that does not require any
4994additional external tools on any platform.")
4995 (license license:cc0)))
4996
4b1f7a3e
RW
4997(define-public r-openxlsx
4998 (package
4999 (name "r-openxlsx")
9dd35123 5000 (version "4.1.0.1")
4b1f7a3e
RW
5001 (source
5002 (origin
5003 (method url-fetch)
5004 (uri (cran-uri "openxlsx" version))
5005 (sha256
5006 (base32
9dd35123 5007 "1lflygpi1z4rlb1c6g6wsmi334maiiy7jhpg6ph4sw8lpvg12w4b"))))
4b1f7a3e 5008 (build-system r-build-system)
a8b4677b
RW
5009 (propagated-inputs
5010 `(("r-rcpp" ,r-rcpp)
5011 ("r-zip" ,r-zip)))
4b1f7a3e
RW
5012 (home-page "https://github.com/awalker89/openxlsx")
5013 (synopsis "Read, write and edit XLSX files")
5014 (description
5015 "This package simplifies the creation of Excel @code{.xlsx} files by
5016providing a high level interface to writing, styling and editing worksheets.
5017Through the use of Rcpp, read/write times are comparable to the @code{xlsx}
5018and @code{XLConnect} packages with the added benefit of removing the
5019dependency on Java.")
5020 (license license:gpl3)))
c9920f25
RW
5021
5022(define-public r-rio
5023 (package
5024 (name "r-rio")
1417d5f1 5025 (version "0.5.16")
c9920f25
RW
5026 (source
5027 (origin
5028 (method url-fetch)
5029 (uri (cran-uri "rio" version))
5030 (sha256
5031 (base32
1417d5f1 5032 "0rfl56fdawlhc98451a9lcb6a6m56kw0i7dvd5hx58z025d8vsyk"))))
c9920f25
RW
5033 (build-system r-build-system)
5034 (propagated-inputs
5035 `(("r-curl" ,r-curl)
5036 ("r-data-table" ,r-data-table)
5037 ("r-foreign" ,r-foreign)
5038 ("r-haven" ,r-haven)
5039 ("r-openxlsx" ,r-openxlsx)
5040 ("r-readxl" ,r-readxl)
5041 ("r-tibble" ,r-tibble)))
5042 (home-page "https://github.com/leeper/rio")
5043 (synopsis "Swiss-army knife for data I/O")
5044 (description
5045 "This package provides streamlined data import and export infrastructure
5046by making assumptions that the user is probably willing to make: @code{import}
5047and @code{export} determine the data structure from the file extension,
5048reasonable defaults are used for data import and export (e.g.,
5049@code{stringsAsFactors=FALSE}), web-based import is natively
5050supported (including from SSL/HTTPS), compressed files can be read directly
5051without explicit decompression, and fast import packages are used where
5052appropriate. An additional convenience function, @code{convert}, provides a
5053simple method for converting between file types.")
5054 (license license:gpl2)))
08dac3d9
RW
5055
5056(define-public r-maptools
5057 (package
5058 (name "r-maptools")
bbe94211 5059 (version "0.9-5")
08dac3d9
RW
5060 (source
5061 (origin
5062 (method url-fetch)
5063 (uri (cran-uri "maptools" version))
5064 (sha256
5065 (base32
bbe94211 5066 "1pbvcn9xfx0hxq1ppbfg9xm5j04q4c15nj983yjmg7dlkzq135ax"))))
08dac3d9
RW
5067 (build-system r-build-system)
5068 (propagated-inputs
5069 `(("r-foreign" ,r-foreign)
5070 ("r-lattice" ,r-lattice)
5071 ("r-sp" ,r-sp)))
5072 (home-page "http://r-forge.r-project.org/projects/maptools/")
5073 (synopsis "Tools for reading and handling spatial objects")
5074 (description
5075 "This package provides a set of tools for manipulating and reading
5076geographic data, in particular ESRI Shapefiles. It includes binary access to
5077GSHHG shoreline files. The package also provides interface wrappers for
5078exchanging spatial objects with other R packages.")
5079 ;; The C source files from shapelib are released under the Expat license.
5080 ;; The R code is released under GPL version 2 or later.
5081 (license (list license:gpl2+
5082 license:expat))))
284179bb
RW
5083
5084(define-public r-later
5085 (package
5086 (name "r-later")
00fb3203 5087 (version "0.8.0")
284179bb
RW
5088 (source
5089 (origin
5090 (method url-fetch)
5091 (uri (cran-uri "later" version))
5092 (sha256
5093 (base32
00fb3203 5094 "08g503xjxrfxvrzj0cavsrz4m8ykbha64344j1w2r6v17js2hakb"))))
284179bb
RW
5095 (build-system r-build-system)
5096 (propagated-inputs
5097 `(("r-bh" ,r-bh)
5098 ("r-rcpp" ,r-rcpp)
5099 ("r-rlang" ,r-rlang)))
5100 (home-page "https://github.com/r-lib/later")
5101 (synopsis "Utilities for delaying function execution")
5102 (description
5103 "This package provides tools to execute arbitrary R or C functions some
5104time after the current time, after the R execution stack has emptied.")
5105 (license license:gpl2+)))
d9d66ba9
RW
5106
5107(define-public r-promises
5108 (package
5109 (name "r-promises")
5110 (version "1.0.1")
5111 (source
5112 (origin
5113 (method url-fetch)
5114 (uri (cran-uri "promises" version))
5115 (sha256
5116 (base32
5117 "0n2mlv6bvfb4yhgcml696l9vkbw21pz0smqylivr606z99rwgny2"))))
5118 (build-system r-build-system)
5119 (propagated-inputs
5120 `(("r-later" ,r-later)
5121 ("r-magrittr" ,r-magrittr)
5122 ("r-r6" ,r-r6)
5123 ("r-rcpp" ,r-rcpp)
5124 ("r-rlang" ,r-rlang)))
5125 (home-page "https://rstudio.github.io/promises")
5126 (synopsis "Abstractions for promise-based asynchronous programming")
5127 (description
5128 "This package provides fundamental abstractions for doing asynchronous
5129programming in R using promises. Asynchronous programming is useful for
5130allowing a single R process to orchestrate multiple tasks in the background
5131while also attending to something else. Semantics are similar to JavaScript
5132promises, but with a syntax that is idiomatic R.")
5133 (license license:expat)))
3cf9ae2f
RW
5134
5135(define-public r-dosnow
5136 (package
5137 (name "r-dosnow")
5138 (version "1.0.16")
5139 (source
5140 (origin
5141 (method url-fetch)
5142 (uri (cran-uri "doSNOW" version))
5143 (sha256
5144 (base32
5145 "13ir4a8252h4yvp5ir9xnwack1kn58i4ny6sf2qdc12zspn3850n"))))
5146 (properties `((upstream-name . "doSNOW")))
5147 (build-system r-build-system)
5148 (propagated-inputs
5149 `(("r-foreach" ,r-foreach)
5150 ("r-iterators" ,r-iterators)
5151 ("r-snow" ,r-snow)))
5152 (home-page "https://cran.r-project.org/web/packages/doSNOW")
5153 (synopsis "Foreach parallel adaptor for the snow package")
5154 (description
5155 "This package provides a parallel backend for the @code{%dopar%} function
5156using the @code{snow} package.")
5157 (license license:gpl2)))
fdc3a05d
RJ
5158
5159(define-public r-snowfall
5160 (package
5161 (name "r-snowfall")
5162 (version "1.84-6.1")
5163 (source (origin
5164 (method url-fetch)
5165 (uri (cran-uri "snowfall" version))
5166 (sha256
5167 (base32 "13941rlw1jsdjsndp1plzj1cq5aqravizkrqn6l25r9im7rnsi2w"))))
5168 (build-system r-build-system)
5169 (propagated-inputs
5170 `(("r-snow" ,r-snow)))
5171 (home-page "http://cran.r-project.org/web/packages/snowfall/")
5172 (synopsis "Easier cluster computing")
5173 (description "This package is a usability wrapper around snow for easier
5174development of parallel R programs. This package offers e.g. extended error
5175checks, and additional functions. All functions work in sequential mode, too,
5176if no cluster is present or wished. The package is also designed as connector
5177to the cluster management tool @code{sfCluster}, but can also used without
5178it.")
5179 (license license:gpl2+)))
e09d74ec 5180
94a8990f
RW
5181(define-public r-rappdirs
5182 (package
5183 (name "r-rappdirs")
5184 (version "0.3.1")
5185 (source
5186 (origin
5187 (method url-fetch)
5188 (uri (cran-uri "rappdirs" version))
5189 (sha256
5190 (base32
5191 "0ji6sg3bdn5gazkq14xmmcq7jnbsyxw4lzmmbgv6526j2vn93n1g"))))
5192 (build-system r-build-system)
5193 (home-page "https://cran.r-project.org/web/packages/rappdirs/")
5194 (synopsis "Determine where to save data, caches, and logs")
5195 (description
5196 "This package provides an easy way to determine which directories on the
5197user's computer should be used to save data, caches and logs. It is a port of
5198Python's @url{https://github.com/ActiveState/appdirs,Appdirs} to R.")
5199 (license license:expat)))
2b47ebe1
RW
5200
5201(define-public r-learnr
5202 (package
5203 (name "r-learnr")
7d0370ed 5204 (version "0.9.2.1")
2b47ebe1
RW
5205 (source
5206 (origin
5207 (method url-fetch)
5208 (uri (cran-uri "learnr" version))
5209 (sha256
5210 (base32
7d0370ed 5211 "0jbk0g6fkw7zs8ykzhsvh9vvz8xmc4v03bqzjsa5mmpxpqan5vx5"))))
2b47ebe1
RW
5212 (build-system r-build-system)
5213 (propagated-inputs
5214 `(("r-evaluate" ,r-evaluate)
5215 ("r-htmltools" ,r-htmltools)
5216 ("r-htmlwidgets" ,r-htmlwidgets)
5217 ("r-jsonlite" ,r-jsonlite)
5218 ("r-knitr" ,r-knitr)
5219 ("r-markdown" ,r-markdown)
5220 ("r-rappdirs" ,r-rappdirs)
5221 ("r-rmarkdown" ,r-rmarkdown)
5222 ("r-rprojroot" ,r-rprojroot)
5223 ("r-shiny" ,r-shiny)
5224 ("r-withr" ,r-withr)))
5225 (home-page "https://rstudio.github.io/learnr/")
5226 (synopsis "Interactive tutorials for R")
5227 (description
5228 "This package provides tools to create interactive tutorials using R
5229Markdown. Use a combination of narrative, figures, videos, exercises, and
5230quizzes to create self-paced tutorials for learning about R and R packages.")
5231 (license license:asl2.0)))
12591673
RW
5232
5233(define-public r-analytics
5234 (package
5235 (name "r-analytics")
7a06cdfa 5236 (version "3.0")
12591673
RW
5237 (source
5238 (origin
5239 (method url-fetch)
5240 (uri (cran-uri "analytics" version))
5241 (sha256
5242 (base32
7a06cdfa 5243 "0js3c8lwj3knccb55nq03cbjlf4w390p9aid2mi5x80l3ayd9in1"))))
12591673
RW
5244 (build-system r-build-system)
5245 (propagated-inputs
5246 `(("r-car" ,r-car)
5247 ("r-cluster" ,r-cluster)
5248 ("r-fractal" ,r-fractal)
5249 ("r-lmtest" ,r-lmtest)
5250 ("r-mass" ,r-mass)
5251 ("r-np" ,r-np)
5252 ("r-powerplus" ,r-powerplus)
5253 ("r-robust" ,r-robust)
5254 ("r-trend" ,r-trend)
5255 ("r-tsa" ,r-tsa)
7a06cdfa
RW
5256 ("r-urca" ,r-urca)
5257 ("r-vim" ,r-vim)))
12591673
RW
5258 (home-page "https://cran.r-project.org/web/packages/analytics/")
5259 (synopsis "Collection of data analysis tools")
5260 (description
5261 "This package is a collection of data analysis tools. It includes tools
5262for regression outlier detection in a fitted linear model, stationary
5263bootstrap using a truncated geometric distribution, a comprehensive test for
5264weak stationarity, column means by group, weighted biplots, and a heuristic to
5265obtain a better initial configuration in non-metric MDS.")
5266 (license license:gpl2)))
9f56ceec
RW
5267
5268(define-public r-reticulate
5269 (package
5270 (name "r-reticulate")
7f290982 5271 (version "1.12")
9f56ceec
RW
5272 (source
5273 (origin
5274 (method url-fetch)
5275 (uri (cran-uri "reticulate" version))
5276 (sha256
5277 (base32
7f290982 5278 "0pqr1rcs8yg9nlh729mvlws93cqhpmv49j9bcgarh7vxzkwyv0kb"))))
9f56ceec
RW
5279 (build-system r-build-system)
5280 (inputs `(("python" ,python)))
5281 (propagated-inputs
5282 `(("r-jsonlite" ,r-jsonlite)
5283 ("r-matrix" ,r-matrix)
5284 ("r-rcpp" ,r-rcpp)))
5285 (home-page "https://github.com/rstudio/reticulate")
5286 (synopsis "R interface to Python")
5287 (description
5288 "This package provides an interface from R to Python modules, classes,
5289and functions. When calling into Python, R data types are automatically
5290converted to their equivalent Python types. When values are returned from
5291Python to R they are converted back to R types.")
5292 (license license:asl2.0)))
11de8673
RW
5293
5294(define-public r-bibtex
5295 (package
5296 (name "r-bibtex")
5297 (version "0.4.2")
5298 (source
5299 (origin
5300 (method url-fetch)
5301 (uri (cran-uri "bibtex" version))
5302 (sha256
5303 (base32
5304 "0wl3925ryd54g1nv3ncwllc493d39dpgy5md61940h69c0van1hz"))))
5305 (build-system r-build-system)
5306 (propagated-inputs `(("r-stringr" ,r-stringr)))
5307 (home-page "https://github.com/romainfrancois/bibtex")
5308 (synopsis "Bibtex parser")
5309 (description "This package provides a utility for R to parse a bibtex
5310file.")
5311 (license license:gpl2+)))
e67acae7
RW
5312
5313(define-public r-ggseqlogo
5314 (package
5315 (name "r-ggseqlogo")
5316 (version "0.1")
5317 (source
5318 (origin
5319 (method url-fetch)
5320 (uri (cran-uri "ggseqlogo" version))
5321 (sha256
5322 (base32
5323 "13q6kcpxrqxqbji889fx63p0nsi08lk5yymkchig75r5k1d18ky1"))))
5324 (build-system r-build-system)
5325 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
5326 (home-page "https://github.com/omarwagih/ggseqlogo")
5327 (synopsis "ggplot2 extension for drawing genetic sequence logos")
5328 (description
5329 "The range of functions provided by this package makes it possible to
5330draw highly versatile genomic sequence logos. Features include, but are not
5331limited to, modifying colour schemes and fonts used to draw the logo,
5332generating multiple logo plots, and aiding the visualisation with annotations.
5333Sequence logos can easily be combined with other ggplot2 plots.")
5334 ;; Unspecified version of the LGPL.
5335 (license license:lgpl3+)))
85df1a86
RW
5336
5337(define-public r-ggsci
5338 (package
5339 (name "r-ggsci")
5340 (version "2.9")
5341 (source
5342 (origin
5343 (method url-fetch)
5344 (uri (cran-uri "ggsci" version))
5345 (sha256
5346 (base32
5347 "0g73x6grbka7ahjh6z23m3wrcifp5rdfdiasbl8lq4sp6rplxwaa"))))
5348 (build-system r-build-system)
5349 (propagated-inputs
5350 `(("r-ggplot2" ,r-ggplot2)
5351 ("r-scales" ,r-scales)))
5352 (home-page "https://nanx.me/ggsci/")
5353 (synopsis "Scientific journal and sci-fi themed color palettes for ggplot2")
5354 (description
5355 "This package provides a collection of ggplot2 color palettes inspired by
5356plots in scientific journals, data visualization libraries, science fiction
5357movies, and TV shows.")
5358 (license license:gpl3)))
5219c5c5
RW
5359
5360(define-public r-ggsignif
5361 (package
5362 (name "r-ggsignif")
6e4a9b83 5363 (version "0.5.0")
5219c5c5
RW
5364 (source
5365 (origin
5366 (method url-fetch)
5367 (uri (cran-uri "ggsignif" version))
5368 (sha256
5369 (base32
6e4a9b83 5370 "0z04g5kqdj66fyfxb5d2m7njkqd7idbiy4xgsnxdh5pbh3cr643x"))))
5219c5c5
RW
5371 (build-system r-build-system)
5372 (propagated-inputs
5373 `(("r-ggplot2" ,r-ggplot2)))
5374 (home-page "https://github.com/const-ae/ggsignif")
5375 (synopsis "Significance brackets for ggplot2")
5376 (description
5377 "Enrich your ggplots with group-wise comparisons. This package provides
5378an easy way to indicate if two groups are significantly different. Commonly
5379this is shown by a bracket on top connecting the groups of interest which
5380itself is annotated with the level of significance. The package provides a
5381single layer that takes the groups for comparison and the test as arguments
5382and adds the annotation to the plot.")
5383 (license license:gpl3)))
5cbaaee8
RW
5384
5385(define-public r-ggpubr
5386 (package
5387 (name "r-ggpubr")
1659c5dd 5388 (version "0.2")
5cbaaee8
RW
5389 (source
5390 (origin
5391 (method url-fetch)
5392 (uri (cran-uri "ggpubr" version))
5393 (sha256
5394 (base32
1659c5dd 5395 "0rkpcjb1x7lvhj68aam5airbi534jqyiq12x5xk40a25iifhghq6"))))
5cbaaee8
RW
5396 (build-system r-build-system)
5397 (propagated-inputs
5398 `(("r-cowplot" ,r-cowplot)
5399 ("r-dplyr" ,r-dplyr)
5400 ("r-ggplot2" ,r-ggplot2)
5401 ("r-ggrepel" ,r-ggrepel)
5402 ("r-ggsci" ,r-ggsci)
5403 ("r-ggsignif" ,r-ggsignif)
caaec886 5404 ("r-glue" ,r-glue)
5cbaaee8
RW
5405 ("r-gridextra" ,r-gridextra)
5406 ("r-magrittr" ,r-magrittr)
caaec886 5407 ("r-polynom" ,r-polynom)
5cbaaee8
RW
5408 ("r-purrr" ,r-purrr)
5409 ("r-scales" ,r-scales)
5410 ("r-tidyr" ,r-tidyr)))
5411 (home-page "http://www.sthda.com/english/rpkgs/ggpubr")
5412 (synopsis "ggplot2-based publication-ready plots")
5413 (description
5414 "The ggplot2 package is an excellent and flexible package for elegant
5415data visualization in R. However the default generated plots require some
5416formatting before we can send them for publication. The ggpubr package
5417provides some easy-to-use functions for creating and customizing ggplot2-based
5418publication-ready plots.")
5419 (license license:gpl2)))
141e43bd
RW
5420
5421(define-public r-ellipse
5422 (package
5423 (name "r-ellipse")
5424 (version "0.4.1")
5425 (source
5426 (origin
5427 (method url-fetch)
5428 (uri (cran-uri "ellipse" version))
5429 (sha256
5430 (base32
5431 "0g82vc51m3c1k0hnpp2zla6amxxgk2mmkl8ssnsc49jv3599r6hs"))))
5432 (build-system r-build-system)
5433 (home-page "https://cran.r-project.org/web/packages/ellipse/")
5434 (synopsis "Functions for drawing ellipses and ellipse-like confidence regions")
5435 (description
5436 "This package contains various routines for drawing ellipses and
5437ellipse-like confidence regions, implementing the plots described in Murdoch
5438and Chow (1996), A graphical display of large correlation matrices, The
5439American Statistician 50, 178-180. There are also routines implementing the
5440profile plots described in Bates and Watts (1988), Nonlinear Regression
5441Analysis and its Applications.")
5442 (license license:gpl2+)))
cbf6017d
RW
5443
5444(define-public r-flashclust
5445 (package
5446 (name "r-flashclust")
5447 (version "1.01-2")
5448 (source
5449 (origin
5450 (method url-fetch)
5451 (uri (cran-uri "flashClust" version))
5452 (sha256
5453 (base32
5454 "0l4lpz451ll7f7lfxmb7ds24ppzhfg1c3ypvydglcc35p2dq99s8"))))
5455 (properties `((upstream-name . "flashClust")))
5456 (build-system r-build-system)
5457 (native-inputs `(("gfortran" ,gfortran)))
5458 (home-page "https://cran.r-project.org/web/packages/flashClust/")
5459 (synopsis "Implementation of optimal hierarchical clustering")
5460 (description
5461 "This package provides a fast implementation of hierarchical
5462clustering.")
5463 (license license:gpl2+)))
e83841a2
RW
5464
5465(define-public r-factominer
5466 (package
5467 (name "r-factominer")
5468 (version "1.41")
5469 (source
5470 (origin
5471 (method url-fetch)
5472 (uri (cran-uri "FactoMineR" version))
5473 (sha256
5474 (base32
5475 "1h20hydav6l2b7bngqw1av4l5rrh0wk58nhailga1f4qw9lrv259"))))
5476 (properties `((upstream-name . "FactoMineR")))
5477 (build-system r-build-system)
5478 (propagated-inputs
5479 `(("r-car" ,r-car)
5480 ("r-cluster" ,r-cluster)
5481 ("r-ellipse" ,r-ellipse)
5482 ("r-flashclust" ,r-flashclust)
5483 ("r-lattice" ,r-lattice)
5484 ("r-leaps" ,r-leaps)
5485 ("r-mass" ,r-mass)
5486 ("r-scatterplot3d" ,r-scatterplot3d)))
5487 (home-page "http://factominer.free.fr")
5488 (synopsis "Multivariate exploratory data analysis and data mining")
5489 (description
5490 "This package provides exploratory data analysis methods to summarize,
5491visualize and describe datasets. The main principal component methods are
5492available, those with the largest potential in terms of applications:
5493principal component analysis (PCA) when variables are quantitative,
5494correspondence analysis (CA) and multiple correspondence analysis (MCA) when
5495variables are categorical, Multiple Factor Analysis when variables are
5496structured in groups, etc. and hierarchical cluster analysis.")
5497 (license license:gpl2+)))
f22bfee9
RW
5498
5499(define-public r-factoextra
5500 (package
5501 (name "r-factoextra")
5502 (version "1.0.5")
5503 (source
5504 (origin
5505 (method url-fetch)
5506 (uri (cran-uri "factoextra" version))
5507 (sha256
5508 (base32
5509 "1l6m8k7qhdw8ndar8nhmym0lfyd1i2iszl1cicjax0vq23ss6xw1"))))
5510 (build-system r-build-system)
5511 (propagated-inputs
5512 `(("r-abind" ,r-abind)
5513 ("r-cluster" ,r-cluster)
5514 ("r-dendextend" ,r-dendextend)
5515 ("r-factominer" ,r-factominer)
5516 ("r-ggplot2" ,r-ggplot2)
5517 ("r-ggpubr" ,r-ggpubr)
5518 ("r-ggrepel" ,r-ggrepel)
5519 ("r-reshape2" ,r-reshape2)
5520 ("r-tidyr" ,r-tidyr)))
5521 (home-page "http://www.sthda.com/english/rpkgs/factoextra")
5522 (synopsis "Extract and visualize the results of multivariate data analyses")
5523 (description
5524 "This package provides some easy-to-use functions to extract and
5525visualize the output of multivariate data analyses, including
6ccd88e8
RW
5526@code{PCA} (Principal Component Analysis), @code{CA} (Correspondence
5527Analysis), @code{MCA} (Multiple Correspondence Analysis), @code{FAMD} (Factor
5528Analysis of Mixed Data), @code{MFA} (Multiple Factor Analysis) and
f22bfee9
RW
5529@code{HMFA} (Hierarchical Multiple Factor Analysis) functions from different R
5530packages. It contains also functions for simplifying some clustering analysis
5531steps and provides ggplot2-based elegant data visualization.")
5532 (license license:gpl2)))
0c9868aa 5533
356230da
RW
5534(define-public r-fansi
5535 (package
5536 (name "r-fansi")
08645fcf 5537 (version "0.4.0")
356230da
RW
5538 (source
5539 (origin
5540 (method url-fetch)
5541 (uri (cran-uri "fansi" version))
5542 (sha256
5543 (base32
08645fcf 5544 "02f2rx7v7wz6w97m2slwky2i5y8f9iafycmkyr3siy3z3k8fj171"))))
356230da
RW
5545 (build-system r-build-system)
5546 (native-inputs
5547 `(("r-knitr" ,r-knitr))) ; for vignettes
5548 (home-page "https://github.com/brodieG/fansi")
5549 (synopsis "ANSI control sequence aware string functions")
5550 (description
5551 "This package provides counterparts to R string manipulation functions
5552that account for the effects of ANSI text formatting control sequences.")
5553 (license license:gpl2+)))
5554
0c9868aa
RW
5555(define-public r-nbclust
5556 (package
5557 (name "r-nbclust")
5558 (version "3.0")
5559 (source
5560 (origin
5561 (method url-fetch)
5562 (uri (cran-uri "NbClust" version))
5563 (sha256
5564 (base32
5565 "1vwb48zy6ln1ddpqmfngii1i80n8qmqyxnzdp6gbaq96lakl3w3c"))))
5566 (properties `((upstream-name . "NbClust")))
5567 (build-system r-build-system)
5568 (home-page "https://sites.google.com/site/malikacharrad/research/nbclust-package")
5569 (synopsis "Determine the best number of clusters in a data set")
5570 (description
5571 "NbClust provides 30 indexes for determining the optimal number of
5572clusters in a data set and offers the best clustering scheme from different
5573results to the user.")
5574 (license license:gpl2)))
546fc4aa
RW
5575
5576(define-public r-hdf5r
5577 (package
5578 (name "r-hdf5r")
17ae31b7 5579 (version "1.2.0")
546fc4aa
RW
5580 (source
5581 (origin
5582 (method url-fetch)
5583 (uri (cran-uri "hdf5r" version))
5584 (sha256
5585 (base32
17ae31b7 5586 "10gynjwaaxks8y9c2fl8k040j0nbwn372nil70009yfk9wrkx0aq"))))
546fc4aa
RW
5587 (build-system r-build-system)
5588 (inputs
5589 `(("hdf5" ,hdf5)
5590 ("zlib" ,zlib)))
5591 (propagated-inputs
5592 `(("r-bit64" ,r-bit64)
5593 ("r-r6" ,r-r6)))
5594 (home-page "https://hhoeflin.github.io/hdf5r")
5595 (synopsis "Interface to the HDF5 binary data format")
5596 (description
5597 "HDF5 is a data model, library and file format for storing and managing
5598large amounts of data. This package provides a nearly feature complete,
5599object oriented wrapper for the HDF5 API using R6 classes. Additionally,
5600functionality is added so that HDF5 objects behave very similar to their
5601corresponding R counterparts.")
5602 (license license:asl2.0)))
846325a8 5603
3568b823
RW
5604(define-public r-itertools
5605 (package
5606 (name "r-itertools")
5607 (version "0.1-3")
5608 (source
5609 (origin
5610 (method url-fetch)
5611 (uri (cran-uri "itertools" version))
5612 (sha256
5613 (base32
5614 "1ls5biiva10pb1dj3ph4griykb9vam02hkrdmlr5a5wf660hg6xn"))))
5615 (build-system r-build-system)
5616 (propagated-inputs
5617 `(("r-iterators" ,r-iterators)))
5618 (home-page "https://cran.r-project.org/web/packages/itertools/")
5619 (synopsis "Iterator tools")
5620 (description
5621 "This package provides various tools for creating iterators, many
5622patterned after functions in the Python @code{itertools} module, and others
5623patterned after functions in the snow package.")
5624 (license license:gpl2)))
5625
53718658
RW
5626(define-public r-polynom
5627 (package
5628 (name "r-polynom")
3be585cf 5629 (version "1.4-0")
53718658
RW
5630 (source
5631 (origin
5632 (method url-fetch)
5633 (uri (cran-uri "polynom" version))
5634 (sha256
5635 (base32
3be585cf 5636 "1pflscwc0qzdf0y60j7s0dkglgmz18xajywfbn6s263idyr8idy5"))))
53718658
RW
5637 (build-system r-build-system)
5638 (home-page "https://cran.r-project.org/web/packages/polynom/")
5639 (synopsis "Functions for univariate polynomial manipulations")
5640 (description
5641 "This package provides a collection of functions to implement a class for
5642univariate polynomial manipulations.")
5643 (license license:gpl2)))
5644
dd954dd7
RW
5645(define-public r-gbrd
5646 (package
5647 (name "r-gbrd")
5648 (version "0.4-11")
5649 (source
5650 (origin
5651 (method url-fetch)
5652 (uri (cran-uri "gbRd" version))
5653 (sha256
5654 (base32
5655 "06x97rw5i6v6cgjxkfhxnw4dn7lghn5q6ra7ri5ag1x9dkfzcl82"))))
5656 (properties `((upstream-name . "gbRd")))
5657 (build-system r-build-system)
5658 (home-page "https://cran.r-project.org/web/packages/gbRd/")
5659 (synopsis "Utilities for processing Rd objects and files")
5660 (description
5661 "This package provides utilities for processing Rd objects and files.
5662Extract argument descriptions and other parts of the help pages of
5663functions.")
5664 (license license:gpl2+)))
5665
0c92f373
RW
5666(define-public r-rjags
5667 (package
5668 (name "r-rjags")
5669 (version "4-8")
5670 (source
5671 (origin
5672 (method url-fetch)
5673 (uri (cran-uri "rjags" version))
5674 (sha256
5675 (base32
5676 "17xmjksj69f9wk4x71jxk4cgiqhaf2fj6bjm0mgzp4qln5x84a8m"))))
5677 (build-system r-build-system)
5678 (propagated-inputs
5679 `(("r-coda" ,r-coda)))
5680 (inputs
5681 `(("jags" ,jags)))
5682 (native-inputs
5683 `(("pkg-config" ,pkg-config)))
5684 (home-page "http://mcmc-jags.sourceforge.net")
5685 (synopsis "Bayesian graphical models using MCMC")
5686 (description
5687 "This package provides an R interface to the JAGS MCMC library. JAGS is
5688Just Another Gibbs Sampler. It is a program for analysis of Bayesian
5689hierarchical models using Markov Chain Monte Carlo (MCMC) simulation.")
5690 (license license:gpl2)))
5691
6a846975
RW
5692(define-public r-rdpack
5693 (package
5694 (name "r-rdpack")
f0826fec 5695 (version "0.11-0")
6a846975
RW
5696 (source
5697 (origin
5698 (method url-fetch)
5699 (uri (cran-uri "Rdpack" version))
5700 (sha256
5701 (base32
f0826fec 5702 "11cd27s6zp5cxnwxcvz6rjf00y0r7aq8ywhzwpf1r4xy1z44kd4g"))))
6a846975
RW
5703 (properties `((upstream-name . "Rdpack")))
5704 (build-system r-build-system)
5705 (propagated-inputs
5706 `(("r-bibtex" ,r-bibtex)
5707 ("r-gbrd" ,r-gbrd)))
5708 (home-page "https://github.com/GeoBosh/Rdpack")
5709 (synopsis "Update and manipulate Rd documentation objects")
5710 (description
5711 "This package provides functions for manipulation of R documentation
5712objects, including functions @code{reprompt()} and @code{ereprompt()} for
5713updating Rd documentation for functions, methods and classes; it also includes
5714Rd macros for citations and import of references from bibtex files for use in
5715Rd files and roxygen2 comments, as well as many functions for manipulation of
5716references and Rd files.")
5717 (license license:gpl2+)))
5718
c183fa26
RW
5719(define-public r-officer
5720 (package
5721 (name "r-officer")
944d4c48 5722 (version "0.3.4")
c183fa26
RW
5723 (source
5724 (origin
5725 (method url-fetch)
5726 (uri (cran-uri "officer" version))
5727 (sha256
5728 (base32
944d4c48 5729 "1m4b3mcn5j5q3nq0jp1nranh4rdb8vxcpabn6ryqk9m6709fvhjz"))))
c183fa26
RW
5730 (build-system r-build-system)
5731 (propagated-inputs
5732 `(("r-base64enc" ,r-base64enc)
5733 ("r-digest" ,r-digest)
5734 ("r-htmltools" ,r-htmltools)
5735 ("r-magrittr" ,r-magrittr)
5736 ("r-r6" ,r-r6)
5737 ("r-rcpp" ,r-rcpp)
fd1a17a5 5738 ("r-rlang" ,r-rlang)
c183fa26
RW
5739 ("r-uuid" ,r-uuid)
5740 ("r-xml2" ,r-xml2)
5741 ("r-zip" ,r-zip)))
5742 (home-page "https://davidgohel.github.io/officer")
5743 (synopsis "Manipulation of Word and PowerPoint documents")
5744 (description
5745 "This package provides tools to access and manipulate Word and PowerPoint
5746documents from R. The package focuses on tabular and graphical reporting from
5747R; it also provides two functions that let users get document content into
5748data objects. A set of functions lets add and remove images, tables and
5749paragraphs of text in new or existing documents. When working with PowerPoint
5750presentations, slides can be added or removed; shapes inside slides can also
5751be added or removed. When working with Word documents, a cursor can be used
5752to help insert or delete content at a specific location in the document.")
5753 (license license:gpl3)))
5754
488dc4e1
RW
5755(define-public r-abn
5756 (package
5757 (name "r-abn")
fbd263cd 5758 (version "1.3")
488dc4e1
RW
5759 (source
5760 (origin
5761 (method url-fetch)
5762 (uri (cran-uri "abn" version))
5763 (sha256
5764 (base32
fbd263cd 5765 "1q9hzpxwg835711kxwygd0l2awal6f015f8s6fprwz7graz1wbbm"))))
488dc4e1
RW
5766 (build-system r-build-system)
5767 (inputs
5768 `(("gsl" ,gsl)))
5769 (propagated-inputs
5770 `(("r-cairo" ,r-cairo)
5771 ("r-lme4" ,r-lme4)
5772 ("r-mass" ,r-mass)
5773 ("r-nnet" ,r-nnet)
5774 ("r-rcpp" ,r-rcpp)
5775 ("r-rcpparmadillo" ,r-rcpparmadillo)
5776 ("r-rjags" ,r-rjags)))
5777 (home-page "http://www.r-bayesian-networks.org")
5778 (synopsis "Modelling multivariate data with additive bayesian networks")
5779 (description
5780 "Bayesian network analysis is a form of probabilistic graphical models
5781which derives from empirical data a directed acyclic graph, DAG, describing
5782the dependency structure between random variables. An additive Bayesian
5783network model consists of a form of a DAG where each node comprises a
5784@dfn{generalized linear model} (GLM). Additive Bayesian network models are
5785equivalent to Bayesian multivariate regression using graphical modelling, they
5786generalises the usual multivariable regression, GLM, to multiple dependent
5787variables. This package provides routines to help determine optimal Bayesian
5788network models for a given data set, where these models are used to identify
5789statistical dependencies in messy, complex data.")
5790 (license license:gpl2+)))
5791
ffdeda3c
RW
5792(define-public r-acd
5793 (package
5794 (name "r-acd")
5795 (version "1.5.3")
5796 (source
5797 (origin
5798 (method url-fetch)
5799 (uri (cran-uri "ACD" version))
5800 (sha256
5801 (base32
5802 "1a67bi3hklq8nlc50r0qnyr4k7m9kpvijy8sqqpm54by5hsysfd6"))))
5803 (properties `((upstream-name . "ACD")))
5804 (build-system r-build-system)
5805 (home-page "https://cran.r-project.org/web/packages/ACD/")
5806 (synopsis "Categorical data analysis with complete or missing responses")
5807 (description
5808 "This package provides tools for categorical data analysis with complete
5809or missing responses.")
5810 (license license:gpl2+)))
5811
acbf23da
RW
5812(define-public r-acdm
5813 (package
5814 (name "r-acdm")
5815 (version "1.0.4")
5816 (source
5817 (origin
5818 (method url-fetch)
5819 (uri (cran-uri "ACDm" version))
5820 (sha256
5821 (base32
5822 "0b4f02ga5ra66mbrm79g0bnlzmii82rks9kmxixxqgf18yhlyjil"))))
5823 (properties `((upstream-name . "ACDm")))
5824 (build-system r-build-system)
5825 (propagated-inputs
5826 `(("r-dplyr" ,r-dplyr)
5827 ("r-ggplot2" ,r-ggplot2)
5828 ("r-plyr" ,r-plyr)
5829 ("r-rsolnp" ,r-rsolnp)
5830 ("r-zoo" ,r-zoo)))
5831 (home-page "https://cran.r-project.org/web/packages/ACDm/")
5832 (synopsis "Tools for Autoregressive Conditional Duration Models")
5833 (description
5834 "ACDm is a package for Autoregressive Conditional Duration (ACD, Engle
5835and Russell, 1998) models. It creates trade, price or volume durations from
5836transactions (tic) data, performs diurnal adjustments, fits various ACD models
5837and tests them.")
5838 (license license:gpl2+)))
5839
08bf097a
RW
5840(define-public r-overlap
5841 (package
5842 (name "r-overlap")
5843 (version "0.3.2")
5844 (source
5845 (origin
5846 (method url-fetch)
5847 (uri (cran-uri "overlap" version))
5848 (sha256
5849 (base32
5850 "1j3m6ir1chdz0si2fhcw6gs7c9h09bv0chz18rpzxsywww6d4rzy"))))
5851 (build-system r-build-system)
5852 (home-page "https://cran.r-project.org/web/packages/overlap/")
5853 (synopsis "Estimates of coefficient of overlapping for animal activity patterns")
5854 (description
5855 "This package provides functions to fit kernel density functions to data
5856on temporal activity patterns of animals; estimate coefficients of overlapping
5857of densities for two species; and calculate bootstrap estimates of confidence
5858intervals.")
5859 (license license:gpl3+)))
5860
bfee9ce8
RW
5861(define-public r-snakecase
5862 (package
5863 (name "r-snakecase")
794c9e7d 5864 (version "0.11.0")
bfee9ce8
RW
5865 (source
5866 (origin
5867 (method url-fetch)
5868 (uri (cran-uri "snakecase" version))
5869 (sha256
5870 (base32
794c9e7d 5871 "1ky1x2cp5rd0ffd9m1fji9sq4z4jsrpxzg30brw8bb4ihfjj114r"))))
bfee9ce8
RW
5872 (build-system r-build-system)
5873 (propagated-inputs
5874 `(("r-stringi" ,r-stringi)
5875 ("r-stringr" ,r-stringr)))
5876 (home-page "https://github.com/Tazinho/snakecase")
5877 (synopsis "Convert strings into any case")
5878 (description
5879 "This package provides a consistent, flexible and easy to use tool to
5880parse and convert strings into cases like snake or camel among others.")
5881 (license license:gpl3)))
5882
de059e4b
RW
5883(define-public r-prediction
5884 (package
5885 (name "r-prediction")
77545570 5886 (version "0.3.6.2")
de059e4b
RW
5887 (source
5888 (origin
5889 (method url-fetch)
5890 (uri (cran-uri "prediction" version))
5891 (sha256
5892 (base32
77545570 5893 "0kx7xbm2j6c8h6gk1iig4vfpg877psg16j74hl7zc2mv40sc6dy5"))))
de059e4b
RW
5894 (build-system r-build-system)
5895 (propagated-inputs
5896 `(("r-data-table" ,r-data-table)))
5897 (home-page "https://github.com/leeper/prediction")
5898 (synopsis "Tidy, type-safe prediction methods")
5899 (description
5900 "This package provides the @code{prediction()} function, a type-safe
5901alternative to @code{predict()} that always returns a data frame. The package
5902currently supports common model types (e.g., @code{\"lm\"}, @code{\"glm\"})
5903from the @code{stats} package, as well as numerous other model classes from
5904other add-on packages.")
5905 (license license:expat)))
5906
d14c770d
RW
5907(define-public r-insight
5908 (package
5909 (name "r-insight")
70a4748b 5910 (version "0.3.0")
d14c770d
RW
5911 (source
5912 (origin
5913 (method url-fetch)
5914 (uri (cran-uri "insight" version))
5915 (sha256
5916 (base32
70a4748b 5917 "1r288hc01cpyrk3nias30fw783z2vw20qr1k67vr65anh7mwm7vb"))))
d14c770d
RW
5918 (build-system r-build-system)
5919 (home-page "https://easystats.github.io/insight/")
5920 (synopsis "Easy access to model information for various model objects")
5921 (description
5922 "This package provides a tool to provide an easy, intuitive and
5923consistent access to information contained in various R models, like model
5924formulas, model terms, information about random effects, data that was used to
5925fit the model or data from response variables. The package mainly revolves
5926around two types of functions: Functions that find (the names of) information,
5927starting with @code{find_}, and functions that get the underlying data,
5928starting with @code{get_}. The package has a consistent syntax and works with
5929many different model objects, where otherwise functions to access these
5930information are missing.")
5931 (license license:gpl3)))
5932
cfc06314
RW
5933(define-public r-sjlabelled
5934 (package
5935 (name "r-sjlabelled")
5e16dff9 5936 (version "1.0.17")
cfc06314
RW
5937 (source
5938 (origin
5939 (method url-fetch)
5940 (uri (cran-uri "sjlabelled" version))
5941 (sha256
5942 (base32
5e16dff9 5943 "00c0c22ynpihgf2bvmcfnkvqwqvxax2zzb7wldsmg2f7z5a32aa6"))))
cfc06314
RW
5944 (build-system r-build-system)
5945 (propagated-inputs
5e16dff9 5946 `(("r-dplyr" ,r-dplyr)
cfc06314 5947 ("r-haven" ,r-haven)
5e16dff9 5948 ("r-insight" ,r-insight)
cfc06314 5949 ("r-magrittr" ,r-magrittr)
cfc06314 5950 ("r-purrr" ,r-purrr)
5e16dff9 5951 ("r-rlang" ,r-rlang)))
cfc06314
RW
5952 (home-page "https://github.com/strengejacke/sjlabelled")
5953 (synopsis "Labelled data utility functions")
5954 (description
5955 "This package provides a collection of functions dealing with labelled
5956data, like reading and writing data between R and other statistical software
5957packages. This includes easy ways to get, set or change value and variable
5958label attributes, to convert labelled vectors into factors or numeric (and
5959vice versa), or to deal with multiple declared missing values.")
5960 (license license:gpl3)))
5961
1f560b9c
RW
5962(define-public r-sjmisc
5963 (package
5964 (name "r-sjmisc")
31af2e7f 5965 (version "2.7.9")
1f560b9c
RW
5966 (source
5967 (origin
5968 (method url-fetch)
5969 (uri (cran-uri "sjmisc" version))
5970 (sha256
5971 (base32
31af2e7f 5972 "11iiap0w5v0dszgwx4pi3j1zf9vnlw1ml1wjvq1hg9iz1plgbfnc"))))
1f560b9c
RW
5973 (build-system r-build-system)
5974 (propagated-inputs
31af2e7f 5975 `(("r-dplyr" ,r-dplyr)
1f560b9c
RW
5976 ("r-haven" ,r-haven)
5977 ("r-magrittr" ,r-magrittr)
1f560b9c
RW
5978 ("r-purrr" ,r-purrr)
5979 ("r-rlang" ,r-rlang)
31af2e7f 5980 ("r-sjlabelled" ,r-sjlabelled)))
1f560b9c
RW
5981 (home-page "https://github.com/strengejacke/sjmisc")
5982 (synopsis "Data and variable transformation functions")
5983 (description
5984 "This package is a collection of miscellaneous utility functions,
5985supporting data transformation tasks like recoding, dichotomizing or grouping
5986variables, setting and replacing missing values. The data transformation
5987functions also support labelled data, and all integrate seamlessly into a
5988tidyverse workflow.")
5989 (license license:gpl3)))
5990
aaed237d
RW
5991(define-public r-nortest
5992 (package
5993 (name "r-nortest")
5994 (version "1.0-4")
5995 (source
5996 (origin
5997 (method url-fetch)
5998 (uri (cran-uri "nortest" version))
5999 (sha256
6000 (base32
6001 "17r0wpz72z9312c70nwi1i1kp1v9fm1h6jg7q5cx1mc1h420m1d3"))))
6002 (build-system r-build-system)
6003 (home-page "https://cran.r-project.org/web/packages/nortest/")
6004 (synopsis "Tests for normality")
6005 (description
6006 "This package provides five omnibus tests for testing the composite
6007hypothesis of normality.")
6008 (license license:gpl2+)))
6009
0fd7d59d
RW
6010(define-public r-moonbook
6011 (package
6012 (name "r-moonbook")
6013 (version "0.2.3")
6014 (source
6015 (origin
6016 (method url-fetch)
6017 (uri (cran-uri "moonBook" version))
6018 (sha256
6019 (base32
6020 "0hys56mwbm776ff7dibi8wzyf69qiais9rs1jazv79lk6h56s9s6"))))
6021 (properties `((upstream-name . "moonBook")))
6022 (build-system r-build-system)
6023 (propagated-inputs
6024 `(("r-magrittr" ,r-magrittr)
6025 ("r-nortest" ,r-nortest)
6026 ("r-purrr" ,r-purrr)
6027 ("r-sjmisc" ,r-sjmisc)
6028 ("r-stringr" ,r-stringr)
6029 ("r-survival" ,r-survival)))
6030 (home-page "https://github.com/cardiomoon/moonBook")
6031 (synopsis "Functions and datasets for the book by Keon-Woong Moon")
6032 (description
6033 "This package provides several analysis-related functions for the book
6034entitled \"R statistics and graph for medical articles\" (written in Korean),
6035version 1, by Keon-Woong Moon with Korean demographic data with several plot
6036functions.")
6037 (license license:gpl2)))
6038
589bd1c4
RW
6039(define-public r-flextable
6040 (package
6041 (name "r-flextable")
72074895 6042 (version "0.5.4")
589bd1c4
RW
6043 (source
6044 (origin
6045 (method url-fetch)
6046 (uri (cran-uri "flextable" version))
6047 (sha256
6048 (base32
72074895 6049 "0h6ylgz1mn61d2kh1bym8hfl3r7nf4z092lmjsaav3h1ki3avrnl"))))
589bd1c4
RW
6050 (build-system r-build-system)
6051 (propagated-inputs
30918ce8
RW
6052 `(("r-base64enc" ,r-base64enc)
6053 ("r-data-table" ,r-data-table)
e89d5427 6054 ("r-gdtools" ,r-gdtools)
589bd1c4
RW
6055 ("r-htmltools" ,r-htmltools)
6056 ("r-knitr" ,r-knitr)
6057 ("r-officer" ,r-officer)
e89d5427 6058 ("r-rlang" ,r-rlang)
589bd1c4 6059 ("r-rmarkdown" ,r-rmarkdown)
589bd1c4
RW
6060 ("r-xml2" ,r-xml2)))
6061 (home-page "https://davidgohel.github.io/flextable")
6062 (synopsis "Functions for tabular reporting")
6063 (description
6064 "This package provides tools to create pretty tables for HTML documents
6065and other formats. Functions are provided to let users create tables, modify
6066and format their content. It extends the @code{officer} package and can be
6067used within R markdown documents when rendering to HTML and to Word
6068documents.")
6069 (license license:gpl3)))
6070
846325a8
RW
6071(define-public r-writexl
6072 (package
6073 (name "r-writexl")
04a18a81 6074 (version "1.1")
846325a8
RW
6075 (source
6076 (origin
6077 (method url-fetch)
6078 (uri (cran-uri "writexl" version))
6079 (sha256
6080 (base32
04a18a81 6081 "0w4wnpl3yhaqp63p32bk60xrbmd7xd11kxifjbzrghi7d4483a46"))))
846325a8
RW
6082 (build-system r-build-system)
6083 (inputs `(("zlib" ,zlib)))
6084 (home-page "https://github.com/ropensci/writexl")
6085 (synopsis "Export data frames to xlsx format")
6086 (description
6087 "This package provides a data frame to xlsx exporter based on
6088libxlsxwriter.")
6089 (license license:bsd-2)))
64abd245
RW
6090
6091(define-public r-biasedurn
6092 (package
6093 (name "r-biasedurn")
6094 (version "1.07")
6095 (source
6096 (origin
6097 (method url-fetch)
6098 (uri (cran-uri "BiasedUrn" version))
6099 (sha256
6100 (base32
6101 "13i2lgfnjhlbbm2yxfc2l5hswqw6x03pwba5csjmirv8kpjw4xr3"))))
6102 (properties `((upstream-name . "BiasedUrn")))
6103 (build-system r-build-system)
6104 (home-page "https://cran.r-project.org/web/packages/BiasedUrn/")
6105 (synopsis "Biased Urn model distributions")
6106 (description
6107 "This package provides statistical models of biased sampling in the form
6108of univariate and multivariate noncentral hypergeometric distributions,
6109including Wallenius' noncentral hypergeometric distribution and Fisher's
6110noncentral hypergeometric distribution (also called extended hypergeometric
6111distribution).")
6112 (license license:gpl3)))
87ba9508
RW
6113
6114(define-public r-goplot
6115 (package
6116 (name "r-goplot")
6117 (version "1.0.2")
6118 (source
6119 (origin
6120 (method url-fetch)
6121 (uri (cran-uri "GOplot" version))
6122 (sha256
6123 (base32
6124 "1y8dv0kbzpr9za91njw0x233vx5d13vqml9hmpddcyi9s6va5nix"))))
6125 (properties `((upstream-name . "GOplot")))
6126 (build-system r-build-system)
6127 (propagated-inputs
6128 `(("r-ggdendro" ,r-ggdendro)
6129 ("r-ggplot2" ,r-ggplot2)
6130 ("r-gridextra" ,r-gridextra)
6131 ("r-rcolorbrewer" ,r-rcolorbrewer)))
6132 (home-page "https://github.com/wencke/wencke.github.io")
6133 (synopsis "Visualization of functional analysis data")
6134 (description
6135 "This package provides an implementation of multilayered visualizations
6136for enhanced graphical representation of functional analysis data. It
6137combines and integrates omics data derived from expression and functional
6138annotation enrichment analyses. Its plotting functions have been developed
6139with an hierarchical structure in mind: starting from a general overview to
6140identify the most enriched categories (modified bar plot, bubble plot) to a
6141more detailed one displaying different types of relevant information for the
6142molecules in a given set of categories (circle plot, chord plot, cluster plot,
6143Venn diagram, heatmap).")
6144 (license license:gpl2)))
aec7d6be
RW
6145
6146(define-public r-getopt
6147 (package
6148 (name "r-getopt")
104ec4c9 6149 (version "1.20.3")
aec7d6be
RW
6150 (source
6151 (origin
6152 (method url-fetch)
6153 (uri (cran-uri "getopt" version))
6154 (sha256
6155 (base32
104ec4c9 6156 "0zzmzgwl9a4y3s34600vmih22d6y32294f9bvxrnmffnvkgmy7sk"))))
aec7d6be
RW
6157 (build-system r-build-system)
6158 (home-page "https://github.com/trevorld/getopt")
6159 (synopsis "Command-line option processor for R")
6160 (description
6161 "This package is designed to be used with Rscript to write shebang
6162scripts that accept short and long options. Many users will prefer to
6163use the packages @code{optparse} or @code{argparse} which add extra
6164features like automatically generated help options and usage texts,
6165support for default values, positional argument support, etc.")
6166 (license license:gpl2+)))
3629622b
RW
6167
6168(define-public r-findpython
6169 (package
6170 (name "r-findpython")
fcb84565 6171 (version "1.0.5")
3629622b
RW
6172 (source
6173 (origin
6174 (method url-fetch)
6175 (uri (cran-uri "findpython" version))
6176 (sha256
6177 (base32
fcb84565 6178 "0icifm4z6hhpmcjrg75a875iph0ci890ss02kdv3725pijc236iy"))))
3629622b
RW
6179 (build-system r-build-system)
6180 (home-page "https://github.com/trevorld/findpython")
6181 (synopsis "Functions to find an acceptable Python binary")
6182 (description
6183 "This package was designed to find an acceptable Python binary that
6184matches version and feature constraints.")
6185 (license license:expat)))
fa697599
RW
6186
6187;; This in not the same as "r-argparser"
6188(define-public r-argparse
6189 (package
6190 (name "r-argparse")
37317189 6191 (version "2.0.1")
fa697599
RW
6192 (source
6193 (origin
6194 (method url-fetch)
6195 (uri (cran-uri "argparse" version))
6196 (sha256
6197 (base32
37317189 6198 "1as7h6z7kzgv0fqzpnp76qbm96b4jcd37azd58b7rz0l1n94764l"))))
fa697599
RW
6199 (build-system r-build-system)
6200 (inputs `(("python" ,python)))
6201 (propagated-inputs
6202 `(("r-findpython" ,r-findpython)
fa697599 6203 ("r-jsonlite" ,r-jsonlite)
11a36548 6204 ("r-r6" ,r-r6)))
fa697599
RW
6205 (home-page "https://github.com/trevorld/argparse")
6206 (synopsis "Command line optional and positional argument parser")
6207 (description
6208 "This package provides a command line parser to be used with Rscript to
6209write shebang scripts that gracefully accept positional and optional arguments
6210and automatically generate usage notices.")
6211 (license license:gpl2+)))
4646d18e
RW
6212
6213(define-public r-hash
6214 (package
6215 (name "r-hash")
a431c381 6216 (version "2.2.6.1")
4646d18e
RW
6217 (source
6218 (origin
6219 (method url-fetch)
6220 (uri (cran-uri "hash" version))
6221 (sha256
6222 (base32
a431c381 6223 "0b3fl0rvgwb992knl81vm99lsldg5clvaqjh6mamm6zqmb6dz056"))))
4646d18e
RW
6224 (build-system r-build-system)
6225 (home-page "https://cran.r-project.org/web/packages/hash/")
6226 (synopsis "Implementation of hash/associated arrays/dictionaries")
6227 (description
6228 "This package implements a data structure similar to hashes in Perl and
6229dictionaries in Python but with a purposefully R flavor. For objects of
6230appreciable size, access using hashes outperforms native named lists and
6231vectors.")
6232 (license license:gpl2+)))
06a45ad6
RW
6233
6234(define-public r-orddom
6235 (package
6236 (name "r-orddom")
6237 (version "3.1")
6238 (source
6239 (origin
6240 (method url-fetch)
6241 (uri (cran-uri "orddom" version))
6242 (sha256
6243 (base32
6244 "165axs15fvwhrp89xd87l81q3h2qjll1vrwcsap645cwvb85nwsh"))))
6245 (build-system r-build-system)
6246 (propagated-inputs `(("r-psych" ,r-psych)))
6247 (home-page "https://cran.r-project.org/web/packages/orddom/")
6248 (synopsis "Ordinal dominance statistics")
6249 (description
6250 "This package provides tools to compute ordinal, statistics and effect
6251sizes as an alternative to mean comparison: Cliff's delta or success rate
6252difference (SRD), Vargha and Delaney's A or the Area Under a Receiver
6253Operating Characteristic Curve (AUC), the discrete type of McGraw & Wong's
6254Common Language Effect Size (CLES) or Grissom & Kim's Probability of
6255Superiority (PS), and the Number needed to treat (NNT) effect size. Moreover,
6256comparisons to Cohen's d are offered based on Huberty & Lowman's Percentage of
6257Group (Non-)Overlap considerations.")
6258 (license license:gpl2)))
0fccd15f
RW
6259
6260(define-public r-doby
6261 (package
6262 (name "r-doby")
cb96d81b 6263 (version "4.6-2")
0fccd15f
RW
6264 (source
6265 (origin
6266 (method url-fetch)
6267 (uri (cran-uri "doBy" version))
6268 (sha256
6269 (base32
cb96d81b 6270 "02vbv9nfgywg6lsiialkmfnax5z3rkyb9nr8j9l2cp8xi6ml95mb"))))
0fccd15f
RW
6271 (properties `((upstream-name . "doBy")))
6272 (build-system r-build-system)
6273 (propagated-inputs
6274 `(("r-dplyr" ,r-dplyr)
6275 ("r-magrittr" ,r-magrittr)
6276 ("r-mass" ,r-mass)
6277 ("r-matrix" ,r-matrix)
6278 ("r-plyr" ,r-plyr)))
6279 (home-page "http://people.math.aau.dk/~sorenh/software/doBy/")
6280 (synopsis "Groupwise statistics, LSmeans, linear contrasts, and utilities")
6281 (description
6282 "This package contains:
6283
6284@itemize
6285@item facilities for working with grouped data: @code{do}
6286 something to data stratified @code{by} some variables.
6287@item implementations of least-squares means, general linear contrasts, and
6288@item miscellaneous other utilities.
6289@end itemize\n")
6290 (license license:gpl2+)))
5850c5b3
RW
6291
6292(define-public r-refgenome
6293 (package
6294 (name "r-refgenome")
27abdb11 6295 (version "1.7.7")
5850c5b3
RW
6296 (source
6297 (origin
6298 (method url-fetch)
6299 (uri (cran-uri "refGenome" version))
6300 (sha256
6301 (base32
27abdb11 6302 "1za89bn3am1zgvm641qi1ab6kaqpll4rb9p9f1sjwvcgqq6065g5"))))
5850c5b3
RW
6303 (properties `((upstream-name . "refGenome")))
6304 (build-system r-build-system)
6305 (propagated-inputs
6306 `(("r-dbi" ,r-dbi)
6307 ("r-doby" ,r-doby)
6308 ("r-rsqlite" ,r-rsqlite)))
6309 (home-page "https://cran.r-project.org/web/packages/refGenome/")
6310 (synopsis
6311 "Gene and splice site annotation using annotation data from Ensembl and UCSC")
6312 (description
6313 "This package contains functionality for importing and managing of
6314downloaded genome annotation data from the Ensembl genome browser (European
6315Bioinformatics Institute) and from the UCSC genome browser (University of
6316California, Santa Cruz) and annotation routines for genomic positions and
6317splice site positions.")
6318 (license license:gpl2)))
ff7d53a7
RW
6319
6320(define-public r-basix
6321 (package
6322 (name "r-basix")
6323 (version "1.1")
6324 (source
6325 (origin
6326 (method url-fetch)
6327 (uri (cran-uri "BASIX" version))
6328 (sha256
6329 (base32
6330 "18dkvv1iwskfnlpl6xridcgqpalbbpm2616mvc3hfrc0b26v01id"))))
6331 (properties `((upstream-name . "BASIX")))
6332 (build-system r-build-system)
6333 (home-page "https://cran.r-project.org/web/packages/BASIX/")
6334 (synopsis "Efficient C/C++ toolset for R")
6335 (description
6336 "BASIX provides some efficient C/C++ implementations of native R
6337procedures to speed up calculations in R.")
6338 (license license:gpl2)))
65e74814
RW
6339
6340(define-public r-blockfest
6341 (package
6342 (name "r-blockfest")
6343 (version "1.6")
6344 (source
6345 (origin
6346 (method url-fetch)
6347 (uri (cran-uri "BlockFeST" version))
6348 (sha256
6349 (base32
6350 "0hj7a5as7nxbgjac7lbj6qfwffx3g8x8phpf9a55f1c9cdzi73a5"))))
6351 (properties `((upstream-name . "BlockFeST")))
6352 (build-system r-build-system)
6353 (propagated-inputs `(("r-basix" ,r-basix)))
6354 (home-page "https://cran.r-project.org/web/packages/BlockFeST/")
6355 (synopsis "Bayesian calculation of region-specific fixation index")
6356 (description
6357 "This package provides an R implementation of an extension of the
6358BayeScan software for codominant markers, adding the option to group
6359individual SNPs into pre-defined blocks. A typical application of this new
6360approach is the identification of genomic regions, genes, or gene sets
6361containing one or more SNPs that evolved under directional selection.")
6362 (license license:gpl2)))
b9ff2599 6363
fbdf05b1
RW
6364(define-public r-proc
6365 (package
6366 (name "r-proc")
a3daf011 6367 (version "1.14.0")
fbdf05b1
RW
6368 (source
6369 (origin
6370 (method url-fetch)
6371 (uri (cran-uri "pROC" version))
6372 (sha256
6373 (base32
a3daf011 6374 "0ki1pvj5iaki81crapvwqllg5avn5qlvv62axnsdkdcmv9xc3wg0"))))
fbdf05b1
RW
6375 (properties `((upstream-name . "pROC")))
6376 (build-system r-build-system)
6377 (propagated-inputs
a3daf011 6378 `(("r-plyr" ,r-plyr)
fbdf05b1
RW
6379 ("r-rcpp" ,r-rcpp)))
6380 (home-page "http://expasy.org/tools/pROC/")
6381 (synopsis "Display and analyze ROC curves")
6382 (description
6383 "This package provides tools for visualizing, smoothing and comparing
6384receiver operating characteristic (ROC curves). The area under the
6385curve (AUC) can be compared with statistical tests based on U-statistics or
6386bootstrap. Confidence intervals can be computed for (p)AUC or ROC curves.")
6387 (license license:gpl3+)))
cea4d360
RW
6388
6389(define-public r-rootsolve
6390 (package
6391 (name "r-rootsolve")
6392 (version "1.7")
6393 (source
6394 (origin
6395 (method url-fetch)
6396 (uri (cran-uri "rootSolve" version))
6397 (sha256
6398 (base32
6399 "08ic6ggcc5dw4nv9xsqkm3vnvswmxyhnqnv1rdjv1h2gy1ivpcq8"))))
6400 (properties `((upstream-name . "rootSolve")))
6401 (build-system r-build-system)
6402 (native-inputs `(("gfortran" ,gfortran)))
6403 (home-page "https://cran.r-project.org/web/packages/rootSolve/")
6404 (synopsis "Tools for the analysis of ordinary differential equations")
6405 (description
6406 "This package provides routines to find the root of nonlinear functions,
6407and to perform steady-state and equilibrium analysis of @dfn{ordinary
6408differential equations} (ODE). It includes routines that:
6409
6410@enumerate
6411@item generate gradient and jacobian matrices (full and banded),
6412@item find roots of non-linear equations by the Newton-Raphson method,
6413@item estimate steady-state conditions of a system of (differential) equations
6414 in full, banded or sparse form, using the Newton-Raphson method, or by
6415 dynamically running,
6416@item solve the steady-state conditions for uni- and multicomponent 1-D, 2-D,
6417 and 3-D partial differential equations, that have been converted to ordinary
6418 differential equations by numerical differencing (using the method-of-lines
6419 approach).
6420@end enumerate\n")
6421 (license license:gpl2+)))
c994418b 6422
6423(define-public r-abcanalysis
6424 (package
6425 (name "r-abcanalysis")
6426 (version "1.2.1")
6427 (source
6428 (origin
6429 (method url-fetch)
6430 (uri (cran-uri "ABCanalysis" version))
6431 (sha256
6432 (base32 "0wac1ksmnxa36v99ca4hv8k0rsh3igwpcllmlv9wf7i9kgqviqwi"))))
6433 (properties `((upstream-name . "ABCanalysis")))
6434 (build-system r-build-system)
6435 (propagated-inputs `(("r-plotrix" ,r-plotrix)))
6436 (home-page "https://www.uni-marburg.de/fb12/arbeitsgruppen/datenbionik/software-en/")
6437 (synopsis "Computed ABC Analysis")
6438 (description
6439 "Multivariate data sets often differ in several factors or derived statistical
6440parameters, which have to be selected for a valid interpretation. Basing this
6441selection on traditional statistical limits leads occasionally to the perception
6442of losing information from a data set. This package provides tools to calculate
6443these limits on the basis of the mathematical properties of the distribution of
6444the analyzed items.")
6445 (license license:gpl3)))
87b576aa 6446
6447(define-public r-slam
6448 (package
6449 (name "r-slam")
1007b1b6 6450 (version "0.1-45")
87b576aa 6451 (source
6452 (origin
6453 (method url-fetch)
6454 (uri (cran-uri "slam" version))
6455 (sha256
1007b1b6 6456 (base32 "0xvj8va6xd7zkn3l4a5ad7v62s7xmkz8frq7gpcl3b6vqwckkaw4"))))
87b576aa 6457 (build-system r-build-system)
6458 (home-page "https://cran.r-project.org/web/packages/slam/")
6459 (synopsis "Sparse lightweight arrays and matrices")
6460 (description
6461 "This package contains data structures and algorithms for sparse arrays and matrices,
6462based on index arrays and simple triplet representations, respectively.")
6463 (license license:gpl2)))
881cc61c 6464
6465(define-public r-manipulatewidget
6466 (package
6467 (name "r-manipulatewidget")
6468 (version "0.10.0")
6469 (source
6470 (origin
6471 (method url-fetch)
6472 (uri (cran-uri "manipulateWidget" version))
6473 (sha256
6474 (base32 "1zagrbwkn2d50zzw8i2vyb1hsq4cydmfsqiy1a2qlp6zrv8a6q9x"))))
6475 (properties
6476 `((upstream-name . "manipulateWidget")))
6477 (build-system r-build-system)
6478 (propagated-inputs
6479 `(("r-base64enc" ,r-base64enc)
6480 ("r-codetools" ,r-codetools)
6481 ("r-htmltools" ,r-htmltools)
6482 ("r-htmlwidgets" ,r-htmlwidgets)
6483 ("r-knitr" ,r-knitr)
6484 ("r-miniui" ,r-miniui)
6485 ("r-shiny" ,r-shiny)
6486 ("r-webshot" ,r-webshot)))
6487 (home-page "https://github.com/rte-antares-rpackage/manipulateWidget/")
6488 (synopsis "Add even more interactivity to interactive charts")
6489 (description
6490 "This package lets you create in just a few lines of R code a nice user interface to
6491modify the data or the graphical parameters of one or multiple interactive
6492charts. It is useful to quickly explore visually some data or for package
6493developers to generate user interfaces easy to maintain.")
6494 (license license:gpl2+)))
16b0e8da 6495
6496(define-public r-a3
6497 (package
6498 (name "r-a3")
6499 (version "1.0.0")
6500 (source
6501 (origin
6502 (method url-fetch)
6503 (uri (cran-uri "A3" version))
6504 (sha256
6505 (base32 "017hq9pjsv1h9i7cqk5cfx27as54shlhdsdvr6jkhb8jfkpdb6cw"))))
6506 (properties `((upstream-name . "A3")))
6507 (build-system r-build-system)
6508 (propagated-inputs
6509 `(("r-pbapply" ,r-pbapply)
6510 ("r-xtable" ,r-xtable)))
6511 (home-page "https://cran.r-project.org/web/packages/A3/")
6512 (synopsis "Error metrics for predictive models")
6513 (description
6514 "This package supplies tools for tabulating and analyzing the results of predictive
6515models. The methods employed are applicable to virtually any predictive model
6516and make comparisons between different methodologies straightforward.")
6517 (license license:gpl2+)))
59b55def
RW
6518
6519(define-public r-infotheo
6520 (package
6521 (name "r-infotheo")
6522 (version "1.2.0")
6523 (source
6524 (origin
6525 (method url-fetch)
6526 (uri (cran-uri "infotheo" version))
6527 (sha256
6528 (base32
6529 "18xacczfq3z3xpy434js4nf3l19lczngzd0lq26wh22pvg1yniwv"))))
6530 (build-system r-build-system)
6531 (home-page "http://homepage.meyerp.com/software")
6532 (synopsis "Information-theoretic measures")
6533 (description
6534 "This package implements various measures of information theory based on
6535several entropy estimators.")
6536 (license license:gpl3+)))
9e21f217 6537
6538(define-public r-abcoptim
6539 (package
6540 (name "r-abcoptim")
6541 (version "0.15.0")
6542 (source
6543 (origin
6544 (method url-fetch)
6545 (uri (cran-uri "ABCoptim" version))
6546 (sha256
6547 (base32 "1ih0xk88qhsmpvnxf56041wx5sk8as2f4f2gdnpnwdym9mbr9n4b"))))
6548 (properties `((upstream-name . "ABCoptim")))
6549 (build-system r-build-system)
6550 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
6551 (home-page "https://github.com/gvegayon/ABCoptim/")
6552 (synopsis "Optimization of Artificial Bee Colony algorithm")
6553 (description
6554 "Artificial Bee Colony (ABC) is one of the most recently defined algorithms by Dervis
6555Karaboga in 2005, motivated by the intelligent behavior of honey bees. It is as
6556simple as Particle Swarm Optimization (PSO) and Differential Evolution (DE)
6557algorithms, and uses only common control parameters such as colony size and
6558maximum cycle number. The @code{r-abcoptim} implements the Artificial bee
6559colony optimization algorithm @url{http://mf.erciyes.edu.tr/abc/pub/tr06_2005.pdf}.
6560 This version is a work-in-progress and is written in R code.")
6561 (license license:expat)))
40c10917 6562
6563(define-public r-abcp2
6564 (package
6565 (name "r-abcp2")
6566 (version "1.2")
6567 (source
6568 (origin
6569 (method url-fetch)
6570 (uri (cran-uri "ABCp2" version))
6571 (sha256
6572 (base32 "1s2skkxpzss7c29i8600psgrp0hl46jcrxqrmy2b4db8hc0kcnbx"))))
6573 (properties `((upstream-name . "ABCp2")))
6574 (build-system r-build-system)
6575 (propagated-inputs `(("r-mass" ,r-mass)))
6576 (home-page "https://cran.r-project.org/web/packages/ABCp2/")
6577 (synopsis "Approximate Bayesian Computational Model for Estimating P2")
6578 (description
6579 "This package tests the goodness of fit of a distribution of offspring to the Normal,
6580Poisson, and Gamma distribution and estimates the proportional paternity of the
6581second male (P2) based on the best fit distribution.")
6582 (license license:gpl2)))
cadc10a5 6583
6584(define-public r-abcrf
6585 (package
6586 (name "r-abcrf")
6587 (version "1.7.1")
6588 (source
6589 (origin
6590 (method url-fetch)
6591 (uri (cran-uri "abcrf" version))
6592 (sha256
6593 (base32 "06vy3inikrr9hv36q4djhrgzi9zizdfnhz17wpra8kadmr7qj441"))))
6594 (build-system r-build-system)
6595 (propagated-inputs
6596 `(("r-mass" ,r-mass)
6597 ("r-matrixstats" ,r-matrixstats)
6598 ("r-ranger" ,r-ranger)
6599 ("r-rcpp" ,r-rcpp)
6600 ("r-rcpparmadillo" ,r-rcpparmadillo)
6601 ("r-readr" ,r-readr)
6602 ("r-stringr" ,r-stringr)))
6603 (home-page "https://cran.r-project.org/web/packages/abcrf/")
6604 (synopsis "Approximate bayesian computation via random forests")
6605 (description
6606 "This package performs approximate bayesian computation (ABC) model choice and
6607parameter inference via random forests. This machine learning tool named random
6608forests (RF) can conduct selection among the highly complex models covered by
6609ABC algorithms.")
6610 (license license:gpl2+)))
12da2a5e 6611
6612(define-public r-abctools
6613 (package
6614 (name "r-abctools")
6615 (version "1.1.3")
6616 (source
6617 (origin
6618 (method url-fetch)
6619 (uri (cran-uri "abctools" version))
6620 (sha256
6621 (base32 "07s9dg10i8lsxl73b4n2hynca2fjgb0ykb0dz8c3zv6cgw3cyx97"))))
6622 (build-system r-build-system)
6623 (propagated-inputs
6624 `(("r-abc" ,r-abc)
6625 ("r-abind" ,r-abind)
6626 ("r-hmisc" ,r-hmisc)
6627 ("r-plyr" ,r-plyr)))
6628 (home-page "https://github.com/dennisprangle/abctools/")
6629 (synopsis "Tools for ABC analyses")
6630 (description
6631 "This @code{r-abctools} package provides tools for approximate Bayesian computation
6632including summary statistic selection and assessing coverage. This includes
6633recent dimension reduction algorithms to tune the choice of summary statistics,
6634and coverage methods to tune the choice of threshold.")
6635 (license license:gpl2+)))
77b33e0e 6636
6637(define-public r-ggstance
6638 (package
6639 (name "r-ggstance")
6640 (version "0.3.1")
6641 (source
6642 (origin
6643 (method url-fetch)
6644 (uri (cran-uri "ggstance" version))
6645 (sha256
6646 (base32 "0v7f3xdaaridw6d4jvnsfwxmpjrasvx5vl555wsrn50aah17fkvh"))))
6647 (build-system r-build-system)
6648 (propagated-inputs
6649 `(("r-ggplot2" ,r-ggplot2)
6650 ("r-plyr" ,r-plyr)
6651 ("r-rlang" ,r-rlang)
6652 ("r-withr" ,r-withr)))
6653 (home-page "https://cran.r-project.org/web/packages/ggstance/")
6654 (synopsis "Horizontal and vertical versions of @code{r-ggplot2}")
6655 (description
6656 "This package is a @code{r-ggplot2} extension that provides flipped components:
6657@enumerate
6658@item horizontal versions of @code{r-ggplot2} stats and @code{r-ggplot2} geoms;
6659@item vertical versions of @code{r-ggplot2} positions.
6660@end enumerate")
6661 (license license:gpl3)))
c61f7bc5 6662
6663(define-public r-mosaiccore
6664 (package
6665 (name "r-mosaiccore")
6666 (version "0.6.0")
6667 (source
6668 (origin
6669 (method url-fetch)
6670 (uri (cran-uri "mosaicCore" version))
6671 (sha256
6672 (base32 "1klw97h6lchw1cpcl8s637ikcl428cckmjq0czi7mibh9q9mw72z"))))
6673 (properties `((upstream-name . "mosaicCore")))
6674 (build-system r-build-system)
6675 (propagated-inputs
6676 `(("r-dplyr" ,r-dplyr)
6677 ("r-lazyeval" ,r-lazyeval)
6678 ("r-mass" ,r-mass)
6679 ("r-rlang" ,r-rlang)
6680 ("r-tidyr" ,r-tidyr)))
6681 (home-page "https://github.com/ProjectMOSAIC/mosaicCore/")
6682 (synopsis "Common utilities for mosaic family packages")
6683 (description
6684 "Common utilities used in other Mosaic family packages are collected here.")
6685 (license license:gpl2+)))
214452ff 6686
6687(define-public r-ggformula
6688 (package
6689 (name "r-ggformula")
104e7c3c 6690 (version "0.9.1")
214452ff 6691 (source
6692 (origin
6693 (method url-fetch)
6694 (uri (cran-uri "ggformula" version))
6695 (sha256
104e7c3c 6696 (base32 "01ngx8qh9lhmagng6abx2ky54zi3iyj5bpxlnw59slagwv7l6icx"))))
214452ff 6697 (build-system r-build-system)
6698 (propagated-inputs
6699 `(("r-ggplot2" ,r-ggplot2)
6700 ("r-ggstance" ,r-ggstance)
6701 ("r-magrittr" ,r-magrittr)
6702 ("r-mosaiccore" ,r-mosaiccore)
6703 ("r-rlang" ,r-rlang)
6704 ("r-stringr" ,r-stringr)
6705 ("r-tibble" ,r-tibble)
6706 ("r-tidyr" ,r-tidyr)))
6707 (home-page "https://github.com/ProjectMOSAIC/ggformula/")
6708 (synopsis "Formula interface for the @code{r-ggplot2}")
6709 (description
6710 "The @code{r-ggformula} introduces a family of graphics functions, gf_point(),
6711gf_density(), and so on, bring the formula interface to ggplot(). This captures
6712and extends the excellent simplicity of the lattice-graphics formula interface,
6713while providing the intuitive capabilities of @code{r-ggplot2}.")
6714 (license license:expat)))
2f195b6f 6715
6716(define-public r-mosaicdata
6717 (package
6718 (name "r-mosaicdata")
6719 (version "0.17.0")
6720 (source
6721 (origin
6722 (method url-fetch)
6723 (uri (cran-uri "mosaicData" version))
6724 (sha256
6725 (base32 "04z0mdm52mykqsxsinhmsihn181zf6cw321gayk2rjp7lj7mwdq9"))))
6726 (properties `((upstream-name . "mosaicData")))
6727 (build-system r-build-system)
6728 (home-page "https://cran.r-project.org/web/packages/mosaicData/")
6729 (synopsis "Data sets for project Mosaic")
6730 (description
6731 "This package provides data sets from project Mosaic @url{http://mosaic-web.org}
6732used to teach mathematics, statistics, computation and modeling.")
6733 (license license:gpl2+)))
6c6ce2d0 6734
82acd43c
RW
6735(define-public r-raster
6736 (package
6737 (name "r-raster")
3585740f 6738 (version "2.9-5")
82acd43c
RW
6739 (source
6740 (origin
6741 (method url-fetch)
6742 (uri (cran-uri "raster" version))
6743 (sha256
6744 (base32
3585740f 6745 "0ljrymsp4zzaxdj1l0mw0a6hi88m5h0h920ixfzrg0szbyxqd0yk"))))
82acd43c
RW
6746 (build-system r-build-system)
6747 (propagated-inputs
6748 `(("r-rcpp" ,r-rcpp)
6749 ("r-sp" ,r-sp)))
aff13de3 6750 (home-page "https://www.rspatial.org/")
82acd43c
RW
6751 (synopsis "Geographic data analysis and modeling")
6752 (description
6753 "The package implements basic and high-level functions for reading,
6754writing, manipulating, analyzing and modeling of gridded spatial data.
6755Processing of very large files is supported.")
6756 (license license:gpl3+)))
6757
6c6ce2d0 6758(define-public r-mosaic
6759 (package
6760 (name "r-mosaic")
6761 (version "1.4.0")
6762 (source
6763 (origin
6764 (method url-fetch)
6765 (uri (cran-uri "mosaic" version))
6766 (sha256
6767 (base32 "10jbrg8kli00kfgbh2f67bymm5cnlancc9dplb1j7fl552yjddn2"))))
6768 (build-system r-build-system)
6769 (propagated-inputs
6770 `(("r-broom" ,r-broom)
6771 ("r-dplyr" ,r-dplyr)
6772 ("r-ggdendro" ,r-ggdendro)
6773 ("r-ggformula" ,r-ggformula)
6774 ("r-ggplot2" ,r-ggplot2)
6775 ("r-ggrepel" ,r-ggrepel)
6776 ("r-glue" ,r-glue)
6777 ("r-gridextra" ,r-gridextra)
6778 ("r-lattice" ,r-lattice)
6779 ("r-latticeextra" ,r-latticeextra)
6780 ("r-lazyeval" ,r-lazyeval)
6781 ("r-mass" ,r-mass)
6782 ("r-matrix" ,r-matrix)
6783 ("r-mosaiccore" ,r-mosaiccore)
6784 ("r-mosaicdata" ,r-mosaicdata)
6785 ("r-readr" ,r-readr)
6786 ("r-tidyr" ,r-tidyr)))
6787 (home-page "https://github.com/ProjectMOSAIC/mosaic/")
6788 (synopsis "Mathematics, statistics, and computation teaching utilities")
6789 (description
6790 "This package contain data sets and utilities from
6791@url{http://mosaic-web.org, Project MOSAIC} used to teach mathematics,
6792statistics, computation and modeling. Project MOSAIC is a community of
6793educators working to tie together aspects of quantitative work that students
6794in science, technology, engineering and mathematics will need in their
6795professional lives, but which are usually taught in isolation, if at all.")
6796 (license license:gpl2+)))
cbb0edd1 6797
6798(define-public r-abd
6799 (package
6800 (name "r-abd")
6801 (version "0.2-8")
6802 (source
6803 (origin
6804 (method url-fetch)
6805 (uri (cran-uri "abd" version))
6806 (sha256
6807 (base32 "191gspqzdv573vaw624ri0f5cm6v4j524bjs74d4a1hn3kn6r9b7"))))
6808 (build-system r-build-system)
6809 (propagated-inputs
6810 `(("r-lattice" ,r-lattice)
6811 ("r-mosaic" ,r-mosaic)
6812 ("r-nlme" ,r-nlme)))
6813 (home-page "https://cran.r-project.org/web/packages/abd/")
6814 (synopsis "Analysis of biological data")
6815 (description
6816 "The @code{r-abd} package contains data sets and sample code for the Analysis of
6817biological data by Michael Whitlock and Dolph Schluter.")
6818 (license license:gpl2)))
01af264d
MIP
6819
6820(define-public r-svgui
6821 (package
6822 (name "r-svgui")
6823 (version "1.0.0")
6824 (source
6825 (origin
6826 (method url-fetch)
6827 (uri (cran-uri "svGUI" version))
6828 (sha256
6829 (base32 "1r7ab0p4yr8q03gj02hmj7k1ghksgkg4nx750c0ajfs2q9y1dxfc"))))
6830 (properties `((upstream-name . "svGUI")))
6831 (build-system r-build-system)
6832 (home-page "https://github.com/SciViews/svGUI/")
6833 (synopsis "Functions for managing GUI clients in R")
6834 (description
6835 "The SciViews @code{svGUI} package eases the management of Graphical User
6836Interfaces (GUI) in R. It is independent from any particular GUI widgets. It
6837centralizes info about GUI elements currently used, and it dispatches GUI
6838calls to the particular toolkits in use in function of the context.")
6839 (license license:gpl2)))
d1ca3d72 6840
6841(define-public r-svdialogs
6842 (package
6843 (name "r-svdialogs")
6844 (version "1.0.0")
6845 (source
6846 (origin
6847 (method url-fetch)
6848 (uri (cran-uri "svDialogs" version))
6849 (sha256
6850 (base32 "0xqppydfawnwk84kb5qiybwbcmv38vn4imgz01mz2pnq4xb80p97"))))
6851 (properties `((upstream-name . "svDialogs")))
6852 (build-system r-build-system)
6853 (inputs
6854 `(("yad" ,yad)
6855 ("zenity" ,zenity)))
6856 (propagated-inputs
6857 `(("r-rstudioapi" ,r-rstudioapi)
6858 ("r-svgui" ,r-svgui)))
6859 (home-page "https://github.com/SciViews/svDialogs/")
6860 (synopsis "Portable dialog boxes")
6861 (description
6862 "This package helps to construct standard dialog boxes for your GUI, including
6863message boxes, input boxes, list, file or directory selection, and others. In
6864case R cannot display GUI dialog boxes, a simpler command line version of these
6865interactive elements is also provided as a fallback solution.")
6866 (license license:gpl2)))
3cadd3ce 6867
6868(define-public r-abe
6869 (package
6870 (name "r-abe")
6871 (version "3.0.1")
6872 (source
6873 (origin
6874 (method url-fetch)
6875 (uri (cran-uri "abe" version))
6876 (sha256
6877 (base32
6878 "1f19h3xzzmjhvwc1rrb8z0rai3ip03y4gdi2gg9bfr5sg2nfklk6"))))
6879 (build-system r-build-system)
6880 (home-page "https://cran.r-project.org/web/packages/abe/")
6881 (synopsis "Augmented backward elimination")
6882 (description
6883 "This package performs augmented backward elimination and checks the
6884stability of the obtained model. Augmented backward elimination combines
6885significance or information based criteria with the change in estimate to
6886either select the optimal model for prediction purposes or to serve as a tool
6887to obtain a practically sound, highly interpretable model.")
6888 (license license:gpl2+)))
ef26400b 6889
6890(define-public r-abf2
6891 (package
6892 (name "r-abf2")
6893 (version "0.7-1")
6894 (source
6895 (origin
6896 (method url-fetch)
6897 (uri (cran-uri "abf2" version))
6898 (sha256
6899 (base32 "0d65mc1w4pbiv7xaqzdlw1bfsxf25587rv597hh41vs0j0zlfpxx"))))
6900 (build-system r-build-system)
6901 (home-page "https://cran.r-project.org/web/packages/abf2/")
6902 (synopsis "Load gap-free axon @code{r-abf2} files")
6903 (description
6904 "This package loads electrophysiology data from ABF2 files, as created by
6905Axon Instruments/Molecular Devices software. Only files recorded in gap-free
6906mode are currently supported.")
6907 (license license:artistic2.0)))
1efcd0f1 6908
6909(define-public r-abhgenotyper
6910 (package
6911 (name "r-abhgenotyper")
6912 (version "1.0.1")
6913 (source
6914 (origin
6915 (method url-fetch)
6916 (uri (cran-uri "ABHgenotypeR" version))
6917 (sha256
6918 (base32 "08cpmnaaxsm5c5bjifnfxdlvg5inrf13biqpcl2yq5zpqjmiki0l"))))
6919 (properties `((upstream-name . "ABHgenotypeR")))
6920 (build-system r-build-system)
6921 (propagated-inputs
6922 `(("r-ggplot2" ,r-ggplot2)
6923 ("r-reshape2" ,r-reshape2)))
6924 (home-page "https://github.com/StefanReuscher/ABHgenotypeR/")
6925 (synopsis "Visualize and manipulate ABH genotypes")
6926 (description
6927 "The @code{r-abhgenotyper} package provides simple imputation,
6928error-correction and plotting capacities for genotype data. The package is
6929supposed to serve as an intermediate but independent analysis tool between the
6930TASSEL GBS pipeline and the @code{r-qtl} package. It provides functionalities
6931not found in either TASSEL or @code{r-qtl} in addition to visualization of
6932genotypes as \"graphical genotypes\".")
6933 (license license:gpl3)))
ebb3cdb1 6934
6e8b38d3
RW
6935(define-public r-furrr
6936 (package
6937 (name "r-furrr")
6938 (version "0.1.0")
6939 (source
6940 (origin
6941 (method url-fetch)
6942 (uri (cran-uri "furrr" version))
6943 (sha256
6944 (base32
6945 "1ld9aa9hydna94hgm6p91zjbfv1dz1vsgchjlpknkg6irbvkfafx"))))
6946 (build-system r-build-system)
6947 (propagated-inputs
6948 `(("r-future" ,r-future)
6949 ("r-globals" ,r-globals)
6950 ("r-purrr" ,r-purrr)
6951 ("r-rlang" ,r-rlang)))
6952 (home-page "https://github.com/DavisVaughan/furrr")
6953 (synopsis "Apply mapping functions in parallel using futures")
6954 (description
6955 "This package provides implementations of the family of @code{map()}
6956functions from the @code{purrr} package that can be resolved using any
6957@code{future}-supported backend, e.g. parallel on the local machine or
6958distributed on a compute cluster.")
6959 (license license:lgpl2.1+)))
6960
ebb3cdb1 6961(define-public r-abjutils
6962 (package
6963 (name "r-abjutils")
3d5bcae0 6964 (version "0.2.3")
ebb3cdb1 6965 (source
6966 (origin
6967 (method url-fetch)
6968 (uri (cran-uri "abjutils" version))
6969 (sha256
3d5bcae0 6970 (base32 "0n4zps65y3zg0gfzlv97w91si52a9izkncirskbkj5x9hk0nhxcv"))))
ebb3cdb1 6971 (build-system r-build-system)
6972 (propagated-inputs
6973 `(("r-devtools" ,r-devtools)
6974 ("r-dplyr" ,r-dplyr)
3d5bcae0
RW
6975 ("r-furrr" ,r-furrr)
6976 ("r-future" ,r-future)
ebb3cdb1 6977 ("r-glue" ,r-glue)
6978 ("r-httr" ,r-httr)
6979 ("r-magrittr" ,r-magrittr)
ebb3cdb1 6980 ("r-progress" ,r-progress)
6981 ("r-purrr" ,r-purrr)
3d5bcae0
RW
6982 ("r-readr" ,r-readr)
6983 ("r-rlang" ,r-rlang)
ebb3cdb1 6984 ("r-rstudioapi" ,r-rstudioapi)
6985 ("r-scales" ,r-scales)
6986 ("r-stringi" ,r-stringi)
6987 ("r-stringr" ,r-stringr)
6988 ("r-tibble" ,r-tibble)
6989 ("r-tidyr" ,r-tidyr)))
6990 (home-page "https://github.com/abjur/abjutils/")
6991 (synopsis "Collection of tools for jurimetrical analysis")
6992 (description
6993 "This package implements general purpose tools, such as functions for
6994sampling and basic manipulation of Brazilian lawsuits identification number.
6995It also implements functions for text cleaning, such as accentuation
6996removal.")
6997 (license license:expat)))
b6afe7b7 6998
6999(define-public r-abnormality
7000 (package
7001 (name "r-abnormality")
7002 (version "0.1.0")
7003 (source
7004 (origin
7005 (method url-fetch)
7006 (uri (cran-uri "abnormality" version))
7007 (sha256
7008 (base32 "1fzfskl9akl06nliy8hkv2a0pznpj8pwcypg3gj5r2nzvr3kan9v"))))
7009 (build-system r-build-system)
7010 (propagated-inputs
7011 `(("r-mass" ,r-mass)
7012 ("r-matrix" ,r-matrix)))
7013 (home-page "https://cran.r-project.org/web/packages/abnormality/")
7014 (synopsis "Measure a subject's abnormality with respect to a reference population")
7015 (description
7016 "This package contains functions to implement the methodology and
7017considerations laid out by Marks et al. in the article \"Measuring abnormality
7018in high dimensional spaces: applications in biomechanical gait analysis\".
7019Using high-dimensional datasets to measure a subject's overall level of
7020abnormality as compared to a reference population is often needed in outcomes
7021research.")
7022 (license license:expat)))
016cabf7 7023
7024(define-public r-abodoutlier
7025 (package
7026 (name "r-abodoutlier")
7027 (version "0.1")
7028 (source
7029 (origin
7030 (method url-fetch)
7031 (uri (cran-uri "abodOutlier" version))
7032 (sha256
7033 (base32 "1pvhgxmh23br84r0fbmv7g53z2427birdja96a67vqgz18r3fdvj"))))
7034 (properties `((upstream-name . "abodOutlier")))
7035 (build-system r-build-system)
7036 (propagated-inputs
7037 `(("r-cluster" ,r-cluster)))
7038 (home-page "https://cran.r-project.org/web/packages/abodOutlier/")
7039 (synopsis "Angle-based outlier detection")
7040 (description
7041 "This package performs angle-based outlier detection on a given data
7042frame. It offers three methods to process data:
7043@enumerate
7044@item full but slow implementation using all the data that has cubic
7045 complexity;
7046@item a fully randomized method;
7047@item a method using k-nearest neighbours.
7048@end enumerate
7049These algorithms are well suited for high dimensional data outlier
7050detection.")
7051 (license license:expat)))
03c95f04 7052
7053(define-public r-abps
7054 (package
7055 (name "r-abps")
bec74196 7056 (version "0.3")
03c95f04 7057 (source
7058 (origin
7059 (method url-fetch)
7060 (uri (cran-uri "ABPS" version))
7061 (sha256
bec74196 7062 (base32 "0n3f66nmfi5v94il1mxy026mi84w01ph2aljk60vn3mrz8kwf2ll"))))
03c95f04 7063 (properties `((upstream-name . "ABPS")))
7064 (build-system r-build-system)
7065 (propagated-inputs `(("r-kernlab" ,r-kernlab)))
7066 (home-page "https://cran.r-project.org/web/packages/ABPS/")
7067 (synopsis "Abnormal blood profile score to detect blood doping")
7068 (description
7069 "This package offers an implementation of the @dfn{Abnormal blood profile score} (ABPS).
7070The ABPS is a part of the Athlete biological passport program of the World
7071anti-doping agency, which combines several blood parameters into a single
7072score in order to detect blood doping. The package also contains functions to
7073calculate other scores used in anti-doping programs, such as the ratio of
7074hemoglobin to reticulocytes (OFF-score), as well as example data.")
7075 (license license:gpl2+)))
26358ac5
RW
7076
7077(define-public r-parmigene
7078 (package
7079 (name "r-parmigene")
7080 (version "1.0.2")
7081 (source
7082 (origin
7083 (method url-fetch)
7084 (uri (cran-uri "parmigene" version))
7085 (sha256
7086 (base32
7087 "1fsm6pkr17jcbzkj1hbn91jf890fviqk1lq6ls8pihsdgah1zb4d"))))
7088 (build-system r-build-system)
7089 (home-page "https://cran.r-project.org/web/packages/parmigene/")
7090 (synopsis "Mutual information estimation for gene network reconstruction")
7091 (description
7092 "This package provides a parallel estimation of the mutual information
7093based on entropy estimates from k-nearest neighbors distances and algorithms
7094for the reconstruction of gene regulatory networks.")
7095 (license license:agpl3+)))
b2bf43b2 7096
7097(define-public r-pscl
7098 (package
7099 (name "r-pscl")
7100 (version "1.5.2")
7101 (source
7102 (origin
7103 (method url-fetch)
7104 (uri (cran-uri "pscl" version))
7105 (sha256
7106 (base32 "1phf3awsfr4ncqfqzin5m1pz0g7y1zhbcm2sz7358ssw914fd7rc"))))
7107 (build-system r-build-system)
7108 (propagated-inputs
7109 `(("r-mass" ,r-mass)))
7110 (home-page "https://github.com/atahk/pscl/")
7111 (synopsis "Political science computational laboratory")
7112 (description
7113 "The @code{pscl} is an R package providing classes and methods for:
7114@enumerate
7115@item Bayesian analysis of roll call data (item-response models);
7116@item elementary Bayesian statistics;
7117@item maximum likelihood estimation of zero-inflated and hurdle models for count
7118data;
7119@item utility functions.
7120@end enumerate")
7121 (license license:gpl2)))
e710d1a4 7122
7123(define-public r-accelmissing
7124 (package
7125 (name "r-accelmissing")
7126 (version "1.4")
7127 (source
7128 (origin
7129 (method url-fetch)
7130 (uri (cran-uri "accelmissing" version))
7131 (sha256
7132 (base32 "1nql9inx6azdzi3z4sfm2vdml2mms6krl8wzlf1dn1c97ahn57fy"))))
7133 (build-system r-build-system)
7134 (propagated-inputs
7135 `(("r-mice" ,r-mice)
7136 ("r-pscl" ,r-pscl)))
7137 (home-page "https://cran.r-project.org/web/packages/accelmissing/")
7138 (synopsis "Missing value imputation for accelerometer data")
7139 (description
7140 "This package provides a statistical method to impute the missing values in
7141accelerometer data. The methodology includes both parametric and
7142semi-parametric multiple imputations under the zero-inflated Poisson lognormal
7143model. It also provides multiple functions to preprocess the accelerometer data
7144previous to the missing data imputation. These include detecting the wearing
7145and the non-wearing time, selecting valid days and subjects, and creating plots.")
7146 (license license:gpl2+)))
f359b115 7147
7148(define-public r-mhsmm
7149 (package
7150 (name "r-mhsmm")
7151 (version "0.4.16")
7152 (source
7153 (origin
7154 (method url-fetch)
7155 (uri (cran-uri "mhsmm" version))
7156 (sha256
7157 (base32 "009dj0zkj1zry7jr9hf4cknb686z50a2l967if64xm0dvjmp7dgs"))))
7158 (build-system r-build-system)
7159 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
7160 (home-page "https://github.com/jaredo/mhsmm/")
7161 (synopsis "Inference for hidden Markov and semi-Markov models")
7162 (description
7163 "The @code{r-mhsmm} package implements estimation and prediction methods for
7164hidden Markov and semi-Markov models for multiple observation sequences. Such
7165techniques are of interest when observed data is thought to be dependent on some
7166unobserved (or hidden) state. Also, this package is suitable for equidistant
7167time series data, with multivariate and/or missing data. Allows user defined
7168emission distributions.")
7169 (license license:gpl2+)))
16c5285a 7170
7171(define-public r-nleqslv
7172 (package
7173 (name "r-nleqslv")
7174 (version "3.3.2")
7175 (source
7176 (origin
7177 (method url-fetch)
7178 (uri (cran-uri "nleqslv" version))
7179 (sha256
7180 (base32 "1v9znvncyigw9r25wx2ma0b7ib179b488dl0qsrhp5zrcz7mcjgm"))))
7181 (build-system r-build-system)
7182 (native-inputs `(("gfortran" ,gfortran)))
7183 (home-page "https://cran.r-project.org/web/packages/nleqslv/")
7184 (synopsis "Solve systems of nonlinear equations")
7185 (description
7186 "The @code{r-nleqslv} package solves a system of nonlinear equations using a
7187Broyden or a Newton method with a choice of global strategies such as line
7188search and trust region. There are options for using a numerical or user
7189supplied Jacobian, for specifying a banded numerical Jacobian and for allowing a
7190singular or ill-conditioned Jacobian.")
7191 (license license:gpl2+)))
63ec2c50 7192
7193(define-public r-physicalactivity
7194 (package
7195 (name "r-physicalactivity")
7196 (version "0.2-2")
7197 (source
7198 (origin
7199 (method url-fetch)
7200 (uri (cran-uri "PhysicalActivity" version))
7201 (sha256
7202 (base32 "14z6plgwyr46vs9m997rvlz8sdglfs9g087an8668zqkzzs2w4ln"))))
7203 (properties
7204 `((upstream-name . "PhysicalActivity")))
7205 (build-system r-build-system)
7206 (home-page "https://cran.r-project.org/web/packages/PhysicalActivity/")
7207 (synopsis "Procesing accelerometer data for physical activity measurement")
7208 (description
7209 "This @code{r-physicalactivity} package provides a function @code{wearingMarking}
7210for classification of monitor wear and nonwear time intervals in accelerometer
7211data collected to assess physical activity. The package also contains functions
7212for making plots of accelerometer data and obtaining the summary of various
7213information including daily monitor wear time and the mean monitor wear time
7214during valid days. The revised package version 0.2-1 improved the functions
7215regarding speed, robustness and add better support for time zones and daylight
7216saving. In addition, several functions were added:
7217@enumerate
7218@item the @code{markDelivery} can classify days for ActiGraph delivery by mail;
7219@item the @code{markPAI} can categorize physical activity intensity level based
7220on user-defined cut-points of accelerometer counts.
7221@end enumerate
7222 It also supports importing ActiGraph (AGD) files with @code{readActigraph} and
7223@code{queryActigraph} functions.")
7224 (license license:gpl3+)))
f95d4542 7225
7226(define-public r-acc
7227 (package
7228 (name "r-acc")
7229 (version "1.3.3")
7230 (source
7231 (origin
7232 (method url-fetch)
7233 (uri (cran-uri "acc" version))
7234 (sha256
7235 (base32 "1ii2vm47djxbixa75h690q1s2f9m9x6i8nkygik93j6dayr6kr1m"))))
7236 (build-system r-build-system)
7237 (propagated-inputs
7238 `(("r-circlize" ,r-circlize)
7239 ("r-dbi" ,r-dbi)
7240 ("r-ggplot2" ,r-ggplot2)
7241 ("r-iterators" ,r-iterators)
7242 ("r-mhsmm" ,r-mhsmm)
7243 ("r-nleqslv" ,r-nleqslv)
7244 ("r-physicalactivity" ,r-physicalactivity)
7245 ("r-plyr" ,r-plyr)
7246 ("r-r-utils" ,r-r-utils)
7247 ("r-rcpp" ,r-rcpp)
7248 ("r-rcpparmadillo" ,r-rcpparmadillo)
7249 ("r-rsqlite" ,r-rsqlite)
7250 ("r-zoo" ,r-zoo)))
7251 (home-page "https://cran.r-project.org/web/packages/acc/")
7252 (synopsis "Exploring accelerometer data")
7253 (description
7254 "This package processes accelerometer data from uni-axial and tri-axial devices
7255and generates data summaries. Also, includes functions to plot, analyze, and
7256simulate accelerometer data.")
7257 (license license:gpl2+)))
f6890c08 7258
7259(define-public r-rbenchmark
7260 (package
7261 (name "r-rbenchmark")
7262 (version "1.0.0")
7263 (source
7264 (origin
7265 (method url-fetch)
7266 (uri (cran-uri "rbenchmark" version))
7267 (sha256
7268 (base32 "010fn3qwnk2k411cbqyvra1d12c3bhhl3spzm8kxffmirj4p2al9"))))
7269 (build-system r-build-system)
7270 (home-page "https://cran.r-project.org/web/packages/rbenchmark/")
7271 (synopsis "Benchmarking routine for R")
7272 (description
7273 "This @code{r-rbenchmark} package is inspired by the Perl module Benchmark,
7274and is intended to facilitate benchmarking of arbitrary R code. The library
7275consists of just one function, benchmark, which is a simple wrapper around
7276system.time. Given a specification of the benchmarking process (counts of
7277replications, evaluation environment) and an arbitrary number of expressions,
7278benchmark evaluates each of the expressions in the specified environment,
7279replicating the evaluation as many times as specified, and returning the results
7280conveniently wrapped into a data frame.")
7281 (license license:gpl2+)))
7282
9c4f118b
RW
7283(define-public r-mitools
7284 (package
7285 (name "r-mitools")
7286 (version "2.4")
7287 (source
7288 (origin
7289 (method url-fetch)
7290 (uri (cran-uri "mitools" version))
7291 (sha256
7292 (base32
7293 "0c2x2n1p53lcw0vx4vmy5j7m2f95i7g2iwbryl89imr99rvz617j"))))
7294 (build-system r-build-system)
7295 (propagated-inputs `(("r-dbi" ,r-dbi)))
7296 (home-page "https://cran.r-project.org/web/packages/mitools/")
7297 (synopsis "Tools for multiple imputation of missing data")
7298 (description
7299 "This package provides tools to perform analyses and combine results from
7300multiple-imputation datasets.")
7301 (license license:gpl2)))
7302
dab3e92c
RW
7303(define-public r-magick
7304 (package
7305 (name "r-magick")
7306 (version "2.0")
7307 (source
7308 (origin
7309 (method url-fetch)
7310 (uri (cran-uri "magick" version))
7311 (sha256
7312 (base32
7313 "18y465325mhf48x2jn3jz9khwq1z2aj13wfbdkv8k3hln1sd572m"))))
7314 (build-system r-build-system)
7315 (inputs
7316 `(("imagemagick" ,imagemagick)
7317 ("zlib" ,zlib)))
7318 (propagated-inputs
7319 `(("r-curl" ,r-curl)
7320 ("r-magrittr" ,r-magrittr)
7321 ("r-rcpp" ,r-rcpp)))
7322 (native-inputs
7323 `(("pkg-config" ,pkg-config)))
7324 (home-page "https://github.com/ropensci/magick")
7325 (synopsis "Advanced graphics and image-processing in R")
7326 (description
7327 "This package provides bindings to ImageMagick, a comprehensive image
7328processing library. It supports many common formats (PNG, JPEG, TIFF, PDF,
7329etc.) and manipulations (rotate, scale, crop, trim, flip, blur, etc). All
7330operations are vectorized via the Magick++ STL meaning they operate either on
7331a single frame or a series of frames for working with layers, collages, or
7332animation. In RStudio, images are automatically previewed when printed to the
7333console, resulting in an interactive editing environment.")
7334 (license license:expat)))
7335
f0bff698
RW
7336(define-public r-survey
7337 (package
7338 (name "r-survey")
7b18fac4 7339 (version "3.36")
f0bff698
RW
7340 (source
7341 (origin
7342 (method url-fetch)
7343 (uri (cran-uri "survey" version))
7344 (sha256
7345 (base32
7b18fac4 7346 "0xclsy4ram4k48vzh5m5bpmknnpwxnss85v73s4czsjj5ffjxwwh"))))
f0bff698
RW
7347 (build-system r-build-system)
7348 (propagated-inputs
7349 `(("r-lattice" ,r-lattice)
7350 ("r-matrix" ,r-matrix)
7351 ("r-minqa" ,r-minqa)
7b18fac4 7352 ("r-mitools" ,r-mitools)
f0bff698
RW
7353 ("r-numderiv" ,r-numderiv)
7354 ("r-survival" ,r-survival)))
7355 (home-page "http://r-survey.r-forge.r-project.org/survey/")
7356 (synopsis "Analysis of complex survey samples")
7357 (description
7358 "This package provides tools for the analysis of complex survey samples.
7359The provided features include: summary statistics, two-sample tests, rank
7360tests, generalised linear models, cumulative link models, Cox models,
7361loglinear models, and general maximum pseudolikelihood estimation for
7362multistage stratified, cluster-sampled, unequally weighted survey samples;
7363variances by Taylor series linearisation or replicate weights;
7364post-stratification, calibration, and raking; two-phase subsampling designs;
7365graphics; PPS sampling without replacement; principal components, and factor
7366analysis.")
7367 ;; Either version of the GPL.
7368 (license (list license:gpl2 license:gpl3))))
7369
7af2dd38 7370(define-public r-dvmisc
7371 (package
7372 (name "r-dvmisc")
a6a87db8 7373 (version "1.1.3")
7af2dd38 7374 (source
7375 (origin
7376 (method url-fetch)
7377 (uri (cran-uri "dvmisc" version))
7378 (sha256
a6a87db8 7379 (base32 "0x391pxg5mqgp5xxc8qwhwxky8ds7d9gr9iwmsb12c92kxfk00bv"))))
7af2dd38 7380 (build-system r-build-system)
7381 (propagated-inputs
a6a87db8
RW
7382 `(("r-cubature" ,r-cubature)
7383 ("r-data-table" ,r-data-table)
7384 ("r-dplyr" ,r-dplyr)
7385 ("r-ggplot2" ,r-ggplot2)
7386 ("r-mass" ,r-mass)
7387 ("r-mvtnorm" ,r-mvtnorm)
7388 ("r-pracma" ,r-pracma)
7389 ("r-purrr" ,r-purrr)
7af2dd38 7390 ("r-rbenchmark" ,r-rbenchmark)
a6a87db8
RW
7391 ("r-rcpp" ,r-rcpp)
7392 ("r-survey" ,r-survey)))
7af2dd38 7393 (home-page "https://cran.r-project.org/web/packages/dvmisc/")
7394 (synopsis "Faster computation of common statistics and miscellaneous functions")
7395 (description
7396 "This package implements faster versions of base R functions (e.g. mean, standard
7397deviation, covariance, weighted mean), mostly written in C++, along with
7398miscellaneous functions for various purposes (e.g. create the histogram with
7399fitted probability density function or probability mass function curve, create
7400the body mass index groups, assess the linearity assumption in logistic
7401regression).")
7402 (license license:gpl2)))
d8d8844e 7403
7404(define-public r-accelerometry
7405 (package
7406 (name "r-accelerometry")
7407 (version "3.1.2")
7408 (source
7409 (origin
7410 (method url-fetch)
7411 (uri (cran-uri "accelerometry" version))
7412 (sha256
7413 (base32 "13xzrwhr4i1nj9c8vrmfdg2rmrc8n446iihcyxmy99sm99hpzyip"))))
7414 (build-system r-build-system)
7415 (propagated-inputs
7416 `(("r-dvmisc" ,r-dvmisc)
7417 ("r-rcpp" ,r-rcpp)))
7418 (home-page "https://cran.r-project.org/web/packages/accelerometry/")
7419 (synopsis "Functions for processing accelerometer data")
7420 (description
7421 "This package provides a collection of functions that perform operations on
7422time-series accelerometer data, such as identify the non-wear time, flag minutes
7423that are part of an activity bout, and find the maximum 10-minute average count
7424value. The functions are generally very flexible, allowing for a variety of
7425algorithms to be implemented.")
7426 (license license:gpl3)))
1ddb2b5c 7427
7428(define-public r-absim
7429 (package
7430 (name "r-absim")
7431 (version "0.2.6")
7432 (source
7433 (origin
7434 (method url-fetch)
7435 (uri (cran-uri "AbSim" version))
7436 (sha256
7437 (base32 "16ddjk8b6xw80ch4jis1y751i9561wdxh0gifbf15qiz3vjckq8m"))))
7438 (properties `((upstream-name . "AbSim")))
7439 (build-system r-build-system)
7440 (propagated-inputs
7441 `(("r-ape" ,r-ape)
7442 ("r-powerlaw" ,r-powerlaw)))
7443 (home-page "https://cran.r-project.org/web/packages/AbSim/")
7444 (synopsis "Time resolved simulations of antibody repertoires")
7445 (description
7446 "This package provides simulation methods for the evolution of antibody repertoires.
7447 The heavy and light chain variable region of both human and C57BL/6 mice can
7448be simulated in a time-dependent fashion. Both single lineages using one set of
7449V-, D-, and J-genes or full repertoires can be simulated. The algorithm begins
7450with an initial V-D-J recombination event, starting the first phylogenetic tree.
7451 Upon completion, the main loop of the algorithm begins, with each iteration
7452representing one simulated time step. Various mutation events are possible at
7453each time step, contributing to a diverse final repertoire.")
7454 (license license:gpl2)))
c2ffc4fb 7455
b5a31005
MIP
7456(define-public r-quic
7457 (package
7458 (name "r-quic")
7459 (version "1.1")
7460 (source
7461 (origin
7462 (method url-fetch)
7463 (uri (cran-uri "QUIC" version))
7464 (sha256
7465 (base32 "021bp9xbaih60qmss015ycblbv6d1dvb1z89y93zpqqnc2qhpv3c"))))
7466 (properties `((upstream-name . "QUIC")))
7467 (build-system r-build-system)
7468 (home-page "https://www.cs.utexas.edu/users/sustik/QUIC/")
7469 (synopsis "Regularized sparse inverse covariance matrix estimation")
7470 (description
7471 "This package implements the regularized Gaussian maximum likelihood
7472estimation of the inverse of a covariance matrix. It uses Newton's method and
7473coordinate descent to solve the regularized inverse covariance matrix
7474estimation problem.")
7475 ;; The project home page states that the release is under GPLv3 or later.
7476 ;; The CRAN page only says GPL-3.
7477 (license license:gpl3+)))
7478
b509df82
MIP
7479(define-public r-abundant
7480 (package
7481 (name "r-abundant")
7482 (version "1.1")
7483 (source
7484 (origin
7485 (method url-fetch)
7486 (uri (cran-uri "abundant" version))
7487 (sha256
7488 (base32 "1m76qdmqvwpgm0sihazi2dna7cgsz9rljal18vgffb5wamwmg9k7"))))
7489 (build-system r-build-system)
7490 (propagated-inputs
7491 `(("r-quic" ,r-quic)))
7492 (home-page "https://cran.r-project.org/web/packages/abundant/")
7493 (synopsis "Abundant regression and high-dimensional principal fitted components")
7494 (description
7495 "This package provides tools to fit and predict with the high-dimensional
7496principal fitted components model. This model is described by Cook, Forzani,
7497and Rothman (2012) @url{doi:10.1214/11-AOS962}.")
7498 ;; The DESCRIPTION file states GPL-2, but since it directly depends on a
7499 ;; GPLv3+ package (QUIC) this likely means GPLv2+.
7500 (license license:gpl2+)))
7501
c2ffc4fb 7502(define-public r-ac3net
7503 (package
7504 (name "r-ac3net")
7505 (version "1.2.2")
7506 (source
7507 (origin
7508 (method url-fetch)
7509 (uri (cran-uri "Ac3net" version))
7510 (sha256
7511 (base32 "1ns4n0xxz6p34c11bj0k7nzgmyqr9mis2b0g5nfz37dbikndyqyz"))))
7512 (properties `((upstream-name . "Ac3net")))
7513 (build-system r-build-system)
7514 (propagated-inputs
7515 `(("r-data-table" ,r-data-table)))
7516 (home-page "https://cran.r-project.org/web/packages/Ac3net/")
7517 (synopsis "Inferring directional conservative causal core gene networks")
7518 (description "This package infers directional Conservative causal core
7519(gene) networks (C3NET). This is a version of the algorithm C3NET with
7520directional network.")
7521 (license license:gpl3+)))
da333859 7522
7523(define-public r-aca
7524 (package
7525 (name "r-aca")
7526 (version "1.1")
7527 (source
7528 (origin
7529 (method url-fetch)
7530 (uri (cran-uri "ACA" version))
7531 (sha256
7532 (base32 "1i3hm27nvnkvc39xlh0d1blq8q0q02czmvgi3cazmjx3jvxay0vq"))))
7533 (properties `((upstream-name . "ACA")))
7534 (build-system r-build-system)
7535 (home-page "https://cran.r-project.org/web/packages/ACA/")
7536 (synopsis "Abrupt change-point or aberration detection in point series")
7537 (description
7538 "This package offers an interactive function for the detection of breakpoints in
7539series.")
7540 ;; Any version of the GPL
7541 (license (list license:gpl2+ license:gpl3+))))
9c1c2108 7542
7543(define-public r-acceptancesampling
7544 (package
7545 (name "r-acceptancesampling")
ddd168ff 7546 (version "1.0-6")
9c1c2108 7547 (source
7548 (origin
7549 (method url-fetch)
7550 (uri (cran-uri "AcceptanceSampling" version))
7551 (sha256
ddd168ff 7552 (base32 "1z3rmln63ki2kik9kinbwr9qhr32ggbmh4mm3xqy6di119n47ca9"))))
9c1c2108 7553 (properties
7554 `((upstream-name . "AcceptanceSampling")))
7555 (build-system r-build-system)
7556 (home-page "https://cran.r-project.org/web/packages/AcceptanceSampling/")
7557 (synopsis "Creation and evaluation of acceptance sampling plans")
7558 (description
7559 "This @code{r-acceptancesampling} provides functionality for creating and evaluating
7560acceptance sampling plans. Acceptance sampling is a methodology commonly used
7561in quality control and improvement. International standards of acceptance
7562sampling provide sampling plans for specific circumstances. The aim of this
7563package is to provide an easy-to-use interface to visualize single, double or
7564multiple sampling plans. In addition, methods have been provided to enable the
7565user to assess sampling plans against pre-specified levels of performance, as
7566measured by the probability of acceptance for a given level of quality in the
7567lot.")
7568 (license license:gpl3+)))
7569
63781c57
LF
7570(define-public r-acclma
7571 (package
7572 (name "r-acclma")
7573 (version "1.0")
7574 (source
7575 (origin
7576 (method url-fetch)
7577 (uri (cran-uri "ACCLMA" version))
7578 (sha256
7579 (base32 "1na27sp18fq12gp6vxgqw1ffsz2yi1d8xvrxbrzx5g1kqxrayy0v"))))
7580 (properties `((upstream-name . "ACCLMA")))
7581 (build-system r-build-system)
7582 (home-page "https://cran.r-project.org/web/packages/ACCLMA/")
7583 (synopsis "ACC & LMA graph plotting")
7584 (description
666fb288
LC
7585 "This package contains a function that imports data from a @acronym{CSV,
7586Comma-Separated Values} file, or uses manually entered data from the format (x,
7587y, weight) and plots the appropriate @acronym{ACC, Absolute Concentration
7588Curve} vs @acronym{LOI, Line of Independence} graph and
7589@acronym{LMA, @acronym{LOI} Minus @acronym{ACC}} graph. The main
7590function is @code{plotLMA} (source file, header) that takes a data set and plots the
63781c57
LF
7591appropriate @acronym{LMA} and @acronym{ACC} graphs. If no source file (a
7592string) was passed, a manual data entry window is opened. The header parameter
7593indicates by TRUE/FALSE (false by default) if the source @acronym{CSV} file has
7594a header row or not. The dataset should contain only one independent variable
7595(x) and one dependent variable (y) and can contain a weight for each
7596observation.")
7597 (license license:gpl2)))
b55697fb
LL
7598
7599(define-public r-aspi
7600 (package
7601 (name "r-aspi")
7602 (version "0.2.0")
7603 (source
7604 (origin
7605 (method url-fetch)
7606 (uri (cran-uri "aspi" version))
7607 (sha256
7608 (base32 "0rhvxw243vvdv3hxa6pi343gcjc2cbxq1jzqirl9k1l4i3897l87"))))
7609 (build-system r-build-system)
7610 (home-page
7611 "https://cran.r-project.org/web/packages/aspi/")
7612 (synopsis
7613 "Analysis of symmetry of parasitic infections")
7614 (description
7615 "This package provides tools for the analysis and visualization of bilateral
7616 asymmetry in parasitic infections.")
7617 (license license:gpl3+)))
302db585
RW
7618
7619(define-public r-sandwich
7620 (package
7621 (name "r-sandwich")
0eb306d3 7622 (version "2.5-1")
302db585
RW
7623 (source
7624 (origin
7625 (method url-fetch)
7626 (uri (cran-uri "sandwich" version))
7627 (sha256
7628 (base32
0eb306d3 7629 "1mk685b9wq7k566pbml52rj96i5h6b3vf215k9picgmq296nzvyv"))))
302db585
RW
7630 (build-system r-build-system)
7631 (propagated-inputs
7632 `(("r-zoo" ,r-zoo)))
7633 (home-page "https://cran.r-project.org/web/packages/sandwich/")
7634 (synopsis "Robust Covariance Matrix Estimators")
7635 (description
7636 "This package provides model-robust standard error estimators for
7637cross-sectional, time series, clustered, panel, and longitudinal data.")
7638 ;; Either version of the license.
7639 (license (list license:gpl2 license:gpl3))))
6ce07cf9
RW
7640
7641(define-public r-th-data
7642 (package
7643 (name "r-th-data")
62595ee3 7644 (version "1.0-10")
6ce07cf9
RW
7645 (source
7646 (origin
7647 (method url-fetch)
7648 (uri (cran-uri "TH.data" version))
7649 (sha256
7650 (base32
62595ee3 7651 "0mgz7aj2d9abbmdr65zgmg1ddp3fdbs3mfj83r5xadh5ldkir2k1"))))
6ce07cf9
RW
7652 (properties `((upstream-name . "TH.data")))
7653 (build-system r-build-system)
7654 (propagated-inputs
7655 `(("r-mass" ,r-mass)
7656 ("r-survival" ,r-survival)))
7657 (home-page "https://cran.r-project.org/web/packages/TH.data/")
7658 (synopsis "Shared data sets")
7659 (description
7660 "This package contains supporting data sets that are used in other
7661packages maintained by Torsten Hothorn.")
7662 (license license:gpl3)))
7753b543
RW
7663
7664(define-public r-multcomp
7665 (package
7666 (name "r-multcomp")
b1f39e8c 7667 (version "1.4-10")
7753b543
RW
7668 (source
7669 (origin
7670 (method url-fetch)
7671 (uri (cran-uri "multcomp" version))
7672 (sha256
7673 (base32
b1f39e8c 7674 "1kzmdn9jmz5bmhf3wsfr12ljbasmwsgcsfdia52k0bi6q0swdg19"))))
7753b543
RW
7675 (build-system r-build-system)
7676 (propagated-inputs
7677 `(("r-codetools" ,r-codetools)
7678 ("r-mvtnorm" ,r-mvtnorm)
7679 ("r-sandwich" ,r-sandwich)
7680 ("r-survival" ,r-survival)
7681 ("r-th-data" ,r-th-data)))
7682 (home-page "https://cran.r-project.org/web/packages/multcomp/")
7683 (synopsis "Simultaneous inference in general parametric models")
7684 (description
7685 "Simultaneous tests and confidence intervals for general linear
7686hypotheses in parametric models, including linear, generalized linear, linear
7687mixed effects, and survival models. The package includes demos reproducing
7688analyzes presented in the book \"Multiple Comparisons Using R\" (Bretz,
7689Hothorn, Westfall, 2010, CRC Press).")
7690 (license license:gpl2)))
55a08dce
RW
7691
7692(define-public r-emmeans
7693 (package
7694 (name "r-emmeans")
d6fc8fe1 7695 (version "1.3.4")
55a08dce
RW
7696 (source
7697 (origin
7698 (method url-fetch)
7699 (uri (cran-uri "emmeans" version))
7700 (sha256
7701 (base32
d6fc8fe1 7702 "09gxphan34c615y4lhjdqkg5cz4ih9b1r3bb4chs3mwmiav1rxqn"))))
55a08dce
RW
7703 (build-system r-build-system)
7704 (propagated-inputs
7705 `(("r-estimability" ,r-estimability)
7706 ("r-mvtnorm" ,r-mvtnorm)
e0f86164 7707 ("r-numderiv" ,r-numderiv)
55a08dce
RW
7708 ("r-plyr" ,r-plyr)
7709 ("r-xtable" ,r-xtable)))
7710 (home-page "https://github.com/rvlenth/emmeans")
7711 (synopsis "Estimated marginal means, aka least-squares means")
7712 (description
7713 "This package provides tools to obtain @dfn{estimated marginal
7714means} (EMMs) for many linear, generalized linear, and mixed models. It can
7715be used to compute contrasts or linear functions of EMMs, trends, and
7716comparisons of slopes.")
7717 ;; Either version of the license.
7718 (license (list license:gpl2 license:gpl3))))
63fcb88a
RW
7719
7720(define-public r-pwr
7721 (package
7722 (name "r-pwr")
7723 (version "1.2-2")
7724 (source
7725 (origin
7726 (method url-fetch)
7727 (uri (cran-uri "pwr" version))
7728 (sha256
7729 (base32
7730 "0r5g781lr677vp3zyhgmi7r68c87l8gd05l1s3ffnxgn5wf043sm"))))
7731 (build-system r-build-system)
7732 (native-inputs
7733 `(("r-knitr" ,r-knitr)))
7734 (home-page "https://github.com/heliosdrm/pwr")
7735 (synopsis "Basic functions for power analysis")
7736 (description
7737 "This package provides power analysis functions along the lines of
7738Cohen (1988).")
7739 (license license:gpl3+)))
bd531e83 7740
42f344fa
RW
7741(define-public r-libcoin
7742 (package
7743 (name "r-libcoin")
7744 (version "1.0-4")
7745 (source
7746 (origin
7747 (method url-fetch)
7748 (uri (cran-uri "libcoin" version))
7749 (sha256
7750 (base32
7751 "1i893ij9vkmc4y721npw1s3prmmcs2da5vf3ajm0j8ccmfhbmp4i"))))
7752 (build-system r-build-system)
7753 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
7754 (home-page "https://cran.r-project.org/web/packages/libcoin")
7755 (synopsis "Linear test statistics for permutation inference")
7756 (description
7757 "This package provides basic infrastructure for linear test statistics
7758and permutation inference in the framework of Strasser and Weber (1999).")
7759 (license license:gpl2)))
7760
bd531e83
RW
7761(define-public r-coin
7762 (package
7763 (name "r-coin")
f69ba00f 7764 (version "1.3-0")
bd531e83
RW
7765 (source
7766 (origin
7767 (method url-fetch)
7768 (uri (cran-uri "coin" version))
7769 (sha256
7770 (base32
f69ba00f 7771 "1y0yl4mjaxca0jqz53sv1gcpdg89m099rq61iszxvpx7w0vvpkmd"))))
bd531e83
RW
7772 (build-system r-build-system)
7773 (propagated-inputs
f69ba00f
RW
7774 `(("r-libcoin" ,r-libcoin)
7775 ("r-matrixstats" ,r-matrixstats)
7776 ("r-modeltools" ,r-modeltools)
bd531e83
RW
7777 ("r-multcomp" ,r-multcomp)
7778 ("r-mvtnorm" ,r-mvtnorm)
7779 ("r-survival" ,r-survival)))
7780 (home-page "http://coin.r-forge.r-project.org")
7781 (synopsis "Conditional inference procedures in a permutation test framework")
7782 (description
7783 "This package provides conditional inference procedures for the general
7784independence problem including two-sample, K-sample (non-parametric ANOVA),
7785correlation, censored, ordered and multivariate problems.")
7786 (license license:gpl2)))
9b3ecb60
RW
7787
7788(define-public r-bayesplot
7789 (package
7790 (name "r-bayesplot")
7791 (version "1.6.0")
7792 (source
7793 (origin
7794 (method url-fetch)
7795 (uri (cran-uri "bayesplot" version))
7796 (sha256
7797 (base32
7798 "0in9cq2ybpa7njrwqx4l6nc8i01cjswsvzwlyiw465pi74aapr57"))))
7799 (build-system r-build-system)
7800 (inputs
7801 `(("pandoc" ,ghc-pandoc)
7802 ("pandoc-citeproc" ,ghc-pandoc-citeproc)))
7803 (propagated-inputs
7804 `(("r-dplyr" ,r-dplyr)
7805 ("r-ggplot2" ,r-ggplot2)
7806 ("r-ggridges" ,r-ggridges)
7807 ("r-reshape2" ,r-reshape2)
7808 ("r-rlang" ,r-rlang)))
7809 (home-page "http://mc-stan.org/bayesplot")
7810 (synopsis "Plotting for Bayesian models")
7811 (description
7812 "This package provides plotting functions for posterior analysis, model
7813checking, and MCMC diagnostics. The package is designed not only to provide
7814convenient functionality for users, but also a common set of functions that
7815can be easily used by developers working on a variety of R packages for
7816Bayesian modeling.")
7817 (license license:gpl3+)))
3b8a3f55
RW
7818
7819(define-public r-tmb
7820 (package
7821 (name "r-tmb")
492ec498 7822 (version "1.7.15")
3b8a3f55
RW
7823 (source
7824 (origin
7825 (method url-fetch)
7826 (uri (cran-uri "TMB" version))
7827 (sha256
7828 (base32
492ec498 7829 "1r2d8c5iazihba42sn33yarv0dcfiy989sx64zcf14zr8k6cgjzs"))))
3b8a3f55
RW
7830 (properties `((upstream-name . "TMB")))
7831 (build-system r-build-system)
7832 (propagated-inputs
7833 `(("r-matrix" ,r-matrix)
7834 ("r-rcppeigen" ,r-rcppeigen)))
7835 (home-page "http://tmb-project.org")
7836 (synopsis "Template model builder: a general random effect tool")
7837 (description
7838 "With this tool, a user should be able to quickly implement complex
7839random effect models through simple C++ templates. The package combines
7840@code{CppAD} (C++ automatic differentiation), @code{Eigen} (templated
7841matrix-vector library) and @code{CHOLMOD} (sparse matrix routines available
7842from R) to obtain an efficient implementation of the applied Laplace
7843approximation with exact derivatives. Key features are: Automatic sparseness
7844detection, parallelism through BLAS and parallel user templates.")
7845 (license license:gpl2)))
aa4bde0b
RW
7846
7847(define-public r-sjstats
7848 (package
7849 (name "r-sjstats")
a7524f70 7850 (version "0.17.4")
aa4bde0b
RW
7851 (source
7852 (origin
7853 (method url-fetch)
7854 (uri (cran-uri "sjstats" version))
7855 (sha256
7856 (base32
a7524f70 7857 "012hp9m17xzjnsfvjjz2wdfgxm3irsrfx0zmahfnfmgdrwxd5vk5"))))
aa4bde0b
RW
7858 (build-system r-build-system)
7859 (propagated-inputs
a7524f70 7860 `(("r-broom" ,r-broom)
aa4bde0b
RW
7861 ("r-dplyr" ,r-dplyr)
7862 ("r-emmeans" ,r-emmeans)
a7524f70 7863 ("r-insight" ,r-insight)
aa4bde0b
RW
7864 ("r-lme4" ,r-lme4)
7865 ("r-magrittr" ,r-magrittr)
7866 ("r-mass" ,r-mass)
7867 ("r-matrix" ,r-matrix)
7868 ("r-modelr" ,r-modelr)
aa4bde0b 7869 ("r-purrr" ,r-purrr)
aa4bde0b
RW
7870 ("r-rlang" ,r-rlang)
7871 ("r-sjlabelled" ,r-sjlabelled)
7872 ("r-sjmisc" ,r-sjmisc)
7873 ("r-tidyr" ,r-tidyr)))
7874 (home-page "https://github.com/strengejacke/sjstats")
7875 (synopsis "Functions for common statistical computations")
7876 (description
7877 "This package provides a collection of convenient functions for common
7878statistical computations, which are not directly provided by R's @code{base}
7879or @code{stats} packages. This package aims at providing, first, shortcuts
7880for statistical measures, which otherwise could only be calculated with
7881additional effort. Second, these shortcut functions are generic, and can be
7882applied not only to vectors, but also to other objects as well. The focus of
7883most functions lies on summary statistics or fit measures for regression
7884models, including generalized linear models, mixed effects models and Bayesian
7885models.")
7886 (license license:gpl3)))
41394423
RW
7887
7888(define-public r-glmmtmb
7889 (package
7890 (name "r-glmmtmb")
1afe5644 7891 (version "0.2.3")
41394423
RW
7892 (source
7893 (origin
7894 (method url-fetch)
7895 (uri (cran-uri "glmmTMB" version))
7896 (sha256
7897 (base32
1afe5644 7898 "035hkywa37bz555fv6znxd4hfcs5w884365wfnwk4jx5vann4vvb"))))
41394423
RW
7899 (properties `((upstream-name . "glmmTMB")))
7900 (build-system r-build-system)
7901 (propagated-inputs
7902 `(("r-lme4" ,r-lme4)
7903 ("r-matrix" ,r-matrix)
7904 ("r-nlme" ,r-nlme)
7905 ("r-rcppeigen" ,r-rcppeigen)
7906 ("r-tmb" ,r-tmb)))
7907 (native-inputs
1afe5644 7908 `(("r-knitr" ,r-knitr))) ; for vignettes
41394423
RW
7909 (home-page "https://github.com/glmmTMB")
7910 (synopsis "Generalized linear mixed models")
7911 (description
7912 "Fit linear and generalized linear mixed models with various extensions,
7913including zero-inflation. The models are fitted using maximum likelihood
7914estimation via the Template Model Builder. Random effects are assumed to be
7915Gaussian on the scale of the linear predictor and are integrated out using the
7916Laplace approximation. Gradients are calculated using automatic
7917differentiation.")
7918 (license license:agpl3+)))
489a6178 7919
c4568c5c
RW
7920(define-public r-bayestestr
7921 (package
7922 (name "r-bayestestr")
7923 (version "0.1.0")
7924 (source
7925 (origin
7926 (method url-fetch)
7927 (uri (cran-uri "bayestestR" version))
7928 (sha256
7929 (base32
7930 "1m6gj55z3shm3m3mgqj8nk73wij67y617sl04rbj400wz9qrhfva"))))
7931 (properties `((upstream-name . "bayestestR")))
7932 (build-system r-build-system)
7933 (propagated-inputs
7934 `(("r-insight" ,r-insight)))
7935 (home-page "https://github.com/easystats/bayestestR")
7936 (synopsis "Describe Bayesian models and posterior distributions")
7937 (description
7938 "This package provides utilities to understand and describe posterior
7939distributions and Bayesian models. It includes point-estimates such as
7940@dfn{Maximum A Posteriori} (MAP), measures of dispersion such as @dfn{Highest
7941Density Interval} (HDI), and indices used for null-hypothesis testing (such as
7942ROPE percentage and pd).")
7943 (license license:gpl3)))
7944
711a2f06
RW
7945(define-public r-performance
7946 (package
7947 (name "r-performance")
7948 (version "0.1.0")
7949 (source
7950 (origin
7951 (method url-fetch)
7952 (uri (cran-uri "performance" version))
7953 (sha256
7954 (base32
7955 "19lfx25hkavzbycrh6hq4v24a0dz4s60ryq6jyihjlxgrb9g7cnw"))))
7956 (build-system r-build-system)
7957 (propagated-inputs
7958 `(("r-bayestestr" ,r-bayestestr)
7959 ("r-insight" ,r-insight)))
7960 (home-page "https://easystats.github.io/performance/")
7961 (synopsis "Assessment of regression models performance")
7962 (description
7963 "This package provides utilities for computing measures to assess model
7964quality, which are not directly provided by R's @code{base} or @code{stats}
7965packages. These include e.g. measures like r-squared, intraclass correlation
7966coefficient, root mean squared error or functions to check models for
7967overdispersion, singularity or zero-inflation and more. Functions apply to a
7968large variety of regression models, including generalized linear models, mixed
7969effects models and Bayesian models.")
7970 (license license:gpl3)))
7971
489a6178
RW
7972(define-public r-ggeffects
7973 (package
7974 (name "r-ggeffects")
1aeb0b8d 7975 (version "0.10.0")
489a6178
RW
7976 (source
7977 (origin
7978 (method url-fetch)
7979 (uri (cran-uri "ggeffects" version))
7980 (sha256
7981 (base32
1aeb0b8d 7982 "0gmqzjk8k8q6j4q6asv9f3b1fv4qrw5w8xa48ha3y98shzm5np9k"))))
489a6178
RW
7983 (build-system r-build-system)
7984 (propagated-inputs
fef93da8
RW
7985 `(("r-dplyr" ,r-dplyr)
7986 ("r-insight" ,r-insight)
489a6178
RW
7987 ("r-magrittr" ,r-magrittr)
7988 ("r-mass" ,r-mass)
489a6178
RW
7989 ("r-purrr" ,r-purrr)
7990 ("r-rlang" ,r-rlang)
7991 ("r-scales" ,r-scales)
7992 ("r-sjlabelled" ,r-sjlabelled)
fef93da8 7993 ("r-sjmisc" ,r-sjmisc)))
489a6178
RW
7994 (home-page "https://github.com/strengejacke/ggeffects")
7995 (synopsis "Create tidy data frames of marginal effects for ggplot")
7996 (description
7997 "This package provides tools to compute marginal effects from statistical
7998models and return the result as tidy data frames. These data frames are ready
7999to use with the @code{ggplot2} package. Marginal effects can be calculated
8000for many different models. Interaction terms, splines and polynomial terms
8001are also supported. The two main functions are @code{ggpredict()} and
8002@code{ggeffect()}. There is a generic @code{plot()} method to plot the
8003results using @code{ggplot2}.")
8004 (license license:gpl3)))
7b63047c
RW
8005
8006(define-public r-sjplot
8007 (package
8008 (name "r-sjplot")
d22d7904 8009 (version "2.6.3")
7b63047c
RW
8010 (source
8011 (origin
8012 (method url-fetch)
8013 (uri (cran-uri "sjPlot" version))
8014 (sha256
8015 (base32
d22d7904 8016 "0h1mkmp5mrkbf7y3zh6m4cnm737cpg1m5si0lrmal7j2ixqicwjy"))))
7b63047c
RW
8017 (properties `((upstream-name . "sjPlot")))
8018 (build-system r-build-system)
8019 (propagated-inputs
d22d7904
RW
8020 `(("r-bayestestr" ,r-bayestestr)
8021 ("r-broom" ,r-broom)
7b63047c
RW
8022 ("r-dplyr" ,r-dplyr)
8023 ("r-forcats" ,r-forcats)
8024 ("r-ggeffects" ,r-ggeffects)
8025 ("r-ggplot2" ,r-ggplot2)
8026 ("r-glmmtmb" ,r-glmmtmb)
d22d7904 8027 ("r-insight" ,r-insight)
7b63047c
RW
8028 ("r-knitr" ,r-knitr)
8029 ("r-lme4" ,r-lme4)
8030 ("r-magrittr" ,r-magrittr)
8031 ("r-mass" ,r-mass)
8032 ("r-modelr" ,r-modelr)
8033 ("r-nlme" ,r-nlme)
d22d7904 8034 ("r-performance" ,r-performance)
7b63047c
RW
8035 ("r-psych" ,r-psych)
8036 ("r-purrr" ,r-purrr)
8037 ("r-rlang" ,r-rlang)
8038 ("r-scales" ,r-scales)
8039 ("r-sjlabelled" ,r-sjlabelled)
8040 ("r-sjmisc" ,r-sjmisc)
8041 ("r-sjstats" ,r-sjstats)
8042 ("r-tidyr" ,r-tidyr)))
8043 (home-page "https://strengejacke.github.io/sjPlot/")
8044 (synopsis "Data visualization for statistics in social science")
8045 (description
8046 "This package represents a collection of plotting and table output
8047functions for data visualization. Results of various statistical
8048analyses (that are commonly used in social sciences) can be visualized using
8049this package, including simple and cross tabulated frequencies, histograms,
8050box plots, (generalized) linear models, mixed effects models, principal
8051component analysis and correlation matrices, cluster analyses, scatter plots,
8052stacked scales, effects plots of regression models (including interaction
8053terms) and much more. This package supports labelled data.")
8054 (license license:gpl3)))
03f80112
RW
8055
8056(define-public r-ini
8057 (package
8058 (name "r-ini")
8059 (version "0.3.1")
8060 (source
8061 (origin
8062 (method url-fetch)
8063 (uri (cran-uri "ini" version))
8064 (sha256
8065 (base32
8066 "04yqij344dwm0xqgara8xia42mlmij3i8711qbb5534w05a1l6bv"))))
8067 (build-system r-build-system)
8068 (home-page "https://github.com/dvdscripter/ini")
8069 (synopsis "Read and write configuration files")
8070 (description
8071 "This package provides tools to parse simple @code{.ini} configuration
8072files to an structured list. Users can manipulate this resulting list with
8073@code{lapply()} functions. This same structured list can be used to write
8074back to file after modifications.")
8075 (license license:gpl3)))
21405e81
RW
8076
8077(define-public r-gh
8078 (package
8079 (name "r-gh")
8080 (version "1.0.1")
8081 (source
8082 (origin
8083 (method url-fetch)
8084 (uri (cran-uri "gh" version))
8085 (sha256
8086 (base32
8087 "1llinfajb0g7006jd2w1hpskxpmkjhnqarcjb71r1qvsccb2ph7k"))))
8088 (build-system r-build-system)
8089 (propagated-inputs
8090 `(("r-httr" ,r-httr)
8091 ("r-ini" ,r-ini)
8092 ("r-jsonlite" ,r-jsonlite)))
8093 (home-page "https://github.com/r-lib/gh#readme")
8094 (synopsis "Access the GitHub API via R")
8095 (description
8096 "This package provides a minimal R client to access the GitHub API.")
8097 (license license:expat)))
d6871153
RW
8098
8099(define-public r-fs
8100 (package
8101 (name "r-fs")
c02f574d 8102 (version "1.3.1")
d6871153
RW
8103 (source
8104 (origin
8105 (method url-fetch)
8106 (uri (cran-uri "fs" version))
8107 (sha256
8108 (base32
c02f574d 8109 "1g26rgx13dzigp2vrlld6h28q33lwbax97zvwdrq2pc3iz54v4yn"))))
d6871153
RW
8110 (build-system r-build-system)
8111 (propagated-inputs
8112 `(("r-rcpp" ,r-rcpp)))
8113 (native-inputs
8114 `(("pkg-config" ,pkg-config)))
8115 (home-page "http://fs.r-lib.org")
8116 (synopsis "Cross-platform file system operations based on libuv")
8117 (description
8118 "This package provides a cross-platform interface to file system
8119operations, built on top of the libuv C library.")
8120 (license license:gpl3)))
153e5b2d
RW
8121
8122(define-public r-clisymbols
8123 (package
8124 (name "r-clisymbols")
8125 (version "1.2.0")
8126 (source
8127 (origin
8128 (method url-fetch)
8129 (uri (cran-uri "clisymbols" version))
8130 (sha256
8131 (base32
8132 "1q7gi2zmykhzas9v8fdnbpdq7pzdcpbhim1yxvd2062l777g4j86"))))
8133 (build-system r-build-system)
8134 (home-page "https://github.com/gaborcsardi/clisymbols")
8135 (synopsis "Unicode symbols at the R prompt")
8136 (description
8137 "This package provides a small subset of Unicode symbols, that are useful
8138when building command line applications. They fall back to alternatives on
8139terminals that do not support Unicode.")
8140 (license license:expat)))
efefd3ec
RW
8141
8142(define-public r-usethis
8143 (package
8144 (name "r-usethis")
35171015 8145 (version "1.5.0")
efefd3ec
RW
8146 (source
8147 (origin
8148 (method url-fetch)
8149 (uri (cran-uri "usethis" version))
8150 (sha256
8151 (base32
35171015 8152 "0pn6ka3726psaqlx573g6nxi90apf0rn5m4k2lz1jr66xdc19sag"))))
efefd3ec
RW
8153 (build-system r-build-system)
8154 (propagated-inputs
8155 `(("r-clipr" ,r-clipr)
8156 ("r-clisymbols" ,r-clisymbols)
8157 ("r-crayon" ,r-crayon)
8158 ("r-curl" ,r-curl)
8159 ("r-desc" ,r-desc)
8160 ("r-fs" ,r-fs)
8161 ("r-gh" ,r-gh)
8162 ("r-git2r" ,r-git2r)
8163 ("r-glue" ,r-glue)
35171015 8164 ("r-purrr" ,r-purrr)
efefd3ec
RW
8165 ("r-rlang" ,r-rlang)
8166 ("r-rprojroot" ,r-rprojroot)
8167 ("r-rstudioapi" ,r-rstudioapi)
35171015
RW
8168 ("r-whisker" ,r-whisker)
8169 ("r-withr" ,r-withr)
8170 ("r-yaml" ,r-yaml)))
efefd3ec
RW
8171 (home-page "https://github.com/r-lib/usethis")
8172 (synopsis "Automate R package and project setup")
8173 (description
8174 "This package helps you to automate R package and project setup tasks
8175that are otherwise performed manually. This includes setting up unit testing,
8176test coverage, continuous integration, Git, GitHub integration, licenses,
8177Rcpp, RStudio projects, and more.")
8178 (license license:gpl3)))
99342624
RW
8179
8180(define-public r-sessioninfo
8181 (package
8182 (name "r-sessioninfo")
3d6fa1a3 8183 (version "1.1.1")
99342624
RW
8184 (source
8185 (origin
8186 (method url-fetch)
8187 (uri (cran-uri "sessioninfo" version))
8188 (sha256
8189 (base32
3d6fa1a3 8190 "0j5f3l58fynxx3v0w62vqpii7miabszgljpja36xx9s8hikh8sqn"))))
99342624
RW
8191 (build-system r-build-system)
8192 (propagated-inputs
8193 `(("r-cli" ,r-cli)
8194 ("r-withr" ,r-withr)))
8195 (home-page "https://github.com/r-lib/sessioninfo#readme")
8196 (synopsis "R session information")
8197 (description
8198 "This package provides tools to query and print information about the
8199current R session. It is similar to @code{utils::sessionInfo()}, but includes
8200more information about packages, and where they were installed from.")
8201 (license license:gpl2)))
cbc8e6dd
RW
8202
8203(define-public r-remotes
8204 (package
8205 (name "r-remotes")
a108ef62 8206 (version "2.0.4")
cbc8e6dd
RW
8207 (source
8208 (origin
8209 (method url-fetch)
8210 (uri (cran-uri "remotes" version))
8211 (sha256
8212 (base32
a108ef62 8213 "1jbn4kjimcr82zv5lnqxqa2487a96vn6jxf7wc6gnpxr6k06d61p"))))
cbc8e6dd
RW
8214 (build-system r-build-system)
8215 (home-page "https://github.com/r-lib/remotes#readme")
8216 (synopsis "R package installation from remote repositories")
8217 (description
8218 "Download and install R packages stored in GitHub, BitBucket, or plain
8219subversion or git repositories. This package is a lightweight replacement of
8220the @code{install_*} functions in the @code{devtools} package. Indeed most of
8221the code was copied over from @code{devtools}.")
8222 (license license:gpl2+)))
7d8f3470
RW
8223
8224(define-public r-xopen
8225 (package
8226 (name "r-xopen")
8227 (version "1.0.0")
8228 (source
8229 (origin
8230 (method url-fetch)
8231 (uri (cran-uri "xopen" version))
8232 (sha256
8233 (base32
8234 "1vrvgdika1d63dwygynbv2wmd87ll8dji5dy89hj576n8hw601z2"))))
8235 (build-system r-build-system)
8236 (propagated-inputs
8237 `(("r-processx" ,r-processx)))
8238 (home-page "https://github.com/r-lib/xopen#readme")
8239 (synopsis "Open system files, URLs, anything")
8240 (description
8241 "This package provides a cross-platform solution to open files,
8242directories or URLs with their associated programs.")
8243 (license license:expat)))
5df4e27f
RW
8244
8245(define-public r-rcmdcheck
8246 (package
8247 (name "r-rcmdcheck")
a75c6d9c 8248 (version "1.3.3")
5df4e27f
RW
8249 (source
8250 (origin
8251 (method url-fetch)
8252 (uri (cran-uri "rcmdcheck" version))
8253 (sha256
8254 (base32
a75c6d9c 8255 "1d4kzgfqy72r6b7bn1j4znyksrycgypx1jjvpv9lrmvn37mpkdhs"))))
5df4e27f
RW
8256 (build-system r-build-system)
8257 (propagated-inputs
8258 `(("r-callr" ,r-callr)
8259 ("r-cli" ,r-cli)
8260 ("r-crayon" ,r-crayon)
8261 ("r-desc" ,r-desc)
8262 ("r-digest" ,r-digest)
8263 ("r-pkgbuild" ,r-pkgbuild)
8264 ("r-prettyunits" ,r-prettyunits)
8265 ("r-r6" ,r-r6)
8266 ("r-rprojroot" ,r-rprojroot)
7466c3bb 8267 ("r-sessioninfo" ,r-sessioninfo)
5df4e27f
RW
8268 ("r-withr" ,r-withr)
8269 ("r-xopen" ,r-xopen)))
8270 (home-page "https://github.com/r-Lib/rcmdcheck#readme")
8271 (synopsis "Run R CMD check from R and capture results")
8272 (description
8273 "Run @code{R CMD check} from R programmatically, and capture the results
8274of the individual checks.")
8275 (license license:expat)))
9b02d1a1
RW
8276
8277(define-public r-rapportools
8278 (package
8279 (name "r-rapportools")
8280 (version "1.0")
8281 (source
8282 (origin
8283 (method url-fetch)
8284 (uri (cran-uri "rapportools" version))
8285 (sha256
8286 (base32
8287 "1sgv4sc737i12arh5dc3263kjsz3dzg06qihfmrqyax94mv2d01b"))))
8288 (build-system r-build-system)
8289 (propagated-inputs
8290 `(("r-pander" ,r-pander)
8291 ("r-plyr" ,r-plyr)
8292 ("r-reshape" ,r-reshape)))
8293 (home-page "https://cran.r-project.org/web/packages/rapportools/")
8294 (synopsis "Miscellaneous helper functions with sane defaults for reporting")
8295 (description
8296 "This package provides helper functions that act as wrappers to more
8297advanced statistical methods with the advantage of having sane defaults for
8298quick reporting.")
8299 (license license:agpl3+)))
319a80ce
RW
8300
8301(define-public r-pander
8302 (package
8303 (name "r-pander")
a44f8b00 8304 (version "0.6.3")
319a80ce
RW
8305 (source
8306 (origin
8307 (method url-fetch)
8308 (uri (cran-uri "pander" version))
8309 (sha256
8310 (base32
a44f8b00 8311 "1bd9sdghlsppmff18k5fg3i0visq9f4wc82rlhwq5m82bmgdgnyi"))))
319a80ce
RW
8312 (build-system r-build-system)
8313 (propagated-inputs
8314 `(("r-digest" ,r-digest)
8315 ("r-rcpp" ,r-rcpp)))
8316 (home-page "https://rapporter.github.io/pander")
8317 (synopsis "Render R objects into Pandoc's markdown")
8318 (description
8319 "The main aim of the pander R package is to provide a minimal and easy
8320tool for rendering R objects into Pandoc's markdown. The package is also
8321capable of exporting/converting complex Pandoc documents (reports) in various
8322ways.")
8323 ;; This package is licensed under either the AGPLv3+ or the very rarely
8324 ;; used OSL 3.0.
8325 (license license:agpl3+)))
74cc74e4
RW
8326
8327(define-public r-summarytools
8328 (package
8329 (name "r-summarytools")
4c920fbb 8330 (version "0.9.3")
74cc74e4
RW
8331 (source
8332 (origin
8333 (method url-fetch)
8334 (uri (cran-uri "summarytools" version))
8335 (sha256
8336 (base32
4c920fbb 8337 "1wfbkgvicaic37zgpr6zcm4a58yx43p59h0sqggdj44ncqs7147f"))))
74cc74e4
RW
8338 (build-system r-build-system)
8339 (propagated-inputs
5093cbdc
RW
8340 `(("r-checkmate" ,r-checkmate)
8341 ("r-dplyr" ,r-dplyr)
8342 ("r-htmltools" ,r-htmltools)
74cc74e4 8343 ("r-lubridate" ,r-lubridate)
5093cbdc 8344 ("r-magick" ,r-magick)
74cc74e4
RW
8345 ("r-matrixstats" ,r-matrixstats)
8346 ("r-pander" ,r-pander)
8347 ("r-pryr" ,r-pryr)
8348 ("r-rapportools" ,r-rapportools)
5093cbdc 8349 ("r-rcurl" ,r-rcurl)
4c920fbb 8350 ("r-tibble" ,r-tibble)
5093cbdc 8351 ("r-tidyr" ,r-tidyr)))
74cc74e4
RW
8352 (home-page "https://github.com/dcomtois/summarytools")
8353 (synopsis "Tools to quickly and neatly summarize data")
8354 (description
8355 "This package provides tools for data frame summaries, cross-tabulations,
8356weight-enabled frequency tables and common univariate statistics in concise
8357tables available in a variety of formats (plain ASCII, Markdown and HTML). A
8358good point-of-entry for exploring data, both for experienced and new R
8359users.")
8360 (license license:gpl2)))
7c7ee6cf
RW
8361
8362(define-public r-lsei
8363 (package
8364 (name "r-lsei")
8365 (version "1.2-0")
8366 (source
8367 (origin
8368 (method url-fetch)
8369 (uri (cran-uri "lsei" version))
8370 (sha256
8371 (base32
8372 "1xl06fb3is744pxlh42wx5hn1h0ab1k31wnmsmh0524kxzcyp0a7"))))
8373 (build-system r-build-system)
8374 (native-inputs
8375 `(("gfortran" ,gfortran)))
8376 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
8377 (synopsis "Solve regression problems under equality/inequality constraints")
8378 (description
8379 "It contains functions that solve least squares linear regression
8380problems under linear equality/inequality constraints. Functions for solving
8381quadratic programming problems are also available, which transform such
8382problems into least squares ones first.")
8383 (license license:gpl2+)))
2ea75a83
RW
8384
8385(define-public r-npsurv
8386 (package
8387 (name "r-npsurv")
8388 (version "0.4-0")
8389 (source
8390 (origin
8391 (method url-fetch)
8392 (uri (cran-uri "npsurv" version))
8393 (sha256
8394 (base32
8395 "1wq4c9yfha5azjhrn40iiqkshmvh611sa90jp3lh82n4bl9zfk20"))))
8396 (build-system r-build-system)
8397 (propagated-inputs
8398 `(("r-lsei" ,r-lsei)))
8399 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
8400 (synopsis "Nonparametric survival analysis")
8401 (description
8402 "This package contains functions for non-parametric survival analysis of
8403exact and interval-censored observations.")
8404 (license license:gpl2+)))
32499b26
RW
8405
8406(define-public r-clusteval
8407 (package
8408 (name "r-clusteval")
8409 (version "0.1")
8410 (source
8411 (origin
8412 (method url-fetch)
8413 (uri (cran-uri "clusteval" version))
8414 (sha256
8415 (base32
8416 "1ld0bdl4fy8dsfzm3k7a37cyxc6pfc9qs31x4pxd3z5rslghz7rj"))))
8417 (build-system r-build-system)
8418 (propagated-inputs
8419 `(("r-mvtnorm" ,r-mvtnorm)
8420 ("r-rcpp" ,r-rcpp)))
8421 (home-page "https://cran.r-project.org/web/packages/clusteval/")
8422 (synopsis "Evaluation of clustering algorithms")
8423 (description
8424 "This R package provides a suite of tools to evaluate clustering
8425algorithms, clusterings, and individual clusters.")
8426 (license license:expat)))
373cef0a
RW
8427
8428(define-public r-tweedie
8429 (package
8430 (name "r-tweedie")
8431 (version "2.3.2")
8432 (source
8433 (origin
8434 (method url-fetch)
8435 (uri (cran-uri "tweedie" version))
8436 (sha256
8437 (base32
8438 "10fv998qjxsyx0h94fi0xbh6xbf24nwgh254n9zfnmix9vk2cqls"))))
8439 (build-system r-build-system)
8440 (native-inputs `(("gfortran" ,gfortran)))
8441 (home-page "https://cran.r-project.org/web/packages/tweedie/")
8442 (synopsis "Evaluation of Tweedie exponential family models")
8443 (description
8444 "Maximum likelihood computations for Tweedie families, including the
8445series expansion (Dunn and Smyth, 2005; <doi10.1007/s11222-005-4070-y>) and
8446the Fourier inversion (Dunn and Smyth, 2008; <doi:10.1007/s11222-007-9039-6>),
8447and related methods.")
8448 (license license:gpl2+)))
4fb35ebd
RW
8449
8450(define-public r-rcppgsl
8451 (package
8452 (name "r-rcppgsl")
8453 (version "0.3.6")
8454 (source
8455 (origin
8456 (method url-fetch)
8457 (uri (cran-uri "RcppGSL" version))
8458 (sha256
8459 (base32
8460 "16pdapq31729db53agnb48jkvdm97167n3bigy5zazc3q3isis1m"))))
8461 (properties `((upstream-name . "RcppGSL")))
8462 (build-system r-build-system)
8463 (propagated-inputs
8464 `(("r-rcpp" ,r-rcpp)
8465 ("gsl" ,gsl)))
8466 (native-inputs
8467 `(("r-knitr" ,r-knitr))) ; for vignettes
8468 (home-page "https://cran.r-project.org/web/packages/RcppGSL/")
8469 (synopsis "Rcpp integration for GSL vectors and matrices")
8470 (description
8471 "The GNU Scientific Library (or GSL) is a collection of numerical
8472routines for scientific computing. It is particularly useful for C and C++
8473programs as it provides a standard C interface to a wide range of mathematical
8474routines. There are over 1000 functions in total with an extensive test
8475suite. The RcppGSL package provides an easy-to-use interface between GSL data
8476structures and R using concepts from Rcpp which is itself a package that eases
8477the interfaces between R and C++.")
8478 (license license:gpl2+)))
20ff6e3a
RW
8479
8480(define-public r-mvabund
8481 (package
8482 (name "r-mvabund")
48102ce1 8483 (version "4.0.1")
20ff6e3a
RW
8484 (source
8485 (origin
8486 (method url-fetch)
8487 (uri (cran-uri "mvabund" version))
8488 (sha256
8489 (base32
48102ce1 8490 "0la935gsiryfc0zixxr1dqj0av271x96pqxbi3bp6dksbw5gm68k"))))
20ff6e3a
RW
8491 (build-system r-build-system)
8492 (propagated-inputs
8493 `(("r-mass" ,r-mass)
8494 ("r-rcpp" ,r-rcpp)
8495 ("r-rcppgsl" ,r-rcppgsl)
8496 ("r-statmod" ,r-statmod)
8497 ("r-tweedie" ,r-tweedie)))
8498 (home-page "https://cran.r-project.org/web/packages/mvabund/")
8499 (synopsis "Statistical methods for analysing multivariate abundance data")
8500 (description
8501 "This package provides a set of tools for displaying, modeling and
8502analysing multivariate abundance data in community ecology.")
8503 (license license:lgpl2.1+)))
49863fd6
RW
8504
8505(define-public r-afex
8506 (package
8507 (name "r-afex")
e2fee46f 8508 (version "0.23-0")
49863fd6
RW
8509 (source
8510 (origin
8511 (method url-fetch)
8512 (uri (cran-uri "afex" version))
8513 (sha256
8514 (base32
e2fee46f 8515 "0yv4s7461swn0116y4wq9v139p1br5rr6hhnq1cmkbvybmwj2vp7"))))
49863fd6
RW
8516 (build-system r-build-system)
8517 (propagated-inputs
8518 `(("r-car" ,r-car)
8519 ("r-lme4" ,r-lme4)
8520 ("r-lmertest" ,r-lmertest)
8521 ("r-pbkrtest" ,r-pbkrtest)
8522 ("r-reshape2" ,r-reshape2)))
8523 (home-page "https://afex.singmann.science/")
8524 (synopsis "Analysis of factorial experiments")
8525 (description
8526 "This package provides convenience functions for analyzing factorial
8527experiments using ANOVA or mixed models.")
8528 (license license:gpl2+)))
7c02dd62
RW
8529
8530(define-public r-lmertest
8531 (package
8532 (name "r-lmertest")
f18ca07e 8533 (version "3.1-0")
7c02dd62
RW
8534 (source
8535 (origin
8536 (method url-fetch)
8537 (uri (cran-uri "lmerTest" version))
8538 (sha256
8539 (base32
f18ca07e 8540 "1nkz8cmxa5yb8q4i65bmhnn5pd4bhwcyjplyscynb24z3f64xp9b"))))
7c02dd62
RW
8541 (properties `((upstream-name . "lmerTest")))
8542 (build-system r-build-system)
8543 (propagated-inputs
8544 `(("r-ggplot2" ,r-ggplot2)
8545 ("r-lme4" ,r-lme4)
8546 ("r-mass" ,r-mass)
8547 ("r-numderiv" ,r-numderiv)))
8548 (home-page "https://github.com/runehaubo/lmerTestR")
8549 (synopsis "Tests in linear mixed effects models")
8550 (description
8551 "This package provides p-values in type I, II or III anova and summary
8552tables for @code{lmer} model fits via Satterthwaite's degrees of freedom
8553method. A Kenward-Roger method is also available via the @code{pbkrtest}
8554package. Model selection methods include step, drop1 and anova-like tables
8555for random effects (ranova). Methods for Least-Square means (LS-means) and
8556tests of linear contrasts of fixed effects are also available.")
8557 (license license:gpl2+)))
fd649d1e
RW
8558
8559(define-public r-r2glmm
8560 (package
8561 (name "r-r2glmm")
8562 (version "0.1.2")
8563 (source
8564 (origin
8565 (method url-fetch)
8566 (uri (cran-uri "r2glmm" version))
8567 (sha256
8568 (base32
8569 "0iim92blpa59vgz97c2pi05yhbjjmaffdbkbmk5kplfb2vmazgiy"))))
8570 (build-system r-build-system)
8571 (propagated-inputs
8572 `(("r-afex" ,r-afex)
8573 ("r-data-table" ,r-data-table)
8574 ("r-dplyr" ,r-dplyr)
8575 ("r-ggplot2" ,r-ggplot2)
8576 ("r-gridextra" ,r-gridextra)
8577 ("r-lmertest" ,r-lmertest)
8578 ("r-mass" ,r-mass)
8579 ("r-matrix" ,r-matrix)
8580 ("r-mgcv" ,r-mgcv)
8581 ("r-pbkrtest" ,r-pbkrtest)))
8582 (home-page "https://github.com/bcjaeger/r2glmm")
8583 (synopsis "Compute R squared for mixed (multilevel) models")
8584 (description
8585 "This package computes model and semi partial R squared with confidence
8586limits for the linear and generalized linear mixed model (LMM and GLMM). The
8587R squared measure from L. J. Edwards et al. (2008) is extended to the GLMM
8588using @dfn{penalized quasi-likelihood} (PQL) estimation (see Jaeger et
8589al. (2016)).")
8590 (license license:gpl2)))
cddc0300 8591
8592(define-public r-weights
8593 (package
8594 (name "r-weights")
8595 (version "1.0")
8596 (source
8597 (origin
8598 (method url-fetch)
8599 (uri (cran-uri "weights" version))
8600 (sha256
8601 (base32
8602 "0186bfpkhxngrshac6bpg37alp6slwhwd43inrm8hqg0vhpfgc4c"))))
8603 (build-system r-build-system)
8604 (propagated-inputs
8605 `(("r-gdata" ,r-gdata)
8606 ("r-hmisc" ,r-hmisc)
8607 ("r-mice" ,r-mice)))
8608 (home-page
8609 "https://cran.r-project.org/web/packages/weights/")
8610 (synopsis "Weighting and weighted statistics")
8611 (description "This package Provides a variety of functions for producing
8612simple weighted statistics, such as weighted Pearson's correlations, partial
8613correlations, Chi-Squared statistics, histograms, and t-tests. Also now
8614includes some software for quickly recoding survey data and plotting point
8615estimates from interaction terms in regressions (and multiply imputed
8616regressions). NOTE: Weighted partial correlation calculations pulled to
8617address a bug.")
8618 (license license:gpl2+)))
bfa5662e
RW
8619
8620(define-public r-rcppannoy
8621 (package
8622 (name "r-rcppannoy")
c468cf30 8623 (version "0.0.12")
bfa5662e
RW
8624 (source
8625 (origin
8626 (method url-fetch)
8627 (uri (cran-uri "RcppAnnoy" version))
8628 (sha256
8629 (base32
c468cf30 8630 "1b0fmip9c4i0my1yjrvqy8jxfiiqcggq2kms135q0b53njxnqwwg"))))
bfa5662e
RW
8631 (properties `((upstream-name . "RcppAnnoy")))
8632 (build-system r-build-system)
8633 (propagated-inputs
8634 `(("r-rcpp" ,r-rcpp)))
8635 (native-inputs
8636 `(("r-knitr" ,r-knitr))) ; for vignettes
8637 (home-page "https://cran.r-project.org/web/packages/RcppAnnoy/")
8638 (synopsis "Rcpp bindings for Annoy, a library for Approximate Nearest Neighbors")
8639 (description
8640 "Annoy is a small C++ library for Approximate Nearest Neighbors written
8641for efficient memory usage as well an ability to load from and save to disk.
8642This package provides an R interface.")
8643 ;; Annoy is released under ASL 2.0, but this wrapper is released under
8644 ;; GPLv2+.
8645 (license (list license:gpl2+ license:asl2.0))))
b58940cb 8646
81281899
RW
8647(define-public r-rcpphnsw
8648 (package
8649 (name "r-rcpphnsw")
8650 (version "0.1.0")
8651 (source
8652 (origin
8653 (method url-fetch)
8654 (uri (cran-uri "RcppHNSW" version))
8655 (sha256
8656 (base32
8657 "158a069n42pbnjrlmvqsr6bm2cfp9hxpnk3nhp3dwi9qjlq4r9bm"))))
8658 (properties `((upstream-name . "RcppHNSW")))
8659 (build-system r-build-system)
8660 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
8661 (home-page "https://cran.r-project.org/web/packages/RcppHNSW/")
8662 (synopsis "Rcpp bindings for hnswlib, a library for approximate nearest neighbors")
8663 (description
8664 "Hnswlib is a C++ library for approximate nearest neighbors. This
8665package provides a minimal R interface by relying on the Rcpp package.")
8666 ;; hnswlib is released under Version 2.0 of the Apache License.
8667 (license (list license:gpl3 license:asl2.0))))
8668
b58940cb
RW
8669(define-public r-ncdf4
8670 (package
8671 (name "r-ncdf4")
1adcbeda 8672 (version "1.16.1")
b58940cb
RW
8673 (source
8674 (origin
8675 (method url-fetch)
8676 (uri (cran-uri "ncdf4" version))
8677 (sha256
8678 (base32
1adcbeda 8679 "083sb24anyd4sw0il3x07pqn9rbx5y5ayqass6mz8x443rnjvphd"))))
b58940cb
RW
8680 (build-system r-build-system)
8681 (inputs
8682 `(("netcdf" ,netcdf)
8683 ("zlib" ,zlib)))
8684 (home-page "https://cran.r-project.org/web/packages/ncdf4/index.html")
8685 (synopsis "R interface to Unidata netCDF format data files")
8686 (description
8687 "This package provides a high-level R interface to data files written
8688using Unidata's netCDF library (version 4 or earlier), which are binary data
8689files that are portable across platforms and include metadata information in
8690addition to the data sets. Using this package, netCDF files can be opened and
8691data sets read in easily. It is also easy to create new netCDF dimensions,
8692variables, and files, in either version 3 or 4 format, and manipulate existing
8693netCDF files.")
8694 (license license:gpl3+)))
1e605c03
RW
8695
8696(define-public r-biocmanager
8697 (package
8698 (name "r-biocmanager")
749872a5 8699 (version "1.30.4")
1e605c03
RW
8700 (source
8701 (origin
8702 (method url-fetch)
8703 (uri (cran-uri "BiocManager" version))
8704 (sha256
8705 (base32
749872a5 8706 "0kxs76pixk1d2lpvkyrq6nnvv1rqf55ph5f7igkadyyqirf3y2ah"))))
1e605c03
RW
8707 (properties `((upstream-name . "BiocManager")))
8708 (build-system r-build-system)
8709 (home-page "https://cran.r-project.org/web/packages/BiocManager/")
8710 (synopsis "Access the Bioconductor project package repository")
8711 (description
8712 "This package provides a convenient tool to install and update
8713Bioconductor packages.")
8714 (license license:artistic2.0)))
f338e480
RW
8715
8716(define-public r-rgl
8717 (package
8718 (name "r-rgl")
8aef1ea6 8719 (version "0.100.19")
f338e480
RW
8720 (source
8721 (origin
8722 (method url-fetch)
8723 (uri (cran-uri "rgl" version))
8724 (sha256
8725 (base32
8aef1ea6 8726 "09bhvx8aq104yzysfgd7wlnq4vrvmnd4jzgj0c32whjfal10fqsh"))))
f338e480
RW
8727 (build-system r-build-system)
8728 (native-inputs
8729 `(("pkg-config" ,pkg-config)))
8730 (inputs
8731 `(("freetype" ,freetype)
8732 ("libpng" ,libpng)
8733 ("glu" ,glu)
8734 ("libx11" ,libx11)
8735 ("ghc-pandoc" ,ghc-pandoc)
8736 ("zlib" ,zlib)))
8737 (propagated-inputs
8738 `(("r-crosstalk" ,r-crosstalk)
8739 ("r-htmltools" ,r-htmltools)
8740 ("r-htmlwidgets" ,r-htmlwidgets)
8741 ("r-jsonlite" ,r-jsonlite)
8742 ("r-knitr" ,r-knitr)
8743 ("r-magrittr" ,r-magrittr)
8744 ("r-manipulatewidget" ,r-manipulatewidget)
8745 ("r-shiny" ,r-shiny)))
8746 (home-page "https://r-forge.r-project.org/projects/rgl/")
8747 (synopsis "3D visualization using OpenGL")
8748 (description
8749 "This package provides medium to high level functions for 3D interactive graphics,
8750including functions modelled on base graphics (@code{plot3d()}, etc.) as well
8751as functions for constructing representations of geometric
8752objects (@code{cube3d()}, etc.). Output may be on screen using OpenGL, or to
8753various standard 3D file formats including WebGL, PLY, OBJ, STL as well as 2D
8754image formats, including PNG, Postscript, SVG, PGF.")
8755 ;; Any version of the GPL.
8756 (license (list license:gpl2+ license:gpl3+))))
213e72a1
RW
8757
8758(define-public r-multicool
8759 (package
8760 (name "r-multicool")
8761 (version "0.1-10")
8762 (source
8763 (origin
8764 (method url-fetch)
8765 (uri (cran-uri "multicool" version))
8766 (sha256
8767 (base32
8768 "1ybg9piya9psqg42w9i3zsnavbxhkfklfwl7cb420i5nkq6wpc2v"))))
8769 (build-system r-build-system)
8770 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
8771 (home-page "https://cran.r-project.org/web/packages/multicool/")
8772 (synopsis "Permutations of multisets in cool-lex order")
8773 (description
8774 "This package provides a set of tools to permute multisets without loops
8775or hash tables and to generate integer partitions. Cool-lex order is similar
8776to colexicographical order.")
8777 (license license:gpl2)))
4106e6ad
RW
8778
8779(define-public r-misc3d
8780 (package
8781 (name "r-misc3d")
8782 (version "0.8-4")
8783 (source
8784 (origin
8785 (method url-fetch)
8786 (uri (cran-uri "misc3d" version))
8787 (sha256
8788 (base32
8789 "0qjzpw3h09qi2gfz52b7nhzd95p7yyxsd03fldc9wzzn6wi3vpkm"))))
8790 (build-system r-build-system)
8791 (home-page "https://cran.r-project.org/web/packages/misc3d/")
8792 (synopsis "Miscellaneous 3D Plots")
8793 (description
8794 "This package provides a collection of miscellaneous 3d plots, including
8795isosurfaces.")
8796 ;; Any version of the GPL.
8797 (license (list license:gpl2+ license:gpl3+))))
da256afb
RW
8798
8799(define-public r-ks
8800 (package
8801 (name "r-ks")
91f0b745 8802 (version "1.11.4")
da256afb
RW
8803 (source
8804 (origin
8805 (method url-fetch)
8806 (uri (cran-uri "ks" version))
8807 (sha256
8808 (base32
91f0b745 8809 "0d5i8458s8ri9pcx2jm003z1ajk7ha3pmw1sr6lgn6a8d7wgmvqb"))))
da256afb
RW
8810 (build-system r-build-system)
8811 (propagated-inputs
8812 `(("r-fnn" ,r-fnn)
8813 ("r-kernlab" ,r-kernlab)
8814 ("r-kernsmooth" ,r-kernsmooth)
8815 ("r-matrix" ,r-matrix)
8816 ("r-mclust" ,r-mclust)
8817 ("r-mgcv" ,r-mgcv)
da256afb
RW
8818 ("r-multicool" ,r-multicool)
8819 ("r-mvtnorm" ,r-mvtnorm)))
8820 (home-page "http://www.mvstat.net/tduong/")
8821 (synopsis "Kernel smoothing")
8822 (description
8823 "This package provides kernel smoothers for univariate and multivariate
8824data, including density functions, density derivatives, cumulative
8825distributions, modal clustering, discriminant analysis, and two-sample
8826hypothesis testing.")
8827 ;; Either version of the GPL.
8828 (license (list license:gpl2 license:gpl3))))
cf383cf0
RW
8829
8830(define-public r-feature
8831 (package
8832 (name "r-feature")
8833 (version "1.2.13")
8834 (source
8835 (origin
8836 (method url-fetch)
8837 (uri (cran-uri "feature" version))
8838 (sha256
8839 (base32
8840 "07hkw0bv38naj2hdsx4xxrm2dngi6w3rbvgr7s50bjic8hlgy1ra"))))
8841 (build-system r-build-system)
8842 (propagated-inputs
8843 `(("r-ks" ,r-ks)
8844 ("r-misc3d" ,r-misc3d)
8845 ("r-rgl" ,r-rgl)))
8846 (home-page "http://www.mvstat.net/tduong/")
8847 (synopsis "Inferential feature significance for kernel density estimation")
8848 (description
8849 "The feature package contains functions to display and compute kernel
8850density estimates, significant gradient and significant curvature regions.
8851Significant gradient and/or curvature regions often correspond to significant
8852features (e.g. local modes).")
8853 ;; Either version of the GPL.
8854 (license (list license:gpl2 license:gpl3))))
06bc7b82
RW
8855
8856(define-public r-arm
8857 (package
8858 (name "r-arm")
8859 (version "1.10-1")
8860 (source
8861 (origin
8862 (method url-fetch)
8863 (uri (cran-uri "arm" version))
8864 (sha256
8865 (base32
8866 "0vvp90jygajd6ydky57z66wqjq9msfbl88irj5jbsray574mh4bg"))))
8867 (build-system r-build-system)
8868 (propagated-inputs
8869 `(("r-abind" ,r-abind)
8870 ("r-coda" ,r-coda)
8871 ("r-lme4" ,r-lme4)
8872 ("r-mass" ,r-mass)
8873 ("r-matrix" ,r-matrix)
8874 ("r-nlme" ,r-nlme)))
8875 (home-page "https://cran.r-project.org/web/packages/arm/")
8876 (synopsis "Data analysis using regression and multilevel/hierarchical models")
8877 (description
8878 "This package provides functions to accompany A. Gelman and J. Hill,
8879Data Analysis Using Regression and Multilevel/Hierarchical Models, Cambridge
8880University Press, 2007.")
8881 (license license:gpl3+)))
3cef715a
RW
8882
8883(define-public r-circular
8884 (package
8885 (name "r-circular")
8886 (version "0.4-93")
8887 (source
8888 (origin
8889 (method url-fetch)
8890 (uri (cran-uri "circular" version))
8891 (sha256
8892 (base32
8893 "0hki85rs8wc5950pjaw28q54rly2napfbcrx3pchlfap6wwy5kkn"))))
8894 (build-system r-build-system)
8895 (propagated-inputs
8896 `(("r-boot" ,r-boot)
8897 ("r-mvtnorm" ,r-mvtnorm)))
8898 (native-inputs
8899 `(("gfortran" ,gfortran)))
8900 (home-page "https://cran.r-project.org/web/packages/circular/")
8901 (synopsis "Circular statistics")
8902 (description
8903 "This package provides tools for circular statistics, from \"Topics in
8904circular Statistics\" (2001) S. Rao Jammalamadaka and A. SenGupta, World
8905Scientific.")
8906 (license license:gpl2+)))
10483a64
RW
8907
8908(define-public r-activity
8909 (package
8910 (name "r-activity")
0207ad9e 8911 (version "1.2")
10483a64
RW
8912 (source
8913 (origin
8914 (method url-fetch)
8915 (uri (cran-uri "activity" version))
8916 (sha256
8917 (base32
0207ad9e 8918 "11w2bz6p9xbzdh6773dmbbh6rws0h5dj18p8m0ivzizgq932vdzs"))))
10483a64
RW
8919 (build-system r-build-system)
8920 (propagated-inputs
8921 `(("r-circular" ,r-circular)
10483a64
RW
8922 ("r-pbapply" ,r-pbapply)))
8923 (home-page "https://cran.r-project.org/web/packages/activity/")
8924 (synopsis "Animal activity statistics")
8925 (description
8926 "This package provides functions to fit kernel density functions to
8927animal activity time data; plot activity distributions; quantify overall
8928levels of activity; statistically compare activity metrics through
8929bootstrapping; and evaluate variation in linear variables with time (or other
8930circular variables).")
8931 (license license:gpl3)))
e4f4a04a
RW
8932
8933(define-public r-ouch
8934 (package
8935 (name "r-ouch")
27b4bfbe 8936 (version "2.14-1")
e4f4a04a
RW
8937 (source
8938 (origin
8939 (method url-fetch)
8940 (uri (cran-uri "ouch" version))
8941 (sha256
8942 (base32
27b4bfbe 8943 "0ddf9bw5lhj8vb0ja78jf99i0smq4rgmm842k4a4ygap41vdyn2b"))))
e4f4a04a
RW
8944 (build-system r-build-system)
8945 (propagated-inputs `(("r-subplex" ,r-subplex)))
8946 (home-page "http://kingaa.github.io/ouch/")
8947 (synopsis "Ornstein-Uhlenbeck models for phylogenetic comparative hypotheses")
8948 (description
8949 "This package provides tools to fit and compare Ornstein-Uhlenbeck models
8950for evolution along a phylogenetic tree.")
8951 (license license:gpl2+)))
705ea5bf
RW
8952
8953(define-public r-fmsb
8954 (package
8955 (name "r-fmsb")
8956 (version "0.6.3")
8957 (source
8958 (origin
8959 (method url-fetch)
8960 (uri (cran-uri "fmsb" version))
8961 (sha256
8962 (base32
8963 "1n29bnyp20pvpk2lsa9fblsj5w7amp14snc74pk5w3yr5y6rj0s5"))))
8964 (build-system r-build-system)
8965 (home-page "http://minato.sip21c.org/msb/")
8966 (synopsis "Functions for medical statistics book with demographic data")
8967 (description
8968 "This package provides several utility functions for the book entitled
8969\"Practices of Medical and Health Data Analysis using R\" (Pearson Education
8970Japan, 2007) with Japanese demographic data and some demographic analysis
8971related functions.")
8972 (license license:gpl2+)))
ced51a20
RW
8973
8974(define-public r-stabledist
8975 (package
8976 (name "r-stabledist")
8977 (version "0.7-1")
8978 (source
8979 (origin
8980 (method url-fetch)
8981 (uri (cran-uri "stabledist" version))
8982 (sha256
8983 (base32
8984 "0scar396wiq6wkbkvwp4qrxqc1m075y56p37i6iry5rw796p1i86"))))
8985 (build-system r-build-system)
8986 (home-page "http://www.rmetrics.org")
8987 (synopsis "Stable distribution functions")
8988 (description
8989 "This package provides density, probability and quantile functions, and
8990random number generation for (skew) stable distributions, using the
8991parametrizations of Nolan.")
8992 (license license:gpl2+)))
a50abb36
RW
8993
8994(define-public r-gsl
8995 (package
8996 (name "r-gsl")
6bdce94f 8997 (version "2.1-6")
a50abb36
RW
8998 (source
8999 (origin
9000 (method url-fetch)
9001 (uri (cran-uri "gsl" version))
9002 (sha256
9003 (base32
6bdce94f 9004 "0p4rh7npp6qbfc5sxjq86xjn7c9ivf3pd60qf1hldwckjqin7m7m"))))
a50abb36
RW
9005 (build-system r-build-system)
9006 (inputs
9007 `(("gsl" ,gsl)))
9008 (home-page "https://cran.r-project.org/web/packages/gsl")
9009 (synopsis "Wrapper for the GNU Scientific Library")
9010 (description
9011 "This package provides an R wrapper for the special functions and quasi
9012random number generators of the GNU Scientific Library.")
9013 (license license:gpl2+)))
03a3ec5e
RW
9014
9015(define-public r-adgoftest
9016 (package
9017 (name "r-adgoftest")
9018 (version "0.3")
9019 (source
9020 (origin
9021 (method url-fetch)
9022 (uri (cran-uri "ADGofTest" version))
9023 (sha256
9024 (base32
9025 "0ik817qzqp6kfbckjp1z7srlma0w6z2zcwykh0jdiv7nahwk3ncw"))))
9026 (properties `((upstream-name . "ADGofTest")))
9027 (build-system r-build-system)
9028 (home-page "https://cran.r-project.org/web/packages/ADGofTest")
9029 (synopsis "Anderson-Darling GoF test")
9030 (description
9031 "This package provides an implementation of the Anderson-Darling GoF test
9032with p-value calculation based on Marsaglia's 2004 paper \"Evaluating the
9033Anderson-Darling Distribution\".")
9034 ;; Any version of the GPL.
9035 (license license:gpl3+)))
71601a5d
RW
9036
9037(define-public r-softimpute
9038 (package
9039 (name "r-softimpute")
9040 (version "1.4")
9041 (source
9042 (origin
9043 (method url-fetch)
9044 (uri (cran-uri "softImpute" version))
9045 (sha256
9046 (base32
9047 "07cxbzkl08q58m1455i139952rmryjlic4s2f2hscl5zxxmfdxcq"))))
9048 (properties `((upstream-name . "softImpute")))
9049 (build-system r-build-system)
9050 (propagated-inputs
9051 `(("r-matrix" ,r-matrix)))
9052 (native-inputs
9053 `(("gfortran" ,gfortran)))
9054 (home-page "https://cran.r-project.org/web/packages/softImpute")
9055 (synopsis "Matrix completion via iterative soft-thresholded SVD")
9056 (description
9057 "This package provides iterative methods for matrix completion that use
9058nuclear-norm regularization. The package includes procedures for centering
9059and scaling rows, columns or both, and for computing low-rank @dfn{single
9060value decompositions} (SVDs) on large sparse centered matrices (i.e. principal
9061components).")
9062 (license license:gpl2)))
44b0c5b5
RW
9063
9064(define-public r-fftwtools
9065 (package
9066 (name "r-fftwtools")
9067 (version "0.9-8")
9068 (source
9069 (origin
9070 (method url-fetch)
9071 (uri (cran-uri "fftwtools" version))
9072 (sha256
9073 (base32
9074 "1nqvpzda281rxi1cmwajxxsn3sc3gz7scv8bvs5jm34kf36whha6"))))
9075 (build-system r-build-system)
9076 (inputs `(("fftw" ,fftw)))
9077 (home-page "https://github.com/krahim/fftwtools")
9078 (synopsis "Wrapper for FFTW3")
9079 (description
9080 "This package provides a wrapper for several FFTW functions. It provides
9081access to the two-dimensional FFT, the multivariate FFT, and the
9082one-dimensional real to complex FFT using the FFTW3 library. The package
9083includes the functions @code{fftw()} and @code{mvfftw()} which are designed to
9084mimic the functionality of the R functions @code{fft()} and @code{mvfft()}.
9085The FFT functions have a parameter that allows them to not return the
9086redundant complex conjugate when the input is real data.")
9087 (license license:gpl2+)))
db084d79
RW
9088
9089(define-public r-tiff
9090 (package
9091 (name "r-tiff")
9092 (version "0.1-5")
9093 (source
9094 (origin
9095 (method url-fetch)
9096 (uri (cran-uri "tiff" version))
9097 (sha256
9098 (base32
9099 "0asf2bws3x3yd3g3ixvk0f86b0mdf882pl8xrqlxrkbgjalyc54m"))))
9100 (build-system r-build-system)
9101 (inputs
9102 `(("libtiff" ,libtiff)
9103 ("libjpeg" ,libjpeg)
9104 ("zlib" ,zlib)))
9105 (home-page "http://www.rforge.net/tiff/")
9106 (synopsis "Read and write TIFF images")
9107 (description
9108 "This package provides an easy and simple way to read, write and display
9109bitmap images stored in the TIFF format. It can read and write both files and
9110in-memory raw vectors.")
9111 ;; Either of these two license versions.
9112 (license (list license:gpl2 license:gpl3))))
f3949fec
RW
9113
9114(define-public r-waveslim
9115 (package
9116 (name "r-waveslim")
61cb2e31 9117 (version "1.7.5.1")
f3949fec
RW
9118 (source
9119 (origin
9120 (method url-fetch)
9121 (uri (cran-uri "waveslim" version))
9122 (sha256
9123 (base32
61cb2e31 9124 "0mky0nb4xxp8rybp87mxw2f1q6k400wpxv01zr4injv7ja6028xk"))))
f3949fec
RW
9125 (build-system r-build-system)
9126 (native-inputs
9127 `(("gfortran" ,gfortran)))
9128 (home-page "http://waveslim.blogspot.com")
9129 (synopsis "Basic wavelet routines for signal processing")
9130 (description
9131 "This package provides basic wavelet routines for time series (1D),
9132image (2D) and array (3D) analysis. The code provided here is based on
9133wavelet methodology developed in Percival and Walden (2000); Gencay, Selcuk
9134and Whitcher (2001); the dual-tree complex wavelet transform (DTCWT) from
9135Kingsbury (1999, 2001) as implemented by Selesnick; and Hilbert wavelet
9136pairs (Selesnick 2001, 2002).")
9137 (license license:bsd-3)))
e37935e4
RW
9138
9139(define-public r-wordcloud
9140 (package
9141 (name "r-wordcloud")
9142 (version "2.6")
9143 (source
9144 (origin
9145 (method url-fetch)
9146 (uri (cran-uri "wordcloud" version))
9147 (sha256
9148 (base32
9149 "0j96yyvm6bcrrpbdx4w26piqx44a0vbsr3px9cb4zk8a8da6jwak"))))
9150 (build-system r-build-system)
9151 (propagated-inputs
9152 `(("r-rcolorbrewer" ,r-rcolorbrewer)
9153 ("r-rcpp" ,r-rcpp)))
9154 (home-page "https://cran.r-project.org/web/packages/wordcloud")
9155 (synopsis "Word clouds")
9156 (description
9157 "This package provides functionality to create pretty word clouds,
9158visualize differences and similarity between documents, and avoid
9159over-plotting in scatter plots with text.")
9160 (license license:lgpl2.1)))
a6e4413d
RW
9161
9162(define-public r-colorramps
9163 (package
9164 (name "r-colorramps")
9165 (version "2.3")
9166 (source
9167 (origin
9168 (method url-fetch)
9169 (uri (cran-uri "colorRamps" version))
9170 (sha256
9171 (base32
9172 "0shbjh83x1axv4drm5r3dwgbyv70idih8z4wlzjs4hiac2qfl41z"))))
9173 (properties `((upstream-name . "colorRamps")))
9174 (build-system r-build-system)
9175 (home-page "https://cran.r-project.org/web/packages/colorRamps")
9176 (synopsis "Build color tables")
9177 (description "This package provides features to build gradient color
9178maps.")
9179 ;; Any version of the GPL
9180 (license license:gpl3+)))
61d73349
RW
9181
9182(define-public r-tidytree
9183 (package
9184 (name "r-tidytree")
0b14b100 9185 (version "0.2.4")
61d73349
RW
9186 (source
9187 (origin
9188 (method url-fetch)
9189 (uri (cran-uri "tidytree" version))
9190 (sha256
9191 (base32
0b14b100 9192 "04bznlfs617plv258nmsyq2pywnijcnzy2pbn5b2fgjk2xqkp29w"))))
61d73349
RW
9193 (build-system r-build-system)
9194 (propagated-inputs
9195 `(("r-ape" ,r-ape)
9196 ("r-dplyr" ,r-dplyr)
9197 ("r-lazyeval" ,r-lazyeval)
9198 ("r-magrittr" ,r-magrittr)
9199 ("r-rlang" ,r-rlang)
9200 ("r-tibble" ,r-tibble)))
9201 (home-page "https://github.com/GuangchuangYu/tidytree")
9202 (synopsis "Tidy tool for phylogenetic tree data manipulation")
9203 (description
9204 "Phylogenetic trees generally contain multiple components including nodes,
9205edges, branches and associated data. This package provides an approach to
9206convert tree objects to tidy data frames. It also provides tidy interfaces to
9207manipulate tree data.")
9208 (license license:artistic2.0)))
45b469a4
RW
9209
9210(define-public r-rvcheck
9211 (package
9212 (name "r-rvcheck")
9213 (version "0.1.3")
9214 (source
9215 (origin
9216 (method url-fetch)
9217 (uri (cran-uri "rvcheck" version))
9218 (sha256
9219 (base32
9220 "1i2g6gyiqyd1pn6y0h6vmlcmg1qb5pv7rym8mkw8jnyc3in9hn8b"))))
9221 (build-system r-build-system)
9222 (propagated-inputs
9223 `(("r-rlang" ,r-rlang)))
9224 (home-page "https://cran.r-project.org/web/packages/rvcheck")
9225 (synopsis "R package version check")
9226 (description
9227 "This package provides tools to check the latest release version of R and
9228R packages (on CRAN, Bioconductor or Github).")
9229 (license license:artistic2.0)))
fbebccf7
RW
9230
9231(define-public r-docopt
9232 (package
9233 (name "r-docopt")
9234 (version "0.6.1")
9235 (source
9236 (origin
9237 (method url-fetch)
9238 (uri (cran-uri "docopt" version))
9239 (sha256
9240 (base32
9241 "06zknnd0c5s2y0hbddzdlr3m63ib783izpck6pgz7sjbab5pd068"))))
9242 (build-system r-build-system)
9243 (home-page "https://github.com/docopt/docopt.R")
9244 (synopsis "Command-line interface specification language")
9245 (description
9246 "This package enables you to define a command-line interface by just
9247giving it a description in the specific format.")
9248 (license license:expat)))
b614009e
RW
9249
9250(define-public r-sparsesvd
9251 (package
9252 (name "r-sparsesvd")
9253 (version "0.1-4")
9254 (source
9255 (origin
9256 (method url-fetch)
9257 (uri (cran-uri "sparsesvd" version))
9258 (sha256
9259 (base32
9260 "1yf373552wvdnd65r7hfcqa3v29dqn7jd4cn431mqd2acnqjrsam"))))
9261 (build-system r-build-system)
9262 (propagated-inputs `(("r-matrix" ,r-matrix)))
9263 (home-page "http://tedlab.mit.edu/~dr/SVDLIBC/")
9264 (synopsis "Sparse truncated singular value decomposition")
9265 (description
9266 "This package provides a Wrapper around the SVDLIBC library
9267for (truncated) singular value decomposition of a sparse matrix. Currently,
9268only sparse real matrices in Matrix package format are supported.")
9269 ;; SVDLIBC is released under BSD-2. The R interface is released under
9270 ;; BSD-3.
9271 (license (list license:bsd-3 license:bsd-2))))
13f5837b
RW
9272
9273(define-public r-densityclust
9274 (package
9275 (name "r-densityclust")
9276 (version "0.3")
9277 (source
9278 (origin
9279 (method url-fetch)
9280 (uri (cran-uri "densityClust" version))
9281 (sha256
9282 (base32
9283 "1zry0vafajzmr37aylglxfvwplhdygbkb9cvzvh8cy0xgnjrnx13"))))
9284 (properties `((upstream-name . "densityClust")))
9285 (build-system r-build-system)
9286 (propagated-inputs
9287 `(("r-fnn" ,r-fnn)
9288 ("r-ggplot2" ,r-ggplot2)
9289 ("r-ggrepel" ,r-ggrepel)
9290 ("r-gridextra" ,r-gridextra)
9291 ("r-rcolorbrewer" ,r-rcolorbrewer)
9292 ("r-rcpp" ,r-rcpp)
9293 ("r-rtsne" ,r-rtsne)))
9294 (home-page "https://cran.r-project.org/web/packages/densityClust")
9295 (synopsis "Clustering by fast search and find of density peaks")
9296 (description
9297 "This package provides an improved implementation (based on k-nearest
9298neighbors) of the density peak clustering algorithm, originally described by
9299Alex Rodriguez and Alessandro Laio (Science, 2014 vol. 344). It can handle
9300large datasets (> 100,000 samples) very efficiently.")
9301 (license license:gpl2+)))
58bc8857
RW
9302
9303(define-public r-combinat
9304 (package
9305 (name "r-combinat")
9306 (version "0.0-8")
9307 (source
9308 (origin
9309 (method url-fetch)
9310 (uri (cran-uri "combinat" version))
9311 (sha256
9312 (base32
9313 "1h9hr88gigihc4na7lb5i7rn4az1xa7sb34zvnznaj6pdrmwy4qm"))))
9314 (build-system r-build-system)
9315 (home-page "https://cran.r-project.org/web/packages/combinat")
9316 (synopsis "Combinatorics utilities")
9317 (description "This package provides assorted routines for combinatorics.")
9318 (license license:gpl2)))
9f33d76c
RW
9319
9320(define-public r-qlcmatrix
9321 (package
9322 (name "r-qlcmatrix")
9323 (version "0.9.7")
9324 (source
9325 (origin
9326 (method url-fetch)
9327 (uri (cran-uri "qlcMatrix" version))
9328 (sha256
9329 (base32
9330 "0iqkcvvy8rxlk0s83sjq57dd6fadb18p5z31lzy0gnzv1hsy1x8y"))))
9331 (properties `((upstream-name . "qlcMatrix")))
9332 (build-system r-build-system)
9333 (propagated-inputs
9334 `(("r-docopt" ,r-docopt)
9335 ("r-matrix" ,r-matrix)
9336 ("r-slam" ,r-slam)
9337 ("r-sparsesvd" ,r-sparsesvd)))
9338 (home-page "https://cran.r-project.org/web/packages/qlcMatrix")
9339 (synopsis "Sparse matrix functions for quantitative language comparison")
9340 (description
9341 "This package provides an extension of the functionality of the Matrix
9342package for using sparse matrices. Some of the functions are very general,
9343while other are highly specific for the special data format used for
9344@dfn{quantitative language comparison} (QLC).")
9345 (license license:gpl3)))
e3bb0766
RW
9346
9347(define-public r-ddrtree
9348 (package
9349 (name "r-ddrtree")
9350 (version "0.1.5")
9351 (source
9352 (origin
9353 (method url-fetch)
9354 (uri (cran-uri "DDRTree" version))
9355 (sha256
9356 (base32
9357 "16s5fjw7kwlxhrkzdny62sx32fvmg3rxjc3wrh6krd31jh1fqlfk"))))
9358 (properties `((upstream-name . "DDRTree")))
9359 (build-system r-build-system)
9360 (propagated-inputs
9361 `(("r-bh" ,r-bh)
9362 ("r-irlba" ,r-irlba)
9363 ("r-rcpp" ,r-rcpp)
9364 ("r-rcppeigen" ,r-rcppeigen)))
9365 (home-page "https://cran.r-project.org/web/packages/DDRTree")
9366 (synopsis "Learning principal graphs with DDRTree")
9367 (description
9368 "This package provides an implementation of the framework of
9369@dfn{reversed graph embedding} (RGE) which projects data into a reduced
9370dimensional space while constructs a principal tree which passes through the
9371middle of the data simultaneously. DDRTree shows superiority to
9372alternatives (Wishbone, DPT) for inferring the ordering as well as the
9373intrinsic structure of single cell genomics data. In general, it could be
9374used to reconstruct the temporal progression as well as the bifurcation
9375structure of any data type.")
9376 (license license:asl2.0)))
d53b2317
RW
9377
9378(define-public r-corpcor
9379 (package
9380 (name "r-corpcor")
9381 (version "1.6.9")
9382 (source
9383 (origin
9384 (method url-fetch)
9385 (uri (cran-uri "corpcor" version))
9386 (sha256
9387 (base32
9388 "1hi3i9d3841snppq1ks5pd8cliq1b4rm4dpsczmfqvwksg8snkrf"))))
9389 (build-system r-build-system)
9390 (home-page "http://strimmerlab.org/software/corpcor/")
9391 (synopsis "Efficient estimation of covariance and (partial) correlation")
9392 (description
9393 "This package implements a James-Stein-type shrinkage estimator for the
9394covariance matrix, with separate shrinkage for variances and correlations.
9395Furthermore, functions are available for fast singular value decomposition,
9396for computing the pseudoinverse, and for checking the rank and positive
9397definiteness of a matrix.")
9398 (license license:gpl3+)))
3088b3fc
RW
9399
9400(define-public r-rspectra
9401 (package
9402 (name "r-rspectra")
9e896d38 9403 (version "0.14-0")
3088b3fc
RW
9404 (source
9405 (origin
9406 (method url-fetch)
9407 (uri (cran-uri "RSpectra" version))
9408 (sha256
9409 (base32
9e896d38 9410 "12w5vnz39gyciza0fl7fw4f9i9kjw763h3mvk1sxd97c5dsn26jg"))))
3088b3fc
RW
9411 (properties `((upstream-name . "RSpectra")))
9412 (build-system r-build-system)
9413 (propagated-inputs
9414 `(("r-matrix" ,r-matrix)
9415 ("r-rcpp" ,r-rcpp)
9416 ("r-rcppeigen" ,r-rcppeigen)))
9417 (home-page "https://github.com/yixuan/RSpectra")
9418 (synopsis "Solvers for large-scale Eigenvalue and SVD problems")
9419 (description
9420 "This package provides an R interface to the Spectra library for
9421large-scale eigenvalue and SVD problems. It is typically used to compute a
9422few eigenvalues/vectors of an n by n matrix, e.g., the k largest eigenvalues,
9423which is usually more efficient than @code{eigen()} if k << n.")
9424 ;; MPL 2 or later.
9425 (license license:mpl2.0)))
029425cb
RW
9426
9427(define-public r-vbsr
9428 (package
9429 (name "r-vbsr")
9430 (version "0.0.5")
9431 (source
9432 (origin
9433 (method url-fetch)
9434 (uri (cran-uri "vbsr" version))
9435 (sha256
9436 (base32
9437 "1avskbxxyinjjdga4rnghcfvd4sypv4m39ysfaij5avvmi89bx3b"))))
9438 (build-system r-build-system)
9439 (home-page "https://cran.r-project.org/web/packages/vbsr")
9440 (synopsis "Variational Bayes spike regression regularized linear models")
9441 (description
9442 "This package provides an efficient algorithm for solving ultra-sparse
9443regularized regression models using a variational Bayes algorithm with a spike
9444prior. The algorithm is solved on a path, with coordinate updates, and is
9445capable of generating very sparse models. Very general model
9446diagnostics for controlling type-1 errors are also provided.")
9447 (license license:gpl2)))
3d62d98e
RW
9448
9449(define-public r-flare
9450 (package
9451 (name "r-flare")
9452 (version "1.6.0")
9453 (source
9454 (origin
9455 (method url-fetch)
9456 (uri (cran-uri "flare" version))
9457 (sha256
9458 (base32
9459 "0ygif9a7a99qwv0b488wymmmncp6f5ww9yz13s4qs6p8yf37x1r1"))))
9460 (build-system r-build-system)
9461 (propagated-inputs
9462 `(("r-igraph" ,r-igraph)
9463 ("r-lattice" ,r-lattice)
9464 ("r-mass" ,r-mass)
9465 ("r-matrix" ,r-matrix)))
9466 (home-page "https://cran.r-project.org/web/packages/flare")
9467 (synopsis "Family of Lasso regression implementations")
9468 (description
6a0c3e03 9469 "This package provides implementations of a family of Lasso variants
3d62d98e
RW
9470including Dantzig Selector, LAD Lasso, SQRT Lasso, Lq Lasso for estimating
9471high dimensional sparse linear models.")
9472 (license license:gpl2)))
5f0fbfc0
RW
9473
9474(define-public r-lassopv
9475 (package
9476 (name "r-lassopv")
9477 (version "0.2.0")
9478 (source
9479 (origin
9480 (method url-fetch)
9481 (uri (cran-uri "lassopv" version))
9482 (sha256
9483 (base32
9484 "0yawnjw063jypk3riy9xab9cmliv6c9dnabi18670khd3gzb2r9z"))))
9485 (build-system r-build-system)
9486 (propagated-inputs `(("r-lars" ,r-lars)))
9487 (home-page "https://github.com/lingfeiwang/lassopv")
9488 (synopsis "Non-parametric p-value estimation for predictors in Lasso")
9489 (description
9490 "This package enables you to estimate the p-values for predictors x
9491against target variable y in Lasso regression, using the regularization
9492strength when each predictor enters the active set of regularization path for
9493the first time as the statistic.")
9494 (license license:gpl3)))
adcd0cc8
RW
9495
9496(define-public r-splitstackshape
9497 (package
9498 (name "r-splitstackshape")
90325bb1 9499 (version "1.4.8")
adcd0cc8
RW
9500 (source
9501 (origin
9502 (method url-fetch)
9503 (uri (cran-uri "splitstackshape" version))
9504 (sha256
9505 (base32
90325bb1 9506 "0mpyf2kkfdl69pdc6brl1r6101vyc6pgr7z17s55ppg3y71k4q35"))))
adcd0cc8
RW
9507 (build-system r-build-system)
9508 (propagated-inputs
9509 `(("r-data-table" ,r-data-table)))
9510 (home-page "https://github.com/mrdwab/splitstackshape")
9511 (synopsis "Stack and reshape datasets after splitting concatenated values")
9512 (description
9513 "Online data collection tools like Google Forms often export
9514multiple-response questions with data concatenated in cells. The
9515@code{concat.split} (cSplit) family of functions provided by this package
9516splits such data into separate cells. This package also includes functions to
9517stack groups of columns and to reshape wide data, even when the data are
9518\"unbalanced\"---something which @code{reshape} (from base R) does not handle,
9519and which @code{melt} and @code{dcast} from @code{reshape2} do not easily
9520handle.")
9521 (license license:gpl3)))
b2e777b2
RW
9522
9523(define-public r-tfmpvalue
9524 (package
9525 (name "r-tfmpvalue")
9526 (version "0.0.8")
9527 (source
9528 (origin
9529 (method url-fetch)
9530 (uri (cran-uri "TFMPvalue" version))
9531 (sha256
9532 (base32
9533 "0h9qkl15k8v17v3g9bdnfwvh2s04ywjgg5y0xn2077dmywlja1bd"))))
9534 (properties `((upstream-name . "TFMPvalue")))
9535 (build-system r-build-system)
9536 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9537 (home-page "https://github.com/ge11232002/TFMPvalue")
9538 (synopsis "P-value computation for position weight matrices")
9539 (description
9540 "In putative @dfn{Transcription Factor Binding Sites} (TFBSs)
9541identification from sequence/alignments, we are interested in the significance
9542of certain match scores. TFMPvalue provides the accurate calculation of a
9543p-value with a score threshold for position weight matrices, or the score with
9544a given p-value. It is an interface to code originally made available by
9545Helene Touzet and Jean-Stephane Varre, 2007, Algorithms Mol Biol:2, 15.
9546Touzet and Varre (2007).")
9547 (license license:gpl2)))
f79e63a5
RW
9548
9549(define-public r-rnifti
9550 (package
9551 (name "r-rnifti")
9552 (version "0.10.0")
9553 (source
9554 (origin
9555 (method url-fetch)
9556 (uri (cran-uri "RNifti" version))
9557 (sha256
9558 (base32
9559 "07sfzps4yg5zdhbxh6i4rbjvbjvvf2d8i9jcf64ywbmi557sw1zv"))))
9560 (properties `((upstream-name . "RNifti")))
9561 (build-system r-build-system)
9562 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9563 (home-page "https://github.com/jonclayden/RNifti")
9564 (synopsis "Fast R and C++ access to NIfTI images")
9565 (description
9566 "This package provides very fast read and write access to images stored
9567in the NIfTI-1 and ANALYZE-7.5 formats, with seamless synchronisation between
9568compiled C and interpreted R code. It also provides a C/C++ API that can be
9569used by other packages.")
9570 (license license:gpl2)))
6e09f506
RW
9571
9572(define-public r-shades
9573 (package
9574 (name "r-shades")
16d296bb 9575 (version "1.3.1")
6e09f506
RW
9576 (source
9577 (origin
9578 (method url-fetch)
9579 (uri (cran-uri "shades" version))
9580 (sha256
9581 (base32
16d296bb 9582 "0v0xp9l1zyq4iysmkrbdwk4r1rksjj8p5c1726yrcgyg55mj59nv"))))
6e09f506
RW
9583 (build-system r-build-system)
9584 (home-page "https://github.com/jonclayden/shades")
9585 (synopsis "Simple color manipulation")
9586 (description
9587 "This package provides functions for easily manipulating colors,
9588creating color scales and calculating color distances.")
9589 (license license:bsd-3)))
cb03d6c6
RW
9590
9591(define-public r-ore
9592 (package
9593 (name "r-ore")
9594 (version "1.6.2")
9595 (source
9596 (origin
9597 (method url-fetch)
9598 (uri (cran-uri "ore" version))
9599 (sha256
9600 (base32
9601 "1l1ziljgm5gwjhvjq42wi5vcwbxlaj5dl9w8bhz0wh8vx4ajj07m"))))
9602 (build-system r-build-system)
9603 (home-page "https://github.com/jonclayden/ore")
9604 (synopsis "R interface to the Onigmo regular expression library")
9605 (description
9606 "This package provides an alternative to R's built-in functionality for
9607handling regular expressions, based on the Onigmo library. It offers
9608first-class compiled regex objects, partial matching and function-based
9609substitutions, amongst other features.")
9610 (license license:bsd-3)))
b98662c5
RW
9611
9612(define-public r-reportr
9613 (package
9614 (name "r-reportr")
9615 (version "1.3.0")
9616 (source
9617 (origin
9618 (method url-fetch)
9619 (uri (cran-uri "reportr" version))
9620 (sha256
9621 (base32
9622 "0zynplxqvbmf23cm2rsz3wz2jx6mv55z94mn1k44ny3lx625cnpw"))))
9623 (build-system r-build-system)
9624 (propagated-inputs `(("r-ore" ,r-ore)))
9625 (home-page "https://github.com/jonclayden/reportr")
9626 (synopsis "General message and error reporting system")
9627 (description
9628 "This package provides a system for reporting messages, which offers
9629certain useful features over the standard R system, such as the incorporation
9630of output consolidation, message filtering, assertions, expression
9631substitution, automatic generation of stack traces for debugging, and
9632conditional reporting based on the current \"output level\".")
9633 (license license:gpl2)))
7eec973e
RW
9634
9635(define-public r-tractor-base
9636 (package
9637 (name "r-tractor-base")
9638 (version "3.3.0")
9639 (source
9640 (origin
9641 (method url-fetch)
9642 (uri (cran-uri "tractor.base" version))
9643 (sha256
9644 (base32
9645 "0i62dwra0yh565ryz75byfgqv22bqwz7138zs48w46yj2h8q9hyj"))))
9646 (properties `((upstream-name . "tractor.base")))
9647 (build-system r-build-system)
9648 (propagated-inputs
9649 `(("r-ore" ,r-ore)
9650 ("r-reportr" ,r-reportr)
9651 ("r-rnifti" ,r-rnifti)
9652 ("r-shades" ,r-shades)))
9653 (home-page "http://www.tractor-mri.org.uk")
9654 (synopsis "Read, manipulate and visualize magnetic resonance images")
9655 (description
9656 "This package provides functions for working with magnetic resonance
9657images. It supports reading and writing of popular file formats (DICOM,
9658Analyze, NIfTI-1, NIfTI-2, MGH); interactive and non-interactive
9659visualization; flexible image manipulation; metadata and sparse image
9660handling.")
9661 (license license:gpl2)))
d0eb09a1
RW
9662
9663(define-public r-grimport
9664 (package
9665 (name "r-grimport")
cb4a6e67 9666 (version "0.9-2")
d0eb09a1
RW
9667 (source
9668 (origin
9669 (method url-fetch)
9670 (uri (cran-uri "grImport" version))
9671 (sha256
9672 (base32
cb4a6e67 9673 "0n3y6dzy8s0ifvyrgwbly6cl14lmgd54dyi74s5i984apszpsp16"))))
d0eb09a1
RW
9674 (properties `((upstream-name . "grImport")))
9675 (build-system r-build-system)
9676 (inputs
9677 `(("ghostscript" ,ghostscript)))
9678 (propagated-inputs
9679 `(("r-xml" ,r-xml)))
9680 (home-page "https://cran.r-project.org/web/packages/grImport")
9681 (synopsis "Convert, import, and draw PostScript pictures")
9682 (description
9683 "This package provides functions for converting, importing, and drawing
9684PostScript pictures in R plots.")
9685 (license license:gpl2+)))
78735b9f
RW
9686
9687(define-public r-grimport2
9688 (package
9689 (name "r-grimport2")
407a04fa 9690 (version "0.1-5")
78735b9f
RW
9691 (source
9692 (origin
9693 (method url-fetch)
9694 (uri (cran-uri "grImport2" version))
9695 (sha256
9696 (base32
407a04fa 9697 "0dyb3nrrvxnkk9q5b136bdivcz1jj3ajx1kscm3k0kkpqjif0pls"))))
78735b9f
RW
9698 (properties `((upstream-name . "grImport2")))
9699 (build-system r-build-system)
9700 (propagated-inputs
9701 `(("r-base64enc" ,r-base64enc)
9702 ("r-jpeg" ,r-jpeg)
9703 ("r-png" ,r-png)
9704 ("r-xml" ,r-xml)))
9705 (home-page "https://cran.r-project.org/web/packages/grImport2/")
9706 (synopsis "Import SVG graphics")
9707 (description
9708 "This package provides functions for importing external vector images and
9709drawing them as part of R plots. This package is different from the
9710@code{grImport} package because, where that package imports PostScript format
9711images, this package imports SVG format images. Furthermore, this package
9712imports a specific subset of SVG, so external images must be preprocessed
9713using a package like @code{rsvg} to produce SVG that this package can import.
9714SVG features that are not supported by R graphics, such as gradient fills, can
9715be imported and then exported via the @code{gridSVG} package.")
9716 (license license:gpl2+)))
2871b670
RW
9717
9718(define-public r-kohonen
9719 (package
9720 (name "r-kohonen")
9721 (version "3.0.8")
9722 (source
9723 (origin
9724 (method url-fetch)
9725 (uri (cran-uri "kohonen" version))
9726 (sha256
9727 (base32
9728 "1zbfqa1qdlry8w6xhypkiknc5gn98v1ijhlsfka8zjg8ajhqgn1q"))))
9729 (build-system r-build-system)
9730 (propagated-inputs
9731 `(("r-mass" ,r-mass)
9732 ("r-rcpp" ,r-rcpp)))
9733 (home-page "https://cran.r-project.org/web/packages/kohonen")
9734 (synopsis "Supervised and unsupervised self-organising maps")
9735 (description
9736 "This package provides functions to train @dfn{self-organising
9737maps} (SOMs). Also interrogation of the maps and prediction using trained
9738maps are supported. The name of the package refers to Teuvo Kohonen, the
9739inventor of the SOM.")
9740 (license license:gpl2+)))
00436e2c
RW
9741
9742(define-public r-nnls
9743 (package
9744 (name "r-nnls")
9745 (version "1.4")
9746 (source
9747 (origin
9748 (method url-fetch)
9749 (uri (cran-uri "nnls" version))
9750 (sha256
9751 (base32
9752 "07vcrrxvswrvfiha6f3ikn640yg0m2b4yd9lkmim1g0jmsmpfp8f"))))
9753 (build-system r-build-system)
9754 (native-inputs `(("gfortran" ,gfortran)))
9755 (home-page "https://cran.r-project.org/web/packages/nnls")
9756 (synopsis "Lawson-Hanson algorithm for non-negative least squares")
9757 (description
9758 "This package provides an R interface to the Lawson-Hanson implementation
9759of an algorithm for @dfn{non-negative least squares} (NNLS). It also allows
9760the combination of non-negative and non-positive constraints.")
9761 (license license:gpl2+)))
25861356
RW
9762
9763(define-public r-iso
9764 (package
9765 (name "r-iso")
9766 (version "0.0-17")
9767 (source
9768 (origin
9769 (method url-fetch)
9770 (uri (cran-uri "Iso" version))
9771 (sha256
9772 (base32
9773 "0lljc99sdzdqj6d56qbsggibr6pkdwkh821bj70ianikyvmdc1y0"))))
9774 (properties `((upstream-name . "Iso")))
9775 (build-system r-build-system)
9776 (native-inputs `(("gfortran" ,gfortran)))
9777 (home-page "http://www.stat.auckland.ac.nz/~rolf/")
9778 (synopsis "Functions to perform isotonic regression")
9779 (description
9780 "This package provides support for linear order and unimodal
9781order (univariate) isotonic regression and bivariate isotonic regression with
9782linear order on both variables.")
9783 (license license:gpl2+)))
9401f56b
RW
9784
9785(define-public r-chemometricswithr
9786 (package
9787 (name "r-chemometricswithr")
e0417402 9788 (version "0.1.13")
9401f56b
RW
9789 (source
9790 (origin
9791 (method url-fetch)
9792 (uri (cran-uri "ChemometricsWithR" version))
9793 (sha256
9794 (base32
e0417402 9795 "166va1g3m1wv21qkmw4wpz0bsrclh3jih8smxphdc13l9pqgclpq"))))
9401f56b
RW
9796 (properties
9797 `((upstream-name . "ChemometricsWithR")))
9798 (build-system r-build-system)
9799 (propagated-inputs
9800 `(("r-devtools" ,r-devtools)
9801 ("r-kohonen" ,r-kohonen)
9802 ("r-mass" ,r-mass)
9803 ("r-pls" ,r-pls)))
9804 (home-page "https://github.com/rwehrens/CWR")
9805 (synopsis "Chemometrics with R")
9806 (description
9807 "This package provides functions and scripts used in the book
9808\"Chemometrics with R - Multivariate Data Analysis in the Natural Sciences and
9809Life Sciences\" by Ron Wehrens, Springer (2011).")
9810 (license license:gpl2+)))
d28be7b7
RW
9811
9812(define-public r-als
9813 (package
9814 (name "r-als")
9815 (version "0.0.6")
9816 (source
9817 (origin
9818 (method url-fetch)
9819 (uri (cran-uri "ALS" version))
9820 (sha256
9821 (base32
9822 "1swrn39vy50fazkpf97r7c542gkj6mlvy8gmcxllg7mf2mqx546a"))))
9823 (properties `((upstream-name . "ALS")))
9824 (build-system r-build-system)
9825 (propagated-inputs
9826 `(("r-iso" ,r-iso)
9827 ("r-nnls" ,r-nnls)))
9828 (home-page "https://cran.r-project.org/web/packages/ALS")
9829 (synopsis "Multivariate curve resolution alternating least squares")
9830 (description
9831 "Alternating least squares is often used to resolve components
9832contributing to data with a bilinear structure; the basic technique may be
9833extended to alternating constrained least squares. This package provides an
9834implementation of @dfn{multivariate curve resolution alternating least
9835squares} (MCR-ALS).
9836
9837Commonly applied constraints include unimodality, non-negativity, and
9838normalization of components. Several data matrices may be decomposed
9839simultaneously by assuming that one of the two matrices in the bilinear
9840decomposition is shared between datasets.")
9841 (license license:gpl2+)))
895efece
RW
9842
9843(define-public r-strucchange
9844 (package
9845 (name "r-strucchange")
9846 (version "1.5-1")
9847 (source
9848 (origin
9849 (method url-fetch)
9850 (uri (cran-uri "strucchange" version))
9851 (sha256
9852 (base32
9853 "0cdgvl6kphm2i59bmnppn1y3kv65ml111bk7yzpcx7vv8wh2w3kl"))))
9854 (build-system r-build-system)
9855 (propagated-inputs
9856 `(("r-sandwich" ,r-sandwich)
9857 ("r-zoo" ,r-zoo)))
9858 (home-page "https://cran.r-project.org/web/packages/strucchange")
9859 (synopsis "Testing, monitoring, and dating structural changes")
9860 (description
9861 "This package provides tools for testing, monitoring and dating
9862structural changes in (linear) regression models. It features tests/methods
9863from the generalized fluctuation test framework as well as from the F
9864test (Chow test) framework. This includes methods to fit, plot and test
9865fluctuation processes (e.g., CUSUM, MOSUM, recursive/moving estimates) and F
9866statistics, respectively. It is possible to monitor incoming data online
9867using fluctuation processes. Finally, the breakpoints in regression models
9868with structural changes can be estimated together with confidence intervals.
9869Emphasis is always given to methods for visualizing the data.")
9870 ;; Either of these two GPL versions
9871 (license (list license:gpl2 license:gpl3))))
e7176ac5
RW
9872
9873(define-public r-pixmap
9874 (package
9875 (name "r-pixmap")
9876 (version "0.4-11")
9877 (source
9878 (origin
9879 (method url-fetch)
9880 (uri (cran-uri "pixmap" version))
9881 (sha256
9882 (base32
9883 "04klxp6jndw1bp6z40v20fbmdmdpfca2g0czmmmgbkark9s1183g"))))
9884 (build-system r-build-system)
9885 (home-page "https://cran.r-project.org/web/packages/pixmap")
9886 (synopsis "Tools for bitmap images")
9887 (description
9888 "This package provides functions for importing, exporting, plotting and
9889other manipulations of bitmapped images.")
9890 (license license:gpl2)))
9170eb7f
RW
9891
9892(define-public r-rapidjsonr
9893 (package
9894 (name "r-rapidjsonr")
9895 (version "1.1")
9896 (source
9897 (origin
9898 (method url-fetch)
9899 (uri (cran-uri "rapidjsonr" version))
9900 (sha256
9901 (base32
9902 "0h4phjjhykbb45rg5b1xn48vqxdcvcngbm0416ds8in7j469wbwd"))))
9903 (build-system r-build-system)
9904 (home-page "https://cran.r-project.org/web/packages/rapidjsonr")
9905 (synopsis "JSON parser")
9906 (description
9907 "This package provides JSON parsing capability through the Rapidjson
9908library.")
9909 (license license:expat)))
ad6fea16
RW
9910
9911(define-public r-ontologyindex
9912 (package
9913 (name "r-ontologyindex")
209e504b 9914 (version "2.5")
ad6fea16
RW
9915 (source
9916 (origin
9917 (method url-fetch)
9918 (uri (cran-uri "ontologyIndex" version))
9919 (sha256
9920 (base32
209e504b 9921 "127hlf0z5fmbgnq4p9h8nvn6p72d2fpcn846zzb99s213421jnry"))))
ad6fea16
RW
9922 (properties `((upstream-name . "ontologyIndex")))
9923 (build-system r-build-system)
9924 (home-page "https://cran.r-project.org/web/packages/ontologyIndex")
9925 (synopsis "Functions for processing ontologies in R")
9926 (description
9927 "This package provides functions for reading ontologies into R as lists
9928and manipulating sets of ontological terms.")
9929 (license license:gpl2+)))
dfd09f7b
RW
9930
9931(define-public r-bigrquery
9932 (package
9933 (name "r-bigrquery")
13f9e5d1 9934 (version "1.1.1")
dfd09f7b
RW
9935 (source
9936 (origin
9937 (method url-fetch)
9938 (uri (cran-uri "bigrquery" version))
9939 (sha256
9940 (base32
13f9e5d1 9941 "1if39xkr231xmjq10fx2g7bgg4jgfd3wzx1p9g3pq4hbf2s6x0is"))))
dfd09f7b
RW
9942 (build-system r-build-system)
9943 (propagated-inputs
9944 `(("r-assertthat" ,r-assertthat)
4bc5d451 9945 ("r-bit64" ,r-bit64)
dfd09f7b
RW
9946 ("r-curl" ,r-curl)
9947 ("r-dbi" ,r-dbi)
9948 ("r-glue" ,r-glue)
9949 ("r-httr" ,r-httr)
9950 ("r-jsonlite" ,r-jsonlite)
9951 ("r-prettyunits" ,r-prettyunits)
9952 ("r-progress" ,r-progress)
9953 ("r-rapidjsonr" ,r-rapidjsonr)
9954 ("r-rcpp" ,r-rcpp)
9955 ("r-tibble" ,r-tibble)))
9956 (home-page "https://github.com/rstats-db/bigrquery")
9957 (synopsis "R interface to Google's BigQuery API")
9958 (description
9959 "This package provides an R interface to Google's BigQuery database.")
9960 (license license:gpl3)))
1ab51604
RW
9961
9962(define-public r-gmp
9963 (package
9964 (name "r-gmp")
83bfddd1 9965 (version "0.5-13.5")
1ab51604
RW
9966 (source
9967 (origin
9968 (method url-fetch)
9969 (uri (cran-uri "gmp" version))
9970 (sha256
9971 (base32
83bfddd1 9972 "042mzsl6z6s61fy5m21yf9q83l08vnyqljn4iax7kqyiycpsp0gn"))))
1ab51604
RW
9973 (build-system r-build-system)
9974 (arguments
9975 '(#:phases
9976 (modify-phases %standard-phases
9977 (add-after 'unpack 'set-CC
9978 (lambda _ (setenv "CC" "gcc") #t)))))
9979 (inputs `(("gmp" ,gmp)))
9980 (home-page "https://cran.r-project.org/web/packages/gmp")
9981 (synopsis "Multiple precision arithmetic")
9982 (description
9983 "This package supports multiple precision arithmetic (big integers and
9984rationals, prime number tests, matrix computation), \"arithmetic without
9985limitations\" using the GNU Multiple Precision library.")
9986 ;; Any version of the GPL.
9987 (license license:gpl3+)))
a536c7c9
RW
9988
9989(define-public r-rmpfr
9990 (package
9991 (name "r-rmpfr")
df00ca25 9992 (version "0.7-2")
a536c7c9
RW
9993 (source
9994 (origin
9995 (method url-fetch)
9996 (uri (cran-uri "Rmpfr" version))
9997 (sha256
9998 (base32
df00ca25 9999 "1zq3as34r27v2yc729731997wdhxb6cs5ilmak4nmsljabnac7gc"))))
a536c7c9
RW
10000 (properties `((upstream-name . "Rmpfr")))
10001 (build-system r-build-system)
10002 (inputs
10003 `(("mpfr" ,mpfr)))
10004 (propagated-inputs
10005 `(("r-gmp" ,r-gmp)))
10006 (home-page "http://rmpfr.r-forge.r-project.org/")
10007 (synopsis "R bindings to the MPFR library")
10008 (description
10009 "This package supports arithmetic (via S4 classes and methods) for
10010arbitrary precision floating point numbers, including transcendental
10011functions. To this end, the package interfaces with the @dfn{Multiple
10012Precision Floating-Point Reliable} (MPFR) library.")
10013 (license license:gpl2+)))
8004bb24
RW
10014
10015(define-public r-assertive-base
10016 (package
10017 (name "r-assertive-base")
10018 (version "0.0-7")
10019 (source
10020 (origin
10021 (method url-fetch)
10022 (uri (cran-uri "assertive.base" version))
10023 (sha256
10024 (base32
10025 "1xs3ysvj0z57c58jw57pckq2rynia6ks4rmjmc02alczhk54wbgh"))))
10026 (properties
10027 `((upstream-name . "assertive.base")))
10028 (build-system r-build-system)
10029 (home-page "https://bitbucket.org/richierocks/assertive.base")
10030 (synopsis "Core of the assertive package")
10031 (description
10032 "This package provides a minimal set of predicates and assertions used by
10033the assertive package. This is mainly for use by other package developers who
10034want to include run-time testing features in their own packages.")
10035 (license license:gpl3+)))
4b2d17ed
RW
10036
10037(define-public r-assertive-properties
10038 (package
10039 (name "r-assertive-properties")
10040 (version "0.0-4")
10041 (source
10042 (origin
10043 (method url-fetch)
10044 (uri (cran-uri "assertive.properties" version))
10045 (sha256
10046 (base32
10047 "0sqs54acs9qk9kvm32rxzfbzxz1l8mjahpfnw7r30z2brgz661jw"))))
10048 (properties
10049 `((upstream-name . "assertive.properties")))
10050 (build-system r-build-system)
10051 (propagated-inputs
10052 `(("r-assertive-base" ,r-assertive-base)))
10053 (home-page "https://bitbucket.org/richierocks/assertive.properties")
10054 (synopsis "Assertions to check properties of variables")
10055 (description
10056 "This package provides a set of predicates and assertions for checking
10057the properties of variables, such as length, names and attributes. This is
10058mainly for use by other package developers who want to include run-time
10059testing features in their own packages.")
10060 (license license:gpl3+)))
dac9c1f6
RW
10061
10062(define-public r-assertive-numbers
10063 (package
10064 (name "r-assertive-numbers")
10065 (version "0.0-2")
10066 (source
10067 (origin
10068 (method url-fetch)
10069 (uri (cran-uri "assertive.numbers" version))
10070 (sha256
10071 (base32
10072 "0jc3ss64j4m7bjydhagwwmka5n7c72vpw4kfcch0m5jvkq5qrqds"))))
10073 (properties
10074 `((upstream-name . "assertive.numbers")))
10075 (build-system r-build-system)
10076 (propagated-inputs
10077 `(("r-assertive-base" ,r-assertive-base)))
10078 (home-page "https://bitbucket.org/richierocks/assertive.numbers")
10079 (synopsis "Assertions to check properties of numbers")
10080 (description
10081 "This package provides a set of predicates and assertions for checking
10082the properties of numbers. This is mainly for use by other package developers
10083who want to include run-time testing features in their own packages.")
10084 (license license:gpl3+)))
2da2d2f6
RW
10085
10086(define-public r-assertive-sets
10087 (package
10088 (name "r-assertive-sets")
10089 (version "0.0-3")
10090 (source
10091 (origin
10092 (method url-fetch)
10093 (uri (cran-uri "assertive.sets" version))
10094 (sha256
10095 (base32
10096 "1cqvh2syvh5b6d85h601zjmsdbbf3h8q98ids4dfl4frdshpasc7"))))
10097 (properties
10098 `((upstream-name . "assertive.sets")))
10099 (build-system r-build-system)
10100 (propagated-inputs
10101 `(("r-assertive-base" ,r-assertive-base)))
10102 (home-page "https://bitbucket.org/richierocks/assertive.sets")
10103 (synopsis "Assertions to check properties of sets")
10104 (description
10105 "This package provides a set of predicates and assertions for checking
10106the properties of sets. This is mainly for use by other package developers
10107who want to include run-time testing features in their own packages.")
10108 (license license:gpl3+)))
905aa46a
RW
10109
10110(define-public r-assertive-matrices
10111 (package
10112 (name "r-assertive-matrices")
10113 (version "0.0-2")
10114 (source
10115 (origin
10116 (method url-fetch)
10117 (uri (cran-uri "assertive.matrices" version))
10118 (sha256
10119 (base32
10120 "16sykzcndv6y2d43x6v9n7m95kv76364h39kh10w4z0xw6ksfqil"))))
10121 (properties
10122 `((upstream-name . "assertive.matrices")))
10123 (build-system r-build-system)
10124 (propagated-inputs
10125 `(("r-assertive-base" ,r-assertive-base)))
10126 (home-page "https://bitbucket.org/richierocks/assertive.matrices")
10127 (synopsis "Assertions to check properties of matrices")
10128 (description
10129 "This package provides a set of predicates and assertions for checking
10130the properties of matrices. This is mainly for use by other package
10131developers who want to include run-time testing features in their own
10132packages.")
10133 (license license:gpl3+)))
c358b5d4
RW
10134
10135(define-public r-assertive-models
10136 (package
10137 (name "r-assertive-models")
10138 (version "0.0-2")
10139 (source
10140 (origin
10141 (method url-fetch)
10142 (uri (cran-uri "assertive.models" version))
10143 (sha256
10144 (base32
10145 "0bn4j4v5qvb2d672cgri61p8d9v258pmz35y3lvm6b9mdxwdi9mr"))))
10146 (properties
10147 `((upstream-name . "assertive.models")))
10148 (build-system r-build-system)
10149 (propagated-inputs
10150 `(("r-assertive-base" ,r-assertive-base)))
10151 (home-page "https://bitbucket.org/richierocks/assertive.models")
10152 (synopsis "Assertions to check properties of models")
10153 (description
10154 "This package provides a set of predicates and assertions for checking
10155the properties of models. This is mainly for use by other package developers
10156who want to include run-time testing features in their own packages.")
10157 (license license:gpl3+)))
dcafcfb4
RW
10158
10159(define-public r-assertive-reflection
10160 (package
10161 (name "r-assertive-reflection")
10162 (version "0.0-4")
10163 (source
10164 (origin
10165 (method url-fetch)
10166 (uri (cran-uri "assertive.reflection" version))
10167 (sha256
10168 (base32
10169 "19zmsbn00crfqm0kwd9ys5gv87xs3gi6wmlikrz9xiwzm7hp4dhj"))))
10170 (properties
10171 `((upstream-name . "assertive.reflection")))
10172 (build-system r-build-system)
10173 (propagated-inputs
10174 `(("r-assertive-base" ,r-assertive-base)))
10175 (home-page "https://bitbucket.org/richierocks/assertive.reflection")
10176 (synopsis "Assertions for checking the state of R")
10177 (description
10178 "This package provides a set of predicates and assertions for checking
10179the state and capabilities of R, the operating system it is running on, and
10180the IDE being used. This is mainly for use by other package developers who
10181want to include run-time testing features in their own packages.")
10182 (license license:gpl3+)))
5e3bd355
RW
10183
10184(define-public r-assertive-types
10185 (package
10186 (name "r-assertive-types")
10187 (version "0.0-3")
10188 (source
10189 (origin
10190 (method url-fetch)
10191 (uri (cran-uri "assertive.types" version))
10192 (sha256
10193 (base32
10194 "0zxq1jfrzgw95ll7alvm0xnk7aihjdksngq4ya2whyvfjbmv4vdb"))))
10195 (properties
10196 `((upstream-name . "assertive.types")))
10197 (build-system r-build-system)
10198 (propagated-inputs
10199 `(("r-assertive-base" ,r-assertive-base)
10200 ("r-assertive-properties" ,r-assertive-properties)
10201 ("r-codetools" ,r-codetools)))
10202 (home-page "https://bitbucket.org/richierocks/assertive.types")
10203 (synopsis "Assertions to check types of variables")
10204 (description
10205 "This package provides a set of predicates and assertions for checking
10206the types of variables. This is mainly for use by other package developers
10207who want to include run-time testing features in their own packages.")
10208 (license license:gpl3+)))
1f0a761a
RW
10209
10210(define-public r-assertive-files
10211 (package
10212 (name "r-assertive-files")
10213 (version "0.0-2")
10214 (source
10215 (origin
10216 (method url-fetch)
10217 (uri (cran-uri "assertive.files" version))
10218 (sha256
10219 (base32
10220 "02pfz8j5vwcj5kl6zca46894li7lxwnlrr29j922f14ay6kdssmy"))))
10221 (properties
10222 `((upstream-name . "assertive.files")))
10223 (build-system r-build-system)
10224 (propagated-inputs
10225 `(("r-assertive-base" ,r-assertive-base)
10226 ("r-assertive-numbers" ,r-assertive-numbers)))
10227 (home-page "https://bitbucket.org/richierocks/assertive.files")
10228 (synopsis "Assertions to check properties of files")
10229 (description
10230 "This package provides a set of predicates and assertions for checking
10231the properties of files and connections. This is mainly for use by other
10232package developers who want to include run-time testing features in their own
10233packages.")
10234 (license license:gpl3+)))
50ce8b1e
RW
10235
10236(define-public r-assertive-code
10237 (package
10238 (name "r-assertive-code")
10239 (version "0.0-3")
10240 (source
10241 (origin
10242 (method url-fetch)
10243 (uri (cran-uri "assertive.code" version))
10244 (sha256
10245 (base32
10246 "1qhbp668zfvhqs8avkhg9amp4zyazz6dsy4fc6kpdmw3sv8yi07g"))))
10247 (properties
10248 `((upstream-name . "assertive.code")))
10249 (build-system r-build-system)
10250 (propagated-inputs
10251 `(("r-assertive-base" ,r-assertive-base)
10252 ("r-assertive-properties" ,r-assertive-properties)
10253 ("r-assertive-types" ,r-assertive-types)))
10254 (home-page "https://bitbucket.org/richierocks/assertive.code")
10255 (synopsis "Assertions to check properties of code")
10256 (description
10257 "This package provides a set of predicates and assertions for checking
10258the properties of code. This is mainly for use by other package developers
10259who want to include run-time testing features in their own packages.")
10260 (license license:gpl3+)))
29d9a2af
RW
10261
10262(define-public r-assertive-datetimes
10263 (package
10264 (name "r-assertive-datetimes")
10265 (version "0.0-2")
10266 (source
10267 (origin
10268 (method url-fetch)
10269 (uri (cran-uri "assertive.datetimes" version))
10270 (sha256
10271 (base32
10272 "00a98fx8p3pr3ckayh8wmxmm4rz01s67wah9697m92yci6pv3m78"))))
10273 (properties
10274 `((upstream-name . "assertive.datetimes")))
10275 (build-system r-build-system)
10276 (propagated-inputs
10277 `(("r-assertive-base" ,r-assertive-base)
10278 ("r-assertive-types" ,r-assertive-types)))
10279 (home-page "https://bitbucket.org/richierocks/assertive.datetimes")
10280 (synopsis "Assertions to check properties of dates and times")
10281 (description
10282 "This package provides a set of predicates and assertions for checking
10283the properties of dates and times. This is mainly for use by other package
10284developers who want to include run-time testing features in their own
10285packages.")
10286 (license license:gpl3+)))
66d0a0a7
RW
10287
10288(define-public r-assertive-strings
10289 (package
10290 (name "r-assertive-strings")
10291 (version "0.0-3")
10292 (source
10293 (origin
10294 (method url-fetch)
10295 (uri (cran-uri "assertive.strings" version))
10296 (sha256
10297 (base32
10298 "0n6jrk88670g4ym0r8ii40a08a90z1xadj8wcryk8h0nl04dchfm"))))
10299 (properties
10300 `((upstream-name . "assertive.strings")))
10301 (build-system r-build-system)
10302 (propagated-inputs
10303 `(("r-assertive-base" ,r-assertive-base)
10304 ("r-assertive-types" ,r-assertive-types)
10305 ("r-stringi" ,r-stringi)))
10306 (home-page "https://bitbucket.org/richierocks/assertive.strings")
10307 (synopsis "Assertions to check properties of strings")
10308 (description
10309 "This package provides a set of predicates and assertions for checking
10310the properties of strings. This is mainly for use by other package developers
10311who want to include run-time testing features in their own packages.")
10312 (license license:gpl3+)))
6d3702e5
RW
10313
10314(define-public r-assertive-data-us
10315 (package
10316 (name "r-assertive-data-us")
10317 (version "0.0-2")
10318 (source
10319 (origin
10320 (method url-fetch)
10321 (uri (cran-uri "assertive.data.us" version))
10322 (sha256
10323 (base32
10324 "1bgspn0sccmp9z7s7djvdvprgxlyc5vrxznp4zfjb79kwvgn83hq"))))
10325 (properties
10326 `((upstream-name . "assertive.data.us")))
10327 (build-system r-build-system)
10328 (propagated-inputs
10329 `(("r-assertive-base" ,r-assertive-base)
10330 ("r-assertive-strings" ,r-assertive-strings)))
10331 (home-page "https://bitbucket.org/richierocks/assertive.data.us")
10332 (synopsis "Assertions to check properties of strings")
10333 (description
10334 "This package provides a set of predicates and assertions for checking
10335the properties of US-specific complex data types. This is mainly for use by
10336other package developers who want to include run-time testing features in
10337their own packages.")
10338 (license license:gpl3+)))
39ef8e09
RW
10339
10340(define-public r-assertive-data-uk
10341 (package
10342 (name "r-assertive-data-uk")
10343 (version "0.0-2")
10344 (source
10345 (origin
10346 (method url-fetch)
10347 (uri (cran-uri "assertive.data.uk" version))
10348 (sha256
10349 (base32
10350 "1fzjvhwp7mwkqqix29khvs6zcrc82n6j4czvzzb473vyjyvdlj5b"))))
10351 (properties
10352 `((upstream-name . "assertive.data.uk")))
10353 (build-system r-build-system)
10354 (propagated-inputs
10355 `(("r-assertive-base" ,r-assertive-base)
10356 ("r-assertive-strings" ,r-assertive-strings)))
10357 (home-page "https://bitbucket.org/richierocks/assertive.data.uk")
10358 (synopsis "Assertions to check properties of strings")
10359 (description
10360 "This package provides a set of predicates and assertions for checking
10361the properties of UK-specific complex data types. This is mainly for use by
10362other package developers who want to include run-time testing features in
10363their own packages.")
10364 (license license:gpl3+)))
39231abf
RW
10365
10366(define-public r-assertive-data
10367 (package
10368 (name "r-assertive-data")
10369 (version "0.0-3")
10370 (source
10371 (origin
10372 (method url-fetch)
10373 (uri (cran-uri "assertive.data" version))
10374 (sha256
10375 (base32
10376 "00cvg2g36mdl8plrzx40m63qd55742mddqrchwy9n3c7mm4gn02s"))))
10377 (properties
10378 `((upstream-name . "assertive.data")))
10379 (build-system r-build-system)
10380 (propagated-inputs
10381 `(("r-assertive-base" ,r-assertive-base)
10382 ("r-assertive-strings" ,r-assertive-strings)))
10383 (home-page "https://bitbucket.org/richierocks/assertive.data")
10384 (synopsis "Assertions to check properties of data")
10385 (description
10386 "This package provides a set of predicates and assertions for checking
10387the properties of (country independent) complex data types. This is mainly
10388for use by other package developers who want to include run-time testing
10389features in their own packages.")
10390 (license license:gpl3+)))
658b2b62
RW
10391
10392(define-public r-assertive
10393 (package
10394 (name "r-assertive")
10395 (version "0.3-5")
10396 (source
10397 (origin
10398 (method url-fetch)
10399 (uri (cran-uri "assertive" version))
10400 (sha256
10401 (base32
10402 "0blbbhlxcb5ffdxqxi62xs33ljiawh6s22a0pyvbbh79jf46rzr3"))))
10403 (build-system r-build-system)
10404 (propagated-inputs
10405 `(("r-assertive-base" ,r-assertive-base)
10406 ("r-assertive-code" ,r-assertive-code)
10407 ("r-assertive-data" ,r-assertive-data)
10408 ("r-assertive-data-uk" ,r-assertive-data-uk)
10409 ("r-assertive-data-us" ,r-assertive-data-us)
10410 ("r-assertive-datetimes" ,r-assertive-datetimes)
10411 ("r-assertive-files" ,r-assertive-files)
10412 ("r-assertive-matrices" ,r-assertive-matrices)
10413 ("r-assertive-models" ,r-assertive-models)
10414 ("r-assertive-numbers" ,r-assertive-numbers)
10415 ("r-assertive-properties" ,r-assertive-properties)
10416 ("r-assertive-reflection" ,r-assertive-reflection)
10417 ("r-assertive-sets" ,r-assertive-sets)
10418 ("r-assertive-strings" ,r-assertive-strings)
10419 ("r-assertive-types" ,r-assertive-types)
10420 ("r-knitr" ,r-knitr)))
10421 (home-page "https://bitbucket.org/richierocks/assertive")
10422 (synopsis "Readable check functions to ensure code integrity")
10423 (description
10424 "This package provides lots of predicates (@code{is_*} functions) to
10425check the state of your variables, and assertions (@code{assert_*} functions)
10426to throw errors if they aren't in the right form.")
10427 (license license:gpl3+)))
f51dcc27
RW
10428
10429(define-public r-dotcall64
10430 (package
10431 (name "r-dotcall64")
10432 (version "1.0-0")
10433 (source
10434 (origin
10435 (method url-fetch)
10436 (uri (cran-uri "dotCall64" version))
10437 (sha256
10438 (base32
10439 "1b8p7m3w0m7bp977c6jz74xkd611cxg11j49yza59k5fp338scb9"))))
10440 (properties `((upstream-name . "dotCall64")))
10441 (build-system r-build-system)
10442 (native-inputs `(("gfortran" ,gfortran)))
10443 (home-page "https://git.math.uzh.ch/reinhard.furrer/dotCall64")
10444 (synopsis "Enhanced foreign function interface supporting long vectors")
10445 (description
10446 "This package provides @code{.C64()}, an enhanced version of @code{.C()}
10447and @code{.Fortran()} from the R foreign function interface. @code{.C64()}
10448supports long vectors, arguments of type 64-bit integer, and provides a
10449mechanism to avoid unnecessary copies of read-only and write-only arguments.
10450This makes it a convenient and fast interface to C/C++ and Fortran code.")
10451 (license license:gpl2+)))
90104ecd
RW
10452
10453(define-public r-spam
10454 (package
10455 (name "r-spam")
6cea61eb 10456 (version "2.2-2")
90104ecd
RW
10457 (source
10458 (origin
10459 (method url-fetch)
10460 (uri (cran-uri "spam" version))
10461 (sha256
10462 (base32
6cea61eb 10463 "024dgfnjfxvsiymbzrhadinamj6qy509f4sbd1zxql8ymkyxn7vi"))))
90104ecd
RW
10464 (build-system r-build-system)
10465 (propagated-inputs
10466 `(("r-dotcall64" ,r-dotcall64)))
10467 (native-inputs `(("gfortran" ,gfortran)))
10468 (home-page "https://www.math.uzh.ch/pages/spam/")
10469 (synopsis "Sparse matrix algebra")
10470 (description
10471 "This package provides a set of functions for sparse matrix algebra.
10472Differences with other sparse matrix packages are:
10473
10474@enumerate
10475@item it only supports (essentially) one sparse matrix format;
10476@item it is based on transparent and simple structure(s);
10477@item it is tailored for MCMC calculations within G(M)RF;
10478@item and it is fast and scalable (with the extension package @code{spam64}).
10479@end enumerate\n")
10480 ;; Either of these licenses
10481 (license (list license:bsd-3 license:lgpl2.0))))
32725458
RW
10482
10483(define-public r-fields
10484 (package
10485 (name "r-fields")
9e7526ad 10486 (version "9.8-1")
32725458
RW
10487 (source
10488 (origin
10489 (method url-fetch)
10490 (uri (cran-uri "fields" version))
10491 (sha256
10492 (base32
9e7526ad 10493 "1zb44bm9mwbnld2q915nxxji3hqa025cmlaar7da35lyqlrjl30v"))))
32725458
RW
10494 (build-system r-build-system)
10495 (propagated-inputs
10496 `(("r-maps" ,r-maps)
10497 ("r-spam" ,r-spam)))
10498 (native-inputs
10499 `(("gfortran" ,gfortran)))
10500 (home-page "http://www.image.ucar.edu/fields")
10501 (synopsis "Tools for spatial data")
10502 (description
10503 "This is a package for curve, surface and function fitting with an
10504emphasis on splines, spatial data and spatial statistics. The major methods
10505include cubic, and thin plate splines, Kriging, and compactly supported
10506covariance functions for large data sets.")
10507 (license license:gpl2+)))
99c164a5
RW
10508
10509(define-public r-spatialextremes
10510 (package
10511 (name "r-spatialextremes")
10512 (version "2.0-7")
10513 (source
10514 (origin
10515 (method url-fetch)
10516 (uri (cran-uri "SpatialExtremes" version))
10517 (sha256
10518 (base32
10519 "1y0h1pcfqp9ynxsr3yrfbihlwm25ypyb88jmm5k2g7xvm8h9g050"))))
10520 (properties
10521 `((upstream-name . "SpatialExtremes")))
10522 (build-system r-build-system)
10523 (propagated-inputs
10524 `(("r-fields" ,r-fields)
10525 ("r-maps" ,r-maps)))
10526 (home-page "http://spatialextremes.r-forge.r-project.org/")
10527 (synopsis "Modelling spatial extremes")
10528 (description
10529 "This package provides tools for the statistical modelling of spatial
10530extremes using max-stable processes, copula or Bayesian hierarchical models.
10531More precisely, this package allows (conditional) simulations from various
10532parametric max-stable models, analysis of the extremal spatial dependence, the
10533fitting of such processes using composite likelihoods or least square (simple
10534max-stable processes only), model checking and selection and prediction.")
10535 (license license:gpl2+)))
c2d6e866
RW
10536
10537(define-public r-drc
10538 (package
10539 (name "r-drc")
10540 (version "3.0-1")
10541 (source
10542 (origin
10543 (method url-fetch)
10544 (uri (cran-uri "drc" version))
10545 (sha256
10546 (base32
10547 "0c8xn8ripzq270hy8d16fcnx02l02alddznd7fqwk3jyi6113h1y"))))
10548 (build-system r-build-system)
10549 (propagated-inputs
10550 `(("r-car" ,r-car)
10551 ("r-gtools" ,r-gtools)
10552 ("r-mass" ,r-mass)
10553 ("r-multcomp" ,r-multcomp)
10554 ("r-plotrix" ,r-plotrix)
10555 ("r-scales" ,r-scales)))
10556 (home-page "https://cran.r-project.org/web/packages/drc")
10557 (synopsis "Analysis of dose-response curves")
10558 (description
10559 "This package provides a suite of flexible and versatile model fitting
10560and after-fitting functions for the analysis of dose-response data.")
10561 (license license:gpl2+)))
4fcbd7ea
RW
10562
10563(define-public r-rmeta
10564 (package
10565 (name "r-rmeta")
10566 (version "3.0")
10567 (source
10568 (origin
10569 (method url-fetch)
10570 (uri (cran-uri "rmeta" version))
10571 (sha256
10572 (base32
10573 "0vkbnxp579v8zmcv1isdbzj5swpr6fq17zwparxcvzswjc2x9ydr"))))
10574 (build-system r-build-system)
10575 (home-page "https://cran.r-project.org/web/packages/rmeta")
10576 (synopsis "Tools for meta-analysis")
10577 (description
10578 "This package provides functions for simple fixed and random effects
10579meta-analysis for two-sample comparisons and cumulative meta-analyses. It
10580draws standard summary plots, funnel plots, and computes summaries and tests
10581for association and heterogeneity.")
10582 (license license:gpl2)))
afc0d815
RW
10583
10584(define-public r-bootstrap
10585 (package
10586 (name "r-bootstrap")
10587 (version "2017.2")
10588 (source
10589 (origin
10590 (method url-fetch)
10591 (uri (cran-uri "bootstrap" version))
10592 (sha256
10593 (base32
10594 "08lmsy7k8wsgv89yc904c6fidcymr1ma2ry4fl0p69p21v4iiwa4"))))
10595 (build-system r-build-system)
10596 (native-inputs `(("gfortran" ,gfortran)))
10597 (home-page "https://cran.r-project.org/web/packages/bootstrap")
10598 (synopsis "Functions for the book \"An Introduction to the Bootstrap\"")
10599 (description
10600 "This package provides software and data for the book \"An Introduction
10601to the Bootstrap\" by B. Efron and R. Tibshirani, 1993, Chapman and Hall.
10602This package is primarily provided for projects already based on it, and for
10603support of the book. New projects should preferentially use the recommended
10604package \"boot\".")
10605 (license license:bsd-3)))
1ea708af
RW
10606
10607(define-public r-survivalroc
10608 (package
10609 (name "r-survivalroc")
10610 (version "1.0.3")
10611 (source
10612 (origin
10613 (method url-fetch)
10614 (uri (cran-uri "survivalROC" version))
10615 (sha256
10616 (base32
10617 "0wnd65ff5w679hxa1zrpfrx9qg47q21pjxppsga6m3h4iq1yfj8l"))))
10618 (properties `((upstream-name . "survivalROC")))
10619 (build-system r-build-system)
10620 (home-page "https://cran.r-project.org/web/packages/survivalROC")
10621 (synopsis "Time-dependent ROC curve estimation from censored survival data")
10622 (description
10623 "Compute time-dependent ROC curve from censored survival data using
10624Kaplan-Meier (KM) or Nearest Neighbor Estimation (NNE) method of Heagerty,
10625Lumley & Pepe (Biometrics, Vol 56 No 2, 2000, PP 337-344)")
10626 (license license:gpl2+)))
6a5bfe09
RW
10627
10628(define-public r-longitudinal
10629 (package
10630 (name "r-longitudinal")
10631 (version "1.1.12")
10632 (source
10633 (origin
10634 (method url-fetch)
10635 (uri (cran-uri "longitudinal" version))
10636 (sha256
10637 (base32
10638 "1d83ws28nxi3kw5lgd5n5y7865djq7ky72fw3ddi1fkkhg1r9y6l"))))
10639 (build-system r-build-system)
10640 (propagated-inputs `(("r-corpcor" ,r-corpcor)))
10641 (home-page "http://strimmerlab.org/software/longitudinal/")
10642 (synopsis "Analysis of multiple time course data")
10643 (description
10644 "This package contains general data structures and functions for
10645longitudinal data with multiple variables, repeated measurements, and
10646irregularly spaced time points. It also implements a shrinkage estimator of
10647dynamical correlation and dynamical covariance.")
10648 (license license:gpl3+)))
e50722c8
RW
10649
10650(define-public r-genenet
10651 (package
10652 (name "r-genenet")
10653 (version "1.2.13")
10654 (source
10655 (origin
10656 (method url-fetch)
10657 (uri (cran-uri "GeneNet" version))
10658 (sha256
10659 (base32
10660 "0w52apk0nnr8nsskf26ff7ana8xiksr8wqmkjxzwhzgg7fncm61p"))))
10661 (properties `((upstream-name . "GeneNet")))
10662 (build-system r-build-system)
10663 (propagated-inputs
10664 `(("r-corpcor" ,r-corpcor)
10665 ("r-fdrtool" ,r-fdrtool)
10666 ("r-longitudinal" ,r-longitudinal)))
10667 (home-page "http://strimmerlab.org/software/genenet/")
10668 (synopsis "Modeling and inferring gene networks")
10669 (description
10670 "This package analyzes gene expression (time series) data with focus on
10671the inference of gene networks. In particular, GeneNet implements the methods
10672of Schaefer and Strimmer (2005a,b,c) and Opgen-Rhein and Strimmer (2006, 2007)
10673for learning large-scale gene association networks (including assignment of
10674putative directions).")
10675 (license license:gpl3+)))
fe4e9f03
RW
10676
10677(define-public r-rbamtools
10678 (package
10679 (name "r-rbamtools")
10680 (version "2.16.11.2")
10681 (source
10682 (origin
10683 (method url-fetch)
10684 (uri (cran-uri "rbamtools" version))
10685 (sha256
10686 (base32
10687 "0gzkb1xyrkriv45wq8gv7qfwjslnvwkfkk5jjc4wg5kmm0ydpdzj"))))
10688 (build-system r-build-system)
10689 (inputs `(("zlib" ,zlib)))
10690 (propagated-inputs
10691 `(("r-refgenome" ,r-refgenome)))
10692 (home-page "https://cran.r-project.org/web/packages/rbamtools")
10693 (synopsis "Read and write BAM (binary alignment) files")
10694 (description
10695 "This package provides an R interface to functions of the SAMtools
10696library.")
10697 (license license:artistic2.0)))
e3c0e3e3
RW
10698
10699(define-public r-protviz
10700 (package
10701 (name "r-protviz")
c3e5b456 10702 (version "0.4.0")
e3c0e3e3
RW
10703 (source
10704 (origin
10705 (method url-fetch)
10706 (uri (cran-uri "protViz" version))
10707 (sha256
10708 (base32
c3e5b456 10709 "150i2q4nakz28f39kmhrchz4qsr8ax6y02512md94k8hq4hamxg1"))))
e3c0e3e3
RW
10710 (properties `((upstream-name . "protViz")))
10711 (build-system r-build-system)
10712 (inputs
10713 `(("perl" ,perl)
10714 ("python-2" ,python-2)))
10715 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
10716 (home-page "https://github.com/protViz/protViz/")
10717 (synopsis "Visualizing and analyzing mass spectrometry data in proteomics")
10718 (description
10719 "This package helps with quality checks, visualizations and analysis of
10720mass spectrometry data, coming from proteomics experiments. The package is
10721developed, tested and used at the Functional Genomics Center Zurich, where it
10722is used mainly for prototyping, teaching, and having fun with proteomics data.
10723But it can also be used to do data analysis for small scale data sets.")
10724 (license license:gpl3)))
7aeec0cf
RW
10725
10726(define-public r-cmprsk
10727 (package
10728 (name "r-cmprsk")
10729 (version "2.2-7")
10730 (source
10731 (origin
10732 (method url-fetch)
10733 (uri (cran-uri "cmprsk" version))
10734 (sha256
10735 (base32
10736 "1imr3wpnj4g57n2x4ryahl4lk8lvq9y2r7319zv3k82mznha8bcm"))))
10737 (build-system r-build-system)
10738 (propagated-inputs
10739 `(("r-survival" ,r-survival)))
10740 (native-inputs
10741 `(("gfortran" ,gfortran)))
10742 (home-page "https://cran.r-project.org/web/packages/cmprsk")
10743 (synopsis "Subdistribution analysis of competing risks")
10744 (description
10745 "This package provides tool for estimation, testing and regression
10746modeling of subdistribution functions in competing risks, as described in
10747Gray (1988), A class of K-sample tests for comparing the cumulative incidence
10748of a competing risk, Ann. Stat. 16:1141-1154, and Fine JP and Gray RJ (1999),
10749A proportional hazards model for the subdistribution of a competing risk,
10750JASA, 94:496-509.")
10751 (license license:gpl2+)))
728012da
RW
10752
10753(define-public r-etm
10754 (package
10755 (name "r-etm")
10756 (version "1.0.4")
10757 (source
10758 (origin
10759 (method url-fetch)
10760 (uri (cran-uri "etm" version))
10761 (sha256
10762 (base32
10763 "0ws103b3pmli0z4xbyfxkly2wnnnxnnwc0r66qjjqjrlvm7pffl1"))))
10764 (build-system r-build-system)
10765 (propagated-inputs
10766 `(("r-data-table" ,r-data-table)
10767 ("r-lattice" ,r-lattice)
10768 ("r-rcpp" ,r-rcpp)
10769 ("r-rcpparmadillo" ,r-rcpparmadillo)
10770 ("r-survival" ,r-survival)))
10771 (home-page "https://cran.r-project.org/web/packages/etm")
10772 (synopsis "Empirical transition matrix")
10773 (description
10774 "The @dfn{empirical transition matrix} (etm) package permits to estimate
10775the matrix of transition probabilities for any time-inhomogeneous multistate
10776model with finite state space using the Aalen-Johansen estimator.")
10777 (license license:expat)))
17932a0f
RW
10778
10779(define-public r-epi
10780 (package
10781 (name "r-epi")
83ef38b0 10782 (version "2.35")
17932a0f
RW
10783 (source
10784 (origin
10785 (method url-fetch)
10786 (uri (cran-uri "Epi" version))
10787 (sha256
10788 (base32
83ef38b0 10789 "1z3959761ryv54y6vsrxxvhrwzz50xrxn55pqh5y7lrxh91zdsvl"))))
17932a0f
RW
10790 (properties `((upstream-name . "Epi")))
10791 (build-system r-build-system)
10792 (propagated-inputs
10793 `(("r-cmprsk" ,r-cmprsk)
10794 ("r-data-table" ,r-data-table)
10795 ("r-etm" ,r-etm)
10796 ("r-mass" ,r-mass)
10797 ("r-matrix" ,r-matrix)
10798 ("r-mgcv" ,r-mgcv)
10799 ("r-numderiv" ,r-numderiv)
10800 ("r-plyr" ,r-plyr)
10801 ("r-survival" ,r-survival)
10802 ("r-zoo" ,r-zoo)))
10803 (home-page "http://BendixCarstensen.com/Epi/")
10804 (synopsis "Statistical analysis in epidemiology")
10805 (description
10806 "This package provides functions for demographic and epidemiological
10807analysis in the Lexis diagram, i.e. register and cohort follow-up data, in
10808particular representation, manipulation and simulation of multistate data -
10809the Lexis suite of functions, which includes interfaces to the @code{mstate},
10810@code{etm} and @code{cmprsk} packages. It also contains functions for
10811Age-Period-Cohort and Lee-Carter modeling and a function for interval censored
10812data and some useful functions for tabulation and plotting, as well as a
10813number of epidemiological data sets.")
10814 (license license:gpl2)))
879a1520
RW
10815
10816(define-public r-ppls
10817 (package
10818 (name "r-ppls")
10819 (version "1.6-1.1")
10820 (source
10821 (origin
10822 (method url-fetch)
10823 (uri (cran-uri "ppls" version))
10824 (sha256
10825 (base32
10826 "1zyrisy3c4cz896j1bjh61sf57wdl9p8ywdq268cl819szfq78mx"))))
10827 (build-system r-build-system)
10828 (propagated-inputs `(("r-mass" ,r-mass)))
10829 (home-page "https://cran.r-project.org/web/packages/ppls")
10830 (synopsis "Penalized partial least squares")
10831 (description
10832 "This package contains linear and nonlinear regression methods based on
10833partial least squares and penalization techniques. Model parameters are
10834selected via cross-validation, and confidence intervals ans tests for the
10835regression coefficients can be conducted via jackknifing.")
10836 (license license:gpl2+)))
0af9616d
RW
10837
10838(define-public r-huge
10839 (package
10840 (name "r-huge")
000b3ef9 10841 (version "1.3.2")
0af9616d
RW
10842 (source
10843 (origin
10844 (method url-fetch)
10845 (uri (cran-uri "huge" version))
10846 (sha256
10847 (base32
000b3ef9 10848 "1j93gvi1jyq3ld9jhdqhrpm2is54rk3ilmf3yw7fx6gva0y6hjqd"))))
0af9616d
RW
10849 (build-system r-build-system)
10850 (propagated-inputs
10851 `(("r-igraph" ,r-igraph)
0af9616d 10852 ("r-mass" ,r-mass)
7706a98c
RW
10853 ("r-matrix" ,r-matrix)
10854 ("r-rcpp" ,r-rcpp)
10855 ("r-rcppeigen" ,r-rcppeigen)))
0af9616d
RW
10856 (home-page "https://cran.r-project.org/web/packages/huge")
10857 (synopsis "High-dimensional undirected graph estimation")
10858 (description
10859 "This package provides a general framework for high-dimensional
10860undirected graph estimation. It integrates data preprocessing, neighborhood
10861screening, graph estimation, and model selection techniques into a pipeline.")
10862 (license license:gpl2)))
39274ab4
RW
10863
10864(define-public r-parcor
10865 (package
10866 (name "r-parcor")
10867 (version "0.2-6")
10868 (source
10869 (origin
10870 (method url-fetch)
10871 (uri (cran-uri "parcor" version))
10872 (sha256
10873 (base32
10874 "0vgs6k92vdr0cmb8cwbv2ff6qavw30agskfd8bfh17hsskrisvx0"))))
10875 (build-system r-build-system)
10876 (propagated-inputs
10877 `(("r-epi" ,r-epi)
10878 ("r-genenet" ,r-genenet)
10879 ("r-glmnet" ,r-glmnet)
10880 ("r-mass" ,r-mass)
10881 ("r-ppls" ,r-ppls)))
10882 (home-page "https://cran.r-project.org/web/packages/parcor")
10883 (synopsis "Regularized estimation of partial correlation matrices")
10884 (description
10885 "This package estimates the matrix of partial correlations based on
10886different regularized regression methods: lasso, adaptive lasso, PLS, and
10887Ridge Regression. In addition, the package provides model selection for
10888lasso, adaptive lasso and Ridge regression based on cross-validation.")
10889 (license license:gpl2+)))
cba08f60
RW
10890
10891(define-public r-mcmc
10892 (package
10893 (name "r-mcmc")
ae7e6f06 10894 (version "0.9-6")
cba08f60
RW
10895 (source
10896 (origin
10897 (method url-fetch)
10898 (uri (cran-uri "mcmc" version))
10899 (sha256
10900 (base32
ae7e6f06 10901 "1fc6a6asn53lx7x7pnlb5mb716nv4pcmbp99f1i30y4hzygihfj4"))))
cba08f60
RW
10902 (build-system r-build-system)
10903 (home-page "http://www.stat.umn.edu/geyer/mcmc/")
10904 (synopsis "Markov chain Monte Carlo")
10905 (description
10906 "This package simulates continuous distributions of random vectors using
10907@dfn{Markov chain Monte Carlo} (MCMC). Users specify the distribution by an R
10908function that evaluates the log unnormalized density. Algorithms are random
10909walk Metropolis algorithm (function @code{metrop}), simulated
10910tempering (function @code{temper}), and morphometric random walk
10911Metropolis (function @code{morph.metrop}), which achieves geometric ergodicity
10912by change of variable.")
10913 (license license:expat)))
cf4cd8bc
RW
10914
10915(define-public r-listenv
10916 (package
10917 (name "r-listenv")
10918 (version "0.7.0")
10919 (source
10920 (origin
10921 (method url-fetch)
10922 (uri (cran-uri "listenv" version))
10923 (sha256
10924 (base32
10925 "0ma5jsri2zqkrlsm9nqpikl7imbwfy1glsmk13mblw0q245h49k1"))))
10926 (build-system r-build-system)
10927 (native-inputs
10928 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
10929 (home-page "https://github.com/HenrikBengtsson/listenv")
10930 (synopsis "Environments behaving (almost) as lists")
10931 (description
10932 "This package implements list environments. List environments are
10933environments that have list-like properties. For instance, the elements of a
10934list environment are ordered and can be accessed and iterated over using index
10935subsetting.")
10936 (license license:lgpl2.1+)))
226294a4
RW
10937
10938(define-public r-globals
10939 (package
10940 (name "r-globals")
10941 (version "0.12.4")
10942 (source
10943 (origin
10944 (method url-fetch)
10945 (uri (cran-uri "globals" version))
10946 (sha256
10947 (base32
10948 "0szyv1ayyk31bh3xqlkj43020w44xq6s4rw2bxwizyjssxm3b1br"))))
10949 (build-system r-build-system)
10950 (propagated-inputs
10951 `(("r-codetools" ,r-codetools)))
10952 (home-page "https://github.com/HenrikBengtsson/globals")
10953 (synopsis "Identify global objects in R expressions")
10954 (description
10955 "This package provides tools to identify global (\"unknown\" or \"free\")
10956objects in R expressions by code inspection using various strategies, e.g.
10957conservative or liberal. The objective of this package is to make it as
10958simple as possible to identify global objects for the purpose of exporting
10959them in distributed compute environments.")
10960 (license license:lgpl2.1+)))
b3080cdd
RW
10961
10962(define-public r-future
10963 (package
10964 (name "r-future")
53dbf3a2 10965 (version "1.13.0")
b3080cdd
RW
10966 (source
10967 (origin
10968 (method url-fetch)
10969 (uri (cran-uri "future" version))
10970 (sha256
10971 (base32
53dbf3a2 10972 "0h8ng2a6vg4axd5f75xcb3ip9d95zi22fa048dq2bzlnncwlznjz"))))
b3080cdd
RW
10973 (build-system r-build-system)
10974 (propagated-inputs
10975 `(("r-digest" ,r-digest)
10976 ("r-globals" ,r-globals)
10977 ("r-listenv" ,r-listenv)))
10978 (native-inputs
10979 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
10980 (home-page "https://github.com/HenrikBengtsson/future")
10981 (synopsis "Unified parallel and distributed processing in R")
10982 (description
10983 "The purpose of this package is to provide a lightweight and unified
10984Future API for sequential and parallel processing of R expression via futures.
10985This package implements sequential, multicore, multisession, and cluster
10986futures. With these, R expressions can be evaluated on the local machine, in
10987parallel a set of local machines, or distributed on a mix of local and remote
10988machines. Extensions to this package implement additional backends for
10989processing futures via compute cluster schedulers etc. Because of its unified
10990API, there is no need to modify any code in order to switch from sequential on
10991the local machine to, say, distributed processing on a remote compute cluster.")
10992 (license license:lgpl2.1+)))
9680047c
RW
10993
10994(define-public r-future-apply
10995 (package
10996 (name "r-future-apply")
d1c2fd8e 10997 (version "1.2.0")
9680047c
RW
10998 (source
10999 (origin
11000 (method url-fetch)
11001 (uri (cran-uri "future.apply" version))
11002 (sha256
11003 (base32
d1c2fd8e 11004 "00ma43ma3byrf9vfqqn9g8sn18c71ryhk7lpza5h7817f1kibw1h"))))
9680047c
RW
11005 (properties `((upstream-name . "future.apply")))
11006 (build-system r-build-system)
11007 (propagated-inputs
11008 `(("r-future" ,r-future)
11009 ("r-globals" ,r-globals)))
11010 (native-inputs
11011 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
11012 (home-page "https://github.com/HenrikBengtsson/future.apply")
11013 (synopsis "Apply function to elements in parallel using futures")
11014 (description
11015 "This package provides implementations of @code{apply()},
11016@code{eapply()}, @code{lapply()}, @code{Map()}, @code{mapply()},
11017@code{replicate()}, @code{sapply()}, @code{tapply()}, and @code{vapply()} that
11018can be resolved using any future-supported backend, e.g. parallel on the local
11019machine or distributed on a compute cluster.")
11020 (license license:gpl2+)))
867e2b1b
RW
11021
11022(define-public r-rsvd
11023 (package
11024 (name "r-rsvd")
11025 (version "1.0.0")
11026 (source
11027 (origin
11028 (method url-fetch)
11029 (uri (cran-uri "rsvd" version))
11030 (sha256
11031 (base32
11032 "0vjhrvnkl9rmvl8sv2kac5sd10z3fgxymb676ynxzc2pmhydy3an"))))
11033 (build-system r-build-system)
11034 (propagated-inputs
11035 `(("r-matrix" ,r-matrix)))
11036 (home-page "https://github.com/erichson/rSVD")
11037 (synopsis "Randomized singular value decomposition")
11038 (description
11039 "Low-rank matrix decompositions are fundamental tools and widely used for
11040data analysis, dimension reduction, and data compression. Classically, highly
11041accurate deterministic matrix algorithms are used for this task. However, the
11042emergence of large-scale data has severely challenged our computational
11043ability to analyze big data. The concept of randomness has been demonstrated
11044as an effective strategy to quickly produce approximate answers to familiar
11045problems such as the @dfn{singular value decomposition} (SVD). This package
11046provides several randomized matrix algorithms such as the randomized singular
11047value decomposition (@code{rsvd}), randomized principal component
11048analysis (@code{rpca}), randomized robust principal component
11049analysis (@code{rrpca}), randomized interpolative decomposition (@code{rid}),
11050and the randomized CUR decomposition (@code{rcur}). In addition several plot
11051functions are provided.")
11052 (license license:gpl3+)))
14afee3e
BG
11053
11054(define-public r-sloop
11055 (package
11056 (name "r-sloop")
11057 (version "1.0.1")
11058 (source
11059 (origin
11060 (method url-fetch)
11061 (uri (cran-uri "sloop" version))
11062 (sha256
11063 (base32
11064 "00fk5fr5zsk2qxc1kfhmshhjxgnamm3401089sx8m2l529zd6r8j"))))
11065 (build-system r-build-system)
11066 (propagated-inputs
11067 `(("r-codetools" ,r-codetools)
11068 ("r-crayon" ,r-crayon)
11069 ("r-purrr" ,r-purrr)
11070 ("r-rlang" ,r-rlang)
11071 ("r-tibble" ,r-tibble)))
11072 (home-page "https://github.com/r-lib/sloop")
11073 (synopsis "Helpers for object-oriented programming in R")
11074 (description
11075 "This package provides a collection of helper functions designed to
11076help you to better understand object oriented programming in R, particularly
11077using @code{S3}.")
11078 (license license:gpl3)))
4254b480
RW
11079
11080(define-public r-capushe
11081 (package
11082 (name "r-capushe")
11083 (version "1.1.1")
11084 (source
11085 (origin
11086 (method url-fetch)
11087 (uri (cran-uri "capushe" version))
11088 (sha256
11089 (base32
11090 "1aa76ir1kp67hiz7dr60azyc71yzslshyc640fjh0fpw0sp5kwbc"))))
11091 (build-system r-build-system)
11092 (propagated-inputs `(("r-mass" ,r-mass)))
11093 (home-page "https://cran.r-project.org/web/packages/capushe/index.html")
49369a01 11094 (synopsis "Calibrating penalties using slope heuristics")
4254b480
RW
11095 (description
11096 "This package provides tools for the calibration of penalized criteria
11097for model selection. The calibration methods available are based on the slope
11098heuristics.")
11099 (license license:gpl2+)))
c691c607
RW
11100
11101(define-public r-dorng
11102 (package
11103 (name "r-dorng")
11104 (version "1.7.1")
11105 (source
11106 (origin
11107 (method url-fetch)
11108 (uri (cran-uri "doRNG" version))
11109 (sha256
11110 (base32
11111 "1sb75aqkliprglfxc4x4wds6alqgzhvl2n812g1d32a88ra3slr7"))))
11112 (properties `((upstream-name . "doRNG")))
11113 (build-system r-build-system)
11114 (propagated-inputs
11115 `(("r-foreach" ,r-foreach)
11116 ("r-iterators" ,r-iterators)
11117 ("r-pkgmaker" ,r-pkgmaker)
11118 ("r-rngtools" ,r-rngtools)))
11119 (home-page "https://renozao.github.io/doRNG/")
11120 (synopsis "Generic reproducible parallel backend for foreach loops")
11121 (description
11122 "This package provides functions to perform reproducible parallel
11123@code{foreach} loops, using independent random streams as generated by
11124L'Ecuyer's combined multiple-recursive generator. It enables to easily
11125convert standard @code{%dopar%} loops into fully reproducible loops,
11126independently of the number of workers, the task scheduling strategy, or the
11127chosen parallel environment and associated foreach backend.")
11128 (license license:gpl2+)))
f3233bee
RW
11129
11130(define-public r-blockmodeling
11131 (package
11132 (name "r-blockmodeling")
11133 (version "0.3.4")
11134 (source
11135 (origin
11136 (method url-fetch)
11137 (uri (cran-uri "blockmodeling" version))
11138 (sha256
11139 (base32
11140 "11v9903y9dwlzaqp8sx0fsibcg82phvappddy37r8lnxd4vchsd2"))))
11141 (build-system r-build-system)
11142 (propagated-inputs
11143 `(("r-doparallel" ,r-doparallel)
11144 ("r-dorng" ,r-dorng)
11145 ("r-foreach" ,r-foreach)
11146 ("r-matrix" ,r-matrix)))
11147 (native-inputs `(("gfortran" ,gfortran)))
11148 (home-page "https://cran.r-project.org/web/packages/blockmodeling")
11149 (synopsis "Generalized and classical blockmodeling of valued networks")
11150 (description
11151 "This package is primarily meant as an implementation of generalized
11152blockmodeling for valued networks. In addition, measures of similarity or
11153dissimilarity based on structural equivalence and regular equivalence (REGE
11154algorithms) can be computed and partitioned matrices can be plotted.")
11155 (license license:gpl2+)))
4af186a9
RW
11156
11157(define-public r-upsetr
11158 (package
11159 (name "r-upsetr")
11160 (version "1.3.3")
11161 (source
11162 (origin
11163 (method url-fetch)
11164 (uri (cran-uri "UpSetR" version))
11165 (sha256
11166 (base32
11167 "08vj7l92b8fpqyqwxshll2mhk3yhgyr74axvr2lf29z78bapymhz"))))
11168 (properties `((upstream-name . "UpSetR")))
11169 (build-system r-build-system)
11170 (propagated-inputs
11171 `(("r-ggplot2" ,r-ggplot2)
11172 ("r-gridextra" ,r-gridextra)
11173 ("r-plyr" ,r-plyr)
11174 ("r-scales" ,r-scales)))
11175 (home-page "https://github.com/hms-dbmi/UpSetR")
11176 (synopsis "Visualize intersecting sets")
11177 (description
11178 "This package provides a more scalable alternative to Venn and Euler
11179diagrams for visualizing intersecting sets. Create visualizations of
11180intersecting sets using a novel matrix design, along with visualizations of
11181several common set, element and attribute related tasks.")
11182 (license license:expat)))
1901a532 11183
849350fb
RW
11184;; This package includes a JavaScript file, which is not minified. When
11185;; upgrading please check that there are no new minified JavaScript files.
11186(define-public r-shinybs
11187 (package
11188 (name "r-shinybs")
11189 (version "0.61")
11190 (source
11191 (origin
11192 (method url-fetch)
11193 (uri (cran-uri "shinyBS" version))
11194 (sha256
11195 (base32
11196 "0rhim4mbp4x9vvm7xkmpl7mhb9qd1gr96cr4dv330v863ra2kgji"))))
11197 (properties `((upstream-name . "shinyBS")))
11198 (build-system r-build-system)
11199 ;; The tests spawn Shiny browser apps. They cannot be run
11200 ;; non-interactively.
11201 (arguments '(#:tests? #f))
11202 (propagated-inputs
11203 `(("r-htmltools" ,r-htmltools)
11204 ("r-shiny" ,r-shiny)))
11205 (home-page "https://ebailey78.github.io/shinyBS/")
11206 (synopsis "Twitter Bootstrap components for Shiny")
11207 (description
11208 "This package adds additional Twitter Bootstrap components to Shiny.")
11209 (license license:gpl3)))
11210
1901a532
RW
11211(define-public r-outliers
11212 (package
11213 (name "r-outliers")
11214 (version "0.14")
11215 (source
11216 (origin
11217 (method url-fetch)
11218 (uri (cran-uri "outliers" version))
11219 (sha256
11220 (base32
11221 "0vcqfqmmv4yblyp3s6bd25r49pxb7hjzipiic5a82924nqfqzkmn"))))
11222 (build-system r-build-system)
11223 (home-page "https://cran.r-project.org/web/packages/outliers/index.html")
11224 (synopsis "Tests for outliers")
11225 (description
11226 "This package provides a collection of some tests commonly used for
11227identifying outliers.")
11228 (license license:gpl2+)))
8cd3f49d
RW
11229
11230(define-public r-bayesm
11231 (package
11232 (name "r-bayesm")
11233 (version "3.1-1")
11234 (source
11235 (origin
11236 (method url-fetch)
11237 (uri (cran-uri "bayesm" version))
11238 (sha256
11239 (base32
11240 "0y30cza92s6kgvmxjpr6f5g0qbcck7hslqp89ncprarhxiym2m28"))))
11241 (build-system r-build-system)
11242 (propagated-inputs
11243 `(("r-rcpp" ,r-rcpp)
11244 ("r-rcpparmadillo" ,r-rcpparmadillo)))
11245 (home-page "http://www.perossi.org/home/bsm-1")
11246 (synopsis "Bayesian inference for marketing/micro-econometrics")
11247 (description
11248 "This package covers many important models used in marketing and
11249micro-econometrics applications, including Bayes Regression (univariate or
11250multivariate dep var), Bayes Seemingly Unrelated Regression (SUR), Binary and
11251Ordinal Probit, Multinomial Logit (MNL) and Multinomial Probit (MNP),
11252Multivariate Probit, Negative Binomial (Poisson) Regression, Multivariate
11253Mixtures of Normals (including clustering), Dirichlet Process Prior Density
11254Estimation with normal base, Hierarchical Linear Models with normal prior and
11255covariates, Hierarchical Linear Models with a mixture of normals prior and
11256covariates, Hierarchical Multinomial Logits with a mixture of normals prior
11257and covariates, Hierarchical Multinomial Logits with a Dirichlet Process prior
11258and covariates, Hierarchical Negative Binomial Regression Models, Bayesian
11259analysis of choice-based conjoint data, Bayesian treatment of linear
11260instrumental variables models, Analysis of Multivariate Ordinal survey data
11261with scale usage heterogeneity, and Bayesian Analysis of Aggregate Random
11262Coefficient Logit Models.")
11263 (license license:gpl2+)))
262ab4b1
RW
11264
11265(define-public r-tensora
11266 (package
11267 (name "r-tensora")
11268 (version "0.36.1")
11269 (source
11270 (origin
11271 (method url-fetch)
11272 (uri (cran-uri "tensorA" version))
11273 (sha256
11274 (base32
11275 "176hjy3bvg3in62r97wxbhq187sjz6c1gwy9x6spaxl6k4my3zy7"))))
11276 (properties `((upstream-name . "tensorA")))
11277 (build-system r-build-system)
11278 (home-page "http://www.stat.boogaart.de/tensorA")
11279 (synopsis "Advanced tensor arithmetic with named indices")
11280 (description
11281 "This package provides convenience functions for advanced linear algebra
11282with tensors and computation with datasets of tensors on a higher level
11283abstraction. It includes Einstein and Riemann summing conventions, dragging,
11284co- and contravariate indices, and parallel computations on sequences of
11285tensors.")
11286 (license license:gpl2+)))
7d779142
RW
11287
11288(define-public r-rarpack
11289 (package
11290 (name "r-rarpack")
11291 (version "0.11-0")
11292 (source
11293 (origin
11294 (method url-fetch)
11295 (uri (cran-uri "rARPACK" version))
11296 (sha256
11297 (base32
11298 "12h2y46xcfldhjdmm960swgn9b23zvkj5vg2bi42s9qxwgi02d63"))))
11299 (properties `((upstream-name . "rARPACK")))
11300 (build-system r-build-system)
11301 (propagated-inputs `(("r-rspectra" ,r-rspectra)))
11302 (home-page "https://github.com/yixuan/rARPACK")
11303 (synopsis "Solvers for large scale eigenvalue and SVD problems")
11304 (description
11305 "This package was previously an R wrapper of the ARPACK library, and now
11306a shell of the R package RSpectra, an R interface to the Spectra library for
11307solving large scale eigenvalue/vector problems. The current version of
11308rARPACK simply imports and exports the functions provided by RSpectra. New
11309users of rARPACK are advised to switch to the RSpectra package.")
11310 (license license:bsd-3)))
5fde35b3
RW
11311
11312(define-public r-compositions
11313 (package
11314 (name "r-compositions")
11315 (version "1.40-2")
11316 (source
11317 (origin
11318 (method url-fetch)
11319 (uri (cran-uri "compositions" version))
11320 (sha256
11321 (base32
11322 "12mp05yi7jkdqg9iwh6bc9sx6sdxagcnrirznxy9hq8502p7238i"))))
11323 (build-system r-build-system)
11324 (propagated-inputs
11325 `(("r-bayesm" ,r-bayesm)
11326 ("r-energy" ,r-energy)
11327 ("r-robustbase" ,r-robustbase)
11328 ("r-tensora" ,r-tensora)))
11329 (home-page "http://www.stat.boogaart.de/compositions")
11330 (synopsis "Compositional data analysis")
11331 (description
11332 "This package provides functions for the consistent analysis of
11333compositional data (e.g. portions of substances) and positive
11334numbers (e.g. concentrations).")
11335 (license license:gpl2+)))
5f673e2c
RW
11336
11337(define-public r-cobs
11338 (package
11339 (name "r-cobs")
11340 (version "1.3-3")
11341 (source
11342 (origin
11343 (method url-fetch)
11344 (uri (cran-uri "cobs" version))
11345 (sha256
11346 (base32
11347 "1pqvz7czcchri4x79g78hbwyagb3bqzdqb047zkbdinyz067c7kb"))))
11348 (build-system r-build-system)
11349 (propagated-inputs
11350 `(("r-quantreg" ,r-quantreg)
11351 ("r-sparsem" ,r-sparsem)))
11352 (home-page "https://cran.r-project.org/web/packages/cobs")
11353 (synopsis "Constrained B-Splines (sparse matrix based)")
11354 (description
11355 "This package provides qualitatively constrained (regression) smoothing
11356splines via linear programming and sparse matrices.")
11357 (license license:gpl2+)))
c60e3e10
RW
11358
11359(define-public r-drimpute
11360 (package
11361 (name "r-drimpute")
11362 (version "1.0")
11363 (source
11364 (origin
11365 (method url-fetch)
11366 (uri (cran-uri "DrImpute" version))
11367 (sha256
11368 (base32
11369 "1adzarrwqb282pqgx2yqswp9rpwd1naxsmar54kddr6qyd6b923b"))))
11370 (properties `((upstream-name . "DrImpute")))
11371 (build-system r-build-system)
11372 (propagated-inputs
11373 `(("r-rcpp" ,r-rcpp)
11374 ("r-rcpparmadillo" ,r-rcpparmadillo)))
11375 (home-page "https://github.com/ikwak2/DrImpute")
11376 (synopsis "Imputing dropout events in single-cell RNA-Seq data")
11377 (description
11378 "This is an R package for imputing dropout events. Many statistical
11379methods in cell type identification, visualization and lineage reconstruction
11380do not account for dropout events. DrImpute can improve the performance of
11381such software by imputing dropout events.")
11382 (license license:gpl3)))
061a4b68
RW
11383
11384(define-public r-gamlss-dist
11385 (package
11386 (name "r-gamlss-dist")
ecf4ccb9 11387 (version "5.1-4")
061a4b68
RW
11388 (source
11389 (origin
11390 (method url-fetch)
11391 (uri (cran-uri "gamlss.dist" version))
11392 (sha256
11393 (base32
ecf4ccb9 11394 "0zi87lgigr83l35zqq1y1g4cdq6ssjamripzz7yis74aznh6qg1l"))))
061a4b68
RW
11395 (properties `((upstream-name . "gamlss.dist")))
11396 (build-system r-build-system)
11397 (propagated-inputs `(("r-mass" ,r-mass)))
11398 (home-page "http://www.gamlss.org/")
11399 (synopsis "Distributions for Generalized Additive Models for location scale and shape")
11400 (description
11401 "This package provides a set of distributions which can be used for
11402modelling the response variables in Generalized Additive Models for Location
11403Scale and Shape. The distributions can be continuous, discrete or mixed
11404distributions. Extra distributions can be created, by transforming, any
11405continuous distribution defined on the real line, to a distribution defined on
11406ranges 0 to infinity or 0 to 1, by using a @code{log} or a @code{logit}
11407transformation, respectively.")
11408 ;; Either version of the GPL.
11409 (license (list license:gpl2 license:gpl3))))
4fd99443 11410
5146a24e
RW
11411;; This package includes JavaScript files, which are not minified. When
11412;; upgrading please check that there are no new minified JavaScript files.
11413(define-public r-shinyjs
11414 (package
11415 (name "r-shinyjs")
11416 (version "1.0")
11417 (source
11418 (origin
11419 (method url-fetch)
11420 (uri (cran-uri "shinyjs" version))
11421 (sha256
11422 (base32
11423 "113zpijri0l80rlgrvqn6bxk0sdqgl79h7yhja2p76f9dc9i2sr8"))))
11424 (build-system r-build-system)
11425 (propagated-inputs
11426 `(("r-digest" ,r-digest)
11427 ("r-htmltools" ,r-htmltools)
11428 ("r-jsonlite" ,r-jsonlite)
11429 ("r-shiny" ,r-shiny)))
11430 (home-page "https://deanattali.com/shinyjs")
11431 (synopsis "Improve the user experience of your Shiny apps")
11432 (description
11433 "Perform common useful JavaScript operations in Shiny apps that will
11434greatly improve your apps without having to know any JavaScript. Examples
11435include: hiding an element, disabling an input, resetting an input back to its
11436original value, delaying code execution by a few seconds, and many more useful
11437functions for both the end user and the developer. Shinyjs can also be used
11438to easily call your own custom JavaScript functions from R.")
11439 (license license:agpl3+)))
11440
c27927db
RW
11441;; This package includes minified JavaScript files. When upgrading please
11442;; check that there are no new minified JavaScript files.
11443(define-public r-colourpicker
11444 (package
11445 (name "r-colourpicker")
11446 (version "1.0")
11447 (source
11448 (origin
11449 (method url-fetch)
11450 (uri (cran-uri "colourpicker" version))
11451 (sha256
11452 (base32
11453 "0z3v2083g7kwdp21x9s2n1crfh24agpdq3yxkcdzc2awn2pwpnpi"))))
11454 (build-system r-build-system)
11455 (arguments
11456 `(#:modules ((guix build utils)
11457 (guix build r-build-system)
11458 (srfi srfi-1)
11459 (ice-9 popen))
11460 #:phases
11461 (modify-phases %standard-phases
11462 (add-after 'unpack 'process-javascript
11463 (lambda* (#:key inputs #:allow-other-keys)
11464 (with-directory-excursion "inst"
11465 (call-with-values
11466 (lambda ()
11467 (unzip2
11468 `((,(assoc-ref inputs "js-salvattore")
11469 "examples/colourInput/www/salvattore.min.js")
11470 (,(assoc-ref inputs "js-jquery")
11471 "htmlwidgets/lib/jquery/jquery.min.js")
11472 ("www/shared/colourpicker/js/colourpicker.js"
11473 "www/shared/colourpicker/js/colourpicker.min.js"))))
11474 (lambda (sources targets)
11475 (for-each (lambda (source target)
11476 (format #t "Processing ~a --> ~a~%"
11477 source target)
11478 (delete-file target)
11479 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
11480 (call-with-output-file target
11481 (lambda (port)
11482 (dump-port minified port)))))
11483 sources targets))))
11484 #t)))))
11485 (propagated-inputs
11486 `(("r-ggplot2" ,r-ggplot2)
11487 ("r-htmltools" ,r-htmltools)
11488 ("r-htmlwidgets" ,r-htmlwidgets)
11489 ("r-jsonlite" ,r-jsonlite)
11490 ("r-miniui" ,r-miniui)
11491 ("r-shiny" ,r-shiny)
11492 ("r-shinyjs" ,r-shinyjs)))
11493 (native-inputs
11494 `(("uglify-js" ,uglify-js)
11495 ("js-jquery"
11496 ,(origin
11497 (method url-fetch)
11498 (uri "https://code.jquery.com/jquery-3.3.1.js")
11499 (sha256
11500 (base32
11501 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))
11502 ("js-salvattore"
11503 ,(origin
11504 (method url-fetch)
11505 (uri "https://raw.githubusercontent.com/rnmp/salvattore/v1.0.9/dist/salvattore.js")
11506 (sha256
11507 (base32
11508 "0lfrbx7l9w5x89jpc6njmd0pk7h8fpvg537vklai2vf7b1r2nnk5"))))))
11509 (home-page "https://github.com/daattali/colourpicker")
11510 (synopsis "Color picker tool for Shiny and for selecting colors in plots")
11511 (description
11512 "This package provides a color picker that can be used as an input in
11513Shiny apps or Rmarkdown documents. The color picker supports alpha opacity,
11514custom color palettes, and many more options. A plot color helper tool is
11515available as an RStudio Addin, which helps you pick colors to use in your
11516plots. A more generic color picker RStudio Addin is also provided to let you
11517select colors to use in your R code.")
11518 (license license:expat)))
11519
30f53ec8
RW
11520(define-public r-ggextra
11521 (package
11522 (name "r-ggextra")
11523 (version "0.8")
11524 (source
11525 (origin
11526 (method url-fetch)
11527 (uri (cran-uri "ggExtra" version))
11528 (sha256
11529 (base32
11530 "1m5zpn3l3p1y3d2692gyz50m63d58m2a3b7zb595kvcffdx2qr5b"))))
11531 (properties `((upstream-name . "ggExtra")))
11532 (build-system r-build-system)
11533 (propagated-inputs
11534 `(("r-colourpicker" ,r-colourpicker)
11535 ("r-ggplot2" ,r-ggplot2)
11536 ("r-gtable" ,r-gtable)
11537 ("r-miniui" ,r-miniui)
11538 ("r-scales" ,r-scales)
11539 ("r-shiny" ,r-shiny)
11540 ("r-shinyjs" ,r-shinyjs)))
11541 (home-page "https://github.com/daattali/ggExtra")
11542 (synopsis "Marginal histograms for ggplot2 and other enhancements")
11543 (description
11544 "This package is a collection of functions and layers to enhance ggplot2.
11545The flagship function is @code{ggMarginal()}, which can be used to add
11546marginal histograms/boxplots/density plots to ggplot2 scatterplots.")
11547 (license license:expat)))
11548
4fd99443
RW
11549(define-public r-minpack-lm
11550 (package
11551 (name "r-minpack-lm")
11552 (version "1.2-1")
11553 (source
11554 (origin
11555 (method url-fetch)
11556 (uri (cran-uri "minpack.lm" version))
11557 (sha256
11558 (base32
11559 "18ym2pdql5vzngc7q5gn66d153hrfrnd8ilv8yh6vd7j7sx7vjql"))))
11560 (properties `((upstream-name . "minpack.lm")))
11561 (build-system r-build-system)
11562 (native-inputs `(("gfortran" ,gfortran)))
11563 (home-page "https://cran.r-project.org/web/packages/minpack.lm")
11564 (synopsis "Levenberg-Marquardt Nonlinear Least-Squares algorithm")
11565 (description
11566 "The @code{nls.lm} function provides an R interface to @code{lmder} and
11567@code{lmdif} from the MINPACK library, for solving nonlinear least-squares
11568problems by a modification of the Levenberg-Marquardt algorithm, with support
11569for lower and upper parameter bounds. The implementation can be used via
2f041a4c 11570@code{nls}-like calls using the @code{nlsLM} function.")
4fd99443 11571 (license license:gpl3)))
01fe44cb
RW
11572
11573(define-public r-moments
11574 (package
11575 (name "r-moments")
11576 (version "0.14")
11577 (source
11578 (origin
11579 (method url-fetch)
11580 (uri (cran-uri "moments" version))
11581 (sha256
11582 (base32
11583 "0f9y58w1hxcz4bqivirx25ywlmc80gbi6dfx5cnhkpdg1pk82fra"))))
11584 (build-system r-build-system)
11585 (home-page "https://cran.r-project.org/web/packages/moments")
11586 (synopsis "Moments, cumulants, skewness, kurtosis and related tests")
11587 (description
11588 "This package provides functions to calculate: moments, Pearson's
11589kurtosis, Geary's kurtosis and skewness; it also includes tests related to
11590them (Anscombe-Glynn, D'Agostino, Bonett-Seier).")
11591 (license license:gpl2+)))
9e2ff342
RW
11592
11593(define-public r-msir
11594 (package
11595 (name "r-msir")
5ccf16c7 11596 (version "1.3.2")
9e2ff342
RW
11597 (source
11598 (origin
11599 (method url-fetch)
11600 (uri (cran-uri "msir" version))
11601 (sha256
11602 (base32
5ccf16c7 11603 "0pvc3q162vqq3k39nni732x05zzfz4y9y2zf56d83185ypszv9kb"))))
9e2ff342
RW
11604 (build-system r-build-system)
11605 (propagated-inputs
5ccf16c7 11606 `(("r-mclust" ,r-mclust)))
9e2ff342
RW
11607 (home-page "https://cran.r-project.org/web/packages/msir")
11608 (synopsis "Model-based sliced inverse regression")
11609 (description
11610 "This is an R package for dimension reduction based on finite Gaussian
11611mixture modeling of inverse regression.")
11612 (license license:gpl2+)))
e8be5a00
RW
11613
11614(define-public r-pbivnorm
11615 (package
11616 (name "r-pbivnorm")
11617 (version "0.6.0")
11618 (source
11619 (origin
11620 (method url-fetch)
11621 (uri (cran-uri "pbivnorm" version))
11622 (sha256
11623 (base32
11624 "05jzrjqxzbcf6z245hlk7sjxiszv9paadaaimvcx5y5qgi87vhq7"))))
11625 (build-system r-build-system)
11626 (native-inputs `(("gfortran" ,gfortran)))
11627 (home-page "https://github.com/brentonk/pbivnorm")
11628 (synopsis "Vectorized bivariate normal CDF")
11629 (description
11630 "This package provides a vectorized R function for calculating
11631probabilities from a standard bivariate normal CDF.")
11632 (license license:gpl2+)))
ca3f1370
RW
11633
11634(define-public r-lavaan
11635 (package
11636 (name "r-lavaan")
11637 (version "0.6-3")
11638 (source
11639 (origin
11640 (method url-fetch)
11641 (uri (cran-uri "lavaan" version))
11642 (sha256
11643 (base32
11644 "0hw856kv11zqn6nd4216rh19i6xbnc1rh044r7jvvxkhzgbqkyxz"))))
11645 (build-system r-build-system)
11646 (propagated-inputs
11647 `(("r-mass" ,r-mass)
11648 ("r-mnormt" ,r-mnormt)
11649 ("r-numderiv" ,r-numderiv)
11650 ("r-pbivnorm" ,r-pbivnorm)))
11651 (home-page "http://lavaan.ugent.be")
11652 (synopsis "Latent variable analysis")
11653 (description
11654 "This package provides tools to fit a variety of latent variable models,
11655including confirmatory factor analysis, structural equation modeling and
11656latent growth curve models.")
11657 (license license:gpl2+)))
4d1f19e0
RW
11658
11659(define-public r-nonnest2
11660 (package
11661 (name "r-nonnest2")
11662 (version "0.5-2")
11663 (source
11664 (origin
11665 (method url-fetch)
11666 (uri (cran-uri "nonnest2" version))
11667 (sha256
11668 (base32
11669 "1bq44qqmm59j91m0sny4xnqmxqlga4cm48qdsw8xfs3x19xwmxk6"))))
11670 (build-system r-build-system)
11671 (propagated-inputs
11672 `(("r-compquadform" ,r-compquadform)
11673 ("r-lavaan" ,r-lavaan)
11674 ("r-mvtnorm" ,r-mvtnorm)
11675 ("r-sandwich" ,r-sandwich)))
11676 (home-page "https://cran.r-project.org/web/packages/nonnest2/")
11677 (synopsis "Tests of non-nested models")
11678 (description
11679 "This package allows for testing of non-nested models. It includes tests
11680of model distinguishability and of model fit that can be applied to both
11681nested and non-nested models. The package also includes functionality to
11682obtain confidence intervals associated with AIC and BIC.")
11683 ;; Either version of the GPL.
11684 (license (list license:gpl2 license:gpl3))))
be0777ba
RW
11685
11686(define-public r-penalized
11687 (package
11688 (name "r-penalized")
11689 (version "0.9-51")
11690 (source
11691 (origin
11692 (method url-fetch)
11693 (uri (cran-uri "penalized" version))
11694 (sha256
11695 (base32
11696 "1zcrwa93mc27qj3g4ayc2k895r6g8q0g6qb2azmvj7wqk750va7a"))))
11697 (build-system r-build-system)
11698 (propagated-inputs
11699 `(("r-rcpp" ,r-rcpp)
11700 ("r-rcpparmadillo" ,r-rcpparmadillo)
11701 ("r-survival" ,r-survival)))
11702 (home-page "https://cran.r-project.org/web/packages/penalized/")
11703 (synopsis "Penalized estimation in GLMs and in the Cox model")
11704 (description
11705 "This package provides tools for fitting possibly high dimensional
11706penalized regression models. The penalty structure can be any combination of
11707an L1 penalty (lasso and fused lasso), an L2 penalty (ridge) and a positivity
11708constraint on the regression coefficients. The supported regression models
11709are linear, logistic and Poisson regression and the Cox Proportional Hazards
11710model. Cross-validation routines allow optimization of the tuning
11711parameters.")
11712 (license license:gpl2+)))
5570804a
RW
11713
11714(define-public r-zim
11715 (package
11716 (name "r-zim")
11717 (version "1.1.0")
11718 (source
11719 (origin
11720 (method url-fetch)
11721 (uri (cran-uri "ZIM" version))
11722 (sha256
11723 (base32
11724 "0scyfjn4ilsvha3x41c3b8bcfi31hlhwm77wn2a8hj5dsvnnmzig"))))
11725 (properties `((upstream-name . "ZIM")))
11726 (build-system r-build-system)
11727 (propagated-inputs `(("r-mass" ,r-mass)))
11728 (home-page "https://github.com/biostatstudio/ZIM")
11729 (synopsis "Zero-inflated models (ZIM) for count time series with excess zeros")
11730 (description
11731 "Analyze count time series with excess zeros. Two types of statistical
11732models are supported: Markov regression and state-space models. They are also
11733known as observation-driven and parameter-driven models respectively in the
11734time series literature. The functions used for Markov regression or
11735observation-driven models can also be used to fit ordinary regression models
11736with independent data under the zero-inflated Poisson (ZIP) or zero-inflated
11737negative binomial (ZINB) assumption. The package also contains miscellaneous
11738functions to compute density, distribution, quantile, and generate random
11739numbers from ZIP and ZINB distributions.")
11740 (license license:gpl3)))
026dd77c
RW
11741
11742(define-public r-nor1mix
11743 (package
11744 (name "r-nor1mix")
11745 (version "1.2-3")
11746 (source
11747 (origin
11748 (method url-fetch)
11749 (uri (cran-uri "nor1mix" version))
11750 (sha256
11751 (base32
11752 "1bvk888qml9qr7q703s7qzgm0sqfchcjdjqwqllm5vrjx0cnapj3"))))
11753 (build-system r-build-system)
11754 (home-page "https://cran.r-project.org/web/packages/nor1mix/")
11755 (synopsis "Normal (1-d) mixture models")
11756 (description
11757 "This package provides S3 classes and methods for one-dimensional normal
11758mixture models, for, e.g., density estimation or clustering algorithms
11759research and teaching; it provides the widely used Marron-Wand densities. It
11760also provides tools for efficient random number generation and graphics.")
11761 (license license:gpl2+)))
648dbd27
RW
11762
11763(define-public r-beanplot
11764 (package
11765 (name "r-beanplot")
11766 (version "1.2")
11767 (source
11768 (origin
11769 (method url-fetch)
11770 (uri (cran-uri "beanplot" version))
11771 (sha256
11772 (base32
11773 "0wmkr704fl8kdxkjwmaxw2a2h5dwzfgsgpncnk2p2wd4768jknj9"))))
11774 (build-system r-build-system)
11775 (home-page "https://cran.r-project.org/web/packages/beanplot/")
11776 (synopsis "Visualization via beanplots")
11777 (description
11778 "This package provides beanplots, an alternative to
11779boxplot/stripchart/violin plots. It can be used to plot univariate comparison
11780graphs.")
11781 (license license:gpl2)))
f313baf0
RW
11782
11783(define-public r-pbdzmq
11784 (package
11785 (name "r-pbdzmq")
11786 (version "0.3-3")
11787 (source
11788 (origin
11789 (method url-fetch)
11790 (uri (cran-uri "pbdZMQ" version))
11791 (sha256
11792 (base32
11793 "1jkfcfhspvqra7vbllrvkz3jx8j7d0ang6zzcdjgpb7200sc29mf"))))
11794 (properties `((upstream-name . "pbdZMQ")))
11795 (build-system r-build-system)
11796 (inputs
11797 `(("zeromq" ,zeromq)
11798 ("zlib" ,zlib)))
11799 (native-inputs
11800 `(("pkg-config" ,pkg-config)))
11801 (home-page "https://pbdr.org/")
11802 (synopsis "R interface to ZeroMQ")
11803 (description
11804 "ZeroMQ is a well-known library for high-performance asynchronous
11805messaging in scalable, distributed applications. This package provides high
11806level R wrapper functions to easily utilize ZeroMQ. The main focus is on
11807interactive client/server programming frameworks. A few wrapper functions
11808compatible with @code{rzmq} are also provided.")
11809 (license license:gpl3)))
d17186d6
RW
11810
11811(define-public r-repr
11812 (package
11813 (name "r-repr")
2785e615 11814 (version "1.0.1")
d17186d6
RW
11815 (source
11816 (origin
11817 (method url-fetch)
11818 (uri (cran-uri "repr" version))
11819 (sha256
11820 (base32
2785e615 11821 "0jy43g34r38fqprcdys0p9pliahrj5l64a9bbkzy206qgz0j5ppc"))))
d17186d6
RW
11822 (build-system r-build-system)
11823 (propagated-inputs
11824 `(("r-base64enc" ,r-base64enc)
11825 ("r-htmltools" ,r-htmltools)
8b96b860
RW
11826 ("r-jsonlite" ,r-jsonlite)
11827 ("r-pillar" ,r-pillar)))
d17186d6
RW
11828 (home-page "https://cran.r-project.org/web/packages/repr/")
11829 (synopsis "Serializable representations")
11830 (description
11831 "This package provides string and binary representations of objects for
11832several formats and MIME types.")
11833 (license license:gpl3)))
664dedd5
RW
11834
11835(define-public r-irdisplay
11836 (package
11837 (name "r-irdisplay")
11838 (version "0.7.0")
11839 (source
11840 (origin
11841 (method url-fetch)
11842 (uri (cran-uri "IRdisplay" version))
11843 (sha256
11844 (base32
11845 "12chk53nf4zckgc4yl7gbvd7m5dvli52inp5b3f0zvcjvfncksli"))))
11846 (properties `((upstream-name . "IRdisplay")))
11847 (build-system r-build-system)
11848 (propagated-inputs
11849 `(("r-repr" ,r-repr)))
11850 (home-page "https://cran.r-project.org/web/packages/IRdisplay/")
11851 (synopsis "Jupyter display machinery")
11852 (description
11853 "This package provides an interface to the rich display capabilities of
11854Jupyter front-ends (e.g. Jupyter Notebook). It is designed to be used from a
11855running IRkernel session.")
11856 (license license:expat)))
984a8aa6
RW
11857
11858(define-public r-irkernel
11859 (package
11860 (name "r-irkernel")
f66f4040 11861 (version "1.0.1")
984a8aa6
RW
11862 (source
11863 (origin
11864 (method url-fetch)
11865 (uri (cran-uri "IRkernel" version))
11866 (sha256
11867 (base32
f66f4040 11868 "1gij59b068qp7sbn9d0b9ghmnhfks15a9anj7bp26acv0yvdsg3s"))))
984a8aa6
RW
11869 (properties `((upstream-name . "IRkernel")))
11870 (build-system r-build-system)
11871 (arguments
11872 `(#:phases
11873 (modify-phases %standard-phases
11874 (add-after 'install 'install-kernelspec
11875 (lambda* (#:key outputs #:allow-other-keys)
11876 (let ((out (assoc-ref outputs "out")))
11877 (setenv "HOME" "/tmp")
11878 (invoke "jupyter" "kernelspec" "install"
11879 "--name" "ir"
11880 "--prefix" out
11881 (string-append out "/site-library/IRkernel/kernelspec"))
11882 #t))))))
11883 (inputs
11884 `(("jupyter" ,jupyter)))
11885 (propagated-inputs
11886 `(("r-crayon" ,r-crayon)
11887 ("r-digest" ,r-digest)
11888 ("r-evaluate" ,r-evaluate)
11889 ("r-irdisplay" ,r-irdisplay)
11890 ("r-jsonlite" ,r-jsonlite)
11891 ("r-pbdzmq" ,r-pbdzmq)
11892 ("r-repr" ,r-repr)
11893 ("r-uuid" ,r-uuid)))
11894 (home-page "https://cran.r-project.org/web/packages/IRkernel/")
11895 (synopsis "Native R kernel for Jupyter")
11896 (description
11897 "The R kernel for the Jupyter environment executes R code which the
11898front-end (Jupyter Notebook or other front-ends) submits to the kernel via the
11899network.")
11900 (license license:expat)))
51df4340
RW
11901
11902(define-public r-gmodels
11903 (package
11904 (name "r-gmodels")
11905 (version "2.18.1")
11906 (source
11907 (origin
11908 (method url-fetch)
11909 (uri (cran-uri "gmodels" version))
11910 (sha256
11911 (base32
11912 "0s8kd8krqk4kwv2zqxpsfy3w8qdwf5naf4b5l383vidq9sil0qb2"))))
11913 (build-system r-build-system)
11914 (propagated-inputs
11915 `(("r-gdata" ,r-gdata)
11916 ("r-mass" ,r-mass)))
11917 (home-page "https://cran.r-project.org/web/packages/gmodels/")
11918 (synopsis "Various R programming tools for model fitting")
11919 (description
11920 "This package provides various R programming tools for model fitting.")
11921 (license license:gpl2)))
3942bf5e
RW
11922
11923(define-public r-apcluster
11924 (package
11925 (name "r-apcluster")
11926 (version "1.4.7")
11927 (source
11928 (origin
11929 (method url-fetch)
11930 (uri (cran-uri "apcluster" version))
11931 (sha256
11932 (base32
11933 "188hdfmwjjx3aic599nwmkzjqm9j9jighi5bly6qd43c1vj6ih2s"))))
11934 (build-system r-build-system)
11935 (propagated-inputs
11936 `(("r-matrix" ,r-matrix)
11937 ("r-rcpp" ,r-rcpp)))
11938 (home-page "https://cran.r-project.org/web/packages/apcluster/")
11939 (synopsis "Affinity propagation clustering")
11940 (description
11941 "This package implements affinity propagation clustering introduced by
11942Frey and Dueck (2007). The package further provides leveraged affinity
11943propagation and an algorithm for exemplar-based agglomerative clustering that
11944can also be used to join clusters obtained from affinity propagation. Various
11945plotting functions are available for analyzing clustering results.")
11946 (license license:gpl2+)))
a97796cd
RW
11947
11948(define-public r-valr
11949 (package
11950 (name "r-valr")
11951 (version "0.5.0")
11952 (source
11953 (origin
11954 (method url-fetch)
11955 (uri (cran-uri "valr" version))
11956 (sha256
11957 (base32
11958 "14jhrwkiwmha3vlmm7b50n2xxyizj6ddmy89gb20mpzq7qhz1ika"))))
11959 (build-system r-build-system)
11960 (propagated-inputs
11961 `(("r-broom" ,r-broom)
11962 ("r-dplyr" ,r-dplyr)
11963 ("r-ggplot2" ,r-ggplot2)
11964 ("r-rcpp" ,r-rcpp)
11965 ("r-readr" ,r-readr)
11966 ("r-rlang" ,r-rlang)
11967 ("r-stringr" ,r-stringr)
11968 ("r-tibble" ,r-tibble)))
11969 (home-page "http://github.com/rnabioco/valr")
11970 (synopsis "Genome interval arithmetic in R")
11971 (description
11972 "This package enables you to read and manipulate genome intervals and
11973signals. It provides functionality similar to command-line tool suites within
11974R, enabling interactive analysis and visualization of genome-scale data.")
11975 (license license:expat)))
100f5602
NB
11976
11977(define-public r-rematch2
11978 (package
11979 (name "r-rematch2")
11980 (version "2.0.1")
11981 (source
11982 (origin
11983 (method url-fetch)
11984 (uri (cran-uri "rematch2" version))
11985 (sha256
11986 (base32
11987 "16k0i5p7fa3qfxv59ijyn638wpz8n4jrkrnilqmh5g9l8f8bn4h6"))))
11988 (build-system r-build-system)
11989 (propagated-inputs
11990 `(("r-tibble" ,r-tibble)))
11991 (home-page "https://github.com/r-lib/rematch2")
11992 (synopsis "Tidy output from regular expression matching")
11993 (description
11994 "This package provides wrappers on @code{regexpr} and @code{gregexpr} to
11995return the match results in tidy data frames.")
11996 (license license:expat)))
0c02f94f
RW
11997
11998(define-public r-picante
11999 (package
12000 (name "r-picante")
12001 (version "1.8")
12002 (source
12003 (origin
12004 (method url-fetch)
12005 (uri (cran-uri "picante" version))
12006 (sha256
12007 (base32
12008 "1bcq2j7fs89c2jib68qq6la67rxyg9raryf162mwvjakpf6k19l1"))))
12009 (build-system r-build-system)
12010 (propagated-inputs
12011 `(("r-ape" ,r-ape)
12012 ("r-nlme" ,r-nlme)
12013 ("r-vegan" ,r-vegan)))
12014 (home-page "https://cran.r-project.org/web/packages/picante/")
12015 (synopsis "Integrating phylogenies and ecology")
12016 (description
12017 "This package provides functions for phylocom integration, community
12018analyses, null-models, traits and evolution. It implements numerous
12019ecophylogenetic approaches including measures of community phylogenetic and
12020trait diversity, phylogenetic signal, estimation of trait values for
12021unobserved taxa, null models for community and phylogeny randomizations, and
12022utility functions for data input/output and phylogeny plotting. A full
12023description of package functionality and methods are provided by Kembel et
12024al. (2010).")
12025 (license license:gpl2)))
93f178b5
RW
12026
12027(define-public r-reinforcelearn
12028 (package
12029 (name "r-reinforcelearn")
d1ed092e 12030 (version "0.2.1")
93f178b5
RW
12031 (source
12032 (origin
12033 (method url-fetch)
12034 (uri (cran-uri "reinforcelearn" version))
12035 (sha256
12036 (base32
d1ed092e 12037 "176z2q69p24i29a8sh19xxn2zl3h1z2ixdssr5i6m4yvkvdrvv3b"))))
93f178b5
RW
12038 (build-system r-build-system)
12039 (propagated-inputs
12040 `(("r-checkmate" ,r-checkmate)
12041 ("r-nnet" ,r-nnet)
12042 ("r-purrr" ,r-purrr)
12043 ("r-r6" ,r-r6)))
12044 (home-page "https://markusdumke.github.io/reinforcelearn")
12045 (synopsis "Reinforcement learning")
12046 (description
12047 "This package implements reinforcement learning environments and
12048algorithms as described in Sutton & Barto (1998). The Q-Learning algorithm
12049can be used with function approximation, eligibility traces (Singh & Sutton,
120501996) and experience replay (Mnih et al., 2013).")
12051 (license license:expat)))
f98d97c6
RW
12052
12053(define-public r-lemon
12054 (package
12055 (name "r-lemon")
12056 (version "0.4.3")
12057 (source
12058 (origin
12059 (method url-fetch)
12060 (uri (cran-uri "lemon" version))
12061 (sha256
12062 (base32
12063 "0wsn5bfg10wq4dnrgpyraz2bzx9p19c7hf1pwj3h4zmpqfgsdbpw"))))
12064 (build-system r-build-system)
12065 (propagated-inputs
12066 `(("r-ggplot2" ,r-ggplot2)
12067 ("r-gridextra" ,r-gridextra)
12068 ("r-gtable" ,r-gtable)
12069 ("r-knitr" ,r-knitr)
12070 ("r-lattice" ,r-lattice)
12071 ("r-plyr" ,r-plyr)
12072 ("r-scales" ,r-scales)))
12073 (home-page "https://github.com/stefanedwards/lemon")
12074 (synopsis "Freshen up your ggplot2 plots")
12075 (description
12076 "This package provides functions for working with legends and axis lines
12077of ggplot2, facets that repeat axis lines on all panels, and some knitr
12078extensions.")
12079 (license license:gpl3)))
79db3a1a
RW
12080
12081(define-public r-wgaim
12082 (package
12083 (name "r-wgaim")
12084 (version "1.4-11")
12085 (source
12086 (origin
12087 (method url-fetch)
12088 (uri (cran-uri "wgaim" version))
12089 (sha256
12090 (base32
12091 "1jjyp100dcjjczp61xlvhmy48ynniqcys535vzbgswhr7fvijymg"))))
12092 (build-system r-build-system)
12093 (propagated-inputs
12094 `(("r-lattice" ,r-lattice)
12095 ("r-qtl" ,r-qtl)))
12096 (home-page "https://cran.r-project.org/web/packages/wgaim")
12097 (synopsis "Whole genome average interval mapping for QTL detection")
12098 (description
12099 "This package integrates sophisticated mixed modelling methods with a
12100whole genome approach to detecting significant QTL in linkage maps.")
12101 (license license:gpl2+)))
f33cb7ab
RW
12102
12103(define-public r-bedr
12104 (package
12105 (name "r-bedr")
3c18fb13 12106 (version "1.0.7")
f33cb7ab
RW
12107 (source
12108 (origin
12109 (method url-fetch)
12110 (uri (cran-uri "bedr" version))
12111 (sha256
12112 (base32
3c18fb13 12113 "0zpqvyjgwyqawxm8qrhcv8zq2b3yxgcqkkc87br29yrl7sjb8h6j"))))
f33cb7ab
RW
12114 (build-system r-build-system)
12115 (propagated-inputs
12116 `(("r-data-table" ,r-data-table)
12117 ("r-r-utils" ,r-r-utils)
12118 ("r-testthat" ,r-testthat)
12119 ("r-venndiagram" ,r-venndiagram)
12120 ("r-yaml" ,r-yaml)
12121 ("bedops" ,bedops)
12122 ("bedtools" ,bedtools)
12123 ("htslib" ,htslib))) ; for tabix
12124 (native-inputs
12125 `(("r-knitr" ,r-knitr))) ; for vignettes
12126 (home-page "https://cran.r-project.org/web/packages/bedr")
12127 (synopsis "Genomic region processing")
12128 (description
12129 "This package is for genomic regions processing using command line tools
12130such as BEDTools, BEDOPS and Tabix. These tools offer scalable and efficient
12131utilities to perform genome arithmetic e.g indexing, formatting and merging.
12132The bedr package's API enhances access to these tools as well as offers
12133additional utilities for genomic regions processing.")
12134 (license license:gpl2)))
459dcb95
RW
12135
12136(define-public r-partitions
12137 (package
12138 (name "r-partitions")
12139 (version "1.9-19")
12140 (source
12141 (origin
12142 (method url-fetch)
12143 (uri (cran-uri "partitions" version))
12144 (sha256
12145 (base32
12146 "1pklfnjdc094c8nzkqcdvqzdh8v3p5n8jbg4pf9678iw648saiyx"))))
12147 (build-system r-build-system)
12148 (propagated-inputs
12149 `(("r-gmp" ,r-gmp)
12150 ("r-polynom" ,r-polynom)))
12151 (home-page "https://cran.r-project.org/web/packages/partitions")
12152 (synopsis "Additive partitions of integers")
12153 (description
12154 "This package provides tools to enumerates the partitions, unequal
12155partitions, and restricted partitions of an integer; the three corresponding
12156partition functions are also given.")
12157 ;; Any version of the GPL
12158 (license license:gpl2+)))
761c097f
RW
12159
12160(define-public r-brobdingnag
12161 (package
12162 (name "r-brobdingnag")
12163 (version "1.2-6")
12164 (source
12165 (origin
12166 (method url-fetch)
12167 (uri (cran-uri "Brobdingnag" version))
12168 (sha256
12169 (base32
12170 "1m3ajvcksqfck5l5hj5xiflj4ry6d896ybv4f0xxks8chgnwmv0r"))))
12171 (properties `((upstream-name . "Brobdingnag")))
12172 (build-system r-build-system)
12173 (home-page "https://github.com/RobinHankin/Brobdingnag.git")
12174 (synopsis "Very large numbers in R")
12175 (description
12176 "This package handles very large numbers in R. Real numbers are held
12177using their natural logarithms, plus a logical flag indicating sign. The
12178package includes a vignette that gives a step-by-step introduction to using S4
12179methods.")
12180 ;; Any version of the GPL
12181 (license license:gpl2+)))
c30be23a
RW
12182
12183(define-public r-untb
12184 (package
12185 (name "r-untb")
12186 (version "1.7-4")
12187 (source
12188 (origin
12189 (method url-fetch)
12190 (uri (cran-uri "untb" version))
12191 (sha256
12192 (base32
12193 "1i7m4vfslsix98dwx4jlrsldm7fhhfp25gr7aapcxqxms7ryaby6"))))
12194 (build-system r-build-system)
12195 (propagated-inputs
12196 `(("r-brobdingnag" ,r-brobdingnag)
12197 ("r-partitions" ,r-partitions)
12198 ("r-polynom" ,r-polynom)))
12199 (home-page "https://github.com/RobinHankin/untb.git")
12200 (synopsis "Ecological drift under the UNTB")
12201 (description
12202 "This package provides numerical simulations, and visualizations, of
12203Hubbell's @dfn{Unified Neutral Theory of Biodiversity} (UNTB).")
12204 (license license:gpl2+)))
ea87b4e3
RW
12205
12206(define-public r-stepwise
12207 (package
12208 (name "r-stepwise")
12209 (version "0.3")
12210 (source
12211 (origin
12212 (method url-fetch)
12213 (uri (cran-uri "stepwise" version))
12214 (sha256
12215 (base32
12216 "1lbx1bxwkf9dw6q46w40pp7h5nkxgghmx8rkpaymm6iybc7gyir2"))))
12217 (build-system r-build-system)
12218 (home-page "http://stat.sfu.ca/statgen/research/stepwise.html")
12219 (synopsis "Stepwise detection of recombination breakpoints")
12220 (description
12221 "This package provides a stepwise approach to identifying recombination
12222breakpoints in a genomic sequence alignment.")
12223 (license license:gpl2+)))
2a35bb15
RW
12224
12225(define-public r-snpmaxsel
12226 (package
12227 (name "r-snpmaxsel")
12228 (version "1.0-3")
12229 (source
12230 (origin
12231 (method url-fetch)
12232 (uri (cran-uri "SNPmaxsel" version))
12233 (sha256
12234 (base32
12235 "0pjvixwqzjd3jwccc8yqq9c76afvbmfq0z1w0cwyj8bblrjpx13z"))))
12236 (properties `((upstream-name . "SNPmaxsel")))
12237 (build-system r-build-system)
12238 (propagated-inputs
12239 `(("r-combinat" ,r-combinat)
12240 ("r-mvtnorm" ,r-mvtnorm)))
12241 (home-page "https://cran.r-project.org/web/packages/SNPmaxsel/index.html")
12242 (synopsis "Maximally selected statistics for SNP data")
12243 (description
12244 "This package implements asymptotic methods related to maximally selected
12245statistics, with applications to @dfn{single-nucleotide polymorphism} (SNP)
12246data.")
12247 (license license:gpl2+)))
7002c44f 12248
49a48c49
RW
12249(define-public r-acsnminer
12250 (package
12251 (name "r-acsnminer")
12252 (version "0.16.8.25")
12253 (source (origin
12254 (method url-fetch)
12255 (uri (cran-uri "ACSNMineR" version))
12256 (sha256
12257 (base32
12258 "0gh604s8qall6zfjlwcg2ilxjvz08dplf9k5g47idhv43scm748l"))))
12259 (properties `((upstream-name . "ACSNMineR")))
12260 (build-system r-build-system)
12261 (propagated-inputs
12262 `(("r-ggplot2" ,r-ggplot2)
12263 ("r-gridextra" ,r-gridextra)))
12264 (home-page "https://cran.r-project.org/web/packages/ACSNMineR")
12265 (synopsis "Gene enrichment analysis")
12266 (description
12267 "This package provides tools to compute and represent gene set enrichment
12268or depletion from your data based on pre-saved maps from the @dfn{Atlas of
12269Cancer Signalling Networks} (ACSN) or user imported maps. The gene set
12270enrichment can be run with hypergeometric test or Fisher exact test, and can
12271use multiple corrections. Visualization of data can be done either by
12272barplots or heatmaps.")
12273 (license license:gpl2+)))
12274
c4d521ba
RW
12275(define-public r-seqinr
12276 (package
12277 (name "r-seqinr")
12278 (version "3.4-5")
12279 (source
12280 (origin
12281 (method url-fetch)
12282 (uri (cran-uri "seqinr" version))
12283 (sha256
12284 (base32
12285 "17zv0n5cji17izwmwg0jcbxbjl3w5rls91w15svcnlpxjms38ahn"))))
12286 (build-system r-build-system)
12287 (propagated-inputs
12288 `(("r-ade4" ,r-ade4)
12289 ("r-segmented" ,r-segmented)))
12290 (inputs
12291 `(("zlib" ,zlib)))
12292 (home-page "http://seqinr.r-forge.r-project.org/")
12293 (synopsis "Biological sequences retrieval and analysis")
12294 (description
12295 "This package provides tools for exploratory data analysis and data
12296visualization of biological sequence (DNA and protein) data. It also includes
12297utilities for sequence data management under the ACNUC system.")
12298 (license license:gpl2+)))
12299
7002c44f
RW
12300(define-public r-units
12301 (package
12302 (name "r-units")
3b13b6d7 12303 (version "0.6-3")
7002c44f
RW
12304 (source
12305 (origin
12306 (method url-fetch)
12307 (uri (cran-uri "units" version))
12308 (sha256
12309 (base32
3b13b6d7 12310 "0kx640h60s3zzkdr302asap7diap6vri6d41scnx507yvkcqiph3"))))
7002c44f
RW
12311 (build-system r-build-system)
12312 (inputs
12313 `(("udunits" ,udunits)))
12314 (propagated-inputs
12315 `(("r-rcpp" ,r-rcpp)))
12316 (home-page "https://github.com/r-quantities/units/")
12317 (synopsis "Measurement Units for R Vectors")
12318 (description
12319 "This package provides support for measurement units in R vectors,
12320matrices and arrays: automatic propagation, conversion, derivation and
12321simplification of units; raising errors in case of unit incompatibility. It
12322is compatible with the @code{POSIXct}, @code{Date} and @code{difftime}
12323classes.")
12324 (license license:gpl2)))
518c1dea
RW
12325
12326(define-public r-classint
12327 (package
12328 (name "r-classint")
1bbfca18 12329 (version "0.3-3")
518c1dea
RW
12330 (source
12331 (origin
12332 (method url-fetch)
12333 (uri (cran-uri "classInt" version))
12334 (sha256
12335 (base32
1bbfca18 12336 "0c2z6shlxa928xa20yl956r06lx20mji3mwipdvmj3f4z5g6hgm9"))))
518c1dea
RW
12337 (properties `((upstream-name . "classInt")))
12338 (build-system r-build-system)
12339 (propagated-inputs
12340 `(("r-class" ,r-class)
1bbfca18
RW
12341 ("r-e1071" ,r-e1071)
12342 ("r-kernsmooth" ,r-kernsmooth)))
518c1dea
RW
12343 (native-inputs `(("gfortran" ,gfortran)))
12344 (home-page "https://github.com/r-spatial/classInt/")
12345 (synopsis "Choose univariate class intervals")
12346 (description
12347 "This package provides selected commonly used methods for choosing
12348univariate class intervals for mapping or other graphics purposes.")
12349 (license license:gpl2+)))
66c08ff4
RW
12350
12351(define-public r-spdata
12352 (package
12353 (name "r-spdata")
12354 (version "0.3.0")
12355 (source
12356 (origin
12357 (method url-fetch)
12358 (uri (cran-uri "spData" version))
12359 (sha256
12360 (base32
12361 "162cqb331ki43jx4r8lpkjpn2l712figd896rnawg9j1jmjyl96y"))))
12362 (properties `((upstream-name . "spData")))
12363 (build-system r-build-system)
12364 (home-page "https://github.com/Nowosad/spData")
12365 (synopsis "Datasets for spatial analysis")
12366 (description
12367 "This a package containing diverse spatial datasets for demonstrating,
12368benchmarking and teaching spatial data analysis. It includes R data of class
12369@code{sf}, @code{Spatial}, and @code{nb}. It also contains data stored in a
12370range of file formats including GeoJSON, ESRI Shapefile and GeoPackage. Some
12371of the datasets are designed to illustrate specific analysis techniques.
12372@code{cycle_hire()} and @code{cycle_hire_osm()}, for example, are designed to
12373illustrate point pattern analysis techniques.")
12374 (license license:cc0)))
e5228273
RW
12375
12376(define-public r-learnbayes
12377 (package
12378 (name "r-learnbayes")
12379 (version "2.15.1")
12380 (source
12381 (origin
12382 (method url-fetch)
12383 (uri (cran-uri "LearnBayes" version))
12384 (sha256
12385 (base32
12386 "0ch54v2zz2yyyk0lvn5rfikdmyz1qh9j1wk3585wl8v58mc0h4cv"))))
12387 (properties `((upstream-name . "LearnBayes")))
12388 (build-system r-build-system)
12389 (home-page "https://cran.r-project.org/web/packages/LearnBayes")
12390 (synopsis "Functions for learning Bayesian inference")
12391 (description
12392 "This package provides a collection of functions helpful in learning the
12393basic tenets of Bayesian statistical inference. It contains functions for
12394summarizing basic one and two parameter posterior distributions and predictive
12395distributions. It contains MCMC algorithms for summarizing posterior
12396distributions defined by the user. It also contains functions for regression
12397models, hierarchical models, Bayesian tests, and illustrations of Gibbs
12398sampling.")
12399 (license license:gpl2+)))
dcc50286
RW
12400
12401(define-public r-deldir
12402 (package
12403 (name "r-deldir")
12404 (version "0.1-16")
12405 (source
12406 (origin
12407 (method url-fetch)
12408 (uri (cran-uri "deldir" version))
12409 (sha256
12410 (base32
12411 "0549kj0hlkdyvm5axsm3np30wg53fm2pxybijzw0avlgsd2y2n2q"))))
12412 (build-system r-build-system)
12413 (native-inputs `(("gfortran" ,gfortran)))
12414 (home-page "https://cran.r-project.org/web/packages/deldir")
12415 (synopsis "Delaunay triangulation and Dirichlet (Voronoi) tessellation")
12416 (description
12417 "This package provides tools for calculating the Delaunay triangulation
12418and the Dirichlet or Voronoi tessellation (with respect to the entire plane)
12419of a planar point set. It plots triangulations and tessellations in various
12420ways, clips tessellations to sub-windows, calculates perimeters of
12421tessellations, and summarizes information about the tiles of the
12422tessellation.")
12423 (license license:gpl2+)))
d884e407
RW
12424
12425(define-public r-sf
12426 (package
12427 (name "r-sf")
071390aa 12428 (version "0.7-4")
d884e407
RW
12429 (source
12430 (origin
12431 (method url-fetch)
12432 (uri (cran-uri "sf" version))
12433 (sha256
12434 (base32
071390aa 12435 "0vnyr7xyfcl928kbrb1k8l4fkd0cjrfq486g6gxpvy5j0cc2h4i1"))))
d884e407
RW
12436 (build-system r-build-system)
12437 (inputs
12438 `(("gdal" ,gdal)
12439 ("geos" ,geos)
12440 ("proj" ,proj.4)
12441 ("zlib" ,zlib)))
12442 (propagated-inputs
12443 `(("r-classint" ,r-classint)
12444 ("r-dbi" ,r-dbi)
12445 ("r-magrittr" ,r-magrittr)
12446 ("r-rcpp" ,r-rcpp)
12447 ("r-units" ,r-units)))
12448 (native-inputs `(("pkg-config" ,pkg-config)))
12449 (home-page "https://github.com/r-spatial/sf/")
12450 (synopsis "Simple features for R")
12451 (description
12452 "This package provides support for simple features, a standardized way to
12453encode spatial vector data. It binds to GDAL for reading and writing data, to
12454GEOS for geometrical operations, and to PROJ for projection conversions and
12455datum transformations.")
12456 ;; Either of these licenses
12457 (license (list license:gpl2 license:expat))))
e371e534
RW
12458
12459(define-public r-spdep
12460 (package
12461 (name "r-spdep")
24be014e 12462 (version "1.1-2")
e371e534
RW
12463 (source
12464 (origin
12465 (method url-fetch)
12466 (uri (cran-uri "spdep" version))
12467 (sha256
12468 (base32
24be014e 12469 "06mk81kc1ml2wjc8wwwgr0wasjcr4mwrxpfa8vfc373bmnha635s"))))
e371e534
RW
12470 (build-system r-build-system)
12471 (propagated-inputs
12472 `(("r-boot" ,r-boot)
12473 ("r-coda" ,r-coda)
12474 ("r-deldir" ,r-deldir)
12475 ("r-expm" ,r-expm)
12476 ("r-gmodels" ,r-gmodels)
12477 ("r-learnbayes" ,r-learnbayes)
12478 ("r-mass" ,r-mass)
12479 ("r-matrix" ,r-matrix)
12480 ("r-nlme" ,r-nlme)
12481 ("r-sf" ,r-sf)
12482 ("r-sp" ,r-sp)
12483 ("r-spdata" ,r-spdata)))
12484 (home-page "https://github.com/r-spatial/spdep/")
12485 (synopsis "Spatial dependence: weighting schemes, statistics and models")
12486 (description
12487 "This package provides a collection of functions to create spatial
12488weights matrix objects from polygon contiguities, from point patterns by
12489distance and tessellations, for summarizing these objects, and for permitting
12490their use in spatial data analysis, including regional aggregation by minimum
12491spanning tree.")
12492 (license license:gpl2+)))
91c1fbdf
RW
12493
12494(define-public r-adegenet
12495 (package
12496 (name "r-adegenet")
12497 (version "2.1.1")
12498 (source
12499 (origin
12500 (method url-fetch)
12501 (uri (cran-uri "adegenet" version))
12502 (sha256
12503 (base32
12504 "0ynfblp0hbd3dp3k86fn1wyhqr28lk6hs2bg4q7gyf0sfdfzwhrh"))))
12505 (build-system r-build-system)
12506 (propagated-inputs
12507 `(("r-ade4" ,r-ade4)
12508 ("r-ape" ,r-ape)
12509 ("r-boot" ,r-boot)
12510 ("r-dplyr" ,r-dplyr)
12511 ("r-ggplot2" ,r-ggplot2)
12512 ("r-igraph" ,r-igraph)
12513 ("r-mass" ,r-mass)
12514 ("r-reshape2" ,r-reshape2)
12515 ("r-seqinr" ,r-seqinr)
12516 ("r-shiny" ,r-shiny)
12517 ("r-spdep" ,r-spdep)
12518 ("r-vegan" ,r-vegan)))
12519 (home-page "https://github.com/thibautjombart/adegenet")
12520 (synopsis "Exploratory analysis of genetic and genomic data")
12521 (description
12522 "This package provides a toolset for the exploration of genetic and
12523genomic data. Adegenet provides formal (S4) classes for storing and handling
12524various genetic data, including genetic markers with varying ploidy and
12525hierarchical population structure (@code{genind} class), alleles counts by
12526populations (@code{genpop}), and genome-wide SNP data (@code{genlight}). It
12527also implements original multivariate methods (DAPC, sPCA), graphics,
12528statistical tests, simulation tools, distance and similarity measures, and
12529several spatial methods. A range of both empirical and simulated datasets is
12530also provided to illustrate various methods.")
12531 (license license:gpl2+)))
3d2bc817
RW
12532
12533(define-public r-pegas
12534 (package
12535 (name "r-pegas")
12536 (version "0.11")
12537 (source
12538 (origin
12539 (method url-fetch)
12540 (uri (cran-uri "pegas" version))
12541 (sha256
12542 (base32
12543 "0l21bapzbjcvblbvks3jh9rpy9hng1ccd7f0glhqw695lc737bpx"))))
12544 (build-system r-build-system)
12545 (propagated-inputs
12546 `(("r-adegenet" ,r-adegenet)
12547 ("r-ape" ,r-ape)))
12548 (home-page "http://ape-package.ird.fr/pegas.html")
12549 (synopsis "Population and evolutionary genetics analysis system")
12550 (description
12551 "This package provides functions for reading, writing, plotting,
12552analysing, and manipulating allelic and haplotypic data, including from VCF
12553files, and for the analysis of population nucleotide sequences and
12554micro-satellites including coalescent analyses, linkage disequilibrium,
12555population structure (Fst, Amova) and equilibrium (HWE), haplotype networks,
12556minimum spanning tree and network, and median-joining networks.")
12557 (license license:gpl2+)))
cd977b35
RW
12558
12559(define-public r-rmetasim
12560 (package
12561 (name "r-rmetasim")
12562 (version "3.1.7")
12563 (source
12564 (origin
12565 (method url-fetch)
12566 (uri (cran-uri "rmetasim" version))
12567 (sha256
12568 (base32
12569 "0sz4mdprdi6sgkfwfdvh2hr9nxiwq17sw0vggq3cvs7lzb0i6m9r"))))
12570 (build-system r-build-system)
12571 (propagated-inputs
12572 `(("r-ade4" ,r-ade4)
12573 ("r-adegenet" ,r-adegenet)
12574 ("r-gtools" ,r-gtools)
12575 ("r-pegas" ,r-pegas)))
12576 (home-page "https://cran.r-project.org/web/packages/rmetasim")
12577 (synopsis "Individual-based population genetic simulation environment")
12578 (description
12579 "This package provides an interface between R and the metasim simulation
12580engine. The simulation environment is documented in: Strand, A.(2002),
12581Metasim 1.0: an individual-based environment for simulating population
12582genetics of complex population dynamics.")
12583 ;; Any GPL version
12584 (license license:gpl2+)))
601ddf02
RW
12585
12586(define-public r-genetics
12587 (package
12588 (name "r-genetics")
f1c1bbc1 12589 (version "1.3.8.1.2")
601ddf02
RW
12590 (source
12591 (origin
12592 (method url-fetch)
12593 (uri (cran-uri "genetics" version))
12594 (sha256
12595 (base32
f1c1bbc1 12596 "1v0ylnia6c44v356dsmnkx6054vcxazpzsrdh3yph5ch5vg6gjrh"))))
601ddf02
RW
12597 (build-system r-build-system)
12598 (propagated-inputs
12599 `(("r-combinat" ,r-combinat)
12600 ("r-gdata" ,r-gdata)
12601 ("r-gtools" ,r-gtools)
12602 ("r-mass" ,r-mass)
12603 ("r-mvtnorm" ,r-mvtnorm)))
12604 (home-page "https://cran.r-project.org/web/packages/genetics/")
12605 (synopsis "Population genetics")
12606 (description
12607 "This package provides classes and methods for handling genetic data.
12608It includes classes to represent genotypes and haplotypes at single markers up
12609to multiple markers on multiple chromosomes. Function include allele
12610frequencies, flagging homo/heterozygotes, flagging carriers of certain
12611alleles, estimating and testing for Hardy-Weinberg disequilibrium, estimating
12612and testing for linkage disequilibrium, ...")
12613 ;; Any GPL version.
12614 (license license:gpl2+)))
5ef7d057
RW
12615
12616(define-public r-snp-plotter
12617 (package
12618 (name "r-snp-plotter")
12619 (version "0.5.1")
12620 (source
12621 (origin
12622 (method url-fetch)
12623 (uri (cran-uri "snp.plotter" version))
12624 (sha256
12625 (base32
12626 "16apsqvkah5l0d5qcwp3lq2jspkb6n62wzr0wskmj84jblx483vv"))))
12627 (properties `((upstream-name . "snp.plotter")))
12628 (build-system r-build-system)
12629 (propagated-inputs `(("r-genetics" ,r-genetics)))
12630 (home-page "https://cran.r-project.org/web/packages/snp.plotter/")
12631 (synopsis "Plot p-values using single SNP and/or haplotype data")
12632 (description
12633 "This package helps you create plots of p-values using single SNP and/or
12634haplotype data. Main features of the package include options to display a
12635@dfn{linkage disequilibrium} (LD) plot and the ability to plot multiple
12636datasets simultaneously. Plots can be created using global and/or individual
12637haplotype p-values along with single SNP p-values. Images are created as
12638either PDF/EPS files.")
12639 (license license:gpl2+)))
6a472af3
RW
12640
12641(define-public r-polspline
12642 (package
12643 (name "r-polspline")
12644 (version "1.1.14")
12645 (source
12646 (origin
12647 (method url-fetch)
12648 (uri (cran-uri "polspline" version))
12649 (sha256
12650 (base32
12651 "0g4s5nwi13yfs6b169yw8vrs48nvjyc014k2v7ybcxarl8z81va0"))))
12652 (build-system r-build-system)
12653 (native-inputs `(("gfortran" ,gfortran)))
12654 (home-page "https://cran.r-project.org/web/packages/polspline/")
12655 (synopsis "Polynomial spline routines")
12656 (description
12657 "This package provides routines for the polynomial spline fitting
12658routines hazard regression, hazard estimation with flexible tails, logspline,
12659lspec, polyclass, and polymars.")
12660 (license license:gpl2+)))
a8c965cf
RW
12661
12662(define-public r-rms
12663 (package
12664 (name "r-rms")
88a39cc6 12665 (version "5.1-3.1")
a8c965cf
RW
12666 (source
12667 (origin
12668 (method url-fetch)
12669 (uri (cran-uri "rms" version))
12670 (sha256
12671 (base32
88a39cc6 12672 "0drbr3g0x5pbxyzy50wnf92rbal8izizrcqslqhg0gsfg9adjih9"))))
a8c965cf
RW
12673 (build-system r-build-system)
12674 (propagated-inputs
12675 `(("r-ggplot2" ,r-ggplot2)
12676 ("r-hmisc" ,r-hmisc)
12677 ("r-htmltable" ,r-htmltable)
12678 ("r-htmltools" ,r-htmltools)
12679 ("r-lattice" ,r-lattice)
12680 ("r-multcomp" ,r-multcomp)
12681 ("r-nlme" ,r-nlme)
12682 ("r-polspline" ,r-polspline)
12683 ("r-quantreg" ,r-quantreg)
12684 ("r-rpart" ,r-rpart)
12685 ("r-sparsem" ,r-sparsem)
12686 ("r-survival" ,r-survival)))
12687 (native-inputs `(("gfortran" ,gfortran)))
12688 (home-page "http://biostat.mc.vanderbilt.edu/rms")
12689 (synopsis "Regression modeling strategies")
12690 (description
12691 "This is a package for regression modeling, testing, estimation,
12692validation, graphics, prediction, and typesetting by storing enhanced model
12693design attributes in the fit. The rms package is a collection of functions
12694that assist with and streamline modeling. It also contains functions for
12695binary and ordinal logistic regression models, ordinal models for continuous Y
12696with a variety of distribution families, and the Buckley-James multiple
12697regression model for right-censored responses, and implements penalized
12698maximum likelihood estimation for logistic and ordinary linear models. The
12699package works with almost any regression model, but it was especially written
12700to work with binary or ordinal regression models, Cox regression, accelerated
12701failure time models, ordinary linear models, the Buckley-James model,
12702generalized least squares for serially or spatially correlated observations,
12703generalized linear models, and quantile regression.")
12704 (license license:gpl2+)))
cd47dcf6
RW
12705
12706(define-public r-haplo-stats
12707 (package
12708 (name "r-haplo-stats")
12709 (version "1.7.9")
12710 (source
12711 (origin
12712 (method url-fetch)
12713 (uri (cran-uri "haplo.stats" version))
12714 (sha256
12715 (base32
12716 "19kxascqq5qz0zdxx0w837ji207y1z2ggxkl4vmlbay03k2dw2mx"))))
12717 (properties `((upstream-name . "haplo.stats")))
12718 (build-system r-build-system)
12719 (propagated-inputs
12720 `(("r-rms" ,r-rms)))
12721 (native-inputs
12722 `(("r-r-rsp" ,r-r-rsp))) ; for vignettes
12723 (home-page "https://www.mayo.edu/research/labs/statistical-genetics-genetic-epidemiology/software")
12724 (synopsis "Analysis of haplotypes when linkage phase is ambiguous")
12725 (description
12726 "This package provides routines for the analysis of indirectly measured
12727haplotypes. The statistical methods assume that all subjects are unrelated
12728and that haplotypes are ambiguous (due to unknown linkage phase of the genetic
12729markers). The main functions are: @code{haplo.em()}, @code{haplo.glm()},
12730@code{haplo.score()}, and @code{haplo.power()}; all of which have detailed
12731examples in the vignette.")
12732 (license license:gpl2+)))
bffb5826
RW
12733
12734(define-public r-bqtl
12735 (package
12736 (name "r-bqtl")
12737 (version "1.0-32")
12738 (source
12739 (origin
12740 (method url-fetch)
12741 (uri (cran-uri "bqtl" version))
12742 (sha256
12743 (base32
12744 "0jjqgsm9fmvz5nkgz608xfljjpmaf4rs4f7kxvpqn4b1l9s5lhci"))))
12745 (build-system r-build-system)
12746 (native-inputs `(("gfortran" ,gfortran)))
12747 (home-page "http://famprevmed.ucsd.edu/faculty/cberry/bqtl/")
12748 (synopsis "Bayesian QTL mapping toolkit")
12749 (description
12750 "This is a QTL mapping toolkit for inbred crosses and recombinant inbred
12751lines. It includes maximum likelihood and Bayesian tools.")
12752 (license license:gpl2+)))
73fcd222
RW
12753
12754(define-public r-ibdreg
12755 (package
12756 (name "r-ibdreg")
12757 (version "0.2.5")
12758 (source
12759 (origin
12760 (method url-fetch)
12761 (uri (cran-uri "ibdreg" version))
12762 (sha256
12763 (base32
12764 "1kaa5q1byi30wzr0mw4w2cv1ssxprzcwf91wrpqwkgcsdy7dkh2g"))))
12765 (build-system r-build-system)
12766 (home-page "https://www.mayo.edu/research/labs/\
12767statistical-genetics-genetic-epidemiology/software")
12768 (synopsis "Regression methods for IBD linkage with covariates")
12769 (description
12770 "This package provides a method to test genetic linkage with covariates
12771by regression methods with response IBD sharing for relative pairs. Account
12772for correlations of IBD statistics and covariates for relative pairs within
12773the same pedigree.")
12774 (license license:gpl2+)))
d4a255a4
RW
12775
12776(define-public r-dlmap
12777 (package
12778 (name "r-dlmap")
12779 (version "1.13")
12780 (source
12781 (origin
12782 (method url-fetch)
12783 (uri (cran-uri "dlmap" version))
12784 (sha256
12785 (base32
12786 "0s6wlkggkm3qndwyvw72xv1n0mcjb7ss3ajbq2ll6rv30splq0db"))))
12787 (build-system r-build-system)
12788 (propagated-inputs
12789 `(("r-ibdreg" ,r-ibdreg)
12790 ("r-mgcv" ,r-mgcv)
12791 ("r-nlme" ,r-nlme)
12792 ("r-qtl" ,r-qtl)
12793 ("r-wgaim" ,r-wgaim)))
12794 (home-page "https://cran.r-project.org/web/packages/dlmap/")
12795 (synopsis "Detection localization mapping for QTL")
12796 (description
12797 "This is package for QTL mapping in a mixed model framework with separate
12798detection and localization stages. The first stage detects the number of QTL
12799on each chromosome based on the genetic variation due to grouped markers on
12800the chromosome; the second stage uses this information to determine the most
12801likely QTL positions. The mixed model can accommodate general fixed and
12802random effects, including spatial effects in field trials and pedigree
12803effects. It is applicable to backcrosses, doubled haploids, recombinant
12804inbred lines, F2 intercrosses, and association mapping populations.")
12805 (license license:gpl2)))
1cdd9f0e
RW
12806
12807(define-public r-ldheatmap
12808 (package
12809 (name "r-ldheatmap")
12810 (version "0.99-5")
12811 (source
12812 (origin
12813 (method url-fetch)
12814 (uri (cran-uri "LDheatmap" version))
12815 (sha256
12816 (base32
12817 "0il3g3n3bzv74lz7dlhyiwc2x2417v6yhx2g47pahxdzqa09kf4s"))))
12818 (properties `((upstream-name . "LDheatmap")))
12819 (build-system r-build-system)
12820 (propagated-inputs
12821 `(("r-genetics" ,r-genetics)
12822 ("r-snpstats" ,r-snpstats)))
12823 (home-page "http://stat.sfu.ca/statgen/research/ldheatmap.html")
12824 (synopsis "Graphical display of pairwise linkage disequilibria between SNPs")
12825 (description
12826 "This package provides tools to produce a graphical display, as a heat
12827map, of measures of pairwise linkage disequilibria between SNPs. Users may
12828optionally include the physical locations or genetic map distances of each SNP
12829on the plot.")
12830 (license license:gpl3)))
b8fea3c8
RW
12831
12832(define-public r-hwde
12833 (package
12834 (name "r-hwde")
12835 (version "0.67")
12836 (source
12837 (origin
12838 (method url-fetch)
12839 (uri (cran-uri "hwde" version))
12840 (sha256
12841 (base32
12842 "0wb2f9i5qi7w77ygh8bvydfpr7j5x8dyvnnhdkajaz0wdcpkyaqy"))))
12843 (build-system r-build-system)
12844 (home-page "https://cran.r-project.org/web/packages/hwde/")
12845 (synopsis "Models and tests for departure from Hardy-Weinberg equilibrium")
12846 (description
12847 "This package fits models for genotypic disequilibria, as described in
12848Huttley and Wilson (2000), Weir (1996) and Weir and Wilson (1986). Contrast
12849terms are available that account for first order interactions between loci.
12850It also implements, for a single locus in a single population, a conditional
12851exact test for Hardy-Weinberg equilibrium.")
12852 (license license:gpl2+)))
7cd4ff2f
RW
12853
12854(define-public r-tdthap
12855 (package
12856 (name "r-tdthap")
12857 (version "1.1-9")
12858 (source
12859 (origin
12860 (method url-fetch)
12861 (uri (cran-uri "tdthap" version))
12862 (sha256
12863 (base32
12864 "0y01x0hcf0rw06cpn4pk17b0shf4v2c9was7vfs0zhsbq8qcwx7r"))))
12865 (build-system r-build-system)
12866 (home-page "https://cran.r-project.org/web/packages/tdthap/")
12867 (synopsis "TDT tests for extended haplotypes")
12868 (description
12869 "Functions and examples are provided for transmission/disequilibrium
12870tests for extended marker haplotypes, as in Clayton, D. and Jones, H. (1999)
12871\"Transmission/disequilibrium tests for extended marker haplotypes\".")
12872 (license license:artistic2.0)))
469fb438
RW
12873
12874(define-public r-sparql
12875 (package
12876 (name "r-sparql")
12877 (version "1.16")
12878 (source (origin
12879 (method url-fetch)
12880 (uri (cran-uri "SPARQL" version))
12881 (sha256
12882 (base32
12883 "0gak1q06yyhdmcxb2n3v0h9gr1vqd0viqji52wpw211qp6r6dcrc"))))
12884 (properties `((upstream-name . "SPARQL")))
12885 (build-system r-build-system)
12886 (propagated-inputs
12887 `(("r-rcurl" ,r-rcurl)
12888 ("r-xml" ,r-xml)))
12889 (home-page "https://cran.r-project.org/web/packages/SPARQL")
12890 (synopsis "SPARQL client for R")
12891 (description "This package provides an interface to use SPARQL to pose
12892SELECT or UPDATE queries to an end-point.")
12893 ;; The only license indication is found in the DESCRIPTION file,
12894 ;; which states GPL-3. So we cannot assume GPLv3+.
12895 (license license:gpl3)))
0ef062b3
RW
12896
12897(define-public r-bookdown
12898 (package
12899 (name "r-bookdown")
080c7062 12900 (version "0.10")
0ef062b3
RW
12901 (source (origin
12902 (method url-fetch)
12903 (uri (cran-uri "bookdown" version))
12904 (sha256
12905 (base32
080c7062 12906 "0xk57p9iyj7rqrwb89q3pm8p29ca615fj1h9blf5yb3zhga4bjk3"))))
0ef062b3
RW
12907 (build-system r-build-system)
12908 (propagated-inputs
12909 `(("r-htmltools" ,r-htmltools)
12910 ("r-knitr" ,r-knitr)
12911 ("r-rmarkdown" ,r-rmarkdown)
12912 ("r-tinytex" ,r-tinytex)
12913 ("r-yaml" ,r-yaml)
12914 ("r-xfun" ,r-xfun)))
12915 (home-page "https://github.com/rstudio/bookdown")
12916 (synopsis "Authoring books and technical documents with R markdown")
12917 (description "This package provides output formats and utilities for
12918authoring books and technical documents with R Markdown.")
12919 (license license:gpl3)))
72a216a9
RW
12920
12921(define-public r-optparse
12922 (package
12923 (name "r-optparse")
b85a5f3b 12924 (version "1.6.2")
72a216a9
RW
12925 (source
12926 (origin
12927 (method url-fetch)
12928 (uri (cran-uri "optparse" version))
12929 (sha256
12930 (base32
b85a5f3b 12931 "0zrp6jakjhawrwfri270ym83vj5a7nvjk0w6b41z41ahw2da99dm"))))
72a216a9
RW
12932 (build-system r-build-system)
12933 (propagated-inputs
12934 `(("r-getopt" ,r-getopt)))
12935 (home-page "https://github.com/trevorld/optparse")
12936 (synopsis "Command line option parser")
12937 (description
12938 "This package provides a command line parser inspired by Python's
12939@code{optparse} library to be used with Rscript to write shebang scripts
12940that accept short and long options.")
12941 (license license:gpl2+)))
c5a2b518
RW
12942
12943(define-public r-wgcna
12944 (package
12945 (name "r-wgcna")
be5385eb 12946 (version "1.67")
c5a2b518
RW
12947 (source
12948 (origin
12949 (method url-fetch)
12950 (uri (cran-uri "WGCNA" version))
12951 (sha256
12952 (base32
be5385eb 12953 "09387w85lxvwr8ax2i2h602b4dgfv4wbvsl9aj1q0b1vfs4rkk69"))))
c5a2b518
RW
12954 (properties `((upstream-name . "WGCNA")))
12955 (build-system r-build-system)
12956 (propagated-inputs
12957 `(("r-annotationdbi" ,r-annotationdbi)
12958 ("r-doparallel" ,r-doparallel)
12959 ("r-dynamictreecut" ,r-dynamictreecut)
12960 ("r-fastcluster" ,r-fastcluster)
12961 ("r-foreach" ,r-foreach)
12962 ("r-go-db" ,r-go-db)
12963 ("r-hmisc" ,r-hmisc)
12964 ("r-impute" ,r-impute)
12965 ("r-rcpp" ,r-rcpp)
12966 ("r-robust" ,r-robust)
12967 ("r-survival" ,r-survival)
12968 ("r-matrixstats" ,r-matrixstats)
12969 ("r-preprocesscore" ,r-preprocesscore)))
12970 (home-page
12971 "http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/Rpackages/WGCNA/")
12972 (synopsis "Weighted correlation network analysis")
12973 (description
12974 "This package provides functions necessary to perform Weighted
12975Correlation Network Analysis on high-dimensional data. It includes functions
12976for rudimentary data cleaning, construction and summarization of correlation
12977networks, module identification and functions for relating both variables and
12978modules to sample traits. It also includes a number of utility functions for
12979data manipulation and visualization.")
12980 (license license:gpl2+)))
bac0ca32
RW
12981
12982(define-public r-kernlab
12983 (package
12984 (name "r-kernlab")
12985 (version "0.9-27")
12986 (source
12987 (origin
12988 (method url-fetch)
12989 (uri (cran-uri "kernlab" version))
12990 (sha256
12991 (base32
12992 "1m0xqf6gyvwayz7w3c83y32ayvnlz0jicj8ijk808zq9sh7dbbgn"))))
12993 (build-system r-build-system)
12994 (home-page "https://cran.r-project.org/web/packages/kernlab")
12995 (synopsis "Kernel-based machine learning tools")
12996 (description
12997 "This package provides kernel-based machine learning methods for
12998classification, regression, clustering, novelty detection, quantile regression
12999and dimensionality reduction. Among other methods @code{kernlab} includes
13000Support Vector Machines, Spectral Clustering, Kernel PCA, Gaussian Processes
13001and a QP solver.")
13002 (license license:gpl2)))
a0583c0d
RW
13003
13004(define-public r-hierfstat
13005 (package
13006 (name "r-hierfstat")
13007 (version "0.04-22")
13008 (source
13009 (origin
13010 (method url-fetch)
13011 (uri (cran-uri "hierfstat" version))
13012 (sha256
13013 (base32
13014 "1fav2v2996v5kb1ffa6v5wxfm921syxg6as034vd3j4jfhdibyfx"))))
13015 (build-system r-build-system)
13016 (propagated-inputs
13017 `(("r-ade4" ,r-ade4)
13018 ("r-adegenet" ,r-adegenet)
13019 ("r-gtools" ,r-gtools)))
13020 (home-page "https://cran.r-project.org/web/packages/hierfstat/")
13021 (synopsis "Estimation and tests of hierarchical F-statistics")
13022 (description
13023 "This package allows the estimation of hierarchical F-statistics from
13024haploid or diploid genetic data with any numbers of levels in the hierarchy,
13025following the algorithm of Yang (Evolution, 1998, 52(4):950-956). Functions
13026are also given to test via randomisations the significance of each F and
13027variance components, using the likelihood-ratio statistics G.")
13028 (license license:gpl2+)))
3080b81a
RW
13029
13030(define-public r-hapassoc
13031 (package
13032 (name "r-hapassoc")
13033 (version "1.2-8")
13034 (source
13035 (origin
13036 (method url-fetch)
13037 (uri (cran-uri "hapassoc" version))
13038 (sha256
13039 (base32
13040 "0qs5jl0snzfchgpp6pabncwywxcmi743g91jvjiyyzw0lw85yv4s"))))
13041 (build-system r-build-system)
13042 (home-page "http://stat.sfu.ca/statgen/research/hapassoc.html")
13043 (synopsis "Inference of trait associations with SNP haplotypes")
13044 (description
13045 "Hapassoc performs likelihood inference of trait associations with
13046haplotypes and other covariates in @dfn{generalized linear models} (GLMs). The
13047functions are developed primarily for data collected in cohort or
13048cross-sectional studies. They can accommodate uncertain haplotype phase and
13049handle missing genotypes at some SNPs.")
13050 (license license:gpl2)))
7166b77a
RW
13051
13052(define-public r-sampling
13053 (package
13054 (name "r-sampling")
13055 (version "2.8")
13056 (source
13057 (origin
13058 (method url-fetch)
13059 (uri (cran-uri "sampling" version))
13060 (sha256
13061 (base32
13062 "06pj7dan0mknpsblmlnk7am78qrnwgnql5vvx7vmbfvib7rj6s9m"))))
13063 (build-system r-build-system)
13064 (propagated-inputs
13065 `(("r-lpsolve" ,r-lpsolve)
13066 ("r-mass" ,r-mass)))
13067 (home-page "https://cran.r-project.org/web/packages/sampling/")
13068 (synopsis "Survey sampling")
13069 (description
13070 "This package provides functions for drawing and calibrating samples.")
13071 (license license:gpl2+)))
4f8b1fb3
RW
13072
13073(define-public r-r2html
13074 (package
13075 (name "r-r2html")
13076 (version "2.3.2")
13077 (source
13078 (origin
13079 (method url-fetch)
13080 (uri (cran-uri "R2HTML" version))
13081 (sha256
13082 (base32
13083 "00kxny7hajs9r2kw63qk7d03ggdxx2j1g8vbrmzp806y8aczvik9"))))
13084 (properties `((upstream-name . "R2HTML")))
13085 (build-system r-build-system)
13086 (home-page "https://github.com/nalimilan/R2HTML")
13087 (synopsis "HTML export for R objects")
13088 (description
13089 "This package includes HTML functions and methods to write in an HTML
13090file. Thus, making HTML reports is easy. It includes a function that allows
13091redirection on the fly, which appears to be very useful for teaching purposes,
13092as the student can keep a copy of the produced output to keep all that they
13093did during the course. The package comes with a vignette describing how to
13094write HTML reports for statistical analysis. Finally, a driver for Sweave
13095allows to parse HTML flat files containing R code and to automatically write
13096the corresponding outputs (tables and graphs).")
13097 (license license:gpl2+)))
3f6e6e98
RW
13098
13099(define-public r-rjava
13100 (package
13101 (name "r-rjava")
f2f89e9a 13102 (version "0.9-11")
3f6e6e98
RW
13103 (source
13104 (origin
13105 (method url-fetch)
13106 (uri (cran-uri "rJava" version))
13107 (sha256
13108 (base32
f2f89e9a 13109 "0s9cjy1wh7snmbqwznh8f1r4ipylr7mgda4a979z963a8lqy32n2"))))
3f6e6e98
RW
13110 (properties `((upstream-name . "rJava")))
13111 (build-system r-build-system)
13112 (arguments
13113 `(#:modules ((guix build utils)
13114 (guix build r-build-system)
13115 (ice-9 match))
13116 #:phases
13117 (modify-phases %standard-phases
13118 (add-after 'unpack 'set-JAVA_HOME
13119 (lambda* (#:key inputs #:allow-other-keys)
13120 (let ((jdk (assoc-ref inputs "jdk")))
13121 (setenv "JAVA_HOME" jdk)
13122 (setenv "JAVA" (which "java"))
13123 (setenv "JAR" (which "jar"))
13124 (setenv "JAVAC" (which "javac"))
13125 (setenv "JAVAH" (which "javah"))
13126 (setenv "JAVA_CPPFLAGS"
13127 (string-append "-I" jdk "/include "
13128 "-I" jdk "/include/linux"))
13129 (match (find-files (string-append jdk "/jre/lib/") "libjvm.so")
13130 ((lib) (setenv "JAVA_LIBS" lib))
13131 (_ (error "Could not find libjvm.so"))))
13132 #t)))))
13133 (inputs
13134 `(("icu4c" ,icu4c)
13135 ("jdk" ,icedtea-8 "jdk")
13136 ("pcre" ,pcre)
13137 ("zlib" ,zlib)))
13138 (home-page "http://www.rforge.net/rJava/")
13139 (synopsis "Low-Level R to Java interface")
13140 (description
13141 "This package provides a low-level interface to the Java VM very much
13142like .C/.Call and friends. It allows the creation of objects, calling methods
13143and accessing fields.")
13144 (license license:gpl2)))
b9b177b3
RW
13145
13146(define-public r-svmisc
13147 (package
13148 (name "r-svmisc")
13149 (version "1.1.0")
13150 (source
13151 (origin
13152 (method url-fetch)
13153 (uri (cran-uri "svMisc" version))
13154 (sha256
13155 (base32
13156 "01r2a73wx2sh1njky961fxabx5wgddqqjqba6vjg0f3h8r3abmn2"))))
13157 (properties `((upstream-name . "svMisc")))
13158 (build-system r-build-system)
13159 (home-page "https://github.com/SciViews/svMisc")
13160 (synopsis "Miscellaneous functions for SciViews")
13161 (description
13162 "This package provides miscellaneous functions for SciViews or general
13163use, including tools to manage a temporary environment attached to the search
13164path for temporary variables you do not want to @code{save()} or
13165@code{load()}; test the current platform; showing progress bars, etc.")
13166 (license license:gpl2)))
18c51cf3
RW
13167
13168(define-public r-xyz
13169 (package
13170 (name "r-xyz")
13171 (version "0.2")
13172 (source
13173 (origin
13174 (method url-fetch)
13175 (uri (cran-uri "xyz" version))
13176 (sha256
13177 (base32
13178 "13w4sb4pvgciwr8wsz785dafj2k2kpx7znz46r5d32wx88vkycp4"))))
13179 (build-system r-build-system)
13180 (propagated-inputs
13181 `(("r-rcpp" ,r-rcpp)))
13182 (home-page "https://cran.r-project.org/web/packages/xyz/")
13183 (synopsis "Algorithm for fast interaction search in high-dimensional data")
13184 (description
13185 "High dimensional interaction search by brute force requires a quadratic
13186computational cost in the number of variables. The xyz algorithm provably
13187finds strong interactions in almost linear time. For details of the algorithm
13188see: G. Thanei, N. Meinshausen and R. Shah (2016). The xyz algorithm for fast
13189interaction search in high-dimensional data.")
13190 ;; Any version of the GPL.
13191 (license license:gpl2+)))
81df4e1e
RW
13192
13193(define-public r-rttf2pt1
13194 (package
13195 (name "r-rttf2pt1")
13196 (version "1.3.7")
13197 (source
13198 (origin
13199 (method url-fetch)
13200 (uri (cran-uri "Rttf2pt1" version))
13201 (sha256
13202 (base32
13203 "12hf9r3mhjr9sawdvf7qhjf1zph2q64f77i81jwvy7awidbm0kja"))))
13204 (properties `((upstream-name . "Rttf2pt1")))
13205 (build-system r-build-system)
13206 (home-page "https://github.com/wch/Rttf2pt1")
13207 (synopsis "Font conversion utility")
13208 (description
13209 "This package contains the program @code{ttf2pt1}, for use with the
13210@code{extrafont} package.")
13211 ;; Most of the files are covered under the Expat license. Some files are
13212 ;; covered under BSD-3. Deviations for individual files are recorded in
13213 ;; the LICENSE file.
13214 (license (list license:bsd-3 license:expat
13215 (license:non-copyleft "file://LICENSE")))))
b6933ea6
RW
13216
13217(define-public r-extrafontdb
13218 (package
13219 (name "r-extrafontdb")
13220 (version "1.0")
13221 (source
13222 (origin
13223 (method url-fetch)
13224 (uri (cran-uri "extrafontdb" version))
13225 (sha256
13226 (base32
13227 "115n42hfvv5h4nn4cfkfmkmn968py4lpy8zd0d6w5yylwpzbm8gs"))))
13228 (build-system r-build-system)
13229 (home-page "https://github.com/wch/extrafontdb")
13230 (synopsis "Database for the extrafont package")
13231 (description
13232 "This package holds the database for the @code{extrafont} package.")
13233 (license license:gpl2)))
2331bf2a
RW
13234
13235(define-public r-extrafont
13236 (package
13237 (name "r-extrafont")
13238 (version "0.17")
13239 (source
13240 (origin
13241 (method url-fetch)
13242 (uri (cran-uri "extrafont" version))
13243 (sha256
13244 (base32
13245 "0b9k2n9sk23bh45hjgnkxpjyvpdrz1hx7kmxvmb4nhlhm1wpsv9g"))))
13246 (build-system r-build-system)
13247 (propagated-inputs
13248 `(("r-extrafontdb" ,r-extrafontdb)
13249 ("r-rttf2pt1" ,r-rttf2pt1)))
13250 (home-page "https://github.com/wch/extrafont")
13251 (synopsis "Tools for using fonts in R")
13252 (description
13253 "The extrafont package makes it easier to use fonts other than the basic
13254PostScript fonts that R uses. Fonts that are imported into extrafont can be
13255used with PDF or PostScript output files. There are two hurdles for using
13256fonts in PDF (or Postscript) output files:
13257
13258@enumerate
13259@item Making R aware of the font and the dimensions of the characters.
13260@item Embedding the fonts in the PDF file so that the PDF can be displayed
13261 properly on a device that doesn't have the font. This is usually needed if
13262 you want to print the PDF file or share it with others.
13263@end enumerate
13264
13265The extrafont package makes both of these things easier.")
13266 (license license:gpl2)))
2d704608
RW
13267
13268(define-public r-xkcd
13269 (package
13270 (name "r-xkcd")
13271 (version "0.0.6")
13272 (source
13273 (origin
13274 (method url-fetch)
13275 (uri (cran-uri "xkcd" version))
13276 (sha256
13277 (base32
13278 "1z2y0ihn68ppay7xkglhw7djki5654g6z4bbpyy41if57z9q554f"))))
13279 (build-system r-build-system)
13280 (propagated-inputs
13281 `(("r-extrafont" ,r-extrafont)
13282 ("r-ggplot2" ,r-ggplot2)
13283 ("r-hmisc" ,r-hmisc)))
13284 (home-page "https://cran.r-project.org/web/packages/xkcd/")
13285 (synopsis "Plot ggplot2 graphics in the XKCD style")
13286 (description
13287 "This package provides the means to plot ggplot2 graphs in the style of
13288the XKCD web comic.")
13289 (license license:gpl3)))
0d50d0df
RW
13290
13291(define-public r-msigdbr
13292 (package
13293 (name "r-msigdbr")
13294 (version "6.2.1")
13295 (source
13296 (origin
13297 (method url-fetch)
13298 (uri (cran-uri "msigdbr" version))
13299 (sha256
13300 (base32
13301 "1264j1hs74kq7hyh68vfynadfi6mdpq46qm1hnwzkzzhmbzpb9cg"))))
13302 (build-system r-build-system)
13303 (propagated-inputs
13304 `(("r-dplyr" ,r-dplyr)
13305 ("r-magrittr" ,r-magrittr)
13306 ("r-rlang" ,r-rlang)
13307 ("r-tibble" ,r-tibble)))
13308 (home-page "https://github.com/igordot/msigdbr")
13309 (synopsis "MSigDB gene sets for multiple organisms")
13310 (description
13311 "This package provides the @dfn{Molecular Signatures Database} (MSigDB)
13312gene sets typically used with the @dfn{Gene Set Enrichment Analysis} (GSEA)
13313software in a standard R data frame with key-value pairs. Included are the
13314original human gene symbols and Entrez IDs as well as the equivalents for
13315various frequently studied model organisms such as mouse, rat, pig, fly, and
13316yeast.")
13317 ;; The package is covered under the Expat license, but the upstream MSigDB
13318 ;; files are made available under the Creative Commons Attribution 4.0
13319 ;; International license.
13320 (license (list license:expat license:cc-by4.0))))
585d5ae0
RW
13321
13322(define-public r-gridgraphics
13323 (package
13324 (name "r-gridgraphics")
b985cc35 13325 (version "0.4-1")
585d5ae0
RW
13326 (source
13327 (origin
13328 (method url-fetch)
13329 (uri (cran-uri "gridGraphics" version))
13330 (sha256
13331 (base32
b985cc35 13332 "1kr3p54bkv2q7agxrva30y9bkwkiq1k2cfl5z1kvyjv6f5xi4w5p"))))
585d5ae0
RW
13333 (properties `((upstream-name . "gridGraphics")))
13334 (build-system r-build-system)
13335 (home-page "https://github.com/pmur002/gridgraphics")
13336 (synopsis "Redraw base graphics using @code{grid} graphics")
13337 (description
13338 "This package provides functions to convert a page of plots drawn with
13339the @code{graphics} package into identical output drawn with the @code{grid}
13340package. The result looks like the original @code{graphics}-based plot, but
13341consists of @code{grid} grobs and viewports that can then be manipulated with
13342@code{grid} functions (e.g., edit grobs and revisit viewports).")
13343 (license license:gpl2+)))
1c59ec70
RW
13344
13345(define-public r-farver
13346 (package
13347 (name "r-farver")
13348 (version "1.1.0")
13349 (source
13350 (origin
13351 (method url-fetch)
13352 (uri (cran-uri "farver" version))
13353 (sha256
13354 (base32
13355 "1dllgx121al374gyp9pjv1m8ip4imm8zhbgyh1970dsz2c4z71i0"))))
13356 (build-system r-build-system)
13357 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
13358 (home-page "https://github.com/thomasp85/farver")
13359 (synopsis "Vectorized color conversion and comparison")
13360 (description
13361 "The encoding of color can be handled in many different ways, using
13362different color spaces. As different color spaces have different uses,
13363efficient conversion between these representations are important. This
13364package provides a set of functions that gives access to very fast color space
13365conversion and comparisons implemented in C++, and offers 100-fold speed
13366improvements over the @code{convertColor} function in the @code{grDevices}
13367package.")
13368 (license license:expat)))
e2582883
RW
13369
13370(define-public r-ggplotify
13371 (package
13372 (name "r-ggplotify")
13373 (version "0.0.3")
13374 (source
13375 (origin
13376 (method url-fetch)
13377 (uri (cran-uri "ggplotify" version))
13378 (sha256
13379 (base32
13380 "14hqlpvnaq5psz1ljcpw9isa06827rg3fm5c1dx159rsjfi56yby"))))
13381 (build-system r-build-system)
13382 (propagated-inputs
13383 `(("r-ggplot2" ,r-ggplot2)
13384 ("r-gridgraphics" ,r-gridgraphics)
13385 ("r-rvcheck" ,r-rvcheck)))
13386 (home-page "https://github.com/GuangchuangYu/ggplotify")
13387 (synopsis "Convert plots to @code{grob} or @code{ggplot} object")
13388 (description
13389 "This package provides tools to convert plot function calls (using
13390expression or formula) to @code{grob} or @code{ggplot} objects that are
13391compatible with the @code{grid} and @code{ggplot2} environment. With this
13392package, we are able to e.g. use @code{cowplot} to align plots produced by
13393@code{base} graphics, @code{grid}, @code{lattice}, @code{vcd} etc. by
13394converting them to @code{ggplot} objects.")
13395 (license license:artistic2.0)))
85431ca3
RW
13396
13397(define-public r-triebeard
13398 (package
13399 (name "r-triebeard")
13400 (version "0.3.0")
13401 (source
13402 (origin
13403 (method url-fetch)
13404 (uri (cran-uri "triebeard" version))
13405 (sha256
13406 (base32
13407 "1hqyz57gph02c9fdc07lxz113bbklif3g18sw8jan6pakhhdc7dz"))))
13408 (build-system r-build-system)
13409 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
13410 (home-page "https://github.com/Ironholds/triebeard/")
13411 (synopsis "Radix trees in Rcpp")
13412 (description
13413 "Radix trees, or tries, are key-value data structures optimized for
13414efficient lookups, similar in purpose to hash tables. This package provides
13415an implementation of radix trees for use in R programming and in developing
13416packages with Rcpp.")
13417 (license license:expat)))
91e06bed
RW
13418
13419(define-public r-tweenr
13420 (package
13421 (name "r-tweenr")
13422 (version "1.0.1")
13423 (source
13424 (origin
13425 (method url-fetch)
13426 (uri (cran-uri "tweenr" version))
13427 (sha256
13428 (base32
13429 "0sq90pbln6lkc2q3zflhkxxwpqdw5dd7igrxhdnlynkdrmi83mpg"))))
13430 (build-system r-build-system)
13431 (propagated-inputs
13432 `(("r-farver" ,r-farver)
13433 ("r-magrittr" ,r-magrittr)
13434 ("r-rcpp" ,r-rcpp)
13435 ("r-rlang" ,r-rlang)))
13436 (home-page "https://github.com/thomasp85/tweenr")
13437 (synopsis "Interpolate data for smooth animations")
13438 (description
13439 "In order to create smooth animation between states of data, tweening is
13440necessary. This package provides a range of functions for creating tweened
13441data that can be used as basis for animation. Furthermore it adds a number of
13442vectorized interpolaters for common R data types such as numeric, date and
13443color.")
13444 (license license:expat)))
09dde7fb
RW
13445
13446(define-public r-polyclip
13447 (package
13448 (name "r-polyclip")
13449 (version "1.10-0")
13450 (source
13451 (origin
13452 (method url-fetch)
13453 (uri (cran-uri "polyclip" version))
13454 (sha256
13455 (base32
13456 "0jyk4maqiblvj095jd59dr76kbniyli3v3xvy0a72ljszq6vrnkl"))))
13457 (build-system r-build-system)
13458 (native-inputs `(("pkg-config" ,pkg-config)))
13459 (home-page "http://www.angusj.com/delphi/clipper.php")
13460 (synopsis "Polygon clipping")
13461 (description
13462 "This package provides an R port of the library Clipper. It performs
13463polygon clipping operations (intersection, union, set minus, set difference)
13464for polygonal regions of arbitrary complexity, including holes. It computes
13465offset polygons (spatial buffer zones, morphological dilations, Minkowski
13466dilations) for polygonal regions and polygonal lines. It computes the
13467Minkowski Sum of general polygons. There is a function for removing
13468self-intersections from polygon data.")
13469 (license license:boost1.0)))
d4ff09af
RW
13470
13471(define-public r-urltools
13472 (package
13473 (name "r-urltools")
7015ae68 13474 (version "1.7.3")
d4ff09af
RW
13475 (source
13476 (origin
13477 (method url-fetch)
13478 (uri (cran-uri "urltools" version))
13479 (sha256
13480 (base32
7015ae68 13481 "04x3my655dd287cbsszbnf75q0swmjlxxrblcsay7a8n3df3a830"))))
d4ff09af
RW
13482 (build-system r-build-system)
13483 (propagated-inputs
13484 `(("r-rcpp" ,r-rcpp)
13485 ("r-triebeard" ,r-triebeard)))
13486 (home-page "https://github.com/Ironholds/urltools/")
13487 (synopsis "Vectorized tools for URL handling and parsing")
13488 (description
13489 "This package provides a toolkit for all URL-handling needs, including
13490encoding and decoding, parsing, parameter extraction and modification. All
13491functions are designed to be both fast and entirely vectorized. It is
13492intended to be useful for people dealing with web-related datasets, such as
13493server-side logs, although may be useful for other situations involving large
13494sets of URLs.")
13495 (license license:expat)))
83f43284
RW
13496
13497(define-public r-ggforce
13498 (package
13499 (name "r-ggforce")
a059791f 13500 (version "0.2.2")
83f43284
RW
13501 (source
13502 (origin
13503 (method url-fetch)
13504 (uri (cran-uri "ggforce" version))
13505 (sha256
13506 (base32
a059791f 13507 "0snxx9zhcccxa7pz9pf3bjqmcmv9mz4m47v81hklnhm25jj40xg2"))))
83f43284
RW
13508 (build-system r-build-system)
13509 (propagated-inputs
13510 `(("r-ggplot2" ,r-ggplot2)
13511 ("r-gtable" ,r-gtable)
13512 ("r-mass" ,r-mass)
13513 ("r-polyclip" ,r-polyclip)
13514 ("r-rcpp" ,r-rcpp)
13515 ("r-rcppeigen" ,r-rcppeigen)
13516 ("r-rlang" ,r-rlang)
13517 ("r-scales" ,r-scales)
13518 ("r-tweenr" ,r-tweenr)))
13519 (home-page "https://ggforce.data-imaginist.com")
13520 (synopsis "Accelerating ggplot2")
13521 (description
13522 "The aim of the ggplot2 package is to aid in visual data investigations.
13523This focus has led to a lack of facilities for composing specialized plots.
13524Thi package aims to be a collection of mainly new statistics and geometries
13525that fills this gap.")
13526 (license license:expat)))
b5b0a2ff
RW
13527
13528(define-public r-europepmc
13529 (package
13530 (name "r-europepmc")
13531 (version "0.3")
13532 (source
13533 (origin
13534 (method url-fetch)
13535 (uri (cran-uri "europepmc" version))
13536 (sha256
13537 (base32
13538 "1ngqs1sqzkbwv98dd5z4cxj8bnz41wyd0g060a2vpqi3s99s4i2h"))))
13539 (build-system r-build-system)
13540 (propagated-inputs
13541 `(("r-dplyr" ,r-dplyr)
13542 ("r-httr" ,r-httr)
13543 ("r-jsonlite" ,r-jsonlite)
13544 ("r-plyr" ,r-plyr)
13545 ("r-progress" ,r-progress)
13546 ("r-purrr" ,r-purrr)
13547 ("r-urltools" ,r-urltools)
13548 ("r-xml2" ,r-xml2)))
13549 (home-page "https://github.com/ropensci/europepmc/")
13550 (synopsis "R Interface to the Europe PubMed Central RESTful Web Service")
13551 (description
13552 "This package provides an R Client for the
13553@url{https://europepmc.org/RestfulWebService,Europe PubMed Central RESTful Web
13554Service}. It gives access to both metadata on life science literature and
13555open access full texts. Europe PMC indexes all PubMed content and other
13556literature sources including Agricola, a bibliographic database of citations
13557to the agricultural literature, or Biological Patents. In addition to
13558bibliographic metadata, the client allows users to fetch citations and
13559reference lists. Links between life-science literature and other EBI
13560databases, including ENA, PDB or ChEMBL are also accessible.")
13561 (license license:gpl3)))
11f226e1
RW
13562
13563(define-public r-ggraph
13564 (package
13565 (name "r-ggraph")
13566 (version "1.0.2")
13567 (source
13568 (origin
13569 (method url-fetch)
13570 (uri (cran-uri "ggraph" version))
13571 (sha256
13572 (base32
13573 "0fpmp326mryd1k1qvacjadksrnhbla8h960i18lmrimzrag7692c"))))
13574 (build-system r-build-system)
13575 (propagated-inputs
13576 `(("r-digest" ,r-digest)
13577 ("r-dplyr" ,r-dplyr)
13578 ("r-ggforce" ,r-ggforce)
13579 ("r-ggplot2" ,r-ggplot2)
13580 ("r-ggrepel" ,r-ggrepel)
13581 ("r-gtable" ,r-gtable)
13582 ("r-igraph" ,r-igraph)
13583 ("r-mass" ,r-mass)
13584 ("r-plyr" ,r-plyr)
13585 ("r-rcpp" ,r-rcpp)
13586 ("r-scales" ,r-scales)
13587 ("r-viridis" ,r-viridis)))
13588 (home-page "https://cran.r-project.org/web/packages/ggraph/")
13589 (synopsis "Implementation of grammar of graphics for graphs and networks")
13590 (description
13591 "The grammar of graphics as implemented in ggplot2 is a poor fit for
13592graph and network visualizations due to its reliance on tabular data input.
13593The ggraph package is an extension of the ggplot2 API tailored to graph
13594visualizations and provides the same flexible approach to building up plots
13595layer by layer.")
13596 (license license:gpl3)))
1c0c4b54
RW
13597
13598(define-public r-varselrf
13599 (package
13600 (name "r-varselrf")
13601 (version "0.7-8")
13602 (source
13603 (origin
13604 (method url-fetch)
13605 (uri (cran-uri "varSelRF" version))
13606 (sha256
13607 (base32
13608 "0h49rl1j13yfh97rsfsyh9s2c4wajny4rzms2qw77d0cavxqg53i"))))
13609 (properties `((upstream-name . "varSelRF")))
13610 (build-system r-build-system)
13611 (propagated-inputs
13612 `(("r-randomforest" ,r-randomforest)))
13613 (home-page "http://ligarto.org/rdiaz/Software/Software.html")
13614 (synopsis "Variable selection using random forests")
13615 (description
13616 "This package provides tools for the variable selection from random
13617forests using both backwards variable elimination (for the selection of small
13618sets of non-redundant variables) and selection based on the importance
13619spectrum (somewhat similar to scree plots; for the selection of large,
13620potentially highly-correlated variables). The main applications are in
13621high-dimensional data (e.g., microarray data, and other genomics and
13622proteomics applications).")
13623 (license license:gpl2+)))
aae0b86d
RW
13624
13625(define-public r-pamr
13626 (package
13627 (name "r-pamr")
8fc6188e 13628 (version "1.56.1")
aae0b86d
RW
13629 (source
13630 (origin
13631 (method url-fetch)
13632 (uri (cran-uri "pamr" version))
13633 (sha256
13634 (base32
8fc6188e 13635 "0ycpgkk23y3zzkb42n2skcyl35ps1n7jmyzfj7pbxr3f6gr2grfh"))))
aae0b86d
RW
13636 (build-system r-build-system)
13637 (propagated-inputs
13638 `(("r-cluster" ,r-cluster)
13639 ("r-survival" ,r-survival)))
13640 (native-inputs `(("gfortran" ,gfortran)))
13641 (home-page "https://cran.r-project.org/web/packages/pamr/")
13642 (synopsis "Prediction Analysis for Microarrays")
13643 (description
13644 "This package provides some functions for sample classification in
13645microarrays.")
13646 (license license:gpl2)))
fe3fb4e7
RW
13647
13648(define-public r-rda
13649 (package
13650 (name "r-rda")
13651 (version "1.0.2-2.1")
13652 (source
13653 (origin
13654 (method url-fetch)
13655 (uri (cran-uri "rda" version))
13656 (sha256
13657 (base32
13658 "1y4fawslr3i6crjaxhsdb47kfsqkyszdx6avq3r5far5a4pvc639"))))
13659 (build-system r-build-system)
13660 (home-page "https://cran.r-project.org/web/packages/rda/")
13661 (synopsis "Shrunken centroids regularized discriminant analysis")
13662 (description
13663 "This package provides tools for shrunken centroids regularized
13664discriminant analysis for the purpose of classifying high dimensional data.")
13665 (license license:gpl2+)))
8473597f
RW
13666
13667(define-public r-ggvis
13668 (package
13669 (name "r-ggvis")
13670 (version "0.4.4")
13671 (source
13672 (origin
13673 (method url-fetch)
13674 (uri (cran-uri "ggvis" version))
13675 (sha256
13676 (base32
13677 "1bxggjr2313kfy895j0fvrv4bg7yh2z87907lk48i1kn5c9flchk"))))
13678 (build-system r-build-system)
13679 (propagated-inputs
13680 `(("r-assertthat" ,r-assertthat)
13681 ("r-dplyr" ,r-dplyr)
13682 ("r-htmltools" ,r-htmltools)
13683 ("r-jsonlite" ,r-jsonlite)
13684 ("r-lazyeval" ,r-lazyeval)
13685 ("r-magrittr" ,r-magrittr)
13686 ("r-shiny" ,r-shiny)))
13687 (home-page "https://ggvis.rstudio.com/")
13688 (synopsis "Interactive grammar of graphics")
13689 (description
13690 "This package is a data visualization package for R providing an
13691implementation of an interactive grammar of graphics, taking the best parts of
13692ggplot2, combining them with the reactive framework of Shiny and drawing web
13693graphics using Vega.")
13694 (license license:gpl2)))
d59df334
RW
13695
13696(define-public r-gbm
13697 (package
13698 (name "r-gbm")
13699 (version "2.1.5")
13700 (source
13701 (origin
13702 (method url-fetch)
13703 (uri (cran-uri "gbm" version))
13704 (sha256
13705 (base32
13706 "0vs6ljaqhwwpgr8wlbhmm4v147rd82kl16rpaijqiylxcc8dxyq6"))))
13707 (build-system r-build-system)
13708 (propagated-inputs
13709 `(("r-gridextra" ,r-gridextra)
13710 ("r-lattice" ,r-lattice)
13711 ("r-survival" ,r-survival)))
13712 (home-page "https://github.com/gbm-developers/gbm")
13713 (synopsis "Generalized boosted regression models")
13714 (description
13715 "This package is an implementation of extensions to Freund and Schapire's
13716AdaBoost algorithm and Friedman's gradient boosting machine. It includes
13717regression methods for least squares, absolute loss, t-distribution loss,
13718quantile regression, logistic, multinomial logistic, Poisson, Cox proportional
13719hazards partial likelihood, AdaBoost exponential loss, Huberized hinge loss,
13720and Learning to Rank measures (LambdaMart).")
13721 (license license:gpl2+)))
efba5613
RW
13722
13723(define-public r-threejs
13724 (package
13725 (name "r-threejs")
13726 (version "0.3.1")
13727 (source
13728 (origin
13729 (method url-fetch)
13730 (uri (cran-uri "threejs" version))
13731 (sha256
13732 (base32
13733 "1s3rdlzy7man6177ycayg6xsh6k8y1r9rdj9yzn3b93j2rs0nxbi"))))
13734 (build-system r-build-system)
13735 (arguments
13736 `(#:modules ((guix build utils)
13737 (guix build r-build-system)
13738 (srfi srfi-1)
13739 (ice-9 popen))
13740 #:phases
13741 (modify-phases %standard-phases
13742 (add-after 'unpack 'process-javascript
13743 (lambda* (#:key inputs #:allow-other-keys)
13744 (with-directory-excursion "inst"
13745 (call-with-values
13746 (lambda ()
13747 (unzip2
13748 `((,(assoc-ref inputs "js-jquery")
13749 "htmlwidgets/lib/jquery/jquery.min.js")
13750 (,(assoc-ref inputs "js-threejs-85")
13751 "htmlwidgets/lib/threejs-85/three.min.js"))))
13752 (lambda (sources targets)
13753 (for-each (lambda (source target)
13754 (format #t "Processing ~a --> ~a~%"
13755 source target)
13756 (delete-file target)
13757 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
13758 (call-with-output-file target
13759 (lambda (port)
13760 (dump-port minified port)))))
13761 sources targets))))
13762 #t)))))
13763 (propagated-inputs
13764 `(("r-base64enc" ,r-base64enc)
13765 ("r-crosstalk" ,r-crosstalk)
13766 ("r-htmlwidgets" ,r-htmlwidgets)
13767 ("r-igraph" ,r-igraph)))
13768 (native-inputs
13769 `(("uglify-js" ,uglify-js)
13770 ("js-jquery"
13771 ,(origin
13772 (method url-fetch)
13773 (uri "https://code.jquery.com/jquery-3.3.1.js")
13774 (sha256
13775 (base32
13776 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))
13777 ("js-threejs-85"
13778 ,(origin
13779 (method url-fetch)
13780 (uri "https://raw.githubusercontent.com/mrdoob/three.js/r85/build/three.js")
13781 (sha256
13782 (base32
13783 "17khh3dmijdjw4qb9qih1rqhxgrmm3pc6w8lzdx6rf6a3mrc9xnl"))))))
13784 (home-page "https://bwlewis.github.io/rthreejs")
13785 (synopsis "Interactive 3D scatter plots, networks and globes")
13786 (description
13787 "Create interactive 3D scatter plots, network plots, and globes in R
13788using the three.js visualization library.")
13789 (license license:expat)))
74cada8e
RW
13790
13791(define-public r-mlbench
13792 (package
13793 (name "r-mlbench")
13794 (version "2.1-1")
13795 (source
13796 (origin
13797 (method url-fetch)
13798 (uri (cran-uri "mlbench" version))
13799 (sha256
13800 (base32
13801 "1rp035qxfgh5ail92zjh9jh57dj0b8babw3wsg29v8ricpal30bl"))))
13802 (build-system r-build-system)
13803 (home-page "https://cran.r-project.org/web/packages/mlbench/")
13804 (synopsis "Machine learning benchmark problems")
13805 (description
13806 "This package provides a collection of artificial and real-world machine
13807learning benchmark problems, including, e.g., several data sets from the UCI
13808repository.")
13809 (license license:gpl2)))
409a13fe
RW
13810
13811(define-public r-mpm
13812 (package
13813 (name "r-mpm")
13814 (version "1.0-22")
13815 (source
13816 (origin
13817 (method url-fetch)
13818 (uri (cran-uri "mpm" version))
13819 (sha256
13820 (base32
13821 "0wijw8v0wmbfrda5564cmnp788qmlkk21yn5cp5qk8aprm9l1fnk"))))
13822 (build-system r-build-system)
13823 (propagated-inputs
13824 `(("r-kernsmooth" ,r-kernsmooth)
13825 ("r-mass" ,r-mass)))
13826 (home-page "http://mpm.r-forge.r-project.org")
13827 (synopsis "Multivariate projection methods")
13828 (description
13829 "This is a package for exploratory graphical analysis of multivariate
13830data, specifically gene expression data with different projection methods:
13831principal component analysis, correspondence analysis, spectral map
13832analysis.")
13833 (license license:gpl2+)))
d8a28332 13834
d2aa2d24
RW
13835(define-public r-png
13836 (package
13837 (name "r-png")
13838 (version "0.1-7")
13839 (source (origin
13840 (method url-fetch)
13841 (uri (cran-uri "png" version))
13842 (sha256
13843 (base32
13844 "0g2mcp55lvvpx4kd3mn225mpbxqcq73wy5qx8b4lyf04iybgysg2"))))
13845 (build-system r-build-system)
13846 (inputs
13847 `(("libpng" ,libpng)
13848 ("zlib" ,zlib)))
13849 (home-page "http://www.rforge.net/png/")
13850 (synopsis "Read and write PNG images")
13851 (description
13852 "This package provides an easy and simple way to read, write and display
13853bitmap images stored in the PNG format. It can read and write both files and
13854in-memory raw vectors.")
13855 ;; Any of these GPL versions.
13856 (license (list license:gpl2 license:gpl3))))
13857
d8a28332
RW
13858(define-public r-ggcorrplot
13859 (package
13860 (name "r-ggcorrplot")
e9c526be 13861 (version "0.1.3")
d8a28332
RW
13862 (source
13863 (origin
13864 (method url-fetch)
13865 (uri (cran-uri "ggcorrplot" version))
13866 (sha256
13867 (base32
e9c526be 13868 "0hi9lz121ya1l2lbm7rqlxg6fs6bvxck396dngnidrhl5fvqb41b"))))
d8a28332
RW
13869 (build-system r-build-system)
13870 (propagated-inputs
13871 `(("r-ggplot2" ,r-ggplot2)
13872 ("r-reshape2" ,r-reshape2)))
13873 (home-page "http://www.sthda.com/english/wiki/ggcorrplot")
13874 (synopsis "Visualization of a correlation matrix using ggplot2")
13875 (description
13876 "The ggcorrplot package can be used to visualize easily a correlation
13877matrix using ggplot2. It provides a solution for reordering the correlation
13878matrix and displays the significance level on the plot. It also includes a
13879function for computing a matrix of correlation p-values.")
13880 (license license:gpl2)))
f084e41e
RW
13881
13882(define-public r-flexdashboard
13883 (package
13884 (name "r-flexdashboard")
13885 (version "0.5.1.1")
13886 (source
13887 (origin
13888 (method url-fetch)
13889 (uri (cran-uri "flexdashboard" version))
13890 (sha256
13891 (base32
13892 "0fy3nbrr67zqgd44r2mc850s5sp0hzfcw3zqs15m8kxzj1aw067x"))))
13893 (build-system r-build-system)
13894 (arguments
13895 `(#:modules ((guix build utils)
13896 (guix build r-build-system)
13897 (srfi srfi-1)
13898 (srfi srfi-26)
13899 (ice-9 popen)
13900 (ice-9 textual-ports))
13901 #:phases
13902 (modify-phases %standard-phases
13903 (add-after 'unpack 'process-javascript
13904 (lambda* (#:key inputs #:allow-other-keys)
13905 (with-directory-excursion "inst"
13906 ;; Concatenate all components of prism.js
13907 (let ((contents (string-join
13908 (map (lambda (name)
13909 (call-with-input-file
13910 (assoc-ref inputs name)
13911 get-string-all))
13912 (list "js-prism"
13913 "js-prism-r"
13914 "js-prism-line-numbers"))
13915 "\n")))
13916 (call-with-output-file "prism-src.js"
13917 (cut display contents <>)))
13918 (call-with-values
13919 (lambda ()
13920 (unzip2
13921 `(("www/stickytableheaders/jquery.stickytableheaders.js"
13922 "www/stickytableheaders/jquery.stickytableheaders.min.js")
13923 ("www/sly/sly.js"
13924 "www/sly/sly.min.js")
13925 ("prism-src.js"
13926 "www/prism/prism.js")
13927 (,(assoc-ref inputs "js-raphael")
13928 "htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
13929 (,(assoc-ref inputs "js-featherlight")
13930 "www/featherlight/featherlight.min.js"))))
13931 (lambda (sources targets)
13932 (for-each (lambda (source target)
13933 (format #t "Processing ~a --> ~a~%"
13934 source target)
13935 (delete-file target)
13936 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
13937 (call-with-output-file target
13938 (lambda (port)
13939 (dump-port minified port)))))
13940 sources targets))))
13941 #t)))))
13942 (propagated-inputs
13943 `(("r-htmltools" ,r-htmltools)
13944 ("r-htmlwidgets" ,r-htmlwidgets)
13945 ("r-jsonlite" ,r-jsonlite)
13946 ("r-knitr" ,r-knitr)
13947 ("r-rmarkdown" ,r-rmarkdown)
13948 ("r-shiny" ,r-shiny)))
13949 (native-inputs
13950 `(("uglify-js" ,uglify-js)
13951 ("js-raphael"
13952 ,(origin
13953 (method url-fetch)
13954 (uri "https://raw.githubusercontent.com/DmitryBaranovskiy/raphael/v2.1.4/raphael.js")
13955 (sha256
13956 (base32
13957 "1h4c4akrgcj7wra9j1z1rv2406j0yf68y9c0wg8v7w9ibw2iwf1x"))))
13958 ("js-prism"
13959 ,(origin
13960 (method url-fetch)
13961 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/prism.js")
13962 (sha256
13963 (base32
13964 "0gqa9irbp9k8p5r3d98cszajzhjnssnl43nrsc5aiy7ki52z500c"))))
13965 ("js-prism-r"
13966 ,(origin
13967 (method url-fetch)
13968 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/components/prism-r.js")
13969 (sha256
13970 (base32
13971 "1x31glci7wdgr2305njy0bm2lncb0jyn0j1s2g72rqi29xid9aki"))))
13972 ("js-prism-line-numbers"
13973 ,(origin
13974 (method url-fetch)
13975 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/plugins/line-numbers/prism-line-numbers.js")
13976 (sha256
13977 (base32
13978 "1543wgf3iynrilyb27jq8px3h5gvfz5xmdib5ik2ki400c1sl991"))))
13979 ("js-featherlight"
13980 ,(origin
13981 (method url-fetch)
13982 (uri "https://raw.githubusercontent.com/noelboss/featherlight/1.3.4/src/featherlight.js")
13983 (sha256
13984 (base32
13985 "14kkhwzvp8rxq2mrck5i0xcm8v5rqwqhwnmncbng8h4qq42zx3sb"))))))
13986 (home-page "https://rmarkdown.rstudio.com/flexdashboard")
13987 (synopsis "R Markdown format for flexible dashboards")
13988 (description
13989 "This package provides an R Markdown format for converting an R Markdown
13990document to a grid-oriented dashboard. The dashboard flexibly adapts the size
13991of its components to the containing web page.")
13992 (license license:expat)))
c54ab337
RW
13993
13994(define-public r-preseqr
13995 (package
13996 (name "r-preseqr")
13997 (version "4.0.0")
13998 (source
13999 (origin
14000 (method url-fetch)
14001 (uri (cran-uri "preseqR" version))
14002 (sha256
14003 (base32
14004 "1g2rnnmi45649vpy6z45v5i3wxm54s138ajqrzwi3a5r7x3xnhq1"))))
14005 (properties `((upstream-name . "preseqR")))
14006 (build-system r-build-system)
14007 (propagated-inputs
14008 `(("r-polynom" ,r-polynom)))
14009 (home-page "https://cran.r-project.org/web/packages/preseqR/")
14010 (synopsis "Predicting species accumulation curves")
14011 (description
14012 "This package can be used to predict the r-species accumulation
14013curve (r-SAC), which is the number of species represented at least r times as
14014a function of the sampling effort. When r = 1, the curve is known as the
14015species accumulation curve, or the library complexity curve in high-throughput
14016genomic sequencing. The package includes both parametric and nonparametric
14017methods, as described by Deng C, et al. (2018).")
14018 (license license:gpl3)))
1fab2cf8
RW
14019
14020(define-public r-mapplots
14021 (package
14022 (name "r-mapplots")
14023 (version "1.5.1")
14024 (source
14025 (origin
14026 (method url-fetch)
14027 (uri (cran-uri "mapplots" version))
14028 (sha256
14029 (base32
14030 "18s2y66f8vi8g2r8a25zbgp2xm079r8v8qxv0w71h8krycs6vs9p"))))
14031 (build-system r-build-system)
14032 (home-page "https://cran.r-project.org/web/packages/mapplots/")
14033 (synopsis "Data visualization on maps")
14034 (description
14035 "This package helps you create simple maps; add sub-plots like pie plots
14036to a map or any other plot; format, plot and export gridded data. The package
14037was developed for displaying fisheries data but most functions can be used for
14038more generic data visualisation.")
14039 (license license:gpl2+)))
9563dd55
RW
14040
14041(define-public r-pmcmr
14042 (package
14043 (name "r-pmcmr")
14044 (version "4.3")
14045 (source
14046 (origin
14047 (method url-fetch)
14048 (uri (cran-uri "PMCMR" version))
14049 (sha256
14050 (base32
14051 "09bvdj2h1086r2cgy3myrhlylplxxlliv8nwx09c8kb1vn02i2ij"))))
14052 (properties `((upstream-name . "PMCMR")))
14053 (build-system r-build-system)
14054 (home-page "https://cran.r-project.org/web/packages/PMCMR/")
14055 (synopsis "Calculate pairwise multiple comparisons of mean rank sums")
14056 (description
14057 "This is a deprecated package for calculating pairwise multiple
14058comparisons of mean rank sums. This package is superseded by the novel
14059PMCMRplus package. The PMCMR package is no longer maintained, but kept for
14060compatibility of reverse depending packages for some time.")
14061 (license license:gpl3+)))
8d1990d4
RW
14062
14063(define-public r-downloader
14064 (package
14065 (name "r-downloader")
14066 (version "0.4")
14067 (source
14068 (origin
14069 (method url-fetch)
14070 (uri (cran-uri "downloader" version))
14071 (sha256
14072 (base32
14073 "1axggnsc27zzgr7snf41j3zd1vp3nfpmq4zj4d01axc709dyg40q"))))
14074 (build-system r-build-system)
14075 (propagated-inputs
14076 `(("r-digest" ,r-digest)))
14077 (home-page "https://github.com/wch/downloader")
14078 (synopsis "Download files over HTTP and HTTPS")
14079 (description
14080 "This package provides a wrapper for the @code{download.file} function,
14081making it possible to download files over HTTPS across platforms. The
14082@code{RCurl} package provides this functionality (and much more) but has
14083external dependencies. This package has is implemented purely in R.")
14084 (license license:gpl2)))
296ea15c
NB
14085
14086(define-public r-rex
14087 (package
14088 (name "r-rex")
14089 (version "1.1.2")
14090 (source
14091 (origin
14092 (method url-fetch)
14093 (uri (cran-uri "rex" version))
14094 (sha256
14095 (base32
14096 "0alsadgjgass3wr8y5d247j12qqzg454sc84vpskclrkmz778g5x"))))
14097 (build-system r-build-system)
14098 (propagated-inputs
14099 `(("r-lazyeval" ,r-lazyeval)
14100 ("r-magrittr" ,r-magrittr)))
14101 (home-page "https://github.com/kevinushey/rex")
14102 (synopsis "Friendly regular expressions")
14103 (description
14104 "This package provides a friendly interface for the construction of
14105regular expressions. Regular expressions are a very powerful feature, however
14106they are often difficult to interpret. Rex allows you to build complex
14107regular expressions from human readable expressions")
14108 (license license:expat)))
9b86fea0
RW
14109
14110(define-public r-sctransform
14111 (package
14112 (name "r-sctransform")
14113 (version "0.2.0")
14114 (source
14115 (origin
14116 (method url-fetch)
14117 (uri (cran-uri "sctransform" version))
14118 (sha256
14119 (base32
14120 "1r5kiqqs318q59h2i8m7c6nhghp9w6q26ss2y5a390lkhsawgx6p"))))
14121 (build-system r-build-system)
14122 (propagated-inputs
14123 `(("r-future" ,r-future)
14124 ("r-future-apply" ,r-future-apply)
14125 ("r-ggplot2" ,r-ggplot2)
14126 ("r-gridextra" ,r-gridextra)
14127 ("r-mass" ,r-mass)
14128 ("r-matrix" ,r-matrix)
14129 ("r-rcpp" ,r-rcpp)
14130 ("r-rcppeigen" ,r-rcppeigen)
14131 ("r-reshape2" ,r-reshape2)))
14132 (home-page "https://github.com/ChristophH/sctransform")
14133 (synopsis "Variance stabilizing transformations for Single Cell UMI Data")
14134 (description
14135 "This package provides a normalization method for single-cell UMI count
14136data using a variance stabilizing transformation. The transformation is based
14137on a negative binomial regression model with regularized parameters. As part
14138of the same regression framework, this package also provides functions for
14139batch correction, and data correction.")
14140 (license license:gpl3)))
107850b3
NB
14141
14142(define-public r-styler
14143 (package
14144 (name "r-styler")
4238c3ee 14145 (version "1.1.1")
107850b3
NB
14146 (source
14147 (origin
14148 (method url-fetch)
14149 (uri (cran-uri "styler" version))
14150 (sha256
14151 (base32
4238c3ee 14152 "1k660lpjvd64gnf6bndcb1cq3qxsvik928kcn6271zmkhja5rgyb"))))
107850b3
NB
14153 (build-system r-build-system)
14154 (propagated-inputs
14155 `(("r-backports" ,r-backports)
14156 ("r-cli" ,r-cli)
14157 ("r-magrittr" ,r-magrittr)
14158 ("r-purrr" ,r-purrr)
14159 ("r-rematch2" ,r-rematch2)
14160 ("r-rlang" ,r-rlang)
14161 ("r-rprojroot" ,r-rprojroot)
14162 ("r-tibble" ,r-tibble)
14163 ("r-withr" ,r-withr)
14164 ("r-xfun" ,r-xfun)))
14165 (home-page "https://github.com/r-lib/styler")
14166 (synopsis "Non-invasive pretty printing of R code")
14167 (description
14168 "This is a package for pretty-printing R code without changing the user's
14169formatting intent.")
14170 (license license:gpl3)))
2b9d4f58
RW
14171
14172(define-public r-scrime
14173 (package
14174 (name "r-scrime")
14175 (version "1.3.5")
14176 (source
14177 (origin
14178 (method url-fetch)
14179 (uri (cran-uri "scrime" version))
14180 (sha256
14181 (base32
14182 "0y2mh9fsffjf3i15bafpasa17z99c1s75r8g6h4hgcwfgpjx75sx"))))
14183 (build-system r-build-system)
14184 (home-page "https://cran.r-project.org/web/packages/scrime/")
14185 (synopsis "Analysis of high-dimensional categorical data such as SNP data")
14186 (description
14187 "This package provides tools for the analysis of high-dimensional data
14188developed/implemented at the group \"Statistical Complexity Reduction In
14189Molecular Epidemiology\" (SCRIME). The main focus is on SNP data, but most of
14190the functions can also be applied to other types of categorical data.")
14191 (license license:gpl2)))
04bf86ba
RW
14192
14193(define-public r-blme
14194 (package
14195 (name "r-blme")
14196 (version "1.0-4")
14197 (source
14198 (origin
14199 (method url-fetch)
14200 (uri (cran-uri "blme" version))
14201 (sha256
14202 (base32
14203 "1ca2b0248k0fj3lczn9shfjplz1sl4ay4v6djldizp2ch2vwdgy2"))))
14204 (build-system r-build-system)
14205 (propagated-inputs `(("r-lme4" ,r-lme4)))
14206 (home-page "https://github.com/vdorie/blme")
14207 (synopsis "Bayesian linear mixed-effects models")
14208 (description
14209 "This package provides tools for maximum a posteriori estimation for
14210linear and generalized linear mixed-effects models in a Bayesian setting. It
14211extends the lme4 package.")
14212 (license license:gpl2+)))
be23c491
RW
14213
14214(define-public r-batchtools
14215 (package
14216 (name "r-batchtools")
14217 (version "0.9.11")
14218 (source
14219 (origin
14220 (method url-fetch)
14221 (uri (cran-uri "batchtools" version))
14222 (sha256
14223 (base32
14224 "02mj21ypcjv5fs7ajf63p6bq0cyvihdl55hlpqx6kmsfjin1cr0v"))))
14225 (build-system r-build-system)
14226 (propagated-inputs
14227 `(("r-backports" ,r-backports)
14228 ("r-base64url" ,r-base64url)
14229 ("r-brew" ,r-brew)
14230 ("r-checkmate" ,r-checkmate)
14231 ("r-data-table" ,r-data-table)
14232 ("r-digest" ,r-digest)
14233 ("r-fs" ,r-fs)
14234 ("r-progress" ,r-progress)
14235 ("r-r6" ,r-r6)
14236 ("r-rappdirs" ,r-rappdirs)
14237 ("r-stringi" ,r-stringi)
14238 ("r-withr" ,r-withr)))
14239 (home-page "https://github.com/mllg/batchtools")
14240 (synopsis "Tools for computation on batch systems")
14241 (description
14242 "As a successor of the packages BatchJobs and BatchExperiments, this
14243package provides a parallel implementation of the Map function for high
14244performance computing systems managed by various schedulers. A multicore and
14245socket mode allow the parallelization on a local machines, and multiple
14246machines can be hooked up via SSH to create a makeshift cluster. Moreover,
14247the package provides an abstraction mechanism to define large-scale computer
14248experiments in a well-organized and reproducible way.")
14249 (license license:lgpl3)))
0c8960df
RW
14250
14251(define-public r-clue
14252 (package
14253 (name "r-clue")
14254 (version "0.3-57")
14255 (source
14256 (origin
14257 (method url-fetch)
14258 (uri (cran-uri "clue" version))
14259 (sha256
14260 (base32
14261 "05rdcahawxlxci3fjxihjvvh33wqpxw50sx015165ab4nh3rsdkf"))))
14262 (build-system r-build-system)
14263 (propagated-inputs `(("r-cluster" ,r-cluster)))
14264 (home-page "https://cran.r-project.org/web/packages/clue/")
14265 (synopsis "Tools for analyzing cluster ensembles")
14266 (description "Cluster ensembles are collections of individual solutions to
14267a given clustering problem which are useful or necessary to consider in a wide
14268range of applications. This R package provides an extensible computational
14269environment for creating and analyzing cluster ensembles, with basic data
14270structures for representing partitions and hierarchies, and facilities for
14271computing on them, including methods for measuring proximity and obtaining
14272consensus and secondary clusterings.")
14273 (license license:gpl2)))
b8d6dffb
RW
14274
14275(define-public r-sitmo
14276 (package
14277 (name "r-sitmo")
14278 (version "2.0.1")
14279 (source
14280 (origin
14281 (method url-fetch)
14282 (uri (cran-uri "sitmo" version))
14283 (sha256
14284 (base32
14285 "0apdhwy3kxs39agsbvx5vn3xsgb22bf3jrwmr2cmqk9kmxbx740c"))))
14286 (build-system r-build-system)
14287 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
14288 (home-page "https://github.com/coatless/sitmo/")
14289 (synopsis "Parallel pseudo random number generator header files")
14290 (description
14291 "This package provides two high quality and fast PPRNGs that may be used
14292in an OpenMP parallel environment. In addition, there is a generator for one
14293dimensional low-discrepancy sequence.")
14294 (license license:expat)))
3961b3b9
RW
14295
14296(define-public r-dqrng
14297 (package
14298 (name "r-dqrng")
12242ffb 14299 (version "0.2.1")
3961b3b9
RW
14300 (source
14301 (origin
14302 (method url-fetch)
14303 (uri (cran-uri "dqrng" version))
14304 (sha256
14305 (base32
12242ffb 14306 "0rp8q5zijlvaqmpnkwr314w9w40sj4fz7sqsdgsffcfvn42w2jg1"))))
3961b3b9
RW
14307 (build-system r-build-system)
14308 (propagated-inputs
14309 `(("r-bh" ,r-bh)
14310 ("r-rcpp" ,r-rcpp)
14311 ("r-sitmo" ,r-sitmo)))
14312 (home-page "https://www.daqana.org/dqrng")
14313 (synopsis "Fast pseudo random number generators")
14314 (description
14315 "Several fast random number generators are provided as C++ header-only
14316libraries: the PCG family as well as Xoroshiro128+ and Xoshiro256+.
14317Additionally, fast functions for generating random numbers according to a
14318uniform, normal and exponential distribution are included. The latter two use
14319the Ziggurat algorithm originally proposed by Marsaglia and Tsang. These
14320functions are exported to R and as a C++ interface and are enabled for use
14321with the default 64 bit generator from the PCG family, Xoroshiro128+ and
14322Xoshiro256+ as well as the 64 bit version of the 20 rounds Threefry
14323engine (Salmon et al., 2011) as provided by the package @code{sitmo}.")
14324 ;; This package includes code under CC0 and Apache 2.0 or Expat, but as a
14325 ;; whole is distributed under the terms of the AGPL 3.
14326 (license license:agpl3)))
5bea832f
RW
14327
14328(define-public r-dalex
14329 (package
14330 (name "r-dalex")
2e2e8d4f 14331 (version "0.4")
5bea832f
RW
14332 (source
14333 (origin
14334 (method url-fetch)
14335 (uri (cran-uri "DALEX" version))
14336 (sha256
14337 (base32
2e2e8d4f 14338 "1mr8lqq8s4aacmh7xdhmkmv8vsjqjczlqlaw27xnsljgj2kgq87a"))))
5bea832f
RW
14339 (properties `((upstream-name . "DALEX")))
14340 (build-system r-build-system)
14341 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
14342 (home-page "https://pbiecek.github.io/DALEX/")
14343 (synopsis "Descriptive machine learning explanations")
14344 (description
14345 "Machine Learning models are widely used and have various applications in
14346classification or regression. Models created with boosting, bagging, stacking
14347or similar techniques are often used due to their high performance, but such
14348black-box models usually lack interpretability. The DALEX package contains
14349various explainers that help to understand the link between input variables
14350and model output.")
14351 ;; Any version of the GPL
14352 (license license:gpl3+)))
70debac5
RW
14353
14354(define-public r-enrichr
14355 (package
14356 (name "r-enrichr")
14357 (version "1.0")
14358 (source
14359 (origin
14360 (method url-fetch)
14361 (uri (cran-uri "enrichR" version))
14362 (sha256
14363 (base32
14364 "0lfdr45sdyqhvgz8q4qdbk12mpv86d6id665kq6aaslgr8jggfmn"))))
14365 (properties `((upstream-name . "enrichR")))
14366 (build-system r-build-system)
14367 (propagated-inputs
14368 `(("r-httr" ,r-httr)
14369 ("r-rjson" ,r-rjson)))
14370 (home-page "https://cran.r-project.org/web/packages/enrichR/")
14371 (synopsis "R Interface to Enrichr database for analyzing gene sets")
14372 (description
14373 "This package provides an R interface to all Enrichr databases, a
14374web-based tool for analyzing gene sets and returns any enrichment of common
14375annotated biological functions.")
14376 (license license:gpl2+)))
c9487dfa
RW
14377
14378(define-public r-plot3d
14379 (package
14380 (name "r-plot3d")
14381 (version "1.1.1")
14382 (source
14383 (origin
14384 (method url-fetch)
14385 (uri (cran-uri "plot3D" version))
14386 (sha256
14387 (base32
14388 "0chn70fqwyca8lbnjnpbcj08ni0dfbax2gjmzhk2c4w72c04mzpn"))))
14389 (properties `((upstream-name . "plot3D")))
14390 (build-system r-build-system)
14391 (propagated-inputs `(("r-misc3d" ,r-misc3d)))
14392 (home-page "https://cran.r-project.org/web/packages/plot3D")
14393 (synopsis "Plot multi-dimensional data")
14394 (description
14395 "This package provides functions for viewing 2D and 3D data, including
14396perspective plots, slice plots, surface plots, scatter plots, etc. It
14397includes data sets from oceanography.")
14398 (license license:gpl3+)))
85625cae
RW
14399
14400(define-public r-ggfortify
14401 (package
14402 (name "r-ggfortify")
14403 (version "0.4.6")
14404 (source
14405 (origin
14406 (method url-fetch)
14407 (uri (cran-uri "ggfortify" version))
14408 (sha256
14409 (base32
14410 "1clyha9f9ygma64xbgi78lxsp1203f2ashqhhdpm71nr6w91bm88"))))
14411 (build-system r-build-system)
14412 (propagated-inputs
14413 `(("r-dplyr" ,r-dplyr)
14414 ("r-ggplot2" ,r-ggplot2)
14415 ("r-gridextra" ,r-gridextra)
14416 ("r-scales" ,r-scales)
14417 ("r-stringr" ,r-stringr)
14418 ("r-tibble" ,r-tibble)
14419 ("r-tidyr" ,r-tidyr)))
14420 (home-page "https://github.com/sinhrks/ggfortify")
14421 (synopsis "Data visualization tools for statistical analysis results")
14422 (description
14423 "This package provides unified plotting tools for statistics commonly
14424used, such as GLM, time series, PCA families, clustering and survival
14425analysis. The package offers a single plotting interface for these analysis
14426results and plots in a unified style using the @code{ggplot2} package.")
14427 (license license:gpl2)))
afc4370d
RW
14428
14429(define-public r-refmanager
14430 (package
14431 (name "r-refmanager")
14432 (version "1.2.12")
14433 (source
14434 (origin
14435 (method url-fetch)
14436 (uri (cran-uri "RefManageR" version))
14437 (sha256
14438 (base32
14439 "1hfxa1qacfryk36mpaqdhdgws5jwxiyy489ikd3wa18bp1wz8dkp"))))
14440 (properties `((upstream-name . "RefManageR")))
14441 (build-system r-build-system)
14442 (propagated-inputs
14443 `(("r-bibtex" ,r-bibtex)
14444 ("r-httr" ,r-httr)
14445 ("r-jsonlite" ,r-jsonlite)
14446 ("r-lubridate" ,r-lubridate)
14447 ("r-plyr" ,r-plyr)
14448 ("r-stringr" ,r-stringr)
14449 ("r-xml2" ,r-xml2)))
14450 (home-page "https://github.com/ropensci/RefManageR/")
14451 (synopsis "Straightforward BibTeX and BibLaTeX bibliography management")
14452 (description
14453 "This package provides tools for importing and working with bibliographic
14454references. It greatly enhances the @code{bibentry} class by providing a
14455class @code{BibEntry} which stores BibTeX and BibLaTeX references, supports
14456UTF-8 encoding, and can be easily searched by any field, by date ranges, and
14457by various formats for name lists (author by last names, translator by full
14458names, etc.). Entries can be updated, combined, sorted, printed in a number
14459of styles, and exported. BibTeX and BibLaTeX @code{.bib} files can be read
14460into R and converted to @code{BibEntry} objects.")
14461 ;; Any of these licenses may be picked.
14462 (license (list license:gpl2 license:gpl3 license:bsd-3))))
29591ca6
RW
14463
14464(define-public r-citr
14465 (package
14466 (name "r-citr")
14467 (version "0.3.0")
14468 (source
14469 (origin
14470 (method url-fetch)
14471 (uri (cran-uri "citr" version))
14472 (sha256
14473 (base32
14474 "0pik6s6xk5768s3kkppw2192dj455py53gsn6k2b7xgg96ircy0g"))))
14475 (build-system r-build-system)
14476 (propagated-inputs
14477 `(("r-assertthat" ,r-assertthat)
14478 ("r-bibtex" ,r-bibtex)
14479 ("r-curl" ,r-curl)
14480 ("r-httr" ,r-httr)
14481 ("r-miniui" ,r-miniui)
14482 ("r-refmanager" ,r-refmanager)
14483 ("r-rstudioapi" ,r-rstudioapi)
14484 ("r-shiny" ,r-shiny)
14485 ("r-shinyjs" ,r-shinyjs)
14486 ("r-yaml" ,r-yaml)))
14487 (home-page "https://github.com/crsh/citr")
14488 (synopsis "RStudio add-in to insert Markdown citations")
14489 (description
14490 "This package provides functions and an RStudio add-in that search a
14491BibTeX or BibLaTeX file to create and insert formatted Markdown citations into
14492the current document.")
14493 (license license:expat)))
30f1029f
RW
14494
14495(define-public r-xgboost
14496 (package
14497 (name "r-xgboost")
14498 (version "0.82.1")
14499 (source
14500 (origin
14501 (method url-fetch)
14502 (uri (cran-uri "xgboost" version))
14503 (sha256
14504 (base32
14505 "0plhx63wcm4syslzmjfv6bdgaqn96fnav048hrj0vxk4dzgfp8sq"))))
14506 (build-system r-build-system)
14507 (propagated-inputs
14508 `(("r-data-table" ,r-data-table)
14509 ("r-magrittr" ,r-magrittr)
14510 ("r-matrix" ,r-matrix)
14511 ("r-stringi" ,r-stringi)))
14512 (home-page "https://github.com/dmlc/xgboost")
14513 (synopsis "Extreme gradient boosting")
14514 (description
14515 "This package provides an R interface to Extreme Gradient Boosting, which
14516is an efficient implementation of the gradient boosting framework from Chen
14517and Guestrin (2016). The package includes efficient linear model solver and
14518tree learning algorithms. The package can automatically do parallel
14519computation on a single machine. It supports various objective functions,
14520including regression, classification and ranking. The package is made to be
14521extensible, so that users are also allowed to define their own objectives
14522easily.")
14523 (license license:asl2.0)))