gnu: r-tximport: Update to 1.12.0.
[jackhill/guix/guix.git] / gnu / packages / cran.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
3 ;;; Copyright © 2016, 2017 Ben Woodcroft <donttrustben@gmail.com>
4 ;;; Copyright © 2017, 2018 Roel Janssen <roel@gnu.org>
5 ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
6 ;;; Copyright © 2017 Raoul Bonnal <ilpuccio.febo@gmail.com>
7 ;;; Copyright © 2018 Vijayalakshmi Vedantham <vijimay12@gmail.com>
8 ;;; Copyright © 2018 Sahithi Yarlagadda <sahi@swecha.net>
9 ;;; Copyright © 2018 Sandeep Subramanian <sandeepsubramanian94@gmail.com>
10 ;;; Copyright © 2018 Charlie Ritter <chewzeirta@posteo.net>
11 ;;; Copyright © 2018 Konrad Hinsen <konrad.hinsen@fastmail.net>
12 ;;; Copyright © 2018 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
13 ;;; Copyright © 2018 Laura Lazzati <laura.lazzati.15@gmail.com>
14 ;;; Copyright © 2018 Leo Famulari <leo@famulari.name>
15 ;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com>
16 ;;; Copyright © 2018, 2019 Brett Gilio <brettg@posteo.net>
17 ;;; Copyright © 2019 Nicolò Balzarotti <anothersms@gmail.com>
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)
38 #:use-module (guix git-download)
39 #:use-module (guix utils)
40 #:use-module (guix build-system r)
41 #:use-module (gnu packages algebra)
42 #:use-module (gnu packages base)
43 #:use-module (gnu packages bioinformatics)
44 #:use-module (gnu packages c)
45 #:use-module (gnu packages compression)
46 #:use-module (gnu packages curl)
47 #:use-module (gnu packages databases)
48 #:use-module (gnu packages fontutils)
49 #:use-module (gnu packages gcc)
50 #:use-module (gnu packages geo)
51 #:use-module (gnu packages ghostscript)
52 #:use-module (gnu packages gl)
53 #:use-module (gnu packages gnome)
54 #:use-module (gnu packages graph)
55 #:use-module (gnu packages gtk)
56 #:use-module (gnu packages haskell)
57 #:use-module (gnu packages icu4c)
58 #:use-module (gnu packages image)
59 #:use-module (gnu packages imagemagick)
60 #:use-module (gnu packages java)
61 #:use-module (gnu packages javascript)
62 #:use-module (gnu packages lisp)
63 #:use-module (gnu packages machine-learning)
64 #:use-module (gnu packages maths)
65 #:use-module (gnu packages mpi)
66 #:use-module (gnu packages multiprecision)
67 #:use-module (gnu packages networking)
68 #:use-module (gnu packages pcre)
69 #:use-module (gnu packages perl)
70 #:use-module (gnu packages pkg-config)
71 #:use-module (gnu packages python)
72 #:use-module (gnu packages python-xyz)
73 #:use-module (gnu packages statistics)
74 #:use-module (gnu packages tls)
75 #:use-module (gnu packages web)
76 #:use-module (gnu packages xorg))
77
78 (define-public r-clipr
79 (package
80 (name "r-clipr")
81 (version "0.6.0")
82 (source
83 (origin
84 (method url-fetch)
85 (uri (cran-uri "clipr" version))
86 (sha256
87 (base32
88 "0k9kimkmmj9k7290sxiqn4kd1vvm4w7q9a44wp0w30b7yjpavx2m"))))
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
94 the system clipboards.")
95 (license license:gpl3)))
96
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
113 additional arguments. But this flexibility comes at a cost: misspelled
114 arguments will be silently ignored. The @code{ellipsis} package is an
115 experiment that allows a generic to warn if any arguments passed in @code{...}
116 are not used.")
117 (license license:gpl3)))
118
119 (define-public r-sys
120 (package
121 (name "r-sys")
122 (version "3.2")
123 (source
124 (origin
125 (method url-fetch)
126 (uri (cran-uri "sys" version))
127 (sha256
128 (base32
129 "1k5vk5q9wa5sin0n226i05nymg469s24f6lx64yyhb7yc624j698"))))
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()}
135 function with fine control and consistent behavior across platforms. It
136 supports clean interruption, timeout, background tasks, and streaming STDIN /
137 STDOUT / STDERR over binary or text connections. The package also provides
138 functions for evaluating expressions inside a temporary fork. Such
139 evaluations have no side effects on the main R process, and support reliable
140 interrupts and timeouts. This provides the basis for a sandboxing
141 mechanism.")
142 (license license:expat)))
143
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
161 for credentials or a passphrase, for example to authenticate with a server or
162 read a protected key.")
163 (license license:expat)))
164
165 (define-public r-vegan
166 (package
167 (name "r-vegan")
168 (version "2.5-4")
169 (source
170 (origin
171 (method url-fetch)
172 (uri (cran-uri "vegan" version))
173 (sha256
174 (base32
175 "1q4khii0xbjwmkida0b35q8rmwhg325qizjwz6slkjhz250a85ji"))))
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
190 has most basic functions of diversity analysis, community ordination and
191 dissimilarity analysis. Most of its multivariate tools can be used for other
192 data types as well.")
193 (license license:gpl2+)))
194
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
237 they share common data representations and API design. This package is
238 designed to make it easy to install and load multiple tidyverse packages in a
239 single step.")
240 (license license:gpl3)))
241
242 (define-public r-rvest
243 (package
244 (name "r-rvest")
245 (version "0.3.3")
246 (source
247 (origin
248 (method url-fetch)
249 (uri (cran-uri "rvest" version))
250 (sha256
251 (base32
252 "0vsm38w83zf0djcrc5ymb1ysg88hmgq2w937ql7pqgvk5px8f2mi"))))
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
263 designed to work with @code{magrittr} to make it easy to express common web
264 scraping tasks, inspired by libraries like @code{BeautifulSoup}.")
265 (license license:gpl3)))
266
267 (define-public r-selectr
268 (package
269 (name "r-selectr")
270 (version "0.4-1")
271 (source
272 (origin
273 (method url-fetch)
274 (uri (cran-uri "selectr" version))
275 (sha256
276 (base32
277 "1jp27rxks4w29l47k42869hp8hnkzq2rnvsqbr44wd19fqb2zm4b"))))
278 (build-system r-build-system)
279 (propagated-inputs
280 `(("r-stringr" ,r-stringr)
281 ("r-r6" ,r-r6)))
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
286 expression. This allows you to use CSS selectors when working with the XML
287 package as it can only evaluate XPath expressions. Also provided are
288 convenience functions useful for using CSS selectors on XML nodes. This
289 package is a port of the Python package @code{cssselect}.")
290 (license license:bsd-3)))
291
292 (define-public r-reprex
293 (package
294 (name "r-reprex")
295 (version "0.2.1")
296 (source
297 (origin
298 (method url-fetch)
299 (uri (cran-uri "reprex" version))
300 (sha256
301 (base32
302 "1ws5gds453xgfili87r35rz1wn2i7jbqissq98csbiddpkgls8sx"))))
303 (build-system r-build-system)
304 (propagated-inputs
305 `(("r-callr" ,r-callr)
306 ("r-clipr" ,r-clipr)
307 ("r-fs" ,r-fs)
308 ("r-rlang" ,r-rlang)
309 ("r-rmarkdown" ,r-rmarkdown)
310 ("r-whisker" ,r-whisker)
311 ("r-withr" ,r-withr)))
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
317 that include both code and output. The goal is to encourage the sharing of
318 small, reproducible, and runnable examples on code-oriented websites or email.
319 @code{reprex} also extracts clean, runnable R code from various common formats,
320 such as copy/paste from an R session.")
321 (license license:expat)))
322
323 (define-public r-callr
324 (package
325 (name "r-callr")
326 (version "3.2.0")
327 (source
328 (origin
329 (method url-fetch)
330 (uri (cran-uri "callr" version))
331 (sha256
332 (base32
333 "1s5h2k7c1vgbry90xczin66q89cbkc6mvh4679l5rsz83087pd2b"))))
334 (build-system r-build-system)
335 (propagated-inputs
336 `(("r-r6" ,r-r6)
337 ("r-processx" ,r-processx)))
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,
342 without affecting the current R process at all. This packages does exactly
343 that.")
344 (license license:expat)))
345
346 (define-public r-readxl
347 (package
348 (name "r-readxl")
349 (version "1.3.1")
350 (source
351 (origin
352 (method url-fetch)
353 (uri (cran-uri "readxl" version))
354 (sha256
355 (base32
356 "15mambxr8c7k2ikdfsl1w3vxvm54dsnk0cl1qvks6iig7rql3d14"))))
357 (build-system r-build-system)
358 (propagated-inputs
359 `(("r-cellranger" ,r-cellranger)
360 ("r-progress" ,r-progress)
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
368 the 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
373 (define-public r-modelr
374 (package
375 (name "r-modelr")
376 (version "0.1.4")
377 (source
378 (origin
379 (method url-fetch)
380 (uri (cran-uri "modelr" version))
381 (sha256
382 (base32
383 "1ngxphbjkv7yl1rg30sj36mfwhc76g452drjrq9abgab4k0pgnml"))))
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
397 into a pipeline of data manipulation and visualisation.")
398 (license license:gpl3)))
399
400 (define-public r-httpuv
401 (package
402 (name "r-httpuv")
403 (version "1.5.1")
404 (source (origin
405 (method url-fetch)
406 (uri (cran-uri "httpuv" version))
407 (sha256
408 (base32
409 "042piypg4c8sqrlcdl3dwajkafkbglsky3x7d0jpjv8s5wxnpfxm"))))
410 (build-system r-build-system)
411 (propagated-inputs
412 `(("r-bh" ,r-bh)
413 ("r-later" ,r-later)
414 ("r-promises" ,r-promises)
415 ("r-r6" ,r-r6)
416 ("r-rcpp" ,r-rcpp)))
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
421 handling HTTP and WebSocket requests directly from within R. It is primarily
422 intended as a building block for other packages, rather than making it
423 particularly 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")
432 (version "1.6")
433 (source (origin
434 (method url-fetch)
435 (uri (cran-uri "jsonlite" version))
436 (sha256
437 (base32
438 "0lyvhnr6n57h3a89bvipii7x17nvfaycm9j5j50bfrlr48jv9ic8"))))
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
444 for statistical data and the web. It offers flexible, robust, high
445 performance tools for working with JSON in R and is particularly powerful for
446 building pipelines and interacting with a web API. In addition to converting
447 JSON data from/to R objects, jsonlite contains functions to stream, validate,
448 and prettify JSON data. The unit tests included with the package verify that
449 all edge cases are encoded and decoded consistently for use with dynamic data
450 in systems and applications.")
451 (license license:expat)))
452
453 (define-public r-servr
454 (package
455 (name "r-servr")
456 (version "0.13")
457 (source (origin
458 (method url-fetch)
459 (uri (cran-uri "servr" version))
460 (sha256
461 (base32
462 "1n5haqkshrxcx557f1k7nrisvq3wak8v370s2r6yv691b8hvbscs"))))
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
473 documents that can be converted to HTML files (e.g., R Markdown) under a given
474 directory.")
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
530 various contexts including the R console, R Markdown documents, and Shiny web
531 applications.")
532 (license license:expat)))
533
534 (define-public r-htmltable
535 (package
536 (name "r-htmltable")
537 (version "1.13.1")
538 (source
539 (origin
540 (method url-fetch)
541 (uri (cran-uri "htmlTable" version))
542 (sha256
543 (base32
544 "1l44b33xgj2698k6nz17r8fl0ink14ryzng803apm9d6bnv357v8"))))
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
559 elements such as row spanners, column spanners, table spanners, zebra
560 striping, and more. While allowing advanced layout, the underlying
561 CSS-structure is simple in order to maximize compatibility with word
562 processors such as LibreOffice. The package also contains a few text
563 formatting functions that help outputting text compatible with HTML or
564 LaTeX.")
565 (license license:gpl3+)))
566
567 (define-public r-curl
568 (package
569 (name "r-curl")
570 (version "3.3")
571 (source (origin
572 (method url-fetch)
573 (uri (cran-uri "curl" version))
574 (sha256
575 (base32
576 "1gd5i25anzi28lg1f8p7g63z9d46xi0qaw4lxpml5p0f52lvkc0c"))))
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
593 `(("libcurl" ,curl)
594 ("zlib" ,zlib)))
595 (native-inputs
596 `(("pkg-config" ,pkg-config)))
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
601 configurable drop-in replacements for base @code{url()} and
602 @code{download.file()} with better performance, support for encryption, gzip
603 compression, authentication, and other @code{libcurl} goodies. The core of
604 the package implements a framework for performing fully customized requests
605 where data can be processed either in memory, on disk, or streaming via the
606 callback 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
625 objects 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
644 and vice-versa.")
645 (license license:gpl2+)))
646
647 (define-public r-shiny
648 (package
649 (name "r-shiny")
650 (version "1.2.0")
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
660 "1kl3dh68h4cnrm3rqn9pddk5n6bsmr5x0626bkfv0qqi0q92zin4"))))
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")
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)))
741 (home-page "http://shiny.rstudio.com")
742 (synopsis "Easy interactive web applications with R")
743 (description
744 "Makes it incredibly easy to build interactive web applications
745 with R. Automatic \"reactive\" binding between inputs and outputs and
746 extensive prebuilt widgets make it possible to build beautiful,
747 responsive, and powerful applications with minimal effort.")
748 (license license:artistic2.0)))
749
750 (define-public r-shinydashboard
751 (package
752 (name "r-shinydashboard")
753 (version "0.7.1")
754 (source (origin
755 (method url-fetch)
756 (uri (cran-uri "shinydashboard" version))
757 (sha256
758 (base32
759 "0khac8b27q3swdw07kl609hm0fjfjsjv591b388q99mqqr2rk92i"))))
760 (build-system r-build-system)
761 ;; The directory inst/AdminLTE/ contains a minified JavaScript file.
762 ;; Regenerate it from the included sources.
763 (arguments
764 `(#:modules ((guix build utils)
765 (guix build r-build-system)
766 (ice-9 popen))
767 #:phases
768 (modify-phases %standard-phases
769 (add-after 'unpack 'generate-minified-javascript
770 (lambda _
771 (with-directory-excursion "inst/AdminLTE"
772 (delete-file "app.min.js")
773 (let ((minified (open-pipe* OPEN_READ "uglify-js" "app.js")))
774 (call-with-output-file "app.min.js"
775 (lambda (port)
776 (dump-port minified port))))))))))
777 (propagated-inputs
778 `(("r-htmltools" ,r-htmltools)
779 ("r-promises" ,r-promises)
780 ("r-shiny" ,r-shiny)))
781 (native-inputs
782 `(("uglify-js" ,uglify-js)))
783 (home-page "http://rstudio.github.io/shinydashboard/")
784 (synopsis "Create dashboards with shiny")
785 (description "This package provides an extension to the Shiny web
786 application framework for R, making it easy to create attractive dashboards.")
787 ;; This package includes software that was released under the Expat
788 ;; license, but the whole package is released under GPL version 2 or
789 ;; later.
790 (license license:gpl2+)))
791
792 (define-public r-shinyfiles
793 (package
794 (name "r-shinyfiles")
795 (version "0.7.3")
796 (source
797 (origin
798 (method url-fetch)
799 (uri (cran-uri "shinyFiles" version))
800 (sha256
801 (base32
802 "01as3l9ffj5dwac0vviais2x5l3027zxlj67kcvkdwxaj5hql33i"))))
803 (properties `((upstream-name . "shinyFiles")))
804 (build-system r-build-system)
805 (propagated-inputs
806 `(("r-fs" ,r-fs)
807 ("r-htmltools" ,r-htmltools)
808 ("r-jsonlite" ,r-jsonlite)
809 ("r-shiny" ,r-shiny)
810 ("r-tibble" ,r-tibble)))
811 (home-page "https://github.com/thomasp85/shinyFiles")
812 (synopsis "Server-side file system viewer for Shiny")
813 (description
814 "This package provides functionality for client-side navigation of the
815 server side file system in shiny apps. In case the app is running locally
816 this gives the user direct access to the file system without the need to
817 \"download\" files to a temporary location. Both file and folder selection as
818 well as file saving is available.")
819 (license license:gpl2+)))
820
821 (define-public r-crosstalk
822 (package
823 (name "r-crosstalk")
824 (version "1.0.0")
825 (source
826 (origin
827 (method url-fetch)
828 (uri (cran-uri "crosstalk" version))
829 (sha256
830 (base32
831 "0lfa89vhrzi7a1rghmygcjr8gzddw35sinb3jx6g49mc9jias7mk"))))
832 (build-system r-build-system)
833 (propagated-inputs
834 `(("r-ggplot2" ,r-ggplot2)
835 ("r-htmltools" ,r-htmltools)
836 ("r-jsonlite" ,r-jsonlite)
837 ("r-lazyeval" ,r-lazyeval)
838 ("r-r6" ,r-r6)
839 ("r-shiny" ,r-shiny)))
840 (home-page "https://rstudio.github.io/crosstalk/")
841 (synopsis "Inter-widget interactivity for HTML widgets")
842 (description
843 "This package provides building blocks for allowing HTML widgets to
844 communicate with each other, with Shiny or without (i.e. static @code{.html}
845 files). It currently supports linked brushing and filtering.")
846 (license license:expat)))
847
848 (define-public r-rook
849 (package
850 (name "r-rook")
851 (version "1.1-1")
852 (source
853 (origin
854 (method url-fetch)
855 (uri (cran-uri "Rook" version))
856 (sha256
857 (base32
858 "00s9a0kr9rwxvlq433daxjk4ji8m0w60hjdprf502msw9kxfrx00"))))
859 (properties `((upstream-name . "Rook")))
860 (build-system r-build-system)
861 (propagated-inputs `(("r-brew" ,r-brew)))
862 (home-page "https://cran.r-project.org/web/packages/Rook")
863 (synopsis "Web server interface for R")
864 (description
865 "This package contains the Rook specification and convenience software
866 for building and running Rook applications. A Rook application is an R
867 reference class object that implements a @code{call} method or an R closure
868 that takes exactly one argument, an environment, and returns a list with three
869 named elements: the @code{status}, the @code{headers}, and the @code{body}.")
870 (license license:gpl2)))
871
872 (define-public r-miniui
873 (package
874 (name "r-miniui")
875 (version "0.1.1.1")
876 (source
877 (origin
878 (method url-fetch)
879 (uri (cran-uri "miniUI" version))
880 (sha256
881 (base32
882 "1h5h2sc57h95d6bsgs95l26911g38hvjc1v50bc31xl9689l2as5"))))
883 (properties `((upstream-name . "miniUI")))
884 (build-system r-build-system)
885 (propagated-inputs
886 `(("r-htmltools" ,r-htmltools)
887 ("r-shiny" ,r-shiny)))
888 (home-page "https://cran.r-project.org/web/packages/miniUI/")
889 (synopsis "Shiny UI widgets for small screens")
890 (description
891 "This package provides UI widget and layout functions for writing Shiny apps that
892 work well on small screens.")
893 (license license:gpl3)))
894
895 (define-public r-feather
896 (package
897 (name "r-feather")
898 (version "0.3.3")
899 (source
900 (origin
901 (method url-fetch)
902 (uri (cran-uri "feather" version))
903 (sha256
904 (base32
905 "0ls8lmygyjq60467s88h66d7fczjp1d3a2106rfq4dx9lyfvdfsa"))))
906 (build-system r-build-system)
907 (propagated-inputs
908 `(("r-hms" ,r-hms)
909 ("r-rcpp" ,r-rcpp)
910 ("r-tibble" ,r-tibble)))
911 (home-page "https://github.com/wesm/feather")
912 (synopsis "R Bindings to the Feather API")
913 (description "Read and write feather files, a lightweight binary columnar
914 data store designed for maximum speed.")
915 (license license:asl2.0)))
916
917 (define-public r-maps
918 (package
919 (name "r-maps")
920 (version "3.3.0")
921 (source
922 (origin
923 (method url-fetch)
924 (uri (cran-uri "maps" version))
925 (sha256
926 (base32
927 "05i2ppl5z4p8rawgqmy3z4ia05fcblpq1vvrmrkgkkpdlhczx6hr"))))
928 (build-system r-build-system)
929 (home-page "https://cran.r-project.org/web/packages/maps")
930 (synopsis "Draw geographical maps")
931 (description "This package provides an R module for display of maps.
932 Projection code and larger maps are in separate packages (@code{mapproj} and
933 @code{mapdata}).")
934 (license license:gpl2)))
935
936 (define-public r-mapproj
937 (package
938 (name "r-mapproj")
939 (version "1.2.6")
940 (source
941 (origin
942 (method url-fetch)
943 (uri (cran-uri "mapproj" version))
944 (sha256
945 (base32
946 "1rggww8cbwv0vzlj5afzhbsbngg4bzj5znbkz7wmxsbshfbsm9b2"))))
947 (build-system r-build-system)
948 (propagated-inputs `(("r-maps" ,r-maps)))
949 (home-page "https://cran.r-project.org/web/packages/mapproj")
950 (synopsis "Map projection in R")
951 (description "This package converts latitude/longitude into projected
952 coordinates.")
953 (license (list license:gpl2 ; The R interface
954 (license:non-copyleft ; The C code
955 "https://www.gnu.org/licenses/license-list.en.html#lucent102"
956 "Lucent Public License Version 1.02")))))
957
958 (define-public r-rgooglemaps
959 (package
960 (name "r-rgooglemaps")
961 (version "1.4.3")
962 (source
963 (origin
964 (method url-fetch)
965 (uri (cran-uri "RgoogleMaps" version))
966 (sha256
967 (base32
968 "06ab3lg1rwm93hkshf1vxfm8mlxq5qsjan0wx43lhnrysay65js4"))))
969 (properties `((upstream-name . "RgoogleMaps")))
970 (build-system r-build-system)
971 (propagated-inputs `(("r-png" ,r-png)))
972 (home-page "https://cran.r-project.org/web/packages/RgoogleMaps")
973 (synopsis "Use Google Maps in R")
974 (description "This package serves two purposes:
975 @enumerate
976 @item Provide a comfortable R interface to query the Google server for static
977 maps, and
978 @item Use the map as a background image to overlay plots within R. This
979 requires proper coordinate scaling.
980 @end enumerate\n")
981 (license license:gpl2+)))
982
983 (define-public r-geosphere
984 (package
985 (name "r-geosphere")
986 (version "1.5-7")
987 (source
988 (origin
989 (method url-fetch)
990 (uri (cran-uri "geosphere" version))
991 (sha256
992 (base32
993 "186qdm5niq7v3d4w4rngx71znsgi44hnam7698bsx9ar5mg5b6wx"))))
994 (build-system r-build-system)
995 (propagated-inputs `(("r-sp" ,r-sp)))
996 (home-page "https://cran.r-project.org/web/packages/geosphere")
997 (synopsis "Spherical trigonometry")
998 (description "This package computes spherical trigonometry for geographic
999 applications. That is, compute distances and related measures for angular
1000 (longitude/latitude) locations.")
1001 (license license:gpl3+)))
1002
1003 (define-public r-ggmap
1004 (package
1005 (name "r-ggmap")
1006 (version "3.0.0")
1007 (source
1008 (origin
1009 (method url-fetch)
1010 (uri (cran-uri "ggmap" version))
1011 (sha256
1012 (base32
1013 "13dmzl6z62pzjiffilarkji46vy0sacxa8a7mhrhc3biq3ylzhln"))))
1014 (build-system r-build-system)
1015 (propagated-inputs
1016 `(("r-bitops" ,r-bitops)
1017 ("r-digest" ,r-digest)
1018 ("r-dplyr" ,r-dplyr)
1019 ("r-ggplot2" ,r-ggplot2)
1020 ("r-glue" ,r-glue)
1021 ("r-httr" ,r-httr)
1022 ("r-jpeg" ,r-jpeg)
1023 ("r-magrittr" ,r-magrittr)
1024 ("r-plyr" ,r-plyr)
1025 ("r-png" ,r-png)
1026 ("r-purrr" ,r-purrr)
1027 ("r-rgooglemaps" ,r-rgooglemaps)
1028 ("r-rjson" ,r-rjson)
1029 ("r-scales" ,r-scales)
1030 ("r-stringr" ,r-stringr)
1031 ("r-tibble" ,r-tibble)
1032 ("r-tidyr" ,r-tidyr)))
1033 (home-page "https://github.com/dkahle/ggmap")
1034 (synopsis "Spatial visualization with ggplot2")
1035 (description "This package provides a collection of functions to visualize
1036 spatial data and models on top of static maps from various online sources (e.g
1037 Google Maps and Stamen Maps). It includes tools common to those tasks,
1038 including functions for geolocation and routing.")
1039 (license license:gpl2)))
1040
1041 (define-public r-haven
1042 (package
1043 (name "r-haven")
1044 (version "2.1.0")
1045 (source
1046 (origin
1047 (method url-fetch)
1048 (uri (cran-uri "haven" version))
1049 (sha256
1050 (base32
1051 "0x5fwc4q2gdxwwp5sxdd6q17jhpisd769y9kv0xgnjcm0cdwz8f0"))))
1052 (build-system r-build-system)
1053 (inputs
1054 `(("zlib" ,zlib)))
1055 (propagated-inputs
1056 `(("r-forcats" ,r-forcats)
1057 ("r-hms" ,r-hms)
1058 ("r-rcpp" ,r-rcpp)
1059 ("r-readr" ,r-readr)
1060 ("r-tibble" ,r-tibble)))
1061 (home-page "https://haven.tidyverse.org")
1062 (synopsis "Import and Export 'SPSS', 'Stata' and 'SAS' Files")
1063 (description
1064 "This package lets you mport foreign statistical formats into R via the
1065 embedded @url{https://github.com/WizardMac/ReadStat,ReadStat} C library.")
1066 (license license:expat)))
1067
1068 (define-public r-amap
1069 (package
1070 (name "r-amap")
1071 (version "0.8-16")
1072 (source (origin
1073 (method url-fetch)
1074 (uri (cran-uri "amap" version))
1075 (sha256
1076 (base32
1077 "1qnl2x98x64iaipkx5126rsddq2sx5ml43h75xyiyn30yvbmlxyk"))))
1078 (build-system r-build-system)
1079 (inputs
1080 `(("gfortran" ,gfortran)))
1081 (home-page "http://mulcyber.toulouse.inra.fr/projects/amap/")
1082 (synopsis "Another multidimensional analysis package")
1083 (description "This package provides tools for clustering and principal
1084 component analysis (with robust methods, and parallelized functions).")
1085 (license license:gpl2+)))
1086
1087 (define-public r-ape
1088 (package
1089 (name "r-ape")
1090 (version "5.3")
1091 (source
1092 (origin
1093 (method url-fetch)
1094 (uri (cran-uri "ape" version))
1095 (sha256
1096 (base32
1097 "08wbk1kxhs32bmmvqlqanbdg1w235amd35k8m00fngsj9h9xzc08"))))
1098 (build-system r-build-system)
1099 (propagated-inputs
1100 `(("r-lattice" ,r-lattice)
1101 ("r-nlme" ,r-nlme)
1102 ("r-rcpp" ,r-rcpp)))
1103 (home-page "http://ape-package.ird.fr/")
1104 (synopsis "Analyses of phylogenetics and evolution")
1105 (description
1106 "This package provides functions for reading, writing, plotting, and
1107 manipulating phylogenetic trees, analyses of comparative data in a
1108 phylogenetic framework, ancestral character analyses, analyses of
1109 diversification and macroevolution, computing distances from DNA sequences,
1110 and several other tools.")
1111 (license license:gpl2+)))
1112
1113 (define-public r-abbyyr
1114 (package
1115 (name "r-abbyyr")
1116 (version "0.5.4")
1117 (source
1118 (origin
1119 (method url-fetch)
1120 (uri (cran-uri "abbyyR" version))
1121 (sha256
1122 (base32
1123 "1jh1c1ad6mgw7brdh2isnza1qpjlfxnqr7jl76yd93axyfl76xjx"))))
1124 (properties `((upstream-name . "abbyyR")))
1125 (build-system r-build-system)
1126 (propagated-inputs
1127 `(("r-curl" ,r-curl)
1128 ("r-httr" ,r-httr)
1129 ("r-plyr" ,r-plyr)
1130 ("r-progress" ,r-progress)
1131 ("r-readr" ,r-readr)
1132 ("r-xml" ,r-xml)))
1133 (home-page "https://github.com/soodoku/abbyyR")
1134 (synopsis "Access to Abbyy Optical Character Recognition (OCR) API")
1135 (description
1136 "This package provides tools to get text from images of text using Abbyy
1137 Cloud Optical Character Recognition (OCR) API. With abbyyyR, one can easily
1138 OCR images, barcodes, forms, documents with machine readable zones, e.g.
1139 passports and get the results in a variety of formats including plain text and
1140 XML. To learn more about the Abbyy OCR API, see @url{http://ocrsdk.com/}.")
1141 (license license:expat)))
1142
1143 (define-public r-colorspace
1144 (package
1145 (name "r-colorspace")
1146 (version "1.4-1")
1147 (source
1148 (origin
1149 (method url-fetch)
1150 (uri (cran-uri "colorspace" version))
1151 (sha256
1152 (base32 "0wyny3ah2d74hqv80s6imrarpna09gq3j9rjnz6zx2qg0lx72gb9"))))
1153 (build-system r-build-system)
1154 (home-page "https://cran.r-project.org/web/packages/colorspace")
1155 (synopsis "Color space manipulation")
1156 (description
1157 "This package carries out a mapping between assorted color spaces
1158 including RGB, HSV, HLS, CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB and polar
1159 CIELAB. Qualitative, sequential, and diverging color palettes based on HCL
1160 colors are provided.")
1161 (license license:bsd-3)))
1162
1163 (define-public r-glue
1164 (package
1165 (name "r-glue")
1166 (version "1.3.1")
1167 (source
1168 (origin
1169 (method url-fetch)
1170 (uri (cran-uri "glue" version))
1171 (sha256
1172 (base32
1173 "1a1ycg9r3gd91visp49q49rsrdgyf8kr9dxdy3hk99kikn4z5hag"))))
1174 (build-system r-build-system)
1175 (home-page "https://github.com/tidyverse/glue")
1176 (synopsis "Interpreted string literals")
1177 (description
1178 "This package provides an implementation of interpreted string literals,
1179 inspired by Python's Literal String Interpolation (PEP-0498) and
1180 Docstrings (PEP-0257) and Julia's Triple-Quoted String Literals.")
1181 (license license:expat)))
1182
1183 (define-public r-pastecs
1184 (package
1185 (name "r-pastecs")
1186 (version "1.3.21")
1187 (source (origin
1188 (method url-fetch)
1189 (uri (cran-uri "pastecs" version))
1190 (sha256
1191 (base32
1192 "0z4dic94ar646w7zc2ggi5hgvf2qnznsani94c5pyql8zspz47lc"))))
1193 (build-system r-build-system)
1194 (propagated-inputs
1195 `(("r-boot" ,r-boot)))
1196 (home-page "http://www.sciviews.org/pastecs")
1197 (synopsis "Analysis of space-time ecological series")
1198 (description
1199 "This package provides functions for regulation, decomposition and analysis
1200 of space-time series. The @code{pastecs} library is a PNEC-Art4 and IFREMER
1201 initiative to bring PASSTEC 2000 functionalities to R.")
1202 (license license:gpl2+)))
1203
1204 (define-public r-plogr
1205 (package
1206 (name "r-plogr")
1207 (version "0.2.0")
1208 (source
1209 (origin
1210 (method url-fetch)
1211 (uri (cran-uri "plogr" version))
1212 (sha256
1213 (base32
1214 "0a8dhzlna79ggyhfr0nncgh15a9n6r0dsz664pz0ah323wpblqqf"))))
1215 (build-system r-build-system)
1216 (home-page "https://github.com/krlmlr/plogr")
1217 (synopsis "R bindings for the plog C++ logging library")
1218 (description
1219 "This package provides the header files for a stripped-down version of
1220 the plog header-only C++ logging library, and a method to log to R's standard
1221 error stream.")
1222 (license license:expat)))
1223
1224 (define-public r-pls
1225 (package
1226 (name "r-pls")
1227 (version "2.7-1")
1228 (source
1229 (origin
1230 (method url-fetch)
1231 (uri (cran-uri "pls" version))
1232 (sha256
1233 (base32
1234 "0jw3zl5z06023zxr74phnvwax8m3i4a4i6lsqiq6j15aq9zq3zgq"))))
1235 (build-system r-build-system)
1236 (home-page "http://mevik.net/work/software/pls.html")
1237 (synopsis "Partial Least Squares and Principal Component Regression")
1238 (description
1239 "The pls package implements multivariate regression methods: Partial Least
1240 Squares Regression (@dfn{PLSR}), Principal Component Regression (@dfn{PCR}), and
1241 Canonical Powered Partial Least Squares (@dfn{CPPLS}). It supports:
1242
1243 @itemize
1244 @item several algorithms: the traditional orthogonal scores (@dfn{NIPALS}) PLS
1245 algorithm, kernel PLS, wide kernel PLS, Simpls, and PCR through @code{svd}
1246 @item multi-response models (or @dfn{PLS2})
1247 @item flexible cross-validation
1248 @item Jackknife variance estimates of regression coefficients
1249 @item extensive and flexible plots: scores, loadings, predictions, coefficients,
1250 (R)MSEP, R², and correlation loadings
1251 @item formula interface, modelled after @code{lm()}, with methods for predict,
1252 print, summary, plot, update, etc.
1253 @item extraction functions for coefficients, scores, and loadings
1254 @item MSEP, RMSEP, and R² estimates
1255 @item multiplicative scatter correction (@dfn{MSC})
1256 @end itemize\n")
1257 (license license:gpl2)))
1258
1259 (define-public r-ps
1260 (package
1261 (name "r-ps")
1262 (version "1.3.0")
1263 (source
1264 (origin
1265 (method url-fetch)
1266 (uri (cran-uri "ps" version))
1267 (sha256
1268 (base32 "1lcq7r0q4jb8x6k023zr2ydj2dg925bqqbkhx1phpnyjrk897498"))))
1269 (build-system r-build-system)
1270 (home-page "http://ps.r-lib.org")
1271 (synopsis "List, query, and manipulate system processes")
1272 (description
1273 "The ps package implements an API to list, query, and manipulate system
1274 processes. Most of its code is based on the @code{psutil} Python package.")
1275 (license license:bsd-3)))
1276
1277 (define-public r-pkgbuild
1278 (package
1279 (name "r-pkgbuild")
1280 (version "1.0.3")
1281 (source
1282 (origin
1283 (method url-fetch)
1284 (uri (cran-uri "pkgbuild" version))
1285 (sha256
1286 (base32
1287 "0k8zwa66rm1ncx19ld5mbaxcjxkswiczpdqyssy44vl8k6scwfn9"))))
1288 (build-system r-build-system)
1289 (propagated-inputs
1290 `(("r-callr" ,r-callr)
1291 ("r-cli" ,r-cli)
1292 ("r-crayon" ,r-crayon)
1293 ("r-desc" ,r-desc)
1294 ("r-prettyunits" ,r-prettyunits)
1295 ("r-r6" ,r-r6)
1296 ("r-rprojroot" ,r-rprojroot)
1297 ("r-withr" ,r-withr)))
1298 (home-page "https://github.com/r-pkgs/pkgbuild")
1299 (synopsis "Find tools needed to build R packages")
1300 (description
1301 "This package provides functions used to build R packages. It locates
1302 compilers needed to build R packages on various platforms and ensures the PATH
1303 is configured appropriately so R can use them.")
1304 (license license:gpl3)))
1305
1306 (define-public r-pkgload
1307 (package
1308 (name "r-pkgload")
1309 (version "1.0.2")
1310 (source
1311 (origin
1312 (method url-fetch)
1313 (uri (cran-uri "pkgload" version))
1314 (sha256
1315 (base32
1316 "0z7jvharafahi2gv5547mk1n499isjzw06kfwymmxc0gd575d1ii"))))
1317 (build-system r-build-system)
1318 (propagated-inputs
1319 `(("r-desc" ,r-desc)
1320 ("r-pkgbuild" ,r-pkgbuild)
1321 ("r-rlang" ,r-rlang)
1322 ("r-rprojroot" ,r-rprojroot)
1323 ("r-rstudioapi" ,r-rstudioapi)
1324 ("r-withr" ,r-withr)))
1325 (home-page "https://github.com/r-lib/pkgload")
1326 (synopsis "Simulate package installation and attach")
1327 (description
1328 "This package simulates the process of installing a package and then
1329 attaching it. This is a key part of the @code{devtools} package as it allows
1330 you to rapidly iterate while developing a package.")
1331 (license license:gpl3)))
1332
1333 (define-public r-rcpp
1334 (package
1335 (name "r-rcpp")
1336 (version "1.0.1")
1337 (source
1338 (origin
1339 (method url-fetch)
1340 (uri (cran-uri "Rcpp" version))
1341 (sha256
1342 (base32 "015rmxns8mhmnd9wnz9bmma4iwx2sf4bcwkkp9hcgvdmblzf0vg7"))))
1343 (build-system r-build-system)
1344 (native-inputs
1345 `(("r-knitr" ,r-knitr))) ; for vignettes
1346 (home-page "http://www.rcpp.org")
1347 (synopsis "Seamless R and C++ integration")
1348 (description
1349 "The Rcpp package provides R functions as well as C++ classes which offer
1350 a seamless integration of R and C++. Many R data types and objects can be
1351 mapped back and forth to C++ equivalents which facilitates both writing of new
1352 code as well as easier integration of third-party libraries. Documentation
1353 about Rcpp is provided by several vignettes included in this package, via the
1354 @code{Rcpp Gallery} site at <http://gallery.rcpp.org>, the paper by Eddelbuettel
1355 and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see
1356 @code{citation(\"Rcpp\")} for details on these last two.")
1357 (license license:gpl2+)))
1358
1359 (define-public r-bindr
1360 (package
1361 (name "r-bindr")
1362 (version "0.1.1")
1363 (source
1364 (origin
1365 (method url-fetch)
1366 (uri (cran-uri "bindr" version))
1367 (sha256
1368 (base32
1369 "1l05fpk2yql3jka321c0bdgx6mqq9pvfrg2844lbjfpbgjkmqy3w"))))
1370 (build-system r-build-system)
1371 (home-page "https://github.com/krlmlr/bindr")
1372 (synopsis "Parametrized active bindings")
1373 (description
1374 "This package provides a simple interface for creating active bindings
1375 where the bound function accepts additional arguments.")
1376 (license license:expat)))
1377
1378 (define-public r-bindrcpp
1379 (package
1380 (name "r-bindrcpp")
1381 (version "0.2.2")
1382 (source
1383 (origin
1384 (method url-fetch)
1385 (uri (cran-uri "bindrcpp" version))
1386 (sha256
1387 (base32
1388 "0rz4ibjdjsxl99ff3ha79z7cnjmilx4rx58fk9kk7ld9xc4hf4s8"))))
1389 (build-system r-build-system)
1390 (propagated-inputs
1391 `(("r-bindr" ,r-bindr)
1392 ("r-plogr" ,r-plogr)
1393 ("r-rcpp" ,r-rcpp)))
1394 (home-page "https://github.com/krlmlr/bindrcpp")
1395 (synopsis "Rcpp interface to active bindings")
1396 (description
1397 "This package provides an easy way to fill an environment with active
1398 bindings that call a C++ function.")
1399 (license license:expat)))
1400
1401 (define-public r-auc
1402 (package
1403 (name "r-auc")
1404 (version "0.3.0")
1405 (source
1406 (origin
1407 (method url-fetch)
1408 (uri (cran-uri "AUC" version))
1409 (sha256
1410 (base32
1411 "0ripcib2qz0m7rgr1kiz68nx8f6p408l1ww7j78ljqik7p3g41g7"))))
1412 (properties `((upstream-name . "AUC")))
1413 (build-system r-build-system)
1414 (home-page "https://cran.r-project.org/web/packages/AUC")
1415 (synopsis "Compute the area under the curve of selected measures")
1416 (description
1417 "This package includes functions to compute the area under the curve of
1418 selected measures: the area under the sensitivity curve (AUSEC), the area
1419 under the specificity curve (AUSPC), the area under the accuracy
1420 curve (AUACC), and the area under the receiver operating characteristic
1421 curve (AUROC). The curves can also be visualized. Support for partial areas
1422 is provided.")
1423 (license license:gpl2+)))
1424
1425 (define-public r-calibrate
1426 (package
1427 (name "r-calibrate")
1428 (version "1.7.2")
1429 (source
1430 (origin
1431 (method url-fetch)
1432 (uri (cran-uri "calibrate" version))
1433 (sha256
1434 (base32
1435 "010nb1nb9y7zhw2k6d2i2drwy5brp7b83mjj2w7i3wjp9xb6l1kq"))))
1436 (build-system r-build-system)
1437 (propagated-inputs
1438 `(("r-mass" ,r-mass)))
1439 (home-page "https://cran.r-project.org/web/packages/calibrate")
1440 (synopsis "Calibration of scatterplot and biplot axes")
1441 (description
1442 "This is a package for drawing calibrated scales with tick marks
1443 on (non-orthogonal) variable vectors in scatterplots and biplots.")
1444 (license license:gpl2)))
1445
1446 (define-public r-shape
1447 (package
1448 (name "r-shape")
1449 (version "1.4.4")
1450 (source
1451 (origin
1452 (method url-fetch)
1453 (uri (cran-uri "shape" version))
1454 (sha256
1455 (base32
1456 "0hadk3mapkhbh8xjkiz52vxdagmmgvm15xwpzb90ikw4giyipjzl"))))
1457 (build-system r-build-system)
1458 (home-page "https://cran.r-project.org/web/packages/shape")
1459 (synopsis "Functions for plotting graphical shapes")
1460 (description
1461 "This package provides functions for plotting graphical shapes such as
1462 ellipses, circles, cylinders, arrows, ...")
1463 (license license:gpl3+)))
1464
1465 (define-public r-globaloptions
1466 (package
1467 (name "r-globaloptions")
1468 (version "0.1.0")
1469 (source
1470 (origin
1471 (method url-fetch)
1472 (uri (cran-uri "GlobalOptions" version))
1473 (sha256
1474 (base32
1475 "1wlyqz1yhmhjwslrd7q69jbd9vsbjkjfc01g60kl3cdpyr8hlyjn"))))
1476 (properties `((upstream-name . "GlobalOptions")))
1477 (build-system r-build-system)
1478 (home-page "https://github.com/jokergoo/GlobalOptions")
1479 (synopsis "Generate functions to get or set global options")
1480 (description
1481 "This package provides more controls on the option values such as
1482 validation and filtering on the values, making options invisible or private.")
1483 (license license:gpl2+)))
1484
1485 (define-public r-circlize
1486 (package
1487 (name "r-circlize")
1488 (version "0.4.6")
1489 (source
1490 (origin
1491 (method url-fetch)
1492 (uri (cran-uri "circlize" version))
1493 (sha256
1494 (base32
1495 "1yjnb88pnzk5c1p0vjxykc7cr3394ln5axviqcf12ajibvy8rj6f"))))
1496 (build-system r-build-system)
1497 (propagated-inputs
1498 `(("r-colorspace" ,r-colorspace)
1499 ("r-globaloptions" ,r-globaloptions)
1500 ("r-shape" ,r-shape)))
1501 (home-page "https://github.com/jokergoo/circlize")
1502 (synopsis "Circular visualization")
1503 (description
1504 "Circular layout is an efficient way to visualise huge amounts of
1505 information. This package provides an implementation of circular layout
1506 generation in R as well as an enhancement of available software. Its
1507 flexibility is based on the usage of low-level graphics functions such that
1508 self-defined high-level graphics can be easily implemented by users for
1509 specific purposes. Together with the seamless connection between the powerful
1510 computational and visual environment in R, it gives users more convenience and
1511 freedom to design figures for better understanding complex patterns behind
1512 multi-dimensional data.")
1513 (license license:gpl2+)))
1514
1515 (define-public r-powerlaw
1516 (package
1517 (name "r-powerlaw")
1518 (version "0.70.2")
1519 (source
1520 (origin
1521 (method url-fetch)
1522 (uri (cran-uri "poweRlaw" version))
1523 (sha256
1524 (base32
1525 "1asr6ikr7hmj78jyg8r1gwvcjg14addkxdiz92nh06lv71a183r4"))))
1526 (properties `((upstream-name . "poweRlaw")))
1527 (build-system r-build-system)
1528 (propagated-inputs
1529 `(("r-vgam" ,r-vgam)))
1530 (home-page "https://github.com/csgillespie/poweRlaw")
1531 (synopsis "Tools for the analysis of heavy tailed distributions")
1532 (description
1533 "This package provides an implementation of maximum likelihood estimators
1534 for a variety of heavy tailed distributions, including both the discrete and
1535 continuous power law distributions. Additionally, a goodness-of-fit based
1536 approach is used to estimate the lower cut-off for the scaling region.")
1537 ;; Any of these GPL versions.
1538 (license (list license:gpl2 license:gpl3))))
1539
1540 (define-public r-compare
1541 (package
1542 (name "r-compare")
1543 (version "0.2-6")
1544 (source
1545 (origin
1546 (method url-fetch)
1547 (uri (cran-uri "compare" version))
1548 (sha256
1549 (base32
1550 "0k9zms930b5dz9gy8414li21wy0zg9x9vp7301v5cvyfi0g7xzgw"))))
1551 (build-system r-build-system)
1552 (home-page "https://cran.r-project.org/web/packages/compare")
1553 (synopsis "Comparing objects for differences")
1554 (description
1555 "This package provides functions to compare a model object to a
1556 comparison object. If the objects are not identical, the functions can be
1557 instructed to explore various modifications of the objects (e.g., sorting
1558 rows, dropping names) to see if the modified versions are identical.")
1559 (license license:gpl2+)))
1560
1561 (define-public r-dendextend
1562 (package
1563 (name "r-dendextend")
1564 (version "1.10.0")
1565 (source
1566 (origin
1567 (method url-fetch)
1568 (uri (cran-uri "dendextend" version))
1569 (sha256
1570 (base32
1571 "091jznl549d44w1h8kk1vwddzhijkyh0wpgkykd494fnc8rzpw48"))))
1572 (build-system r-build-system)
1573 (propagated-inputs
1574 `(("r-fpc" ,r-fpc)
1575 ("r-ggplot2" ,r-ggplot2)
1576 ("r-magrittr" ,r-magrittr)
1577 ("r-viridis" ,r-viridis)
1578 ("r-whisker" ,r-whisker)))
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}
1583 objects in R, letting you visualize and compare trees of hierarchical
1584 clusterings. You can adjust a tree's graphical parameters (the color, size,
1585 type, etc of its branches, nodes and labels) and visually and statistically
1586 compare different dendrograms to one another.")
1587 ;; Any of these versions
1588 (license (list license:gpl2 license:gpl3))))
1589
1590 (define-public r-getoptlong
1591 (package
1592 (name "r-getoptlong")
1593 (version "0.1.7")
1594 (source
1595 (origin
1596 (method url-fetch)
1597 (uri (cran-uri "GetoptLong" version))
1598 (sha256
1599 (base32
1600 "1fl3w2n602ldybc5qj7qw4xmzzb804bsjkqwf6dswzj0vf0qiadr"))))
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
1612 powerful Perl module @code{Getopt::Long} and with some adaptation for easier
1613 use in R. It also provides a simple way for variable interpolation in R.")
1614 (license license:gpl2+)))
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
1632 require 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
1634 any subsequent lookup as it keeps the hash table in memory.")
1635 (license license:gpl2)))
1636
1637 (define-public r-ff
1638 (package
1639 (name "r-ff")
1640 (version "2.2-14")
1641 (source
1642 (origin
1643 (method url-fetch)
1644 (uri (cran-uri "ff" version))
1645 (sha256
1646 (base32
1647 "1w724q4jpzbvzpilb2ifviaxkjgk9lzwxz9gksnvicbmfa20fqqw"))))
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
1654 behave (almost) as if they were in RAM by transparently mapping only a section
1655 in main memory.")
1656 ;; error Architecture not supported.
1657 (supported-systems (delete "aarch64-linux" %supported-systems))
1658 (license license:gpl2)))
1659
1660 (define-public r-ffbase
1661 (package
1662 (name "r-ffbase")
1663 (version "0.12.7")
1664 (source
1665 (origin
1666 (method url-fetch)
1667 (uri (cran-uri "ffbase" version))
1668 (sha256
1669 (base32
1670 "04kxx2f3f0743c5nvpb7x1x0pcd220dazpd5ag1pidxbz3xa85nw"))))
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
1680 statistical functions and other utilities to ease their usage.")
1681 (license license:gpl3)))
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
1702 quantities.")
1703 (license license:expat)))
1704
1705 (define-public r-reshape
1706 (package
1707 (name "r-reshape")
1708 (version "0.8.8")
1709 (source
1710 (origin
1711 (method url-fetch)
1712 (uri (cran-uri "reshape" version))
1713 (sha256
1714 (base32
1715 "0s6i0sqxg1vldxs6miv8mi0zydxbqzgpmzfiwkj8y7jix3yrfmad"))))
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)))
1726
1727 (define-public r-progress
1728 (package
1729 (name "r-progress")
1730 (version "1.2.0")
1731 (source
1732 (origin
1733 (method url-fetch)
1734 (uri (cran-uri "progress" version))
1735 (sha256
1736 (base32
1737 "1rhwm0bdw30z3rvl0bn56xprjl3zrdy7150w4gl4bkvn2d6h9fav"))))
1738 (build-system r-build-system)
1739 (propagated-inputs
1740 `(("r-crayon" ,r-crayon)
1741 ("r-hms" ,r-hms)
1742 ("r-prettyunits" ,r-prettyunits)
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
1748 percentage, elapsed time, and/or the estimated completion time. They work in
1749 terminals, in Emacs ESS, RStudio, Windows Rgui, and the macOS R.app. The
1750 package also provides a C++ API, that works with or without Rcpp.")
1751 (license license:expat)))
1752
1753 (define-public r-ggally
1754 (package
1755 (name "r-ggally")
1756 (version "1.4.0")
1757 (source
1758 (origin
1759 (method url-fetch)
1760 (uri (cran-uri "GGally" version))
1761 (sha256
1762 (base32
1763 "1zjmcc5bzagvy7c5cmdcl39xmx07fwi98yrj4i05w7y40kqcsiws"))))
1764 (properties `((upstream-name . "GGally")))
1765 (build-system r-build-system)
1766 (inputs
1767 `(("libressl" ,libressl)))
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)
1774 ("r-reshape" ,r-reshape)
1775 ("r-rlang" ,r-rlang)))
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
1780 graphics. GGally extends ggplot2 by adding several functions to reduce the
1781 complexity of combining geometric objects with transformed data. Some of
1782 these functions include a pairwise plot matrix, a two group pairwise plot
1783 matrix, a parallel coordinates plot, a survival plot, and several functions to
1784 plot networks.")
1785 (license license:gpl2+)))
1786
1787 (define-public r-proxy
1788 (package
1789 (name "r-proxy")
1790 (version "0.4-23")
1791 (source
1792 (origin
1793 (method url-fetch)
1794 (uri (cran-uri "proxy" version))
1795 (sha256
1796 (base32
1797 "17b6qfllqrhzrxqgx7dccffgybnkcria5a68ap5ly3plg04ypm4x"))))
1798 (build-system r-build-system)
1799 (home-page "https://cran.r-project.org/web/packages/proxy")
1800 (synopsis "Distance and similarity measures")
1801 (description
1802 "This package provides an extensible framework for the efficient
1803 calculation of auto- and cross-proximities, along with implementations of the
1804 most popular ones.")
1805 (license license:gpl2)))
1806
1807 (define-public r-sp
1808 (package
1809 (name "r-sp")
1810 (version "1.3-1")
1811 (source
1812 (origin
1813 (method url-fetch)
1814 (uri (cran-uri "sp" version))
1815 (sha256
1816 (base32
1817 "17xm1ig80p9wc860hm3bgishz6lj9fxgwqidj7rkbk4ap99qp62p"))))
1818 (build-system r-build-system)
1819 (propagated-inputs
1820 `(("r-lattice" ,r-lattice)))
1821 (home-page "https://cran.r-project.org/web/packages/sp")
1822 (synopsis "Classes and methods for spatial data")
1823 (description
1824 "This package provides classes and methods for spatial data; the classes
1825 document where the spatial location information resides, for 2D or 3D data.
1826 Utility functions are provided, e.g. for plotting data as maps, spatial
1827 selection, as well as methods for retrieving coordinates, for subsetting,
1828 print, summary, etc.")
1829 (license license:gpl2+)))
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)
1844 (home-page "https://cran.r-project.org/web/packages/RMTstat")
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
1848 and other distributions related to the eigenvalues of large Wishart
1849 matrices.")
1850 (license license:bsd-3)))
1851
1852 (define-public r-rmpi
1853 (package
1854 (name "r-rmpi")
1855 (version "0.6-9")
1856 (source (origin
1857 (method url-fetch)
1858 (uri (cran-uri "Rmpi" version))
1859 (sha256
1860 (base32
1861 "1rhycla98hxgnnxlxxldr1x51djak7c2jjvlrv3jcsvgwp1ymqdj"))))
1862 (properties `((upstream-name . "Rmpi")))
1863 (build-system r-build-system)
1864 (arguments
1865 `(#:configure-flags '("--configure-args=\"--with-Rmpi-type=OPENMPI\"")
1866 #:phases (modify-phases %standard-phases
1867 (add-before 'install 'mpi-setup
1868 ,%openmpi-setup))))
1869 (inputs
1870 `(("openmpi" ,openmpi)))
1871 (native-inputs
1872 `(("pkg-config" ,pkg-config)))
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
1877 provides an interactive R manager and worker environment.")
1878 (license license:gpl2+)))
1879
1880 (define-public r-lmoments
1881 (package
1882 (name "r-lmoments")
1883 (version "1.3-1")
1884 (source
1885 (origin
1886 (method url-fetch)
1887 (uri (cran-uri "Lmoments" version))
1888 (sha256
1889 (base32
1890 "0pc63bj9a8hzr5m3yssrc4kin39fffwkl8rggs3sagzr12d4i7bw"))))
1891 (properties `((upstream-name . "Lmoments")))
1892 (build-system r-build-system)
1893 (propagated-inputs
1894 `(("r-rcpp" ,r-rcpp)
1895 ("r-rcpparmadillo" ,r-rcpparmadillo)))
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
1900 L-moments from the data. It also contains functions to estimate the
1901 parameters of the normal polynomial quantile mixture and the Cauchy polynomial
1902 quantile mixture from L-moments and trimmed L-moments.")
1903 (license license:gpl2)))
1904
1905 (define-public r-distillery
1906 (package
1907 (name "r-distillery")
1908 (version "1.0-6")
1909 (source
1910 (origin
1911 (method url-fetch)
1912 (uri (cran-uri "distillery" version))
1913 (sha256
1914 (base32
1915 "1mi3ig9jq0kd7yrwc5m37lmrw04p1b4lirnbsxi10z3n5yay4429"))))
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
1921 interval calculation and to distill pertinent information from a potentially
1922 complex object; primarily used in common with the packages extRemes and
1923 SpatialVx.")
1924 (license license:gpl2+)))
1925
1926 (define-public r-extremes
1927 (package
1928 (name "r-extremes")
1929 (version "2.0-10")
1930 (source
1931 (origin
1932 (method url-fetch)
1933 (uri (cran-uri "extRemes" version))
1934 (sha256
1935 (base32
1936 "08fj72gpq2d6695hbm3cgwgal64z009ykrirby7g6r0akfcsx5ic"))))
1937 (properties `((upstream-name . "extRemes")))
1938 (build-system r-build-system)
1939 (propagated-inputs
1940 `(("r-distillery" ,r-distillery)
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
1946 extreme values of a process of interest; be they block maxima over long blocks
1947 or excesses over a high threshold.")
1948 (license license:gpl2+)))
1949
1950 (define-public r-lmtest
1951 (package
1952 (name "r-lmtest")
1953 (version "0.9-37")
1954 (source
1955 (origin
1956 (method url-fetch)
1957 (uri (cran-uri "lmtest" version))
1958 (sha256
1959 (base32
1960 "02nasm0j2vwkhz11dxqixs23msy1s3yj0jps6949fmgh9gwjkjfx"))))
1961 (build-system r-build-system)
1962 (propagated-inputs
1963 `(("r-zoo" ,r-zoo)))
1964 (native-inputs
1965 `(("gfortran" ,gfortran)))
1966 (home-page "https://cran.r-project.org/web/packages/lmtest")
1967 (synopsis "Testing linear regression models")
1968 (description
1969 "This package provides a collection of tests, data sets, and examples for
1970 diagnostic checking in linear regression models. Furthermore, some generic
1971 tools for inference in parametric models are provided.")
1972 ;; Either version is okay
1973 (license (list license:gpl2 license:gpl3))))
1974
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
1990 correspondence curves in \"Measuring reproducibility of high-throughput
1991 experiments\" (2011), Annals of Applied Statistics, Vol. 5, No. 3, 1752-1779,
1992 by Li, Brown, Huang, and Bickel")
1993 (license license:gpl2+)))
1994
1995 (define-public r-inline
1996 (package
1997 (name "r-inline")
1998 (version "0.3.15")
1999 (source (origin
2000 (method url-fetch)
2001 (uri (cran-uri "inline" version))
2002 (sha256
2003 (base32
2004 "0s4wssvpan189fijahknxq5s22ww9bzmdlmyhnra748r7khky17z"))))
2005 (build-system r-build-system)
2006 (home-page "https://cran.r-project.org/web/packages/inline")
2007 (synopsis "Functions to inline C, C++, Fortran function calls from R")
2008 (description
2009 "This package provides functionality to dynamically define R functions
2010 and 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+)))
2014
2015 (define-public r-bbmle
2016 (package
2017 (name "r-bbmle")
2018 (version "1.0.20")
2019 (source
2020 (origin
2021 (method url-fetch)
2022 (uri (cran-uri "bbmle" version))
2023 (sha256
2024 (base32
2025 "1xzij7swrrzl5ly8l3lw6awh486zcm00251dwqws1y23fbgyh3vc"))))
2026 (build-system r-build-system)
2027 (propagated-inputs
2028 `(("r-lattice" ,r-lattice)
2029 ("r-mass" ,r-mass)
2030 ("r-numderiv" ,r-numderiv)))
2031 (home-page "https://cran.r-project.org/web/packages/bbmle")
2032 (synopsis "Tools for General Maximum Likelihood Estimation")
2033 (description
2034 "This package provides methods and functions for fitting maximum
2035 likelihood models in R. This package modifies and extends the @code{mle}
2036 classes in the @code{stats4} package.")
2037 ;; Any version of the GPL
2038 (license license:gpl2+)))
2039
2040 (define-public r-emdbook
2041 (package
2042 (name "r-emdbook")
2043 (version "1.3.11")
2044 (source
2045 (origin
2046 (method url-fetch)
2047 (uri (cran-uri "emdbook" version))
2048 (sha256
2049 (base32
2050 "0a515jdzvg87npvrh7md7zp0v5nlz7c2jr7pba5dql6slb0d8j7q"))))
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
2063 Models and Data\", a book presenting maximum likelihood estimation and related
2064 topics for ecologists (ISBN 978-0-691-12522-0).")
2065 ;; Any GPL version
2066 (license (list license:gpl2 license:gpl3))))
2067
2068 (define-public r-lpsolve
2069 (package
2070 (name "r-lpsolve")
2071 (version "5.6.13")
2072 (source
2073 (origin
2074 (method url-fetch)
2075 (uri (cran-uri "lpSolve" version))
2076 (sha256
2077 (base32
2078 "13a9ry8xf5j1f2j6imqrxdgxqz3nqp9sj9b4ivyx9sid459irm6m"))))
2079 (properties `((upstream-name . "lpSolve")))
2080 (build-system r-build-system)
2081 (home-page "https://cran.r-project.org/web/packages/lpSolve")
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
2085 programs. This implementation supplies a \"wrapper\" function in C and some R
2086 functions that solve general linear/integer problems, assignment problems, and
2087 transportation problems.")
2088 (license license:lgpl2.0)))
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)))
2108 (home-page "https://cran.r-project.org/web/packages/limSolve")
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
2119 It includes banded and tridiagonal linear systems. The package calls Fortran
2120 functions from LINPACK.")
2121 ;; Any GPL version.
2122 (license (list license:gpl2+ license:gpl3+))))
2123
2124 (define-public r-fitdistrplus
2125 (package
2126 (name "r-fitdistrplus")
2127 (version "1.0-14")
2128 (source
2129 (origin
2130 (method url-fetch)
2131 (uri (cran-uri "fitdistrplus" version))
2132 (sha256
2133 (base32
2134 "10q08wsv8v3w7797jdvvv60bgrf1bi6438wf0jcqv81ays82a245"))))
2135 (build-system r-build-system)
2136 (propagated-inputs
2137 `(("r-mass" ,r-mass)
2138 ("r-npsurv" ,r-npsurv)
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
2144 with several functions to help the fit of a parametric distribution to
2145 non-censored or censored data. Censored data may contain left-censored,
2146 right-censored and interval-censored values, with several lower and upper
2147 bounds. In addition to @dfn{maximum likelihood estimation} (MLE), the package
2148 provides moment matching (MME), quantile matching (QME) and maximum
2149 goodness-of-fit estimation (MGE) methods (available only for non-censored
2150 data). Weighted versions of MLE, MME and QME are available.")
2151 (license license:gpl2+)))
2152
2153 (define-public r-energy
2154 (package
2155 (name "r-energy")
2156 (version "1.7-5")
2157 (source
2158 (origin
2159 (method url-fetch)
2160 (uri (cran-uri "energy" version))
2161 (sha256
2162 (base32
2163 "15k9dg0a82cs9ypm0wpcsff3il1hzhnnv86dv5ngby1r144czhi4"))))
2164 (build-system r-build-system)
2165 (propagated-inputs
2166 `(("r-boot" ,r-boot)
2167 ("r-rcpp" ,r-rcpp)))
2168 (home-page "https://cran.r-project.org/web/packages/energy")
2169 (synopsis "Multivariate inference via the energy of data")
2170 (description
2171 "This package provides e-statistics (energy) tests and statistics for
2172 multivariate and univariate inference, including distance correlation,
2173 one-sample, two-sample, and multi-sample tests for comparing multivariate
2174 distributions, are implemented. Measuring and testing multivariate
2175 independence based on distance correlation, partial distance correlation,
2176 multivariate goodness-of-fit tests, clustering based on energy distance,
2177 testing for multivariate normality, distance components (disco) for
2178 non-parametric analysis of structured data, and other energy
2179 statistics/methods are implemented.")
2180 (license license:gpl2+)))
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)
2195 (home-page "https://cran.r-project.org/web/packages/SuppDists")
2196 (synopsis "Supplementary distributions")
2197 (description
2198 "This package provides ten distributions supplementing those built into
2199 R. Inverse Gauss, Kruskal-Wallis, Kendall's Tau, Friedman's chi squared,
2200 Spearman's rho, maximum F ratio, the Pearson product moment correlation
2201 coefficient, Johnson distributions, normal scores and generalized
2202 hypergeometric distributions. In addition two random number generators of
2203 George Marsaglia are included.")
2204 (license license:gpl2+)))
2205
2206 (define-public r-ksamples
2207 (package
2208 (name "r-ksamples")
2209 (version "1.2-8")
2210 (source
2211 (origin
2212 (method url-fetch)
2213 (uri (cran-uri "kSamples" version))
2214 (sha256
2215 (base32
2216 "15d5q5vpp4wx5rk5kjxjdxpwc8mkq5sbdz8gi07iscrvhzb5rzfr"))))
2217 (properties `((upstream-name . "kSamples")))
2218 (build-system r-build-system)
2219 (propagated-inputs
2220 `(("r-suppdists" ,r-suppdists)))
2221 (home-page "https://cran.r-project.org/web/packages/kSamples")
2222 (synopsis "K-Sample rank tests and their combinations")
2223 (description
2224 "This package provides tools to compares k samples using the
2225 Anderson-Darling test, Kruskal-Wallis type tests with different rank score
2226 criteria, Steel's multiple comparison test, and the Jonckheere-Terpstra (JT)
2227 test. It computes asymptotic, simulated or (limited) exact P-values, all
2228 valid under randomization, with or without ties, or conditionally under random
2229 sampling from populations, given the observed tie pattern. Except for Steel's
2230 test and the JT test it also combines these tests across several blocks of
2231 samples.")
2232 (license license:gpl2+)))
2233
2234 (define-public r-cvst
2235 (package
2236 (name "r-cvst")
2237 (version "0.2-2")
2238 (source
2239 (origin
2240 (method url-fetch)
2241 (uri (cran-uri "CVST" version))
2242 (sha256
2243 (base32
2244 "05l3yzkfrbds09ah9cdwn2sn4ryhq78lz33ryzrgkv176jc8qjw5"))))
2245 (properties `((upstream-name . "CVST")))
2246 (build-system r-build-system)
2247 (propagated-inputs
2248 `(("r-kernlab" ,r-kernlab)
2249 ("r-matrix" ,r-matrix)))
2250 (home-page "https://cran.r-project.org/web/packages/CVST")
2251 (synopsis "Fast cross-validation via sequential testing")
2252 (description
2253 "This package implements the fast cross-validation via sequential
2254 testing (CVST) procedure. CVST is an improved cross-validation procedure
2255 which uses non-parametric testing coupled with sequential analysis to
2256 determine the best parameter set on linearly increasing subsets of the data.
2257 Additionally to the CVST the package contains an implementation of the
2258 ordinary k-fold cross-validation with a flexible and powerful set of helper
2259 objects and methods to handle the overall model selection process. The
2260 implementations of the Cochran's Q test with permutations and the sequential
2261 testing framework of Wald are generic and can therefore also be used in other
2262 contexts.")
2263 (license license:gpl2+)))
2264
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
2282 slow, monotone sequences from smooth, contraction mapping such as the EM
2283 algorithm. It can be used to accelerate any smooth, linearly convergent
2284 acceleration scheme. A tutorial style introduction to this package is
2285 available in a vignette.")
2286 (license license:gpl2+)))
2287
2288 (define-public r-lava
2289 (package
2290 (name "r-lava")
2291 (version "1.6.5")
2292 (source
2293 (origin
2294 (method url-fetch)
2295 (uri (cran-uri "lava" version))
2296 (sha256
2297 (base32
2298 "13rlqdg42ylnz4hc932bl50xismrcr4d9ykcd9zs19cw5mckjx0f"))))
2299 (build-system r-build-system)
2300 (propagated-inputs
2301 `(("r-numderiv" ,r-numderiv)
2302 ("r-squarem" ,r-squarem)
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
2308 variable models.")
2309 (license license:gpl3)))
2310
2311 (define-public r-drr
2312 (package
2313 (name "r-drr")
2314 (version "0.0.3")
2315 (source
2316 (origin
2317 (method url-fetch)
2318 (uri (cran-uri "DRR" version))
2319 (sha256
2320 (base32
2321 "1yd1fvllfkcrwg9v322n4wkk4q4q84nvy58y4vac9pdr3yf3i4vl"))))
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)))
2328 (home-page "https://cran.r-project.org/web/packages/DRR")
2329 (synopsis "Dimensionality reduction via regression")
2330 (description
2331 "This package provides an implementation of dimensionality reduction via
2332 regression using Kernel Ridge Regression.")
2333 (license license:gpl3)))
2334
2335 (define-public r-prodlim
2336 (package
2337 (name "r-prodlim")
2338 (version "2018.04.18")
2339 (source
2340 (origin
2341 (method url-fetch)
2342 (uri (cran-uri "prodlim" version))
2343 (sha256
2344 (base32
2345 "1aslq87sqwikh8chxc378r38146y7kv79zz0kcq3j93ivx7va8jb"))))
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)))
2352 (home-page "https://cran.r-project.org/web/packages/prodlim")
2353 (synopsis "Product-limit estimation for censored event history analysis")
2354 (description
2355 "This package provides a fast and user-friendly implementation of
2356 nonparametric estimators for censored event history (survival) analysis with
2357 the Kaplan-Meier and Aalen-Johansen methods.")
2358 (license license:gpl2+)))
2359
2360 (define-public r-dimred
2361 (package
2362 (name "r-dimred")
2363 (version "0.2.2")
2364 (source
2365 (origin
2366 (method url-fetch)
2367 (uri (cran-uri "dimRed" version))
2368 (sha256
2369 (base32
2370 "0ssy2qriiy6zdawriqcbl67qiq68ipml3frq7aqlq70r2fqyyw48"))))
2371 (properties `((upstream-name . "dimRed")))
2372 (build-system r-build-system)
2373 (propagated-inputs
2374 `(("r-drr" ,r-drr)
2375 ("r-magrittr" ,r-magrittr)))
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
2380 techniques from R packages and provides a common interface for calling the
2381 methods.")
2382 (license license:gpl3)))
2383
2384 (define-public r-timedate
2385 (package
2386 (name "r-timedate")
2387 (version "3043.102")
2388 (source
2389 (origin
2390 (method url-fetch)
2391 (uri (cran-uri "timeDate" version))
2392 (sha256
2393 (base32
2394 "0wvl5pq261rvbgly7vilk3x3m9xk3ly6il1i5scwdf6srl1vlz1p"))))
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
2401 Engineering and Computational Finance\" and for managing chronological and
2402 calendar objects.")
2403 (license license:gpl2+)))
2404
2405 (define-public r-magic
2406 (package
2407 (name "r-magic")
2408 (version "1.5-9")
2409 (source
2410 (origin
2411 (method url-fetch)
2412 (uri (cran-uri "magic" version))
2413 (sha256
2414 (base32
2415 "0snmdh6vk0p6ar1swsihisinxrx7l8371dri5lk0z24ysgr5w7gs"))))
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
2423 for the creation and investigation of magic squares and hypercubes, including
2424 a variety of functions for the manipulation and analysis of arbitrarily
2425 dimensioned arrays.")
2426 (license license:gpl2)))
2427
2428 (define-public r-rmysql
2429 (package
2430 (name "r-rmysql")
2431 (version "0.10.17")
2432 (source
2433 (origin
2434 (method url-fetch)
2435 (uri (cran-uri "RMySQL" version))
2436 (sha256
2437 (base32
2438 "1xamf99ih44dvaxg5x4ivj0hkqssmabgqd7gh8b8q1srw7yg8kbm"))))
2439 (properties `((upstream-name . "RMySQL")))
2440 (build-system r-build-system)
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
2450 package contains an old implementation based on legacy code from S-PLUS which
2451 is being phased out. A modern MySQL client based on Rcpp is available from
2452 the RMariaDB package.")
2453 (license license:gpl2)))
2454
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
2476 to 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
2481 (define-public r-geometry
2482 (package
2483 (name "r-geometry")
2484 (version "0.4.1")
2485 (source
2486 (origin
2487 (method url-fetch)
2488 (uri (cran-uri "geometry" version))
2489 (sha256
2490 (base32
2491 "0v3ivaw8vbjyxg08dd573qk3kqfyknj5hli9503dza6p6xz0dzmm"))))
2492 (build-system r-build-system)
2493 (propagated-inputs
2494 `(("r-magic" ,r-magic)
2495 ("r-lpsolve" ,r-lpsolve)
2496 ("r-rcpp" ,r-rcpp)
2497 ("r-rcppprogress" ,r-rcppprogress)))
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
2502 as in Octave. Qhull computes convex hulls, Delaunay triangulations, halfspace
2503 intersections about a point, Voronoi diagrams, furthest-site Delaunay
2504 triangulations, and furthest-site Voronoi diagrams. It runs in 2-d, 3-d, 4-d,
2505 and higher dimensions. It implements the Quickhull algorithm for computing
2506 the convex hull. Qhull does not support constrained Delaunay triangulations,
2507 or mesh generation of non-convex objects, but the package does include some R
2508 functions that allow for this. Currently the package only gives access to
2509 Delaunay 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
2515 (define-public r-ddalpha
2516 (package
2517 (name "r-ddalpha")
2518 (version "1.3.9")
2519 (source
2520 (origin
2521 (method url-fetch)
2522 (uri (cran-uri "ddalpha" version))
2523 (sha256
2524 (base32
2525 "1vzs0cvl6xw3h9i00rg3hs02xwgxcnh8326y10kxmhs3qq4m7nb2"))))
2526 (build-system r-build-system)
2527 (propagated-inputs
2528 `(("r-bh" ,r-bh)
2529 ("r-class" ,r-class)
2530 ("r-geometry" ,r-geometry)
2531 ("r-mass" ,r-mass)
2532 ("r-rcpp" ,r-rcpp)
2533 ("r-robustbase" ,r-robustbase)
2534 ("r-sfsmisc" ,r-sfsmisc)))
2535 (native-inputs
2536 `(("gfortran" ,gfortran)))
2537 (home-page "https://cran.r-project.org/web/packages/ddalpha")
2538 (synopsis "Depth-Based classification and calculation of data depth")
2539 (description
2540 "This package contains procedures for depth-based supervised learning,
2541 which are entirely non-parametric, in particular the DDalpha-procedure (Lange,
2542 Mosler and Mozharovskyi, 2014). The training data sample is transformed by a
2543 statistical depth function to a compact low-dimensional space, where the final
2544 classification is done. It also offers an extension to functional data and
2545 routines for calculating certain notions of statistical depth functions. 50
2546 multivariate and 5 functional classification problems are included.")
2547 (license license:gpl2)))
2548
2549 (define-public r-gower
2550 (package
2551 (name "r-gower")
2552 (version "0.2.0")
2553 (source
2554 (origin
2555 (method url-fetch)
2556 (uri (cran-uri "gower" version))
2557 (sha256
2558 (base32
2559 "0x16k0nixgbayh3g4didacn0gmnl5fdfxa0l323phphmimyj49zl"))))
2560 (build-system r-build-system)
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)
2565 coefficient between records, and to compute the top-n matches between records.
2566 Core algorithms are executed in parallel on systems supporting OpenMP.")
2567 (license license:gpl3)))
2568
2569 (define-public r-rcpproll
2570 (package
2571 (name "r-rcpproll")
2572 (version "0.3.0")
2573 (source
2574 (origin
2575 (method url-fetch)
2576 (uri (cran-uri "RcppRoll" version))
2577 (sha256
2578 (base32
2579 "0srzfhzkk42kzrdjnhbb37946jp1p688rgysy6k3i2is8jb21zyb"))))
2580 (properties `((upstream-name . "RcppRoll")))
2581 (build-system r-build-system)
2582 (propagated-inputs
2583 `(("r-rcpp" ,r-rcpp)))
2584 (home-page "https://cran.r-project.org/web/packages/RcppRoll")
2585 (synopsis "Efficient rolling and windowed operations")
2586 (description
2587 "This package provides fast and efficient routines for common rolling /
2588 windowed operations. Routines for the efficient computation of windowed mean,
2589 median, sum, product, minimum, maximum, standard deviation and variance are
2590 provided.")
2591 (license license:gpl2+)))
2592
2593 (define-public r-ipred
2594 (package
2595 (name "r-ipred")
2596 (version "0.9-9")
2597 (source
2598 (origin
2599 (method url-fetch)
2600 (uri (cran-uri "ipred" version))
2601 (sha256
2602 (base32
2603 "0vs1hqfx7yd0xdbmfsf2gim7spkni0845cj6gswn0nhdfdq7ma0d"))))
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)))
2612 (home-page "https://cran.r-project.org/web/packages/ipred")
2613 (synopsis "Improved predictors")
2614 (description
2615 "This package provides improved predictive models by indirect
2616 classification and bagging for classification, regression and survival
2617 problems as well as resampling based estimators of prediction error.")
2618 (license license:gpl2+)))
2619
2620 (define-public r-psych
2621 (package
2622 (name "r-psych")
2623 (version "1.8.12")
2624 (source
2625 (origin
2626 (method url-fetch)
2627 (uri (cran-uri "psych" version))
2628 (sha256
2629 (base32
2630 "0hvp0dkkkn0szaf5rkirr3kb8qmr4bxwl775m5wmpvn1kc25w5vf"))))
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)))
2637 (home-page "https://cran.r-project.org/web/packages/psych/")
2638 (synopsis "Procedures for psychological, psychometric, and personality research")
2639 (description
2640 "This package provides a general purpose toolbox for personality,
2641 psychometric theory and experimental psychology. Functions are primarily for
2642 multivariate analysis and scale construction using factor analysis, principal
2643 component analysis, cluster analysis and reliability analysis, although others
2644 provide basic descriptive statistics. Item Response Theory is done using
2645 factor analysis of tetrachoric and polychoric correlations. Functions for
2646 analyzing data at multiple levels include within and between group statistics,
2647 including correlations and factor analysis. Functions for simulating and
2648 testing particular item and test structures are included. Several functions
2649 serve as a useful front end for structural equation modeling. Graphical
2650 displays of path diagrams, factor analysis and structural equation models are
2651 created using basic graphics.")
2652 (license license:gpl2+)))
2653
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,
2670 generics provides a number of commonly used S3 generics that are not provided
2671 by base R methods related to model fitting.")
2672 (license license:gpl2)))
2673
2674 (define-public r-broom
2675 (package
2676 (name "r-broom")
2677 (version "0.5.2")
2678 (source
2679 (origin
2680 (method url-fetch)
2681 (uri (cran-uri "broom" version))
2682 (sha256
2683 (base32
2684 "0qmclih5dm5sqzy4hplcfy677kr12pm9pnpv3r319g14dd27pbqn"))))
2685 (build-system r-build-system)
2686 (propagated-inputs
2687 `(("r-backports" ,r-backports)
2688 ("r-dplyr" ,r-dplyr)
2689 ("r-generics" ,r-generics)
2690 ("r-nlme" ,r-nlme)
2691 ("r-purrr" ,r-purrr)
2692 ("r-reshape2" ,r-reshape2)
2693 ("r-stringr" ,r-stringr)
2694 ("r-tibble" ,r-tibble)
2695 ("r-tidyr" ,r-tidyr)))
2696 (home-page "https://github.com/tidyverse/broom")
2697 (synopsis "Convert statistical analysis objects into tidy data frames")
2698 (description
2699 "This package provides tools to convert statistical analysis objects from
2700 R into tidy data frames, so that they can more easily be combined, reshaped
2701 and otherwise processed with tools like @code{dplyr}, @code{tidyr} and
2702 @code{ggplot2}. The package provides three S3 generics: @code{tidy}, which
2703 summarizes a model's statistical findings such as coefficients of a
2704 regression; @code{augment}, which adds columns to the original data such as
2705 predictions, residuals and cluster assignments; and @code{glance}, which
2706 provides a one-row summary of model-level statistics.")
2707 (license license:expat)))
2708
2709 (define-public r-recipes
2710 (package
2711 (name "r-recipes")
2712 (version "0.1.5")
2713 (source
2714 (origin
2715 (method url-fetch)
2716 (uri (cran-uri "recipes" version))
2717 (sha256
2718 (base32
2719 "056zv4vhayyy8q9izcdknbb9hff2gxivg21g5mkssia78vw8g3mg"))))
2720 (build-system r-build-system)
2721 (propagated-inputs
2722 `(("r-dplyr" ,r-dplyr)
2723 ("r-generics" ,r-generics)
2724 ("r-glue" ,r-glue)
2725 ("r-gower" ,r-gower)
2726 ("r-ipred" ,r-ipred)
2727 ("r-lubridate" ,r-lubridate)
2728 ("r-magrittr" ,r-magrittr)
2729 ("r-matrix" ,r-matrix)
2730 ("r-purrr" ,r-purrr)
2731 ("r-rcpproll" ,r-rcpproll)
2732 ("r-rlang" ,r-rlang)
2733 ("r-tibble" ,r-tibble)
2734 ("r-tidyr" ,r-tidyr)
2735 ("r-tidyselect" ,r-tidyselect)
2736 ("r-timedate" ,r-timedate)
2737 ("r-withr" ,r-withr)))
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
2742 matrices. Recipes consist of one or more data manipulation and analysis
2743 \"steps\". Statistical parameters for the steps can be estimated from an
2744 initial data set and then applied to other data sets. The resulting design
2745 matrices can then be used as inputs into statistical or machine learning
2746 models.")
2747 (license license:gpl2)))
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
2765 rows of another matrix Y. Previously, this could be done by binding the two
2766 matrices together and calling @code{dist}, but this creates unnecessary
2767 computation by computing the distances between a row of X and another row of
2768 X, and likewise for Y. Pdist strictly computes distances across the two
2769 matrices, not within the same matrix, making computations significantly faster
2770 for certain use cases.")
2771 (license license:gpl3+)))
2772
2773 (define-public r-ggrepel
2774 (package
2775 (name "r-ggrepel")
2776 (version "0.8.0")
2777 (source
2778 (origin
2779 (method url-fetch)
2780 (uri (cran-uri "ggrepel" version))
2781 (sha256
2782 (base32
2783 "1m3p84d6nh9mzzvxb82vgig3ngcvkz86rjwzl9a66ckdf5p611k3"))))
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
2793 avoid overlapping text labels. Labels repel away from each other and away
2794 from the data points.")
2795 (license license:gpl3)))
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
2813 general matrix. It also contains some algorithms to do matrix reordering. In
2814 addition, corrplot is good at details, including choosing color, text labels,
2815 color labels, layout, etc.")
2816 ;; Any version of the GPL
2817 (license license:gpl2+)))
2818
2819 (define-public r-stringdist
2820 (package
2821 (name "r-stringdist")
2822 (version "0.9.5.1")
2823 (source
2824 (origin
2825 (method url-fetch)
2826 (uri (cran-uri "stringdist" version))
2827 (sha256
2828 (base32
2829 "0gap1g9xwhp0zxqsznkc2carpvi80z03prr4q8m528684lznx2xa"))))
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
2835 native @code{match} function. It can calculate various string distances based
2836 on edits (Damerau-Levenshtein, Hamming, Levenshtein, optimal sting alignment),
2837 qgrams (q- gram, cosine, jaccard distance) or heuristic metrics (Jaro,
2838 Jaro-Winkler). An implementation of soundex is provided as well. Distances
2839 can be computed between character vectors while taking proper care of encoding
2840 or between integer vectors representing generic sequences.")
2841 (license license:gpl3+)))
2842
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
2860 general-purpose unconstrained non-linear optimization. The algorithm is of
2861 quasi-Newton type with BFGS updating of the inverse Hessian and soft line
2862 search with a trust region type monitoring of the input to the line search
2863 algorithm. The interface of @code{ucminf} is designed for easy interchange
2864 with the package @code{optim}.")
2865 (license license:gpl2+)))
2866
2867 (define-public r-ordinal
2868 (package
2869 (name "r-ordinal")
2870 (version "2019.4-25")
2871 (source
2872 (origin
2873 (method url-fetch)
2874 (uri (cran-uri "ordinal" version))
2875 (sha256
2876 (base32
2877 "1pvrkly4x12w32n7w1qljdwzqnlkv7rfa7rx0nz5vbiw29xas4i8"))))
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)
2888 models also known as ordered regression models, proportional odds models,
2889 proportional hazards models for grouped survival times and ordered models.
2890 Estimation is via maximum likelihood and mixed models are fitted with the
2891 Laplace approximation and adaptive Gauss-Hermite quadrature.")
2892 (license license:gpl2+)))
2893
2894 (define-public r-jomo
2895 (package
2896 (name "r-jomo")
2897 (version "2.6-7")
2898 (source
2899 (origin
2900 (method url-fetch)
2901 (uri (cran-uri "jomo" version))
2902 (sha256
2903 (base32
2904 "0lyvi32aikkvwdj0y2hc13kmmi0cw1icg8z9lcw10l8326sxm0vf"))))
2905 (build-system r-build-system)
2906 (propagated-inputs
2907 `(("r-lme4" ,r-lme4)
2908 ("r-mass" ,r-mass)
2909 ("r-ordinal" ,r-ordinal)
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
2915 joint modelling multiple imputation @url{Carpenter and Kenward (2013),
2916 http://doi.org/10.1002/9781119942283}. Novel aspects of jomo are the
2917 possibility of handling binary and categorical data through latent normal
2918 variables, the option to use cluster-specific covariance matrices and to
2919 impute compatibly with the substantive model.")
2920 (license license:gpl2)))
2921
2922 (define-public r-pan
2923 (package
2924 (name "r-pan")
2925 (version "1.6")
2926 (source
2927 (origin
2928 (method url-fetch)
2929 (uri (cran-uri "pan" version))
2930 (sha256
2931 (base32
2932 "1dk3jjj826p7xrz10qz04vyc068xnypg7bp0pj4c32z3da0xzh5d"))))
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
2939 clustered data.")
2940 (license license:gpl3)))
2941
2942 (define-public r-mitml
2943 (package
2944 (name "r-mitml")
2945 (version "0.3-7")
2946 (source
2947 (origin
2948 (method url-fetch)
2949 (uri (cran-uri "mitml" version))
2950 (sha256
2951 (base32
2952 "0yqyxkyi1kmv5k63wxj5kkg5g8igk1axk2csb4xhj6wz0p89dxy6"))))
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
2962 multilevel modeling. It includes a user-friendly interface to the packages
2963 pan and jomo, and several functions for visualization, data management and the
2964 analysis of multiply imputed data sets.")
2965 (license license:gpl2+)))
2966
2967 (define-public r-mice
2968 (package
2969 (name "r-mice")
2970 (version "3.4.0")
2971 (source
2972 (origin
2973 (method url-fetch)
2974 (uri (cran-uri "mice" version))
2975 (sha256
2976 (base32
2977 "0rdamj1j9z3kxmi27pc79v6mhh8rgxaxz4xz70ybf8kqh2x66cgm"))))
2978 (build-system r-build-system)
2979 (propagated-inputs
2980 `(("r-broom" ,r-broom)
2981 ("r-dplyr" ,r-dplyr)
2982 ("r-lattice" ,r-lattice)
2983 ("r-mass" ,r-mass)
2984 ("r-mitml" ,r-mitml)
2985 ("r-nnet" ,r-nnet)
2986 ("r-rcpp" ,r-rcpp)
2987 ("r-rlang" ,r-rlang)
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)
2994 implemented by the MICE algorithm as described in @url{Van Buuren and
2995 Groothuis-Oudshoorn (2011), http://doi.org/10.18637/jss.v045.i03}. Each
2996 variable has its own imputation model. Built-in imputation models are
2997 provided for continuous data (predictive mean matching, normal), binary
2998 data (logistic regression), unordered categorical data (polytomous logistic
2999 regression) and ordered categorical data (proportional odds). MICE can also
3000 impute continuous two-level data (normal model, pan, second-level variables).
3001 Passive imputation can be used to maintain consistency between variables.
3002 Various diagnostic plots are available to inspect the quality of the
3003 imputations.")
3004 ;; Any of these two versions.
3005 (license (list license:gpl2 license:gpl3))))
3006
3007 (define-public r-truncnorm
3008 (package
3009 (name "r-truncnorm")
3010 (version "1.0-8")
3011 (source
3012 (origin
3013 (method url-fetch)
3014 (uri (cran-uri "truncnorm" version))
3015 (sha256
3016 (base32
3017 "0zn88wdd58223kibk085rhsikl4yhlrwiyq109hzjg06hy6lwmj9"))))
3018 (build-system r-build-system)
3019 (home-page "https://cran.r-project.org/web/packages/truncnorm/")
3020 (synopsis "Truncated normal distribution")
3021 (description "This package provides functions for the truncated normal
3022 distribution with mean equal to @code{mean} and standard deviation equal to
3023 @code{sd}. It includes density, distribution, quantile, and expected value
3024 functions, as well as a random generation function.")
3025 (license license:gpl2)))
3026
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)))
3042 (home-page "https://cran.r-project.org/web/packages/Rsolnp/")
3043 (synopsis "General non-linear optimization")
3044 (description "The Rsolnp package implements a general non-linear augmented
3045 Lagrange multiplier method solver, a @dfn{sequential quadratic
3046 programming} (SQP) based solver).")
3047 ;; Any version of the GPL.
3048 (license license:gpl2+)))
3049
3050 (define-public r-hardyweinberg
3051 (package
3052 (name "r-hardyweinberg")
3053 (version "1.6.2")
3054 (source
3055 (origin
3056 (method url-fetch)
3057 (uri (cran-uri "HardyWeinberg" version))
3058 (sha256
3059 (base32
3060 "15i7b444hikkfgqmx2ki827998xwra38k9v7a7kavwz6zmq5mmv9"))))
3061 (properties `((upstream-name . "HardyWeinberg")))
3062 (build-system r-build-system)
3063 (propagated-inputs
3064 `(("r-mice" ,r-mice)
3065 ("r-rcpp" ,r-rcpp)
3066 ("r-rsolnp" ,r-rsolnp)))
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
3071 diallelic genetic marker data. All classical tests (chi-square, exact,
3072 likelihood-ratio and permutation tests) for Hardy-Weinberg equilibrium are
3073 included in the package, as well as functions for power computation and for
3074 the simulation of marker data under equilibrium and disequilibrium. Routines
3075 for dealing with markers on the X-chromosome are included. Functions for
3076 testing equilibrium in the presence of missing data by using multiple
3077 imputation are also provided. Implements several graphics for exploring the
3078 equilibrium status of a large set of diallelic markers: ternary plots with
3079 acceptance regions, log-ratio plots and Q-Q plots.")
3080 (license license:gpl2+)))
3081
3082 (define-public r-sm
3083 (package
3084 (name "r-sm")
3085 (version "2.2-5.6")
3086 (source
3087 (origin
3088 (method url-fetch)
3089 (uri (cran-uri "sm" version))
3090 (sha256
3091 (base32
3092 "0c4whcx879gb4lwvqnzxl5n9xgpcqh2c54ip9ami3mwfprzcv45q"))))
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
3099 Data Analysis---The Kernel Approach with S-Plus Illustrations', Oxford
3100 University Press. It provides smoothing methods for nonparametric regression
3101 and density estimation")
3102 (license license:gpl2+)))
3103
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
3122 Venn and Euler plots. It includes handling for several special cases,
3123 including two-case scaling, and extensive customization of plot shape and
3124 structure.")
3125 (license license:gpl2+)))
3126
3127 (define-public r-vioplot
3128 (package
3129 (name "r-vioplot")
3130 (version "0.3.0")
3131 (source
3132 (origin
3133 (method url-fetch)
3134 (uri (cran-uri "vioplot" version))
3135 (sha256
3136 (base32
3137 "1ddmmqq7qrnvr5q518afnysrl7ccr8am9njknv3dpwaqzcdr9akn"))))
3138 (build-system r-build-system)
3139 (propagated-inputs
3140 `(("r-sm" ,r-sm)
3141 ("r-zoo" ,r-zoo)))
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
3146 plot and a kernel density plot.")
3147 (license license:bsd-3)))
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
3170 suite of fast incremental algorithms for machine learning that can be used for
3171 training models for classification or ranking.")
3172 (license license:asl2.0)))
3173
3174 (define-public r-xts
3175 (package
3176 (name "r-xts")
3177 (version "0.11-2")
3178 (source
3179 (origin
3180 (method url-fetch)
3181 (uri (cran-uri "xts" version))
3182 (sha256
3183 (base32
3184 "1f0kxrvn13py3hk2gh2m56cqm39x3bqp1i350r5viddacrm2yxqj"))))
3185 (build-system r-build-system)
3186 (propagated-inputs `(("r-zoo" ,r-zoo)))
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
3191 data classes by extending @code{zoo}, maximizing native format information
3192 preservation and allowing for user-level customization and extension, while
3193 simplifying cross-class interoperability.")
3194 (license license:gpl2+)))
3195
3196 (define-public r-performanceanalytics
3197 (package
3198 (name "r-performanceanalytics")
3199 (version "1.5.2")
3200 (source
3201 (origin
3202 (method url-fetch)
3203 (uri (cran-uri "PerformanceAnalytics" version))
3204 (sha256
3205 (base32
3206 "01bgm57z079g6r505w3bj293zkbd49fwa8sg55z87vizwavipml6"))))
3207 (properties
3208 `((upstream-name . "PerformanceAnalytics")))
3209 (build-system r-build-system)
3210 (propagated-inputs
3211 `(("r-quadprog" ,r-quadprog)
3212 ("r-xts" ,r-xts)
3213 ("r-zoo" ,r-zoo)))
3214 (home-page "https://r-forge.r-project.org/projects/returnanalytics/")
3215 (synopsis "Econometric tools for performance and risk analysis")
3216 (description "This is a collection of econometric functions for
3217 performance and risk analysis. This package aims to aid practitioners and
3218 researchers in utilizing the latest research in analysis of non-normal return
3219 streams. In general, it is most tested on return (rather than price) data on
3220 a regular scale, but most functions will work with irregular return data as
3221 well, and increasing numbers of functions will work with P&L or price data
3222 where possible.")
3223 ;; Either version may be picked.
3224 (license (list license:gpl2 license:gpl3))))
3225
3226 (define-public r-laeken
3227 (package
3228 (name "r-laeken")
3229 (version "0.5.0")
3230 (source
3231 (origin
3232 (method url-fetch)
3233 (uri (cran-uri "laeken" version))
3234 (sha256
3235 (base32
3236 "1g9r3y7b0gl91hijk9awa8rjk97mqpkxinzq2cgmx0m38ng9ylpa"))))
3237 (build-system r-build-system)
3238 (propagated-inputs
3239 `(("r-boot" ,r-boot)
3240 ("r-mass" ,r-mass)))
3241 (home-page "https://cran.r-project.org/web/packages/laeken/")
3242 (synopsis "Estimation of indicators on social exclusion and poverty")
3243 (description "This package provides tools for the estimation of indicators
3244 on social exclusion and poverty, as well as an implementation of Pareto tail
3245 modeling for empirical income distributions.")
3246 (license license:gpl2+)))
3247
3248 (define-public r-vcd
3249 (package
3250 (name "r-vcd")
3251 (version "1.4-4")
3252 (source
3253 (origin
3254 (method url-fetch)
3255 (uri (cran-uri "vcd" version))
3256 (sha256
3257 (base32
3258 "1lp99h0wvsc61l1dgcqjxdrcgpgw88ak430cdsv43kmm43qssqd5"))))
3259 (build-system r-build-system)
3260 (propagated-inputs
3261 `(("r-colorspace" ,r-colorspace)
3262 ("r-lmtest" ,r-lmtest)
3263 ("r-mass" ,r-mass)))
3264 (home-page "https://cran.r-project.org/web/packages/vcd/")
3265 (synopsis "Visualizing categorical data")
3266 (description "This package provides visualization techniques, data sets,
3267 summary and inference procedures aimed particularly at categorical data.
3268 Special emphasis is given to highly extensible grid graphics. The package was
3269 originally inspired by the book \"Visualizing Categorical Data\" by Michael
3270 Friendly and is now the main support package for a new book, \"Discrete Data
3271 Analysis with R\" by Michael Friendly and David Meyer (2015).")
3272 (license license:gpl2)))
3273
3274 (define-public r-ica
3275 (package
3276 (name "r-ica")
3277 (version "1.0-2")
3278 (source
3279 (origin
3280 (method url-fetch)
3281 (uri (cran-uri "ica" version))
3282 (sha256
3283 (base32
3284 "0ya1nph1zwhad0bfz4yxs27kl45yk1dhnphdlrq34p8pqrpmj8g7"))))
3285 (build-system r-build-system)
3286 (home-page "https://cran.r-project.org/web/packages/ica/")
3287 (synopsis "Independent component analysis")
3288 (description "This package provides tools for @dfn{Independent Component
3289 Analysis} (ICA) using various algorithms: FastICA,
3290 Information-Maximization (Infomax), and @dfn{Joint Approximate Diagonalization
3291 of Eigenmatrices} (JADE).")
3292 (license license:gpl2+)))
3293
3294 (define-public r-dtw
3295 (package
3296 (name "r-dtw")
3297 (version "1.20-1")
3298 (source
3299 (origin
3300 (method url-fetch)
3301 (uri (cran-uri "dtw" version))
3302 (sha256
3303 (base32
3304 "1w301xwizncy5r8v9rwwdxfshydgp3l1pnjla1fjn6n8lx3imjj3"))))
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
3311 optimal (least cumulative distance) alignment between points of two time
3312 series. Common DTW variants covered include local (slope) and global (window)
3313 constraints, subsequence matches, arbitrary distance definitions,
3314 normalizations, minimum variance matching, and so on.")
3315 (license license:gpl2+)))
3316
3317 (define-public r-sdmtools
3318 (package
3319 (name "r-sdmtools")
3320 (version "1.1-221.1")
3321 (source
3322 (origin
3323 (method url-fetch)
3324 (uri (cran-uri "SDMTools" version))
3325 (sha256
3326 (base32
3327 "1fsgnlc7glawimzijp11j53g5bnfp1mdq9wb0754idmxcdi8a99q"))))
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")
3333 (description "This packages provides a set of tools for post processing
3334 the outcomes of species distribution modeling exercises. It includes novel
3335 methods for comparing models and tracking changes in distributions through
3336 time. It further includes methods for visualizing outcomes, selecting
3337 thresholds, calculating measures of accuracy and landscape fragmentation
3338 statistics, etc.")
3339 (license license:gpl3+)))
3340
3341 (define-public r-scatterplot3d
3342 (package
3343 (name "r-scatterplot3d")
3344 (version "0.3-41")
3345 (source
3346 (origin
3347 (method url-fetch)
3348 (uri (cran-uri "scatterplot3d" version))
3349 (sha256
3350 (base32
3351 "152xqz9c70qab86mpgng049gxsg5f4fpf1m8dh93fb9v1avjd0sc"))))
3352 (build-system r-build-system)
3353 (home-page "https://cran.r-project.org/web/packages/scatterplot3d/")
3354 (synopsis "3D scatter plot")
3355 (description "This package provides an implementation of scatter plots for
3356 plotting. a three dimensional point cloud.")
3357 (license license:gpl2)))
3358
3359 (define-public r-ggridges
3360 (package
3361 (name "r-ggridges")
3362 (version "0.5.1")
3363 (source
3364 (origin
3365 (method url-fetch)
3366 (uri (cran-uri "ggridges" version))
3367 (sha256
3368 (base32
3369 "0dhwcpy785ac2ny5bjp284595nnybi3554wd0yffsli0vzf7ry01"))))
3370 (build-system r-build-system)
3371 (propagated-inputs
3372 `(("r-ggplot2" ,r-ggplot2)
3373 ("r-plyr" ,r-plyr)
3374 ("r-scales" ,r-scales)
3375 ("r-withr" ,r-withr)))
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
3380 distributions over time or space. This package enables the creation of such
3381 plots in @code{ggplot2}.")
3382 (license license:gpl2)))
3383
3384 (define-public r-ggjoy
3385 (package
3386 (name "r-ggjoy")
3387 (version "0.4.1")
3388 (source
3389 (origin
3390 (method url-fetch)
3391 (uri (cran-uri "ggjoy" version))
3392 (sha256
3393 (base32
3394 "012md2m0jqfcccb933j423m3ck31v3p0pd41gjxpyg9082y7ixyj"))))
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
3402 distributions over time or space. This package enables the creation of such
3403 plots in @code{ggplot2}.")
3404 (license license:gpl2)))
3405
3406 (define-public r-cli
3407 (package
3408 (name "r-cli")
3409 (version "1.1.0")
3410 (source
3411 (origin
3412 (method url-fetch)
3413 (uri (cran-uri "cli" version))
3414 (sha256
3415 (base32
3416 "02hdwvdq5nic6dhxj88jbgsc9m8yrz3yibigg6szkggxyk6hzh2g"))))
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
3424 attractive command line interfaces (CLIs). It includes tools for drawing
3425 rules, boxes, trees, and Unicode symbols with ASCII alternatives.")
3426 (license license:expat)))
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
3444 written purely in R with no external dependencies. It is useful with the
3445 Rscript front-end and facilitates turning an R script into an executable
3446 script.")
3447 (license license:gpl3+)))
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
3466 constants, and control debugging of packages via environment variables.")
3467 (license license:expat)))
3468
3469 (define-public r-processx
3470 (package
3471 (name "r-processx")
3472 (version "3.3.0")
3473 (source
3474 (origin
3475 (method url-fetch)
3476 (uri (cran-uri "processx" version))
3477 (sha256
3478 (base32
3479 "0ipdcl4080z92jdnd1w4hm4w484spxcrp6j5x9p76ksb401qdca1"))))
3480 (build-system r-build-system)
3481 (propagated-inputs
3482 `(("r-ps" ,r-ps)
3483 ("r-r6" ,r-r6)))
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
3488 background. It can check if a background process is running; wait on a
3489 background process to finish; get the exit status of finished processes; kill
3490 background processes and their children; restart processes. It can read the
3491 standard output and error of the processes, using non-blocking connections.
3492 @code{processx} can poll a process for standard output or error, with a
3493 timeout. It can also poll several processes at once.")
3494 (license license:expat)))
3495
3496 (define-public r-tsp
3497 (package
3498 (name "r-tsp")
3499 (version "1.1-6")
3500 (source
3501 (origin
3502 (method url-fetch)
3503 (uri (cran-uri "TSP" version))
3504 (sha256
3505 (base32
3506 "1ym97xl2icjpfkrici0wig29w06bb704hp51v7h5liygjlwpkhlc"))))
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
3513 algorithms for the @dfn{traveling salesperson problem}(TSP) (also known as the
3514 traveling salesman problem).")
3515 (license license:gpl3)))
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)))
3530 (home-page "https://cran.r-project.org/web/packages/qap/")
3531 (synopsis "Heuristics for the quadratic assignment problem (QAP)")
3532 (description "This package implements heuristics for the @dfn{quadratic
3533 assignment problem} (QAP). Currently only a simulated annealing heuristic is
3534 available.")
3535 (license license:gpl3)))
3536
3537 (define-public r-gclus
3538 (package
3539 (name "r-gclus")
3540 (version "1.3.2")
3541 (source
3542 (origin
3543 (method url-fetch)
3544 (uri (cran-uri "gclus" version))
3545 (sha256
3546 (base32
3547 "1cz0g0i972955hhaji30rx8448x7f3as7z1sww9i5h86ybgirilw"))))
3548 (build-system r-build-system)
3549 (propagated-inputs `(("r-cluster" ,r-cluster)))
3550 (home-page "https://cran.r-project.org/web/packages/gclus/")
3551 (synopsis "Clustering graphics")
3552 (description "This package orders panels in scatterplot matrices and
3553 parallel coordinate displays by some merit index. It contains various indices
3554 of 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+)))
3557
3558 (define-public r-webshot
3559 (package
3560 (name "r-webshot")
3561 (version "0.5.1")
3562 (source
3563 (origin
3564 (method url-fetch)
3565 (uri (cran-uri "webshot" version))
3566 (sha256
3567 (base32
3568 "08sb1xi376pfy1vwilk2d68zljsg9yiv04n2dkqz383gdhh0sxdr"))))
3569 (build-system r-build-system)
3570 (propagated-inputs
3571 `(("r-callr" ,r-callr)
3572 ("r-jsonlite" ,r-jsonlite)
3573 ("r-magrittr" ,r-magrittr)))
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.
3578 It can also run Shiny applications locally and take screenshots of the
3579 application; and it can render and screenshot static as well as interactive R
3580 Markdown documents.")
3581 (license license:gpl2)))
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
3610 implementation of several seriation/sequencing techniques to reorder matrices,
3611 dissimilarity matrices, and dendrograms. It also provides (optimally)
3612 reordered heatmaps, color images and clustering visualizations like
3613 dissimilarity plots, and visual assessment of cluster tendency plots (VAT and
3614 iVAT).")
3615 (license license:gpl3)))
3616
3617 (define-public r-xfun
3618 (package
3619 (name "r-xfun")
3620 (version "0.6")
3621 (source
3622 (origin
3623 (method url-fetch)
3624 (uri (cran-uri "xfun" version))
3625 (sha256
3626 (base32
3627 "123wmnykmlq9prqx1g9ij9vyqx25pib2jnqjrwy39rfmzbsypbx3"))))
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
3633 packages maintained by Yihui Xie.")
3634 (license license:expat)))
3635
3636 (define-public r-utf8
3637 (package
3638 (name "r-utf8")
3639 (version "1.1.4")
3640 (source
3641 (origin
3642 (method url-fetch)
3643 (uri (cran-uri "utf8" version))
3644 (sha256
3645 (base32
3646 "0m0ywg8k3blfiahxvh1i4zn9dksrlc937d2lbza5fc38zjnrrnpn"))))
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
3652 international text (Unicode). Input, validate, normalize, encode, format, and
3653 display.")
3654 (license license:asl2.0)))
3655
3656 (define-public r-pillar
3657 (package
3658 (name "r-pillar")
3659 (version "1.3.1")
3660 (source
3661 (origin
3662 (method url-fetch)
3663 (uri (cran-uri "pillar" version))
3664 (sha256
3665 (base32
3666 "1xnbb9sr5wn9dmp6m7cr4z7i6pmjvyabnfcx6x7i7mvdjmgvaf5k"))))
3667 (build-system r-build-system)
3668 (propagated-inputs
3669 `(("r-cli" ,r-cli)
3670 ("r-crayon" ,r-crayon)
3671 ("r-fansi" ,r-fansi)
3672 ("r-rlang" ,r-rlang)
3673 ("r-utf8" ,r-utf8)))
3674 (home-page "https://github.com/r-lib/pillar")
3675 (synopsis "Coloured formatting for columns")
3676 (description
3677 "This package provides a @code{pillar} generic designed for formatting
3678 columns of data using the full range of colours provided by modern
3679 terminals.")
3680 (license license:gpl3)))
3681
3682 (define-public r-uuid
3683 (package
3684 (name "r-uuid")
3685 (version "0.1-2")
3686 (source
3687 (origin
3688 (method url-fetch)
3689 (uri (cran-uri "uuid" version))
3690 (sha256
3691 (base32
3692 "1gmisd630fc8ybg845hbg13wmm3pk3npaamrh5wqbc1nqd6p0wfx"))))
3693 (build-system r-build-system)
3694 (home-page "http://www.rforge.net/uuid")
3695 (synopsis "Tools for generating and handling of UUIDs")
3696 (description
3697 "This package provides tools for generating and handling of
3698 @dfn{Universally Unique Identifiers} (UUIDs).")
3699 (license license:expat)))
3700
3701 (define-public r-tinytex
3702 (package
3703 (name "r-tinytex")
3704 (version "0.12")
3705 (source
3706 (origin
3707 (method url-fetch)
3708 (uri (cran-uri "tinytex" version))
3709 (sha256
3710 (base32
3711 "03ggxbd4y1ipcmjw5ixa6g6wg4ydargnln7g08bdrdi96zyyq1fh"))))
3712 (build-system r-build-system)
3713 (propagated-inputs
3714 `(("r-xfun" ,r-xfun)))
3715 (home-page "https://github.com/yihui/tinytex")
3716 (synopsis "Helper functions for TeX Live and compiling LaTeX documents")
3717 (description
3718 "This package provides helper functions to install and maintain the LaTeX
3719 distribution named TinyTeX, a lightweight, cross-platform, portable, and
3720 easy-to-maintain version of TeX Live. This package also contains helper
3721 functions to compile LaTeX documents, and install missing LaTeX packages
3722 automatically.")
3723 (license license:expat)))
3724
3725 (define-public r-metap
3726 (package
3727 (name "r-metap")
3728 (version "1.1")
3729 (source
3730 (origin
3731 (method url-fetch)
3732 (uri (cran-uri "metap" version))
3733 (sha256
3734 (base32
3735 "10kv7z8pik5iy374h399vws0ldf41y2nczlwh8axqf9dcwl084i0"))))
3736 (build-system r-build-system)
3737 (propagated-inputs
3738 `(("r-lattice" ,r-lattice)
3739 ("r-rdpack" ,r-rdpack)))
3740 (home-page "http://www.dewey.myzen.co.uk/meta/meta.html")
3741 (synopsis "Meta-analysis of significance values")
3742 (description
3743 "The canonical way to perform meta-analysis involves using effect sizes.
3744 When they are not available this package provides a number of methods for
3745 meta-analysis of significance values including the methods of Edgington,
3746 Fisher, Stouffer, Tippett, and Wilkinson; a number of data-sets to replicate
3747 published results; and a routine for graphical display.")
3748 (license license:gpl2)))
3749
3750 (define-public r-network
3751 (package
3752 (name "r-network")
3753 (version "1.15")
3754 (source
3755 (origin
3756 (method url-fetch)
3757 (uri (cran-uri "network" version))
3758 (sha256
3759 (base32
3760 "1cscw5978fyixhkicf06c4b2g1yf6gyi8vx86cz3dy75d41mrgjw"))))
3761 (build-system r-build-system)
3762 (propagated-inputs
3763 `(("r-magrittr" ,r-magrittr)
3764 ("r-tibble" ,r-tibble)))
3765 (home-page "https://statnet.org/")
3766 (synopsis "Classes for relational data")
3767 (description
3768 "This package provides tools to create and modify network objects. The
3769 @code{network} class can represent a range of relational data types, and
3770 supports arbitrary vertex/edge/graph attributes.")
3771 (license license:gpl2+)))
3772
3773 (define-public r-statnet-common
3774 (package
3775 (name "r-statnet-common")
3776 (version "4.2.0")
3777 (source
3778 (origin
3779 (method url-fetch)
3780 (uri (cran-uri "statnet.common" version))
3781 (sha256
3782 (base32
3783 "0q942g6kqmqxfss1cxb3yg8y5r1k1h5cyy99s1cfisrn6hqc6xhi"))))
3784 (properties
3785 `((upstream-name . "statnet.common")))
3786 (build-system r-build-system)
3787 (propagated-inputs
3788 `(("r-coda" ,r-coda)))
3789 (home-page "https://statnet.org")
3790 (synopsis "R scripts and utilities used by the Statnet software")
3791 (description "This package provides non-statistical utilities used by the
3792 software developed by the Statnet Project.")
3793 (license license:gpl3)))
3794
3795 (define-public r-sna
3796 (package
3797 (name "r-sna")
3798 (version "2.4")
3799 (source
3800 (origin
3801 (method url-fetch)
3802 (uri (cran-uri "sna" version))
3803 (sha256
3804 (base32
3805 "1ks8819qvpdfansfqj9p32s1rhvl26frvbi78m4rx1wd1qcv74i2"))))
3806 (build-system r-build-system)
3807 (propagated-inputs
3808 `(("r-network" ,r-network)
3809 ("r-statnet-common" ,r-statnet-common)))
3810 (home-page "https://statnet.org")
3811 (synopsis "Tools for social network analysis")
3812 (description
3813 "This package provides a range of tools for social network analysis,
3814 including node and graph-level indices, structural distance and covariance
3815 methods, structural equivalence detection, network regression, random graph
3816 generation, and 2D/3D network visualization.")
3817 (license license:gpl2+)))
3818
3819 (define-public r-ttr
3820 (package
3821 (name "r-ttr")
3822 (version "0.23-4")
3823 (source
3824 (origin
3825 (method url-fetch)
3826 (uri (cran-uri "TTR" version))
3827 (sha256
3828 (base32
3829 "18mzyv6cmxmqyqsfwlx2b2k055887mfgc2jgj8xkn8c6m56n05zb"))))
3830 (properties `((upstream-name . "TTR")))
3831 (build-system r-build-system)
3832 (propagated-inputs
3833 `(("r-curl" ,r-curl)
3834 ("r-xts" ,r-xts)
3835 ("r-zoo" ,r-zoo)))
3836 (native-inputs `(("gfortran" ,gfortran)))
3837 (home-page "https://github.com/joshuaulrich/TTR")
3838 (synopsis "Technical trading rules")
3839 (description
3840 "This package provides functions and data to construct technical trading
3841 rules with R.")
3842 (license license:gpl2)))
3843
3844 (define-public r-leaps
3845 (package
3846 (name "r-leaps")
3847 (version "3.0")
3848 (source
3849 (origin
3850 (method url-fetch)
3851 (uri (cran-uri "leaps" version))
3852 (sha256
3853 (base32
3854 "11gjmn1azrjw5xlvdb4gknj9985kck9x8zb9np1rnk2smp6pka2m"))))
3855 (build-system r-build-system)
3856 (native-inputs `(("gfortran" ,gfortran)))
3857 (home-page "https://cran.r-project.org/web/packages/leaps/")
3858 (synopsis "Regression subset selection")
3859 (description
3860 "This package provides tools for regression subset selection, including
3861 exhaustive search.")
3862 (license license:gpl2+)))
3863
3864 (define-public r-splus2r
3865 (package
3866 (name "r-splus2r")
3867 (version "1.2-2")
3868 (source
3869 (origin
3870 (method url-fetch)
3871 (uri (cran-uri "splus2R" version))
3872 (sha256
3873 (base32
3874 "0xrbj8vxy0pc6hl7m8abv71d3hjw47cl51s7j7priadyqczkq6sz"))))
3875 (properties `((upstream-name . "splus2R")))
3876 (build-system r-build-system)
3877 (native-inputs `(("gfortran" ,gfortran)))
3878 (home-page "https://cran.r-project.org/web/packages/splus2R/")
3879 (synopsis "Supplemental S-PLUS functionality in R")
3880 (description
3881 "Currently there are many functions in S-PLUS that are missing in R. To
3882 facilitate the conversion of S-PLUS packages to R packages, this package
3883 provides some missing S-PLUS functionality in R.")
3884 (license license:gpl2)))
3885
3886 (define-public r-ifultools
3887 (package
3888 (name "r-ifultools")
3889 (version "2.0-5")
3890 (source
3891 (origin
3892 (method url-fetch)
3893 (uri (cran-uri "ifultools" version))
3894 (sha256
3895 (base32
3896 "040kvbczcmmbaiaz0k0pdq9af541pjj6iwzh1a3w4szh9w6b5a3j"))))
3897 (build-system r-build-system)
3898 (propagated-inputs
3899 `(("r-mass" ,r-mass)
3900 ("r-splus2r" ,r-splus2r)))
3901 (home-page "https://cran.r-project.org/web/packages/ifultools/")
3902 (synopsis "Insightful research tools")
3903 (description "This package provides C code used by the wmtsa, fractal, and
3904 sapa R packages.")
3905 (license license:gpl2)))
3906
3907 (define-public r-sapa
3908 (package
3909 (name "r-sapa")
3910 (version "2.0-2")
3911 (source
3912 (origin
3913 (method url-fetch)
3914 (uri (cran-uri "sapa" version))
3915 (sha256
3916 (base32
3917 "056xlh14dnzq4x7sbp7ff2k61jxy7110a742b502vz549qfrr5ds"))))
3918 (build-system r-build-system)
3919 (propagated-inputs
3920 `(("r-ifultools" ,r-ifultools)
3921 ("r-splus2r" ,r-splus2r)))
3922 (home-page "https://cran.r-project.org/web/packages/sapa/")
3923 (synopsis "Spectral analysis for physical applications")
3924 (description "This package provides software for the book Spectral
3925 Analysis for Physical Applications, Donald B. Percival and Andrew T. Walden,
3926 Cambridge University Press, 1993.")
3927 (license license:gpl2)))
3928
3929 (define-public r-aggregation
3930 (package
3931 (name "r-aggregation")
3932 (version "1.0.1")
3933 (source
3934 (origin
3935 (method url-fetch)
3936 (uri (cran-uri "aggregation" version))
3937 (sha256
3938 (base32
3939 "0j9g604m2ccc7hcy02539yja9cf3xcbl25gvp838bp4x8w18my46"))))
3940 (build-system r-build-system)
3941 (home-page "https://cran.r-project.org/web/packages/aggregation/")
3942 (synopsis "Methods for p-value aggregation")
3943 (description
3944 "This package contains functionality for performing the following methods
3945 of p-value aggregation: Fisher's method, the Lancaster method (weighted
3946 Fisher's method), and Sidak correction.")
3947 (license license:gpl3)))
3948
3949 (define-public r-quantmod
3950 (package
3951 (name "r-quantmod")
3952 (version "0.4-14")
3953 (source
3954 (origin
3955 (method url-fetch)
3956 (uri (cran-uri "quantmod" version))
3957 (sha256
3958 (base32
3959 "1csljagnpkr1mmc18h70b64zbyj07kx972nip9dng39jfg7ilnyr"))))
3960 (build-system r-build-system)
3961 (propagated-inputs
3962 `(("r-curl" ,r-curl)
3963 ("r-ttr" ,r-ttr)
3964 ("r-xts" ,r-xts)
3965 ("r-zoo" ,r-zoo)))
3966 (home-page "https://cran.r-project.org/web/packages/quantmod/")
3967 (synopsis "Quantitative financial modelling framework")
3968 (description "This package provides a quantitative financial modelling
3969 framework to allow users to specify, build, trade, and analyse quantitative
3970 financial trading strategies.")
3971 (license license:gpl3)))
3972
3973 (define-public r-tseries
3974 (package
3975 (name "r-tseries")
3976 (version "0.10-46")
3977 (source
3978 (origin
3979 (method url-fetch)
3980 (uri (cran-uri "tseries" version))
3981 (sha256
3982 (base32
3983 "08kjw0bfj5gfcrxpblwqxwna8a5g9gnr7ya61qb02r263pyhm50j"))))
3984 (build-system r-build-system)
3985 (propagated-inputs
3986 `(("r-quadprog" ,r-quadprog)
3987 ("r-quantmod" ,r-quantmod)
3988 ("r-zoo" ,r-zoo)))
3989 (native-inputs
3990 `(("gfortran" ,gfortran)))
3991 (home-page "https://cran.r-project.org/web/packages/tseries/")
3992 (synopsis "Time series analysis and computational finance")
3993 (description
3994 "This package provides functions relating to time series analysis and
3995 computational finance.")
3996 (license license:gpl2)))
3997
3998 (define-public r-wmtsa
3999 (package
4000 (name "r-wmtsa")
4001 (version "2.0-3")
4002 (source
4003 (origin
4004 (method url-fetch)
4005 (uri (cran-uri "wmtsa" version))
4006 (sha256
4007 (base32
4008 "1q436krz5p1f4a7a7sya6a9rh9x9mi8zzcgq66gbk9w9w4hcqcj6"))))
4009 (build-system r-build-system)
4010 (propagated-inputs
4011 `(("r-ifultools" ,r-ifultools)
4012 ("r-mass" ,r-mass)
4013 ("r-splus2r" ,r-splus2r)))
4014 (home-page "https://cran.r-project.org/web/packages/wmtsa/")
4015 (synopsis "Wavelet methods for time series analysis")
4016 (description
4017 "This package provides software to accompany the book \"Wavelet Methods
4018 for Time Series Analysis\", Donald B. Percival and Andrew T. Walden, Cambridge
4019 University Press, 2000.")
4020 (license license:gpl2)))
4021
4022 (define-public r-tsa
4023 (package
4024 (name "r-tsa")
4025 (version "1.2")
4026 (source
4027 (origin
4028 (method url-fetch)
4029 (uri (cran-uri "TSA" version))
4030 (sha256
4031 (base32
4032 "0gjfqibwdznz0nka95k4fjm935svxjpnqfywwz403crn2lh30h6q"))))
4033 (properties `((upstream-name . "TSA")))
4034 (build-system r-build-system)
4035 (propagated-inputs
4036 `(("r-leaps" ,r-leaps)
4037 ("r-locfit" ,r-locfit)
4038 ("r-mgcv" ,r-mgcv)))
4039 (home-page "http://www.stat.uiowa.edu/~kchan/TSA.htm")
4040 (synopsis "Time series analysis")
4041 (description
4042 "This package contains R functions and datasets detailed in the book
4043 \"Time Series Analysis with Applications in R (second edition)\" by Jonathan
4044 Cryer and Kung-Sik Chan.")
4045 (license license:gpl2+)))
4046
4047 (define-public r-extradistr
4048 (package
4049 (name "r-extradistr")
4050 (version "1.8.10")
4051 (source
4052 (origin
4053 (method url-fetch)
4054 (uri (cran-uri "extraDistr" version))
4055 (sha256
4056 (base32
4057 "00lvqp5bb3iak5myiz4rqm887bkq9sdh7aybmz84mmfni6q01m28"))))
4058 (properties `((upstream-name . "extraDistr")))
4059 (build-system r-build-system)
4060 (propagated-inputs
4061 `(("r-rcpp" ,r-rcpp)))
4062 (home-page "https://github.com/twolodzko/extraDistr")
4063 (synopsis "Additional univariate and multivariate distributions")
4064 (description
4065 "This package implements density, distribution functions, quantile
4066 functions and random generation functions for a large number of univariate and
4067 multivariate distributions.")
4068 (license license:gpl2)))
4069
4070 (define-public r-fractal
4071 (package
4072 (name "r-fractal")
4073 (version "2.0-4")
4074 (source
4075 (origin
4076 (method url-fetch)
4077 (uri (cran-uri "fractal" version))
4078 (sha256
4079 (base32
4080 "18lr9z0gslvfc3z8vyj3krqj3bfhg60zv1fzinrwwkc4cpk1w7mp"))))
4081 (build-system r-build-system)
4082 (propagated-inputs
4083 `(("r-ifultools" ,r-ifultools)
4084 ("r-mass" ,r-mass)
4085 ("r-sapa" ,r-sapa)
4086 ("r-scatterplot3d" ,r-scatterplot3d)
4087 ("r-splus2r" ,r-splus2r)
4088 ("r-wmtsa" ,r-wmtsa)))
4089 (home-page "https://cran.r-project.org/web/packages/fractal/")
4090 (synopsis "Fractal time series modeling and analysis")
4091 (description
4092 "This package provides tools for stochastic fractal and deterministic
4093 chaotic time series analysis.")
4094 (license license:gpl2)))
4095
4096 (define-public r-urca
4097 (package
4098 (name "r-urca")
4099 (version "1.3-0")
4100 (source
4101 (origin
4102 (method url-fetch)
4103 (uri (cran-uri "urca" version))
4104 (sha256
4105 (base32
4106 "1akaqwf3fvvvx4sgfn641fd4sj51s0701pvfl6s5hnz2k0iwh732"))))
4107 (build-system r-build-system)
4108 (propagated-inputs `(("r-nlme" ,r-nlme)))
4109 (native-inputs `(("gfortran" ,gfortran)))
4110 (home-page "https://cran.r-project.org/web/packages/urca/")
4111 (synopsis "Unit root and cointegration tests for time series data")
4112 (description
4113 "This package provides unit root and cointegration tests encountered in
4114 applied econometric analysis.")
4115 (license license:gpl2+)))
4116
4117 (define-public r-cubature
4118 (package
4119 (name "r-cubature")
4120 (version "2.0.3")
4121 (source
4122 (origin
4123 (method url-fetch)
4124 (uri (cran-uri "cubature" version))
4125 (sha256
4126 (base32
4127 "0wvs80i4axj7pdcy9gjl08qzjbcjkldha94xy4gdxc34vgmh7gvr"))))
4128 (build-system r-build-system)
4129 (propagated-inputs
4130 `(("r-rcpp" ,r-rcpp)))
4131 (home-page "https://github.com/bnaras/cubature")
4132 (synopsis "Adaptive multivariate integration over hypercubes")
4133 (description
4134 "This package is an R wrapper around the cubature C library for adaptive
4135 multivariate integration over hypercubes. This version provides both
4136 @code{hcubature} and @code{pcubature} routines in addition to a vector
4137 interface.")
4138 ;; The included cubature C library is released under GPLv2+, but the
4139 ;; wrapper declares the license to be GPLv3+.
4140 (license (list license:gpl2+ license:gpl3+))))
4141
4142 (define-public r-trend
4143 (package
4144 (name "r-trend")
4145 (version "1.1.1")
4146 (source
4147 (origin
4148 (method url-fetch)
4149 (uri (cran-uri "trend" version))
4150 (sha256
4151 (base32
4152 "1bd567n15k2vpmgbx02584k5kglrc58mlb5kgd07wdss3knpa48q"))))
4153 (build-system r-build-system)
4154 (propagated-inputs
4155 `(("r-extradistr" ,r-extradistr)))
4156 (native-inputs
4157 `(("gfortran" ,gfortran)))
4158 (home-page "https://cran.r-project.org/web/packages/trend/")
4159 (synopsis "Non-parametric trend tests and change-point detection")
4160 (description
4161 "The analysis of environmental data often requires the detection of
4162 trends and change-points. This package includes tests for trend
4163 detection (Cox-Stuart Trend Test, Mann-Kendall Trend Test, (correlated)
4164 Hirsch-Slack Test, partial Mann-Kendall Trend Test, multivariate (multisite)
4165 Mann-Kendall Trend Test, (Seasonal) Sen's slope, partial Pearson and Spearman
4166 correlation trend test), change-point detection (Lanzante's test procedures,
4167 Pettitt's test, Buishand Range Test, Buishand U Test, Standard Normal
4168 Homogeinity Test), detection of non-randomness (Wallis-Moore Phase Frequency
4169 Test, Bartels rank von Neumann's ratio test, Wald-Wolfowitz Test) and the two
4170 sample Robust Rank-Order Distributional Test.")
4171 (license license:gpl3)))
4172
4173 (define-public r-expm
4174 (package
4175 (name "r-expm")
4176 (version "0.999-4")
4177 (source
4178 (origin
4179 (method url-fetch)
4180 (uri (cran-uri "expm" version))
4181 (sha256
4182 (base32
4183 "15k0acg2aqb2ajhwal6l7vhhp03m4lg579805d34554cl0kn9l2q"))))
4184 (build-system r-build-system)
4185 (propagated-inputs `(("r-matrix" ,r-matrix)))
4186 (native-inputs `(("gfortran" ,gfortran)))
4187 (home-page "https://r-forge.r-project.org/projects/expm/")
4188 (synopsis "Tools for matrix exponentials and related quantities")
4189 (description
4190 "This package provides tools for the computation of the matrix
4191 exponential, logarithm, square root, and related quantities.")
4192 (license license:gpl2+)))
4193
4194 (define-public r-complexplus
4195 (package
4196 (name "r-complexplus")
4197 (version "2.1")
4198 (source
4199 (origin
4200 (method url-fetch)
4201 (uri (cran-uri "complexplus" version))
4202 (sha256
4203 (base32
4204 "16w9v7d1ckavqmr86l34frr37pkvdn0iqnb17ssb8xaggns5lgqx"))))
4205 (build-system r-build-system)
4206 (propagated-inputs
4207 `(("r-expm" ,r-expm)
4208 ("r-matrix" ,r-matrix)))
4209 (home-page "https://cran.r-project.org/web/packages/complexplus/")
4210 (synopsis "Functions of complex or real variables")
4211 (description
4212 "This package extends several functions to the complex domain, including
4213 the matrix exponential and logarithm, and the determinant.")
4214 (license license:gpl2)))
4215
4216 (define-public r-phontools
4217 (package
4218 (name "r-phontools")
4219 (version "0.2-2.1")
4220 (source
4221 (origin
4222 (method url-fetch)
4223 (uri (cran-uri "phonTools" version))
4224 (sha256
4225 (base32
4226 "01i481mhswsys3gpasw9gn6nxkfmi7bz46g5c84m13pg0cv8hxc7"))))
4227 (properties `((upstream-name . "phonTools")))
4228 (build-system r-build-system)
4229 (home-page "http://www.santiagobarreda.com/rscripts.html")
4230 (synopsis "Tools for phonetic and acoustic analyses")
4231 (description
4232 "This package contains tools for the organization, display, and analysis
4233 of the sorts of data frequently encountered in phonetics research and
4234 experimentation, including the easy creation of IPA vowel plots, and the
4235 creation and manipulation of WAVE audio files.")
4236 (license license:bsd-2)))
4237
4238 (define-public r-np
4239 (package
4240 (name "r-np")
4241 (version "0.60-9")
4242 (source
4243 (origin
4244 (method url-fetch)
4245 (uri (cran-uri "np" version))
4246 (sha256
4247 (base32
4248 "1z4jcpx8bbgwslv42wrphfd1qfq965qjn0kmfxm5f6hbbycahcgy"))))
4249 (build-system r-build-system)
4250 (propagated-inputs
4251 `(("r-boot" ,r-boot)
4252 ("r-cubature" ,r-cubature)
4253 ("r-quadprog" ,r-quadprog)
4254 ("r-quantreg" ,r-quantreg)))
4255 (home-page "https://github.com/JeffreyRacine/R-Package-np")
4256 (synopsis "Non-parametric kernel smoothing methods for mixed data types")
4257 (description "This package provides non-parametric (and semi-parametric)
4258 kernel methods that seamlessly handle a mix of continuous, unordered, and
4259 ordered factor data types.")
4260 ;; Any version of the GPL.
4261 (license license:gpl3+)))
4262
4263 (define-public r-powerplus
4264 (package
4265 (name "r-powerplus")
4266 (version "3.1")
4267 (source
4268 (origin
4269 (method url-fetch)
4270 (uri (cran-uri "powerplus" version))
4271 (sha256
4272 (base32
4273 "0ayp6x34hkzgris4j3zbbs0r23n81bhww3wgfyy630ri4sk6brrn"))))
4274 (build-system r-build-system)
4275 (propagated-inputs
4276 `(("r-complexplus" ,r-complexplus)
4277 ("r-expm" ,r-expm)
4278 ("r-mass" ,r-mass)
4279 ("r-matrix" ,r-matrix)
4280 ("r-phontools" ,r-phontools)))
4281 (home-page "https://cran.r-project.org/web/packages/powerplus/")
4282 (synopsis "Exponentiation operations")
4283 (description
4284 "This package provides tools for the computation of matrix and scalar
4285 exponentiation.")
4286 (license license:gpl2)))
4287
4288 (define-public r-heatmaply
4289 (package
4290 (name "r-heatmaply")
4291 (version "0.15.2")
4292 (source
4293 (origin
4294 (method url-fetch)
4295 (uri (cran-uri "heatmaply" version))
4296 (sha256
4297 (base32
4298 "0h8s5djzj4mrmaswlcaap6jbwxrkbzc43bbqik3qf8vrqz335w04"))))
4299 (build-system r-build-system)
4300 (propagated-inputs
4301 `(("r-assertthat" ,r-assertthat)
4302 ("r-colorspace" ,r-colorspace)
4303 ("r-dendextend" ,r-dendextend)
4304 ("r-ggplot2" ,r-ggplot2)
4305 ("r-gplots" ,r-gplots)
4306 ("r-htmlwidgets" ,r-htmlwidgets)
4307 ("r-knitr" ,r-knitr) ; needed for vignettes
4308 ("r-magrittr" ,r-magrittr)
4309 ("r-plotly" ,r-plotly)
4310 ("r-rcolorbrewer" ,r-rcolorbrewer)
4311 ("r-reshape2" ,r-reshape2)
4312 ("r-scales" ,r-scales)
4313 ("r-seriation" ,r-seriation)
4314 ("r-viridis" ,r-viridis)
4315 ("r-webshot" ,r-webshot)))
4316 (home-page "https://cran.r-project.org/package=heatmaply")
4317 (synopsis "Interactive cluster heat maps using plotly")
4318 (description
4319 "This package enables you to create interactive cluster heatmaps that can
4320 be saved as a stand-alone HTML file, embedded in R Markdown documents or in a
4321 Shiny app, and made available in the RStudio viewer pane. Hover the mouse
4322 pointer over a cell to show details or drag a rectangle to zoom. A heatmap is
4323 a popular graphical method for visualizing high-dimensional data, in which a
4324 table of numbers is encoded as a grid of colored cells. The rows and columns
4325 of the matrix are ordered to highlight patterns and are often accompanied by
4326 dendrograms.")
4327 ;; Either version of the license.
4328 (license (list license:gpl2 license:gpl3))))
4329
4330 (define-public r-h5
4331 (package
4332 (name "r-h5")
4333 (version "0.9.9")
4334 (source
4335 (origin
4336 (method url-fetch)
4337 (uri (cran-uri "h5" version))
4338 (sha256
4339 (base32
4340 "14p7i1sj24ky87kd7qr3n9fc9l64s0bp0rwbyl6i2x69xn75gpsx"))))
4341 (build-system r-build-system)
4342 (inputs
4343 `(("zlib" ,zlib)
4344 ("hdf5" ,hdf5)))
4345 (native-inputs
4346 `(("which" ,which)))
4347 (propagated-inputs
4348 `(("r-rcpp" ,r-rcpp)))
4349 (home-page "https://github.com/mannau/h5")
4350 (synopsis "Interface to the HDF5 Library")
4351 (description
4352 "This package provides an S4 interface to the HDF5 library supporting
4353 fast storage and retrieval of R-objects like vectors, matrices and arrays to
4354 binary files in a language independent format. The HDF5 format can therefore
4355 be used as an alternative to R's save/load mechanism. Since h5 is able to
4356 access only subsets of stored data it can also handle data sets which do not
4357 fit into memory.")
4358 (license license:bsd-2)))
4359
4360 (define-public r-cgdsr
4361 (package
4362 (name "r-cgdsr")
4363 (version "1.2.10")
4364 (source
4365 (origin
4366 (method url-fetch)
4367 (uri (cran-uri "cgdsr" version))
4368 (sha256
4369 (base32
4370 "1xyhw7mhmjichr1l6f9y1qvfj9wm87kfbm87ji7lcwf36gxh5g23"))))
4371 (build-system r-build-system)
4372 (propagated-inputs
4373 `(("r-r-methodss3" ,r-r-methodss3)
4374 ("r-r-oo" ,r-r-oo)))
4375 (home-page "https://github.com/cBioPortal/cgdsr")
4376 (synopsis "R-based API for accessing the MSKCC Cancer Genomics Data Server")
4377 (description
4378 "This package provides a basic set of R functions for querying the Cancer
4379 Genomics Data Server (CGDS), hosted by the Computational Biology Center at
4380 Memorial-Sloan-Kettering Cancer Center (MSKCC).")
4381 (license license:lgpl3)))
4382
4383 (define-public r-import
4384 (package
4385 (name "r-import")
4386 (version "1.1.0")
4387 (source
4388 (origin
4389 (method url-fetch)
4390 (uri (cran-uri "import" version))
4391 (sha256
4392 (base32
4393 "0blf9539rbfwcmw8zsb4k58slb4pdnc075v34vmyjw752fznhcji"))))
4394 (build-system r-build-system)
4395 (home-page "https://github.com/smbache/import")
4396 (synopsis "Import mechanism for R")
4397 (description
4398 "This is an alternative mechanism for importing objects from packages.
4399 The syntax allows for importing multiple objects from a package with a single
4400 command in an expressive way. The import package bridges some of the gap
4401 between using @code{library} (or @code{require}) and direct (single-object)
4402 imports. Furthermore the imported objects are not placed in the current
4403 environment. It is also possible to import objects from stand-alone @code{.R}
4404 files.")
4405 (license license:expat)))
4406
4407 (define-public r-shinyace
4408 (package
4409 (name "r-shinyace")
4410 (version "0.3.3")
4411 (source
4412 (origin
4413 (method url-fetch)
4414 (uri (cran-uri "shinyAce" version))
4415 (sha256
4416 (base32
4417 "02q6wqw349nlyf3mbf18cxif1xv9cal5qzccrdlnv73szqn9jk7j"))))
4418 (properties `((upstream-name . "shinyAce")))
4419 (build-system r-build-system)
4420 (propagated-inputs
4421 `(("r-shiny" ,r-shiny)
4422 ("r-jsonlite" ,r-jsonlite)))
4423 (home-page "http://cran.r-project.org/web/packages/shinyAce")
4424 (synopsis "Ace editor bindings for Shiny")
4425 (description
4426 "This package provides Ace editor bindings to enable a rich text editing
4427 environment within Shiny.")
4428 (license license:expat)))
4429
4430 (define-public r-base64url
4431 (package
4432 (name "r-base64url")
4433 (version "1.4")
4434 (source
4435 (origin
4436 (method url-fetch)
4437 (uri (cran-uri "base64url" version))
4438 (sha256
4439 (base32
4440 "0n1c2b68vza1dh7sk38v6biiwm72c4jpl79kpdg1bsb0hq9qy18x"))))
4441 (build-system r-build-system)
4442 (propagated-inputs
4443 `(("r-backports" ,r-backports)))
4444 (home-page "https://github.com/mllg/base64url")
4445 (synopsis "Fast and URL-safe base64 encoder and decoder")
4446 (description
4447 "This package provides a URL-safe base64 encoder and decoder. In
4448 contrast to RFC3548, the 62nd character (@code{+}) is replaced with @code{-},
4449 the 63rd character (@code{/}) is replaced with @code{_}. Furthermore, the
4450 encoder does not fill the string with trailing @code{=}. The resulting
4451 encoded strings comply to the regular expression pattern @code{[A-Za-z0-9_-]}
4452 and thus are safe to use in URLs or for file names. The package also comes
4453 with a simple base32 encoder/decoder suited for case insensitive file
4454 systems.")
4455 (license license:gpl3)))
4456
4457 (define-public r-radiant-data
4458 (package
4459 (name "r-radiant-data")
4460 (version "0.9.9")
4461 (source
4462 (origin
4463 (method url-fetch)
4464 (uri (cran-uri "radiant.data" version))
4465 (sha256
4466 (base32
4467 "17mgm0sggh4f7ihqmj9m3996p3pqc7h2cwx6ll1ha3kg5mx0znyn"))
4468 (modules '((guix build utils)))
4469 (snippet
4470 '(begin
4471 ;; Delete files that are under CC-NC-SA.
4472 (delete-file-recursively "inst/app/tools/help")
4473 #t))))
4474 (properties `((upstream-name . "radiant.data")))
4475 (build-system r-build-system)
4476 (propagated-inputs
4477 `(("r-base64enc" ,r-base64enc)
4478 ("r-broom" ,r-broom)
4479 ("r-car" ,r-car)
4480 ("r-curl" ,r-curl)
4481 ("r-dplyr" ,r-dplyr)
4482 ("r-dt" ,r-dt)
4483 ("r-glue" ,r-glue)
4484 ("r-ggplot2" ,r-ggplot2)
4485 ("r-gridextra" ,r-gridextra)
4486 ("r-import" ,r-import)
4487 ("r-jsonlite" ,r-jsonlite)
4488 ("r-knitr" ,r-knitr)
4489 ("r-lubridate" ,r-lubridate)
4490 ("r-magrittr" ,r-magrittr)
4491 ("r-markdown" ,r-markdown)
4492 ("r-plotly" ,r-plotly)
4493 ("r-psych" ,r-psych)
4494 ("r-readr" ,r-readr)
4495 ("r-readxl" ,r-readxl)
4496 ("r-rlang" ,r-rlang)
4497 ("r-rmarkdown" ,r-rmarkdown)
4498 ("r-rstudioapi" ,r-rstudioapi)
4499 ("r-scales" ,r-scales)
4500 ("r-shiny" ,r-shiny)
4501 ("r-shinyfiles" ,r-shinyfiles)
4502 ("r-shinyace" ,r-shinyace)
4503 ("r-stringi" ,r-stringi)
4504 ("r-tibble" ,r-tibble)
4505 ("r-tidyr" ,r-tidyr)
4506 ("r-writexl" ,r-writexl)))
4507 (home-page "https://github.com/radiant-rstats/radiant.data")
4508 (synopsis "Data menu for Radiant: business analytics using R and Shiny")
4509 (description
4510 "The Radiant Data menu includes interfaces for loading, saving, viewing,
4511 visualizing, summarizing, transforming, and combining data. It also contains
4512 functionality to generate reproducible reports of the analyses conducted in
4513 the application.")
4514 (license license:agpl3)))
4515
4516 (define-public r-algdesign
4517 (package
4518 (name "r-algdesign")
4519 (version "1.1-7.3")
4520 (source
4521 (origin
4522 (method url-fetch)
4523 (uri (cran-uri "AlgDesign" version))
4524 (sha256
4525 (base32
4526 "0bl7mx4dnmkgs2x1fj7cqnrp7jx18mqwxyga0rzlniq12h8mc3fz"))))
4527 (properties `((upstream-name . "AlgDesign")))
4528 (build-system r-build-system)
4529 (home-page "https://github.com/jvbraun/AlgDesign")
4530 (synopsis "Algorithmic experimental design")
4531 (description
4532 "This package provides tools to calculate exact and approximate theory
4533 experimental designs for D, A, and I criteria. Very large designs may be
4534 created. Experimental designs may be blocked or blocked designs created from
4535 a candidate list, using several criteria. The blocking can be done when whole
4536 and within plot factors interact.")
4537 (license license:gpl2+)))
4538
4539 (define-public r-signal
4540 (package
4541 (name "r-signal")
4542 (version "0.7-6")
4543 (source
4544 (origin
4545 (method url-fetch)
4546 (uri (cran-uri "signal" version))
4547 (sha256
4548 (base32
4549 "1vsxramz5qd9q9s3vlqzmfdpmwl2rhlb2n904zw6f0fg0xxjfq3b"))))
4550 (build-system r-build-system)
4551 (propagated-inputs `(("r-mass" ,r-mass)))
4552 (native-inputs `(("gfortran" ,gfortran)))
4553 (home-page "https://cran.r-project.org/web/packages/signal/")
4554 (synopsis "Signal processing")
4555 (description
4556 "This package provides a set of signal processing functions originally
4557 written for Matlab and GNU Octave. It includes filter generation utilities,
4558 filtering functions, resampling routines, and visualization of filter models.
4559 It also includes interpolation functions.")
4560 (license license:gpl2)))
4561
4562 (define-public r-gsubfn
4563 (package
4564 (name "r-gsubfn")
4565 (version "0.7")
4566 (source
4567 (origin
4568 (method url-fetch)
4569 (uri (cran-uri "gsubfn" version))
4570 (sha256
4571 (base32
4572 "00j6b8b6xsx6v370h220x233rpk6asca78165y3d48jpwvwisdc9"))))
4573 (build-system r-build-system)
4574 (propagated-inputs `(("r-proto" ,r-proto)))
4575 (home-page "http://gsubfn.googlecode.com")
4576 (synopsis "Utilities for strings and function arguments.")
4577 (description
4578 "This package provides @code{gsubfn} which is like @code{gsub} but can
4579 take a replacement function or certain other objects instead of the
4580 replacement string. Matches and back references are input to the replacement
4581 function and replaced by the function output. @code{gsubfn} can be used to
4582 split strings based on content rather than delimiters and for quasi-perl-style
4583 string interpolation. The package also has facilities for translating
4584 formulas to functions and allowing such formulas in function calls instead of
4585 functions.")
4586 (license license:gpl2+)))
4587
4588 (define-public r-sqldf
4589 (package
4590 (name "r-sqldf")
4591 (version "0.4-11")
4592 (source
4593 (origin
4594 (method url-fetch)
4595 (uri (cran-uri "sqldf" version))
4596 (sha256
4597 (base32
4598 "0q12vsb53p2wchgp8wfz5bk08wfnm0jxjrakclj4jyy6x3a7ksff"))))
4599 (build-system r-build-system)
4600 (propagated-inputs
4601 `(("r-chron" ,r-chron)
4602 ("r-dbi" ,r-dbi)
4603 ("r-gsubfn" ,r-gsubfn)
4604 ("r-proto" ,r-proto)
4605 ("r-rsqlite" ,r-rsqlite)))
4606 (home-page "https://github.com/ggrothendieck/sqldf")
4607 (synopsis "Manipulate R data frames using SQL")
4608 (description
4609 "The @code{sqldf} function is typically passed a single argument which is
4610 an SQL select statement where the table names are ordinary R data frame names.
4611 @code{sqldf} transparently sets up a database, imports the data frames into
4612 that database, performs the SQL statement and returns the result using a
4613 heuristic to determine which class to assign to each column of the returned
4614 data frame. The @code{sqldf} or @code{read.csv.sql} functions can also be
4615 used to read filtered files into R even if the original files are larger than
4616 R itself can handle.")
4617 (license license:gpl2)))
4618
4619 (define-public r-abind
4620 (package
4621 (name "r-abind")
4622 (version "1.4-5")
4623 (source
4624 (origin
4625 (method url-fetch)
4626 (uri (cran-uri "abind" version))
4627 (sha256
4628 (base32
4629 "0b1zd8jbnl6l292cr9rb50m09fy3ylxvzkpgi5lfb1nbzddcwfis"))))
4630 (build-system r-build-system)
4631 (home-page "https://cran.r-project.org/web/packages/abind/")
4632 (synopsis "Combine multidimensional arrays")
4633 (description
4634 "This package provides tools to combine multidimensional arrays into a
4635 single array. This is a generalization of @code{cbind} and @code{rbind}. It
4636 works with vectors, matrices, and higher-dimensional arrays. It also provides
4637 the functions @code{adrop}, @code{asub}, and @code{afill} for manipulating,
4638 extracting and replacing data in arrays.")
4639 (license license:lgpl2.0+)))
4640
4641 (define-public r-prroc
4642 (package
4643 (name "r-prroc")
4644 (version "1.3.1")
4645 (source
4646 (origin
4647 (method url-fetch)
4648 (uri (cran-uri "PRROC" version))
4649 (sha256
4650 (base32
4651 "1m28h8pcd78049lz2qixhkcr9h5b3jik3maqzfbvq9y58z71i4a7"))))
4652 (properties `((upstream-name . "PRROC")))
4653 (build-system r-build-system)
4654 (home-page "https://cran.r-project.org/web/packages/PRROC/")
4655 (synopsis "Precision-Recall and ROC curves for weighted and unweighted data")
4656 (description
4657 "This package computes the areas under the @dfn{precision-recall} (PR)
4658 and ROC curve for weighted (e.g. soft-labeled) and unweighted data. In
4659 contrast to other implementations, the interpolation between points of the PR
4660 curve is done by a non-linear piecewise function. In addition to the areas
4661 under the curves, the curves themselves can also be computed and plotted by a
4662 specific S3-method.")
4663 (license license:gpl3)))
4664
4665 (define-public r-vim
4666 (package
4667 (name "r-vim")
4668 (version "4.8.0")
4669 (source
4670 (origin
4671 (method url-fetch)
4672 (uri (cran-uri "VIM" version))
4673 (sha256
4674 (base32
4675 "08x4a4yzgp8adgrv7a3666yma4b60n64mcsnvhzmwdy023f4ysrw"))))
4676 (properties `((upstream-name . "VIM")))
4677 (build-system r-build-system)
4678 (propagated-inputs
4679 `(("r-car" ,r-car)
4680 ("r-colorspace" ,r-colorspace)
4681 ("r-data-table" ,r-data-table)
4682 ("r-e1071" ,r-e1071)
4683 ("r-laeken" ,r-laeken)
4684 ("r-mass" ,r-mass)
4685 ("r-nnet" ,r-nnet)
4686 ("r-ranger" ,r-ranger)
4687 ("r-rcpp" ,r-rcpp)
4688 ("r-robustbase" ,r-robustbase)
4689 ("r-sp" ,r-sp)
4690 ("r-vcd" ,r-vcd)))
4691 (home-page "https://github.com/alexkowa/VIM")
4692 (synopsis "Visualization and imputation of missing values")
4693 (description
4694 "This package provides tools for the visualization of missing and/or
4695 imputed values are introduced, which can be used for exploring the data and
4696 the structure of the missing and/or imputed values. Depending on this
4697 structure of the missing values, the corresponding methods may help to
4698 identify the mechanism generating the missing values and allows to explore the
4699 data including missing values. In addition, the quality of imputation can be
4700 visually explored using various univariate, bivariate, multiple and
4701 multivariate plot methods.")
4702 (license license:gpl2+)))
4703
4704 (define-public r-fnn
4705 (package
4706 (name "r-fnn")
4707 (version "1.1.3")
4708 (source
4709 (origin
4710 (method url-fetch)
4711 (uri (cran-uri "FNN" version))
4712 (sha256
4713 (base32
4714 "0cllqlnynm5yaj4r64mqyyfc8phkb38rwssq8k8ikgfgr4jklxny"))))
4715 (properties `((upstream-name . "FNN")))
4716 (build-system r-build-system)
4717 (home-page "https://cran.r-project.org/web/packages/FNN")
4718 (synopsis "Fast nearest neighbor search algorithms and applications")
4719 (description
4720 "This package provides cover-tree and kd-tree fast k-nearest neighbor
4721 search algorithms. Related applications including KNN classification,
4722 regression and information measures are implemented.")
4723 ;; The DESCRIPTION file erroneously states that GPL version 2.1 or
4724 ;; later can be used.
4725 (license license:gpl2+)))
4726
4727 (define-public r-smoother
4728 (package
4729 (name "r-smoother")
4730 (version "1.1")
4731 (source
4732 (origin
4733 (method url-fetch)
4734 (uri (cran-uri "smoother" version))
4735 (sha256
4736 (base32
4737 "0nqr1bvlr5bnasqg74zmknjjl4x28kla9h5cxpga3kq5z215pdci"))))
4738 (build-system r-build-system)
4739 (propagated-inputs
4740 `(("r-ttr" ,r-ttr)))
4741 (home-page "http://cran.r-project.org/web/packages/smoother")
4742 (synopsis "Functions relating to the smoothing of numerical data")
4743 (description
4744 "This package provides a collection of methods for smoothing numerical
4745 data, commencing with a port of the Matlab gaussian window smoothing function.
4746 In addition, several functions typically used in smoothing of financial data
4747 are included.")
4748 (license license:gpl2)))
4749
4750 (define-public r-riverplot
4751 (package
4752 (name "r-riverplot")
4753 (version "0.6")
4754 (source
4755 (origin
4756 (method url-fetch)
4757 (uri (cran-uri "riverplot" version))
4758 (sha256
4759 (base32
4760 "0q1icpny8nkxyjhawyjzwrw8qlz0ayn2xyrsqrm4vkxyv6c9xk8z"))))
4761 (build-system r-build-system)
4762 (home-page "https://logfc.wordpress.com")
4763 (synopsis "Sankey or ribbon plots")
4764 (description
4765 "Sankey plots are a type of diagram that is convenient to illustrate how
4766 flow of information, resources etc. separates and joins, much like observing
4767 how rivers split and merge. For example, they can be used to compare
4768 different clusterings. This package provides an implementation of Sankey
4769 plots for R.")
4770 (license license:gpl2+)))
4771
4772 (define-public r-dyn
4773 (package
4774 (name "r-dyn")
4775 (version "0.2-9.6")
4776 (source
4777 (origin
4778 (method url-fetch)
4779 (uri (cran-uri "dyn" version))
4780 (sha256
4781 (base32
4782 "16fqv9k7yxdgybwzafjkyqm16qpgqz13lcjpi6a1nc8xbzlzh0gb"))))
4783 (build-system r-build-system)
4784 (propagated-inputs
4785 `(("r-zoo" ,r-zoo)))
4786 (home-page "https://cran.r-project.org/web/packages/dyn")
4787 (synopsis "Time series regression")
4788 (description
4789 "This package provides the dyn class interfaces @code{ts}, @code{irts},
4790 @code{zoo} and @code{zooreg} time series classes to @code{lm}, @code{glm},
4791 @code{loess}, @code{quantreg::rq}, @code{MASS::rlm},
4792 @code{MCMCpack::MCMCregress()}, @code{quantreg::rq()},
4793 @code{randomForest::randomForest()} and other regression functions, allowing
4794 those functions to be used with time series including specifications that may
4795 contain lags, diffs and missing values.")
4796 ;; Any GPL version.
4797 (license license:gpl2+)))
4798
4799 (define-public r-catdap
4800 (package
4801 (name "r-catdap")
4802 (version "1.3.4")
4803 (source
4804 (origin
4805 (method url-fetch)
4806 (uri (cran-uri "catdap" version))
4807 (sha256
4808 (base32
4809 "0i877l61f6c75pczi235rzci67w29zv1d7z5zn5p5ymndclvlpl2"))))
4810 (build-system r-build-system)
4811 (native-inputs
4812 `(("gfortran" ,gfortran)))
4813 (home-page "https://cran.r-project.org/web/packages/catdap/")
4814 (synopsis "Tools for categorical data analysis")
4815 (description
4816 "This package provides functions for analyzing multivariate data.
4817 Dependencies of the distribution of the specified variable (response
4818 variable) to other variables (explanatory variables) are derived and
4819 evaluated by the @dfn{Akaike Information Criterion} (AIC).")
4820 (license license:gpl2+)))
4821
4822 (define-public r-arules
4823 (package
4824 (name "r-arules")
4825 (version "1.6-3")
4826 (source
4827 (origin
4828 (method url-fetch)
4829 (uri (cran-uri "arules" version))
4830 (sha256
4831 (base32
4832 "0dimrq1pz449z0mz9m87nhm5bpc0v789bcc3lghhh97wwi5zah9y"))))
4833 (build-system r-build-system)
4834 (propagated-inputs
4835 `(("r-matrix" ,r-matrix)))
4836 (home-page "https://github.com/mhahsler/arules")
4837 (synopsis "Mining association rules and frequent itemsets")
4838 (description
4839 "This package provides an infrastructure for representing, manipulating
4840 and analyzing transaction data and patterns (frequent itemsets and association rules).
4841 It also provides C implementations of the association mining algorithms Apriori
4842 and Eclat.")
4843 (license license:gpl3)))
4844
4845 (define-public r-parsedate
4846 (package
4847 (name "r-parsedate")
4848 (version "1.1.3")
4849 (source
4850 (origin
4851 (method url-fetch)
4852 (uri (cran-uri "parsedate" version))
4853 (sha256
4854 (base32
4855 "0mg7hbm3903iwvmpn51gjpaaq03rsp72hjb1g8h5g84r81iha002"))))
4856 (build-system r-build-system)
4857 (home-page "https://github.com/gaborcsardi/parsedate")
4858 (synopsis
4859 "Recognize and parse dates in various formats")
4860 (description
4861 "This package provides three functions for dealing with dates:
4862 @code{parse_iso_8601} recognizes and parses all valid ISO 8601 date and
4863 time formats, @code{parse_date} parses dates in unspecified formats,
4864 and @code{format_iso_8601} formats a date in ISO 8601 format.")
4865 (license license:gpl2)))
4866
4867 (define-public r-abc-data
4868 (package
4869 (name "r-abc-data")
4870 (version "1.0")
4871 (source
4872 (origin
4873 (method url-fetch)
4874 (uri (cran-uri "abc.data" version))
4875 (sha256
4876 (base32
4877 "1bv1n68ah714ws58cf285n2s2v5vn7382lfjca4jxph57lyg8hmj"))))
4878 (properties `((upstream-name . "abc.data")))
4879 (build-system r-build-system)
4880 (home-page "https://cran.r-project.org/web/packages/abc.data/")
4881 (synopsis "Data for Approximate Bayesian Computation (ABC) package")
4882 (description
4883 "This package contains data which are used by functions of the abc
4884 package which implements several @dfn{Approximate Bayesian Computation} (ABC)
4885 algorithms for performing parameter estimation, model selection, and
4886 goodness-of-fit.")
4887 (license license:gpl3+)))
4888
4889 (define-public r-abc
4890 (package
4891 (name "r-abc")
4892 (version "2.1")
4893 (source
4894 (origin
4895 (method url-fetch)
4896 (uri (cran-uri "abc" version))
4897 (sha256
4898 (base32
4899 "0ngzaaz2y2s03fhngvwipmy4kq38xrmyddaz6a6l858rxvadrlhb"))))
4900 (build-system r-build-system)
4901 (propagated-inputs
4902 `(("r-abc-data" ,r-abc-data)
4903 ("r-locfit" ,r-locfit)
4904 ("r-mass" ,r-mass)
4905 ("r-nnet" ,r-nnet)
4906 ("r-quantreg" ,r-quantreg)))
4907 (home-page "https://cran.r-project.org/web/packages/abc/")
4908 (synopsis "Tools for Approximate Bayesian Computation (ABC)")
4909 (description
4910 "This package implements several @dfn{Approximate Bayesian
4911 Computation} (ABC) algorithms for performing parameter estimation, model
4912 selection, and goodness-of-fit. Cross-validation tools are also available for
4913 measuring the accuracy of ABC estimates, and to calculate the
4914 misclassification probabilities of different models.")
4915 (license license:gpl3+)))
4916
4917 (define-public r-zip
4918 (package
4919 (name "r-zip")
4920 (version "2.0.1")
4921 (source
4922 (origin
4923 (method url-fetch)
4924 (uri (cran-uri "zip" version))
4925 (sha256
4926 (base32
4927 "0cchbzp2s2qz7r4n9qdwgfgik5xzr0dzxmj25r8435i85k86ysi1"))))
4928 (build-system r-build-system)
4929 (home-page "https://github.com/gaborcsardi/zip")
4930 (synopsis "Cross-platform Zip compression")
4931 (description
4932 "This package provides a cross-platform Zip compression library for R.
4933 It is a replacement for the @code{zip} function, that does not require any
4934 additional external tools on any platform.")
4935 (license license:cc0)))
4936
4937 (define-public r-openxlsx
4938 (package
4939 (name "r-openxlsx")
4940 (version "4.1.0")
4941 (source
4942 (origin
4943 (method url-fetch)
4944 (uri (cran-uri "openxlsx" version))
4945 (sha256
4946 (base32
4947 "1n7z22pm78xa77fvn77kdn68az6xzxk36y11sqf0w6h6adri4yxb"))))
4948 (build-system r-build-system)
4949 (propagated-inputs
4950 `(("r-rcpp" ,r-rcpp)
4951 ("r-zip" ,r-zip)))
4952 (home-page "https://github.com/awalker89/openxlsx")
4953 (synopsis "Read, write and edit XLSX files")
4954 (description
4955 "This package simplifies the creation of Excel @code{.xlsx} files by
4956 providing a high level interface to writing, styling and editing worksheets.
4957 Through the use of Rcpp, read/write times are comparable to the @code{xlsx}
4958 and @code{XLConnect} packages with the added benefit of removing the
4959 dependency on Java.")
4960 (license license:gpl3)))
4961
4962 (define-public r-rio
4963 (package
4964 (name "r-rio")
4965 (version "0.5.16")
4966 (source
4967 (origin
4968 (method url-fetch)
4969 (uri (cran-uri "rio" version))
4970 (sha256
4971 (base32
4972 "0rfl56fdawlhc98451a9lcb6a6m56kw0i7dvd5hx58z025d8vsyk"))))
4973 (build-system r-build-system)
4974 (propagated-inputs
4975 `(("r-curl" ,r-curl)
4976 ("r-data-table" ,r-data-table)
4977 ("r-foreign" ,r-foreign)
4978 ("r-haven" ,r-haven)
4979 ("r-openxlsx" ,r-openxlsx)
4980 ("r-readxl" ,r-readxl)
4981 ("r-tibble" ,r-tibble)))
4982 (home-page "https://github.com/leeper/rio")
4983 (synopsis "Swiss-army knife for data I/O")
4984 (description
4985 "This package provides streamlined data import and export infrastructure
4986 by making assumptions that the user is probably willing to make: @code{import}
4987 and @code{export} determine the data structure from the file extension,
4988 reasonable defaults are used for data import and export (e.g.,
4989 @code{stringsAsFactors=FALSE}), web-based import is natively
4990 supported (including from SSL/HTTPS), compressed files can be read directly
4991 without explicit decompression, and fast import packages are used where
4992 appropriate. An additional convenience function, @code{convert}, provides a
4993 simple method for converting between file types.")
4994 (license license:gpl2)))
4995
4996 (define-public r-maptools
4997 (package
4998 (name "r-maptools")
4999 (version "0.9-5")
5000 (source
5001 (origin
5002 (method url-fetch)
5003 (uri (cran-uri "maptools" version))
5004 (sha256
5005 (base32
5006 "1pbvcn9xfx0hxq1ppbfg9xm5j04q4c15nj983yjmg7dlkzq135ax"))))
5007 (build-system r-build-system)
5008 (propagated-inputs
5009 `(("r-foreign" ,r-foreign)
5010 ("r-lattice" ,r-lattice)
5011 ("r-sp" ,r-sp)))
5012 (home-page "http://r-forge.r-project.org/projects/maptools/")
5013 (synopsis "Tools for reading and handling spatial objects")
5014 (description
5015 "This package provides a set of tools for manipulating and reading
5016 geographic data, in particular ESRI Shapefiles. It includes binary access to
5017 GSHHG shoreline files. The package also provides interface wrappers for
5018 exchanging spatial objects with other R packages.")
5019 ;; The C source files from shapelib are released under the Expat license.
5020 ;; The R code is released under GPL version 2 or later.
5021 (license (list license:gpl2+
5022 license:expat))))
5023
5024 (define-public r-later
5025 (package
5026 (name "r-later")
5027 (version "0.8.0")
5028 (source
5029 (origin
5030 (method url-fetch)
5031 (uri (cran-uri "later" version))
5032 (sha256
5033 (base32
5034 "08g503xjxrfxvrzj0cavsrz4m8ykbha64344j1w2r6v17js2hakb"))))
5035 (build-system r-build-system)
5036 (propagated-inputs
5037 `(("r-bh" ,r-bh)
5038 ("r-rcpp" ,r-rcpp)
5039 ("r-rlang" ,r-rlang)))
5040 (home-page "https://github.com/r-lib/later")
5041 (synopsis "Utilities for delaying function execution")
5042 (description
5043 "This package provides tools to execute arbitrary R or C functions some
5044 time after the current time, after the R execution stack has emptied.")
5045 (license license:gpl2+)))
5046
5047 (define-public r-promises
5048 (package
5049 (name "r-promises")
5050 (version "1.0.1")
5051 (source
5052 (origin
5053 (method url-fetch)
5054 (uri (cran-uri "promises" version))
5055 (sha256
5056 (base32
5057 "0n2mlv6bvfb4yhgcml696l9vkbw21pz0smqylivr606z99rwgny2"))))
5058 (build-system r-build-system)
5059 (propagated-inputs
5060 `(("r-later" ,r-later)
5061 ("r-magrittr" ,r-magrittr)
5062 ("r-r6" ,r-r6)
5063 ("r-rcpp" ,r-rcpp)
5064 ("r-rlang" ,r-rlang)))
5065 (home-page "https://rstudio.github.io/promises")
5066 (synopsis "Abstractions for promise-based asynchronous programming")
5067 (description
5068 "This package provides fundamental abstractions for doing asynchronous
5069 programming in R using promises. Asynchronous programming is useful for
5070 allowing a single R process to orchestrate multiple tasks in the background
5071 while also attending to something else. Semantics are similar to JavaScript
5072 promises, but with a syntax that is idiomatic R.")
5073 (license license:expat)))
5074
5075 (define-public r-dosnow
5076 (package
5077 (name "r-dosnow")
5078 (version "1.0.16")
5079 (source
5080 (origin
5081 (method url-fetch)
5082 (uri (cran-uri "doSNOW" version))
5083 (sha256
5084 (base32
5085 "13ir4a8252h4yvp5ir9xnwack1kn58i4ny6sf2qdc12zspn3850n"))))
5086 (properties `((upstream-name . "doSNOW")))
5087 (build-system r-build-system)
5088 (propagated-inputs
5089 `(("r-foreach" ,r-foreach)
5090 ("r-iterators" ,r-iterators)
5091 ("r-snow" ,r-snow)))
5092 (home-page "https://cran.r-project.org/web/packages/doSNOW")
5093 (synopsis "Foreach parallel adaptor for the snow package")
5094 (description
5095 "This package provides a parallel backend for the @code{%dopar%} function
5096 using the @code{snow} package.")
5097 (license license:gpl2)))
5098
5099 (define-public r-snowfall
5100 (package
5101 (name "r-snowfall")
5102 (version "1.84-6.1")
5103 (source (origin
5104 (method url-fetch)
5105 (uri (cran-uri "snowfall" version))
5106 (sha256
5107 (base32 "13941rlw1jsdjsndp1plzj1cq5aqravizkrqn6l25r9im7rnsi2w"))))
5108 (build-system r-build-system)
5109 (propagated-inputs
5110 `(("r-snow" ,r-snow)))
5111 (home-page "http://cran.r-project.org/web/packages/snowfall/")
5112 (synopsis "Easier cluster computing")
5113 (description "This package is a usability wrapper around snow for easier
5114 development of parallel R programs. This package offers e.g. extended error
5115 checks, and additional functions. All functions work in sequential mode, too,
5116 if no cluster is present or wished. The package is also designed as connector
5117 to the cluster management tool @code{sfCluster}, but can also used without
5118 it.")
5119 (license license:gpl2+)))
5120
5121 (define-public r-rappdirs
5122 (package
5123 (name "r-rappdirs")
5124 (version "0.3.1")
5125 (source
5126 (origin
5127 (method url-fetch)
5128 (uri (cran-uri "rappdirs" version))
5129 (sha256
5130 (base32
5131 "0ji6sg3bdn5gazkq14xmmcq7jnbsyxw4lzmmbgv6526j2vn93n1g"))))
5132 (build-system r-build-system)
5133 (home-page "https://cran.r-project.org/web/packages/rappdirs/")
5134 (synopsis "Determine where to save data, caches, and logs")
5135 (description
5136 "This package provides an easy way to determine which directories on the
5137 user's computer should be used to save data, caches and logs. It is a port of
5138 Python's @url{https://github.com/ActiveState/appdirs,Appdirs} to R.")
5139 (license license:expat)))
5140
5141 (define-public r-learnr
5142 (package
5143 (name "r-learnr")
5144 (version "0.9.2.1")
5145 (source
5146 (origin
5147 (method url-fetch)
5148 (uri (cran-uri "learnr" version))
5149 (sha256
5150 (base32
5151 "0jbk0g6fkw7zs8ykzhsvh9vvz8xmc4v03bqzjsa5mmpxpqan5vx5"))))
5152 (build-system r-build-system)
5153 (propagated-inputs
5154 `(("r-evaluate" ,r-evaluate)
5155 ("r-htmltools" ,r-htmltools)
5156 ("r-htmlwidgets" ,r-htmlwidgets)
5157 ("r-jsonlite" ,r-jsonlite)
5158 ("r-knitr" ,r-knitr)
5159 ("r-markdown" ,r-markdown)
5160 ("r-rappdirs" ,r-rappdirs)
5161 ("r-rmarkdown" ,r-rmarkdown)
5162 ("r-rprojroot" ,r-rprojroot)
5163 ("r-shiny" ,r-shiny)
5164 ("r-withr" ,r-withr)))
5165 (home-page "https://rstudio.github.io/learnr/")
5166 (synopsis "Interactive tutorials for R")
5167 (description
5168 "This package provides tools to create interactive tutorials using R
5169 Markdown. Use a combination of narrative, figures, videos, exercises, and
5170 quizzes to create self-paced tutorials for learning about R and R packages.")
5171 (license license:asl2.0)))
5172
5173 (define-public r-analytics
5174 (package
5175 (name "r-analytics")
5176 (version "3.0")
5177 (source
5178 (origin
5179 (method url-fetch)
5180 (uri (cran-uri "analytics" version))
5181 (sha256
5182 (base32
5183 "0js3c8lwj3knccb55nq03cbjlf4w390p9aid2mi5x80l3ayd9in1"))))
5184 (build-system r-build-system)
5185 (propagated-inputs
5186 `(("r-car" ,r-car)
5187 ("r-cluster" ,r-cluster)
5188 ("r-fractal" ,r-fractal)
5189 ("r-lmtest" ,r-lmtest)
5190 ("r-mass" ,r-mass)
5191 ("r-np" ,r-np)
5192 ("r-powerplus" ,r-powerplus)
5193 ("r-robust" ,r-robust)
5194 ("r-trend" ,r-trend)
5195 ("r-tsa" ,r-tsa)
5196 ("r-urca" ,r-urca)
5197 ("r-vim" ,r-vim)))
5198 (home-page "https://cran.r-project.org/web/packages/analytics/")
5199 (synopsis "Collection of data analysis tools")
5200 (description
5201 "This package is a collection of data analysis tools. It includes tools
5202 for regression outlier detection in a fitted linear model, stationary
5203 bootstrap using a truncated geometric distribution, a comprehensive test for
5204 weak stationarity, column means by group, weighted biplots, and a heuristic to
5205 obtain a better initial configuration in non-metric MDS.")
5206 (license license:gpl2)))
5207
5208 (define-public r-reticulate
5209 (package
5210 (name "r-reticulate")
5211 (version "1.12")
5212 (source
5213 (origin
5214 (method url-fetch)
5215 (uri (cran-uri "reticulate" version))
5216 (sha256
5217 (base32
5218 "0pqr1rcs8yg9nlh729mvlws93cqhpmv49j9bcgarh7vxzkwyv0kb"))))
5219 (build-system r-build-system)
5220 (inputs `(("python" ,python)))
5221 (propagated-inputs
5222 `(("r-jsonlite" ,r-jsonlite)
5223 ("r-matrix" ,r-matrix)
5224 ("r-rcpp" ,r-rcpp)))
5225 (home-page "https://github.com/rstudio/reticulate")
5226 (synopsis "R interface to Python")
5227 (description
5228 "This package provides an interface from R to Python modules, classes,
5229 and functions. When calling into Python, R data types are automatically
5230 converted to their equivalent Python types. When values are returned from
5231 Python to R they are converted back to R types.")
5232 (license license:asl2.0)))
5233
5234 (define-public r-bibtex
5235 (package
5236 (name "r-bibtex")
5237 (version "0.4.2")
5238 (source
5239 (origin
5240 (method url-fetch)
5241 (uri (cran-uri "bibtex" version))
5242 (sha256
5243 (base32
5244 "0wl3925ryd54g1nv3ncwllc493d39dpgy5md61940h69c0van1hz"))))
5245 (build-system r-build-system)
5246 (propagated-inputs `(("r-stringr" ,r-stringr)))
5247 (home-page "https://github.com/romainfrancois/bibtex")
5248 (synopsis "Bibtex parser")
5249 (description "This package provides a utility for R to parse a bibtex
5250 file.")
5251 (license license:gpl2+)))
5252
5253 (define-public r-ggseqlogo
5254 (package
5255 (name "r-ggseqlogo")
5256 (version "0.1")
5257 (source
5258 (origin
5259 (method url-fetch)
5260 (uri (cran-uri "ggseqlogo" version))
5261 (sha256
5262 (base32
5263 "13q6kcpxrqxqbji889fx63p0nsi08lk5yymkchig75r5k1d18ky1"))))
5264 (build-system r-build-system)
5265 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
5266 (home-page "https://github.com/omarwagih/ggseqlogo")
5267 (synopsis "ggplot2 extension for drawing genetic sequence logos")
5268 (description
5269 "The range of functions provided by this package makes it possible to
5270 draw highly versatile genomic sequence logos. Features include, but are not
5271 limited to, modifying colour schemes and fonts used to draw the logo,
5272 generating multiple logo plots, and aiding the visualisation with annotations.
5273 Sequence logos can easily be combined with other ggplot2 plots.")
5274 ;; Unspecified version of the LGPL.
5275 (license license:lgpl3+)))
5276
5277 (define-public r-ggsci
5278 (package
5279 (name "r-ggsci")
5280 (version "2.9")
5281 (source
5282 (origin
5283 (method url-fetch)
5284 (uri (cran-uri "ggsci" version))
5285 (sha256
5286 (base32
5287 "0g73x6grbka7ahjh6z23m3wrcifp5rdfdiasbl8lq4sp6rplxwaa"))))
5288 (build-system r-build-system)
5289 (propagated-inputs
5290 `(("r-ggplot2" ,r-ggplot2)
5291 ("r-scales" ,r-scales)))
5292 (home-page "https://nanx.me/ggsci/")
5293 (synopsis "Scientific journal and sci-fi themed color palettes for ggplot2")
5294 (description
5295 "This package provides a collection of ggplot2 color palettes inspired by
5296 plots in scientific journals, data visualization libraries, science fiction
5297 movies, and TV shows.")
5298 (license license:gpl3)))
5299
5300 (define-public r-ggsignif
5301 (package
5302 (name "r-ggsignif")
5303 (version "0.5.0")
5304 (source
5305 (origin
5306 (method url-fetch)
5307 (uri (cran-uri "ggsignif" version))
5308 (sha256
5309 (base32
5310 "0z04g5kqdj66fyfxb5d2m7njkqd7idbiy4xgsnxdh5pbh3cr643x"))))
5311 (build-system r-build-system)
5312 (propagated-inputs
5313 `(("r-ggplot2" ,r-ggplot2)))
5314 (home-page "https://github.com/const-ae/ggsignif")
5315 (synopsis "Significance brackets for ggplot2")
5316 (description
5317 "Enrich your ggplots with group-wise comparisons. This package provides
5318 an easy way to indicate if two groups are significantly different. Commonly
5319 this is shown by a bracket on top connecting the groups of interest which
5320 itself is annotated with the level of significance. The package provides a
5321 single layer that takes the groups for comparison and the test as arguments
5322 and adds the annotation to the plot.")
5323 (license license:gpl3)))
5324
5325 (define-public r-ggpubr
5326 (package
5327 (name "r-ggpubr")
5328 (version "0.2")
5329 (source
5330 (origin
5331 (method url-fetch)
5332 (uri (cran-uri "ggpubr" version))
5333 (sha256
5334 (base32
5335 "0rkpcjb1x7lvhj68aam5airbi534jqyiq12x5xk40a25iifhghq6"))))
5336 (build-system r-build-system)
5337 (propagated-inputs
5338 `(("r-cowplot" ,r-cowplot)
5339 ("r-dplyr" ,r-dplyr)
5340 ("r-ggplot2" ,r-ggplot2)
5341 ("r-ggrepel" ,r-ggrepel)
5342 ("r-ggsci" ,r-ggsci)
5343 ("r-ggsignif" ,r-ggsignif)
5344 ("r-glue" ,r-glue)
5345 ("r-gridextra" ,r-gridextra)
5346 ("r-magrittr" ,r-magrittr)
5347 ("r-polynom" ,r-polynom)
5348 ("r-purrr" ,r-purrr)
5349 ("r-scales" ,r-scales)
5350 ("r-tidyr" ,r-tidyr)))
5351 (home-page "http://www.sthda.com/english/rpkgs/ggpubr")
5352 (synopsis "ggplot2-based publication-ready plots")
5353 (description
5354 "The ggplot2 package is an excellent and flexible package for elegant
5355 data visualization in R. However the default generated plots require some
5356 formatting before we can send them for publication. The ggpubr package
5357 provides some easy-to-use functions for creating and customizing ggplot2-based
5358 publication-ready plots.")
5359 (license license:gpl2)))
5360
5361 (define-public r-ellipse
5362 (package
5363 (name "r-ellipse")
5364 (version "0.4.1")
5365 (source
5366 (origin
5367 (method url-fetch)
5368 (uri (cran-uri "ellipse" version))
5369 (sha256
5370 (base32
5371 "0g82vc51m3c1k0hnpp2zla6amxxgk2mmkl8ssnsc49jv3599r6hs"))))
5372 (build-system r-build-system)
5373 (home-page "https://cran.r-project.org/web/packages/ellipse/")
5374 (synopsis "Functions for drawing ellipses and ellipse-like confidence regions")
5375 (description
5376 "This package contains various routines for drawing ellipses and
5377 ellipse-like confidence regions, implementing the plots described in Murdoch
5378 and Chow (1996), A graphical display of large correlation matrices, The
5379 American Statistician 50, 178-180. There are also routines implementing the
5380 profile plots described in Bates and Watts (1988), Nonlinear Regression
5381 Analysis and its Applications.")
5382 (license license:gpl2+)))
5383
5384 (define-public r-flashclust
5385 (package
5386 (name "r-flashclust")
5387 (version "1.01-2")
5388 (source
5389 (origin
5390 (method url-fetch)
5391 (uri (cran-uri "flashClust" version))
5392 (sha256
5393 (base32
5394 "0l4lpz451ll7f7lfxmb7ds24ppzhfg1c3ypvydglcc35p2dq99s8"))))
5395 (properties `((upstream-name . "flashClust")))
5396 (build-system r-build-system)
5397 (native-inputs `(("gfortran" ,gfortran)))
5398 (home-page "https://cran.r-project.org/web/packages/flashClust/")
5399 (synopsis "Implementation of optimal hierarchical clustering")
5400 (description
5401 "This package provides a fast implementation of hierarchical
5402 clustering.")
5403 (license license:gpl2+)))
5404
5405 (define-public r-factominer
5406 (package
5407 (name "r-factominer")
5408 (version "1.41")
5409 (source
5410 (origin
5411 (method url-fetch)
5412 (uri (cran-uri "FactoMineR" version))
5413 (sha256
5414 (base32
5415 "1h20hydav6l2b7bngqw1av4l5rrh0wk58nhailga1f4qw9lrv259"))))
5416 (properties `((upstream-name . "FactoMineR")))
5417 (build-system r-build-system)
5418 (propagated-inputs
5419 `(("r-car" ,r-car)
5420 ("r-cluster" ,r-cluster)
5421 ("r-ellipse" ,r-ellipse)
5422 ("r-flashclust" ,r-flashclust)
5423 ("r-lattice" ,r-lattice)
5424 ("r-leaps" ,r-leaps)
5425 ("r-mass" ,r-mass)
5426 ("r-scatterplot3d" ,r-scatterplot3d)))
5427 (home-page "http://factominer.free.fr")
5428 (synopsis "Multivariate exploratory data analysis and data mining")
5429 (description
5430 "This package provides exploratory data analysis methods to summarize,
5431 visualize and describe datasets. The main principal component methods are
5432 available, those with the largest potential in terms of applications:
5433 principal component analysis (PCA) when variables are quantitative,
5434 correspondence analysis (CA) and multiple correspondence analysis (MCA) when
5435 variables are categorical, Multiple Factor Analysis when variables are
5436 structured in groups, etc. and hierarchical cluster analysis.")
5437 (license license:gpl2+)))
5438
5439 (define-public r-factoextra
5440 (package
5441 (name "r-factoextra")
5442 (version "1.0.5")
5443 (source
5444 (origin
5445 (method url-fetch)
5446 (uri (cran-uri "factoextra" version))
5447 (sha256
5448 (base32
5449 "1l6m8k7qhdw8ndar8nhmym0lfyd1i2iszl1cicjax0vq23ss6xw1"))))
5450 (build-system r-build-system)
5451 (propagated-inputs
5452 `(("r-abind" ,r-abind)
5453 ("r-cluster" ,r-cluster)
5454 ("r-dendextend" ,r-dendextend)
5455 ("r-factominer" ,r-factominer)
5456 ("r-ggplot2" ,r-ggplot2)
5457 ("r-ggpubr" ,r-ggpubr)
5458 ("r-ggrepel" ,r-ggrepel)
5459 ("r-reshape2" ,r-reshape2)
5460 ("r-tidyr" ,r-tidyr)))
5461 (home-page "http://www.sthda.com/english/rpkgs/factoextra")
5462 (synopsis "Extract and visualize the results of multivariate data analyses")
5463 (description
5464 "This package provides some easy-to-use functions to extract and
5465 visualize the output of multivariate data analyses, including
5466 @code{PCA} (Principal Component Analysis), @code{CA} (Correspondence
5467 Analysis), @code{MCA} (Multiple Correspondence Analysis), @code{FAMD} (Factor
5468 Analysis of Mixed Data), @code{MFA} (Multiple Factor Analysis) and
5469 @code{HMFA} (Hierarchical Multiple Factor Analysis) functions from different R
5470 packages. It contains also functions for simplifying some clustering analysis
5471 steps and provides ggplot2-based elegant data visualization.")
5472 (license license:gpl2)))
5473
5474 (define-public r-fansi
5475 (package
5476 (name "r-fansi")
5477 (version "0.4.0")
5478 (source
5479 (origin
5480 (method url-fetch)
5481 (uri (cran-uri "fansi" version))
5482 (sha256
5483 (base32
5484 "02f2rx7v7wz6w97m2slwky2i5y8f9iafycmkyr3siy3z3k8fj171"))))
5485 (build-system r-build-system)
5486 (native-inputs
5487 `(("r-knitr" ,r-knitr))) ; for vignettes
5488 (home-page "https://github.com/brodieG/fansi")
5489 (synopsis "ANSI control sequence aware string functions")
5490 (description
5491 "This package provides counterparts to R string manipulation functions
5492 that account for the effects of ANSI text formatting control sequences.")
5493 (license license:gpl2+)))
5494
5495 (define-public r-nbclust
5496 (package
5497 (name "r-nbclust")
5498 (version "3.0")
5499 (source
5500 (origin
5501 (method url-fetch)
5502 (uri (cran-uri "NbClust" version))
5503 (sha256
5504 (base32
5505 "1vwb48zy6ln1ddpqmfngii1i80n8qmqyxnzdp6gbaq96lakl3w3c"))))
5506 (properties `((upstream-name . "NbClust")))
5507 (build-system r-build-system)
5508 (home-page "https://sites.google.com/site/malikacharrad/research/nbclust-package")
5509 (synopsis "Determine the best number of clusters in a data set")
5510 (description
5511 "NbClust provides 30 indexes for determining the optimal number of
5512 clusters in a data set and offers the best clustering scheme from different
5513 results to the user.")
5514 (license license:gpl2)))
5515
5516 (define-public r-hdf5r
5517 (package
5518 (name "r-hdf5r")
5519 (version "1.2.0")
5520 (source
5521 (origin
5522 (method url-fetch)
5523 (uri (cran-uri "hdf5r" version))
5524 (sha256
5525 (base32
5526 "10gynjwaaxks8y9c2fl8k040j0nbwn372nil70009yfk9wrkx0aq"))))
5527 (build-system r-build-system)
5528 (inputs
5529 `(("hdf5" ,hdf5)
5530 ("zlib" ,zlib)))
5531 (propagated-inputs
5532 `(("r-bit64" ,r-bit64)
5533 ("r-r6" ,r-r6)))
5534 (home-page "https://hhoeflin.github.io/hdf5r")
5535 (synopsis "Interface to the HDF5 binary data format")
5536 (description
5537 "HDF5 is a data model, library and file format for storing and managing
5538 large amounts of data. This package provides a nearly feature complete,
5539 object oriented wrapper for the HDF5 API using R6 classes. Additionally,
5540 functionality is added so that HDF5 objects behave very similar to their
5541 corresponding R counterparts.")
5542 (license license:asl2.0)))
5543
5544 (define-public r-itertools
5545 (package
5546 (name "r-itertools")
5547 (version "0.1-3")
5548 (source
5549 (origin
5550 (method url-fetch)
5551 (uri (cran-uri "itertools" version))
5552 (sha256
5553 (base32
5554 "1ls5biiva10pb1dj3ph4griykb9vam02hkrdmlr5a5wf660hg6xn"))))
5555 (build-system r-build-system)
5556 (propagated-inputs
5557 `(("r-iterators" ,r-iterators)))
5558 (home-page "https://cran.r-project.org/web/packages/itertools/")
5559 (synopsis "Iterator tools")
5560 (description
5561 "This package provides various tools for creating iterators, many
5562 patterned after functions in the Python @code{itertools} module, and others
5563 patterned after functions in the snow package.")
5564 (license license:gpl2)))
5565
5566 (define-public r-polynom
5567 (package
5568 (name "r-polynom")
5569 (version "1.4-0")
5570 (source
5571 (origin
5572 (method url-fetch)
5573 (uri (cran-uri "polynom" version))
5574 (sha256
5575 (base32
5576 "1pflscwc0qzdf0y60j7s0dkglgmz18xajywfbn6s263idyr8idy5"))))
5577 (build-system r-build-system)
5578 (home-page "https://cran.r-project.org/web/packages/polynom/")
5579 (synopsis "Functions for univariate polynomial manipulations")
5580 (description
5581 "This package provides a collection of functions to implement a class for
5582 univariate polynomial manipulations.")
5583 (license license:gpl2)))
5584
5585 (define-public r-gbrd
5586 (package
5587 (name "r-gbrd")
5588 (version "0.4-11")
5589 (source
5590 (origin
5591 (method url-fetch)
5592 (uri (cran-uri "gbRd" version))
5593 (sha256
5594 (base32
5595 "06x97rw5i6v6cgjxkfhxnw4dn7lghn5q6ra7ri5ag1x9dkfzcl82"))))
5596 (properties `((upstream-name . "gbRd")))
5597 (build-system r-build-system)
5598 (home-page "https://cran.r-project.org/web/packages/gbRd/")
5599 (synopsis "Utilities for processing Rd objects and files")
5600 (description
5601 "This package provides utilities for processing Rd objects and files.
5602 Extract argument descriptions and other parts of the help pages of
5603 functions.")
5604 (license license:gpl2+)))
5605
5606 (define-public r-rjags
5607 (package
5608 (name "r-rjags")
5609 (version "4-8")
5610 (source
5611 (origin
5612 (method url-fetch)
5613 (uri (cran-uri "rjags" version))
5614 (sha256
5615 (base32
5616 "17xmjksj69f9wk4x71jxk4cgiqhaf2fj6bjm0mgzp4qln5x84a8m"))))
5617 (build-system r-build-system)
5618 (propagated-inputs
5619 `(("r-coda" ,r-coda)))
5620 (inputs
5621 `(("jags" ,jags)))
5622 (native-inputs
5623 `(("pkg-config" ,pkg-config)))
5624 (home-page "http://mcmc-jags.sourceforge.net")
5625 (synopsis "Bayesian graphical models using MCMC")
5626 (description
5627 "This package provides an R interface to the JAGS MCMC library. JAGS is
5628 Just Another Gibbs Sampler. It is a program for analysis of Bayesian
5629 hierarchical models using Markov Chain Monte Carlo (MCMC) simulation.")
5630 (license license:gpl2)))
5631
5632 (define-public r-rdpack
5633 (package
5634 (name "r-rdpack")
5635 (version "0.11-0")
5636 (source
5637 (origin
5638 (method url-fetch)
5639 (uri (cran-uri "Rdpack" version))
5640 (sha256
5641 (base32
5642 "11cd27s6zp5cxnwxcvz6rjf00y0r7aq8ywhzwpf1r4xy1z44kd4g"))))
5643 (properties `((upstream-name . "Rdpack")))
5644 (build-system r-build-system)
5645 (propagated-inputs
5646 `(("r-bibtex" ,r-bibtex)
5647 ("r-gbrd" ,r-gbrd)))
5648 (home-page "https://github.com/GeoBosh/Rdpack")
5649 (synopsis "Update and manipulate Rd documentation objects")
5650 (description
5651 "This package provides functions for manipulation of R documentation
5652 objects, including functions @code{reprompt()} and @code{ereprompt()} for
5653 updating Rd documentation for functions, methods and classes; it also includes
5654 Rd macros for citations and import of references from bibtex files for use in
5655 Rd files and roxygen2 comments, as well as many functions for manipulation of
5656 references and Rd files.")
5657 (license license:gpl2+)))
5658
5659 (define-public r-officer
5660 (package
5661 (name "r-officer")
5662 (version "0.3.4")
5663 (source
5664 (origin
5665 (method url-fetch)
5666 (uri (cran-uri "officer" version))
5667 (sha256
5668 (base32
5669 "1m4b3mcn5j5q3nq0jp1nranh4rdb8vxcpabn6ryqk9m6709fvhjz"))))
5670 (build-system r-build-system)
5671 (propagated-inputs
5672 `(("r-base64enc" ,r-base64enc)
5673 ("r-digest" ,r-digest)
5674 ("r-htmltools" ,r-htmltools)
5675 ("r-magrittr" ,r-magrittr)
5676 ("r-r6" ,r-r6)
5677 ("r-rcpp" ,r-rcpp)
5678 ("r-rlang" ,r-rlang)
5679 ("r-uuid" ,r-uuid)
5680 ("r-xml2" ,r-xml2)
5681 ("r-zip" ,r-zip)))
5682 (home-page "https://davidgohel.github.io/officer")
5683 (synopsis "Manipulation of Word and PowerPoint documents")
5684 (description
5685 "This package provides tools to access and manipulate Word and PowerPoint
5686 documents from R. The package focuses on tabular and graphical reporting from
5687 R; it also provides two functions that let users get document content into
5688 data objects. A set of functions lets add and remove images, tables and
5689 paragraphs of text in new or existing documents. When working with PowerPoint
5690 presentations, slides can be added or removed; shapes inside slides can also
5691 be added or removed. When working with Word documents, a cursor can be used
5692 to help insert or delete content at a specific location in the document.")
5693 (license license:gpl3)))
5694
5695 (define-public r-abn
5696 (package
5697 (name "r-abn")
5698 (version "1.3")
5699 (source
5700 (origin
5701 (method url-fetch)
5702 (uri (cran-uri "abn" version))
5703 (sha256
5704 (base32
5705 "1q9hzpxwg835711kxwygd0l2awal6f015f8s6fprwz7graz1wbbm"))))
5706 (build-system r-build-system)
5707 (inputs
5708 `(("gsl" ,gsl)))
5709 (propagated-inputs
5710 `(("r-cairo" ,r-cairo)
5711 ("r-lme4" ,r-lme4)
5712 ("r-mass" ,r-mass)
5713 ("r-nnet" ,r-nnet)
5714 ("r-rcpp" ,r-rcpp)
5715 ("r-rcpparmadillo" ,r-rcpparmadillo)
5716 ("r-rjags" ,r-rjags)))
5717 (home-page "http://www.r-bayesian-networks.org")
5718 (synopsis "Modelling multivariate data with additive bayesian networks")
5719 (description
5720 "Bayesian network analysis is a form of probabilistic graphical models
5721 which derives from empirical data a directed acyclic graph, DAG, describing
5722 the dependency structure between random variables. An additive Bayesian
5723 network model consists of a form of a DAG where each node comprises a
5724 @dfn{generalized linear model} (GLM). Additive Bayesian network models are
5725 equivalent to Bayesian multivariate regression using graphical modelling, they
5726 generalises the usual multivariable regression, GLM, to multiple dependent
5727 variables. This package provides routines to help determine optimal Bayesian
5728 network models for a given data set, where these models are used to identify
5729 statistical dependencies in messy, complex data.")
5730 (license license:gpl2+)))
5731
5732 (define-public r-acd
5733 (package
5734 (name "r-acd")
5735 (version "1.5.3")
5736 (source
5737 (origin
5738 (method url-fetch)
5739 (uri (cran-uri "ACD" version))
5740 (sha256
5741 (base32
5742 "1a67bi3hklq8nlc50r0qnyr4k7m9kpvijy8sqqpm54by5hsysfd6"))))
5743 (properties `((upstream-name . "ACD")))
5744 (build-system r-build-system)
5745 (home-page "https://cran.r-project.org/web/packages/ACD/")
5746 (synopsis "Categorical data analysis with complete or missing responses")
5747 (description
5748 "This package provides tools for categorical data analysis with complete
5749 or missing responses.")
5750 (license license:gpl2+)))
5751
5752 (define-public r-acdm
5753 (package
5754 (name "r-acdm")
5755 (version "1.0.4")
5756 (source
5757 (origin
5758 (method url-fetch)
5759 (uri (cran-uri "ACDm" version))
5760 (sha256
5761 (base32
5762 "0b4f02ga5ra66mbrm79g0bnlzmii82rks9kmxixxqgf18yhlyjil"))))
5763 (properties `((upstream-name . "ACDm")))
5764 (build-system r-build-system)
5765 (propagated-inputs
5766 `(("r-dplyr" ,r-dplyr)
5767 ("r-ggplot2" ,r-ggplot2)
5768 ("r-plyr" ,r-plyr)
5769 ("r-rsolnp" ,r-rsolnp)
5770 ("r-zoo" ,r-zoo)))
5771 (home-page "https://cran.r-project.org/web/packages/ACDm/")
5772 (synopsis "Tools for Autoregressive Conditional Duration Models")
5773 (description
5774 "ACDm is a package for Autoregressive Conditional Duration (ACD, Engle
5775 and Russell, 1998) models. It creates trade, price or volume durations from
5776 transactions (tic) data, performs diurnal adjustments, fits various ACD models
5777 and tests them.")
5778 (license license:gpl2+)))
5779
5780 (define-public r-overlap
5781 (package
5782 (name "r-overlap")
5783 (version "0.3.2")
5784 (source
5785 (origin
5786 (method url-fetch)
5787 (uri (cran-uri "overlap" version))
5788 (sha256
5789 (base32
5790 "1j3m6ir1chdz0si2fhcw6gs7c9h09bv0chz18rpzxsywww6d4rzy"))))
5791 (build-system r-build-system)
5792 (home-page "https://cran.r-project.org/web/packages/overlap/")
5793 (synopsis "Estimates of coefficient of overlapping for animal activity patterns")
5794 (description
5795 "This package provides functions to fit kernel density functions to data
5796 on temporal activity patterns of animals; estimate coefficients of overlapping
5797 of densities for two species; and calculate bootstrap estimates of confidence
5798 intervals.")
5799 (license license:gpl3+)))
5800
5801 (define-public r-snakecase
5802 (package
5803 (name "r-snakecase")
5804 (version "0.9.2")
5805 (source
5806 (origin
5807 (method url-fetch)
5808 (uri (cran-uri "snakecase" version))
5809 (sha256
5810 (base32
5811 "1g6xai53dl24ws0mwhqrkcv583ziaq505cv3z8v5dhjgy98kilyj"))))
5812 (build-system r-build-system)
5813 (propagated-inputs
5814 `(("r-stringi" ,r-stringi)
5815 ("r-stringr" ,r-stringr)))
5816 (home-page "https://github.com/Tazinho/snakecase")
5817 (synopsis "Convert strings into any case")
5818 (description
5819 "This package provides a consistent, flexible and easy to use tool to
5820 parse and convert strings into cases like snake or camel among others.")
5821 (license license:gpl3)))
5822
5823 (define-public r-prediction
5824 (package
5825 (name "r-prediction")
5826 (version "0.3.6.2")
5827 (source
5828 (origin
5829 (method url-fetch)
5830 (uri (cran-uri "prediction" version))
5831 (sha256
5832 (base32
5833 "0kx7xbm2j6c8h6gk1iig4vfpg877psg16j74hl7zc2mv40sc6dy5"))))
5834 (build-system r-build-system)
5835 (propagated-inputs
5836 `(("r-data-table" ,r-data-table)))
5837 (home-page "https://github.com/leeper/prediction")
5838 (synopsis "Tidy, type-safe prediction methods")
5839 (description
5840 "This package provides the @code{prediction()} function, a type-safe
5841 alternative to @code{predict()} that always returns a data frame. The package
5842 currently supports common model types (e.g., @code{\"lm\"}, @code{\"glm\"})
5843 from the @code{stats} package, as well as numerous other model classes from
5844 other add-on packages.")
5845 (license license:expat)))
5846
5847 (define-public r-insight
5848 (package
5849 (name "r-insight")
5850 (version "0.2.0")
5851 (source
5852 (origin
5853 (method url-fetch)
5854 (uri (cran-uri "insight" version))
5855 (sha256
5856 (base32
5857 "0fn9cd5qxqlpjv3d05mk66k5z5ll60x5la51mby5h7k4l6bqmsiz"))))
5858 (build-system r-build-system)
5859 (home-page "https://easystats.github.io/insight/")
5860 (synopsis "Easy access to model information for various model objects")
5861 (description
5862 "This package provides a tool to provide an easy, intuitive and
5863 consistent access to information contained in various R models, like model
5864 formulas, model terms, information about random effects, data that was used to
5865 fit the model or data from response variables. The package mainly revolves
5866 around two types of functions: Functions that find (the names of) information,
5867 starting with @code{find_}, and functions that get the underlying data,
5868 starting with @code{get_}. The package has a consistent syntax and works with
5869 many different model objects, where otherwise functions to access these
5870 information are missing.")
5871 (license license:gpl3)))
5872
5873 (define-public r-sjlabelled
5874 (package
5875 (name "r-sjlabelled")
5876 (version "1.0.17")
5877 (source
5878 (origin
5879 (method url-fetch)
5880 (uri (cran-uri "sjlabelled" version))
5881 (sha256
5882 (base32
5883 "00c0c22ynpihgf2bvmcfnkvqwqvxax2zzb7wldsmg2f7z5a32aa6"))))
5884 (build-system r-build-system)
5885 (propagated-inputs
5886 `(("r-dplyr" ,r-dplyr)
5887 ("r-haven" ,r-haven)
5888 ("r-insight" ,r-insight)
5889 ("r-magrittr" ,r-magrittr)
5890 ("r-purrr" ,r-purrr)
5891 ("r-rlang" ,r-rlang)))
5892 (home-page "https://github.com/strengejacke/sjlabelled")
5893 (synopsis "Labelled data utility functions")
5894 (description
5895 "This package provides a collection of functions dealing with labelled
5896 data, like reading and writing data between R and other statistical software
5897 packages. This includes easy ways to get, set or change value and variable
5898 label attributes, to convert labelled vectors into factors or numeric (and
5899 vice versa), or to deal with multiple declared missing values.")
5900 (license license:gpl3)))
5901
5902 (define-public r-sjmisc
5903 (package
5904 (name "r-sjmisc")
5905 (version "2.7.9")
5906 (source
5907 (origin
5908 (method url-fetch)
5909 (uri (cran-uri "sjmisc" version))
5910 (sha256
5911 (base32
5912 "11iiap0w5v0dszgwx4pi3j1zf9vnlw1ml1wjvq1hg9iz1plgbfnc"))))
5913 (build-system r-build-system)
5914 (propagated-inputs
5915 `(("r-dplyr" ,r-dplyr)
5916 ("r-haven" ,r-haven)
5917 ("r-magrittr" ,r-magrittr)
5918 ("r-purrr" ,r-purrr)
5919 ("r-rlang" ,r-rlang)
5920 ("r-sjlabelled" ,r-sjlabelled)))
5921 (home-page "https://github.com/strengejacke/sjmisc")
5922 (synopsis "Data and variable transformation functions")
5923 (description
5924 "This package is a collection of miscellaneous utility functions,
5925 supporting data transformation tasks like recoding, dichotomizing or grouping
5926 variables, setting and replacing missing values. The data transformation
5927 functions also support labelled data, and all integrate seamlessly into a
5928 tidyverse workflow.")
5929 (license license:gpl3)))
5930
5931 (define-public r-nortest
5932 (package
5933 (name "r-nortest")
5934 (version "1.0-4")
5935 (source
5936 (origin
5937 (method url-fetch)
5938 (uri (cran-uri "nortest" version))
5939 (sha256
5940 (base32
5941 "17r0wpz72z9312c70nwi1i1kp1v9fm1h6jg7q5cx1mc1h420m1d3"))))
5942 (build-system r-build-system)
5943 (home-page "https://cran.r-project.org/web/packages/nortest/")
5944 (synopsis "Tests for normality")
5945 (description
5946 "This package provides five omnibus tests for testing the composite
5947 hypothesis of normality.")
5948 (license license:gpl2+)))
5949
5950 (define-public r-moonbook
5951 (package
5952 (name "r-moonbook")
5953 (version "0.2.3")
5954 (source
5955 (origin
5956 (method url-fetch)
5957 (uri (cran-uri "moonBook" version))
5958 (sha256
5959 (base32
5960 "0hys56mwbm776ff7dibi8wzyf69qiais9rs1jazv79lk6h56s9s6"))))
5961 (properties `((upstream-name . "moonBook")))
5962 (build-system r-build-system)
5963 (propagated-inputs
5964 `(("r-magrittr" ,r-magrittr)
5965 ("r-nortest" ,r-nortest)
5966 ("r-purrr" ,r-purrr)
5967 ("r-sjmisc" ,r-sjmisc)
5968 ("r-stringr" ,r-stringr)
5969 ("r-survival" ,r-survival)))
5970 (home-page "https://github.com/cardiomoon/moonBook")
5971 (synopsis "Functions and datasets for the book by Keon-Woong Moon")
5972 (description
5973 "This package provides several analysis-related functions for the book
5974 entitled \"R statistics and graph for medical articles\" (written in Korean),
5975 version 1, by Keon-Woong Moon with Korean demographic data with several plot
5976 functions.")
5977 (license license:gpl2)))
5978
5979 (define-public r-flextable
5980 (package
5981 (name "r-flextable")
5982 (version "0.5.2")
5983 (source
5984 (origin
5985 (method url-fetch)
5986 (uri (cran-uri "flextable" version))
5987 (sha256
5988 (base32
5989 "0sabdvkdlx5i1nr7nz68cappwsibzsjxpmiz3yp948ckbfmkdb27"))))
5990 (build-system r-build-system)
5991 (propagated-inputs
5992 `(("r-base64enc" ,r-base64enc)
5993 ("r-data-table" ,r-data-table)
5994 ("r-gdtools" ,r-gdtools)
5995 ("r-htmltools" ,r-htmltools)
5996 ("r-knitr" ,r-knitr)
5997 ("r-officer" ,r-officer)
5998 ("r-rlang" ,r-rlang)
5999 ("r-rmarkdown" ,r-rmarkdown)
6000 ("r-xml2" ,r-xml2)))
6001 (home-page "https://davidgohel.github.io/flextable")
6002 (synopsis "Functions for tabular reporting")
6003 (description
6004 "This package provides tools to create pretty tables for HTML documents
6005 and other formats. Functions are provided to let users create tables, modify
6006 and format their content. It extends the @code{officer} package and can be
6007 used within R markdown documents when rendering to HTML and to Word
6008 documents.")
6009 (license license:gpl3)))
6010
6011 (define-public r-writexl
6012 (package
6013 (name "r-writexl")
6014 (version "1.1")
6015 (source
6016 (origin
6017 (method url-fetch)
6018 (uri (cran-uri "writexl" version))
6019 (sha256
6020 (base32
6021 "0w4wnpl3yhaqp63p32bk60xrbmd7xd11kxifjbzrghi7d4483a46"))))
6022 (build-system r-build-system)
6023 (inputs `(("zlib" ,zlib)))
6024 (home-page "https://github.com/ropensci/writexl")
6025 (synopsis "Export data frames to xlsx format")
6026 (description
6027 "This package provides a data frame to xlsx exporter based on
6028 libxlsxwriter.")
6029 (license license:bsd-2)))
6030
6031 (define-public r-biasedurn
6032 (package
6033 (name "r-biasedurn")
6034 (version "1.07")
6035 (source
6036 (origin
6037 (method url-fetch)
6038 (uri (cran-uri "BiasedUrn" version))
6039 (sha256
6040 (base32
6041 "13i2lgfnjhlbbm2yxfc2l5hswqw6x03pwba5csjmirv8kpjw4xr3"))))
6042 (properties `((upstream-name . "BiasedUrn")))
6043 (build-system r-build-system)
6044 (home-page "https://cran.r-project.org/web/packages/BiasedUrn/")
6045 (synopsis "Biased Urn model distributions")
6046 (description
6047 "This package provides statistical models of biased sampling in the form
6048 of univariate and multivariate noncentral hypergeometric distributions,
6049 including Wallenius' noncentral hypergeometric distribution and Fisher's
6050 noncentral hypergeometric distribution (also called extended hypergeometric
6051 distribution).")
6052 (license license:gpl3)))
6053
6054 (define-public r-goplot
6055 (package
6056 (name "r-goplot")
6057 (version "1.0.2")
6058 (source
6059 (origin
6060 (method url-fetch)
6061 (uri (cran-uri "GOplot" version))
6062 (sha256
6063 (base32
6064 "1y8dv0kbzpr9za91njw0x233vx5d13vqml9hmpddcyi9s6va5nix"))))
6065 (properties `((upstream-name . "GOplot")))
6066 (build-system r-build-system)
6067 (propagated-inputs
6068 `(("r-ggdendro" ,r-ggdendro)
6069 ("r-ggplot2" ,r-ggplot2)
6070 ("r-gridextra" ,r-gridextra)
6071 ("r-rcolorbrewer" ,r-rcolorbrewer)))
6072 (home-page "https://github.com/wencke/wencke.github.io")
6073 (synopsis "Visualization of functional analysis data")
6074 (description
6075 "This package provides an implementation of multilayered visualizations
6076 for enhanced graphical representation of functional analysis data. It
6077 combines and integrates omics data derived from expression and functional
6078 annotation enrichment analyses. Its plotting functions have been developed
6079 with an hierarchical structure in mind: starting from a general overview to
6080 identify the most enriched categories (modified bar plot, bubble plot) to a
6081 more detailed one displaying different types of relevant information for the
6082 molecules in a given set of categories (circle plot, chord plot, cluster plot,
6083 Venn diagram, heatmap).")
6084 (license license:gpl2)))
6085
6086 (define-public r-getopt
6087 (package
6088 (name "r-getopt")
6089 (version "1.20.3")
6090 (source
6091 (origin
6092 (method url-fetch)
6093 (uri (cran-uri "getopt" version))
6094 (sha256
6095 (base32
6096 "0zzmzgwl9a4y3s34600vmih22d6y32294f9bvxrnmffnvkgmy7sk"))))
6097 (build-system r-build-system)
6098 (home-page "https://github.com/trevorld/getopt")
6099 (synopsis "Command-line option processor for R")
6100 (description
6101 "This package is designed to be used with Rscript to write shebang
6102 scripts that accept short and long options. Many users will prefer to
6103 use the packages @code{optparse} or @code{argparse} which add extra
6104 features like automatically generated help options and usage texts,
6105 support for default values, positional argument support, etc.")
6106 (license license:gpl2+)))
6107
6108 (define-public r-findpython
6109 (package
6110 (name "r-findpython")
6111 (version "1.0.5")
6112 (source
6113 (origin
6114 (method url-fetch)
6115 (uri (cran-uri "findpython" version))
6116 (sha256
6117 (base32
6118 "0icifm4z6hhpmcjrg75a875iph0ci890ss02kdv3725pijc236iy"))))
6119 (build-system r-build-system)
6120 (home-page "https://github.com/trevorld/findpython")
6121 (synopsis "Functions to find an acceptable Python binary")
6122 (description
6123 "This package was designed to find an acceptable Python binary that
6124 matches version and feature constraints.")
6125 (license license:expat)))
6126
6127 ;; This in not the same as "r-argparser"
6128 (define-public r-argparse
6129 (package
6130 (name "r-argparse")
6131 (version "2.0.1")
6132 (source
6133 (origin
6134 (method url-fetch)
6135 (uri (cran-uri "argparse" version))
6136 (sha256
6137 (base32
6138 "1as7h6z7kzgv0fqzpnp76qbm96b4jcd37azd58b7rz0l1n94764l"))))
6139 (build-system r-build-system)
6140 (inputs `(("python" ,python)))
6141 (propagated-inputs
6142 `(("r-findpython" ,r-findpython)
6143 ("r-jsonlite" ,r-jsonlite)
6144 ("r-r6" ,r-r6)))
6145 (home-page "https://github.com/trevorld/argparse")
6146 (synopsis "Command line optional and positional argument parser")
6147 (description
6148 "This package provides a command line parser to be used with Rscript to
6149 write shebang scripts that gracefully accept positional and optional arguments
6150 and automatically generate usage notices.")
6151 (license license:gpl2+)))
6152
6153 (define-public r-hash
6154 (package
6155 (name "r-hash")
6156 (version "2.2.6.1")
6157 (source
6158 (origin
6159 (method url-fetch)
6160 (uri (cran-uri "hash" version))
6161 (sha256
6162 (base32
6163 "0b3fl0rvgwb992knl81vm99lsldg5clvaqjh6mamm6zqmb6dz056"))))
6164 (build-system r-build-system)
6165 (home-page "https://cran.r-project.org/web/packages/hash/")
6166 (synopsis "Implementation of hash/associated arrays/dictionaries")
6167 (description
6168 "This package implements a data structure similar to hashes in Perl and
6169 dictionaries in Python but with a purposefully R flavor. For objects of
6170 appreciable size, access using hashes outperforms native named lists and
6171 vectors.")
6172 (license license:gpl2+)))
6173
6174 (define-public r-orddom
6175 (package
6176 (name "r-orddom")
6177 (version "3.1")
6178 (source
6179 (origin
6180 (method url-fetch)
6181 (uri (cran-uri "orddom" version))
6182 (sha256
6183 (base32
6184 "165axs15fvwhrp89xd87l81q3h2qjll1vrwcsap645cwvb85nwsh"))))
6185 (build-system r-build-system)
6186 (propagated-inputs `(("r-psych" ,r-psych)))
6187 (home-page "https://cran.r-project.org/web/packages/orddom/")
6188 (synopsis "Ordinal dominance statistics")
6189 (description
6190 "This package provides tools to compute ordinal, statistics and effect
6191 sizes as an alternative to mean comparison: Cliff's delta or success rate
6192 difference (SRD), Vargha and Delaney's A or the Area Under a Receiver
6193 Operating Characteristic Curve (AUC), the discrete type of McGraw & Wong's
6194 Common Language Effect Size (CLES) or Grissom & Kim's Probability of
6195 Superiority (PS), and the Number needed to treat (NNT) effect size. Moreover,
6196 comparisons to Cohen's d are offered based on Huberty & Lowman's Percentage of
6197 Group (Non-)Overlap considerations.")
6198 (license license:gpl2)))
6199
6200 (define-public r-doby
6201 (package
6202 (name "r-doby")
6203 (version "4.6-2")
6204 (source
6205 (origin
6206 (method url-fetch)
6207 (uri (cran-uri "doBy" version))
6208 (sha256
6209 (base32
6210 "02vbv9nfgywg6lsiialkmfnax5z3rkyb9nr8j9l2cp8xi6ml95mb"))))
6211 (properties `((upstream-name . "doBy")))
6212 (build-system r-build-system)
6213 (propagated-inputs
6214 `(("r-dplyr" ,r-dplyr)
6215 ("r-magrittr" ,r-magrittr)
6216 ("r-mass" ,r-mass)
6217 ("r-matrix" ,r-matrix)
6218 ("r-plyr" ,r-plyr)))
6219 (home-page "http://people.math.aau.dk/~sorenh/software/doBy/")
6220 (synopsis "Groupwise statistics, LSmeans, linear contrasts, and utilities")
6221 (description
6222 "This package contains:
6223
6224 @itemize
6225 @item facilities for working with grouped data: @code{do}
6226 something to data stratified @code{by} some variables.
6227 @item implementations of least-squares means, general linear contrasts, and
6228 @item miscellaneous other utilities.
6229 @end itemize\n")
6230 (license license:gpl2+)))
6231
6232 (define-public r-refgenome
6233 (package
6234 (name "r-refgenome")
6235 (version "1.7.3.1")
6236 (source
6237 (origin
6238 (method url-fetch)
6239 (uri (cran-uri "refGenome" version))
6240 (sha256
6241 (base32
6242 "1s4lxv5pqk6d0f0a9iclgv88yl346fwvzgraxh0gwpbym1yhh787"))))
6243 (properties `((upstream-name . "refGenome")))
6244 (build-system r-build-system)
6245 (propagated-inputs
6246 `(("r-dbi" ,r-dbi)
6247 ("r-doby" ,r-doby)
6248 ("r-rsqlite" ,r-rsqlite)))
6249 (home-page "https://cran.r-project.org/web/packages/refGenome/")
6250 (synopsis
6251 "Gene and splice site annotation using annotation data from Ensembl and UCSC")
6252 (description
6253 "This package contains functionality for importing and managing of
6254 downloaded genome annotation data from the Ensembl genome browser (European
6255 Bioinformatics Institute) and from the UCSC genome browser (University of
6256 California, Santa Cruz) and annotation routines for genomic positions and
6257 splice site positions.")
6258 (license license:gpl2)))
6259
6260 (define-public r-basix
6261 (package
6262 (name "r-basix")
6263 (version "1.1")
6264 (source
6265 (origin
6266 (method url-fetch)
6267 (uri (cran-uri "BASIX" version))
6268 (sha256
6269 (base32
6270 "18dkvv1iwskfnlpl6xridcgqpalbbpm2616mvc3hfrc0b26v01id"))))
6271 (properties `((upstream-name . "BASIX")))
6272 (build-system r-build-system)
6273 (home-page "https://cran.r-project.org/web/packages/BASIX/")
6274 (synopsis "Efficient C/C++ toolset for R")
6275 (description
6276 "BASIX provides some efficient C/C++ implementations of native R
6277 procedures to speed up calculations in R.")
6278 (license license:gpl2)))
6279
6280 (define-public r-blockfest
6281 (package
6282 (name "r-blockfest")
6283 (version "1.6")
6284 (source
6285 (origin
6286 (method url-fetch)
6287 (uri (cran-uri "BlockFeST" version))
6288 (sha256
6289 (base32
6290 "0hj7a5as7nxbgjac7lbj6qfwffx3g8x8phpf9a55f1c9cdzi73a5"))))
6291 (properties `((upstream-name . "BlockFeST")))
6292 (build-system r-build-system)
6293 (propagated-inputs `(("r-basix" ,r-basix)))
6294 (home-page "https://cran.r-project.org/web/packages/BlockFeST/")
6295 (synopsis "Bayesian calculation of region-specific fixation index")
6296 (description
6297 "This package provides an R implementation of an extension of the
6298 BayeScan software for codominant markers, adding the option to group
6299 individual SNPs into pre-defined blocks. A typical application of this new
6300 approach is the identification of genomic regions, genes, or gene sets
6301 containing one or more SNPs that evolved under directional selection.")
6302 (license license:gpl2)))
6303
6304 (define-public r-proc
6305 (package
6306 (name "r-proc")
6307 (version "1.14.0")
6308 (source
6309 (origin
6310 (method url-fetch)
6311 (uri (cran-uri "pROC" version))
6312 (sha256
6313 (base32
6314 "0ki1pvj5iaki81crapvwqllg5avn5qlvv62axnsdkdcmv9xc3wg0"))))
6315 (properties `((upstream-name . "pROC")))
6316 (build-system r-build-system)
6317 (propagated-inputs
6318 `(("r-plyr" ,r-plyr)
6319 ("r-rcpp" ,r-rcpp)))
6320 (home-page "http://expasy.org/tools/pROC/")
6321 (synopsis "Display and analyze ROC curves")
6322 (description
6323 "This package provides tools for visualizing, smoothing and comparing
6324 receiver operating characteristic (ROC curves). The area under the
6325 curve (AUC) can be compared with statistical tests based on U-statistics or
6326 bootstrap. Confidence intervals can be computed for (p)AUC or ROC curves.")
6327 (license license:gpl3+)))
6328
6329 (define-public r-rootsolve
6330 (package
6331 (name "r-rootsolve")
6332 (version "1.7")
6333 (source
6334 (origin
6335 (method url-fetch)
6336 (uri (cran-uri "rootSolve" version))
6337 (sha256
6338 (base32
6339 "08ic6ggcc5dw4nv9xsqkm3vnvswmxyhnqnv1rdjv1h2gy1ivpcq8"))))
6340 (properties `((upstream-name . "rootSolve")))
6341 (build-system r-build-system)
6342 (native-inputs `(("gfortran" ,gfortran)))
6343 (home-page "https://cran.r-project.org/web/packages/rootSolve/")
6344 (synopsis "Tools for the analysis of ordinary differential equations")
6345 (description
6346 "This package provides routines to find the root of nonlinear functions,
6347 and to perform steady-state and equilibrium analysis of @dfn{ordinary
6348 differential equations} (ODE). It includes routines that:
6349
6350 @enumerate
6351 @item generate gradient and jacobian matrices (full and banded),
6352 @item find roots of non-linear equations by the Newton-Raphson method,
6353 @item estimate steady-state conditions of a system of (differential) equations
6354 in full, banded or sparse form, using the Newton-Raphson method, or by
6355 dynamically running,
6356 @item solve the steady-state conditions for uni- and multicomponent 1-D, 2-D,
6357 and 3-D partial differential equations, that have been converted to ordinary
6358 differential equations by numerical differencing (using the method-of-lines
6359 approach).
6360 @end enumerate\n")
6361 (license license:gpl2+)))
6362
6363 (define-public r-abcanalysis
6364 (package
6365 (name "r-abcanalysis")
6366 (version "1.2.1")
6367 (source
6368 (origin
6369 (method url-fetch)
6370 (uri (cran-uri "ABCanalysis" version))
6371 (sha256
6372 (base32 "0wac1ksmnxa36v99ca4hv8k0rsh3igwpcllmlv9wf7i9kgqviqwi"))))
6373 (properties `((upstream-name . "ABCanalysis")))
6374 (build-system r-build-system)
6375 (propagated-inputs `(("r-plotrix" ,r-plotrix)))
6376 (home-page "https://www.uni-marburg.de/fb12/arbeitsgruppen/datenbionik/software-en/")
6377 (synopsis "Computed ABC Analysis")
6378 (description
6379 "Multivariate data sets often differ in several factors or derived statistical
6380 parameters, which have to be selected for a valid interpretation. Basing this
6381 selection on traditional statistical limits leads occasionally to the perception
6382 of losing information from a data set. This package provides tools to calculate
6383 these limits on the basis of the mathematical properties of the distribution of
6384 the analyzed items.")
6385 (license license:gpl3)))
6386
6387 (define-public r-slam
6388 (package
6389 (name "r-slam")
6390 (version "0.1-45")
6391 (source
6392 (origin
6393 (method url-fetch)
6394 (uri (cran-uri "slam" version))
6395 (sha256
6396 (base32 "0xvj8va6xd7zkn3l4a5ad7v62s7xmkz8frq7gpcl3b6vqwckkaw4"))))
6397 (build-system r-build-system)
6398 (home-page "https://cran.r-project.org/web/packages/slam/")
6399 (synopsis "Sparse lightweight arrays and matrices")
6400 (description
6401 "This package contains data structures and algorithms for sparse arrays and matrices,
6402 based on index arrays and simple triplet representations, respectively.")
6403 (license license:gpl2)))
6404
6405 (define-public r-manipulatewidget
6406 (package
6407 (name "r-manipulatewidget")
6408 (version "0.10.0")
6409 (source
6410 (origin
6411 (method url-fetch)
6412 (uri (cran-uri "manipulateWidget" version))
6413 (sha256
6414 (base32 "1zagrbwkn2d50zzw8i2vyb1hsq4cydmfsqiy1a2qlp6zrv8a6q9x"))))
6415 (properties
6416 `((upstream-name . "manipulateWidget")))
6417 (build-system r-build-system)
6418 (propagated-inputs
6419 `(("r-base64enc" ,r-base64enc)
6420 ("r-codetools" ,r-codetools)
6421 ("r-htmltools" ,r-htmltools)
6422 ("r-htmlwidgets" ,r-htmlwidgets)
6423 ("r-knitr" ,r-knitr)
6424 ("r-miniui" ,r-miniui)
6425 ("r-shiny" ,r-shiny)
6426 ("r-webshot" ,r-webshot)))
6427 (home-page "https://github.com/rte-antares-rpackage/manipulateWidget/")
6428 (synopsis "Add even more interactivity to interactive charts")
6429 (description
6430 "This package lets you create in just a few lines of R code a nice user interface to
6431 modify the data or the graphical parameters of one or multiple interactive
6432 charts. It is useful to quickly explore visually some data or for package
6433 developers to generate user interfaces easy to maintain.")
6434 (license license:gpl2+)))
6435
6436 (define-public r-a3
6437 (package
6438 (name "r-a3")
6439 (version "1.0.0")
6440 (source
6441 (origin
6442 (method url-fetch)
6443 (uri (cran-uri "A3" version))
6444 (sha256
6445 (base32 "017hq9pjsv1h9i7cqk5cfx27as54shlhdsdvr6jkhb8jfkpdb6cw"))))
6446 (properties `((upstream-name . "A3")))
6447 (build-system r-build-system)
6448 (propagated-inputs
6449 `(("r-pbapply" ,r-pbapply)
6450 ("r-xtable" ,r-xtable)))
6451 (home-page "https://cran.r-project.org/web/packages/A3/")
6452 (synopsis "Error metrics for predictive models")
6453 (description
6454 "This package supplies tools for tabulating and analyzing the results of predictive
6455 models. The methods employed are applicable to virtually any predictive model
6456 and make comparisons between different methodologies straightforward.")
6457 (license license:gpl2+)))
6458
6459 (define-public r-infotheo
6460 (package
6461 (name "r-infotheo")
6462 (version "1.2.0")
6463 (source
6464 (origin
6465 (method url-fetch)
6466 (uri (cran-uri "infotheo" version))
6467 (sha256
6468 (base32
6469 "18xacczfq3z3xpy434js4nf3l19lczngzd0lq26wh22pvg1yniwv"))))
6470 (build-system r-build-system)
6471 (home-page "http://homepage.meyerp.com/software")
6472 (synopsis "Information-theoretic measures")
6473 (description
6474 "This package implements various measures of information theory based on
6475 several entropy estimators.")
6476 (license license:gpl3+)))
6477
6478 (define-public r-abcoptim
6479 (package
6480 (name "r-abcoptim")
6481 (version "0.15.0")
6482 (source
6483 (origin
6484 (method url-fetch)
6485 (uri (cran-uri "ABCoptim" version))
6486 (sha256
6487 (base32 "1ih0xk88qhsmpvnxf56041wx5sk8as2f4f2gdnpnwdym9mbr9n4b"))))
6488 (properties `((upstream-name . "ABCoptim")))
6489 (build-system r-build-system)
6490 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
6491 (home-page "https://github.com/gvegayon/ABCoptim/")
6492 (synopsis "Optimization of Artificial Bee Colony algorithm")
6493 (description
6494 "Artificial Bee Colony (ABC) is one of the most recently defined algorithms by Dervis
6495 Karaboga in 2005, motivated by the intelligent behavior of honey bees. It is as
6496 simple as Particle Swarm Optimization (PSO) and Differential Evolution (DE)
6497 algorithms, and uses only common control parameters such as colony size and
6498 maximum cycle number. The @code{r-abcoptim} implements the Artificial bee
6499 colony optimization algorithm @url{http://mf.erciyes.edu.tr/abc/pub/tr06_2005.pdf}.
6500 This version is a work-in-progress and is written in R code.")
6501 (license license:expat)))
6502
6503 (define-public r-abcp2
6504 (package
6505 (name "r-abcp2")
6506 (version "1.2")
6507 (source
6508 (origin
6509 (method url-fetch)
6510 (uri (cran-uri "ABCp2" version))
6511 (sha256
6512 (base32 "1s2skkxpzss7c29i8600psgrp0hl46jcrxqrmy2b4db8hc0kcnbx"))))
6513 (properties `((upstream-name . "ABCp2")))
6514 (build-system r-build-system)
6515 (propagated-inputs `(("r-mass" ,r-mass)))
6516 (home-page "https://cran.r-project.org/web/packages/ABCp2/")
6517 (synopsis "Approximate Bayesian Computational Model for Estimating P2")
6518 (description
6519 "This package tests the goodness of fit of a distribution of offspring to the Normal,
6520 Poisson, and Gamma distribution and estimates the proportional paternity of the
6521 second male (P2) based on the best fit distribution.")
6522 (license license:gpl2)))
6523
6524 (define-public r-abcrf
6525 (package
6526 (name "r-abcrf")
6527 (version "1.7.1")
6528 (source
6529 (origin
6530 (method url-fetch)
6531 (uri (cran-uri "abcrf" version))
6532 (sha256
6533 (base32 "06vy3inikrr9hv36q4djhrgzi9zizdfnhz17wpra8kadmr7qj441"))))
6534 (build-system r-build-system)
6535 (propagated-inputs
6536 `(("r-mass" ,r-mass)
6537 ("r-matrixstats" ,r-matrixstats)
6538 ("r-ranger" ,r-ranger)
6539 ("r-rcpp" ,r-rcpp)
6540 ("r-rcpparmadillo" ,r-rcpparmadillo)
6541 ("r-readr" ,r-readr)
6542 ("r-stringr" ,r-stringr)))
6543 (home-page "https://cran.r-project.org/web/packages/abcrf/")
6544 (synopsis "Approximate bayesian computation via random forests")
6545 (description
6546 "This package performs approximate bayesian computation (ABC) model choice and
6547 parameter inference via random forests. This machine learning tool named random
6548 forests (RF) can conduct selection among the highly complex models covered by
6549 ABC algorithms.")
6550 (license license:gpl2+)))
6551
6552 (define-public r-abctools
6553 (package
6554 (name "r-abctools")
6555 (version "1.1.3")
6556 (source
6557 (origin
6558 (method url-fetch)
6559 (uri (cran-uri "abctools" version))
6560 (sha256
6561 (base32 "07s9dg10i8lsxl73b4n2hynca2fjgb0ykb0dz8c3zv6cgw3cyx97"))))
6562 (build-system r-build-system)
6563 (propagated-inputs
6564 `(("r-abc" ,r-abc)
6565 ("r-abind" ,r-abind)
6566 ("r-hmisc" ,r-hmisc)
6567 ("r-plyr" ,r-plyr)))
6568 (home-page "https://github.com/dennisprangle/abctools/")
6569 (synopsis "Tools for ABC analyses")
6570 (description
6571 "This @code{r-abctools} package provides tools for approximate Bayesian computation
6572 including summary statistic selection and assessing coverage. This includes
6573 recent dimension reduction algorithms to tune the choice of summary statistics,
6574 and coverage methods to tune the choice of threshold.")
6575 (license license:gpl2+)))
6576
6577 (define-public r-ggstance
6578 (package
6579 (name "r-ggstance")
6580 (version "0.3.1")
6581 (source
6582 (origin
6583 (method url-fetch)
6584 (uri (cran-uri "ggstance" version))
6585 (sha256
6586 (base32 "0v7f3xdaaridw6d4jvnsfwxmpjrasvx5vl555wsrn50aah17fkvh"))))
6587 (build-system r-build-system)
6588 (propagated-inputs
6589 `(("r-ggplot2" ,r-ggplot2)
6590 ("r-plyr" ,r-plyr)
6591 ("r-rlang" ,r-rlang)
6592 ("r-withr" ,r-withr)))
6593 (home-page "https://cran.r-project.org/web/packages/ggstance/")
6594 (synopsis "Horizontal and vertical versions of @code{r-ggplot2}")
6595 (description
6596 "This package is a @code{r-ggplot2} extension that provides flipped components:
6597 @enumerate
6598 @item horizontal versions of @code{r-ggplot2} stats and @code{r-ggplot2} geoms;
6599 @item vertical versions of @code{r-ggplot2} positions.
6600 @end enumerate")
6601 (license license:gpl3)))
6602
6603 (define-public r-mosaiccore
6604 (package
6605 (name "r-mosaiccore")
6606 (version "0.6.0")
6607 (source
6608 (origin
6609 (method url-fetch)
6610 (uri (cran-uri "mosaicCore" version))
6611 (sha256
6612 (base32 "1klw97h6lchw1cpcl8s637ikcl428cckmjq0czi7mibh9q9mw72z"))))
6613 (properties `((upstream-name . "mosaicCore")))
6614 (build-system r-build-system)
6615 (propagated-inputs
6616 `(("r-dplyr" ,r-dplyr)
6617 ("r-lazyeval" ,r-lazyeval)
6618 ("r-mass" ,r-mass)
6619 ("r-rlang" ,r-rlang)
6620 ("r-tidyr" ,r-tidyr)))
6621 (home-page "https://github.com/ProjectMOSAIC/mosaicCore/")
6622 (synopsis "Common utilities for mosaic family packages")
6623 (description
6624 "Common utilities used in other Mosaic family packages are collected here.")
6625 (license license:gpl2+)))
6626
6627 (define-public r-ggformula
6628 (package
6629 (name "r-ggformula")
6630 (version "0.9.1")
6631 (source
6632 (origin
6633 (method url-fetch)
6634 (uri (cran-uri "ggformula" version))
6635 (sha256
6636 (base32 "01ngx8qh9lhmagng6abx2ky54zi3iyj5bpxlnw59slagwv7l6icx"))))
6637 (build-system r-build-system)
6638 (propagated-inputs
6639 `(("r-ggplot2" ,r-ggplot2)
6640 ("r-ggstance" ,r-ggstance)
6641 ("r-magrittr" ,r-magrittr)
6642 ("r-mosaiccore" ,r-mosaiccore)
6643 ("r-rlang" ,r-rlang)
6644 ("r-stringr" ,r-stringr)
6645 ("r-tibble" ,r-tibble)
6646 ("r-tidyr" ,r-tidyr)))
6647 (home-page "https://github.com/ProjectMOSAIC/ggformula/")
6648 (synopsis "Formula interface for the @code{r-ggplot2}")
6649 (description
6650 "The @code{r-ggformula} introduces a family of graphics functions, gf_point(),
6651 gf_density(), and so on, bring the formula interface to ggplot(). This captures
6652 and extends the excellent simplicity of the lattice-graphics formula interface,
6653 while providing the intuitive capabilities of @code{r-ggplot2}.")
6654 (license license:expat)))
6655
6656 (define-public r-mosaicdata
6657 (package
6658 (name "r-mosaicdata")
6659 (version "0.17.0")
6660 (source
6661 (origin
6662 (method url-fetch)
6663 (uri (cran-uri "mosaicData" version))
6664 (sha256
6665 (base32 "04z0mdm52mykqsxsinhmsihn181zf6cw321gayk2rjp7lj7mwdq9"))))
6666 (properties `((upstream-name . "mosaicData")))
6667 (build-system r-build-system)
6668 (home-page "https://cran.r-project.org/web/packages/mosaicData/")
6669 (synopsis "Data sets for project Mosaic")
6670 (description
6671 "This package provides data sets from project Mosaic @url{http://mosaic-web.org}
6672 used to teach mathematics, statistics, computation and modeling.")
6673 (license license:gpl2+)))
6674
6675 (define-public r-raster
6676 (package
6677 (name "r-raster")
6678 (version "2.8-19")
6679 (source
6680 (origin
6681 (method url-fetch)
6682 (uri (cran-uri "raster" version))
6683 (sha256
6684 (base32
6685 "1lmhf7p7is8ai7lv7zsj2rdzf83j7ccl4x7a9vwxxa824zy4bkf4"))))
6686 (build-system r-build-system)
6687 (propagated-inputs
6688 `(("r-rcpp" ,r-rcpp)
6689 ("r-sp" ,r-sp)))
6690 (home-page "https://www.rspatial.org/")
6691 (synopsis "Geographic data analysis and modeling")
6692 (description
6693 "The package implements basic and high-level functions for reading,
6694 writing, manipulating, analyzing and modeling of gridded spatial data.
6695 Processing of very large files is supported.")
6696 (license license:gpl3+)))
6697
6698 (define-public r-mosaic
6699 (package
6700 (name "r-mosaic")
6701 (version "1.4.0")
6702 (source
6703 (origin
6704 (method url-fetch)
6705 (uri (cran-uri "mosaic" version))
6706 (sha256
6707 (base32 "10jbrg8kli00kfgbh2f67bymm5cnlancc9dplb1j7fl552yjddn2"))))
6708 (build-system r-build-system)
6709 (propagated-inputs
6710 `(("r-broom" ,r-broom)
6711 ("r-dplyr" ,r-dplyr)
6712 ("r-ggdendro" ,r-ggdendro)
6713 ("r-ggformula" ,r-ggformula)
6714 ("r-ggplot2" ,r-ggplot2)
6715 ("r-ggrepel" ,r-ggrepel)
6716 ("r-glue" ,r-glue)
6717 ("r-gridextra" ,r-gridextra)
6718 ("r-lattice" ,r-lattice)
6719 ("r-latticeextra" ,r-latticeextra)
6720 ("r-lazyeval" ,r-lazyeval)
6721 ("r-mass" ,r-mass)
6722 ("r-matrix" ,r-matrix)
6723 ("r-mosaiccore" ,r-mosaiccore)
6724 ("r-mosaicdata" ,r-mosaicdata)
6725 ("r-readr" ,r-readr)
6726 ("r-tidyr" ,r-tidyr)))
6727 (home-page "https://github.com/ProjectMOSAIC/mosaic/")
6728 (synopsis "Mathematics, statistics, and computation teaching utilities")
6729 (description
6730 "This package contain data sets and utilities from
6731 @url{http://mosaic-web.org, Project MOSAIC} used to teach mathematics,
6732 statistics, computation and modeling. Project MOSAIC is a community of
6733 educators working to tie together aspects of quantitative work that students
6734 in science, technology, engineering and mathematics will need in their
6735 professional lives, but which are usually taught in isolation, if at all.")
6736 (license license:gpl2+)))
6737
6738 (define-public r-abd
6739 (package
6740 (name "r-abd")
6741 (version "0.2-8")
6742 (source
6743 (origin
6744 (method url-fetch)
6745 (uri (cran-uri "abd" version))
6746 (sha256
6747 (base32 "191gspqzdv573vaw624ri0f5cm6v4j524bjs74d4a1hn3kn6r9b7"))))
6748 (build-system r-build-system)
6749 (propagated-inputs
6750 `(("r-lattice" ,r-lattice)
6751 ("r-mosaic" ,r-mosaic)
6752 ("r-nlme" ,r-nlme)))
6753 (home-page "https://cran.r-project.org/web/packages/abd/")
6754 (synopsis "Analysis of biological data")
6755 (description
6756 "The @code{r-abd} package contains data sets and sample code for the Analysis of
6757 biological data by Michael Whitlock and Dolph Schluter.")
6758 (license license:gpl2)))
6759
6760 (define-public r-svgui
6761 (package
6762 (name "r-svgui")
6763 (version "1.0.0")
6764 (source
6765 (origin
6766 (method url-fetch)
6767 (uri (cran-uri "svGUI" version))
6768 (sha256
6769 (base32 "1r7ab0p4yr8q03gj02hmj7k1ghksgkg4nx750c0ajfs2q9y1dxfc"))))
6770 (properties `((upstream-name . "svGUI")))
6771 (build-system r-build-system)
6772 (home-page "https://github.com/SciViews/svGUI/")
6773 (synopsis "Functions for managing GUI clients in R")
6774 (description
6775 "The SciViews @code{svGUI} package eases the management of Graphical User
6776 Interfaces (GUI) in R. It is independent from any particular GUI widgets. It
6777 centralizes info about GUI elements currently used, and it dispatches GUI
6778 calls to the particular toolkits in use in function of the context.")
6779 (license license:gpl2)))
6780
6781 (define-public r-svdialogs
6782 (package
6783 (name "r-svdialogs")
6784 (version "1.0.0")
6785 (source
6786 (origin
6787 (method url-fetch)
6788 (uri (cran-uri "svDialogs" version))
6789 (sha256
6790 (base32 "0xqppydfawnwk84kb5qiybwbcmv38vn4imgz01mz2pnq4xb80p97"))))
6791 (properties `((upstream-name . "svDialogs")))
6792 (build-system r-build-system)
6793 (inputs
6794 `(("yad" ,yad)
6795 ("zenity" ,zenity)))
6796 (propagated-inputs
6797 `(("r-rstudioapi" ,r-rstudioapi)
6798 ("r-svgui" ,r-svgui)))
6799 (home-page "https://github.com/SciViews/svDialogs/")
6800 (synopsis "Portable dialog boxes")
6801 (description
6802 "This package helps to construct standard dialog boxes for your GUI, including
6803 message boxes, input boxes, list, file or directory selection, and others. In
6804 case R cannot display GUI dialog boxes, a simpler command line version of these
6805 interactive elements is also provided as a fallback solution.")
6806 (license license:gpl2)))
6807
6808 (define-public r-abe
6809 (package
6810 (name "r-abe")
6811 (version "3.0.1")
6812 (source
6813 (origin
6814 (method url-fetch)
6815 (uri (cran-uri "abe" version))
6816 (sha256
6817 (base32
6818 "1f19h3xzzmjhvwc1rrb8z0rai3ip03y4gdi2gg9bfr5sg2nfklk6"))))
6819 (build-system r-build-system)
6820 (home-page "https://cran.r-project.org/web/packages/abe/")
6821 (synopsis "Augmented backward elimination")
6822 (description
6823 "This package performs augmented backward elimination and checks the
6824 stability of the obtained model. Augmented backward elimination combines
6825 significance or information based criteria with the change in estimate to
6826 either select the optimal model for prediction purposes or to serve as a tool
6827 to obtain a practically sound, highly interpretable model.")
6828 (license license:gpl2+)))
6829
6830 (define-public r-abf2
6831 (package
6832 (name "r-abf2")
6833 (version "0.7-1")
6834 (source
6835 (origin
6836 (method url-fetch)
6837 (uri (cran-uri "abf2" version))
6838 (sha256
6839 (base32 "0d65mc1w4pbiv7xaqzdlw1bfsxf25587rv597hh41vs0j0zlfpxx"))))
6840 (build-system r-build-system)
6841 (home-page "https://cran.r-project.org/web/packages/abf2/")
6842 (synopsis "Load gap-free axon @code{r-abf2} files")
6843 (description
6844 "This package loads electrophysiology data from ABF2 files, as created by
6845 Axon Instruments/Molecular Devices software. Only files recorded in gap-free
6846 mode are currently supported.")
6847 (license license:artistic2.0)))
6848
6849 (define-public r-abhgenotyper
6850 (package
6851 (name "r-abhgenotyper")
6852 (version "1.0.1")
6853 (source
6854 (origin
6855 (method url-fetch)
6856 (uri (cran-uri "ABHgenotypeR" version))
6857 (sha256
6858 (base32 "08cpmnaaxsm5c5bjifnfxdlvg5inrf13biqpcl2yq5zpqjmiki0l"))))
6859 (properties `((upstream-name . "ABHgenotypeR")))
6860 (build-system r-build-system)
6861 (propagated-inputs
6862 `(("r-ggplot2" ,r-ggplot2)
6863 ("r-reshape2" ,r-reshape2)))
6864 (home-page "https://github.com/StefanReuscher/ABHgenotypeR/")
6865 (synopsis "Visualize and manipulate ABH genotypes")
6866 (description
6867 "The @code{r-abhgenotyper} package provides simple imputation,
6868 error-correction and plotting capacities for genotype data. The package is
6869 supposed to serve as an intermediate but independent analysis tool between the
6870 TASSEL GBS pipeline and the @code{r-qtl} package. It provides functionalities
6871 not found in either TASSEL or @code{r-qtl} in addition to visualization of
6872 genotypes as \"graphical genotypes\".")
6873 (license license:gpl3)))
6874
6875 (define-public r-furrr
6876 (package
6877 (name "r-furrr")
6878 (version "0.1.0")
6879 (source
6880 (origin
6881 (method url-fetch)
6882 (uri (cran-uri "furrr" version))
6883 (sha256
6884 (base32
6885 "1ld9aa9hydna94hgm6p91zjbfv1dz1vsgchjlpknkg6irbvkfafx"))))
6886 (build-system r-build-system)
6887 (propagated-inputs
6888 `(("r-future" ,r-future)
6889 ("r-globals" ,r-globals)
6890 ("r-purrr" ,r-purrr)
6891 ("r-rlang" ,r-rlang)))
6892 (home-page "https://github.com/DavisVaughan/furrr")
6893 (synopsis "Apply mapping functions in parallel using futures")
6894 (description
6895 "This package provides implementations of the family of @code{map()}
6896 functions from the @code{purrr} package that can be resolved using any
6897 @code{future}-supported backend, e.g. parallel on the local machine or
6898 distributed on a compute cluster.")
6899 (license license:lgpl2.1+)))
6900
6901 (define-public r-abjutils
6902 (package
6903 (name "r-abjutils")
6904 (version "0.2.3")
6905 (source
6906 (origin
6907 (method url-fetch)
6908 (uri (cran-uri "abjutils" version))
6909 (sha256
6910 (base32 "0n4zps65y3zg0gfzlv97w91si52a9izkncirskbkj5x9hk0nhxcv"))))
6911 (build-system r-build-system)
6912 (propagated-inputs
6913 `(("r-devtools" ,r-devtools)
6914 ("r-dplyr" ,r-dplyr)
6915 ("r-furrr" ,r-furrr)
6916 ("r-future" ,r-future)
6917 ("r-glue" ,r-glue)
6918 ("r-httr" ,r-httr)
6919 ("r-magrittr" ,r-magrittr)
6920 ("r-progress" ,r-progress)
6921 ("r-purrr" ,r-purrr)
6922 ("r-readr" ,r-readr)
6923 ("r-rlang" ,r-rlang)
6924 ("r-rstudioapi" ,r-rstudioapi)
6925 ("r-scales" ,r-scales)
6926 ("r-stringi" ,r-stringi)
6927 ("r-stringr" ,r-stringr)
6928 ("r-tibble" ,r-tibble)
6929 ("r-tidyr" ,r-tidyr)))
6930 (home-page "https://github.com/abjur/abjutils/")
6931 (synopsis "Collection of tools for jurimetrical analysis")
6932 (description
6933 "This package implements general purpose tools, such as functions for
6934 sampling and basic manipulation of Brazilian lawsuits identification number.
6935 It also implements functions for text cleaning, such as accentuation
6936 removal.")
6937 (license license:expat)))
6938
6939 (define-public r-abnormality
6940 (package
6941 (name "r-abnormality")
6942 (version "0.1.0")
6943 (source
6944 (origin
6945 (method url-fetch)
6946 (uri (cran-uri "abnormality" version))
6947 (sha256
6948 (base32 "1fzfskl9akl06nliy8hkv2a0pznpj8pwcypg3gj5r2nzvr3kan9v"))))
6949 (build-system r-build-system)
6950 (propagated-inputs
6951 `(("r-mass" ,r-mass)
6952 ("r-matrix" ,r-matrix)))
6953 (home-page "https://cran.r-project.org/web/packages/abnormality/")
6954 (synopsis "Measure a subject's abnormality with respect to a reference population")
6955 (description
6956 "This package contains functions to implement the methodology and
6957 considerations laid out by Marks et al. in the article \"Measuring abnormality
6958 in high dimensional spaces: applications in biomechanical gait analysis\".
6959 Using high-dimensional datasets to measure a subject's overall level of
6960 abnormality as compared to a reference population is often needed in outcomes
6961 research.")
6962 (license license:expat)))
6963
6964 (define-public r-abodoutlier
6965 (package
6966 (name "r-abodoutlier")
6967 (version "0.1")
6968 (source
6969 (origin
6970 (method url-fetch)
6971 (uri (cran-uri "abodOutlier" version))
6972 (sha256
6973 (base32 "1pvhgxmh23br84r0fbmv7g53z2427birdja96a67vqgz18r3fdvj"))))
6974 (properties `((upstream-name . "abodOutlier")))
6975 (build-system r-build-system)
6976 (propagated-inputs
6977 `(("r-cluster" ,r-cluster)))
6978 (home-page "https://cran.r-project.org/web/packages/abodOutlier/")
6979 (synopsis "Angle-based outlier detection")
6980 (description
6981 "This package performs angle-based outlier detection on a given data
6982 frame. It offers three methods to process data:
6983 @enumerate
6984 @item full but slow implementation using all the data that has cubic
6985 complexity;
6986 @item a fully randomized method;
6987 @item a method using k-nearest neighbours.
6988 @end enumerate
6989 These algorithms are well suited for high dimensional data outlier
6990 detection.")
6991 (license license:expat)))
6992
6993 (define-public r-abps
6994 (package
6995 (name "r-abps")
6996 (version "0.3")
6997 (source
6998 (origin
6999 (method url-fetch)
7000 (uri (cran-uri "ABPS" version))
7001 (sha256
7002 (base32 "0n3f66nmfi5v94il1mxy026mi84w01ph2aljk60vn3mrz8kwf2ll"))))
7003 (properties `((upstream-name . "ABPS")))
7004 (build-system r-build-system)
7005 (propagated-inputs `(("r-kernlab" ,r-kernlab)))
7006 (home-page "https://cran.r-project.org/web/packages/ABPS/")
7007 (synopsis "Abnormal blood profile score to detect blood doping")
7008 (description
7009 "This package offers an implementation of the @dfn{Abnormal blood profile score} (ABPS).
7010 The ABPS is a part of the Athlete biological passport program of the World
7011 anti-doping agency, which combines several blood parameters into a single
7012 score in order to detect blood doping. The package also contains functions to
7013 calculate other scores used in anti-doping programs, such as the ratio of
7014 hemoglobin to reticulocytes (OFF-score), as well as example data.")
7015 (license license:gpl2+)))
7016
7017 (define-public r-parmigene
7018 (package
7019 (name "r-parmigene")
7020 (version "1.0.2")
7021 (source
7022 (origin
7023 (method url-fetch)
7024 (uri (cran-uri "parmigene" version))
7025 (sha256
7026 (base32
7027 "1fsm6pkr17jcbzkj1hbn91jf890fviqk1lq6ls8pihsdgah1zb4d"))))
7028 (build-system r-build-system)
7029 (home-page "https://cran.r-project.org/web/packages/parmigene/")
7030 (synopsis "Mutual information estimation for gene network reconstruction")
7031 (description
7032 "This package provides a parallel estimation of the mutual information
7033 based on entropy estimates from k-nearest neighbors distances and algorithms
7034 for the reconstruction of gene regulatory networks.")
7035 (license license:agpl3+)))
7036
7037 (define-public r-pscl
7038 (package
7039 (name "r-pscl")
7040 (version "1.5.2")
7041 (source
7042 (origin
7043 (method url-fetch)
7044 (uri (cran-uri "pscl" version))
7045 (sha256
7046 (base32 "1phf3awsfr4ncqfqzin5m1pz0g7y1zhbcm2sz7358ssw914fd7rc"))))
7047 (build-system r-build-system)
7048 (propagated-inputs
7049 `(("r-mass" ,r-mass)))
7050 (home-page "https://github.com/atahk/pscl/")
7051 (synopsis "Political science computational laboratory")
7052 (description
7053 "The @code{pscl} is an R package providing classes and methods for:
7054 @enumerate
7055 @item Bayesian analysis of roll call data (item-response models);
7056 @item elementary Bayesian statistics;
7057 @item maximum likelihood estimation of zero-inflated and hurdle models for count
7058 data;
7059 @item utility functions.
7060 @end enumerate")
7061 (license license:gpl2)))
7062
7063 (define-public r-accelmissing
7064 (package
7065 (name "r-accelmissing")
7066 (version "1.4")
7067 (source
7068 (origin
7069 (method url-fetch)
7070 (uri (cran-uri "accelmissing" version))
7071 (sha256
7072 (base32 "1nql9inx6azdzi3z4sfm2vdml2mms6krl8wzlf1dn1c97ahn57fy"))))
7073 (build-system r-build-system)
7074 (propagated-inputs
7075 `(("r-mice" ,r-mice)
7076 ("r-pscl" ,r-pscl)))
7077 (home-page "https://cran.r-project.org/web/packages/accelmissing/")
7078 (synopsis "Missing value imputation for accelerometer data")
7079 (description
7080 "This package provides a statistical method to impute the missing values in
7081 accelerometer data. The methodology includes both parametric and
7082 semi-parametric multiple imputations under the zero-inflated Poisson lognormal
7083 model. It also provides multiple functions to preprocess the accelerometer data
7084 previous to the missing data imputation. These include detecting the wearing
7085 and the non-wearing time, selecting valid days and subjects, and creating plots.")
7086 (license license:gpl2+)))
7087
7088 (define-public r-mhsmm
7089 (package
7090 (name "r-mhsmm")
7091 (version "0.4.16")
7092 (source
7093 (origin
7094 (method url-fetch)
7095 (uri (cran-uri "mhsmm" version))
7096 (sha256
7097 (base32 "009dj0zkj1zry7jr9hf4cknb686z50a2l967if64xm0dvjmp7dgs"))))
7098 (build-system r-build-system)
7099 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
7100 (home-page "https://github.com/jaredo/mhsmm/")
7101 (synopsis "Inference for hidden Markov and semi-Markov models")
7102 (description
7103 "The @code{r-mhsmm} package implements estimation and prediction methods for
7104 hidden Markov and semi-Markov models for multiple observation sequences. Such
7105 techniques are of interest when observed data is thought to be dependent on some
7106 unobserved (or hidden) state. Also, this package is suitable for equidistant
7107 time series data, with multivariate and/or missing data. Allows user defined
7108 emission distributions.")
7109 (license license:gpl2+)))
7110
7111 (define-public r-nleqslv
7112 (package
7113 (name "r-nleqslv")
7114 (version "3.3.2")
7115 (source
7116 (origin
7117 (method url-fetch)
7118 (uri (cran-uri "nleqslv" version))
7119 (sha256
7120 (base32 "1v9znvncyigw9r25wx2ma0b7ib179b488dl0qsrhp5zrcz7mcjgm"))))
7121 (build-system r-build-system)
7122 (native-inputs `(("gfortran" ,gfortran)))
7123 (home-page "https://cran.r-project.org/web/packages/nleqslv/")
7124 (synopsis "Solve systems of nonlinear equations")
7125 (description
7126 "The @code{r-nleqslv} package solves a system of nonlinear equations using a
7127 Broyden or a Newton method with a choice of global strategies such as line
7128 search and trust region. There are options for using a numerical or user
7129 supplied Jacobian, for specifying a banded numerical Jacobian and for allowing a
7130 singular or ill-conditioned Jacobian.")
7131 (license license:gpl2+)))
7132
7133 (define-public r-physicalactivity
7134 (package
7135 (name "r-physicalactivity")
7136 (version "0.2-2")
7137 (source
7138 (origin
7139 (method url-fetch)
7140 (uri (cran-uri "PhysicalActivity" version))
7141 (sha256
7142 (base32 "14z6plgwyr46vs9m997rvlz8sdglfs9g087an8668zqkzzs2w4ln"))))
7143 (properties
7144 `((upstream-name . "PhysicalActivity")))
7145 (build-system r-build-system)
7146 (home-page "https://cran.r-project.org/web/packages/PhysicalActivity/")
7147 (synopsis "Procesing accelerometer data for physical activity measurement")
7148 (description
7149 "This @code{r-physicalactivity} package provides a function @code{wearingMarking}
7150 for classification of monitor wear and nonwear time intervals in accelerometer
7151 data collected to assess physical activity. The package also contains functions
7152 for making plots of accelerometer data and obtaining the summary of various
7153 information including daily monitor wear time and the mean monitor wear time
7154 during valid days. The revised package version 0.2-1 improved the functions
7155 regarding speed, robustness and add better support for time zones and daylight
7156 saving. In addition, several functions were added:
7157 @enumerate
7158 @item the @code{markDelivery} can classify days for ActiGraph delivery by mail;
7159 @item the @code{markPAI} can categorize physical activity intensity level based
7160 on user-defined cut-points of accelerometer counts.
7161 @end enumerate
7162 It also supports importing ActiGraph (AGD) files with @code{readActigraph} and
7163 @code{queryActigraph} functions.")
7164 (license license:gpl3+)))
7165
7166 (define-public r-acc
7167 (package
7168 (name "r-acc")
7169 (version "1.3.3")
7170 (source
7171 (origin
7172 (method url-fetch)
7173 (uri (cran-uri "acc" version))
7174 (sha256
7175 (base32 "1ii2vm47djxbixa75h690q1s2f9m9x6i8nkygik93j6dayr6kr1m"))))
7176 (build-system r-build-system)
7177 (propagated-inputs
7178 `(("r-circlize" ,r-circlize)
7179 ("r-dbi" ,r-dbi)
7180 ("r-ggplot2" ,r-ggplot2)
7181 ("r-iterators" ,r-iterators)
7182 ("r-mhsmm" ,r-mhsmm)
7183 ("r-nleqslv" ,r-nleqslv)
7184 ("r-physicalactivity" ,r-physicalactivity)
7185 ("r-plyr" ,r-plyr)
7186 ("r-r-utils" ,r-r-utils)
7187 ("r-rcpp" ,r-rcpp)
7188 ("r-rcpparmadillo" ,r-rcpparmadillo)
7189 ("r-rsqlite" ,r-rsqlite)
7190 ("r-zoo" ,r-zoo)))
7191 (home-page "https://cran.r-project.org/web/packages/acc/")
7192 (synopsis "Exploring accelerometer data")
7193 (description
7194 "This package processes accelerometer data from uni-axial and tri-axial devices
7195 and generates data summaries. Also, includes functions to plot, analyze, and
7196 simulate accelerometer data.")
7197 (license license:gpl2+)))
7198
7199 (define-public r-rbenchmark
7200 (package
7201 (name "r-rbenchmark")
7202 (version "1.0.0")
7203 (source
7204 (origin
7205 (method url-fetch)
7206 (uri (cran-uri "rbenchmark" version))
7207 (sha256
7208 (base32 "010fn3qwnk2k411cbqyvra1d12c3bhhl3spzm8kxffmirj4p2al9"))))
7209 (build-system r-build-system)
7210 (home-page "https://cran.r-project.org/web/packages/rbenchmark/")
7211 (synopsis "Benchmarking routine for R")
7212 (description
7213 "This @code{r-rbenchmark} package is inspired by the Perl module Benchmark,
7214 and is intended to facilitate benchmarking of arbitrary R code. The library
7215 consists of just one function, benchmark, which is a simple wrapper around
7216 system.time. Given a specification of the benchmarking process (counts of
7217 replications, evaluation environment) and an arbitrary number of expressions,
7218 benchmark evaluates each of the expressions in the specified environment,
7219 replicating the evaluation as many times as specified, and returning the results
7220 conveniently wrapped into a data frame.")
7221 (license license:gpl2+)))
7222
7223 (define-public r-mitools
7224 (package
7225 (name "r-mitools")
7226 (version "2.4")
7227 (source
7228 (origin
7229 (method url-fetch)
7230 (uri (cran-uri "mitools" version))
7231 (sha256
7232 (base32
7233 "0c2x2n1p53lcw0vx4vmy5j7m2f95i7g2iwbryl89imr99rvz617j"))))
7234 (build-system r-build-system)
7235 (propagated-inputs `(("r-dbi" ,r-dbi)))
7236 (home-page "https://cran.r-project.org/web/packages/mitools/")
7237 (synopsis "Tools for multiple imputation of missing data")
7238 (description
7239 "This package provides tools to perform analyses and combine results from
7240 multiple-imputation datasets.")
7241 (license license:gpl2)))
7242
7243 (define-public r-magick
7244 (package
7245 (name "r-magick")
7246 (version "2.0")
7247 (source
7248 (origin
7249 (method url-fetch)
7250 (uri (cran-uri "magick" version))
7251 (sha256
7252 (base32
7253 "18y465325mhf48x2jn3jz9khwq1z2aj13wfbdkv8k3hln1sd572m"))))
7254 (build-system r-build-system)
7255 (inputs
7256 `(("imagemagick" ,imagemagick)
7257 ("zlib" ,zlib)))
7258 (propagated-inputs
7259 `(("r-curl" ,r-curl)
7260 ("r-magrittr" ,r-magrittr)
7261 ("r-rcpp" ,r-rcpp)))
7262 (native-inputs
7263 `(("pkg-config" ,pkg-config)))
7264 (home-page "https://github.com/ropensci/magick")
7265 (synopsis "Advanced graphics and image-processing in R")
7266 (description
7267 "This package provides bindings to ImageMagick, a comprehensive image
7268 processing library. It supports many common formats (PNG, JPEG, TIFF, PDF,
7269 etc.) and manipulations (rotate, scale, crop, trim, flip, blur, etc). All
7270 operations are vectorized via the Magick++ STL meaning they operate either on
7271 a single frame or a series of frames for working with layers, collages, or
7272 animation. In RStudio, images are automatically previewed when printed to the
7273 console, resulting in an interactive editing environment.")
7274 (license license:expat)))
7275
7276 (define-public r-survey
7277 (package
7278 (name "r-survey")
7279 (version "3.36")
7280 (source
7281 (origin
7282 (method url-fetch)
7283 (uri (cran-uri "survey" version))
7284 (sha256
7285 (base32
7286 "0xclsy4ram4k48vzh5m5bpmknnpwxnss85v73s4czsjj5ffjxwwh"))))
7287 (build-system r-build-system)
7288 (propagated-inputs
7289 `(("r-lattice" ,r-lattice)
7290 ("r-matrix" ,r-matrix)
7291 ("r-minqa" ,r-minqa)
7292 ("r-mitools" ,r-mitools)
7293 ("r-numderiv" ,r-numderiv)
7294 ("r-survival" ,r-survival)))
7295 (home-page "http://r-survey.r-forge.r-project.org/survey/")
7296 (synopsis "Analysis of complex survey samples")
7297 (description
7298 "This package provides tools for the analysis of complex survey samples.
7299 The provided features include: summary statistics, two-sample tests, rank
7300 tests, generalised linear models, cumulative link models, Cox models,
7301 loglinear models, and general maximum pseudolikelihood estimation for
7302 multistage stratified, cluster-sampled, unequally weighted survey samples;
7303 variances by Taylor series linearisation or replicate weights;
7304 post-stratification, calibration, and raking; two-phase subsampling designs;
7305 graphics; PPS sampling without replacement; principal components, and factor
7306 analysis.")
7307 ;; Either version of the GPL.
7308 (license (list license:gpl2 license:gpl3))))
7309
7310 (define-public r-dvmisc
7311 (package
7312 (name "r-dvmisc")
7313 (version "1.1.3")
7314 (source
7315 (origin
7316 (method url-fetch)
7317 (uri (cran-uri "dvmisc" version))
7318 (sha256
7319 (base32 "0x391pxg5mqgp5xxc8qwhwxky8ds7d9gr9iwmsb12c92kxfk00bv"))))
7320 (build-system r-build-system)
7321 (propagated-inputs
7322 `(("r-cubature" ,r-cubature)
7323 ("r-data-table" ,r-data-table)
7324 ("r-dplyr" ,r-dplyr)
7325 ("r-ggplot2" ,r-ggplot2)
7326 ("r-mass" ,r-mass)
7327 ("r-mvtnorm" ,r-mvtnorm)
7328 ("r-pracma" ,r-pracma)
7329 ("r-purrr" ,r-purrr)
7330 ("r-rbenchmark" ,r-rbenchmark)
7331 ("r-rcpp" ,r-rcpp)
7332 ("r-survey" ,r-survey)))
7333 (home-page "https://cran.r-project.org/web/packages/dvmisc/")
7334 (synopsis "Faster computation of common statistics and miscellaneous functions")
7335 (description
7336 "This package implements faster versions of base R functions (e.g. mean, standard
7337 deviation, covariance, weighted mean), mostly written in C++, along with
7338 miscellaneous functions for various purposes (e.g. create the histogram with
7339 fitted probability density function or probability mass function curve, create
7340 the body mass index groups, assess the linearity assumption in logistic
7341 regression).")
7342 (license license:gpl2)))
7343
7344 (define-public r-accelerometry
7345 (package
7346 (name "r-accelerometry")
7347 (version "3.1.2")
7348 (source
7349 (origin
7350 (method url-fetch)
7351 (uri (cran-uri "accelerometry" version))
7352 (sha256
7353 (base32 "13xzrwhr4i1nj9c8vrmfdg2rmrc8n446iihcyxmy99sm99hpzyip"))))
7354 (build-system r-build-system)
7355 (propagated-inputs
7356 `(("r-dvmisc" ,r-dvmisc)
7357 ("r-rcpp" ,r-rcpp)))
7358 (home-page "https://cran.r-project.org/web/packages/accelerometry/")
7359 (synopsis "Functions for processing accelerometer data")
7360 (description
7361 "This package provides a collection of functions that perform operations on
7362 time-series accelerometer data, such as identify the non-wear time, flag minutes
7363 that are part of an activity bout, and find the maximum 10-minute average count
7364 value. The functions are generally very flexible, allowing for a variety of
7365 algorithms to be implemented.")
7366 (license license:gpl3)))
7367
7368 (define-public r-absim
7369 (package
7370 (name "r-absim")
7371 (version "0.2.6")
7372 (source
7373 (origin
7374 (method url-fetch)
7375 (uri (cran-uri "AbSim" version))
7376 (sha256
7377 (base32 "16ddjk8b6xw80ch4jis1y751i9561wdxh0gifbf15qiz3vjckq8m"))))
7378 (properties `((upstream-name . "AbSim")))
7379 (build-system r-build-system)
7380 (propagated-inputs
7381 `(("r-ape" ,r-ape)
7382 ("r-powerlaw" ,r-powerlaw)))
7383 (home-page "https://cran.r-project.org/web/packages/AbSim/")
7384 (synopsis "Time resolved simulations of antibody repertoires")
7385 (description
7386 "This package provides simulation methods for the evolution of antibody repertoires.
7387 The heavy and light chain variable region of both human and C57BL/6 mice can
7388 be simulated in a time-dependent fashion. Both single lineages using one set of
7389 V-, D-, and J-genes or full repertoires can be simulated. The algorithm begins
7390 with an initial V-D-J recombination event, starting the first phylogenetic tree.
7391 Upon completion, the main loop of the algorithm begins, with each iteration
7392 representing one simulated time step. Various mutation events are possible at
7393 each time step, contributing to a diverse final repertoire.")
7394 (license license:gpl2)))
7395
7396 (define-public r-quic
7397 (package
7398 (name "r-quic")
7399 (version "1.1")
7400 (source
7401 (origin
7402 (method url-fetch)
7403 (uri (cran-uri "QUIC" version))
7404 (sha256
7405 (base32 "021bp9xbaih60qmss015ycblbv6d1dvb1z89y93zpqqnc2qhpv3c"))))
7406 (properties `((upstream-name . "QUIC")))
7407 (build-system r-build-system)
7408 (home-page "https://www.cs.utexas.edu/users/sustik/QUIC/")
7409 (synopsis "Regularized sparse inverse covariance matrix estimation")
7410 (description
7411 "This package implements the regularized Gaussian maximum likelihood
7412 estimation of the inverse of a covariance matrix. It uses Newton's method and
7413 coordinate descent to solve the regularized inverse covariance matrix
7414 estimation problem.")
7415 ;; The project home page states that the release is under GPLv3 or later.
7416 ;; The CRAN page only says GPL-3.
7417 (license license:gpl3+)))
7418
7419 (define-public r-abundant
7420 (package
7421 (name "r-abundant")
7422 (version "1.1")
7423 (source
7424 (origin
7425 (method url-fetch)
7426 (uri (cran-uri "abundant" version))
7427 (sha256
7428 (base32 "1m76qdmqvwpgm0sihazi2dna7cgsz9rljal18vgffb5wamwmg9k7"))))
7429 (build-system r-build-system)
7430 (propagated-inputs
7431 `(("r-quic" ,r-quic)))
7432 (home-page "https://cran.r-project.org/web/packages/abundant/")
7433 (synopsis "Abundant regression and high-dimensional principal fitted components")
7434 (description
7435 "This package provides tools to fit and predict with the high-dimensional
7436 principal fitted components model. This model is described by Cook, Forzani,
7437 and Rothman (2012) @url{doi:10.1214/11-AOS962}.")
7438 ;; The DESCRIPTION file states GPL-2, but since it directly depends on a
7439 ;; GPLv3+ package (QUIC) this likely means GPLv2+.
7440 (license license:gpl2+)))
7441
7442 (define-public r-ac3net
7443 (package
7444 (name "r-ac3net")
7445 (version "1.2.2")
7446 (source
7447 (origin
7448 (method url-fetch)
7449 (uri (cran-uri "Ac3net" version))
7450 (sha256
7451 (base32 "1ns4n0xxz6p34c11bj0k7nzgmyqr9mis2b0g5nfz37dbikndyqyz"))))
7452 (properties `((upstream-name . "Ac3net")))
7453 (build-system r-build-system)
7454 (propagated-inputs
7455 `(("r-data-table" ,r-data-table)))
7456 (home-page "https://cran.r-project.org/web/packages/Ac3net/")
7457 (synopsis "Inferring directional conservative causal core gene networks")
7458 (description "This package infers directional Conservative causal core
7459 (gene) networks (C3NET). This is a version of the algorithm C3NET with
7460 directional network.")
7461 (license license:gpl3+)))
7462
7463 (define-public r-aca
7464 (package
7465 (name "r-aca")
7466 (version "1.1")
7467 (source
7468 (origin
7469 (method url-fetch)
7470 (uri (cran-uri "ACA" version))
7471 (sha256
7472 (base32 "1i3hm27nvnkvc39xlh0d1blq8q0q02czmvgi3cazmjx3jvxay0vq"))))
7473 (properties `((upstream-name . "ACA")))
7474 (build-system r-build-system)
7475 (home-page "https://cran.r-project.org/web/packages/ACA/")
7476 (synopsis "Abrupt change-point or aberration detection in point series")
7477 (description
7478 "This package offers an interactive function for the detection of breakpoints in
7479 series.")
7480 ;; Any version of the GPL
7481 (license (list license:gpl2+ license:gpl3+))))
7482
7483 (define-public r-acceptancesampling
7484 (package
7485 (name "r-acceptancesampling")
7486 (version "1.0-6")
7487 (source
7488 (origin
7489 (method url-fetch)
7490 (uri (cran-uri "AcceptanceSampling" version))
7491 (sha256
7492 (base32 "1z3rmln63ki2kik9kinbwr9qhr32ggbmh4mm3xqy6di119n47ca9"))))
7493 (properties
7494 `((upstream-name . "AcceptanceSampling")))
7495 (build-system r-build-system)
7496 (home-page "https://cran.r-project.org/web/packages/AcceptanceSampling/")
7497 (synopsis "Creation and evaluation of acceptance sampling plans")
7498 (description
7499 "This @code{r-acceptancesampling} provides functionality for creating and evaluating
7500 acceptance sampling plans. Acceptance sampling is a methodology commonly used
7501 in quality control and improvement. International standards of acceptance
7502 sampling provide sampling plans for specific circumstances. The aim of this
7503 package is to provide an easy-to-use interface to visualize single, double or
7504 multiple sampling plans. In addition, methods have been provided to enable the
7505 user to assess sampling plans against pre-specified levels of performance, as
7506 measured by the probability of acceptance for a given level of quality in the
7507 lot.")
7508 (license license:gpl3+)))
7509
7510 (define-public r-acclma
7511 (package
7512 (name "r-acclma")
7513 (version "1.0")
7514 (source
7515 (origin
7516 (method url-fetch)
7517 (uri (cran-uri "ACCLMA" version))
7518 (sha256
7519 (base32 "1na27sp18fq12gp6vxgqw1ffsz2yi1d8xvrxbrzx5g1kqxrayy0v"))))
7520 (properties `((upstream-name . "ACCLMA")))
7521 (build-system r-build-system)
7522 (home-page "https://cran.r-project.org/web/packages/ACCLMA/")
7523 (synopsis "ACC & LMA graph plotting")
7524 (description
7525 "This package contains a function that imports data from a @acronym{CSV,
7526 Comma-Separated Values} file, or uses manually entered data from the format (x,
7527 y, weight) and plots the appropriate @acronym{ACC, Absolute Concentration
7528 Curve} vs @acronym{LOI, Line of Independence} graph and
7529 @acronym{LMA, @acronym{LOI} Minus @acronym{ACC}} graph. The main
7530 function is @code{plotLMA} (source file, header) that takes a data set and plots the
7531 appropriate @acronym{LMA} and @acronym{ACC} graphs. If no source file (a
7532 string) was passed, a manual data entry window is opened. The header parameter
7533 indicates by TRUE/FALSE (false by default) if the source @acronym{CSV} file has
7534 a header row or not. The dataset should contain only one independent variable
7535 (x) and one dependent variable (y) and can contain a weight for each
7536 observation.")
7537 (license license:gpl2)))
7538
7539 (define-public r-aspi
7540 (package
7541 (name "r-aspi")
7542 (version "0.2.0")
7543 (source
7544 (origin
7545 (method url-fetch)
7546 (uri (cran-uri "aspi" version))
7547 (sha256
7548 (base32 "0rhvxw243vvdv3hxa6pi343gcjc2cbxq1jzqirl9k1l4i3897l87"))))
7549 (build-system r-build-system)
7550 (home-page
7551 "https://cran.r-project.org/web/packages/aspi/")
7552 (synopsis
7553 "Analysis of symmetry of parasitic infections")
7554 (description
7555 "This package provides tools for the analysis and visualization of bilateral
7556 asymmetry in parasitic infections.")
7557 (license license:gpl3+)))
7558
7559 (define-public r-sandwich
7560 (package
7561 (name "r-sandwich")
7562 (version "2.5-1")
7563 (source
7564 (origin
7565 (method url-fetch)
7566 (uri (cran-uri "sandwich" version))
7567 (sha256
7568 (base32
7569 "1mk685b9wq7k566pbml52rj96i5h6b3vf215k9picgmq296nzvyv"))))
7570 (build-system r-build-system)
7571 (propagated-inputs
7572 `(("r-zoo" ,r-zoo)))
7573 (home-page "https://cran.r-project.org/web/packages/sandwich/")
7574 (synopsis "Robust Covariance Matrix Estimators")
7575 (description
7576 "This package provides model-robust standard error estimators for
7577 cross-sectional, time series, clustered, panel, and longitudinal data.")
7578 ;; Either version of the license.
7579 (license (list license:gpl2 license:gpl3))))
7580
7581 (define-public r-th-data
7582 (package
7583 (name "r-th-data")
7584 (version "1.0-10")
7585 (source
7586 (origin
7587 (method url-fetch)
7588 (uri (cran-uri "TH.data" version))
7589 (sha256
7590 (base32
7591 "0mgz7aj2d9abbmdr65zgmg1ddp3fdbs3mfj83r5xadh5ldkir2k1"))))
7592 (properties `((upstream-name . "TH.data")))
7593 (build-system r-build-system)
7594 (propagated-inputs
7595 `(("r-mass" ,r-mass)
7596 ("r-survival" ,r-survival)))
7597 (home-page "https://cran.r-project.org/web/packages/TH.data/")
7598 (synopsis "Shared data sets")
7599 (description
7600 "This package contains supporting data sets that are used in other
7601 packages maintained by Torsten Hothorn.")
7602 (license license:gpl3)))
7603
7604 (define-public r-multcomp
7605 (package
7606 (name "r-multcomp")
7607 (version "1.4-10")
7608 (source
7609 (origin
7610 (method url-fetch)
7611 (uri (cran-uri "multcomp" version))
7612 (sha256
7613 (base32
7614 "1kzmdn9jmz5bmhf3wsfr12ljbasmwsgcsfdia52k0bi6q0swdg19"))))
7615 (build-system r-build-system)
7616 (propagated-inputs
7617 `(("r-codetools" ,r-codetools)
7618 ("r-mvtnorm" ,r-mvtnorm)
7619 ("r-sandwich" ,r-sandwich)
7620 ("r-survival" ,r-survival)
7621 ("r-th-data" ,r-th-data)))
7622 (home-page "https://cran.r-project.org/web/packages/multcomp/")
7623 (synopsis "Simultaneous inference in general parametric models")
7624 (description
7625 "Simultaneous tests and confidence intervals for general linear
7626 hypotheses in parametric models, including linear, generalized linear, linear
7627 mixed effects, and survival models. The package includes demos reproducing
7628 analyzes presented in the book \"Multiple Comparisons Using R\" (Bretz,
7629 Hothorn, Westfall, 2010, CRC Press).")
7630 (license license:gpl2)))
7631
7632 (define-public r-emmeans
7633 (package
7634 (name "r-emmeans")
7635 (version "1.3.4")
7636 (source
7637 (origin
7638 (method url-fetch)
7639 (uri (cran-uri "emmeans" version))
7640 (sha256
7641 (base32
7642 "09gxphan34c615y4lhjdqkg5cz4ih9b1r3bb4chs3mwmiav1rxqn"))))
7643 (build-system r-build-system)
7644 (propagated-inputs
7645 `(("r-estimability" ,r-estimability)
7646 ("r-mvtnorm" ,r-mvtnorm)
7647 ("r-numderiv" ,r-numderiv)
7648 ("r-plyr" ,r-plyr)
7649 ("r-xtable" ,r-xtable)))
7650 (home-page "https://github.com/rvlenth/emmeans")
7651 (synopsis "Estimated marginal means, aka least-squares means")
7652 (description
7653 "This package provides tools to obtain @dfn{estimated marginal
7654 means} (EMMs) for many linear, generalized linear, and mixed models. It can
7655 be used to compute contrasts or linear functions of EMMs, trends, and
7656 comparisons of slopes.")
7657 ;; Either version of the license.
7658 (license (list license:gpl2 license:gpl3))))
7659
7660 (define-public r-pwr
7661 (package
7662 (name "r-pwr")
7663 (version "1.2-2")
7664 (source
7665 (origin
7666 (method url-fetch)
7667 (uri (cran-uri "pwr" version))
7668 (sha256
7669 (base32
7670 "0r5g781lr677vp3zyhgmi7r68c87l8gd05l1s3ffnxgn5wf043sm"))))
7671 (build-system r-build-system)
7672 (native-inputs
7673 `(("r-knitr" ,r-knitr)))
7674 (home-page "https://github.com/heliosdrm/pwr")
7675 (synopsis "Basic functions for power analysis")
7676 (description
7677 "This package provides power analysis functions along the lines of
7678 Cohen (1988).")
7679 (license license:gpl3+)))
7680
7681 (define-public r-libcoin
7682 (package
7683 (name "r-libcoin")
7684 (version "1.0-4")
7685 (source
7686 (origin
7687 (method url-fetch)
7688 (uri (cran-uri "libcoin" version))
7689 (sha256
7690 (base32
7691 "1i893ij9vkmc4y721npw1s3prmmcs2da5vf3ajm0j8ccmfhbmp4i"))))
7692 (build-system r-build-system)
7693 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
7694 (home-page "https://cran.r-project.org/web/packages/libcoin")
7695 (synopsis "Linear test statistics for permutation inference")
7696 (description
7697 "This package provides basic infrastructure for linear test statistics
7698 and permutation inference in the framework of Strasser and Weber (1999).")
7699 (license license:gpl2)))
7700
7701 (define-public r-coin
7702 (package
7703 (name "r-coin")
7704 (version "1.3-0")
7705 (source
7706 (origin
7707 (method url-fetch)
7708 (uri (cran-uri "coin" version))
7709 (sha256
7710 (base32
7711 "1y0yl4mjaxca0jqz53sv1gcpdg89m099rq61iszxvpx7w0vvpkmd"))))
7712 (build-system r-build-system)
7713 (propagated-inputs
7714 `(("r-libcoin" ,r-libcoin)
7715 ("r-matrixstats" ,r-matrixstats)
7716 ("r-modeltools" ,r-modeltools)
7717 ("r-multcomp" ,r-multcomp)
7718 ("r-mvtnorm" ,r-mvtnorm)
7719 ("r-survival" ,r-survival)))
7720 (home-page "http://coin.r-forge.r-project.org")
7721 (synopsis "Conditional inference procedures in a permutation test framework")
7722 (description
7723 "This package provides conditional inference procedures for the general
7724 independence problem including two-sample, K-sample (non-parametric ANOVA),
7725 correlation, censored, ordered and multivariate problems.")
7726 (license license:gpl2)))
7727
7728 (define-public r-bayesplot
7729 (package
7730 (name "r-bayesplot")
7731 (version "1.6.0")
7732 (source
7733 (origin
7734 (method url-fetch)
7735 (uri (cran-uri "bayesplot" version))
7736 (sha256
7737 (base32
7738 "0in9cq2ybpa7njrwqx4l6nc8i01cjswsvzwlyiw465pi74aapr57"))))
7739 (build-system r-build-system)
7740 (inputs
7741 `(("pandoc" ,ghc-pandoc)
7742 ("pandoc-citeproc" ,ghc-pandoc-citeproc)))
7743 (propagated-inputs
7744 `(("r-dplyr" ,r-dplyr)
7745 ("r-ggplot2" ,r-ggplot2)
7746 ("r-ggridges" ,r-ggridges)
7747 ("r-reshape2" ,r-reshape2)
7748 ("r-rlang" ,r-rlang)))
7749 (home-page "http://mc-stan.org/bayesplot")
7750 (synopsis "Plotting for Bayesian models")
7751 (description
7752 "This package provides plotting functions for posterior analysis, model
7753 checking, and MCMC diagnostics. The package is designed not only to provide
7754 convenient functionality for users, but also a common set of functions that
7755 can be easily used by developers working on a variety of R packages for
7756 Bayesian modeling.")
7757 (license license:gpl3+)))
7758
7759 (define-public r-tmb
7760 (package
7761 (name "r-tmb")
7762 (version "1.7.15")
7763 (source
7764 (origin
7765 (method url-fetch)
7766 (uri (cran-uri "TMB" version))
7767 (sha256
7768 (base32
7769 "1r2d8c5iazihba42sn33yarv0dcfiy989sx64zcf14zr8k6cgjzs"))))
7770 (properties `((upstream-name . "TMB")))
7771 (build-system r-build-system)
7772 (propagated-inputs
7773 `(("r-matrix" ,r-matrix)
7774 ("r-rcppeigen" ,r-rcppeigen)))
7775 (home-page "http://tmb-project.org")
7776 (synopsis "Template model builder: a general random effect tool")
7777 (description
7778 "With this tool, a user should be able to quickly implement complex
7779 random effect models through simple C++ templates. The package combines
7780 @code{CppAD} (C++ automatic differentiation), @code{Eigen} (templated
7781 matrix-vector library) and @code{CHOLMOD} (sparse matrix routines available
7782 from R) to obtain an efficient implementation of the applied Laplace
7783 approximation with exact derivatives. Key features are: Automatic sparseness
7784 detection, parallelism through BLAS and parallel user templates.")
7785 (license license:gpl2)))
7786
7787 (define-public r-sjstats
7788 (package
7789 (name "r-sjstats")
7790 (version "0.17.4")
7791 (source
7792 (origin
7793 (method url-fetch)
7794 (uri (cran-uri "sjstats" version))
7795 (sha256
7796 (base32
7797 "012hp9m17xzjnsfvjjz2wdfgxm3irsrfx0zmahfnfmgdrwxd5vk5"))))
7798 (build-system r-build-system)
7799 (propagated-inputs
7800 `(("r-broom" ,r-broom)
7801 ("r-dplyr" ,r-dplyr)
7802 ("r-emmeans" ,r-emmeans)
7803 ("r-insight" ,r-insight)
7804 ("r-lme4" ,r-lme4)
7805 ("r-magrittr" ,r-magrittr)
7806 ("r-mass" ,r-mass)
7807 ("r-matrix" ,r-matrix)
7808 ("r-modelr" ,r-modelr)
7809 ("r-purrr" ,r-purrr)
7810 ("r-rlang" ,r-rlang)
7811 ("r-sjlabelled" ,r-sjlabelled)
7812 ("r-sjmisc" ,r-sjmisc)
7813 ("r-tidyr" ,r-tidyr)))
7814 (home-page "https://github.com/strengejacke/sjstats")
7815 (synopsis "Functions for common statistical computations")
7816 (description
7817 "This package provides a collection of convenient functions for common
7818 statistical computations, which are not directly provided by R's @code{base}
7819 or @code{stats} packages. This package aims at providing, first, shortcuts
7820 for statistical measures, which otherwise could only be calculated with
7821 additional effort. Second, these shortcut functions are generic, and can be
7822 applied not only to vectors, but also to other objects as well. The focus of
7823 most functions lies on summary statistics or fit measures for regression
7824 models, including generalized linear models, mixed effects models and Bayesian
7825 models.")
7826 (license license:gpl3)))
7827
7828 (define-public r-glmmtmb
7829 (package
7830 (name "r-glmmtmb")
7831 (version "0.2.3")
7832 (source
7833 (origin
7834 (method url-fetch)
7835 (uri (cran-uri "glmmTMB" version))
7836 (sha256
7837 (base32
7838 "035hkywa37bz555fv6znxd4hfcs5w884365wfnwk4jx5vann4vvb"))))
7839 (properties `((upstream-name . "glmmTMB")))
7840 (build-system r-build-system)
7841 (propagated-inputs
7842 `(("r-lme4" ,r-lme4)
7843 ("r-matrix" ,r-matrix)
7844 ("r-nlme" ,r-nlme)
7845 ("r-rcppeigen" ,r-rcppeigen)
7846 ("r-tmb" ,r-tmb)))
7847 (native-inputs
7848 `(("r-knitr" ,r-knitr))) ; for vignettes
7849 (home-page "https://github.com/glmmTMB")
7850 (synopsis "Generalized linear mixed models")
7851 (description
7852 "Fit linear and generalized linear mixed models with various extensions,
7853 including zero-inflation. The models are fitted using maximum likelihood
7854 estimation via the Template Model Builder. Random effects are assumed to be
7855 Gaussian on the scale of the linear predictor and are integrated out using the
7856 Laplace approximation. Gradients are calculated using automatic
7857 differentiation.")
7858 (license license:agpl3+)))
7859
7860 (define-public r-bayestestr
7861 (package
7862 (name "r-bayestestr")
7863 (version "0.1.0")
7864 (source
7865 (origin
7866 (method url-fetch)
7867 (uri (cran-uri "bayestestR" version))
7868 (sha256
7869 (base32
7870 "1m6gj55z3shm3m3mgqj8nk73wij67y617sl04rbj400wz9qrhfva"))))
7871 (properties `((upstream-name . "bayestestR")))
7872 (build-system r-build-system)
7873 (propagated-inputs
7874 `(("r-insight" ,r-insight)))
7875 (home-page "https://github.com/easystats/bayestestR")
7876 (synopsis "Describe Bayesian models and posterior distributions")
7877 (description
7878 "This package provides utilities to understand and describe posterior
7879 distributions and Bayesian models. It includes point-estimates such as
7880 @dfn{Maximum A Posteriori} (MAP), measures of dispersion such as @dfn{Highest
7881 Density Interval} (HDI), and indices used for null-hypothesis testing (such as
7882 ROPE percentage and pd).")
7883 (license license:gpl3)))
7884
7885 (define-public r-performance
7886 (package
7887 (name "r-performance")
7888 (version "0.1.0")
7889 (source
7890 (origin
7891 (method url-fetch)
7892 (uri (cran-uri "performance" version))
7893 (sha256
7894 (base32
7895 "19lfx25hkavzbycrh6hq4v24a0dz4s60ryq6jyihjlxgrb9g7cnw"))))
7896 (build-system r-build-system)
7897 (propagated-inputs
7898 `(("r-bayestestr" ,r-bayestestr)
7899 ("r-insight" ,r-insight)))
7900 (home-page "https://easystats.github.io/performance/")
7901 (synopsis "Assessment of regression models performance")
7902 (description
7903 "This package provides utilities for computing measures to assess model
7904 quality, which are not directly provided by R's @code{base} or @code{stats}
7905 packages. These include e.g. measures like r-squared, intraclass correlation
7906 coefficient, root mean squared error or functions to check models for
7907 overdispersion, singularity or zero-inflation and more. Functions apply to a
7908 large variety of regression models, including generalized linear models, mixed
7909 effects models and Bayesian models.")
7910 (license license:gpl3)))
7911
7912 (define-public r-ggeffects
7913 (package
7914 (name "r-ggeffects")
7915 (version "0.9.0")
7916 (source
7917 (origin
7918 (method url-fetch)
7919 (uri (cran-uri "ggeffects" version))
7920 (sha256
7921 (base32
7922 "1bbr44yk1j8pz4kcbw1cqrzcnbih9n6rsgf96a6py5094qcal2qd"))))
7923 (build-system r-build-system)
7924 (propagated-inputs
7925 `(("r-dplyr" ,r-dplyr)
7926 ("r-insight" ,r-insight)
7927 ("r-magrittr" ,r-magrittr)
7928 ("r-mass" ,r-mass)
7929 ("r-purrr" ,r-purrr)
7930 ("r-rlang" ,r-rlang)
7931 ("r-scales" ,r-scales)
7932 ("r-sjlabelled" ,r-sjlabelled)
7933 ("r-sjmisc" ,r-sjmisc)))
7934 (home-page "https://github.com/strengejacke/ggeffects")
7935 (synopsis "Create tidy data frames of marginal effects for ggplot")
7936 (description
7937 "This package provides tools to compute marginal effects from statistical
7938 models and return the result as tidy data frames. These data frames are ready
7939 to use with the @code{ggplot2} package. Marginal effects can be calculated
7940 for many different models. Interaction terms, splines and polynomial terms
7941 are also supported. The two main functions are @code{ggpredict()} and
7942 @code{ggeffect()}. There is a generic @code{plot()} method to plot the
7943 results using @code{ggplot2}.")
7944 (license license:gpl3)))
7945
7946 (define-public r-sjplot
7947 (package
7948 (name "r-sjplot")
7949 (version "2.6.3")
7950 (source
7951 (origin
7952 (method url-fetch)
7953 (uri (cran-uri "sjPlot" version))
7954 (sha256
7955 (base32
7956 "0h1mkmp5mrkbf7y3zh6m4cnm737cpg1m5si0lrmal7j2ixqicwjy"))))
7957 (properties `((upstream-name . "sjPlot")))
7958 (build-system r-build-system)
7959 (propagated-inputs
7960 `(("r-bayestestr" ,r-bayestestr)
7961 ("r-broom" ,r-broom)
7962 ("r-dplyr" ,r-dplyr)
7963 ("r-forcats" ,r-forcats)
7964 ("r-ggeffects" ,r-ggeffects)
7965 ("r-ggplot2" ,r-ggplot2)
7966 ("r-glmmtmb" ,r-glmmtmb)
7967 ("r-insight" ,r-insight)
7968 ("r-knitr" ,r-knitr)
7969 ("r-lme4" ,r-lme4)
7970 ("r-magrittr" ,r-magrittr)
7971 ("r-mass" ,r-mass)
7972 ("r-modelr" ,r-modelr)
7973 ("r-nlme" ,r-nlme)
7974 ("r-performance" ,r-performance)
7975 ("r-psych" ,r-psych)
7976 ("r-purrr" ,r-purrr)
7977 ("r-rlang" ,r-rlang)
7978 ("r-scales" ,r-scales)
7979 ("r-sjlabelled" ,r-sjlabelled)
7980 ("r-sjmisc" ,r-sjmisc)
7981 ("r-sjstats" ,r-sjstats)
7982 ("r-tidyr" ,r-tidyr)))
7983 (home-page "https://strengejacke.github.io/sjPlot/")
7984 (synopsis "Data visualization for statistics in social science")
7985 (description
7986 "This package represents a collection of plotting and table output
7987 functions for data visualization. Results of various statistical
7988 analyses (that are commonly used in social sciences) can be visualized using
7989 this package, including simple and cross tabulated frequencies, histograms,
7990 box plots, (generalized) linear models, mixed effects models, principal
7991 component analysis and correlation matrices, cluster analyses, scatter plots,
7992 stacked scales, effects plots of regression models (including interaction
7993 terms) and much more. This package supports labelled data.")
7994 (license license:gpl3)))
7995
7996 (define-public r-ini
7997 (package
7998 (name "r-ini")
7999 (version "0.3.1")
8000 (source
8001 (origin
8002 (method url-fetch)
8003 (uri (cran-uri "ini" version))
8004 (sha256
8005 (base32
8006 "04yqij344dwm0xqgara8xia42mlmij3i8711qbb5534w05a1l6bv"))))
8007 (build-system r-build-system)
8008 (home-page "https://github.com/dvdscripter/ini")
8009 (synopsis "Read and write configuration files")
8010 (description
8011 "This package provides tools to parse simple @code{.ini} configuration
8012 files to an structured list. Users can manipulate this resulting list with
8013 @code{lapply()} functions. This same structured list can be used to write
8014 back to file after modifications.")
8015 (license license:gpl3)))
8016
8017 (define-public r-gh
8018 (package
8019 (name "r-gh")
8020 (version "1.0.1")
8021 (source
8022 (origin
8023 (method url-fetch)
8024 (uri (cran-uri "gh" version))
8025 (sha256
8026 (base32
8027 "1llinfajb0g7006jd2w1hpskxpmkjhnqarcjb71r1qvsccb2ph7k"))))
8028 (build-system r-build-system)
8029 (propagated-inputs
8030 `(("r-httr" ,r-httr)
8031 ("r-ini" ,r-ini)
8032 ("r-jsonlite" ,r-jsonlite)))
8033 (home-page "https://github.com/r-lib/gh#readme")
8034 (synopsis "Access the GitHub API via R")
8035 (description
8036 "This package provides a minimal R client to access the GitHub API.")
8037 (license license:expat)))
8038
8039 (define-public r-fs
8040 (package
8041 (name "r-fs")
8042 (version "1.3.0")
8043 (source
8044 (origin
8045 (method url-fetch)
8046 (uri (cran-uri "fs" version))
8047 (sha256
8048 (base32
8049 "1p6y0ar5kidwv0f5vzhj7yaw5802rpqwdma2ij3vrvjf9f7l9z1s"))))
8050 (build-system r-build-system)
8051 (propagated-inputs
8052 `(("r-rcpp" ,r-rcpp)))
8053 (native-inputs
8054 `(("pkg-config" ,pkg-config)))
8055 (home-page "http://fs.r-lib.org")
8056 (synopsis "Cross-platform file system operations based on libuv")
8057 (description
8058 "This package provides a cross-platform interface to file system
8059 operations, built on top of the libuv C library.")
8060 (license license:gpl3)))
8061
8062 (define-public r-clisymbols
8063 (package
8064 (name "r-clisymbols")
8065 (version "1.2.0")
8066 (source
8067 (origin
8068 (method url-fetch)
8069 (uri (cran-uri "clisymbols" version))
8070 (sha256
8071 (base32
8072 "1q7gi2zmykhzas9v8fdnbpdq7pzdcpbhim1yxvd2062l777g4j86"))))
8073 (build-system r-build-system)
8074 (home-page "https://github.com/gaborcsardi/clisymbols")
8075 (synopsis "Unicode symbols at the R prompt")
8076 (description
8077 "This package provides a small subset of Unicode symbols, that are useful
8078 when building command line applications. They fall back to alternatives on
8079 terminals that do not support Unicode.")
8080 (license license:expat)))
8081
8082 (define-public r-usethis
8083 (package
8084 (name "r-usethis")
8085 (version "1.5.0")
8086 (source
8087 (origin
8088 (method url-fetch)
8089 (uri (cran-uri "usethis" version))
8090 (sha256
8091 (base32
8092 "0pn6ka3726psaqlx573g6nxi90apf0rn5m4k2lz1jr66xdc19sag"))))
8093 (build-system r-build-system)
8094 (propagated-inputs
8095 `(("r-clipr" ,r-clipr)
8096 ("r-clisymbols" ,r-clisymbols)
8097 ("r-crayon" ,r-crayon)
8098 ("r-curl" ,r-curl)
8099 ("r-desc" ,r-desc)
8100 ("r-fs" ,r-fs)
8101 ("r-gh" ,r-gh)
8102 ("r-git2r" ,r-git2r)
8103 ("r-glue" ,r-glue)
8104 ("r-purrr" ,r-purrr)
8105 ("r-rlang" ,r-rlang)
8106 ("r-rprojroot" ,r-rprojroot)
8107 ("r-rstudioapi" ,r-rstudioapi)
8108 ("r-whisker" ,r-whisker)
8109 ("r-withr" ,r-withr)
8110 ("r-yaml" ,r-yaml)))
8111 (home-page "https://github.com/r-lib/usethis")
8112 (synopsis "Automate R package and project setup")
8113 (description
8114 "This package helps you to automate R package and project setup tasks
8115 that are otherwise performed manually. This includes setting up unit testing,
8116 test coverage, continuous integration, Git, GitHub integration, licenses,
8117 Rcpp, RStudio projects, and more.")
8118 (license license:gpl3)))
8119
8120 (define-public r-sessioninfo
8121 (package
8122 (name "r-sessioninfo")
8123 (version "1.1.1")
8124 (source
8125 (origin
8126 (method url-fetch)
8127 (uri (cran-uri "sessioninfo" version))
8128 (sha256
8129 (base32
8130 "0j5f3l58fynxx3v0w62vqpii7miabszgljpja36xx9s8hikh8sqn"))))
8131 (build-system r-build-system)
8132 (propagated-inputs
8133 `(("r-cli" ,r-cli)
8134 ("r-withr" ,r-withr)))
8135 (home-page "https://github.com/r-lib/sessioninfo#readme")
8136 (synopsis "R session information")
8137 (description
8138 "This package provides tools to query and print information about the
8139 current R session. It is similar to @code{utils::sessionInfo()}, but includes
8140 more information about packages, and where they were installed from.")
8141 (license license:gpl2)))
8142
8143 (define-public r-remotes
8144 (package
8145 (name "r-remotes")
8146 (version "2.0.4")
8147 (source
8148 (origin
8149 (method url-fetch)
8150 (uri (cran-uri "remotes" version))
8151 (sha256
8152 (base32
8153 "1jbn4kjimcr82zv5lnqxqa2487a96vn6jxf7wc6gnpxr6k06d61p"))))
8154 (build-system r-build-system)
8155 (home-page "https://github.com/r-lib/remotes#readme")
8156 (synopsis "R package installation from remote repositories")
8157 (description
8158 "Download and install R packages stored in GitHub, BitBucket, or plain
8159 subversion or git repositories. This package is a lightweight replacement of
8160 the @code{install_*} functions in the @code{devtools} package. Indeed most of
8161 the code was copied over from @code{devtools}.")
8162 (license license:gpl2+)))
8163
8164 (define-public r-xopen
8165 (package
8166 (name "r-xopen")
8167 (version "1.0.0")
8168 (source
8169 (origin
8170 (method url-fetch)
8171 (uri (cran-uri "xopen" version))
8172 (sha256
8173 (base32
8174 "1vrvgdika1d63dwygynbv2wmd87ll8dji5dy89hj576n8hw601z2"))))
8175 (build-system r-build-system)
8176 (propagated-inputs
8177 `(("r-processx" ,r-processx)))
8178 (home-page "https://github.com/r-lib/xopen#readme")
8179 (synopsis "Open system files, URLs, anything")
8180 (description
8181 "This package provides a cross-platform solution to open files,
8182 directories or URLs with their associated programs.")
8183 (license license:expat)))
8184
8185 (define-public r-rcmdcheck
8186 (package
8187 (name "r-rcmdcheck")
8188 (version "1.3.2")
8189 (source
8190 (origin
8191 (method url-fetch)
8192 (uri (cran-uri "rcmdcheck" version))
8193 (sha256
8194 (base32
8195 "0ys1nd7690mhwzslyzg8fq1wxr28nz8g6av5iykkrshb8lkxg7ly"))))
8196 (build-system r-build-system)
8197 (propagated-inputs
8198 `(("r-callr" ,r-callr)
8199 ("r-cli" ,r-cli)
8200 ("r-crayon" ,r-crayon)
8201 ("r-desc" ,r-desc)
8202 ("r-digest" ,r-digest)
8203 ("r-pkgbuild" ,r-pkgbuild)
8204 ("r-prettyunits" ,r-prettyunits)
8205 ("r-r6" ,r-r6)
8206 ("r-rprojroot" ,r-rprojroot)
8207 ("r-sessioninfo" ,r-sessioninfo)
8208 ("r-withr" ,r-withr)
8209 ("r-xopen" ,r-xopen)))
8210 (home-page "https://github.com/r-Lib/rcmdcheck#readme")
8211 (synopsis "Run R CMD check from R and capture results")
8212 (description
8213 "Run @code{R CMD check} from R programmatically, and capture the results
8214 of the individual checks.")
8215 (license license:expat)))
8216
8217 (define-public r-rapportools
8218 (package
8219 (name "r-rapportools")
8220 (version "1.0")
8221 (source
8222 (origin
8223 (method url-fetch)
8224 (uri (cran-uri "rapportools" version))
8225 (sha256
8226 (base32
8227 "1sgv4sc737i12arh5dc3263kjsz3dzg06qihfmrqyax94mv2d01b"))))
8228 (build-system r-build-system)
8229 (propagated-inputs
8230 `(("r-pander" ,r-pander)
8231 ("r-plyr" ,r-plyr)
8232 ("r-reshape" ,r-reshape)))
8233 (home-page "https://cran.r-project.org/web/packages/rapportools/")
8234 (synopsis "Miscellaneous helper functions with sane defaults for reporting")
8235 (description
8236 "This package provides helper functions that act as wrappers to more
8237 advanced statistical methods with the advantage of having sane defaults for
8238 quick reporting.")
8239 (license license:agpl3+)))
8240
8241 (define-public r-pander
8242 (package
8243 (name "r-pander")
8244 (version "0.6.3")
8245 (source
8246 (origin
8247 (method url-fetch)
8248 (uri (cran-uri "pander" version))
8249 (sha256
8250 (base32
8251 "1bd9sdghlsppmff18k5fg3i0visq9f4wc82rlhwq5m82bmgdgnyi"))))
8252 (build-system r-build-system)
8253 (propagated-inputs
8254 `(("r-digest" ,r-digest)
8255 ("r-rcpp" ,r-rcpp)))
8256 (home-page "https://rapporter.github.io/pander")
8257 (synopsis "Render R objects into Pandoc's markdown")
8258 (description
8259 "The main aim of the pander R package is to provide a minimal and easy
8260 tool for rendering R objects into Pandoc's markdown. The package is also
8261 capable of exporting/converting complex Pandoc documents (reports) in various
8262 ways.")
8263 ;; This package is licensed under either the AGPLv3+ or the very rarely
8264 ;; used OSL 3.0.
8265 (license license:agpl3+)))
8266
8267 (define-public r-summarytools
8268 (package
8269 (name "r-summarytools")
8270 (version "0.9.3")
8271 (source
8272 (origin
8273 (method url-fetch)
8274 (uri (cran-uri "summarytools" version))
8275 (sha256
8276 (base32
8277 "1wfbkgvicaic37zgpr6zcm4a58yx43p59h0sqggdj44ncqs7147f"))))
8278 (build-system r-build-system)
8279 (propagated-inputs
8280 `(("r-checkmate" ,r-checkmate)
8281 ("r-dplyr" ,r-dplyr)
8282 ("r-htmltools" ,r-htmltools)
8283 ("r-lubridate" ,r-lubridate)
8284 ("r-magick" ,r-magick)
8285 ("r-matrixstats" ,r-matrixstats)
8286 ("r-pander" ,r-pander)
8287 ("r-pryr" ,r-pryr)
8288 ("r-rapportools" ,r-rapportools)
8289 ("r-rcurl" ,r-rcurl)
8290 ("r-tibble" ,r-tibble)
8291 ("r-tidyr" ,r-tidyr)))
8292 (home-page "https://github.com/dcomtois/summarytools")
8293 (synopsis "Tools to quickly and neatly summarize data")
8294 (description
8295 "This package provides tools for data frame summaries, cross-tabulations,
8296 weight-enabled frequency tables and common univariate statistics in concise
8297 tables available in a variety of formats (plain ASCII, Markdown and HTML). A
8298 good point-of-entry for exploring data, both for experienced and new R
8299 users.")
8300 (license license:gpl2)))
8301
8302 (define-public r-lsei
8303 (package
8304 (name "r-lsei")
8305 (version "1.2-0")
8306 (source
8307 (origin
8308 (method url-fetch)
8309 (uri (cran-uri "lsei" version))
8310 (sha256
8311 (base32
8312 "1xl06fb3is744pxlh42wx5hn1h0ab1k31wnmsmh0524kxzcyp0a7"))))
8313 (build-system r-build-system)
8314 (native-inputs
8315 `(("gfortran" ,gfortran)))
8316 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
8317 (synopsis "Solve regression problems under equality/inequality constraints")
8318 (description
8319 "It contains functions that solve least squares linear regression
8320 problems under linear equality/inequality constraints. Functions for solving
8321 quadratic programming problems are also available, which transform such
8322 problems into least squares ones first.")
8323 (license license:gpl2+)))
8324
8325 (define-public r-npsurv
8326 (package
8327 (name "r-npsurv")
8328 (version "0.4-0")
8329 (source
8330 (origin
8331 (method url-fetch)
8332 (uri (cran-uri "npsurv" version))
8333 (sha256
8334 (base32
8335 "1wq4c9yfha5azjhrn40iiqkshmvh611sa90jp3lh82n4bl9zfk20"))))
8336 (build-system r-build-system)
8337 (propagated-inputs
8338 `(("r-lsei" ,r-lsei)))
8339 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
8340 (synopsis "Nonparametric survival analysis")
8341 (description
8342 "This package contains functions for non-parametric survival analysis of
8343 exact and interval-censored observations.")
8344 (license license:gpl2+)))
8345
8346 (define-public r-clusteval
8347 (package
8348 (name "r-clusteval")
8349 (version "0.1")
8350 (source
8351 (origin
8352 (method url-fetch)
8353 (uri (cran-uri "clusteval" version))
8354 (sha256
8355 (base32
8356 "1ld0bdl4fy8dsfzm3k7a37cyxc6pfc9qs31x4pxd3z5rslghz7rj"))))
8357 (build-system r-build-system)
8358 (propagated-inputs
8359 `(("r-mvtnorm" ,r-mvtnorm)
8360 ("r-rcpp" ,r-rcpp)))
8361 (home-page "https://cran.r-project.org/web/packages/clusteval/")
8362 (synopsis "Evaluation of clustering algorithms")
8363 (description
8364 "This R package provides a suite of tools to evaluate clustering
8365 algorithms, clusterings, and individual clusters.")
8366 (license license:expat)))
8367
8368 (define-public r-tweedie
8369 (package
8370 (name "r-tweedie")
8371 (version "2.3.2")
8372 (source
8373 (origin
8374 (method url-fetch)
8375 (uri (cran-uri "tweedie" version))
8376 (sha256
8377 (base32
8378 "10fv998qjxsyx0h94fi0xbh6xbf24nwgh254n9zfnmix9vk2cqls"))))
8379 (build-system r-build-system)
8380 (native-inputs `(("gfortran" ,gfortran)))
8381 (home-page "https://cran.r-project.org/web/packages/tweedie/")
8382 (synopsis "Evaluation of Tweedie exponential family models")
8383 (description
8384 "Maximum likelihood computations for Tweedie families, including the
8385 series expansion (Dunn and Smyth, 2005; <doi10.1007/s11222-005-4070-y>) and
8386 the Fourier inversion (Dunn and Smyth, 2008; <doi:10.1007/s11222-007-9039-6>),
8387 and related methods.")
8388 (license license:gpl2+)))
8389
8390 (define-public r-rcppgsl
8391 (package
8392 (name "r-rcppgsl")
8393 (version "0.3.6")
8394 (source
8395 (origin
8396 (method url-fetch)
8397 (uri (cran-uri "RcppGSL" version))
8398 (sha256
8399 (base32
8400 "16pdapq31729db53agnb48jkvdm97167n3bigy5zazc3q3isis1m"))))
8401 (properties `((upstream-name . "RcppGSL")))
8402 (build-system r-build-system)
8403 (propagated-inputs
8404 `(("r-rcpp" ,r-rcpp)
8405 ("gsl" ,gsl)))
8406 (native-inputs
8407 `(("r-knitr" ,r-knitr))) ; for vignettes
8408 (home-page "https://cran.r-project.org/web/packages/RcppGSL/")
8409 (synopsis "Rcpp integration for GSL vectors and matrices")
8410 (description
8411 "The GNU Scientific Library (or GSL) is a collection of numerical
8412 routines for scientific computing. It is particularly useful for C and C++
8413 programs as it provides a standard C interface to a wide range of mathematical
8414 routines. There are over 1000 functions in total with an extensive test
8415 suite. The RcppGSL package provides an easy-to-use interface between GSL data
8416 structures and R using concepts from Rcpp which is itself a package that eases
8417 the interfaces between R and C++.")
8418 (license license:gpl2+)))
8419
8420 (define-public r-mvabund
8421 (package
8422 (name "r-mvabund")
8423 (version "4.0.1")
8424 (source
8425 (origin
8426 (method url-fetch)
8427 (uri (cran-uri "mvabund" version))
8428 (sha256
8429 (base32
8430 "0la935gsiryfc0zixxr1dqj0av271x96pqxbi3bp6dksbw5gm68k"))))
8431 (build-system r-build-system)
8432 (propagated-inputs
8433 `(("r-mass" ,r-mass)
8434 ("r-rcpp" ,r-rcpp)
8435 ("r-rcppgsl" ,r-rcppgsl)
8436 ("r-statmod" ,r-statmod)
8437 ("r-tweedie" ,r-tweedie)))
8438 (home-page "https://cran.r-project.org/web/packages/mvabund/")
8439 (synopsis "Statistical methods for analysing multivariate abundance data")
8440 (description
8441 "This package provides a set of tools for displaying, modeling and
8442 analysing multivariate abundance data in community ecology.")
8443 (license license:lgpl2.1+)))
8444
8445 (define-public r-afex
8446 (package
8447 (name "r-afex")
8448 (version "0.23-0")
8449 (source
8450 (origin
8451 (method url-fetch)
8452 (uri (cran-uri "afex" version))
8453 (sha256
8454 (base32
8455 "0yv4s7461swn0116y4wq9v139p1br5rr6hhnq1cmkbvybmwj2vp7"))))
8456 (build-system r-build-system)
8457 (propagated-inputs
8458 `(("r-car" ,r-car)
8459 ("r-lme4" ,r-lme4)
8460 ("r-lmertest" ,r-lmertest)
8461 ("r-pbkrtest" ,r-pbkrtest)
8462 ("r-reshape2" ,r-reshape2)))
8463 (home-page "https://afex.singmann.science/")
8464 (synopsis "Analysis of factorial experiments")
8465 (description
8466 "This package provides convenience functions for analyzing factorial
8467 experiments using ANOVA or mixed models.")
8468 (license license:gpl2+)))
8469
8470 (define-public r-lmertest
8471 (package
8472 (name "r-lmertest")
8473 (version "3.1-0")
8474 (source
8475 (origin
8476 (method url-fetch)
8477 (uri (cran-uri "lmerTest" version))
8478 (sha256
8479 (base32
8480 "1nkz8cmxa5yb8q4i65bmhnn5pd4bhwcyjplyscynb24z3f64xp9b"))))
8481 (properties `((upstream-name . "lmerTest")))
8482 (build-system r-build-system)
8483 (propagated-inputs
8484 `(("r-ggplot2" ,r-ggplot2)
8485 ("r-lme4" ,r-lme4)
8486 ("r-mass" ,r-mass)
8487 ("r-numderiv" ,r-numderiv)))
8488 (home-page "https://github.com/runehaubo/lmerTestR")
8489 (synopsis "Tests in linear mixed effects models")
8490 (description
8491 "This package provides p-values in type I, II or III anova and summary
8492 tables for @code{lmer} model fits via Satterthwaite's degrees of freedom
8493 method. A Kenward-Roger method is also available via the @code{pbkrtest}
8494 package. Model selection methods include step, drop1 and anova-like tables
8495 for random effects (ranova). Methods for Least-Square means (LS-means) and
8496 tests of linear contrasts of fixed effects are also available.")
8497 (license license:gpl2+)))
8498
8499 (define-public r-r2glmm
8500 (package
8501 (name "r-r2glmm")
8502 (version "0.1.2")
8503 (source
8504 (origin
8505 (method url-fetch)
8506 (uri (cran-uri "r2glmm" version))
8507 (sha256
8508 (base32
8509 "0iim92blpa59vgz97c2pi05yhbjjmaffdbkbmk5kplfb2vmazgiy"))))
8510 (build-system r-build-system)
8511 (propagated-inputs
8512 `(("r-afex" ,r-afex)
8513 ("r-data-table" ,r-data-table)
8514 ("r-dplyr" ,r-dplyr)
8515 ("r-ggplot2" ,r-ggplot2)
8516 ("r-gridextra" ,r-gridextra)
8517 ("r-lmertest" ,r-lmertest)
8518 ("r-mass" ,r-mass)
8519 ("r-matrix" ,r-matrix)
8520 ("r-mgcv" ,r-mgcv)
8521 ("r-pbkrtest" ,r-pbkrtest)))
8522 (home-page "https://github.com/bcjaeger/r2glmm")
8523 (synopsis "Compute R squared for mixed (multilevel) models")
8524 (description
8525 "This package computes model and semi partial R squared with confidence
8526 limits for the linear and generalized linear mixed model (LMM and GLMM). The
8527 R squared measure from L. J. Edwards et al. (2008) is extended to the GLMM
8528 using @dfn{penalized quasi-likelihood} (PQL) estimation (see Jaeger et
8529 al. (2016)).")
8530 (license license:gpl2)))
8531
8532 (define-public r-weights
8533 (package
8534 (name "r-weights")
8535 (version "1.0")
8536 (source
8537 (origin
8538 (method url-fetch)
8539 (uri (cran-uri "weights" version))
8540 (sha256
8541 (base32
8542 "0186bfpkhxngrshac6bpg37alp6slwhwd43inrm8hqg0vhpfgc4c"))))
8543 (build-system r-build-system)
8544 (propagated-inputs
8545 `(("r-gdata" ,r-gdata)
8546 ("r-hmisc" ,r-hmisc)
8547 ("r-mice" ,r-mice)))
8548 (home-page
8549 "https://cran.r-project.org/web/packages/weights/")
8550 (synopsis "Weighting and weighted statistics")
8551 (description "This package Provides a variety of functions for producing
8552 simple weighted statistics, such as weighted Pearson's correlations, partial
8553 correlations, Chi-Squared statistics, histograms, and t-tests. Also now
8554 includes some software for quickly recoding survey data and plotting point
8555 estimates from interaction terms in regressions (and multiply imputed
8556 regressions). NOTE: Weighted partial correlation calculations pulled to
8557 address a bug.")
8558 (license license:gpl2+)))
8559
8560 (define-public r-rcppannoy
8561 (package
8562 (name "r-rcppannoy")
8563 (version "0.0.11")
8564 (source
8565 (origin
8566 (method url-fetch)
8567 (uri (cran-uri "RcppAnnoy" version))
8568 (sha256
8569 (base32
8570 "1ik50ancfgcvh03n4jsqwjk8lf056rbgd70q4l4didmvh5kcyjd1"))))
8571 (properties `((upstream-name . "RcppAnnoy")))
8572 (build-system r-build-system)
8573 (propagated-inputs
8574 `(("r-rcpp" ,r-rcpp)))
8575 (native-inputs
8576 `(("r-knitr" ,r-knitr))) ; for vignettes
8577 (home-page "https://cran.r-project.org/web/packages/RcppAnnoy/")
8578 (synopsis "Rcpp bindings for Annoy, a library for Approximate Nearest Neighbors")
8579 (description
8580 "Annoy is a small C++ library for Approximate Nearest Neighbors written
8581 for efficient memory usage as well an ability to load from and save to disk.
8582 This package provides an R interface.")
8583 ;; Annoy is released under ASL 2.0, but this wrapper is released under
8584 ;; GPLv2+.
8585 (license (list license:gpl2+ license:asl2.0))))
8586
8587 (define-public r-rcpphnsw
8588 (package
8589 (name "r-rcpphnsw")
8590 (version "0.1.0")
8591 (source
8592 (origin
8593 (method url-fetch)
8594 (uri (cran-uri "RcppHNSW" version))
8595 (sha256
8596 (base32
8597 "158a069n42pbnjrlmvqsr6bm2cfp9hxpnk3nhp3dwi9qjlq4r9bm"))))
8598 (properties `((upstream-name . "RcppHNSW")))
8599 (build-system r-build-system)
8600 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
8601 (home-page "https://cran.r-project.org/web/packages/RcppHNSW/")
8602 (synopsis "Rcpp bindings for hnswlib, a library for approximate nearest neighbors")
8603 (description
8604 "Hnswlib is a C++ library for approximate nearest neighbors. This
8605 package provides a minimal R interface by relying on the Rcpp package.")
8606 ;; hnswlib is released under Version 2.0 of the Apache License.
8607 (license (list license:gpl3 license:asl2.0))))
8608
8609 (define-public r-ncdf4
8610 (package
8611 (name "r-ncdf4")
8612 (version "1.16.1")
8613 (source
8614 (origin
8615 (method url-fetch)
8616 (uri (cran-uri "ncdf4" version))
8617 (sha256
8618 (base32
8619 "083sb24anyd4sw0il3x07pqn9rbx5y5ayqass6mz8x443rnjvphd"))))
8620 (build-system r-build-system)
8621 (inputs
8622 `(("netcdf" ,netcdf)
8623 ("zlib" ,zlib)))
8624 (home-page "https://cran.r-project.org/web/packages/ncdf4/index.html")
8625 (synopsis "R interface to Unidata netCDF format data files")
8626 (description
8627 "This package provides a high-level R interface to data files written
8628 using Unidata's netCDF library (version 4 or earlier), which are binary data
8629 files that are portable across platforms and include metadata information in
8630 addition to the data sets. Using this package, netCDF files can be opened and
8631 data sets read in easily. It is also easy to create new netCDF dimensions,
8632 variables, and files, in either version 3 or 4 format, and manipulate existing
8633 netCDF files.")
8634 (license license:gpl3+)))
8635
8636 (define-public r-biocmanager
8637 (package
8638 (name "r-biocmanager")
8639 (version "1.30.4")
8640 (source
8641 (origin
8642 (method url-fetch)
8643 (uri (cran-uri "BiocManager" version))
8644 (sha256
8645 (base32
8646 "0kxs76pixk1d2lpvkyrq6nnvv1rqf55ph5f7igkadyyqirf3y2ah"))))
8647 (properties `((upstream-name . "BiocManager")))
8648 (build-system r-build-system)
8649 (home-page "https://cran.r-project.org/web/packages/BiocManager/")
8650 (synopsis "Access the Bioconductor project package repository")
8651 (description
8652 "This package provides a convenient tool to install and update
8653 Bioconductor packages.")
8654 (license license:artistic2.0)))
8655
8656 (define-public r-rgl
8657 (package
8658 (name "r-rgl")
8659 (version "0.100.19")
8660 (source
8661 (origin
8662 (method url-fetch)
8663 (uri (cran-uri "rgl" version))
8664 (sha256
8665 (base32
8666 "09bhvx8aq104yzysfgd7wlnq4vrvmnd4jzgj0c32whjfal10fqsh"))))
8667 (build-system r-build-system)
8668 (native-inputs
8669 `(("pkg-config" ,pkg-config)))
8670 (inputs
8671 `(("freetype" ,freetype)
8672 ("libpng" ,libpng)
8673 ("glu" ,glu)
8674 ("libx11" ,libx11)
8675 ("ghc-pandoc" ,ghc-pandoc)
8676 ("zlib" ,zlib)))
8677 (propagated-inputs
8678 `(("r-crosstalk" ,r-crosstalk)
8679 ("r-htmltools" ,r-htmltools)
8680 ("r-htmlwidgets" ,r-htmlwidgets)
8681 ("r-jsonlite" ,r-jsonlite)
8682 ("r-knitr" ,r-knitr)
8683 ("r-magrittr" ,r-magrittr)
8684 ("r-manipulatewidget" ,r-manipulatewidget)
8685 ("r-shiny" ,r-shiny)))
8686 (home-page "https://r-forge.r-project.org/projects/rgl/")
8687 (synopsis "3D visualization using OpenGL")
8688 (description
8689 "This package provides medium to high level functions for 3D interactive graphics,
8690 including functions modelled on base graphics (@code{plot3d()}, etc.) as well
8691 as functions for constructing representations of geometric
8692 objects (@code{cube3d()}, etc.). Output may be on screen using OpenGL, or to
8693 various standard 3D file formats including WebGL, PLY, OBJ, STL as well as 2D
8694 image formats, including PNG, Postscript, SVG, PGF.")
8695 ;; Any version of the GPL.
8696 (license (list license:gpl2+ license:gpl3+))))
8697
8698 (define-public r-multicool
8699 (package
8700 (name "r-multicool")
8701 (version "0.1-10")
8702 (source
8703 (origin
8704 (method url-fetch)
8705 (uri (cran-uri "multicool" version))
8706 (sha256
8707 (base32
8708 "1ybg9piya9psqg42w9i3zsnavbxhkfklfwl7cb420i5nkq6wpc2v"))))
8709 (build-system r-build-system)
8710 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
8711 (home-page "https://cran.r-project.org/web/packages/multicool/")
8712 (synopsis "Permutations of multisets in cool-lex order")
8713 (description
8714 "This package provides a set of tools to permute multisets without loops
8715 or hash tables and to generate integer partitions. Cool-lex order is similar
8716 to colexicographical order.")
8717 (license license:gpl2)))
8718
8719 (define-public r-misc3d
8720 (package
8721 (name "r-misc3d")
8722 (version "0.8-4")
8723 (source
8724 (origin
8725 (method url-fetch)
8726 (uri (cran-uri "misc3d" version))
8727 (sha256
8728 (base32
8729 "0qjzpw3h09qi2gfz52b7nhzd95p7yyxsd03fldc9wzzn6wi3vpkm"))))
8730 (build-system r-build-system)
8731 (home-page "https://cran.r-project.org/web/packages/misc3d/")
8732 (synopsis "Miscellaneous 3D Plots")
8733 (description
8734 "This package provides a collection of miscellaneous 3d plots, including
8735 isosurfaces.")
8736 ;; Any version of the GPL.
8737 (license (list license:gpl2+ license:gpl3+))))
8738
8739 (define-public r-ks
8740 (package
8741 (name "r-ks")
8742 (version "1.11.4")
8743 (source
8744 (origin
8745 (method url-fetch)
8746 (uri (cran-uri "ks" version))
8747 (sha256
8748 (base32
8749 "0d5i8458s8ri9pcx2jm003z1ajk7ha3pmw1sr6lgn6a8d7wgmvqb"))))
8750 (build-system r-build-system)
8751 (propagated-inputs
8752 `(("r-fnn" ,r-fnn)
8753 ("r-kernlab" ,r-kernlab)
8754 ("r-kernsmooth" ,r-kernsmooth)
8755 ("r-matrix" ,r-matrix)
8756 ("r-mclust" ,r-mclust)
8757 ("r-mgcv" ,r-mgcv)
8758 ("r-multicool" ,r-multicool)
8759 ("r-mvtnorm" ,r-mvtnorm)))
8760 (home-page "http://www.mvstat.net/tduong/")
8761 (synopsis "Kernel smoothing")
8762 (description
8763 "This package provides kernel smoothers for univariate and multivariate
8764 data, including density functions, density derivatives, cumulative
8765 distributions, modal clustering, discriminant analysis, and two-sample
8766 hypothesis testing.")
8767 ;; Either version of the GPL.
8768 (license (list license:gpl2 license:gpl3))))
8769
8770 (define-public r-feature
8771 (package
8772 (name "r-feature")
8773 (version "1.2.13")
8774 (source
8775 (origin
8776 (method url-fetch)
8777 (uri (cran-uri "feature" version))
8778 (sha256
8779 (base32
8780 "07hkw0bv38naj2hdsx4xxrm2dngi6w3rbvgr7s50bjic8hlgy1ra"))))
8781 (build-system r-build-system)
8782 (propagated-inputs
8783 `(("r-ks" ,r-ks)
8784 ("r-misc3d" ,r-misc3d)
8785 ("r-rgl" ,r-rgl)))
8786 (home-page "http://www.mvstat.net/tduong/")
8787 (synopsis "Inferential feature significance for kernel density estimation")
8788 (description
8789 "The feature package contains functions to display and compute kernel
8790 density estimates, significant gradient and significant curvature regions.
8791 Significant gradient and/or curvature regions often correspond to significant
8792 features (e.g. local modes).")
8793 ;; Either version of the GPL.
8794 (license (list license:gpl2 license:gpl3))))
8795
8796 (define-public r-arm
8797 (package
8798 (name "r-arm")
8799 (version "1.10-1")
8800 (source
8801 (origin
8802 (method url-fetch)
8803 (uri (cran-uri "arm" version))
8804 (sha256
8805 (base32
8806 "0vvp90jygajd6ydky57z66wqjq9msfbl88irj5jbsray574mh4bg"))))
8807 (build-system r-build-system)
8808 (propagated-inputs
8809 `(("r-abind" ,r-abind)
8810 ("r-coda" ,r-coda)
8811 ("r-lme4" ,r-lme4)
8812 ("r-mass" ,r-mass)
8813 ("r-matrix" ,r-matrix)
8814 ("r-nlme" ,r-nlme)))
8815 (home-page "https://cran.r-project.org/web/packages/arm/")
8816 (synopsis "Data analysis using regression and multilevel/hierarchical models")
8817 (description
8818 "This package provides functions to accompany A. Gelman and J. Hill,
8819 Data Analysis Using Regression and Multilevel/Hierarchical Models, Cambridge
8820 University Press, 2007.")
8821 (license license:gpl3+)))
8822
8823 (define-public r-circular
8824 (package
8825 (name "r-circular")
8826 (version "0.4-93")
8827 (source
8828 (origin
8829 (method url-fetch)
8830 (uri (cran-uri "circular" version))
8831 (sha256
8832 (base32
8833 "0hki85rs8wc5950pjaw28q54rly2napfbcrx3pchlfap6wwy5kkn"))))
8834 (build-system r-build-system)
8835 (propagated-inputs
8836 `(("r-boot" ,r-boot)
8837 ("r-mvtnorm" ,r-mvtnorm)))
8838 (native-inputs
8839 `(("gfortran" ,gfortran)))
8840 (home-page "https://cran.r-project.org/web/packages/circular/")
8841 (synopsis "Circular statistics")
8842 (description
8843 "This package provides tools for circular statistics, from \"Topics in
8844 circular Statistics\" (2001) S. Rao Jammalamadaka and A. SenGupta, World
8845 Scientific.")
8846 (license license:gpl2+)))
8847
8848 (define-public r-activity
8849 (package
8850 (name "r-activity")
8851 (version "1.2")
8852 (source
8853 (origin
8854 (method url-fetch)
8855 (uri (cran-uri "activity" version))
8856 (sha256
8857 (base32
8858 "11w2bz6p9xbzdh6773dmbbh6rws0h5dj18p8m0ivzizgq932vdzs"))))
8859 (build-system r-build-system)
8860 (propagated-inputs
8861 `(("r-circular" ,r-circular)
8862 ("r-pbapply" ,r-pbapply)))
8863 (home-page "https://cran.r-project.org/web/packages/activity/")
8864 (synopsis "Animal activity statistics")
8865 (description
8866 "This package provides functions to fit kernel density functions to
8867 animal activity time data; plot activity distributions; quantify overall
8868 levels of activity; statistically compare activity metrics through
8869 bootstrapping; and evaluate variation in linear variables with time (or other
8870 circular variables).")
8871 (license license:gpl3)))
8872
8873 (define-public r-ouch
8874 (package
8875 (name "r-ouch")
8876 (version "2.14-1")
8877 (source
8878 (origin
8879 (method url-fetch)
8880 (uri (cran-uri "ouch" version))
8881 (sha256
8882 (base32
8883 "0ddf9bw5lhj8vb0ja78jf99i0smq4rgmm842k4a4ygap41vdyn2b"))))
8884 (build-system r-build-system)
8885 (propagated-inputs `(("r-subplex" ,r-subplex)))
8886 (home-page "http://kingaa.github.io/ouch/")
8887 (synopsis "Ornstein-Uhlenbeck models for phylogenetic comparative hypotheses")
8888 (description
8889 "This package provides tools to fit and compare Ornstein-Uhlenbeck models
8890 for evolution along a phylogenetic tree.")
8891 (license license:gpl2+)))
8892
8893 (define-public r-fmsb
8894 (package
8895 (name "r-fmsb")
8896 (version "0.6.3")
8897 (source
8898 (origin
8899 (method url-fetch)
8900 (uri (cran-uri "fmsb" version))
8901 (sha256
8902 (base32
8903 "1n29bnyp20pvpk2lsa9fblsj5w7amp14snc74pk5w3yr5y6rj0s5"))))
8904 (build-system r-build-system)
8905 (home-page "http://minato.sip21c.org/msb/")
8906 (synopsis "Functions for medical statistics book with demographic data")
8907 (description
8908 "This package provides several utility functions for the book entitled
8909 \"Practices of Medical and Health Data Analysis using R\" (Pearson Education
8910 Japan, 2007) with Japanese demographic data and some demographic analysis
8911 related functions.")
8912 (license license:gpl2+)))
8913
8914 (define-public r-stabledist
8915 (package
8916 (name "r-stabledist")
8917 (version "0.7-1")
8918 (source
8919 (origin
8920 (method url-fetch)
8921 (uri (cran-uri "stabledist" version))
8922 (sha256
8923 (base32
8924 "0scar396wiq6wkbkvwp4qrxqc1m075y56p37i6iry5rw796p1i86"))))
8925 (build-system r-build-system)
8926 (home-page "http://www.rmetrics.org")
8927 (synopsis "Stable distribution functions")
8928 (description
8929 "This package provides density, probability and quantile functions, and
8930 random number generation for (skew) stable distributions, using the
8931 parametrizations of Nolan.")
8932 (license license:gpl2+)))
8933
8934 (define-public r-gsl
8935 (package
8936 (name "r-gsl")
8937 (version "2.1-6")
8938 (source
8939 (origin
8940 (method url-fetch)
8941 (uri (cran-uri "gsl" version))
8942 (sha256
8943 (base32
8944 "0p4rh7npp6qbfc5sxjq86xjn7c9ivf3pd60qf1hldwckjqin7m7m"))))
8945 (build-system r-build-system)
8946 (inputs
8947 `(("gsl" ,gsl)))
8948 (home-page "https://cran.r-project.org/web/packages/gsl")
8949 (synopsis "Wrapper for the GNU Scientific Library")
8950 (description
8951 "This package provides an R wrapper for the special functions and quasi
8952 random number generators of the GNU Scientific Library.")
8953 (license license:gpl2+)))
8954
8955 (define-public r-adgoftest
8956 (package
8957 (name "r-adgoftest")
8958 (version "0.3")
8959 (source
8960 (origin
8961 (method url-fetch)
8962 (uri (cran-uri "ADGofTest" version))
8963 (sha256
8964 (base32
8965 "0ik817qzqp6kfbckjp1z7srlma0w6z2zcwykh0jdiv7nahwk3ncw"))))
8966 (properties `((upstream-name . "ADGofTest")))
8967 (build-system r-build-system)
8968 (home-page "https://cran.r-project.org/web/packages/ADGofTest")
8969 (synopsis "Anderson-Darling GoF test")
8970 (description
8971 "This package provides an implementation of the Anderson-Darling GoF test
8972 with p-value calculation based on Marsaglia's 2004 paper \"Evaluating the
8973 Anderson-Darling Distribution\".")
8974 ;; Any version of the GPL.
8975 (license license:gpl3+)))
8976
8977 (define-public r-softimpute
8978 (package
8979 (name "r-softimpute")
8980 (version "1.4")
8981 (source
8982 (origin
8983 (method url-fetch)
8984 (uri (cran-uri "softImpute" version))
8985 (sha256
8986 (base32
8987 "07cxbzkl08q58m1455i139952rmryjlic4s2f2hscl5zxxmfdxcq"))))
8988 (properties `((upstream-name . "softImpute")))
8989 (build-system r-build-system)
8990 (propagated-inputs
8991 `(("r-matrix" ,r-matrix)))
8992 (native-inputs
8993 `(("gfortran" ,gfortran)))
8994 (home-page "https://cran.r-project.org/web/packages/softImpute")
8995 (synopsis "Matrix completion via iterative soft-thresholded SVD")
8996 (description
8997 "This package provides iterative methods for matrix completion that use
8998 nuclear-norm regularization. The package includes procedures for centering
8999 and scaling rows, columns or both, and for computing low-rank @dfn{single
9000 value decompositions} (SVDs) on large sparse centered matrices (i.e. principal
9001 components).")
9002 (license license:gpl2)))
9003
9004 (define-public r-fftwtools
9005 (package
9006 (name "r-fftwtools")
9007 (version "0.9-8")
9008 (source
9009 (origin
9010 (method url-fetch)
9011 (uri (cran-uri "fftwtools" version))
9012 (sha256
9013 (base32
9014 "1nqvpzda281rxi1cmwajxxsn3sc3gz7scv8bvs5jm34kf36whha6"))))
9015 (build-system r-build-system)
9016 (inputs `(("fftw" ,fftw)))
9017 (home-page "https://github.com/krahim/fftwtools")
9018 (synopsis "Wrapper for FFTW3")
9019 (description
9020 "This package provides a wrapper for several FFTW functions. It provides
9021 access to the two-dimensional FFT, the multivariate FFT, and the
9022 one-dimensional real to complex FFT using the FFTW3 library. The package
9023 includes the functions @code{fftw()} and @code{mvfftw()} which are designed to
9024 mimic the functionality of the R functions @code{fft()} and @code{mvfft()}.
9025 The FFT functions have a parameter that allows them to not return the
9026 redundant complex conjugate when the input is real data.")
9027 (license license:gpl2+)))
9028
9029 (define-public r-tiff
9030 (package
9031 (name "r-tiff")
9032 (version "0.1-5")
9033 (source
9034 (origin
9035 (method url-fetch)
9036 (uri (cran-uri "tiff" version))
9037 (sha256
9038 (base32
9039 "0asf2bws3x3yd3g3ixvk0f86b0mdf882pl8xrqlxrkbgjalyc54m"))))
9040 (build-system r-build-system)
9041 (inputs
9042 `(("libtiff" ,libtiff)
9043 ("libjpeg" ,libjpeg)
9044 ("zlib" ,zlib)))
9045 (home-page "http://www.rforge.net/tiff/")
9046 (synopsis "Read and write TIFF images")
9047 (description
9048 "This package provides an easy and simple way to read, write and display
9049 bitmap images stored in the TIFF format. It can read and write both files and
9050 in-memory raw vectors.")
9051 ;; Either of these two license versions.
9052 (license (list license:gpl2 license:gpl3))))
9053
9054 (define-public r-waveslim
9055 (package
9056 (name "r-waveslim")
9057 (version "1.7.5.1")
9058 (source
9059 (origin
9060 (method url-fetch)
9061 (uri (cran-uri "waveslim" version))
9062 (sha256
9063 (base32
9064 "0mky0nb4xxp8rybp87mxw2f1q6k400wpxv01zr4injv7ja6028xk"))))
9065 (build-system r-build-system)
9066 (native-inputs
9067 `(("gfortran" ,gfortran)))
9068 (home-page "http://waveslim.blogspot.com")
9069 (synopsis "Basic wavelet routines for signal processing")
9070 (description
9071 "This package provides basic wavelet routines for time series (1D),
9072 image (2D) and array (3D) analysis. The code provided here is based on
9073 wavelet methodology developed in Percival and Walden (2000); Gencay, Selcuk
9074 and Whitcher (2001); the dual-tree complex wavelet transform (DTCWT) from
9075 Kingsbury (1999, 2001) as implemented by Selesnick; and Hilbert wavelet
9076 pairs (Selesnick 2001, 2002).")
9077 (license license:bsd-3)))
9078
9079 (define-public r-wordcloud
9080 (package
9081 (name "r-wordcloud")
9082 (version "2.6")
9083 (source
9084 (origin
9085 (method url-fetch)
9086 (uri (cran-uri "wordcloud" version))
9087 (sha256
9088 (base32
9089 "0j96yyvm6bcrrpbdx4w26piqx44a0vbsr3px9cb4zk8a8da6jwak"))))
9090 (build-system r-build-system)
9091 (propagated-inputs
9092 `(("r-rcolorbrewer" ,r-rcolorbrewer)
9093 ("r-rcpp" ,r-rcpp)))
9094 (home-page "https://cran.r-project.org/web/packages/wordcloud")
9095 (synopsis "Word clouds")
9096 (description
9097 "This package provides functionality to create pretty word clouds,
9098 visualize differences and similarity between documents, and avoid
9099 over-plotting in scatter plots with text.")
9100 (license license:lgpl2.1)))
9101
9102 (define-public r-colorramps
9103 (package
9104 (name "r-colorramps")
9105 (version "2.3")
9106 (source
9107 (origin
9108 (method url-fetch)
9109 (uri (cran-uri "colorRamps" version))
9110 (sha256
9111 (base32
9112 "0shbjh83x1axv4drm5r3dwgbyv70idih8z4wlzjs4hiac2qfl41z"))))
9113 (properties `((upstream-name . "colorRamps")))
9114 (build-system r-build-system)
9115 (home-page "https://cran.r-project.org/web/packages/colorRamps")
9116 (synopsis "Build color tables")
9117 (description "This package provides features to build gradient color
9118 maps.")
9119 ;; Any version of the GPL
9120 (license license:gpl3+)))
9121
9122 (define-public r-tidytree
9123 (package
9124 (name "r-tidytree")
9125 (version "0.2.4")
9126 (source
9127 (origin
9128 (method url-fetch)
9129 (uri (cran-uri "tidytree" version))
9130 (sha256
9131 (base32
9132 "04bznlfs617plv258nmsyq2pywnijcnzy2pbn5b2fgjk2xqkp29w"))))
9133 (build-system r-build-system)
9134 (propagated-inputs
9135 `(("r-ape" ,r-ape)
9136 ("r-dplyr" ,r-dplyr)
9137 ("r-lazyeval" ,r-lazyeval)
9138 ("r-magrittr" ,r-magrittr)
9139 ("r-rlang" ,r-rlang)
9140 ("r-tibble" ,r-tibble)))
9141 (home-page "https://github.com/GuangchuangYu/tidytree")
9142 (synopsis "Tidy tool for phylogenetic tree data manipulation")
9143 (description
9144 "Phylogenetic trees generally contain multiple components including nodes,
9145 edges, branches and associated data. This package provides an approach to
9146 convert tree objects to tidy data frames. It also provides tidy interfaces to
9147 manipulate tree data.")
9148 (license license:artistic2.0)))
9149
9150 (define-public r-rvcheck
9151 (package
9152 (name "r-rvcheck")
9153 (version "0.1.3")
9154 (source
9155 (origin
9156 (method url-fetch)
9157 (uri (cran-uri "rvcheck" version))
9158 (sha256
9159 (base32
9160 "1i2g6gyiqyd1pn6y0h6vmlcmg1qb5pv7rym8mkw8jnyc3in9hn8b"))))
9161 (build-system r-build-system)
9162 (propagated-inputs
9163 `(("r-rlang" ,r-rlang)))
9164 (home-page "https://cran.r-project.org/web/packages/rvcheck")
9165 (synopsis "R package version check")
9166 (description
9167 "This package provides tools to check the latest release version of R and
9168 R packages (on CRAN, Bioconductor or Github).")
9169 (license license:artistic2.0)))
9170
9171 (define-public r-docopt
9172 (package
9173 (name "r-docopt")
9174 (version "0.6.1")
9175 (source
9176 (origin
9177 (method url-fetch)
9178 (uri (cran-uri "docopt" version))
9179 (sha256
9180 (base32
9181 "06zknnd0c5s2y0hbddzdlr3m63ib783izpck6pgz7sjbab5pd068"))))
9182 (build-system r-build-system)
9183 (home-page "https://github.com/docopt/docopt.R")
9184 (synopsis "Command-line interface specification language")
9185 (description
9186 "This package enables you to define a command-line interface by just
9187 giving it a description in the specific format.")
9188 (license license:expat)))
9189
9190 (define-public r-sparsesvd
9191 (package
9192 (name "r-sparsesvd")
9193 (version "0.1-4")
9194 (source
9195 (origin
9196 (method url-fetch)
9197 (uri (cran-uri "sparsesvd" version))
9198 (sha256
9199 (base32
9200 "1yf373552wvdnd65r7hfcqa3v29dqn7jd4cn431mqd2acnqjrsam"))))
9201 (build-system r-build-system)
9202 (propagated-inputs `(("r-matrix" ,r-matrix)))
9203 (home-page "http://tedlab.mit.edu/~dr/SVDLIBC/")
9204 (synopsis "Sparse truncated singular value decomposition")
9205 (description
9206 "This package provides a Wrapper around the SVDLIBC library
9207 for (truncated) singular value decomposition of a sparse matrix. Currently,
9208 only sparse real matrices in Matrix package format are supported.")
9209 ;; SVDLIBC is released under BSD-2. The R interface is released under
9210 ;; BSD-3.
9211 (license (list license:bsd-3 license:bsd-2))))
9212
9213 (define-public r-densityclust
9214 (package
9215 (name "r-densityclust")
9216 (version "0.3")
9217 (source
9218 (origin
9219 (method url-fetch)
9220 (uri (cran-uri "densityClust" version))
9221 (sha256
9222 (base32
9223 "1zry0vafajzmr37aylglxfvwplhdygbkb9cvzvh8cy0xgnjrnx13"))))
9224 (properties `((upstream-name . "densityClust")))
9225 (build-system r-build-system)
9226 (propagated-inputs
9227 `(("r-fnn" ,r-fnn)
9228 ("r-ggplot2" ,r-ggplot2)
9229 ("r-ggrepel" ,r-ggrepel)
9230 ("r-gridextra" ,r-gridextra)
9231 ("r-rcolorbrewer" ,r-rcolorbrewer)
9232 ("r-rcpp" ,r-rcpp)
9233 ("r-rtsne" ,r-rtsne)))
9234 (home-page "https://cran.r-project.org/web/packages/densityClust")
9235 (synopsis "Clustering by fast search and find of density peaks")
9236 (description
9237 "This package provides an improved implementation (based on k-nearest
9238 neighbors) of the density peak clustering algorithm, originally described by
9239 Alex Rodriguez and Alessandro Laio (Science, 2014 vol. 344). It can handle
9240 large datasets (> 100,000 samples) very efficiently.")
9241 (license license:gpl2+)))
9242
9243 (define-public r-combinat
9244 (package
9245 (name "r-combinat")
9246 (version "0.0-8")
9247 (source
9248 (origin
9249 (method url-fetch)
9250 (uri (cran-uri "combinat" version))
9251 (sha256
9252 (base32
9253 "1h9hr88gigihc4na7lb5i7rn4az1xa7sb34zvnznaj6pdrmwy4qm"))))
9254 (build-system r-build-system)
9255 (home-page "https://cran.r-project.org/web/packages/combinat")
9256 (synopsis "Combinatorics utilities")
9257 (description "This package provides assorted routines for combinatorics.")
9258 (license license:gpl2)))
9259
9260 (define-public r-qlcmatrix
9261 (package
9262 (name "r-qlcmatrix")
9263 (version "0.9.7")
9264 (source
9265 (origin
9266 (method url-fetch)
9267 (uri (cran-uri "qlcMatrix" version))
9268 (sha256
9269 (base32
9270 "0iqkcvvy8rxlk0s83sjq57dd6fadb18p5z31lzy0gnzv1hsy1x8y"))))
9271 (properties `((upstream-name . "qlcMatrix")))
9272 (build-system r-build-system)
9273 (propagated-inputs
9274 `(("r-docopt" ,r-docopt)
9275 ("r-matrix" ,r-matrix)
9276 ("r-slam" ,r-slam)
9277 ("r-sparsesvd" ,r-sparsesvd)))
9278 (home-page "https://cran.r-project.org/web/packages/qlcMatrix")
9279 (synopsis "Sparse matrix functions for quantitative language comparison")
9280 (description
9281 "This package provides an extension of the functionality of the Matrix
9282 package for using sparse matrices. Some of the functions are very general,
9283 while other are highly specific for the special data format used for
9284 @dfn{quantitative language comparison} (QLC).")
9285 (license license:gpl3)))
9286
9287 (define-public r-ddrtree
9288 (package
9289 (name "r-ddrtree")
9290 (version "0.1.5")
9291 (source
9292 (origin
9293 (method url-fetch)
9294 (uri (cran-uri "DDRTree" version))
9295 (sha256
9296 (base32
9297 "16s5fjw7kwlxhrkzdny62sx32fvmg3rxjc3wrh6krd31jh1fqlfk"))))
9298 (properties `((upstream-name . "DDRTree")))
9299 (build-system r-build-system)
9300 (propagated-inputs
9301 `(("r-bh" ,r-bh)
9302 ("r-irlba" ,r-irlba)
9303 ("r-rcpp" ,r-rcpp)
9304 ("r-rcppeigen" ,r-rcppeigen)))
9305 (home-page "https://cran.r-project.org/web/packages/DDRTree")
9306 (synopsis "Learning principal graphs with DDRTree")
9307 (description
9308 "This package provides an implementation of the framework of
9309 @dfn{reversed graph embedding} (RGE) which projects data into a reduced
9310 dimensional space while constructs a principal tree which passes through the
9311 middle of the data simultaneously. DDRTree shows superiority to
9312 alternatives (Wishbone, DPT) for inferring the ordering as well as the
9313 intrinsic structure of single cell genomics data. In general, it could be
9314 used to reconstruct the temporal progression as well as the bifurcation
9315 structure of any data type.")
9316 (license license:asl2.0)))
9317
9318 (define-public r-corpcor
9319 (package
9320 (name "r-corpcor")
9321 (version "1.6.9")
9322 (source
9323 (origin
9324 (method url-fetch)
9325 (uri (cran-uri "corpcor" version))
9326 (sha256
9327 (base32
9328 "1hi3i9d3841snppq1ks5pd8cliq1b4rm4dpsczmfqvwksg8snkrf"))))
9329 (build-system r-build-system)
9330 (home-page "http://strimmerlab.org/software/corpcor/")
9331 (synopsis "Efficient estimation of covariance and (partial) correlation")
9332 (description
9333 "This package implements a James-Stein-type shrinkage estimator for the
9334 covariance matrix, with separate shrinkage for variances and correlations.
9335 Furthermore, functions are available for fast singular value decomposition,
9336 for computing the pseudoinverse, and for checking the rank and positive
9337 definiteness of a matrix.")
9338 (license license:gpl3+)))
9339
9340 (define-public r-rspectra
9341 (package
9342 (name "r-rspectra")
9343 (version "0.14-0")
9344 (source
9345 (origin
9346 (method url-fetch)
9347 (uri (cran-uri "RSpectra" version))
9348 (sha256
9349 (base32
9350 "12w5vnz39gyciza0fl7fw4f9i9kjw763h3mvk1sxd97c5dsn26jg"))))
9351 (properties `((upstream-name . "RSpectra")))
9352 (build-system r-build-system)
9353 (propagated-inputs
9354 `(("r-matrix" ,r-matrix)
9355 ("r-rcpp" ,r-rcpp)
9356 ("r-rcppeigen" ,r-rcppeigen)))
9357 (home-page "https://github.com/yixuan/RSpectra")
9358 (synopsis "Solvers for large-scale Eigenvalue and SVD problems")
9359 (description
9360 "This package provides an R interface to the Spectra library for
9361 large-scale eigenvalue and SVD problems. It is typically used to compute a
9362 few eigenvalues/vectors of an n by n matrix, e.g., the k largest eigenvalues,
9363 which is usually more efficient than @code{eigen()} if k << n.")
9364 ;; MPL 2 or later.
9365 (license license:mpl2.0)))
9366
9367 (define-public r-vbsr
9368 (package
9369 (name "r-vbsr")
9370 (version "0.0.5")
9371 (source
9372 (origin
9373 (method url-fetch)
9374 (uri (cran-uri "vbsr" version))
9375 (sha256
9376 (base32
9377 "1avskbxxyinjjdga4rnghcfvd4sypv4m39ysfaij5avvmi89bx3b"))))
9378 (build-system r-build-system)
9379 (home-page "https://cran.r-project.org/web/packages/vbsr")
9380 (synopsis "Variational Bayes spike regression regularized linear models")
9381 (description
9382 "This package provides an efficient algorithm for solving ultra-sparse
9383 regularized regression models using a variational Bayes algorithm with a spike
9384 prior. The algorithm is solved on a path, with coordinate updates, and is
9385 capable of generating very sparse models. Very general model
9386 diagnostics for controlling type-1 errors are also provided.")
9387 (license license:gpl2)))
9388
9389 (define-public r-flare
9390 (package
9391 (name "r-flare")
9392 (version "1.6.0")
9393 (source
9394 (origin
9395 (method url-fetch)
9396 (uri (cran-uri "flare" version))
9397 (sha256
9398 (base32
9399 "0ygif9a7a99qwv0b488wymmmncp6f5ww9yz13s4qs6p8yf37x1r1"))))
9400 (build-system r-build-system)
9401 (propagated-inputs
9402 `(("r-igraph" ,r-igraph)
9403 ("r-lattice" ,r-lattice)
9404 ("r-mass" ,r-mass)
9405 ("r-matrix" ,r-matrix)))
9406 (home-page "https://cran.r-project.org/web/packages/flare")
9407 (synopsis "Family of Lasso regression implementations")
9408 (description
9409 "This packages provides implementations of a family of Lasso variants
9410 including Dantzig Selector, LAD Lasso, SQRT Lasso, Lq Lasso for estimating
9411 high dimensional sparse linear models.")
9412 (license license:gpl2)))
9413
9414 (define-public r-lassopv
9415 (package
9416 (name "r-lassopv")
9417 (version "0.2.0")
9418 (source
9419 (origin
9420 (method url-fetch)
9421 (uri (cran-uri "lassopv" version))
9422 (sha256
9423 (base32
9424 "0yawnjw063jypk3riy9xab9cmliv6c9dnabi18670khd3gzb2r9z"))))
9425 (build-system r-build-system)
9426 (propagated-inputs `(("r-lars" ,r-lars)))
9427 (home-page "https://github.com/lingfeiwang/lassopv")
9428 (synopsis "Non-parametric p-value estimation for predictors in Lasso")
9429 (description
9430 "This package enables you to estimate the p-values for predictors x
9431 against target variable y in Lasso regression, using the regularization
9432 strength when each predictor enters the active set of regularization path for
9433 the first time as the statistic.")
9434 (license license:gpl3)))
9435
9436 (define-public r-splitstackshape
9437 (package
9438 (name "r-splitstackshape")
9439 (version "1.4.8")
9440 (source
9441 (origin
9442 (method url-fetch)
9443 (uri (cran-uri "splitstackshape" version))
9444 (sha256
9445 (base32
9446 "0mpyf2kkfdl69pdc6brl1r6101vyc6pgr7z17s55ppg3y71k4q35"))))
9447 (build-system r-build-system)
9448 (propagated-inputs
9449 `(("r-data-table" ,r-data-table)))
9450 (home-page "https://github.com/mrdwab/splitstackshape")
9451 (synopsis "Stack and reshape datasets after splitting concatenated values")
9452 (description
9453 "Online data collection tools like Google Forms often export
9454 multiple-response questions with data concatenated in cells. The
9455 @code{concat.split} (cSplit) family of functions provided by this package
9456 splits such data into separate cells. This package also includes functions to
9457 stack groups of columns and to reshape wide data, even when the data are
9458 \"unbalanced\"---something which @code{reshape} (from base R) does not handle,
9459 and which @code{melt} and @code{dcast} from @code{reshape2} do not easily
9460 handle.")
9461 (license license:gpl3)))
9462
9463 (define-public r-tfmpvalue
9464 (package
9465 (name "r-tfmpvalue")
9466 (version "0.0.8")
9467 (source
9468 (origin
9469 (method url-fetch)
9470 (uri (cran-uri "TFMPvalue" version))
9471 (sha256
9472 (base32
9473 "0h9qkl15k8v17v3g9bdnfwvh2s04ywjgg5y0xn2077dmywlja1bd"))))
9474 (properties `((upstream-name . "TFMPvalue")))
9475 (build-system r-build-system)
9476 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9477 (home-page "https://github.com/ge11232002/TFMPvalue")
9478 (synopsis "P-value computation for position weight matrices")
9479 (description
9480 "In putative @dfn{Transcription Factor Binding Sites} (TFBSs)
9481 identification from sequence/alignments, we are interested in the significance
9482 of certain match scores. TFMPvalue provides the accurate calculation of a
9483 p-value with a score threshold for position weight matrices, or the score with
9484 a given p-value. It is an interface to code originally made available by
9485 Helene Touzet and Jean-Stephane Varre, 2007, Algorithms Mol Biol:2, 15.
9486 Touzet and Varre (2007).")
9487 (license license:gpl2)))
9488
9489 (define-public r-rnifti
9490 (package
9491 (name "r-rnifti")
9492 (version "0.10.0")
9493 (source
9494 (origin
9495 (method url-fetch)
9496 (uri (cran-uri "RNifti" version))
9497 (sha256
9498 (base32
9499 "07sfzps4yg5zdhbxh6i4rbjvbjvvf2d8i9jcf64ywbmi557sw1zv"))))
9500 (properties `((upstream-name . "RNifti")))
9501 (build-system r-build-system)
9502 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9503 (home-page "https://github.com/jonclayden/RNifti")
9504 (synopsis "Fast R and C++ access to NIfTI images")
9505 (description
9506 "This package provides very fast read and write access to images stored
9507 in the NIfTI-1 and ANALYZE-7.5 formats, with seamless synchronisation between
9508 compiled C and interpreted R code. It also provides a C/C++ API that can be
9509 used by other packages.")
9510 (license license:gpl2)))
9511
9512 (define-public r-shades
9513 (package
9514 (name "r-shades")
9515 (version "1.3.1")
9516 (source
9517 (origin
9518 (method url-fetch)
9519 (uri (cran-uri "shades" version))
9520 (sha256
9521 (base32
9522 "0v0xp9l1zyq4iysmkrbdwk4r1rksjj8p5c1726yrcgyg55mj59nv"))))
9523 (build-system r-build-system)
9524 (home-page "https://github.com/jonclayden/shades")
9525 (synopsis "Simple color manipulation")
9526 (description
9527 "This package provides functions for easily manipulating colors,
9528 creating color scales and calculating color distances.")
9529 (license license:bsd-3)))
9530
9531 (define-public r-ore
9532 (package
9533 (name "r-ore")
9534 (version "1.6.2")
9535 (source
9536 (origin
9537 (method url-fetch)
9538 (uri (cran-uri "ore" version))
9539 (sha256
9540 (base32
9541 "1l1ziljgm5gwjhvjq42wi5vcwbxlaj5dl9w8bhz0wh8vx4ajj07m"))))
9542 (build-system r-build-system)
9543 (home-page "https://github.com/jonclayden/ore")
9544 (synopsis "R interface to the Onigmo regular expression library")
9545 (description
9546 "This package provides an alternative to R's built-in functionality for
9547 handling regular expressions, based on the Onigmo library. It offers
9548 first-class compiled regex objects, partial matching and function-based
9549 substitutions, amongst other features.")
9550 (license license:bsd-3)))
9551
9552 (define-public r-reportr
9553 (package
9554 (name "r-reportr")
9555 (version "1.3.0")
9556 (source
9557 (origin
9558 (method url-fetch)
9559 (uri (cran-uri "reportr" version))
9560 (sha256
9561 (base32
9562 "0zynplxqvbmf23cm2rsz3wz2jx6mv55z94mn1k44ny3lx625cnpw"))))
9563 (build-system r-build-system)
9564 (propagated-inputs `(("r-ore" ,r-ore)))
9565 (home-page "https://github.com/jonclayden/reportr")
9566 (synopsis "General message and error reporting system")
9567 (description
9568 "This package provides a system for reporting messages, which offers
9569 certain useful features over the standard R system, such as the incorporation
9570 of output consolidation, message filtering, assertions, expression
9571 substitution, automatic generation of stack traces for debugging, and
9572 conditional reporting based on the current \"output level\".")
9573 (license license:gpl2)))
9574
9575 (define-public r-tractor-base
9576 (package
9577 (name "r-tractor-base")
9578 (version "3.3.0")
9579 (source
9580 (origin
9581 (method url-fetch)
9582 (uri (cran-uri "tractor.base" version))
9583 (sha256
9584 (base32
9585 "0i62dwra0yh565ryz75byfgqv22bqwz7138zs48w46yj2h8q9hyj"))))
9586 (properties `((upstream-name . "tractor.base")))
9587 (build-system r-build-system)
9588 (propagated-inputs
9589 `(("r-ore" ,r-ore)
9590 ("r-reportr" ,r-reportr)
9591 ("r-rnifti" ,r-rnifti)
9592 ("r-shades" ,r-shades)))
9593 (home-page "http://www.tractor-mri.org.uk")
9594 (synopsis "Read, manipulate and visualize magnetic resonance images")
9595 (description
9596 "This package provides functions for working with magnetic resonance
9597 images. It supports reading and writing of popular file formats (DICOM,
9598 Analyze, NIfTI-1, NIfTI-2, MGH); interactive and non-interactive
9599 visualization; flexible image manipulation; metadata and sparse image
9600 handling.")
9601 (license license:gpl2)))
9602
9603 (define-public r-grimport
9604 (package
9605 (name "r-grimport")
9606 (version "0.9-1.1")
9607 (source
9608 (origin
9609 (method url-fetch)
9610 (uri (cran-uri "grImport" version))
9611 (sha256
9612 (base32
9613 "19d05ygpiv47lfzhfih35pdfll0axbrgd6p86l59mmg2d0j0s8bd"))))
9614 (properties `((upstream-name . "grImport")))
9615 (build-system r-build-system)
9616 (inputs
9617 `(("ghostscript" ,ghostscript)))
9618 (propagated-inputs
9619 `(("r-xml" ,r-xml)))
9620 (home-page "https://cran.r-project.org/web/packages/grImport")
9621 (synopsis "Convert, import, and draw PostScript pictures")
9622 (description
9623 "This package provides functions for converting, importing, and drawing
9624 PostScript pictures in R plots.")
9625 (license license:gpl2+)))
9626
9627 (define-public r-grimport2
9628 (package
9629 (name "r-grimport2")
9630 (version "0.1-4")
9631 (source
9632 (origin
9633 (method url-fetch)
9634 (uri (cran-uri "grImport2" version))
9635 (sha256
9636 (base32
9637 "1hwx287pp936f0wbcicplwmhz96ip00wq09dp7bvz80lqcmr8nyx"))))
9638 (properties `((upstream-name . "grImport2")))
9639 (build-system r-build-system)
9640 (propagated-inputs
9641 `(("r-base64enc" ,r-base64enc)
9642 ("r-jpeg" ,r-jpeg)
9643 ("r-png" ,r-png)
9644 ("r-xml" ,r-xml)))
9645 (home-page "https://cran.r-project.org/web/packages/grImport2/")
9646 (synopsis "Import SVG graphics")
9647 (description
9648 "This package provides functions for importing external vector images and
9649 drawing them as part of R plots. This package is different from the
9650 @code{grImport} package because, where that package imports PostScript format
9651 images, this package imports SVG format images. Furthermore, this package
9652 imports a specific subset of SVG, so external images must be preprocessed
9653 using a package like @code{rsvg} to produce SVG that this package can import.
9654 SVG features that are not supported by R graphics, such as gradient fills, can
9655 be imported and then exported via the @code{gridSVG} package.")
9656 (license license:gpl2+)))
9657
9658 (define-public r-kohonen
9659 (package
9660 (name "r-kohonen")
9661 (version "3.0.8")
9662 (source
9663 (origin
9664 (method url-fetch)
9665 (uri (cran-uri "kohonen" version))
9666 (sha256
9667 (base32
9668 "1zbfqa1qdlry8w6xhypkiknc5gn98v1ijhlsfka8zjg8ajhqgn1q"))))
9669 (build-system r-build-system)
9670 (propagated-inputs
9671 `(("r-mass" ,r-mass)
9672 ("r-rcpp" ,r-rcpp)))
9673 (home-page "https://cran.r-project.org/web/packages/kohonen")
9674 (synopsis "Supervised and unsupervised self-organising maps")
9675 (description
9676 "This package provides functions to train @dfn{self-organising
9677 maps} (SOMs). Also interrogation of the maps and prediction using trained
9678 maps are supported. The name of the package refers to Teuvo Kohonen, the
9679 inventor of the SOM.")
9680 (license license:gpl2+)))
9681
9682 (define-public r-nnls
9683 (package
9684 (name "r-nnls")
9685 (version "1.4")
9686 (source
9687 (origin
9688 (method url-fetch)
9689 (uri (cran-uri "nnls" version))
9690 (sha256
9691 (base32
9692 "07vcrrxvswrvfiha6f3ikn640yg0m2b4yd9lkmim1g0jmsmpfp8f"))))
9693 (build-system r-build-system)
9694 (native-inputs `(("gfortran" ,gfortran)))
9695 (home-page "https://cran.r-project.org/web/packages/nnls")
9696 (synopsis "Lawson-Hanson algorithm for non-negative least squares")
9697 (description
9698 "This package provides an R interface to the Lawson-Hanson implementation
9699 of an algorithm for @dfn{non-negative least squares} (NNLS). It also allows
9700 the combination of non-negative and non-positive constraints.")
9701 (license license:gpl2+)))
9702
9703 (define-public r-iso
9704 (package
9705 (name "r-iso")
9706 (version "0.0-17")
9707 (source
9708 (origin
9709 (method url-fetch)
9710 (uri (cran-uri "Iso" version))
9711 (sha256
9712 (base32
9713 "0lljc99sdzdqj6d56qbsggibr6pkdwkh821bj70ianikyvmdc1y0"))))
9714 (properties `((upstream-name . "Iso")))
9715 (build-system r-build-system)
9716 (native-inputs `(("gfortran" ,gfortran)))
9717 (home-page "http://www.stat.auckland.ac.nz/~rolf/")
9718 (synopsis "Functions to perform isotonic regression")
9719 (description
9720 "This package provides support for linear order and unimodal
9721 order (univariate) isotonic regression and bivariate isotonic regression with
9722 linear order on both variables.")
9723 (license license:gpl2+)))
9724
9725 (define-public r-chemometricswithr
9726 (package
9727 (name "r-chemometricswithr")
9728 (version "0.1.13")
9729 (source
9730 (origin
9731 (method url-fetch)
9732 (uri (cran-uri "ChemometricsWithR" version))
9733 (sha256
9734 (base32
9735 "166va1g3m1wv21qkmw4wpz0bsrclh3jih8smxphdc13l9pqgclpq"))))
9736 (properties
9737 `((upstream-name . "ChemometricsWithR")))
9738 (build-system r-build-system)
9739 (propagated-inputs
9740 `(("r-devtools" ,r-devtools)
9741 ("r-kohonen" ,r-kohonen)
9742 ("r-mass" ,r-mass)
9743 ("r-pls" ,r-pls)))
9744 (home-page "https://github.com/rwehrens/CWR")
9745 (synopsis "Chemometrics with R")
9746 (description
9747 "This package provides functions and scripts used in the book
9748 \"Chemometrics with R - Multivariate Data Analysis in the Natural Sciences and
9749 Life Sciences\" by Ron Wehrens, Springer (2011).")
9750 (license license:gpl2+)))
9751
9752 (define-public r-als
9753 (package
9754 (name "r-als")
9755 (version "0.0.6")
9756 (source
9757 (origin
9758 (method url-fetch)
9759 (uri (cran-uri "ALS" version))
9760 (sha256
9761 (base32
9762 "1swrn39vy50fazkpf97r7c542gkj6mlvy8gmcxllg7mf2mqx546a"))))
9763 (properties `((upstream-name . "ALS")))
9764 (build-system r-build-system)
9765 (propagated-inputs
9766 `(("r-iso" ,r-iso)
9767 ("r-nnls" ,r-nnls)))
9768 (home-page "https://cran.r-project.org/web/packages/ALS")
9769 (synopsis "Multivariate curve resolution alternating least squares")
9770 (description
9771 "Alternating least squares is often used to resolve components
9772 contributing to data with a bilinear structure; the basic technique may be
9773 extended to alternating constrained least squares. This package provides an
9774 implementation of @dfn{multivariate curve resolution alternating least
9775 squares} (MCR-ALS).
9776
9777 Commonly applied constraints include unimodality, non-negativity, and
9778 normalization of components. Several data matrices may be decomposed
9779 simultaneously by assuming that one of the two matrices in the bilinear
9780 decomposition is shared between datasets.")
9781 (license license:gpl2+)))
9782
9783 (define-public r-strucchange
9784 (package
9785 (name "r-strucchange")
9786 (version "1.5-1")
9787 (source
9788 (origin
9789 (method url-fetch)
9790 (uri (cran-uri "strucchange" version))
9791 (sha256
9792 (base32
9793 "0cdgvl6kphm2i59bmnppn1y3kv65ml111bk7yzpcx7vv8wh2w3kl"))))
9794 (build-system r-build-system)
9795 (propagated-inputs
9796 `(("r-sandwich" ,r-sandwich)
9797 ("r-zoo" ,r-zoo)))
9798 (home-page "https://cran.r-project.org/web/packages/strucchange")
9799 (synopsis "Testing, monitoring, and dating structural changes")
9800 (description
9801 "This package provides tools for testing, monitoring and dating
9802 structural changes in (linear) regression models. It features tests/methods
9803 from the generalized fluctuation test framework as well as from the F
9804 test (Chow test) framework. This includes methods to fit, plot and test
9805 fluctuation processes (e.g., CUSUM, MOSUM, recursive/moving estimates) and F
9806 statistics, respectively. It is possible to monitor incoming data online
9807 using fluctuation processes. Finally, the breakpoints in regression models
9808 with structural changes can be estimated together with confidence intervals.
9809 Emphasis is always given to methods for visualizing the data.")
9810 ;; Either of these two GPL versions
9811 (license (list license:gpl2 license:gpl3))))
9812
9813 (define-public r-pixmap
9814 (package
9815 (name "r-pixmap")
9816 (version "0.4-11")
9817 (source
9818 (origin
9819 (method url-fetch)
9820 (uri (cran-uri "pixmap" version))
9821 (sha256
9822 (base32
9823 "04klxp6jndw1bp6z40v20fbmdmdpfca2g0czmmmgbkark9s1183g"))))
9824 (build-system r-build-system)
9825 (home-page "https://cran.r-project.org/web/packages/pixmap")
9826 (synopsis "Tools for bitmap images")
9827 (description
9828 "This package provides functions for importing, exporting, plotting and
9829 other manipulations of bitmapped images.")
9830 (license license:gpl2)))
9831
9832 (define-public r-rapidjsonr
9833 (package
9834 (name "r-rapidjsonr")
9835 (version "1.1")
9836 (source
9837 (origin
9838 (method url-fetch)
9839 (uri (cran-uri "rapidjsonr" version))
9840 (sha256
9841 (base32
9842 "0h4phjjhykbb45rg5b1xn48vqxdcvcngbm0416ds8in7j469wbwd"))))
9843 (build-system r-build-system)
9844 (home-page "https://cran.r-project.org/web/packages/rapidjsonr")
9845 (synopsis "JSON parser")
9846 (description
9847 "This package provides JSON parsing capability through the Rapidjson
9848 library.")
9849 (license license:expat)))
9850
9851 (define-public r-ontologyindex
9852 (package
9853 (name "r-ontologyindex")
9854 (version "2.5")
9855 (source
9856 (origin
9857 (method url-fetch)
9858 (uri (cran-uri "ontologyIndex" version))
9859 (sha256
9860 (base32
9861 "127hlf0z5fmbgnq4p9h8nvn6p72d2fpcn846zzb99s213421jnry"))))
9862 (properties `((upstream-name . "ontologyIndex")))
9863 (build-system r-build-system)
9864 (home-page "https://cran.r-project.org/web/packages/ontologyIndex")
9865 (synopsis "Functions for processing ontologies in R")
9866 (description
9867 "This package provides functions for reading ontologies into R as lists
9868 and manipulating sets of ontological terms.")
9869 (license license:gpl2+)))
9870
9871 (define-public r-bigrquery
9872 (package
9873 (name "r-bigrquery")
9874 (version "1.1.0")
9875 (source
9876 (origin
9877 (method url-fetch)
9878 (uri (cran-uri "bigrquery" version))
9879 (sha256
9880 (base32
9881 "0h2nzyn1w0padpl61l467j7vlkc2wair7sh6p26p94z4zfsnv0i1"))))
9882 (build-system r-build-system)
9883 (propagated-inputs
9884 `(("r-assertthat" ,r-assertthat)
9885 ("r-bit64" ,r-bit64)
9886 ("r-curl" ,r-curl)
9887 ("r-dbi" ,r-dbi)
9888 ("r-glue" ,r-glue)
9889 ("r-httr" ,r-httr)
9890 ("r-jsonlite" ,r-jsonlite)
9891 ("r-prettyunits" ,r-prettyunits)
9892 ("r-progress" ,r-progress)
9893 ("r-rapidjsonr" ,r-rapidjsonr)
9894 ("r-rcpp" ,r-rcpp)
9895 ("r-tibble" ,r-tibble)))
9896 (home-page "https://github.com/rstats-db/bigrquery")
9897 (synopsis "R interface to Google's BigQuery API")
9898 (description
9899 "This package provides an R interface to Google's BigQuery database.")
9900 (license license:gpl3)))
9901
9902 (define-public r-gmp
9903 (package
9904 (name "r-gmp")
9905 (version "0.5-13.5")
9906 (source
9907 (origin
9908 (method url-fetch)
9909 (uri (cran-uri "gmp" version))
9910 (sha256
9911 (base32
9912 "042mzsl6z6s61fy5m21yf9q83l08vnyqljn4iax7kqyiycpsp0gn"))))
9913 (build-system r-build-system)
9914 (arguments
9915 '(#:phases
9916 (modify-phases %standard-phases
9917 (add-after 'unpack 'set-CC
9918 (lambda _ (setenv "CC" "gcc") #t)))))
9919 (inputs `(("gmp" ,gmp)))
9920 (home-page "https://cran.r-project.org/web/packages/gmp")
9921 (synopsis "Multiple precision arithmetic")
9922 (description
9923 "This package supports multiple precision arithmetic (big integers and
9924 rationals, prime number tests, matrix computation), \"arithmetic without
9925 limitations\" using the GNU Multiple Precision library.")
9926 ;; Any version of the GPL.
9927 (license license:gpl3+)))
9928
9929 (define-public r-rmpfr
9930 (package
9931 (name "r-rmpfr")
9932 (version "0.7-2")
9933 (source
9934 (origin
9935 (method url-fetch)
9936 (uri (cran-uri "Rmpfr" version))
9937 (sha256
9938 (base32
9939 "1zq3as34r27v2yc729731997wdhxb6cs5ilmak4nmsljabnac7gc"))))
9940 (properties `((upstream-name . "Rmpfr")))
9941 (build-system r-build-system)
9942 (inputs
9943 `(("mpfr" ,mpfr)))
9944 (propagated-inputs
9945 `(("r-gmp" ,r-gmp)))
9946 (home-page "http://rmpfr.r-forge.r-project.org/")
9947 (synopsis "R bindings to the MPFR library")
9948 (description
9949 "This package supports arithmetic (via S4 classes and methods) for
9950 arbitrary precision floating point numbers, including transcendental
9951 functions. To this end, the package interfaces with the @dfn{Multiple
9952 Precision Floating-Point Reliable} (MPFR) library.")
9953 (license license:gpl2+)))
9954
9955 (define-public r-assertive-base
9956 (package
9957 (name "r-assertive-base")
9958 (version "0.0-7")
9959 (source
9960 (origin
9961 (method url-fetch)
9962 (uri (cran-uri "assertive.base" version))
9963 (sha256
9964 (base32
9965 "1xs3ysvj0z57c58jw57pckq2rynia6ks4rmjmc02alczhk54wbgh"))))
9966 (properties
9967 `((upstream-name . "assertive.base")))
9968 (build-system r-build-system)
9969 (home-page "https://bitbucket.org/richierocks/assertive.base")
9970 (synopsis "Core of the assertive package")
9971 (description
9972 "This package provides a minimal set of predicates and assertions used by
9973 the assertive package. This is mainly for use by other package developers who
9974 want to include run-time testing features in their own packages.")
9975 (license license:gpl3+)))
9976
9977 (define-public r-assertive-properties
9978 (package
9979 (name "r-assertive-properties")
9980 (version "0.0-4")
9981 (source
9982 (origin
9983 (method url-fetch)
9984 (uri (cran-uri "assertive.properties" version))
9985 (sha256
9986 (base32
9987 "0sqs54acs9qk9kvm32rxzfbzxz1l8mjahpfnw7r30z2brgz661jw"))))
9988 (properties
9989 `((upstream-name . "assertive.properties")))
9990 (build-system r-build-system)
9991 (propagated-inputs
9992 `(("r-assertive-base" ,r-assertive-base)))
9993 (home-page "https://bitbucket.org/richierocks/assertive.properties")
9994 (synopsis "Assertions to check properties of variables")
9995 (description
9996 "This package provides a set of predicates and assertions for checking
9997 the properties of variables, such as length, names and attributes. This is
9998 mainly for use by other package developers who want to include run-time
9999 testing features in their own packages.")
10000 (license license:gpl3+)))
10001
10002 (define-public r-assertive-numbers
10003 (package
10004 (name "r-assertive-numbers")
10005 (version "0.0-2")
10006 (source
10007 (origin
10008 (method url-fetch)
10009 (uri (cran-uri "assertive.numbers" version))
10010 (sha256
10011 (base32
10012 "0jc3ss64j4m7bjydhagwwmka5n7c72vpw4kfcch0m5jvkq5qrqds"))))
10013 (properties
10014 `((upstream-name . "assertive.numbers")))
10015 (build-system r-build-system)
10016 (propagated-inputs
10017 `(("r-assertive-base" ,r-assertive-base)))
10018 (home-page "https://bitbucket.org/richierocks/assertive.numbers")
10019 (synopsis "Assertions to check properties of numbers")
10020 (description
10021 "This package provides a set of predicates and assertions for checking
10022 the properties of numbers. This is mainly for use by other package developers
10023 who want to include run-time testing features in their own packages.")
10024 (license license:gpl3+)))
10025
10026 (define-public r-assertive-sets
10027 (package
10028 (name "r-assertive-sets")
10029 (version "0.0-3")
10030 (source
10031 (origin
10032 (method url-fetch)
10033 (uri (cran-uri "assertive.sets" version))
10034 (sha256
10035 (base32
10036 "1cqvh2syvh5b6d85h601zjmsdbbf3h8q98ids4dfl4frdshpasc7"))))
10037 (properties
10038 `((upstream-name . "assertive.sets")))
10039 (build-system r-build-system)
10040 (propagated-inputs
10041 `(("r-assertive-base" ,r-assertive-base)))
10042 (home-page "https://bitbucket.org/richierocks/assertive.sets")
10043 (synopsis "Assertions to check properties of sets")
10044 (description
10045 "This package provides a set of predicates and assertions for checking
10046 the properties of sets. This is mainly for use by other package developers
10047 who want to include run-time testing features in their own packages.")
10048 (license license:gpl3+)))
10049
10050 (define-public r-assertive-matrices
10051 (package
10052 (name "r-assertive-matrices")
10053 (version "0.0-2")
10054 (source
10055 (origin
10056 (method url-fetch)
10057 (uri (cran-uri "assertive.matrices" version))
10058 (sha256
10059 (base32
10060 "16sykzcndv6y2d43x6v9n7m95kv76364h39kh10w4z0xw6ksfqil"))))
10061 (properties
10062 `((upstream-name . "assertive.matrices")))
10063 (build-system r-build-system)
10064 (propagated-inputs
10065 `(("r-assertive-base" ,r-assertive-base)))
10066 (home-page "https://bitbucket.org/richierocks/assertive.matrices")
10067 (synopsis "Assertions to check properties of matrices")
10068 (description
10069 "This package provides a set of predicates and assertions for checking
10070 the properties of matrices. This is mainly for use by other package
10071 developers who want to include run-time testing features in their own
10072 packages.")
10073 (license license:gpl3+)))
10074
10075 (define-public r-assertive-models
10076 (package
10077 (name "r-assertive-models")
10078 (version "0.0-2")
10079 (source
10080 (origin
10081 (method url-fetch)
10082 (uri (cran-uri "assertive.models" version))
10083 (sha256
10084 (base32
10085 "0bn4j4v5qvb2d672cgri61p8d9v258pmz35y3lvm6b9mdxwdi9mr"))))
10086 (properties
10087 `((upstream-name . "assertive.models")))
10088 (build-system r-build-system)
10089 (propagated-inputs
10090 `(("r-assertive-base" ,r-assertive-base)))
10091 (home-page "https://bitbucket.org/richierocks/assertive.models")
10092 (synopsis "Assertions to check properties of models")
10093 (description
10094 "This package provides a set of predicates and assertions for checking
10095 the properties of models. This is mainly for use by other package developers
10096 who want to include run-time testing features in their own packages.")
10097 (license license:gpl3+)))
10098
10099 (define-public r-assertive-reflection
10100 (package
10101 (name "r-assertive-reflection")
10102 (version "0.0-4")
10103 (source
10104 (origin
10105 (method url-fetch)
10106 (uri (cran-uri "assertive.reflection" version))
10107 (sha256
10108 (base32
10109 "19zmsbn00crfqm0kwd9ys5gv87xs3gi6wmlikrz9xiwzm7hp4dhj"))))
10110 (properties
10111 `((upstream-name . "assertive.reflection")))
10112 (build-system r-build-system)
10113 (propagated-inputs
10114 `(("r-assertive-base" ,r-assertive-base)))
10115 (home-page "https://bitbucket.org/richierocks/assertive.reflection")
10116 (synopsis "Assertions for checking the state of R")
10117 (description
10118 "This package provides a set of predicates and assertions for checking
10119 the state and capabilities of R, the operating system it is running on, and
10120 the IDE being used. This is mainly for use by other package developers who
10121 want to include run-time testing features in their own packages.")
10122 (license license:gpl3+)))
10123
10124 (define-public r-assertive-types
10125 (package
10126 (name "r-assertive-types")
10127 (version "0.0-3")
10128 (source
10129 (origin
10130 (method url-fetch)
10131 (uri (cran-uri "assertive.types" version))
10132 (sha256
10133 (base32
10134 "0zxq1jfrzgw95ll7alvm0xnk7aihjdksngq4ya2whyvfjbmv4vdb"))))
10135 (properties
10136 `((upstream-name . "assertive.types")))
10137 (build-system r-build-system)
10138 (propagated-inputs
10139 `(("r-assertive-base" ,r-assertive-base)
10140 ("r-assertive-properties" ,r-assertive-properties)
10141 ("r-codetools" ,r-codetools)))
10142 (home-page "https://bitbucket.org/richierocks/assertive.types")
10143 (synopsis "Assertions to check types of variables")
10144 (description
10145 "This package provides a set of predicates and assertions for checking
10146 the types of variables. This is mainly for use by other package developers
10147 who want to include run-time testing features in their own packages.")
10148 (license license:gpl3+)))
10149
10150 (define-public r-assertive-files
10151 (package
10152 (name "r-assertive-files")
10153 (version "0.0-2")
10154 (source
10155 (origin
10156 (method url-fetch)
10157 (uri (cran-uri "assertive.files" version))
10158 (sha256
10159 (base32
10160 "02pfz8j5vwcj5kl6zca46894li7lxwnlrr29j922f14ay6kdssmy"))))
10161 (properties
10162 `((upstream-name . "assertive.files")))
10163 (build-system r-build-system)
10164 (propagated-inputs
10165 `(("r-assertive-base" ,r-assertive-base)
10166 ("r-assertive-numbers" ,r-assertive-numbers)))
10167 (home-page "https://bitbucket.org/richierocks/assertive.files")
10168 (synopsis "Assertions to check properties of files")
10169 (description
10170 "This package provides a set of predicates and assertions for checking
10171 the properties of files and connections. This is mainly for use by other
10172 package developers who want to include run-time testing features in their own
10173 packages.")
10174 (license license:gpl3+)))
10175
10176 (define-public r-assertive-code
10177 (package
10178 (name "r-assertive-code")
10179 (version "0.0-3")
10180 (source
10181 (origin
10182 (method url-fetch)
10183 (uri (cran-uri "assertive.code" version))
10184 (sha256
10185 (base32
10186 "1qhbp668zfvhqs8avkhg9amp4zyazz6dsy4fc6kpdmw3sv8yi07g"))))
10187 (properties
10188 `((upstream-name . "assertive.code")))
10189 (build-system r-build-system)
10190 (propagated-inputs
10191 `(("r-assertive-base" ,r-assertive-base)
10192 ("r-assertive-properties" ,r-assertive-properties)
10193 ("r-assertive-types" ,r-assertive-types)))
10194 (home-page "https://bitbucket.org/richierocks/assertive.code")
10195 (synopsis "Assertions to check properties of code")
10196 (description
10197 "This package provides a set of predicates and assertions for checking
10198 the properties of code. This is mainly for use by other package developers
10199 who want to include run-time testing features in their own packages.")
10200 (license license:gpl3+)))
10201
10202 (define-public r-assertive-datetimes
10203 (package
10204 (name "r-assertive-datetimes")
10205 (version "0.0-2")
10206 (source
10207 (origin
10208 (method url-fetch)
10209 (uri (cran-uri "assertive.datetimes" version))
10210 (sha256
10211 (base32
10212 "00a98fx8p3pr3ckayh8wmxmm4rz01s67wah9697m92yci6pv3m78"))))
10213 (properties
10214 `((upstream-name . "assertive.datetimes")))
10215 (build-system r-build-system)
10216 (propagated-inputs
10217 `(("r-assertive-base" ,r-assertive-base)
10218 ("r-assertive-types" ,r-assertive-types)))
10219 (home-page "https://bitbucket.org/richierocks/assertive.datetimes")
10220 (synopsis "Assertions to check properties of dates and times")
10221 (description
10222 "This package provides a set of predicates and assertions for checking
10223 the properties of dates and times. This is mainly for use by other package
10224 developers who want to include run-time testing features in their own
10225 packages.")
10226 (license license:gpl3+)))
10227
10228 (define-public r-assertive-strings
10229 (package
10230 (name "r-assertive-strings")
10231 (version "0.0-3")
10232 (source
10233 (origin
10234 (method url-fetch)
10235 (uri (cran-uri "assertive.strings" version))
10236 (sha256
10237 (base32
10238 "0n6jrk88670g4ym0r8ii40a08a90z1xadj8wcryk8h0nl04dchfm"))))
10239 (properties
10240 `((upstream-name . "assertive.strings")))
10241 (build-system r-build-system)
10242 (propagated-inputs
10243 `(("r-assertive-base" ,r-assertive-base)
10244 ("r-assertive-types" ,r-assertive-types)
10245 ("r-stringi" ,r-stringi)))
10246 (home-page "https://bitbucket.org/richierocks/assertive.strings")
10247 (synopsis "Assertions to check properties of strings")
10248 (description
10249 "This package provides a set of predicates and assertions for checking
10250 the properties of strings. This is mainly for use by other package developers
10251 who want to include run-time testing features in their own packages.")
10252 (license license:gpl3+)))
10253
10254 (define-public r-assertive-data-us
10255 (package
10256 (name "r-assertive-data-us")
10257 (version "0.0-2")
10258 (source
10259 (origin
10260 (method url-fetch)
10261 (uri (cran-uri "assertive.data.us" version))
10262 (sha256
10263 (base32
10264 "1bgspn0sccmp9z7s7djvdvprgxlyc5vrxznp4zfjb79kwvgn83hq"))))
10265 (properties
10266 `((upstream-name . "assertive.data.us")))
10267 (build-system r-build-system)
10268 (propagated-inputs
10269 `(("r-assertive-base" ,r-assertive-base)
10270 ("r-assertive-strings" ,r-assertive-strings)))
10271 (home-page "https://bitbucket.org/richierocks/assertive.data.us")
10272 (synopsis "Assertions to check properties of strings")
10273 (description
10274 "This package provides a set of predicates and assertions for checking
10275 the properties of US-specific complex data types. This is mainly for use by
10276 other package developers who want to include run-time testing features in
10277 their own packages.")
10278 (license license:gpl3+)))
10279
10280 (define-public r-assertive-data-uk
10281 (package
10282 (name "r-assertive-data-uk")
10283 (version "0.0-2")
10284 (source
10285 (origin
10286 (method url-fetch)
10287 (uri (cran-uri "assertive.data.uk" version))
10288 (sha256
10289 (base32
10290 "1fzjvhwp7mwkqqix29khvs6zcrc82n6j4czvzzb473vyjyvdlj5b"))))
10291 (properties
10292 `((upstream-name . "assertive.data.uk")))
10293 (build-system r-build-system)
10294 (propagated-inputs
10295 `(("r-assertive-base" ,r-assertive-base)
10296 ("r-assertive-strings" ,r-assertive-strings)))
10297 (home-page "https://bitbucket.org/richierocks/assertive.data.uk")
10298 (synopsis "Assertions to check properties of strings")
10299 (description
10300 "This package provides a set of predicates and assertions for checking
10301 the properties of UK-specific complex data types. This is mainly for use by
10302 other package developers who want to include run-time testing features in
10303 their own packages.")
10304 (license license:gpl3+)))
10305
10306 (define-public r-assertive-data
10307 (package
10308 (name "r-assertive-data")
10309 (version "0.0-3")
10310 (source
10311 (origin
10312 (method url-fetch)
10313 (uri (cran-uri "assertive.data" version))
10314 (sha256
10315 (base32
10316 "00cvg2g36mdl8plrzx40m63qd55742mddqrchwy9n3c7mm4gn02s"))))
10317 (properties
10318 `((upstream-name . "assertive.data")))
10319 (build-system r-build-system)
10320 (propagated-inputs
10321 `(("r-assertive-base" ,r-assertive-base)
10322 ("r-assertive-strings" ,r-assertive-strings)))
10323 (home-page "https://bitbucket.org/richierocks/assertive.data")
10324 (synopsis "Assertions to check properties of data")
10325 (description
10326 "This package provides a set of predicates and assertions for checking
10327 the properties of (country independent) complex data types. This is mainly
10328 for use by other package developers who want to include run-time testing
10329 features in their own packages.")
10330 (license license:gpl3+)))
10331
10332 (define-public r-assertive
10333 (package
10334 (name "r-assertive")
10335 (version "0.3-5")
10336 (source
10337 (origin
10338 (method url-fetch)
10339 (uri (cran-uri "assertive" version))
10340 (sha256
10341 (base32
10342 "0blbbhlxcb5ffdxqxi62xs33ljiawh6s22a0pyvbbh79jf46rzr3"))))
10343 (build-system r-build-system)
10344 (propagated-inputs
10345 `(("r-assertive-base" ,r-assertive-base)
10346 ("r-assertive-code" ,r-assertive-code)
10347 ("r-assertive-data" ,r-assertive-data)
10348 ("r-assertive-data-uk" ,r-assertive-data-uk)
10349 ("r-assertive-data-us" ,r-assertive-data-us)
10350 ("r-assertive-datetimes" ,r-assertive-datetimes)
10351 ("r-assertive-files" ,r-assertive-files)
10352 ("r-assertive-matrices" ,r-assertive-matrices)
10353 ("r-assertive-models" ,r-assertive-models)
10354 ("r-assertive-numbers" ,r-assertive-numbers)
10355 ("r-assertive-properties" ,r-assertive-properties)
10356 ("r-assertive-reflection" ,r-assertive-reflection)
10357 ("r-assertive-sets" ,r-assertive-sets)
10358 ("r-assertive-strings" ,r-assertive-strings)
10359 ("r-assertive-types" ,r-assertive-types)
10360 ("r-knitr" ,r-knitr)))
10361 (home-page "https://bitbucket.org/richierocks/assertive")
10362 (synopsis "Readable check functions to ensure code integrity")
10363 (description
10364 "This package provides lots of predicates (@code{is_*} functions) to
10365 check the state of your variables, and assertions (@code{assert_*} functions)
10366 to throw errors if they aren't in the right form.")
10367 (license license:gpl3+)))
10368
10369 (define-public r-dotcall64
10370 (package
10371 (name "r-dotcall64")
10372 (version "1.0-0")
10373 (source
10374 (origin
10375 (method url-fetch)
10376 (uri (cran-uri "dotCall64" version))
10377 (sha256
10378 (base32
10379 "1b8p7m3w0m7bp977c6jz74xkd611cxg11j49yza59k5fp338scb9"))))
10380 (properties `((upstream-name . "dotCall64")))
10381 (build-system r-build-system)
10382 (native-inputs `(("gfortran" ,gfortran)))
10383 (home-page "https://git.math.uzh.ch/reinhard.furrer/dotCall64")
10384 (synopsis "Enhanced foreign function interface supporting long vectors")
10385 (description
10386 "This package provides @code{.C64()}, an enhanced version of @code{.C()}
10387 and @code{.Fortran()} from the R foreign function interface. @code{.C64()}
10388 supports long vectors, arguments of type 64-bit integer, and provides a
10389 mechanism to avoid unnecessary copies of read-only and write-only arguments.
10390 This makes it a convenient and fast interface to C/C++ and Fortran code.")
10391 (license license:gpl2+)))
10392
10393 (define-public r-spam
10394 (package
10395 (name "r-spam")
10396 (version "2.2-2")
10397 (source
10398 (origin
10399 (method url-fetch)
10400 (uri (cran-uri "spam" version))
10401 (sha256
10402 (base32
10403 "024dgfnjfxvsiymbzrhadinamj6qy509f4sbd1zxql8ymkyxn7vi"))))
10404 (build-system r-build-system)
10405 (propagated-inputs
10406 `(("r-dotcall64" ,r-dotcall64)))
10407 (native-inputs `(("gfortran" ,gfortran)))
10408 (home-page "https://www.math.uzh.ch/pages/spam/")
10409 (synopsis "Sparse matrix algebra")
10410 (description
10411 "This package provides a set of functions for sparse matrix algebra.
10412 Differences with other sparse matrix packages are:
10413
10414 @enumerate
10415 @item it only supports (essentially) one sparse matrix format;
10416 @item it is based on transparent and simple structure(s);
10417 @item it is tailored for MCMC calculations within G(M)RF;
10418 @item and it is fast and scalable (with the extension package @code{spam64}).
10419 @end enumerate\n")
10420 ;; Either of these licenses
10421 (license (list license:bsd-3 license:lgpl2.0))))
10422
10423 (define-public r-fields
10424 (package
10425 (name "r-fields")
10426 (version "9.7")
10427 (source
10428 (origin
10429 (method url-fetch)
10430 (uri (cran-uri "fields" version))
10431 (sha256
10432 (base32
10433 "0hsr6r0zyv8zqkfyd9fmjk6v901m2r8pmswvsmps6w5zvpi0p5kw"))))
10434 (build-system r-build-system)
10435 (propagated-inputs
10436 `(("r-maps" ,r-maps)
10437 ("r-spam" ,r-spam)))
10438 (native-inputs
10439 `(("gfortran" ,gfortran)))
10440 (home-page "http://www.image.ucar.edu/fields")
10441 (synopsis "Tools for spatial data")
10442 (description
10443 "This is a package for curve, surface and function fitting with an
10444 emphasis on splines, spatial data and spatial statistics. The major methods
10445 include cubic, and thin plate splines, Kriging, and compactly supported
10446 covariance functions for large data sets.")
10447 (license license:gpl2+)))
10448
10449 (define-public r-spatialextremes
10450 (package
10451 (name "r-spatialextremes")
10452 (version "2.0-7")
10453 (source
10454 (origin
10455 (method url-fetch)
10456 (uri (cran-uri "SpatialExtremes" version))
10457 (sha256
10458 (base32
10459 "1y0h1pcfqp9ynxsr3yrfbihlwm25ypyb88jmm5k2g7xvm8h9g050"))))
10460 (properties
10461 `((upstream-name . "SpatialExtremes")))
10462 (build-system r-build-system)
10463 (propagated-inputs
10464 `(("r-fields" ,r-fields)
10465 ("r-maps" ,r-maps)))
10466 (home-page "http://spatialextremes.r-forge.r-project.org/")
10467 (synopsis "Modelling spatial extremes")
10468 (description
10469 "This package provides tools for the statistical modelling of spatial
10470 extremes using max-stable processes, copula or Bayesian hierarchical models.
10471 More precisely, this package allows (conditional) simulations from various
10472 parametric max-stable models, analysis of the extremal spatial dependence, the
10473 fitting of such processes using composite likelihoods or least square (simple
10474 max-stable processes only), model checking and selection and prediction.")
10475 (license license:gpl2+)))
10476
10477 (define-public r-drc
10478 (package
10479 (name "r-drc")
10480 (version "3.0-1")
10481 (source
10482 (origin
10483 (method url-fetch)
10484 (uri (cran-uri "drc" version))
10485 (sha256
10486 (base32
10487 "0c8xn8ripzq270hy8d16fcnx02l02alddznd7fqwk3jyi6113h1y"))))
10488 (build-system r-build-system)
10489 (propagated-inputs
10490 `(("r-car" ,r-car)
10491 ("r-gtools" ,r-gtools)
10492 ("r-mass" ,r-mass)
10493 ("r-multcomp" ,r-multcomp)
10494 ("r-plotrix" ,r-plotrix)
10495 ("r-scales" ,r-scales)))
10496 (home-page "https://cran.r-project.org/web/packages/drc")
10497 (synopsis "Analysis of dose-response curves")
10498 (description
10499 "This package provides a suite of flexible and versatile model fitting
10500 and after-fitting functions for the analysis of dose-response data.")
10501 (license license:gpl2+)))
10502
10503 (define-public r-rmeta
10504 (package
10505 (name "r-rmeta")
10506 (version "3.0")
10507 (source
10508 (origin
10509 (method url-fetch)
10510 (uri (cran-uri "rmeta" version))
10511 (sha256
10512 (base32
10513 "0vkbnxp579v8zmcv1isdbzj5swpr6fq17zwparxcvzswjc2x9ydr"))))
10514 (build-system r-build-system)
10515 (home-page "https://cran.r-project.org/web/packages/rmeta")
10516 (synopsis "Tools for meta-analysis")
10517 (description
10518 "This package provides functions for simple fixed and random effects
10519 meta-analysis for two-sample comparisons and cumulative meta-analyses. It
10520 draws standard summary plots, funnel plots, and computes summaries and tests
10521 for association and heterogeneity.")
10522 (license license:gpl2)))
10523
10524 (define-public r-bootstrap
10525 (package
10526 (name "r-bootstrap")
10527 (version "2017.2")
10528 (source
10529 (origin
10530 (method url-fetch)
10531 (uri (cran-uri "bootstrap" version))
10532 (sha256
10533 (base32
10534 "08lmsy7k8wsgv89yc904c6fidcymr1ma2ry4fl0p69p21v4iiwa4"))))
10535 (build-system r-build-system)
10536 (native-inputs `(("gfortran" ,gfortran)))
10537 (home-page "https://cran.r-project.org/web/packages/bootstrap")
10538 (synopsis "Functions for the book \"An Introduction to the Bootstrap\"")
10539 (description
10540 "This package provides software and data for the book \"An Introduction
10541 to the Bootstrap\" by B. Efron and R. Tibshirani, 1993, Chapman and Hall.
10542 This package is primarily provided for projects already based on it, and for
10543 support of the book. New projects should preferentially use the recommended
10544 package \"boot\".")
10545 (license license:bsd-3)))
10546
10547 (define-public r-survivalroc
10548 (package
10549 (name "r-survivalroc")
10550 (version "1.0.3")
10551 (source
10552 (origin
10553 (method url-fetch)
10554 (uri (cran-uri "survivalROC" version))
10555 (sha256
10556 (base32
10557 "0wnd65ff5w679hxa1zrpfrx9qg47q21pjxppsga6m3h4iq1yfj8l"))))
10558 (properties `((upstream-name . "survivalROC")))
10559 (build-system r-build-system)
10560 (home-page "https://cran.r-project.org/web/packages/survivalROC")
10561 (synopsis "Time-dependent ROC curve estimation from censored survival data")
10562 (description
10563 "Compute time-dependent ROC curve from censored survival data using
10564 Kaplan-Meier (KM) or Nearest Neighbor Estimation (NNE) method of Heagerty,
10565 Lumley & Pepe (Biometrics, Vol 56 No 2, 2000, PP 337-344)")
10566 (license license:gpl2+)))
10567
10568 (define-public r-longitudinal
10569 (package
10570 (name "r-longitudinal")
10571 (version "1.1.12")
10572 (source
10573 (origin
10574 (method url-fetch)
10575 (uri (cran-uri "longitudinal" version))
10576 (sha256
10577 (base32
10578 "1d83ws28nxi3kw5lgd5n5y7865djq7ky72fw3ddi1fkkhg1r9y6l"))))
10579 (build-system r-build-system)
10580 (propagated-inputs `(("r-corpcor" ,r-corpcor)))
10581 (home-page "http://strimmerlab.org/software/longitudinal/")
10582 (synopsis "Analysis of multiple time course data")
10583 (description
10584 "This package contains general data structures and functions for
10585 longitudinal data with multiple variables, repeated measurements, and
10586 irregularly spaced time points. It also implements a shrinkage estimator of
10587 dynamical correlation and dynamical covariance.")
10588 (license license:gpl3+)))
10589
10590 (define-public r-genenet
10591 (package
10592 (name "r-genenet")
10593 (version "1.2.13")
10594 (source
10595 (origin
10596 (method url-fetch)
10597 (uri (cran-uri "GeneNet" version))
10598 (sha256
10599 (base32
10600 "0w52apk0nnr8nsskf26ff7ana8xiksr8wqmkjxzwhzgg7fncm61p"))))
10601 (properties `((upstream-name . "GeneNet")))
10602 (build-system r-build-system)
10603 (propagated-inputs
10604 `(("r-corpcor" ,r-corpcor)
10605 ("r-fdrtool" ,r-fdrtool)
10606 ("r-longitudinal" ,r-longitudinal)))
10607 (home-page "http://strimmerlab.org/software/genenet/")
10608 (synopsis "Modeling and inferring gene networks")
10609 (description
10610 "This package analyzes gene expression (time series) data with focus on
10611 the inference of gene networks. In particular, GeneNet implements the methods
10612 of Schaefer and Strimmer (2005a,b,c) and Opgen-Rhein and Strimmer (2006, 2007)
10613 for learning large-scale gene association networks (including assignment of
10614 putative directions).")
10615 (license license:gpl3+)))
10616
10617 (define-public r-rbamtools
10618 (package
10619 (name "r-rbamtools")
10620 (version "2.16.11.2")
10621 (source
10622 (origin
10623 (method url-fetch)
10624 (uri (cran-uri "rbamtools" version))
10625 (sha256
10626 (base32
10627 "0gzkb1xyrkriv45wq8gv7qfwjslnvwkfkk5jjc4wg5kmm0ydpdzj"))))
10628 (build-system r-build-system)
10629 (inputs `(("zlib" ,zlib)))
10630 (propagated-inputs
10631 `(("r-refgenome" ,r-refgenome)))
10632 (home-page "https://cran.r-project.org/web/packages/rbamtools")
10633 (synopsis "Read and write BAM (binary alignment) files")
10634 (description
10635 "This package provides an R interface to functions of the SAMtools
10636 library.")
10637 (license license:artistic2.0)))
10638
10639 (define-public r-protviz
10640 (package
10641 (name "r-protviz")
10642 (version "0.4.0")
10643 (source
10644 (origin
10645 (method url-fetch)
10646 (uri (cran-uri "protViz" version))
10647 (sha256
10648 (base32
10649 "150i2q4nakz28f39kmhrchz4qsr8ax6y02512md94k8hq4hamxg1"))))
10650 (properties `((upstream-name . "protViz")))
10651 (build-system r-build-system)
10652 (inputs
10653 `(("perl" ,perl)
10654 ("python-2" ,python-2)))
10655 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
10656 (home-page "https://github.com/protViz/protViz/")
10657 (synopsis "Visualizing and analyzing mass spectrometry data in proteomics")
10658 (description
10659 "This package helps with quality checks, visualizations and analysis of
10660 mass spectrometry data, coming from proteomics experiments. The package is
10661 developed, tested and used at the Functional Genomics Center Zurich, where it
10662 is used mainly for prototyping, teaching, and having fun with proteomics data.
10663 But it can also be used to do data analysis for small scale data sets.")
10664 (license license:gpl3)))
10665
10666 (define-public r-cmprsk
10667 (package
10668 (name "r-cmprsk")
10669 (version "2.2-7")
10670 (source
10671 (origin
10672 (method url-fetch)
10673 (uri (cran-uri "cmprsk" version))
10674 (sha256
10675 (base32
10676 "1imr3wpnj4g57n2x4ryahl4lk8lvq9y2r7319zv3k82mznha8bcm"))))
10677 (build-system r-build-system)
10678 (propagated-inputs
10679 `(("r-survival" ,r-survival)))
10680 (native-inputs
10681 `(("gfortran" ,gfortran)))
10682 (home-page "https://cran.r-project.org/web/packages/cmprsk")
10683 (synopsis "Subdistribution analysis of competing risks")
10684 (description
10685 "This package provides tool for estimation, testing and regression
10686 modeling of subdistribution functions in competing risks, as described in
10687 Gray (1988), A class of K-sample tests for comparing the cumulative incidence
10688 of a competing risk, Ann. Stat. 16:1141-1154, and Fine JP and Gray RJ (1999),
10689 A proportional hazards model for the subdistribution of a competing risk,
10690 JASA, 94:496-509.")
10691 (license license:gpl2+)))
10692
10693 (define-public r-etm
10694 (package
10695 (name "r-etm")
10696 (version "1.0.4")
10697 (source
10698 (origin
10699 (method url-fetch)
10700 (uri (cran-uri "etm" version))
10701 (sha256
10702 (base32
10703 "0ws103b3pmli0z4xbyfxkly2wnnnxnnwc0r66qjjqjrlvm7pffl1"))))
10704 (build-system r-build-system)
10705 (propagated-inputs
10706 `(("r-data-table" ,r-data-table)
10707 ("r-lattice" ,r-lattice)
10708 ("r-rcpp" ,r-rcpp)
10709 ("r-rcpparmadillo" ,r-rcpparmadillo)
10710 ("r-survival" ,r-survival)))
10711 (home-page "https://cran.r-project.org/web/packages/etm")
10712 (synopsis "Empirical transition matrix")
10713 (description
10714 "The @dfn{empirical transition matrix} (etm) package permits to estimate
10715 the matrix of transition probabilities for any time-inhomogeneous multistate
10716 model with finite state space using the Aalen-Johansen estimator.")
10717 (license license:expat)))
10718
10719 (define-public r-epi
10720 (package
10721 (name "r-epi")
10722 (version "2.35")
10723 (source
10724 (origin
10725 (method url-fetch)
10726 (uri (cran-uri "Epi" version))
10727 (sha256
10728 (base32
10729 "1z3959761ryv54y6vsrxxvhrwzz50xrxn55pqh5y7lrxh91zdsvl"))))
10730 (properties `((upstream-name . "Epi")))
10731 (build-system r-build-system)
10732 (propagated-inputs
10733 `(("r-cmprsk" ,r-cmprsk)
10734 ("r-data-table" ,r-data-table)
10735 ("r-etm" ,r-etm)
10736 ("r-mass" ,r-mass)
10737 ("r-matrix" ,r-matrix)
10738 ("r-mgcv" ,r-mgcv)
10739 ("r-numderiv" ,r-numderiv)
10740 ("r-plyr" ,r-plyr)
10741 ("r-survival" ,r-survival)
10742 ("r-zoo" ,r-zoo)))
10743 (home-page "http://BendixCarstensen.com/Epi/")
10744 (synopsis "Statistical analysis in epidemiology")
10745 (description
10746 "This package provides functions for demographic and epidemiological
10747 analysis in the Lexis diagram, i.e. register and cohort follow-up data, in
10748 particular representation, manipulation and simulation of multistate data -
10749 the Lexis suite of functions, which includes interfaces to the @code{mstate},
10750 @code{etm} and @code{cmprsk} packages. It also contains functions for
10751 Age-Period-Cohort and Lee-Carter modeling and a function for interval censored
10752 data and some useful functions for tabulation and plotting, as well as a
10753 number of epidemiological data sets.")
10754 (license license:gpl2)))
10755
10756 (define-public r-ppls
10757 (package
10758 (name "r-ppls")
10759 (version "1.6-1.1")
10760 (source
10761 (origin
10762 (method url-fetch)
10763 (uri (cran-uri "ppls" version))
10764 (sha256
10765 (base32
10766 "1zyrisy3c4cz896j1bjh61sf57wdl9p8ywdq268cl819szfq78mx"))))
10767 (build-system r-build-system)
10768 (propagated-inputs `(("r-mass" ,r-mass)))
10769 (home-page "https://cran.r-project.org/web/packages/ppls")
10770 (synopsis "Penalized partial least squares")
10771 (description
10772 "This package contains linear and nonlinear regression methods based on
10773 partial least squares and penalization techniques. Model parameters are
10774 selected via cross-validation, and confidence intervals ans tests for the
10775 regression coefficients can be conducted via jackknifing.")
10776 (license license:gpl2+)))
10777
10778 (define-public r-huge
10779 (package
10780 (name "r-huge")
10781 (version "1.3.2")
10782 (source
10783 (origin
10784 (method url-fetch)
10785 (uri (cran-uri "huge" version))
10786 (sha256
10787 (base32
10788 "1j93gvi1jyq3ld9jhdqhrpm2is54rk3ilmf3yw7fx6gva0y6hjqd"))))
10789 (build-system r-build-system)
10790 (propagated-inputs
10791 `(("r-igraph" ,r-igraph)
10792 ("r-mass" ,r-mass)
10793 ("r-matrix" ,r-matrix)
10794 ("r-rcpp" ,r-rcpp)
10795 ("r-rcppeigen" ,r-rcppeigen)))
10796 (home-page "https://cran.r-project.org/web/packages/huge")
10797 (synopsis "High-dimensional undirected graph estimation")
10798 (description
10799 "This package provides a general framework for high-dimensional
10800 undirected graph estimation. It integrates data preprocessing, neighborhood
10801 screening, graph estimation, and model selection techniques into a pipeline.")
10802 (license license:gpl2)))
10803
10804 (define-public r-parcor
10805 (package
10806 (name "r-parcor")
10807 (version "0.2-6")
10808 (source
10809 (origin
10810 (method url-fetch)
10811 (uri (cran-uri "parcor" version))
10812 (sha256
10813 (base32
10814 "0vgs6k92vdr0cmb8cwbv2ff6qavw30agskfd8bfh17hsskrisvx0"))))
10815 (build-system r-build-system)
10816 (propagated-inputs
10817 `(("r-epi" ,r-epi)
10818 ("r-genenet" ,r-genenet)
10819 ("r-glmnet" ,r-glmnet)
10820 ("r-mass" ,r-mass)
10821 ("r-ppls" ,r-ppls)))
10822 (home-page "https://cran.r-project.org/web/packages/parcor")
10823 (synopsis "Regularized estimation of partial correlation matrices")
10824 (description
10825 "This package estimates the matrix of partial correlations based on
10826 different regularized regression methods: lasso, adaptive lasso, PLS, and
10827 Ridge Regression. In addition, the package provides model selection for
10828 lasso, adaptive lasso and Ridge regression based on cross-validation.")
10829 (license license:gpl2+)))
10830
10831 (define-public r-mcmc
10832 (package
10833 (name "r-mcmc")
10834 (version "0.9-6")
10835 (source
10836 (origin
10837 (method url-fetch)
10838 (uri (cran-uri "mcmc" version))
10839 (sha256
10840 (base32
10841 "1fc6a6asn53lx7x7pnlb5mb716nv4pcmbp99f1i30y4hzygihfj4"))))
10842 (build-system r-build-system)
10843 (home-page "http://www.stat.umn.edu/geyer/mcmc/")
10844 (synopsis "Markov chain Monte Carlo")
10845 (description
10846 "This package simulates continuous distributions of random vectors using
10847 @dfn{Markov chain Monte Carlo} (MCMC). Users specify the distribution by an R
10848 function that evaluates the log unnormalized density. Algorithms are random
10849 walk Metropolis algorithm (function @code{metrop}), simulated
10850 tempering (function @code{temper}), and morphometric random walk
10851 Metropolis (function @code{morph.metrop}), which achieves geometric ergodicity
10852 by change of variable.")
10853 (license license:expat)))
10854
10855 (define-public r-listenv
10856 (package
10857 (name "r-listenv")
10858 (version "0.7.0")
10859 (source
10860 (origin
10861 (method url-fetch)
10862 (uri (cran-uri "listenv" version))
10863 (sha256
10864 (base32
10865 "0ma5jsri2zqkrlsm9nqpikl7imbwfy1glsmk13mblw0q245h49k1"))))
10866 (build-system r-build-system)
10867 (native-inputs
10868 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
10869 (home-page "https://github.com/HenrikBengtsson/listenv")
10870 (synopsis "Environments behaving (almost) as lists")
10871 (description
10872 "This package implements list environments. List environments are
10873 environments that have list-like properties. For instance, the elements of a
10874 list environment are ordered and can be accessed and iterated over using index
10875 subsetting.")
10876 (license license:lgpl2.1+)))
10877
10878 (define-public r-globals
10879 (package
10880 (name "r-globals")
10881 (version "0.12.4")
10882 (source
10883 (origin
10884 (method url-fetch)
10885 (uri (cran-uri "globals" version))
10886 (sha256
10887 (base32
10888 "0szyv1ayyk31bh3xqlkj43020w44xq6s4rw2bxwizyjssxm3b1br"))))
10889 (build-system r-build-system)
10890 (propagated-inputs
10891 `(("r-codetools" ,r-codetools)))
10892 (home-page "https://github.com/HenrikBengtsson/globals")
10893 (synopsis "Identify global objects in R expressions")
10894 (description
10895 "This package provides tools to identify global (\"unknown\" or \"free\")
10896 objects in R expressions by code inspection using various strategies, e.g.
10897 conservative or liberal. The objective of this package is to make it as
10898 simple as possible to identify global objects for the purpose of exporting
10899 them in distributed compute environments.")
10900 (license license:lgpl2.1+)))
10901
10902 (define-public r-future
10903 (package
10904 (name "r-future")
10905 (version "1.12.0")
10906 (source
10907 (origin
10908 (method url-fetch)
10909 (uri (cran-uri "future" version))
10910 (sha256
10911 (base32
10912 "12hq7hsfydlscwrb37ns9a8561bzpsp82nn7jrcyj0ydk610nipm"))))
10913 (build-system r-build-system)
10914 (propagated-inputs
10915 `(("r-digest" ,r-digest)
10916 ("r-globals" ,r-globals)
10917 ("r-listenv" ,r-listenv)))
10918 (native-inputs
10919 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
10920 (home-page "https://github.com/HenrikBengtsson/future")
10921 (synopsis "Unified parallel and distributed processing in R")
10922 (description
10923 "The purpose of this package is to provide a lightweight and unified
10924 Future API for sequential and parallel processing of R expression via futures.
10925 This package implements sequential, multicore, multisession, and cluster
10926 futures. With these, R expressions can be evaluated on the local machine, in
10927 parallel a set of local machines, or distributed on a mix of local and remote
10928 machines. Extensions to this package implement additional backends for
10929 processing futures via compute cluster schedulers etc. Because of its unified
10930 API, there is no need to modify any code in order to switch from sequential on
10931 the local machine to, say, distributed processing on a remote compute cluster.")
10932 (license license:lgpl2.1+)))
10933
10934 (define-public r-future-apply
10935 (package
10936 (name "r-future-apply")
10937 (version "1.2.0")
10938 (source
10939 (origin
10940 (method url-fetch)
10941 (uri (cran-uri "future.apply" version))
10942 (sha256
10943 (base32
10944 "00ma43ma3byrf9vfqqn9g8sn18c71ryhk7lpza5h7817f1kibw1h"))))
10945 (properties `((upstream-name . "future.apply")))
10946 (build-system r-build-system)
10947 (propagated-inputs
10948 `(("r-future" ,r-future)
10949 ("r-globals" ,r-globals)))
10950 (native-inputs
10951 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
10952 (home-page "https://github.com/HenrikBengtsson/future.apply")
10953 (synopsis "Apply function to elements in parallel using futures")
10954 (description
10955 "This package provides implementations of @code{apply()},
10956 @code{eapply()}, @code{lapply()}, @code{Map()}, @code{mapply()},
10957 @code{replicate()}, @code{sapply()}, @code{tapply()}, and @code{vapply()} that
10958 can be resolved using any future-supported backend, e.g. parallel on the local
10959 machine or distributed on a compute cluster.")
10960 (license license:gpl2+)))
10961
10962 (define-public r-rsvd
10963 (package
10964 (name "r-rsvd")
10965 (version "1.0.0")
10966 (source
10967 (origin
10968 (method url-fetch)
10969 (uri (cran-uri "rsvd" version))
10970 (sha256
10971 (base32
10972 "0vjhrvnkl9rmvl8sv2kac5sd10z3fgxymb676ynxzc2pmhydy3an"))))
10973 (build-system r-build-system)
10974 (propagated-inputs
10975 `(("r-matrix" ,r-matrix)))
10976 (home-page "https://github.com/erichson/rSVD")
10977 (synopsis "Randomized singular value decomposition")
10978 (description
10979 "Low-rank matrix decompositions are fundamental tools and widely used for
10980 data analysis, dimension reduction, and data compression. Classically, highly
10981 accurate deterministic matrix algorithms are used for this task. However, the
10982 emergence of large-scale data has severely challenged our computational
10983 ability to analyze big data. The concept of randomness has been demonstrated
10984 as an effective strategy to quickly produce approximate answers to familiar
10985 problems such as the @dfn{singular value decomposition} (SVD). This package
10986 provides several randomized matrix algorithms such as the randomized singular
10987 value decomposition (@code{rsvd}), randomized principal component
10988 analysis (@code{rpca}), randomized robust principal component
10989 analysis (@code{rrpca}), randomized interpolative decomposition (@code{rid}),
10990 and the randomized CUR decomposition (@code{rcur}). In addition several plot
10991 functions are provided.")
10992 (license license:gpl3+)))
10993
10994 (define-public r-sloop
10995 (package
10996 (name "r-sloop")
10997 (version "1.0.1")
10998 (source
10999 (origin
11000 (method url-fetch)
11001 (uri (cran-uri "sloop" version))
11002 (sha256
11003 (base32
11004 "00fk5fr5zsk2qxc1kfhmshhjxgnamm3401089sx8m2l529zd6r8j"))))
11005 (build-system r-build-system)
11006 (propagated-inputs
11007 `(("r-codetools" ,r-codetools)
11008 ("r-crayon" ,r-crayon)
11009 ("r-purrr" ,r-purrr)
11010 ("r-rlang" ,r-rlang)
11011 ("r-tibble" ,r-tibble)))
11012 (home-page "https://github.com/r-lib/sloop")
11013 (synopsis "Helpers for object-oriented programming in R")
11014 (description
11015 "This package provides a collection of helper functions designed to
11016 help you to better understand object oriented programming in R, particularly
11017 using @code{S3}.")
11018 (license license:gpl3)))
11019
11020 (define-public r-capushe
11021 (package
11022 (name "r-capushe")
11023 (version "1.1.1")
11024 (source
11025 (origin
11026 (method url-fetch)
11027 (uri (cran-uri "capushe" version))
11028 (sha256
11029 (base32
11030 "1aa76ir1kp67hiz7dr60azyc71yzslshyc640fjh0fpw0sp5kwbc"))))
11031 (build-system r-build-system)
11032 (propagated-inputs `(("r-mass" ,r-mass)))
11033 (home-page "https://cran.r-project.org/web/packages/capushe/index.html")
11034 (synopsis "Calibrating penalities using slope heuristics")
11035 (description
11036 "This package provides tools for the calibration of penalized criteria
11037 for model selection. The calibration methods available are based on the slope
11038 heuristics.")
11039 (license license:gpl2+)))
11040
11041 (define-public r-dorng
11042 (package
11043 (name "r-dorng")
11044 (version "1.7.1")
11045 (source
11046 (origin
11047 (method url-fetch)
11048 (uri (cran-uri "doRNG" version))
11049 (sha256
11050 (base32
11051 "1sb75aqkliprglfxc4x4wds6alqgzhvl2n812g1d32a88ra3slr7"))))
11052 (properties `((upstream-name . "doRNG")))
11053 (build-system r-build-system)
11054 (propagated-inputs
11055 `(("r-foreach" ,r-foreach)
11056 ("r-iterators" ,r-iterators)
11057 ("r-pkgmaker" ,r-pkgmaker)
11058 ("r-rngtools" ,r-rngtools)))
11059 (home-page "https://renozao.github.io/doRNG/")
11060 (synopsis "Generic reproducible parallel backend for foreach loops")
11061 (description
11062 "This package provides functions to perform reproducible parallel
11063 @code{foreach} loops, using independent random streams as generated by
11064 L'Ecuyer's combined multiple-recursive generator. It enables to easily
11065 convert standard @code{%dopar%} loops into fully reproducible loops,
11066 independently of the number of workers, the task scheduling strategy, or the
11067 chosen parallel environment and associated foreach backend.")
11068 (license license:gpl2+)))
11069
11070 (define-public r-blockmodeling
11071 (package
11072 (name "r-blockmodeling")
11073 (version "0.3.4")
11074 (source
11075 (origin
11076 (method url-fetch)
11077 (uri (cran-uri "blockmodeling" version))
11078 (sha256
11079 (base32
11080 "11v9903y9dwlzaqp8sx0fsibcg82phvappddy37r8lnxd4vchsd2"))))
11081 (build-system r-build-system)
11082 (propagated-inputs
11083 `(("r-doparallel" ,r-doparallel)
11084 ("r-dorng" ,r-dorng)
11085 ("r-foreach" ,r-foreach)
11086 ("r-matrix" ,r-matrix)))
11087 (native-inputs `(("gfortran" ,gfortran)))
11088 (home-page "https://cran.r-project.org/web/packages/blockmodeling")
11089 (synopsis "Generalized and classical blockmodeling of valued networks")
11090 (description
11091 "This package is primarily meant as an implementation of generalized
11092 blockmodeling for valued networks. In addition, measures of similarity or
11093 dissimilarity based on structural equivalence and regular equivalence (REGE
11094 algorithms) can be computed and partitioned matrices can be plotted.")
11095 (license license:gpl2+)))
11096
11097 (define-public r-upsetr
11098 (package
11099 (name "r-upsetr")
11100 (version "1.3.3")
11101 (source
11102 (origin
11103 (method url-fetch)
11104 (uri (cran-uri "UpSetR" version))
11105 (sha256
11106 (base32
11107 "08vj7l92b8fpqyqwxshll2mhk3yhgyr74axvr2lf29z78bapymhz"))))
11108 (properties `((upstream-name . "UpSetR")))
11109 (build-system r-build-system)
11110 (propagated-inputs
11111 `(("r-ggplot2" ,r-ggplot2)
11112 ("r-gridextra" ,r-gridextra)
11113 ("r-plyr" ,r-plyr)
11114 ("r-scales" ,r-scales)))
11115 (home-page "https://github.com/hms-dbmi/UpSetR")
11116 (synopsis "Visualize intersecting sets")
11117 (description
11118 "This package provides a more scalable alternative to Venn and Euler
11119 diagrams for visualizing intersecting sets. Create visualizations of
11120 intersecting sets using a novel matrix design, along with visualizations of
11121 several common set, element and attribute related tasks.")
11122 (license license:expat)))
11123
11124 ;; This package includes a JavaScript file, which is not minified. When
11125 ;; upgrading please check that there are no new minified JavaScript files.
11126 (define-public r-shinybs
11127 (package
11128 (name "r-shinybs")
11129 (version "0.61")
11130 (source
11131 (origin
11132 (method url-fetch)
11133 (uri (cran-uri "shinyBS" version))
11134 (sha256
11135 (base32
11136 "0rhim4mbp4x9vvm7xkmpl7mhb9qd1gr96cr4dv330v863ra2kgji"))))
11137 (properties `((upstream-name . "shinyBS")))
11138 (build-system r-build-system)
11139 ;; The tests spawn Shiny browser apps. They cannot be run
11140 ;; non-interactively.
11141 (arguments '(#:tests? #f))
11142 (propagated-inputs
11143 `(("r-htmltools" ,r-htmltools)
11144 ("r-shiny" ,r-shiny)))
11145 (home-page "https://ebailey78.github.io/shinyBS/")
11146 (synopsis "Twitter Bootstrap components for Shiny")
11147 (description
11148 "This package adds additional Twitter Bootstrap components to Shiny.")
11149 (license license:gpl3)))
11150
11151 (define-public r-outliers
11152 (package
11153 (name "r-outliers")
11154 (version "0.14")
11155 (source
11156 (origin
11157 (method url-fetch)
11158 (uri (cran-uri "outliers" version))
11159 (sha256
11160 (base32
11161 "0vcqfqmmv4yblyp3s6bd25r49pxb7hjzipiic5a82924nqfqzkmn"))))
11162 (build-system r-build-system)
11163 (home-page "https://cran.r-project.org/web/packages/outliers/index.html")
11164 (synopsis "Tests for outliers")
11165 (description
11166 "This package provides a collection of some tests commonly used for
11167 identifying outliers.")
11168 (license license:gpl2+)))
11169
11170 (define-public r-bayesm
11171 (package
11172 (name "r-bayesm")
11173 (version "3.1-1")
11174 (source
11175 (origin
11176 (method url-fetch)
11177 (uri (cran-uri "bayesm" version))
11178 (sha256
11179 (base32
11180 "0y30cza92s6kgvmxjpr6f5g0qbcck7hslqp89ncprarhxiym2m28"))))
11181 (build-system r-build-system)
11182 (propagated-inputs
11183 `(("r-rcpp" ,r-rcpp)
11184 ("r-rcpparmadillo" ,r-rcpparmadillo)))
11185 (home-page "http://www.perossi.org/home/bsm-1")
11186 (synopsis "Bayesian inference for marketing/micro-econometrics")
11187 (description
11188 "This package covers many important models used in marketing and
11189 micro-econometrics applications, including Bayes Regression (univariate or
11190 multivariate dep var), Bayes Seemingly Unrelated Regression (SUR), Binary and
11191 Ordinal Probit, Multinomial Logit (MNL) and Multinomial Probit (MNP),
11192 Multivariate Probit, Negative Binomial (Poisson) Regression, Multivariate
11193 Mixtures of Normals (including clustering), Dirichlet Process Prior Density
11194 Estimation with normal base, Hierarchical Linear Models with normal prior and
11195 covariates, Hierarchical Linear Models with a mixture of normals prior and
11196 covariates, Hierarchical Multinomial Logits with a mixture of normals prior
11197 and covariates, Hierarchical Multinomial Logits with a Dirichlet Process prior
11198 and covariates, Hierarchical Negative Binomial Regression Models, Bayesian
11199 analysis of choice-based conjoint data, Bayesian treatment of linear
11200 instrumental variables models, Analysis of Multivariate Ordinal survey data
11201 with scale usage heterogeneity, and Bayesian Analysis of Aggregate Random
11202 Coefficient Logit Models.")
11203 (license license:gpl2+)))
11204
11205 (define-public r-tensora
11206 (package
11207 (name "r-tensora")
11208 (version "0.36.1")
11209 (source
11210 (origin
11211 (method url-fetch)
11212 (uri (cran-uri "tensorA" version))
11213 (sha256
11214 (base32
11215 "176hjy3bvg3in62r97wxbhq187sjz6c1gwy9x6spaxl6k4my3zy7"))))
11216 (properties `((upstream-name . "tensorA")))
11217 (build-system r-build-system)
11218 (home-page "http://www.stat.boogaart.de/tensorA")
11219 (synopsis "Advanced tensor arithmetic with named indices")
11220 (description
11221 "This package provides convenience functions for advanced linear algebra
11222 with tensors and computation with datasets of tensors on a higher level
11223 abstraction. It includes Einstein and Riemann summing conventions, dragging,
11224 co- and contravariate indices, and parallel computations on sequences of
11225 tensors.")
11226 (license license:gpl2+)))
11227
11228 (define-public r-rarpack
11229 (package
11230 (name "r-rarpack")
11231 (version "0.11-0")
11232 (source
11233 (origin
11234 (method url-fetch)
11235 (uri (cran-uri "rARPACK" version))
11236 (sha256
11237 (base32
11238 "12h2y46xcfldhjdmm960swgn9b23zvkj5vg2bi42s9qxwgi02d63"))))
11239 (properties `((upstream-name . "rARPACK")))
11240 (build-system r-build-system)
11241 (propagated-inputs `(("r-rspectra" ,r-rspectra)))
11242 (home-page "https://github.com/yixuan/rARPACK")
11243 (synopsis "Solvers for large scale eigenvalue and SVD problems")
11244 (description
11245 "This package was previously an R wrapper of the ARPACK library, and now
11246 a shell of the R package RSpectra, an R interface to the Spectra library for
11247 solving large scale eigenvalue/vector problems. The current version of
11248 rARPACK simply imports and exports the functions provided by RSpectra. New
11249 users of rARPACK are advised to switch to the RSpectra package.")
11250 (license license:bsd-3)))
11251
11252 (define-public r-compositions
11253 (package
11254 (name "r-compositions")
11255 (version "1.40-2")
11256 (source
11257 (origin
11258 (method url-fetch)
11259 (uri (cran-uri "compositions" version))
11260 (sha256
11261 (base32
11262 "12mp05yi7jkdqg9iwh6bc9sx6sdxagcnrirznxy9hq8502p7238i"))))
11263 (build-system r-build-system)
11264 (propagated-inputs
11265 `(("r-bayesm" ,r-bayesm)
11266 ("r-energy" ,r-energy)
11267 ("r-robustbase" ,r-robustbase)
11268 ("r-tensora" ,r-tensora)))
11269 (home-page "http://www.stat.boogaart.de/compositions")
11270 (synopsis "Compositional data analysis")
11271 (description
11272 "This package provides functions for the consistent analysis of
11273 compositional data (e.g. portions of substances) and positive
11274 numbers (e.g. concentrations).")
11275 (license license:gpl2+)))
11276
11277 (define-public r-cobs
11278 (package
11279 (name "r-cobs")
11280 (version "1.3-3")
11281 (source
11282 (origin
11283 (method url-fetch)
11284 (uri (cran-uri "cobs" version))
11285 (sha256
11286 (base32
11287 "1pqvz7czcchri4x79g78hbwyagb3bqzdqb047zkbdinyz067c7kb"))))
11288 (build-system r-build-system)
11289 (propagated-inputs
11290 `(("r-quantreg" ,r-quantreg)
11291 ("r-sparsem" ,r-sparsem)))
11292 (home-page "https://cran.r-project.org/web/packages/cobs")
11293 (synopsis "Constrained B-Splines (sparse matrix based)")
11294 (description
11295 "This package provides qualitatively constrained (regression) smoothing
11296 splines via linear programming and sparse matrices.")
11297 (license license:gpl2+)))
11298
11299 (define-public r-drimpute
11300 (package
11301 (name "r-drimpute")
11302 (version "1.0")
11303 (source
11304 (origin
11305 (method url-fetch)
11306 (uri (cran-uri "DrImpute" version))
11307 (sha256
11308 (base32
11309 "1adzarrwqb282pqgx2yqswp9rpwd1naxsmar54kddr6qyd6b923b"))))
11310 (properties `((upstream-name . "DrImpute")))
11311 (build-system r-build-system)
11312 (propagated-inputs
11313 `(("r-rcpp" ,r-rcpp)
11314 ("r-rcpparmadillo" ,r-rcpparmadillo)))
11315 (home-page "https://github.com/ikwak2/DrImpute")
11316 (synopsis "Imputing dropout events in single-cell RNA-Seq data")
11317 (description
11318 "This is an R package for imputing dropout events. Many statistical
11319 methods in cell type identification, visualization and lineage reconstruction
11320 do not account for dropout events. DrImpute can improve the performance of
11321 such software by imputing dropout events.")
11322 (license license:gpl3)))
11323
11324 (define-public r-gamlss-dist
11325 (package
11326 (name "r-gamlss-dist")
11327 (version "5.1-3")
11328 (source
11329 (origin
11330 (method url-fetch)
11331 (uri (cran-uri "gamlss.dist" version))
11332 (sha256
11333 (base32
11334 "0154pm1f3g77krj0gxh9icz207pshdrxihb6gjv1k5aph8y69zc7"))))
11335 (properties `((upstream-name . "gamlss.dist")))
11336 (build-system r-build-system)
11337 (propagated-inputs `(("r-mass" ,r-mass)))
11338 (home-page "http://www.gamlss.org/")
11339 (synopsis "Distributions for Generalized Additive Models for location scale and shape")
11340 (description
11341 "This package provides a set of distributions which can be used for
11342 modelling the response variables in Generalized Additive Models for Location
11343 Scale and Shape. The distributions can be continuous, discrete or mixed
11344 distributions. Extra distributions can be created, by transforming, any
11345 continuous distribution defined on the real line, to a distribution defined on
11346 ranges 0 to infinity or 0 to 1, by using a @code{log} or a @code{logit}
11347 transformation, respectively.")
11348 ;; Either version of the GPL.
11349 (license (list license:gpl2 license:gpl3))))
11350
11351 ;; This package includes JavaScript files, which are not minified. When
11352 ;; upgrading please check that there are no new minified JavaScript files.
11353 (define-public r-shinyjs
11354 (package
11355 (name "r-shinyjs")
11356 (version "1.0")
11357 (source
11358 (origin
11359 (method url-fetch)
11360 (uri (cran-uri "shinyjs" version))
11361 (sha256
11362 (base32
11363 "113zpijri0l80rlgrvqn6bxk0sdqgl79h7yhja2p76f9dc9i2sr8"))))
11364 (build-system r-build-system)
11365 (propagated-inputs
11366 `(("r-digest" ,r-digest)
11367 ("r-htmltools" ,r-htmltools)
11368 ("r-jsonlite" ,r-jsonlite)
11369 ("r-shiny" ,r-shiny)))
11370 (home-page "https://deanattali.com/shinyjs")
11371 (synopsis "Improve the user experience of your Shiny apps")
11372 (description
11373 "Perform common useful JavaScript operations in Shiny apps that will
11374 greatly improve your apps without having to know any JavaScript. Examples
11375 include: hiding an element, disabling an input, resetting an input back to its
11376 original value, delaying code execution by a few seconds, and many more useful
11377 functions for both the end user and the developer. Shinyjs can also be used
11378 to easily call your own custom JavaScript functions from R.")
11379 (license license:agpl3+)))
11380
11381 ;; This package includes minified JavaScript files. When upgrading please
11382 ;; check that there are no new minified JavaScript files.
11383 (define-public r-colourpicker
11384 (package
11385 (name "r-colourpicker")
11386 (version "1.0")
11387 (source
11388 (origin
11389 (method url-fetch)
11390 (uri (cran-uri "colourpicker" version))
11391 (sha256
11392 (base32
11393 "0z3v2083g7kwdp21x9s2n1crfh24agpdq3yxkcdzc2awn2pwpnpi"))))
11394 (build-system r-build-system)
11395 (arguments
11396 `(#:modules ((guix build utils)
11397 (guix build r-build-system)
11398 (srfi srfi-1)
11399 (ice-9 popen))
11400 #:phases
11401 (modify-phases %standard-phases
11402 (add-after 'unpack 'process-javascript
11403 (lambda* (#:key inputs #:allow-other-keys)
11404 (with-directory-excursion "inst"
11405 (call-with-values
11406 (lambda ()
11407 (unzip2
11408 `((,(assoc-ref inputs "js-salvattore")
11409 "examples/colourInput/www/salvattore.min.js")
11410 (,(assoc-ref inputs "js-jquery")
11411 "htmlwidgets/lib/jquery/jquery.min.js")
11412 ("www/shared/colourpicker/js/colourpicker.js"
11413 "www/shared/colourpicker/js/colourpicker.min.js"))))
11414 (lambda (sources targets)
11415 (for-each (lambda (source target)
11416 (format #t "Processing ~a --> ~a~%"
11417 source target)
11418 (delete-file target)
11419 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
11420 (call-with-output-file target
11421 (lambda (port)
11422 (dump-port minified port)))))
11423 sources targets))))
11424 #t)))))
11425 (propagated-inputs
11426 `(("r-ggplot2" ,r-ggplot2)
11427 ("r-htmltools" ,r-htmltools)
11428 ("r-htmlwidgets" ,r-htmlwidgets)
11429 ("r-jsonlite" ,r-jsonlite)
11430 ("r-miniui" ,r-miniui)
11431 ("r-shiny" ,r-shiny)
11432 ("r-shinyjs" ,r-shinyjs)))
11433 (native-inputs
11434 `(("uglify-js" ,uglify-js)
11435 ("js-jquery"
11436 ,(origin
11437 (method url-fetch)
11438 (uri "https://code.jquery.com/jquery-3.3.1.js")
11439 (sha256
11440 (base32
11441 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))
11442 ("js-salvattore"
11443 ,(origin
11444 (method url-fetch)
11445 (uri "https://raw.githubusercontent.com/rnmp/salvattore/v1.0.9/dist/salvattore.js")
11446 (sha256
11447 (base32
11448 "0lfrbx7l9w5x89jpc6njmd0pk7h8fpvg537vklai2vf7b1r2nnk5"))))))
11449 (home-page "https://github.com/daattali/colourpicker")
11450 (synopsis "Color picker tool for Shiny and for selecting colors in plots")
11451 (description
11452 "This package provides a color picker that can be used as an input in
11453 Shiny apps or Rmarkdown documents. The color picker supports alpha opacity,
11454 custom color palettes, and many more options. A plot color helper tool is
11455 available as an RStudio Addin, which helps you pick colors to use in your
11456 plots. A more generic color picker RStudio Addin is also provided to let you
11457 select colors to use in your R code.")
11458 (license license:expat)))
11459
11460 (define-public r-ggextra
11461 (package
11462 (name "r-ggextra")
11463 (version "0.8")
11464 (source
11465 (origin
11466 (method url-fetch)
11467 (uri (cran-uri "ggExtra" version))
11468 (sha256
11469 (base32
11470 "1m5zpn3l3p1y3d2692gyz50m63d58m2a3b7zb595kvcffdx2qr5b"))))
11471 (properties `((upstream-name . "ggExtra")))
11472 (build-system r-build-system)
11473 (propagated-inputs
11474 `(("r-colourpicker" ,r-colourpicker)
11475 ("r-ggplot2" ,r-ggplot2)
11476 ("r-gtable" ,r-gtable)
11477 ("r-miniui" ,r-miniui)
11478 ("r-scales" ,r-scales)
11479 ("r-shiny" ,r-shiny)
11480 ("r-shinyjs" ,r-shinyjs)))
11481 (home-page "https://github.com/daattali/ggExtra")
11482 (synopsis "Marginal histograms for ggplot2 and other enhancements")
11483 (description
11484 "This package is a collection of functions and layers to enhance ggplot2.
11485 The flagship function is @code{ggMarginal()}, which can be used to add
11486 marginal histograms/boxplots/density plots to ggplot2 scatterplots.")
11487 (license license:expat)))
11488
11489 (define-public r-minpack-lm
11490 (package
11491 (name "r-minpack-lm")
11492 (version "1.2-1")
11493 (source
11494 (origin
11495 (method url-fetch)
11496 (uri (cran-uri "minpack.lm" version))
11497 (sha256
11498 (base32
11499 "18ym2pdql5vzngc7q5gn66d153hrfrnd8ilv8yh6vd7j7sx7vjql"))))
11500 (properties `((upstream-name . "minpack.lm")))
11501 (build-system r-build-system)
11502 (native-inputs `(("gfortran" ,gfortran)))
11503 (home-page "https://cran.r-project.org/web/packages/minpack.lm")
11504 (synopsis "Levenberg-Marquardt Nonlinear Least-Squares algorithm")
11505 (description
11506 "The @code{nls.lm} function provides an R interface to @code{lmder} and
11507 @code{lmdif} from the MINPACK library, for solving nonlinear least-squares
11508 problems by a modification of the Levenberg-Marquardt algorithm, with support
11509 for lower and upper parameter bounds. The implementation can be used via
11510 @code{nls}-like calls using the @code{nlsLM} function.")
11511 (license license:gpl3)))
11512
11513 (define-public r-moments
11514 (package
11515 (name "r-moments")
11516 (version "0.14")
11517 (source
11518 (origin
11519 (method url-fetch)
11520 (uri (cran-uri "moments" version))
11521 (sha256
11522 (base32
11523 "0f9y58w1hxcz4bqivirx25ywlmc80gbi6dfx5cnhkpdg1pk82fra"))))
11524 (build-system r-build-system)
11525 (home-page "https://cran.r-project.org/web/packages/moments")
11526 (synopsis "Moments, cumulants, skewness, kurtosis and related tests")
11527 (description
11528 "This package provides functions to calculate: moments, Pearson's
11529 kurtosis, Geary's kurtosis and skewness; it also includes tests related to
11530 them (Anscombe-Glynn, D'Agostino, Bonett-Seier).")
11531 (license license:gpl2+)))
11532
11533 (define-public r-msir
11534 (package
11535 (name "r-msir")
11536 (version "1.3.2")
11537 (source
11538 (origin
11539 (method url-fetch)
11540 (uri (cran-uri "msir" version))
11541 (sha256
11542 (base32
11543 "0pvc3q162vqq3k39nni732x05zzfz4y9y2zf56d83185ypszv9kb"))))
11544 (build-system r-build-system)
11545 (propagated-inputs
11546 `(("r-mclust" ,r-mclust)))
11547 (home-page "https://cran.r-project.org/web/packages/msir")
11548 (synopsis "Model-based sliced inverse regression")
11549 (description
11550 "This is an R package for dimension reduction based on finite Gaussian
11551 mixture modeling of inverse regression.")
11552 (license license:gpl2+)))
11553
11554 (define-public r-pbivnorm
11555 (package
11556 (name "r-pbivnorm")
11557 (version "0.6.0")
11558 (source
11559 (origin
11560 (method url-fetch)
11561 (uri (cran-uri "pbivnorm" version))
11562 (sha256
11563 (base32
11564 "05jzrjqxzbcf6z245hlk7sjxiszv9paadaaimvcx5y5qgi87vhq7"))))
11565 (build-system r-build-system)
11566 (native-inputs `(("gfortran" ,gfortran)))
11567 (home-page "https://github.com/brentonk/pbivnorm")
11568 (synopsis "Vectorized bivariate normal CDF")
11569 (description
11570 "This package provides a vectorized R function for calculating
11571 probabilities from a standard bivariate normal CDF.")
11572 (license license:gpl2+)))
11573
11574 (define-public r-lavaan
11575 (package
11576 (name "r-lavaan")
11577 (version "0.6-3")
11578 (source
11579 (origin
11580 (method url-fetch)
11581 (uri (cran-uri "lavaan" version))
11582 (sha256
11583 (base32
11584 "0hw856kv11zqn6nd4216rh19i6xbnc1rh044r7jvvxkhzgbqkyxz"))))
11585 (build-system r-build-system)
11586 (propagated-inputs
11587 `(("r-mass" ,r-mass)
11588 ("r-mnormt" ,r-mnormt)
11589 ("r-numderiv" ,r-numderiv)
11590 ("r-pbivnorm" ,r-pbivnorm)))
11591 (home-page "http://lavaan.ugent.be")
11592 (synopsis "Latent variable analysis")
11593 (description
11594 "This package provides tools to fit a variety of latent variable models,
11595 including confirmatory factor analysis, structural equation modeling and
11596 latent growth curve models.")
11597 (license license:gpl2+)))
11598
11599 (define-public r-nonnest2
11600 (package
11601 (name "r-nonnest2")
11602 (version "0.5-2")
11603 (source
11604 (origin
11605 (method url-fetch)
11606 (uri (cran-uri "nonnest2" version))
11607 (sha256
11608 (base32
11609 "1bq44qqmm59j91m0sny4xnqmxqlga4cm48qdsw8xfs3x19xwmxk6"))))
11610 (build-system r-build-system)
11611 (propagated-inputs
11612 `(("r-compquadform" ,r-compquadform)
11613 ("r-lavaan" ,r-lavaan)
11614 ("r-mvtnorm" ,r-mvtnorm)
11615 ("r-sandwich" ,r-sandwich)))
11616 (home-page "https://cran.r-project.org/web/packages/nonnest2/")
11617 (synopsis "Tests of non-nested models")
11618 (description
11619 "This package allows for testing of non-nested models. It includes tests
11620 of model distinguishability and of model fit that can be applied to both
11621 nested and non-nested models. The package also includes functionality to
11622 obtain confidence intervals associated with AIC and BIC.")
11623 ;; Either version of the GPL.
11624 (license (list license:gpl2 license:gpl3))))
11625
11626 (define-public r-penalized
11627 (package
11628 (name "r-penalized")
11629 (version "0.9-51")
11630 (source
11631 (origin
11632 (method url-fetch)
11633 (uri (cran-uri "penalized" version))
11634 (sha256
11635 (base32
11636 "1zcrwa93mc27qj3g4ayc2k895r6g8q0g6qb2azmvj7wqk750va7a"))))
11637 (build-system r-build-system)
11638 (propagated-inputs
11639 `(("r-rcpp" ,r-rcpp)
11640 ("r-rcpparmadillo" ,r-rcpparmadillo)
11641 ("r-survival" ,r-survival)))
11642 (home-page "https://cran.r-project.org/web/packages/penalized/")
11643 (synopsis "Penalized estimation in GLMs and in the Cox model")
11644 (description
11645 "This package provides tools for fitting possibly high dimensional
11646 penalized regression models. The penalty structure can be any combination of
11647 an L1 penalty (lasso and fused lasso), an L2 penalty (ridge) and a positivity
11648 constraint on the regression coefficients. The supported regression models
11649 are linear, logistic and Poisson regression and the Cox Proportional Hazards
11650 model. Cross-validation routines allow optimization of the tuning
11651 parameters.")
11652 (license license:gpl2+)))
11653
11654 (define-public r-zim
11655 (package
11656 (name "r-zim")
11657 (version "1.1.0")
11658 (source
11659 (origin
11660 (method url-fetch)
11661 (uri (cran-uri "ZIM" version))
11662 (sha256
11663 (base32
11664 "0scyfjn4ilsvha3x41c3b8bcfi31hlhwm77wn2a8hj5dsvnnmzig"))))
11665 (properties `((upstream-name . "ZIM")))
11666 (build-system r-build-system)
11667 (propagated-inputs `(("r-mass" ,r-mass)))
11668 (home-page "https://github.com/biostatstudio/ZIM")
11669 (synopsis "Zero-inflated models (ZIM) for count time series with excess zeros")
11670 (description
11671 "Analyze count time series with excess zeros. Two types of statistical
11672 models are supported: Markov regression and state-space models. They are also
11673 known as observation-driven and parameter-driven models respectively in the
11674 time series literature. The functions used for Markov regression or
11675 observation-driven models can also be used to fit ordinary regression models
11676 with independent data under the zero-inflated Poisson (ZIP) or zero-inflated
11677 negative binomial (ZINB) assumption. The package also contains miscellaneous
11678 functions to compute density, distribution, quantile, and generate random
11679 numbers from ZIP and ZINB distributions.")
11680 (license license:gpl3)))
11681
11682 (define-public r-nor1mix
11683 (package
11684 (name "r-nor1mix")
11685 (version "1.2-3")
11686 (source
11687 (origin
11688 (method url-fetch)
11689 (uri (cran-uri "nor1mix" version))
11690 (sha256
11691 (base32
11692 "1bvk888qml9qr7q703s7qzgm0sqfchcjdjqwqllm5vrjx0cnapj3"))))
11693 (build-system r-build-system)
11694 (home-page "https://cran.r-project.org/web/packages/nor1mix/")
11695 (synopsis "Normal (1-d) mixture models")
11696 (description
11697 "This package provides S3 classes and methods for one-dimensional normal
11698 mixture models, for, e.g., density estimation or clustering algorithms
11699 research and teaching; it provides the widely used Marron-Wand densities. It
11700 also provides tools for efficient random number generation and graphics.")
11701 (license license:gpl2+)))
11702
11703 (define-public r-beanplot
11704 (package
11705 (name "r-beanplot")
11706 (version "1.2")
11707 (source
11708 (origin
11709 (method url-fetch)
11710 (uri (cran-uri "beanplot" version))
11711 (sha256
11712 (base32
11713 "0wmkr704fl8kdxkjwmaxw2a2h5dwzfgsgpncnk2p2wd4768jknj9"))))
11714 (build-system r-build-system)
11715 (home-page "https://cran.r-project.org/web/packages/beanplot/")
11716 (synopsis "Visualization via beanplots")
11717 (description
11718 "This package provides beanplots, an alternative to
11719 boxplot/stripchart/violin plots. It can be used to plot univariate comparison
11720 graphs.")
11721 (license license:gpl2)))
11722
11723 (define-public r-pbdzmq
11724 (package
11725 (name "r-pbdzmq")
11726 (version "0.3-3")
11727 (source
11728 (origin
11729 (method url-fetch)
11730 (uri (cran-uri "pbdZMQ" version))
11731 (sha256
11732 (base32
11733 "1jkfcfhspvqra7vbllrvkz3jx8j7d0ang6zzcdjgpb7200sc29mf"))))
11734 (properties `((upstream-name . "pbdZMQ")))
11735 (build-system r-build-system)
11736 (inputs
11737 `(("zeromq" ,zeromq)
11738 ("zlib" ,zlib)))
11739 (native-inputs
11740 `(("pkg-config" ,pkg-config)))
11741 (home-page "https://pbdr.org/")
11742 (synopsis "R interface to ZeroMQ")
11743 (description
11744 "ZeroMQ is a well-known library for high-performance asynchronous
11745 messaging in scalable, distributed applications. This package provides high
11746 level R wrapper functions to easily utilize ZeroMQ. The main focus is on
11747 interactive client/server programming frameworks. A few wrapper functions
11748 compatible with @code{rzmq} are also provided.")
11749 (license license:gpl3)))
11750
11751 (define-public r-repr
11752 (package
11753 (name "r-repr")
11754 (version "1.0.0")
11755 (source
11756 (origin
11757 (method url-fetch)
11758 (uri (cran-uri "repr" version))
11759 (sha256
11760 (base32
11761 "0j8z4sl67fgnbywkhgg0bns68mbgf9iqnw4qiym2rjy1b08fpclq"))))
11762 (build-system r-build-system)
11763 (propagated-inputs
11764 `(("r-base64enc" ,r-base64enc)
11765 ("r-htmltools" ,r-htmltools)
11766 ("r-jsonlite" ,r-jsonlite)
11767 ("r-pillar" ,r-pillar)))
11768 (home-page "https://cran.r-project.org/web/packages/repr/")
11769 (synopsis "Serializable representations")
11770 (description
11771 "This package provides string and binary representations of objects for
11772 several formats and MIME types.")
11773 (license license:gpl3)))
11774
11775 (define-public r-irdisplay
11776 (package
11777 (name "r-irdisplay")
11778 (version "0.7.0")
11779 (source
11780 (origin
11781 (method url-fetch)
11782 (uri (cran-uri "IRdisplay" version))
11783 (sha256
11784 (base32
11785 "12chk53nf4zckgc4yl7gbvd7m5dvli52inp5b3f0zvcjvfncksli"))))
11786 (properties `((upstream-name . "IRdisplay")))
11787 (build-system r-build-system)
11788 (propagated-inputs
11789 `(("r-repr" ,r-repr)))
11790 (home-page "https://cran.r-project.org/web/packages/IRdisplay/")
11791 (synopsis "Jupyter display machinery")
11792 (description
11793 "This package provides an interface to the rich display capabilities of
11794 Jupyter front-ends (e.g. Jupyter Notebook). It is designed to be used from a
11795 running IRkernel session.")
11796 (license license:expat)))
11797
11798 (define-public r-irkernel
11799 (package
11800 (name "r-irkernel")
11801 (version "1.0.1")
11802 (source
11803 (origin
11804 (method url-fetch)
11805 (uri (cran-uri "IRkernel" version))
11806 (sha256
11807 (base32
11808 "1gij59b068qp7sbn9d0b9ghmnhfks15a9anj7bp26acv0yvdsg3s"))))
11809 (properties `((upstream-name . "IRkernel")))
11810 (build-system r-build-system)
11811 (arguments
11812 `(#:phases
11813 (modify-phases %standard-phases
11814 (add-after 'install 'install-kernelspec
11815 (lambda* (#:key outputs #:allow-other-keys)
11816 (let ((out (assoc-ref outputs "out")))
11817 (setenv "HOME" "/tmp")
11818 (invoke "jupyter" "kernelspec" "install"
11819 "--name" "ir"
11820 "--prefix" out
11821 (string-append out "/site-library/IRkernel/kernelspec"))
11822 #t))))))
11823 (inputs
11824 `(("jupyter" ,jupyter)))
11825 (propagated-inputs
11826 `(("r-crayon" ,r-crayon)
11827 ("r-digest" ,r-digest)
11828 ("r-evaluate" ,r-evaluate)
11829 ("r-irdisplay" ,r-irdisplay)
11830 ("r-jsonlite" ,r-jsonlite)
11831 ("r-pbdzmq" ,r-pbdzmq)
11832 ("r-repr" ,r-repr)
11833 ("r-uuid" ,r-uuid)))
11834 (home-page "https://cran.r-project.org/web/packages/IRkernel/")
11835 (synopsis "Native R kernel for Jupyter")
11836 (description
11837 "The R kernel for the Jupyter environment executes R code which the
11838 front-end (Jupyter Notebook or other front-ends) submits to the kernel via the
11839 network.")
11840 (license license:expat)))
11841
11842 (define-public r-gmodels
11843 (package
11844 (name "r-gmodels")
11845 (version "2.18.1")
11846 (source
11847 (origin
11848 (method url-fetch)
11849 (uri (cran-uri "gmodels" version))
11850 (sha256
11851 (base32
11852 "0s8kd8krqk4kwv2zqxpsfy3w8qdwf5naf4b5l383vidq9sil0qb2"))))
11853 (build-system r-build-system)
11854 (propagated-inputs
11855 `(("r-gdata" ,r-gdata)
11856 ("r-mass" ,r-mass)))
11857 (home-page "https://cran.r-project.org/web/packages/gmodels/")
11858 (synopsis "Various R programming tools for model fitting")
11859 (description
11860 "This package provides various R programming tools for model fitting.")
11861 (license license:gpl2)))
11862
11863 (define-public r-apcluster
11864 (package
11865 (name "r-apcluster")
11866 (version "1.4.7")
11867 (source
11868 (origin
11869 (method url-fetch)
11870 (uri (cran-uri "apcluster" version))
11871 (sha256
11872 (base32
11873 "188hdfmwjjx3aic599nwmkzjqm9j9jighi5bly6qd43c1vj6ih2s"))))
11874 (build-system r-build-system)
11875 (propagated-inputs
11876 `(("r-matrix" ,r-matrix)
11877 ("r-rcpp" ,r-rcpp)))
11878 (home-page "https://cran.r-project.org/web/packages/apcluster/")
11879 (synopsis "Affinity propagation clustering")
11880 (description
11881 "This package implements affinity propagation clustering introduced by
11882 Frey and Dueck (2007). The package further provides leveraged affinity
11883 propagation and an algorithm for exemplar-based agglomerative clustering that
11884 can also be used to join clusters obtained from affinity propagation. Various
11885 plotting functions are available for analyzing clustering results.")
11886 (license license:gpl2+)))
11887
11888 (define-public r-valr
11889 (package
11890 (name "r-valr")
11891 (version "0.5.0")
11892 (source
11893 (origin
11894 (method url-fetch)
11895 (uri (cran-uri "valr" version))
11896 (sha256
11897 (base32
11898 "14jhrwkiwmha3vlmm7b50n2xxyizj6ddmy89gb20mpzq7qhz1ika"))))
11899 (build-system r-build-system)
11900 (propagated-inputs
11901 `(("r-broom" ,r-broom)
11902 ("r-dplyr" ,r-dplyr)
11903 ("r-ggplot2" ,r-ggplot2)
11904 ("r-rcpp" ,r-rcpp)
11905 ("r-readr" ,r-readr)
11906 ("r-rlang" ,r-rlang)
11907 ("r-stringr" ,r-stringr)
11908 ("r-tibble" ,r-tibble)))
11909 (home-page "http://github.com/rnabioco/valr")
11910 (synopsis "Genome interval arithmetic in R")
11911 (description
11912 "This package enables you to read and manipulate genome intervals and
11913 signals. It provides functionality similar to command-line tool suites within
11914 R, enabling interactive analysis and visualization of genome-scale data.")
11915 (license license:expat)))
11916
11917 (define-public r-rematch2
11918 (package
11919 (name "r-rematch2")
11920 (version "2.0.1")
11921 (source
11922 (origin
11923 (method url-fetch)
11924 (uri (cran-uri "rematch2" version))
11925 (sha256
11926 (base32
11927 "16k0i5p7fa3qfxv59ijyn638wpz8n4jrkrnilqmh5g9l8f8bn4h6"))))
11928 (build-system r-build-system)
11929 (propagated-inputs
11930 `(("r-tibble" ,r-tibble)))
11931 (home-page "https://github.com/r-lib/rematch2")
11932 (synopsis "Tidy output from regular expression matching")
11933 (description
11934 "This package provides wrappers on @code{regexpr} and @code{gregexpr} to
11935 return the match results in tidy data frames.")
11936 (license license:expat)))
11937
11938 (define-public r-picante
11939 (package
11940 (name "r-picante")
11941 (version "1.8")
11942 (source
11943 (origin
11944 (method url-fetch)
11945 (uri (cran-uri "picante" version))
11946 (sha256
11947 (base32
11948 "1bcq2j7fs89c2jib68qq6la67rxyg9raryf162mwvjakpf6k19l1"))))
11949 (build-system r-build-system)
11950 (propagated-inputs
11951 `(("r-ape" ,r-ape)
11952 ("r-nlme" ,r-nlme)
11953 ("r-vegan" ,r-vegan)))
11954 (home-page "https://cran.r-project.org/web/packages/picante/")
11955 (synopsis "Integrating phylogenies and ecology")
11956 (description
11957 "This package provides functions for phylocom integration, community
11958 analyses, null-models, traits and evolution. It implements numerous
11959 ecophylogenetic approaches including measures of community phylogenetic and
11960 trait diversity, phylogenetic signal, estimation of trait values for
11961 unobserved taxa, null models for community and phylogeny randomizations, and
11962 utility functions for data input/output and phylogeny plotting. A full
11963 description of package functionality and methods are provided by Kembel et
11964 al. (2010).")
11965 (license license:gpl2)))
11966
11967 (define-public r-reinforcelearn
11968 (package
11969 (name "r-reinforcelearn")
11970 (version "0.2.1")
11971 (source
11972 (origin
11973 (method url-fetch)
11974 (uri (cran-uri "reinforcelearn" version))
11975 (sha256
11976 (base32
11977 "176z2q69p24i29a8sh19xxn2zl3h1z2ixdssr5i6m4yvkvdrvv3b"))))
11978 (build-system r-build-system)
11979 (propagated-inputs
11980 `(("r-checkmate" ,r-checkmate)
11981 ("r-nnet" ,r-nnet)
11982 ("r-purrr" ,r-purrr)
11983 ("r-r6" ,r-r6)))
11984 (home-page "https://markusdumke.github.io/reinforcelearn")
11985 (synopsis "Reinforcement learning")
11986 (description
11987 "This package implements reinforcement learning environments and
11988 algorithms as described in Sutton & Barto (1998). The Q-Learning algorithm
11989 can be used with function approximation, eligibility traces (Singh & Sutton,
11990 1996) and experience replay (Mnih et al., 2013).")
11991 (license license:expat)))
11992
11993 (define-public r-lemon
11994 (package
11995 (name "r-lemon")
11996 (version "0.4.3")
11997 (source
11998 (origin
11999 (method url-fetch)
12000 (uri (cran-uri "lemon" version))
12001 (sha256
12002 (base32
12003 "0wsn5bfg10wq4dnrgpyraz2bzx9p19c7hf1pwj3h4zmpqfgsdbpw"))))
12004 (build-system r-build-system)
12005 (propagated-inputs
12006 `(("r-ggplot2" ,r-ggplot2)
12007 ("r-gridextra" ,r-gridextra)
12008 ("r-gtable" ,r-gtable)
12009 ("r-knitr" ,r-knitr)
12010 ("r-lattice" ,r-lattice)
12011 ("r-plyr" ,r-plyr)
12012 ("r-scales" ,r-scales)))
12013 (home-page "https://github.com/stefanedwards/lemon")
12014 (synopsis "Freshen up your ggplot2 plots")
12015 (description
12016 "This package provides functions for working with legends and axis lines
12017 of ggplot2, facets that repeat axis lines on all panels, and some knitr
12018 extensions.")
12019 (license license:gpl3)))
12020
12021 (define-public r-wgaim
12022 (package
12023 (name "r-wgaim")
12024 (version "1.4-11")
12025 (source
12026 (origin
12027 (method url-fetch)
12028 (uri (cran-uri "wgaim" version))
12029 (sha256
12030 (base32
12031 "1jjyp100dcjjczp61xlvhmy48ynniqcys535vzbgswhr7fvijymg"))))
12032 (build-system r-build-system)
12033 (propagated-inputs
12034 `(("r-lattice" ,r-lattice)
12035 ("r-qtl" ,r-qtl)))
12036 (home-page "https://cran.r-project.org/web/packages/wgaim")
12037 (synopsis "Whole genome average interval mapping for QTL detection")
12038 (description
12039 "This package integrates sophisticated mixed modelling methods with a
12040 whole genome approach to detecting significant QTL in linkage maps.")
12041 (license license:gpl2+)))
12042
12043 (define-public r-bedr
12044 (package
12045 (name "r-bedr")
12046 (version "1.0.7")
12047 (source
12048 (origin
12049 (method url-fetch)
12050 (uri (cran-uri "bedr" version))
12051 (sha256
12052 (base32
12053 "0zpqvyjgwyqawxm8qrhcv8zq2b3yxgcqkkc87br29yrl7sjb8h6j"))))
12054 (build-system r-build-system)
12055 (propagated-inputs
12056 `(("r-data-table" ,r-data-table)
12057 ("r-r-utils" ,r-r-utils)
12058 ("r-testthat" ,r-testthat)
12059 ("r-venndiagram" ,r-venndiagram)
12060 ("r-yaml" ,r-yaml)
12061 ("bedops" ,bedops)
12062 ("bedtools" ,bedtools)
12063 ("htslib" ,htslib))) ; for tabix
12064 (native-inputs
12065 `(("r-knitr" ,r-knitr))) ; for vignettes
12066 (home-page "https://cran.r-project.org/web/packages/bedr")
12067 (synopsis "Genomic region processing")
12068 (description
12069 "This package is for genomic regions processing using command line tools
12070 such as BEDTools, BEDOPS and Tabix. These tools offer scalable and efficient
12071 utilities to perform genome arithmetic e.g indexing, formatting and merging.
12072 The bedr package's API enhances access to these tools as well as offers
12073 additional utilities for genomic regions processing.")
12074 (license license:gpl2)))
12075
12076 (define-public r-partitions
12077 (package
12078 (name "r-partitions")
12079 (version "1.9-19")
12080 (source
12081 (origin
12082 (method url-fetch)
12083 (uri (cran-uri "partitions" version))
12084 (sha256
12085 (base32
12086 "1pklfnjdc094c8nzkqcdvqzdh8v3p5n8jbg4pf9678iw648saiyx"))))
12087 (build-system r-build-system)
12088 (propagated-inputs
12089 `(("r-gmp" ,r-gmp)
12090 ("r-polynom" ,r-polynom)))
12091 (home-page "https://cran.r-project.org/web/packages/partitions")
12092 (synopsis "Additive partitions of integers")
12093 (description
12094 "This package provides tools to enumerates the partitions, unequal
12095 partitions, and restricted partitions of an integer; the three corresponding
12096 partition functions are also given.")
12097 ;; Any version of the GPL
12098 (license license:gpl2+)))
12099
12100 (define-public r-brobdingnag
12101 (package
12102 (name "r-brobdingnag")
12103 (version "1.2-6")
12104 (source
12105 (origin
12106 (method url-fetch)
12107 (uri (cran-uri "Brobdingnag" version))
12108 (sha256
12109 (base32
12110 "1m3ajvcksqfck5l5hj5xiflj4ry6d896ybv4f0xxks8chgnwmv0r"))))
12111 (properties `((upstream-name . "Brobdingnag")))
12112 (build-system r-build-system)
12113 (home-page "https://github.com/RobinHankin/Brobdingnag.git")
12114 (synopsis "Very large numbers in R")
12115 (description
12116 "This package handles very large numbers in R. Real numbers are held
12117 using their natural logarithms, plus a logical flag indicating sign. The
12118 package includes a vignette that gives a step-by-step introduction to using S4
12119 methods.")
12120 ;; Any version of the GPL
12121 (license license:gpl2+)))
12122
12123 (define-public r-untb
12124 (package
12125 (name "r-untb")
12126 (version "1.7-4")
12127 (source
12128 (origin
12129 (method url-fetch)
12130 (uri (cran-uri "untb" version))
12131 (sha256
12132 (base32
12133 "1i7m4vfslsix98dwx4jlrsldm7fhhfp25gr7aapcxqxms7ryaby6"))))
12134 (build-system r-build-system)
12135 (propagated-inputs
12136 `(("r-brobdingnag" ,r-brobdingnag)
12137 ("r-partitions" ,r-partitions)
12138 ("r-polynom" ,r-polynom)))
12139 (home-page "https://github.com/RobinHankin/untb.git")
12140 (synopsis "Ecological drift under the UNTB")
12141 (description
12142 "This package provides numerical simulations, and visualizations, of
12143 Hubbell's @dfn{Unified Neutral Theory of Biodiversity} (UNTB).")
12144 (license license:gpl2+)))
12145
12146 (define-public r-stepwise
12147 (package
12148 (name "r-stepwise")
12149 (version "0.3")
12150 (source
12151 (origin
12152 (method url-fetch)
12153 (uri (cran-uri "stepwise" version))
12154 (sha256
12155 (base32
12156 "1lbx1bxwkf9dw6q46w40pp7h5nkxgghmx8rkpaymm6iybc7gyir2"))))
12157 (build-system r-build-system)
12158 (home-page "http://stat.sfu.ca/statgen/research/stepwise.html")
12159 (synopsis "Stepwise detection of recombination breakpoints")
12160 (description
12161 "This package provides a stepwise approach to identifying recombination
12162 breakpoints in a genomic sequence alignment.")
12163 (license license:gpl2+)))
12164
12165 (define-public r-snpmaxsel
12166 (package
12167 (name "r-snpmaxsel")
12168 (version "1.0-3")
12169 (source
12170 (origin
12171 (method url-fetch)
12172 (uri (cran-uri "SNPmaxsel" version))
12173 (sha256
12174 (base32
12175 "0pjvixwqzjd3jwccc8yqq9c76afvbmfq0z1w0cwyj8bblrjpx13z"))))
12176 (properties `((upstream-name . "SNPmaxsel")))
12177 (build-system r-build-system)
12178 (propagated-inputs
12179 `(("r-combinat" ,r-combinat)
12180 ("r-mvtnorm" ,r-mvtnorm)))
12181 (home-page "https://cran.r-project.org/web/packages/SNPmaxsel/index.html")
12182 (synopsis "Maximally selected statistics for SNP data")
12183 (description
12184 "This package implements asymptotic methods related to maximally selected
12185 statistics, with applications to @dfn{single-nucleotide polymorphism} (SNP)
12186 data.")
12187 (license license:gpl2+)))
12188
12189 (define-public r-acsnminer
12190 (package
12191 (name "r-acsnminer")
12192 (version "0.16.8.25")
12193 (source (origin
12194 (method url-fetch)
12195 (uri (cran-uri "ACSNMineR" version))
12196 (sha256
12197 (base32
12198 "0gh604s8qall6zfjlwcg2ilxjvz08dplf9k5g47idhv43scm748l"))))
12199 (properties `((upstream-name . "ACSNMineR")))
12200 (build-system r-build-system)
12201 (propagated-inputs
12202 `(("r-ggplot2" ,r-ggplot2)
12203 ("r-gridextra" ,r-gridextra)))
12204 (home-page "https://cran.r-project.org/web/packages/ACSNMineR")
12205 (synopsis "Gene enrichment analysis")
12206 (description
12207 "This package provides tools to compute and represent gene set enrichment
12208 or depletion from your data based on pre-saved maps from the @dfn{Atlas of
12209 Cancer Signalling Networks} (ACSN) or user imported maps. The gene set
12210 enrichment can be run with hypergeometric test or Fisher exact test, and can
12211 use multiple corrections. Visualization of data can be done either by
12212 barplots or heatmaps.")
12213 (license license:gpl2+)))
12214
12215 (define-public r-seqinr
12216 (package
12217 (name "r-seqinr")
12218 (version "3.4-5")
12219 (source
12220 (origin
12221 (method url-fetch)
12222 (uri (cran-uri "seqinr" version))
12223 (sha256
12224 (base32
12225 "17zv0n5cji17izwmwg0jcbxbjl3w5rls91w15svcnlpxjms38ahn"))))
12226 (build-system r-build-system)
12227 (propagated-inputs
12228 `(("r-ade4" ,r-ade4)
12229 ("r-segmented" ,r-segmented)))
12230 (inputs
12231 `(("zlib" ,zlib)))
12232 (home-page "http://seqinr.r-forge.r-project.org/")
12233 (synopsis "Biological sequences retrieval and analysis")
12234 (description
12235 "This package provides tools for exploratory data analysis and data
12236 visualization of biological sequence (DNA and protein) data. It also includes
12237 utilities for sequence data management under the ACNUC system.")
12238 (license license:gpl2+)))
12239
12240 (define-public r-units
12241 (package
12242 (name "r-units")
12243 (version "0.6-3")
12244 (source
12245 (origin
12246 (method url-fetch)
12247 (uri (cran-uri "units" version))
12248 (sha256
12249 (base32
12250 "0kx640h60s3zzkdr302asap7diap6vri6d41scnx507yvkcqiph3"))))
12251 (build-system r-build-system)
12252 (inputs
12253 `(("udunits" ,udunits)))
12254 (propagated-inputs
12255 `(("r-rcpp" ,r-rcpp)))
12256 (home-page "https://github.com/r-quantities/units/")
12257 (synopsis "Measurement Units for R Vectors")
12258 (description
12259 "This package provides support for measurement units in R vectors,
12260 matrices and arrays: automatic propagation, conversion, derivation and
12261 simplification of units; raising errors in case of unit incompatibility. It
12262 is compatible with the @code{POSIXct}, @code{Date} and @code{difftime}
12263 classes.")
12264 (license license:gpl2)))
12265
12266 (define-public r-classint
12267 (package
12268 (name "r-classint")
12269 (version "0.3-3")
12270 (source
12271 (origin
12272 (method url-fetch)
12273 (uri (cran-uri "classInt" version))
12274 (sha256
12275 (base32
12276 "0c2z6shlxa928xa20yl956r06lx20mji3mwipdvmj3f4z5g6hgm9"))))
12277 (properties `((upstream-name . "classInt")))
12278 (build-system r-build-system)
12279 (propagated-inputs
12280 `(("r-class" ,r-class)
12281 ("r-e1071" ,r-e1071)
12282 ("r-kernsmooth" ,r-kernsmooth)))
12283 (native-inputs `(("gfortran" ,gfortran)))
12284 (home-page "https://github.com/r-spatial/classInt/")
12285 (synopsis "Choose univariate class intervals")
12286 (description
12287 "This package provides selected commonly used methods for choosing
12288 univariate class intervals for mapping or other graphics purposes.")
12289 (license license:gpl2+)))
12290
12291 (define-public r-spdata
12292 (package
12293 (name "r-spdata")
12294 (version "0.3.0")
12295 (source
12296 (origin
12297 (method url-fetch)
12298 (uri (cran-uri "spData" version))
12299 (sha256
12300 (base32
12301 "162cqb331ki43jx4r8lpkjpn2l712figd896rnawg9j1jmjyl96y"))))
12302 (properties `((upstream-name . "spData")))
12303 (build-system r-build-system)
12304 (home-page "https://github.com/Nowosad/spData")
12305 (synopsis "Datasets for spatial analysis")
12306 (description
12307 "This a package containing diverse spatial datasets for demonstrating,
12308 benchmarking and teaching spatial data analysis. It includes R data of class
12309 @code{sf}, @code{Spatial}, and @code{nb}. It also contains data stored in a
12310 range of file formats including GeoJSON, ESRI Shapefile and GeoPackage. Some
12311 of the datasets are designed to illustrate specific analysis techniques.
12312 @code{cycle_hire()} and @code{cycle_hire_osm()}, for example, are designed to
12313 illustrate point pattern analysis techniques.")
12314 (license license:cc0)))
12315
12316 (define-public r-learnbayes
12317 (package
12318 (name "r-learnbayes")
12319 (version "2.15.1")
12320 (source
12321 (origin
12322 (method url-fetch)
12323 (uri (cran-uri "LearnBayes" version))
12324 (sha256
12325 (base32
12326 "0ch54v2zz2yyyk0lvn5rfikdmyz1qh9j1wk3585wl8v58mc0h4cv"))))
12327 (properties `((upstream-name . "LearnBayes")))
12328 (build-system r-build-system)
12329 (home-page "https://cran.r-project.org/web/packages/LearnBayes")
12330 (synopsis "Functions for learning Bayesian inference")
12331 (description
12332 "This package provides a collection of functions helpful in learning the
12333 basic tenets of Bayesian statistical inference. It contains functions for
12334 summarizing basic one and two parameter posterior distributions and predictive
12335 distributions. It contains MCMC algorithms for summarizing posterior
12336 distributions defined by the user. It also contains functions for regression
12337 models, hierarchical models, Bayesian tests, and illustrations of Gibbs
12338 sampling.")
12339 (license license:gpl2+)))
12340
12341 (define-public r-deldir
12342 (package
12343 (name "r-deldir")
12344 (version "0.1-16")
12345 (source
12346 (origin
12347 (method url-fetch)
12348 (uri (cran-uri "deldir" version))
12349 (sha256
12350 (base32
12351 "0549kj0hlkdyvm5axsm3np30wg53fm2pxybijzw0avlgsd2y2n2q"))))
12352 (build-system r-build-system)
12353 (native-inputs `(("gfortran" ,gfortran)))
12354 (home-page "https://cran.r-project.org/web/packages/deldir")
12355 (synopsis "Delaunay triangulation and Dirichlet (Voronoi) tessellation")
12356 (description
12357 "This package provides tools for calculating the Delaunay triangulation
12358 and the Dirichlet or Voronoi tessellation (with respect to the entire plane)
12359 of a planar point set. It plots triangulations and tessellations in various
12360 ways, clips tessellations to sub-windows, calculates perimeters of
12361 tessellations, and summarizes information about the tiles of the
12362 tessellation.")
12363 (license license:gpl2+)))
12364
12365 (define-public r-sf
12366 (package
12367 (name "r-sf")
12368 (version "0.7-4")
12369 (source
12370 (origin
12371 (method url-fetch)
12372 (uri (cran-uri "sf" version))
12373 (sha256
12374 (base32
12375 "0vnyr7xyfcl928kbrb1k8l4fkd0cjrfq486g6gxpvy5j0cc2h4i1"))))
12376 (build-system r-build-system)
12377 (inputs
12378 `(("gdal" ,gdal)
12379 ("geos" ,geos)
12380 ("proj" ,proj.4)
12381 ("zlib" ,zlib)))
12382 (propagated-inputs
12383 `(("r-classint" ,r-classint)
12384 ("r-dbi" ,r-dbi)
12385 ("r-magrittr" ,r-magrittr)
12386 ("r-rcpp" ,r-rcpp)
12387 ("r-units" ,r-units)))
12388 (native-inputs `(("pkg-config" ,pkg-config)))
12389 (home-page "https://github.com/r-spatial/sf/")
12390 (synopsis "Simple features for R")
12391 (description
12392 "This package provides support for simple features, a standardized way to
12393 encode spatial vector data. It binds to GDAL for reading and writing data, to
12394 GEOS for geometrical operations, and to PROJ for projection conversions and
12395 datum transformations.")
12396 ;; Either of these licenses
12397 (license (list license:gpl2 license:expat))))
12398
12399 (define-public r-spdep
12400 (package
12401 (name "r-spdep")
12402 (version "1.1-2")
12403 (source
12404 (origin
12405 (method url-fetch)
12406 (uri (cran-uri "spdep" version))
12407 (sha256
12408 (base32
12409 "06mk81kc1ml2wjc8wwwgr0wasjcr4mwrxpfa8vfc373bmnha635s"))))
12410 (build-system r-build-system)
12411 (propagated-inputs
12412 `(("r-boot" ,r-boot)
12413 ("r-coda" ,r-coda)
12414 ("r-deldir" ,r-deldir)
12415 ("r-expm" ,r-expm)
12416 ("r-gmodels" ,r-gmodels)
12417 ("r-learnbayes" ,r-learnbayes)
12418 ("r-mass" ,r-mass)
12419 ("r-matrix" ,r-matrix)
12420 ("r-nlme" ,r-nlme)
12421 ("r-sf" ,r-sf)
12422 ("r-sp" ,r-sp)
12423 ("r-spdata" ,r-spdata)))
12424 (home-page "https://github.com/r-spatial/spdep/")
12425 (synopsis "Spatial dependence: weighting schemes, statistics and models")
12426 (description
12427 "This package provides a collection of functions to create spatial
12428 weights matrix objects from polygon contiguities, from point patterns by
12429 distance and tessellations, for summarizing these objects, and for permitting
12430 their use in spatial data analysis, including regional aggregation by minimum
12431 spanning tree.")
12432 (license license:gpl2+)))
12433
12434 (define-public r-adegenet
12435 (package
12436 (name "r-adegenet")
12437 (version "2.1.1")
12438 (source
12439 (origin
12440 (method url-fetch)
12441 (uri (cran-uri "adegenet" version))
12442 (sha256
12443 (base32
12444 "0ynfblp0hbd3dp3k86fn1wyhqr28lk6hs2bg4q7gyf0sfdfzwhrh"))))
12445 (build-system r-build-system)
12446 (propagated-inputs
12447 `(("r-ade4" ,r-ade4)
12448 ("r-ape" ,r-ape)
12449 ("r-boot" ,r-boot)
12450 ("r-dplyr" ,r-dplyr)
12451 ("r-ggplot2" ,r-ggplot2)
12452 ("r-igraph" ,r-igraph)
12453 ("r-mass" ,r-mass)
12454 ("r-reshape2" ,r-reshape2)
12455 ("r-seqinr" ,r-seqinr)
12456 ("r-shiny" ,r-shiny)
12457 ("r-spdep" ,r-spdep)
12458 ("r-vegan" ,r-vegan)))
12459 (home-page "https://github.com/thibautjombart/adegenet")
12460 (synopsis "Exploratory analysis of genetic and genomic data")
12461 (description
12462 "This package provides a toolset for the exploration of genetic and
12463 genomic data. Adegenet provides formal (S4) classes for storing and handling
12464 various genetic data, including genetic markers with varying ploidy and
12465 hierarchical population structure (@code{genind} class), alleles counts by
12466 populations (@code{genpop}), and genome-wide SNP data (@code{genlight}). It
12467 also implements original multivariate methods (DAPC, sPCA), graphics,
12468 statistical tests, simulation tools, distance and similarity measures, and
12469 several spatial methods. A range of both empirical and simulated datasets is
12470 also provided to illustrate various methods.")
12471 (license license:gpl2+)))
12472
12473 (define-public r-pegas
12474 (package
12475 (name "r-pegas")
12476 (version "0.11")
12477 (source
12478 (origin
12479 (method url-fetch)
12480 (uri (cran-uri "pegas" version))
12481 (sha256
12482 (base32
12483 "0l21bapzbjcvblbvks3jh9rpy9hng1ccd7f0glhqw695lc737bpx"))))
12484 (build-system r-build-system)
12485 (propagated-inputs
12486 `(("r-adegenet" ,r-adegenet)
12487 ("r-ape" ,r-ape)))
12488 (home-page "http://ape-package.ird.fr/pegas.html")
12489 (synopsis "Population and evolutionary genetics analysis system")
12490 (description
12491 "This package provides functions for reading, writing, plotting,
12492 analysing, and manipulating allelic and haplotypic data, including from VCF
12493 files, and for the analysis of population nucleotide sequences and
12494 micro-satellites including coalescent analyses, linkage disequilibrium,
12495 population structure (Fst, Amova) and equilibrium (HWE), haplotype networks,
12496 minimum spanning tree and network, and median-joining networks.")
12497 (license license:gpl2+)))
12498
12499 (define-public r-rmetasim
12500 (package
12501 (name "r-rmetasim")
12502 (version "3.1.7")
12503 (source
12504 (origin
12505 (method url-fetch)
12506 (uri (cran-uri "rmetasim" version))
12507 (sha256
12508 (base32
12509 "0sz4mdprdi6sgkfwfdvh2hr9nxiwq17sw0vggq3cvs7lzb0i6m9r"))))
12510 (build-system r-build-system)
12511 (propagated-inputs
12512 `(("r-ade4" ,r-ade4)
12513 ("r-adegenet" ,r-adegenet)
12514 ("r-gtools" ,r-gtools)
12515 ("r-pegas" ,r-pegas)))
12516 (home-page "https://cran.r-project.org/web/packages/rmetasim")
12517 (synopsis "Individual-based population genetic simulation environment")
12518 (description
12519 "This package provides an interface between R and the metasim simulation
12520 engine. The simulation environment is documented in: Strand, A.(2002),
12521 Metasim 1.0: an individual-based environment for simulating population
12522 genetics of complex population dynamics.")
12523 ;; Any GPL version
12524 (license license:gpl2+)))
12525
12526 (define-public r-genetics
12527 (package
12528 (name "r-genetics")
12529 (version "1.3.8.1.2")
12530 (source
12531 (origin
12532 (method url-fetch)
12533 (uri (cran-uri "genetics" version))
12534 (sha256
12535 (base32
12536 "1v0ylnia6c44v356dsmnkx6054vcxazpzsrdh3yph5ch5vg6gjrh"))))
12537 (build-system r-build-system)
12538 (propagated-inputs
12539 `(("r-combinat" ,r-combinat)
12540 ("r-gdata" ,r-gdata)
12541 ("r-gtools" ,r-gtools)
12542 ("r-mass" ,r-mass)
12543 ("r-mvtnorm" ,r-mvtnorm)))
12544 (home-page "https://cran.r-project.org/web/packages/genetics/")
12545 (synopsis "Population genetics")
12546 (description
12547 "This package provides classes and methods for handling genetic data.
12548 It includes classes to represent genotypes and haplotypes at single markers up
12549 to multiple markers on multiple chromosomes. Function include allele
12550 frequencies, flagging homo/heterozygotes, flagging carriers of certain
12551 alleles, estimating and testing for Hardy-Weinberg disequilibrium, estimating
12552 and testing for linkage disequilibrium, ...")
12553 ;; Any GPL version.
12554 (license license:gpl2+)))
12555
12556 (define-public r-snp-plotter
12557 (package
12558 (name "r-snp-plotter")
12559 (version "0.5.1")
12560 (source
12561 (origin
12562 (method url-fetch)
12563 (uri (cran-uri "snp.plotter" version))
12564 (sha256
12565 (base32
12566 "16apsqvkah5l0d5qcwp3lq2jspkb6n62wzr0wskmj84jblx483vv"))))
12567 (properties `((upstream-name . "snp.plotter")))
12568 (build-system r-build-system)
12569 (propagated-inputs `(("r-genetics" ,r-genetics)))
12570 (home-page "https://cran.r-project.org/web/packages/snp.plotter/")
12571 (synopsis "Plot p-values using single SNP and/or haplotype data")
12572 (description
12573 "This package helps you create plots of p-values using single SNP and/or
12574 haplotype data. Main features of the package include options to display a
12575 @dfn{linkage disequilibrium} (LD) plot and the ability to plot multiple
12576 datasets simultaneously. Plots can be created using global and/or individual
12577 haplotype p-values along with single SNP p-values. Images are created as
12578 either PDF/EPS files.")
12579 (license license:gpl2+)))
12580
12581 (define-public r-polspline
12582 (package
12583 (name "r-polspline")
12584 (version "1.1.14")
12585 (source
12586 (origin
12587 (method url-fetch)
12588 (uri (cran-uri "polspline" version))
12589 (sha256
12590 (base32
12591 "0g4s5nwi13yfs6b169yw8vrs48nvjyc014k2v7ybcxarl8z81va0"))))
12592 (build-system r-build-system)
12593 (native-inputs `(("gfortran" ,gfortran)))
12594 (home-page "https://cran.r-project.org/web/packages/polspline/")
12595 (synopsis "Polynomial spline routines")
12596 (description
12597 "This package provides routines for the polynomial spline fitting
12598 routines hazard regression, hazard estimation with flexible tails, logspline,
12599 lspec, polyclass, and polymars.")
12600 (license license:gpl2+)))
12601
12602 (define-public r-rms
12603 (package
12604 (name "r-rms")
12605 (version "5.1-3.1")
12606 (source
12607 (origin
12608 (method url-fetch)
12609 (uri (cran-uri "rms" version))
12610 (sha256
12611 (base32
12612 "0drbr3g0x5pbxyzy50wnf92rbal8izizrcqslqhg0gsfg9adjih9"))))
12613 (build-system r-build-system)
12614 (propagated-inputs
12615 `(("r-ggplot2" ,r-ggplot2)
12616 ("r-hmisc" ,r-hmisc)
12617 ("r-htmltable" ,r-htmltable)
12618 ("r-htmltools" ,r-htmltools)
12619 ("r-lattice" ,r-lattice)
12620 ("r-multcomp" ,r-multcomp)
12621 ("r-nlme" ,r-nlme)
12622 ("r-polspline" ,r-polspline)
12623 ("r-quantreg" ,r-quantreg)
12624 ("r-rpart" ,r-rpart)
12625 ("r-sparsem" ,r-sparsem)
12626 ("r-survival" ,r-survival)))
12627 (native-inputs `(("gfortran" ,gfortran)))
12628 (home-page "http://biostat.mc.vanderbilt.edu/rms")
12629 (synopsis "Regression modeling strategies")
12630 (description
12631 "This is a package for regression modeling, testing, estimation,
12632 validation, graphics, prediction, and typesetting by storing enhanced model
12633 design attributes in the fit. The rms package is a collection of functions
12634 that assist with and streamline modeling. It also contains functions for
12635 binary and ordinal logistic regression models, ordinal models for continuous Y
12636 with a variety of distribution families, and the Buckley-James multiple
12637 regression model for right-censored responses, and implements penalized
12638 maximum likelihood estimation for logistic and ordinary linear models. The
12639 package works with almost any regression model, but it was especially written
12640 to work with binary or ordinal regression models, Cox regression, accelerated
12641 failure time models, ordinary linear models, the Buckley-James model,
12642 generalized least squares for serially or spatially correlated observations,
12643 generalized linear models, and quantile regression.")
12644 (license license:gpl2+)))
12645
12646 (define-public r-haplo-stats
12647 (package
12648 (name "r-haplo-stats")
12649 (version "1.7.9")
12650 (source
12651 (origin
12652 (method url-fetch)
12653 (uri (cran-uri "haplo.stats" version))
12654 (sha256
12655 (base32
12656 "19kxascqq5qz0zdxx0w837ji207y1z2ggxkl4vmlbay03k2dw2mx"))))
12657 (properties `((upstream-name . "haplo.stats")))
12658 (build-system r-build-system)
12659 (propagated-inputs
12660 `(("r-rms" ,r-rms)))
12661 (native-inputs
12662 `(("r-r-rsp" ,r-r-rsp))) ; for vignettes
12663 (home-page "https://www.mayo.edu/research/labs/statistical-genetics-genetic-epidemiology/software")
12664 (synopsis "Analysis of haplotypes when linkage phase is ambiguous")
12665 (description
12666 "This package provides routines for the analysis of indirectly measured
12667 haplotypes. The statistical methods assume that all subjects are unrelated
12668 and that haplotypes are ambiguous (due to unknown linkage phase of the genetic
12669 markers). The main functions are: @code{haplo.em()}, @code{haplo.glm()},
12670 @code{haplo.score()}, and @code{haplo.power()}; all of which have detailed
12671 examples in the vignette.")
12672 (license license:gpl2+)))
12673
12674 (define-public r-bqtl
12675 (package
12676 (name "r-bqtl")
12677 (version "1.0-32")
12678 (source
12679 (origin
12680 (method url-fetch)
12681 (uri (cran-uri "bqtl" version))
12682 (sha256
12683 (base32
12684 "0jjqgsm9fmvz5nkgz608xfljjpmaf4rs4f7kxvpqn4b1l9s5lhci"))))
12685 (build-system r-build-system)
12686 (native-inputs `(("gfortran" ,gfortran)))
12687 (home-page "http://famprevmed.ucsd.edu/faculty/cberry/bqtl/")
12688 (synopsis "Bayesian QTL mapping toolkit")
12689 (description
12690 "This is a QTL mapping toolkit for inbred crosses and recombinant inbred
12691 lines. It includes maximum likelihood and Bayesian tools.")
12692 (license license:gpl2+)))
12693
12694 (define-public r-ibdreg
12695 (package
12696 (name "r-ibdreg")
12697 (version "0.2.5")
12698 (source
12699 (origin
12700 (method url-fetch)
12701 (uri (cran-uri "ibdreg" version))
12702 (sha256
12703 (base32
12704 "1kaa5q1byi30wzr0mw4w2cv1ssxprzcwf91wrpqwkgcsdy7dkh2g"))))
12705 (build-system r-build-system)
12706 (home-page "https://www.mayo.edu/research/labs/\
12707 statistical-genetics-genetic-epidemiology/software")
12708 (synopsis "Regression methods for IBD linkage with covariates")
12709 (description
12710 "This package provides a method to test genetic linkage with covariates
12711 by regression methods with response IBD sharing for relative pairs. Account
12712 for correlations of IBD statistics and covariates for relative pairs within
12713 the same pedigree.")
12714 (license license:gpl2+)))
12715
12716 (define-public r-dlmap
12717 (package
12718 (name "r-dlmap")
12719 (version "1.13")
12720 (source
12721 (origin
12722 (method url-fetch)
12723 (uri (cran-uri "dlmap" version))
12724 (sha256
12725 (base32
12726 "0s6wlkggkm3qndwyvw72xv1n0mcjb7ss3ajbq2ll6rv30splq0db"))))
12727 (build-system r-build-system)
12728 (propagated-inputs
12729 `(("r-ibdreg" ,r-ibdreg)
12730 ("r-mgcv" ,r-mgcv)
12731 ("r-nlme" ,r-nlme)
12732 ("r-qtl" ,r-qtl)
12733 ("r-wgaim" ,r-wgaim)))
12734 (home-page "https://cran.r-project.org/web/packages/dlmap/")
12735 (synopsis "Detection localization mapping for QTL")
12736 (description
12737 "This is package for QTL mapping in a mixed model framework with separate
12738 detection and localization stages. The first stage detects the number of QTL
12739 on each chromosome based on the genetic variation due to grouped markers on
12740 the chromosome; the second stage uses this information to determine the most
12741 likely QTL positions. The mixed model can accommodate general fixed and
12742 random effects, including spatial effects in field trials and pedigree
12743 effects. It is applicable to backcrosses, doubled haploids, recombinant
12744 inbred lines, F2 intercrosses, and association mapping populations.")
12745 (license license:gpl2)))
12746
12747 (define-public r-ldheatmap
12748 (package
12749 (name "r-ldheatmap")
12750 (version "0.99-5")
12751 (source
12752 (origin
12753 (method url-fetch)
12754 (uri (cran-uri "LDheatmap" version))
12755 (sha256
12756 (base32
12757 "0il3g3n3bzv74lz7dlhyiwc2x2417v6yhx2g47pahxdzqa09kf4s"))))
12758 (properties `((upstream-name . "LDheatmap")))
12759 (build-system r-build-system)
12760 (propagated-inputs
12761 `(("r-genetics" ,r-genetics)
12762 ("r-snpstats" ,r-snpstats)))
12763 (home-page "http://stat.sfu.ca/statgen/research/ldheatmap.html")
12764 (synopsis "Graphical display of pairwise linkage disequilibria between SNPs")
12765 (description
12766 "This package provides tools to produce a graphical display, as a heat
12767 map, of measures of pairwise linkage disequilibria between SNPs. Users may
12768 optionally include the physical locations or genetic map distances of each SNP
12769 on the plot.")
12770 (license license:gpl3)))
12771
12772 (define-public r-hwde
12773 (package
12774 (name "r-hwde")
12775 (version "0.67")
12776 (source
12777 (origin
12778 (method url-fetch)
12779 (uri (cran-uri "hwde" version))
12780 (sha256
12781 (base32
12782 "0wb2f9i5qi7w77ygh8bvydfpr7j5x8dyvnnhdkajaz0wdcpkyaqy"))))
12783 (build-system r-build-system)
12784 (home-page "https://cran.r-project.org/web/packages/hwde/")
12785 (synopsis "Models and tests for departure from Hardy-Weinberg equilibrium")
12786 (description
12787 "This package fits models for genotypic disequilibria, as described in
12788 Huttley and Wilson (2000), Weir (1996) and Weir and Wilson (1986). Contrast
12789 terms are available that account for first order interactions between loci.
12790 It also implements, for a single locus in a single population, a conditional
12791 exact test for Hardy-Weinberg equilibrium.")
12792 (license license:gpl2+)))
12793
12794 (define-public r-tdthap
12795 (package
12796 (name "r-tdthap")
12797 (version "1.1-9")
12798 (source
12799 (origin
12800 (method url-fetch)
12801 (uri (cran-uri "tdthap" version))
12802 (sha256
12803 (base32
12804 "0y01x0hcf0rw06cpn4pk17b0shf4v2c9was7vfs0zhsbq8qcwx7r"))))
12805 (build-system r-build-system)
12806 (home-page "https://cran.r-project.org/web/packages/tdthap/")
12807 (synopsis "TDT tests for extended haplotypes")
12808 (description
12809 "Functions and examples are provided for transmission/disequilibrium
12810 tests for extended marker haplotypes, as in Clayton, D. and Jones, H. (1999)
12811 \"Transmission/disequilibrium tests for extended marker haplotypes\".")
12812 (license license:artistic2.0)))
12813
12814 (define-public r-sparql
12815 (package
12816 (name "r-sparql")
12817 (version "1.16")
12818 (source (origin
12819 (method url-fetch)
12820 (uri (cran-uri "SPARQL" version))
12821 (sha256
12822 (base32
12823 "0gak1q06yyhdmcxb2n3v0h9gr1vqd0viqji52wpw211qp6r6dcrc"))))
12824 (properties `((upstream-name . "SPARQL")))
12825 (build-system r-build-system)
12826 (propagated-inputs
12827 `(("r-rcurl" ,r-rcurl)
12828 ("r-xml" ,r-xml)))
12829 (home-page "https://cran.r-project.org/web/packages/SPARQL")
12830 (synopsis "SPARQL client for R")
12831 (description "This package provides an interface to use SPARQL to pose
12832 SELECT or UPDATE queries to an end-point.")
12833 ;; The only license indication is found in the DESCRIPTION file,
12834 ;; which states GPL-3. So we cannot assume GPLv3+.
12835 (license license:gpl3)))
12836
12837 (define-public r-bookdown
12838 (package
12839 (name "r-bookdown")
12840 (version "0.9")
12841 (source (origin
12842 (method url-fetch)
12843 (uri (cran-uri "bookdown" version))
12844 (sha256
12845 (base32
12846 "0vg1s1w0l9pm95asqb21yf39mfk1nc9rdhmlys9xwr7p7i7rsz32"))))
12847 (build-system r-build-system)
12848 (propagated-inputs
12849 `(("r-htmltools" ,r-htmltools)
12850 ("r-knitr" ,r-knitr)
12851 ("r-rmarkdown" ,r-rmarkdown)
12852 ("r-tinytex" ,r-tinytex)
12853 ("r-yaml" ,r-yaml)
12854 ("r-xfun" ,r-xfun)))
12855 (home-page "https://github.com/rstudio/bookdown")
12856 (synopsis "Authoring books and technical documents with R markdown")
12857 (description "This package provides output formats and utilities for
12858 authoring books and technical documents with R Markdown.")
12859 (license license:gpl3)))
12860
12861 (define-public r-optparse
12862 (package
12863 (name "r-optparse")
12864 (version "1.6.2")
12865 (source
12866 (origin
12867 (method url-fetch)
12868 (uri (cran-uri "optparse" version))
12869 (sha256
12870 (base32
12871 "0zrp6jakjhawrwfri270ym83vj5a7nvjk0w6b41z41ahw2da99dm"))))
12872 (build-system r-build-system)
12873 (propagated-inputs
12874 `(("r-getopt" ,r-getopt)))
12875 (home-page "https://github.com/trevorld/optparse")
12876 (synopsis "Command line option parser")
12877 (description
12878 "This package provides a command line parser inspired by Python's
12879 @code{optparse} library to be used with Rscript to write shebang scripts
12880 that accept short and long options.")
12881 (license license:gpl2+)))
12882
12883 (define-public r-wgcna
12884 (package
12885 (name "r-wgcna")
12886 (version "1.67")
12887 (source
12888 (origin
12889 (method url-fetch)
12890 (uri (cran-uri "WGCNA" version))
12891 (sha256
12892 (base32
12893 "09387w85lxvwr8ax2i2h602b4dgfv4wbvsl9aj1q0b1vfs4rkk69"))))
12894 (properties `((upstream-name . "WGCNA")))
12895 (build-system r-build-system)
12896 (propagated-inputs
12897 `(("r-annotationdbi" ,r-annotationdbi)
12898 ("r-doparallel" ,r-doparallel)
12899 ("r-dynamictreecut" ,r-dynamictreecut)
12900 ("r-fastcluster" ,r-fastcluster)
12901 ("r-foreach" ,r-foreach)
12902 ("r-go-db" ,r-go-db)
12903 ("r-hmisc" ,r-hmisc)
12904 ("r-impute" ,r-impute)
12905 ("r-rcpp" ,r-rcpp)
12906 ("r-robust" ,r-robust)
12907 ("r-survival" ,r-survival)
12908 ("r-matrixstats" ,r-matrixstats)
12909 ("r-preprocesscore" ,r-preprocesscore)))
12910 (home-page
12911 "http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/Rpackages/WGCNA/")
12912 (synopsis "Weighted correlation network analysis")
12913 (description
12914 "This package provides functions necessary to perform Weighted
12915 Correlation Network Analysis on high-dimensional data. It includes functions
12916 for rudimentary data cleaning, construction and summarization of correlation
12917 networks, module identification and functions for relating both variables and
12918 modules to sample traits. It also includes a number of utility functions for
12919 data manipulation and visualization.")
12920 (license license:gpl2+)))
12921
12922 (define-public r-kernlab
12923 (package
12924 (name "r-kernlab")
12925 (version "0.9-27")
12926 (source
12927 (origin
12928 (method url-fetch)
12929 (uri (cran-uri "kernlab" version))
12930 (sha256
12931 (base32
12932 "1m0xqf6gyvwayz7w3c83y32ayvnlz0jicj8ijk808zq9sh7dbbgn"))))
12933 (build-system r-build-system)
12934 (home-page "https://cran.r-project.org/web/packages/kernlab")
12935 (synopsis "Kernel-based machine learning tools")
12936 (description
12937 "This package provides kernel-based machine learning methods for
12938 classification, regression, clustering, novelty detection, quantile regression
12939 and dimensionality reduction. Among other methods @code{kernlab} includes
12940 Support Vector Machines, Spectral Clustering, Kernel PCA, Gaussian Processes
12941 and a QP solver.")
12942 (license license:gpl2)))
12943
12944 (define-public r-hierfstat
12945 (package
12946 (name "r-hierfstat")
12947 (version "0.04-22")
12948 (source
12949 (origin
12950 (method url-fetch)
12951 (uri (cran-uri "hierfstat" version))
12952 (sha256
12953 (base32
12954 "1fav2v2996v5kb1ffa6v5wxfm921syxg6as034vd3j4jfhdibyfx"))))
12955 (build-system r-build-system)
12956 (propagated-inputs
12957 `(("r-ade4" ,r-ade4)
12958 ("r-adegenet" ,r-adegenet)
12959 ("r-gtools" ,r-gtools)))
12960 (home-page "https://cran.r-project.org/web/packages/hierfstat/")
12961 (synopsis "Estimation and tests of hierarchical F-statistics")
12962 (description
12963 "This package allows the estimation of hierarchical F-statistics from
12964 haploid or diploid genetic data with any numbers of levels in the hierarchy,
12965 following the algorithm of Yang (Evolution, 1998, 52(4):950-956). Functions
12966 are also given to test via randomisations the significance of each F and
12967 variance components, using the likelihood-ratio statistics G.")
12968 (license license:gpl2+)))
12969
12970 (define-public r-hapassoc
12971 (package
12972 (name "r-hapassoc")
12973 (version "1.2-8")
12974 (source
12975 (origin
12976 (method url-fetch)
12977 (uri (cran-uri "hapassoc" version))
12978 (sha256
12979 (base32
12980 "0qs5jl0snzfchgpp6pabncwywxcmi743g91jvjiyyzw0lw85yv4s"))))
12981 (build-system r-build-system)
12982 (home-page "http://stat.sfu.ca/statgen/research/hapassoc.html")
12983 (synopsis "Inference of trait associations with SNP haplotypes")
12984 (description
12985 "Hapassoc performs likelihood inference of trait associations with
12986 haplotypes and other covariates in @dfn{generalized linear models} (GLMs). The
12987 functions are developed primarily for data collected in cohort or
12988 cross-sectional studies. They can accommodate uncertain haplotype phase and
12989 handle missing genotypes at some SNPs.")
12990 (license license:gpl2)))
12991
12992 (define-public r-sampling
12993 (package
12994 (name "r-sampling")
12995 (version "2.8")
12996 (source
12997 (origin
12998 (method url-fetch)
12999 (uri (cran-uri "sampling" version))
13000 (sha256
13001 (base32
13002 "06pj7dan0mknpsblmlnk7am78qrnwgnql5vvx7vmbfvib7rj6s9m"))))
13003 (build-system r-build-system)
13004 (propagated-inputs
13005 `(("r-lpsolve" ,r-lpsolve)
13006 ("r-mass" ,r-mass)))
13007 (home-page "https://cran.r-project.org/web/packages/sampling/")
13008 (synopsis "Survey sampling")
13009 (description
13010 "This package provides functions for drawing and calibrating samples.")
13011 (license license:gpl2+)))
13012
13013 (define-public r-r2html
13014 (package
13015 (name "r-r2html")
13016 (version "2.3.2")
13017 (source
13018 (origin
13019 (method url-fetch)
13020 (uri (cran-uri "R2HTML" version))
13021 (sha256
13022 (base32
13023 "00kxny7hajs9r2kw63qk7d03ggdxx2j1g8vbrmzp806y8aczvik9"))))
13024 (properties `((upstream-name . "R2HTML")))
13025 (build-system r-build-system)
13026 (home-page "https://github.com/nalimilan/R2HTML")
13027 (synopsis "HTML export for R objects")
13028 (description
13029 "This package includes HTML functions and methods to write in an HTML
13030 file. Thus, making HTML reports is easy. It includes a function that allows
13031 redirection on the fly, which appears to be very useful for teaching purposes,
13032 as the student can keep a copy of the produced output to keep all that they
13033 did during the course. The package comes with a vignette describing how to
13034 write HTML reports for statistical analysis. Finally, a driver for Sweave
13035 allows to parse HTML flat files containing R code and to automatically write
13036 the corresponding outputs (tables and graphs).")
13037 (license license:gpl2+)))
13038
13039 (define-public r-rjava
13040 (package
13041 (name "r-rjava")
13042 (version "0.9-11")
13043 (source
13044 (origin
13045 (method url-fetch)
13046 (uri (cran-uri "rJava" version))
13047 (sha256
13048 (base32
13049 "0s9cjy1wh7snmbqwznh8f1r4ipylr7mgda4a979z963a8lqy32n2"))))
13050 (properties `((upstream-name . "rJava")))
13051 (build-system r-build-system)
13052 (arguments
13053 `(#:modules ((guix build utils)
13054 (guix build r-build-system)
13055 (ice-9 match))
13056 #:phases
13057 (modify-phases %standard-phases
13058 (add-after 'unpack 'set-JAVA_HOME
13059 (lambda* (#:key inputs #:allow-other-keys)
13060 (let ((jdk (assoc-ref inputs "jdk")))
13061 (setenv "JAVA_HOME" jdk)
13062 (setenv "JAVA" (which "java"))
13063 (setenv "JAR" (which "jar"))
13064 (setenv "JAVAC" (which "javac"))
13065 (setenv "JAVAH" (which "javah"))
13066 (setenv "JAVA_CPPFLAGS"
13067 (string-append "-I" jdk "/include "
13068 "-I" jdk "/include/linux"))
13069 (match (find-files (string-append jdk "/jre/lib/") "libjvm.so")
13070 ((lib) (setenv "JAVA_LIBS" lib))
13071 (_ (error "Could not find libjvm.so"))))
13072 #t)))))
13073 (inputs
13074 `(("icu4c" ,icu4c)
13075 ("jdk" ,icedtea-8 "jdk")
13076 ("pcre" ,pcre)
13077 ("zlib" ,zlib)))
13078 (home-page "http://www.rforge.net/rJava/")
13079 (synopsis "Low-Level R to Java interface")
13080 (description
13081 "This package provides a low-level interface to the Java VM very much
13082 like .C/.Call and friends. It allows the creation of objects, calling methods
13083 and accessing fields.")
13084 (license license:gpl2)))
13085
13086 (define-public r-svmisc
13087 (package
13088 (name "r-svmisc")
13089 (version "1.1.0")
13090 (source
13091 (origin
13092 (method url-fetch)
13093 (uri (cran-uri "svMisc" version))
13094 (sha256
13095 (base32
13096 "01r2a73wx2sh1njky961fxabx5wgddqqjqba6vjg0f3h8r3abmn2"))))
13097 (properties `((upstream-name . "svMisc")))
13098 (build-system r-build-system)
13099 (home-page "https://github.com/SciViews/svMisc")
13100 (synopsis "Miscellaneous functions for SciViews")
13101 (description
13102 "This package provides miscellaneous functions for SciViews or general
13103 use, including tools to manage a temporary environment attached to the search
13104 path for temporary variables you do not want to @code{save()} or
13105 @code{load()}; test the current platform; showing progress bars, etc.")
13106 (license license:gpl2)))
13107
13108 (define-public r-xyz
13109 (package
13110 (name "r-xyz")
13111 (version "0.2")
13112 (source
13113 (origin
13114 (method url-fetch)
13115 (uri (cran-uri "xyz" version))
13116 (sha256
13117 (base32
13118 "13w4sb4pvgciwr8wsz785dafj2k2kpx7znz46r5d32wx88vkycp4"))))
13119 (build-system r-build-system)
13120 (propagated-inputs
13121 `(("r-rcpp" ,r-rcpp)))
13122 (home-page "https://cran.r-project.org/web/packages/xyz/")
13123 (synopsis "Algorithm for fast interaction search in high-dimensional data")
13124 (description
13125 "High dimensional interaction search by brute force requires a quadratic
13126 computational cost in the number of variables. The xyz algorithm provably
13127 finds strong interactions in almost linear time. For details of the algorithm
13128 see: G. Thanei, N. Meinshausen and R. Shah (2016). The xyz algorithm for fast
13129 interaction search in high-dimensional data.")
13130 ;; Any version of the GPL.
13131 (license license:gpl2+)))
13132
13133 (define-public r-rttf2pt1
13134 (package
13135 (name "r-rttf2pt1")
13136 (version "1.3.7")
13137 (source
13138 (origin
13139 (method url-fetch)
13140 (uri (cran-uri "Rttf2pt1" version))
13141 (sha256
13142 (base32
13143 "12hf9r3mhjr9sawdvf7qhjf1zph2q64f77i81jwvy7awidbm0kja"))))
13144 (properties `((upstream-name . "Rttf2pt1")))
13145 (build-system r-build-system)
13146 (home-page "https://github.com/wch/Rttf2pt1")
13147 (synopsis "Font conversion utility")
13148 (description
13149 "This package contains the program @code{ttf2pt1}, for use with the
13150 @code{extrafont} package.")
13151 ;; Most of the files are covered under the Expat license. Some files are
13152 ;; covered under BSD-3. Deviations for individual files are recorded in
13153 ;; the LICENSE file.
13154 (license (list license:bsd-3 license:expat
13155 (license:non-copyleft "file://LICENSE")))))
13156
13157 (define-public r-extrafontdb
13158 (package
13159 (name "r-extrafontdb")
13160 (version "1.0")
13161 (source
13162 (origin
13163 (method url-fetch)
13164 (uri (cran-uri "extrafontdb" version))
13165 (sha256
13166 (base32
13167 "115n42hfvv5h4nn4cfkfmkmn968py4lpy8zd0d6w5yylwpzbm8gs"))))
13168 (build-system r-build-system)
13169 (home-page "https://github.com/wch/extrafontdb")
13170 (synopsis "Database for the extrafont package")
13171 (description
13172 "This package holds the database for the @code{extrafont} package.")
13173 (license license:gpl2)))
13174
13175 (define-public r-extrafont
13176 (package
13177 (name "r-extrafont")
13178 (version "0.17")
13179 (source
13180 (origin
13181 (method url-fetch)
13182 (uri (cran-uri "extrafont" version))
13183 (sha256
13184 (base32
13185 "0b9k2n9sk23bh45hjgnkxpjyvpdrz1hx7kmxvmb4nhlhm1wpsv9g"))))
13186 (build-system r-build-system)
13187 (propagated-inputs
13188 `(("r-extrafontdb" ,r-extrafontdb)
13189 ("r-rttf2pt1" ,r-rttf2pt1)))
13190 (home-page "https://github.com/wch/extrafont")
13191 (synopsis "Tools for using fonts in R")
13192 (description
13193 "The extrafont package makes it easier to use fonts other than the basic
13194 PostScript fonts that R uses. Fonts that are imported into extrafont can be
13195 used with PDF or PostScript output files. There are two hurdles for using
13196 fonts in PDF (or Postscript) output files:
13197
13198 @enumerate
13199 @item Making R aware of the font and the dimensions of the characters.
13200 @item Embedding the fonts in the PDF file so that the PDF can be displayed
13201 properly on a device that doesn't have the font. This is usually needed if
13202 you want to print the PDF file or share it with others.
13203 @end enumerate
13204
13205 The extrafont package makes both of these things easier.")
13206 (license license:gpl2)))
13207
13208 (define-public r-xkcd
13209 (package
13210 (name "r-xkcd")
13211 (version "0.0.6")
13212 (source
13213 (origin
13214 (method url-fetch)
13215 (uri (cran-uri "xkcd" version))
13216 (sha256
13217 (base32
13218 "1z2y0ihn68ppay7xkglhw7djki5654g6z4bbpyy41if57z9q554f"))))
13219 (build-system r-build-system)
13220 (propagated-inputs
13221 `(("r-extrafont" ,r-extrafont)
13222 ("r-ggplot2" ,r-ggplot2)
13223 ("r-hmisc" ,r-hmisc)))
13224 (home-page "https://cran.r-project.org/web/packages/xkcd/")
13225 (synopsis "Plot ggplot2 graphics in the XKCD style")
13226 (description
13227 "This package provides the means to plot ggplot2 graphs in the style of
13228 the XKCD web comic.")
13229 (license license:gpl3)))
13230
13231 (define-public r-msigdbr
13232 (package
13233 (name "r-msigdbr")
13234 (version "6.2.1")
13235 (source
13236 (origin
13237 (method url-fetch)
13238 (uri (cran-uri "msigdbr" version))
13239 (sha256
13240 (base32
13241 "1264j1hs74kq7hyh68vfynadfi6mdpq46qm1hnwzkzzhmbzpb9cg"))))
13242 (build-system r-build-system)
13243 (propagated-inputs
13244 `(("r-dplyr" ,r-dplyr)
13245 ("r-magrittr" ,r-magrittr)
13246 ("r-rlang" ,r-rlang)
13247 ("r-tibble" ,r-tibble)))
13248 (home-page "https://github.com/igordot/msigdbr")
13249 (synopsis "MSigDB gene sets for multiple organisms")
13250 (description
13251 "This package provides the @dfn{Molecular Signatures Database} (MSigDB)
13252 gene sets typically used with the @dfn{Gene Set Enrichment Analysis} (GSEA)
13253 software in a standard R data frame with key-value pairs. Included are the
13254 original human gene symbols and Entrez IDs as well as the equivalents for
13255 various frequently studied model organisms such as mouse, rat, pig, fly, and
13256 yeast.")
13257 ;; The package is covered under the Expat license, but the upstream MSigDB
13258 ;; files are made available under the Creative Commons Attribution 4.0
13259 ;; International license.
13260 (license (list license:expat license:cc-by4.0))))
13261
13262 (define-public r-gridgraphics
13263 (package
13264 (name "r-gridgraphics")
13265 (version "0.3-0")
13266 (source
13267 (origin
13268 (method url-fetch)
13269 (uri (cran-uri "gridGraphics" version))
13270 (sha256
13271 (base32
13272 "1p94flvq5h3x817pl1m0aj3sim87x6zdbpv9xrgdnqw3rxfzwgqs"))))
13273 (properties `((upstream-name . "gridGraphics")))
13274 (build-system r-build-system)
13275 (home-page "https://github.com/pmur002/gridgraphics")
13276 (synopsis "Redraw base graphics using @code{grid} graphics")
13277 (description
13278 "This package provides functions to convert a page of plots drawn with
13279 the @code{graphics} package into identical output drawn with the @code{grid}
13280 package. The result looks like the original @code{graphics}-based plot, but
13281 consists of @code{grid} grobs and viewports that can then be manipulated with
13282 @code{grid} functions (e.g., edit grobs and revisit viewports).")
13283 (license license:gpl2+)))
13284
13285 (define-public r-farver
13286 (package
13287 (name "r-farver")
13288 (version "1.1.0")
13289 (source
13290 (origin
13291 (method url-fetch)
13292 (uri (cran-uri "farver" version))
13293 (sha256
13294 (base32
13295 "1dllgx121al374gyp9pjv1m8ip4imm8zhbgyh1970dsz2c4z71i0"))))
13296 (build-system r-build-system)
13297 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
13298 (home-page "https://github.com/thomasp85/farver")
13299 (synopsis "Vectorized color conversion and comparison")
13300 (description
13301 "The encoding of color can be handled in many different ways, using
13302 different color spaces. As different color spaces have different uses,
13303 efficient conversion between these representations are important. This
13304 package provides a set of functions that gives access to very fast color space
13305 conversion and comparisons implemented in C++, and offers 100-fold speed
13306 improvements over the @code{convertColor} function in the @code{grDevices}
13307 package.")
13308 (license license:expat)))
13309
13310 (define-public r-ggplotify
13311 (package
13312 (name "r-ggplotify")
13313 (version "0.0.3")
13314 (source
13315 (origin
13316 (method url-fetch)
13317 (uri (cran-uri "ggplotify" version))
13318 (sha256
13319 (base32
13320 "14hqlpvnaq5psz1ljcpw9isa06827rg3fm5c1dx159rsjfi56yby"))))
13321 (build-system r-build-system)
13322 (propagated-inputs
13323 `(("r-ggplot2" ,r-ggplot2)
13324 ("r-gridgraphics" ,r-gridgraphics)
13325 ("r-rvcheck" ,r-rvcheck)))
13326 (home-page "https://github.com/GuangchuangYu/ggplotify")
13327 (synopsis "Convert plots to @code{grob} or @code{ggplot} object")
13328 (description
13329 "This package provides tools to convert plot function calls (using
13330 expression or formula) to @code{grob} or @code{ggplot} objects that are
13331 compatible with the @code{grid} and @code{ggplot2} environment. With this
13332 package, we are able to e.g. use @code{cowplot} to align plots produced by
13333 @code{base} graphics, @code{grid}, @code{lattice}, @code{vcd} etc. by
13334 converting them to @code{ggplot} objects.")
13335 (license license:artistic2.0)))
13336
13337 (define-public r-triebeard
13338 (package
13339 (name "r-triebeard")
13340 (version "0.3.0")
13341 (source
13342 (origin
13343 (method url-fetch)
13344 (uri (cran-uri "triebeard" version))
13345 (sha256
13346 (base32
13347 "1hqyz57gph02c9fdc07lxz113bbklif3g18sw8jan6pakhhdc7dz"))))
13348 (build-system r-build-system)
13349 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
13350 (home-page "https://github.com/Ironholds/triebeard/")
13351 (synopsis "Radix trees in Rcpp")
13352 (description
13353 "Radix trees, or tries, are key-value data structures optimized for
13354 efficient lookups, similar in purpose to hash tables. This package provides
13355 an implementation of radix trees for use in R programming and in developing
13356 packages with Rcpp.")
13357 (license license:expat)))
13358
13359 (define-public r-tweenr
13360 (package
13361 (name "r-tweenr")
13362 (version "1.0.1")
13363 (source
13364 (origin
13365 (method url-fetch)
13366 (uri (cran-uri "tweenr" version))
13367 (sha256
13368 (base32
13369 "0sq90pbln6lkc2q3zflhkxxwpqdw5dd7igrxhdnlynkdrmi83mpg"))))
13370 (build-system r-build-system)
13371 (propagated-inputs
13372 `(("r-farver" ,r-farver)
13373 ("r-magrittr" ,r-magrittr)
13374 ("r-rcpp" ,r-rcpp)
13375 ("r-rlang" ,r-rlang)))
13376 (home-page "https://github.com/thomasp85/tweenr")
13377 (synopsis "Interpolate data for smooth animations")
13378 (description
13379 "In order to create smooth animation between states of data, tweening is
13380 necessary. This package provides a range of functions for creating tweened
13381 data that can be used as basis for animation. Furthermore it adds a number of
13382 vectorized interpolaters for common R data types such as numeric, date and
13383 color.")
13384 (license license:expat)))
13385
13386 (define-public r-polyclip
13387 (package
13388 (name "r-polyclip")
13389 (version "1.10-0")
13390 (source
13391 (origin
13392 (method url-fetch)
13393 (uri (cran-uri "polyclip" version))
13394 (sha256
13395 (base32
13396 "0jyk4maqiblvj095jd59dr76kbniyli3v3xvy0a72ljszq6vrnkl"))))
13397 (build-system r-build-system)
13398 (native-inputs `(("pkg-config" ,pkg-config)))
13399 (home-page "http://www.angusj.com/delphi/clipper.php")
13400 (synopsis "Polygon clipping")
13401 (description
13402 "This package provides an R port of the library Clipper. It performs
13403 polygon clipping operations (intersection, union, set minus, set difference)
13404 for polygonal regions of arbitrary complexity, including holes. It computes
13405 offset polygons (spatial buffer zones, morphological dilations, Minkowski
13406 dilations) for polygonal regions and polygonal lines. It computes the
13407 Minkowski Sum of general polygons. There is a function for removing
13408 self-intersections from polygon data.")
13409 (license license:boost1.0)))
13410
13411 (define-public r-urltools
13412 (package
13413 (name "r-urltools")
13414 (version "1.7.3")
13415 (source
13416 (origin
13417 (method url-fetch)
13418 (uri (cran-uri "urltools" version))
13419 (sha256
13420 (base32
13421 "04x3my655dd287cbsszbnf75q0swmjlxxrblcsay7a8n3df3a830"))))
13422 (build-system r-build-system)
13423 (propagated-inputs
13424 `(("r-rcpp" ,r-rcpp)
13425 ("r-triebeard" ,r-triebeard)))
13426 (home-page "https://github.com/Ironholds/urltools/")
13427 (synopsis "Vectorized tools for URL handling and parsing")
13428 (description
13429 "This package provides a toolkit for all URL-handling needs, including
13430 encoding and decoding, parsing, parameter extraction and modification. All
13431 functions are designed to be both fast and entirely vectorized. It is
13432 intended to be useful for people dealing with web-related datasets, such as
13433 server-side logs, although may be useful for other situations involving large
13434 sets of URLs.")
13435 (license license:expat)))
13436
13437 (define-public r-ggforce
13438 (package
13439 (name "r-ggforce")
13440 (version "0.2.2")
13441 (source
13442 (origin
13443 (method url-fetch)
13444 (uri (cran-uri "ggforce" version))
13445 (sha256
13446 (base32
13447 "0snxx9zhcccxa7pz9pf3bjqmcmv9mz4m47v81hklnhm25jj40xg2"))))
13448 (build-system r-build-system)
13449 (propagated-inputs
13450 `(("r-ggplot2" ,r-ggplot2)
13451 ("r-gtable" ,r-gtable)
13452 ("r-mass" ,r-mass)
13453 ("r-polyclip" ,r-polyclip)
13454 ("r-rcpp" ,r-rcpp)
13455 ("r-rcppeigen" ,r-rcppeigen)
13456 ("r-rlang" ,r-rlang)
13457 ("r-scales" ,r-scales)
13458 ("r-tweenr" ,r-tweenr)))
13459 (home-page "https://ggforce.data-imaginist.com")
13460 (synopsis "Accelerating ggplot2")
13461 (description
13462 "The aim of the ggplot2 package is to aid in visual data investigations.
13463 This focus has led to a lack of facilities for composing specialized plots.
13464 Thi package aims to be a collection of mainly new statistics and geometries
13465 that fills this gap.")
13466 (license license:expat)))
13467
13468 (define-public r-europepmc
13469 (package
13470 (name "r-europepmc")
13471 (version "0.3")
13472 (source
13473 (origin
13474 (method url-fetch)
13475 (uri (cran-uri "europepmc" version))
13476 (sha256
13477 (base32
13478 "1ngqs1sqzkbwv98dd5z4cxj8bnz41wyd0g060a2vpqi3s99s4i2h"))))
13479 (build-system r-build-system)
13480 (propagated-inputs
13481 `(("r-dplyr" ,r-dplyr)
13482 ("r-httr" ,r-httr)
13483 ("r-jsonlite" ,r-jsonlite)
13484 ("r-plyr" ,r-plyr)
13485 ("r-progress" ,r-progress)
13486 ("r-purrr" ,r-purrr)
13487 ("r-urltools" ,r-urltools)
13488 ("r-xml2" ,r-xml2)))
13489 (home-page "https://github.com/ropensci/europepmc/")
13490 (synopsis "R Interface to the Europe PubMed Central RESTful Web Service")
13491 (description
13492 "This package provides an R Client for the
13493 @url{https://europepmc.org/RestfulWebService,Europe PubMed Central RESTful Web
13494 Service}. It gives access to both metadata on life science literature and
13495 open access full texts. Europe PMC indexes all PubMed content and other
13496 literature sources including Agricola, a bibliographic database of citations
13497 to the agricultural literature, or Biological Patents. In addition to
13498 bibliographic metadata, the client allows users to fetch citations and
13499 reference lists. Links between life-science literature and other EBI
13500 databases, including ENA, PDB or ChEMBL are also accessible.")
13501 (license license:gpl3)))
13502
13503 (define-public r-ggraph
13504 (package
13505 (name "r-ggraph")
13506 (version "1.0.2")
13507 (source
13508 (origin
13509 (method url-fetch)
13510 (uri (cran-uri "ggraph" version))
13511 (sha256
13512 (base32
13513 "0fpmp326mryd1k1qvacjadksrnhbla8h960i18lmrimzrag7692c"))))
13514 (build-system r-build-system)
13515 (propagated-inputs
13516 `(("r-digest" ,r-digest)
13517 ("r-dplyr" ,r-dplyr)
13518 ("r-ggforce" ,r-ggforce)
13519 ("r-ggplot2" ,r-ggplot2)
13520 ("r-ggrepel" ,r-ggrepel)
13521 ("r-gtable" ,r-gtable)
13522 ("r-igraph" ,r-igraph)
13523 ("r-mass" ,r-mass)
13524 ("r-plyr" ,r-plyr)
13525 ("r-rcpp" ,r-rcpp)
13526 ("r-scales" ,r-scales)
13527 ("r-viridis" ,r-viridis)))
13528 (home-page "https://cran.r-project.org/web/packages/ggraph/")
13529 (synopsis "Implementation of grammar of graphics for graphs and networks")
13530 (description
13531 "The grammar of graphics as implemented in ggplot2 is a poor fit for
13532 graph and network visualizations due to its reliance on tabular data input.
13533 The ggraph package is an extension of the ggplot2 API tailored to graph
13534 visualizations and provides the same flexible approach to building up plots
13535 layer by layer.")
13536 (license license:gpl3)))
13537
13538 (define-public r-varselrf
13539 (package
13540 (name "r-varselrf")
13541 (version "0.7-8")
13542 (source
13543 (origin
13544 (method url-fetch)
13545 (uri (cran-uri "varSelRF" version))
13546 (sha256
13547 (base32
13548 "0h49rl1j13yfh97rsfsyh9s2c4wajny4rzms2qw77d0cavxqg53i"))))
13549 (properties `((upstream-name . "varSelRF")))
13550 (build-system r-build-system)
13551 (propagated-inputs
13552 `(("r-randomforest" ,r-randomforest)))
13553 (home-page "http://ligarto.org/rdiaz/Software/Software.html")
13554 (synopsis "Variable selection using random forests")
13555 (description
13556 "This package provides tools for the variable selection from random
13557 forests using both backwards variable elimination (for the selection of small
13558 sets of non-redundant variables) and selection based on the importance
13559 spectrum (somewhat similar to scree plots; for the selection of large,
13560 potentially highly-correlated variables). The main applications are in
13561 high-dimensional data (e.g., microarray data, and other genomics and
13562 proteomics applications).")
13563 (license license:gpl2+)))
13564
13565 (define-public r-pamr
13566 (package
13567 (name "r-pamr")
13568 (version "1.56.1")
13569 (source
13570 (origin
13571 (method url-fetch)
13572 (uri (cran-uri "pamr" version))
13573 (sha256
13574 (base32
13575 "0ycpgkk23y3zzkb42n2skcyl35ps1n7jmyzfj7pbxr3f6gr2grfh"))))
13576 (build-system r-build-system)
13577 (propagated-inputs
13578 `(("r-cluster" ,r-cluster)
13579 ("r-survival" ,r-survival)))
13580 (native-inputs `(("gfortran" ,gfortran)))
13581 (home-page "https://cran.r-project.org/web/packages/pamr/")
13582 (synopsis "Prediction Analysis for Microarrays")
13583 (description
13584 "This package provides some functions for sample classification in
13585 microarrays.")
13586 (license license:gpl2)))
13587
13588 (define-public r-rda
13589 (package
13590 (name "r-rda")
13591 (version "1.0.2-2.1")
13592 (source
13593 (origin
13594 (method url-fetch)
13595 (uri (cran-uri "rda" version))
13596 (sha256
13597 (base32
13598 "1y4fawslr3i6crjaxhsdb47kfsqkyszdx6avq3r5far5a4pvc639"))))
13599 (build-system r-build-system)
13600 (home-page "https://cran.r-project.org/web/packages/rda/")
13601 (synopsis "Shrunken centroids regularized discriminant analysis")
13602 (description
13603 "This package provides tools for shrunken centroids regularized
13604 discriminant analysis for the purpose of classifying high dimensional data.")
13605 (license license:gpl2+)))
13606
13607 (define-public r-ggvis
13608 (package
13609 (name "r-ggvis")
13610 (version "0.4.4")
13611 (source
13612 (origin
13613 (method url-fetch)
13614 (uri (cran-uri "ggvis" version))
13615 (sha256
13616 (base32
13617 "1bxggjr2313kfy895j0fvrv4bg7yh2z87907lk48i1kn5c9flchk"))))
13618 (build-system r-build-system)
13619 (propagated-inputs
13620 `(("r-assertthat" ,r-assertthat)
13621 ("r-dplyr" ,r-dplyr)
13622 ("r-htmltools" ,r-htmltools)
13623 ("r-jsonlite" ,r-jsonlite)
13624 ("r-lazyeval" ,r-lazyeval)
13625 ("r-magrittr" ,r-magrittr)
13626 ("r-shiny" ,r-shiny)))
13627 (home-page "https://ggvis.rstudio.com/")
13628 (synopsis "Interactive grammar of graphics")
13629 (description
13630 "This package is a data visualization package for R providing an
13631 implementation of an interactive grammar of graphics, taking the best parts of
13632 ggplot2, combining them with the reactive framework of Shiny and drawing web
13633 graphics using Vega.")
13634 (license license:gpl2)))
13635
13636 (define-public r-gbm
13637 (package
13638 (name "r-gbm")
13639 (version "2.1.5")
13640 (source
13641 (origin
13642 (method url-fetch)
13643 (uri (cran-uri "gbm" version))
13644 (sha256
13645 (base32
13646 "0vs6ljaqhwwpgr8wlbhmm4v147rd82kl16rpaijqiylxcc8dxyq6"))))
13647 (build-system r-build-system)
13648 (propagated-inputs
13649 `(("r-gridextra" ,r-gridextra)
13650 ("r-lattice" ,r-lattice)
13651 ("r-survival" ,r-survival)))
13652 (home-page "https://github.com/gbm-developers/gbm")
13653 (synopsis "Generalized boosted regression models")
13654 (description
13655 "This package is an implementation of extensions to Freund and Schapire's
13656 AdaBoost algorithm and Friedman's gradient boosting machine. It includes
13657 regression methods for least squares, absolute loss, t-distribution loss,
13658 quantile regression, logistic, multinomial logistic, Poisson, Cox proportional
13659 hazards partial likelihood, AdaBoost exponential loss, Huberized hinge loss,
13660 and Learning to Rank measures (LambdaMart).")
13661 (license license:gpl2+)))
13662
13663 (define-public r-threejs
13664 (package
13665 (name "r-threejs")
13666 (version "0.3.1")
13667 (source
13668 (origin
13669 (method url-fetch)
13670 (uri (cran-uri "threejs" version))
13671 (sha256
13672 (base32
13673 "1s3rdlzy7man6177ycayg6xsh6k8y1r9rdj9yzn3b93j2rs0nxbi"))))
13674 (build-system r-build-system)
13675 (arguments
13676 `(#:modules ((guix build utils)
13677 (guix build r-build-system)
13678 (srfi srfi-1)
13679 (ice-9 popen))
13680 #:phases
13681 (modify-phases %standard-phases
13682 (add-after 'unpack 'process-javascript
13683 (lambda* (#:key inputs #:allow-other-keys)
13684 (with-directory-excursion "inst"
13685 (call-with-values
13686 (lambda ()
13687 (unzip2
13688 `((,(assoc-ref inputs "js-jquery")
13689 "htmlwidgets/lib/jquery/jquery.min.js")
13690 (,(assoc-ref inputs "js-threejs-85")
13691 "htmlwidgets/lib/threejs-85/three.min.js"))))
13692 (lambda (sources targets)
13693 (for-each (lambda (source target)
13694 (format #t "Processing ~a --> ~a~%"
13695 source target)
13696 (delete-file target)
13697 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
13698 (call-with-output-file target
13699 (lambda (port)
13700 (dump-port minified port)))))
13701 sources targets))))
13702 #t)))))
13703 (propagated-inputs
13704 `(("r-base64enc" ,r-base64enc)
13705 ("r-crosstalk" ,r-crosstalk)
13706 ("r-htmlwidgets" ,r-htmlwidgets)
13707 ("r-igraph" ,r-igraph)))
13708 (native-inputs
13709 `(("uglify-js" ,uglify-js)
13710 ("js-jquery"
13711 ,(origin
13712 (method url-fetch)
13713 (uri "https://code.jquery.com/jquery-3.3.1.js")
13714 (sha256
13715 (base32
13716 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))
13717 ("js-threejs-85"
13718 ,(origin
13719 (method url-fetch)
13720 (uri "https://raw.githubusercontent.com/mrdoob/three.js/r85/build/three.js")
13721 (sha256
13722 (base32
13723 "17khh3dmijdjw4qb9qih1rqhxgrmm3pc6w8lzdx6rf6a3mrc9xnl"))))))
13724 (home-page "https://bwlewis.github.io/rthreejs")
13725 (synopsis "Interactive 3D scatter plots, networks and globes")
13726 (description
13727 "Create interactive 3D scatter plots, network plots, and globes in R
13728 using the three.js visualization library.")
13729 (license license:expat)))
13730
13731 (define-public r-mlbench
13732 (package
13733 (name "r-mlbench")
13734 (version "2.1-1")
13735 (source
13736 (origin
13737 (method url-fetch)
13738 (uri (cran-uri "mlbench" version))
13739 (sha256
13740 (base32
13741 "1rp035qxfgh5ail92zjh9jh57dj0b8babw3wsg29v8ricpal30bl"))))
13742 (build-system r-build-system)
13743 (home-page "https://cran.r-project.org/web/packages/mlbench/")
13744 (synopsis "Machine learning benchmark problems")
13745 (description
13746 "This package provides a collection of artificial and real-world machine
13747 learning benchmark problems, including, e.g., several data sets from the UCI
13748 repository.")
13749 (license license:gpl2)))
13750
13751 (define-public r-mpm
13752 (package
13753 (name "r-mpm")
13754 (version "1.0-22")
13755 (source
13756 (origin
13757 (method url-fetch)
13758 (uri (cran-uri "mpm" version))
13759 (sha256
13760 (base32
13761 "0wijw8v0wmbfrda5564cmnp788qmlkk21yn5cp5qk8aprm9l1fnk"))))
13762 (build-system r-build-system)
13763 (propagated-inputs
13764 `(("r-kernsmooth" ,r-kernsmooth)
13765 ("r-mass" ,r-mass)))
13766 (home-page "http://mpm.r-forge.r-project.org")
13767 (synopsis "Multivariate projection methods")
13768 (description
13769 "This is a package for exploratory graphical analysis of multivariate
13770 data, specifically gene expression data with different projection methods:
13771 principal component analysis, correspondence analysis, spectral map
13772 analysis.")
13773 (license license:gpl2+)))
13774
13775 (define-public r-png
13776 (package
13777 (name "r-png")
13778 (version "0.1-7")
13779 (source (origin
13780 (method url-fetch)
13781 (uri (cran-uri "png" version))
13782 (sha256
13783 (base32
13784 "0g2mcp55lvvpx4kd3mn225mpbxqcq73wy5qx8b4lyf04iybgysg2"))))
13785 (build-system r-build-system)
13786 (inputs
13787 `(("libpng" ,libpng)
13788 ("zlib" ,zlib)))
13789 (home-page "http://www.rforge.net/png/")
13790 (synopsis "Read and write PNG images")
13791 (description
13792 "This package provides an easy and simple way to read, write and display
13793 bitmap images stored in the PNG format. It can read and write both files and
13794 in-memory raw vectors.")
13795 ;; Any of these GPL versions.
13796 (license (list license:gpl2 license:gpl3))))
13797
13798 (define-public r-ggcorrplot
13799 (package
13800 (name "r-ggcorrplot")
13801 (version "0.1.2")
13802 (source
13803 (origin
13804 (method url-fetch)
13805 (uri (cran-uri "ggcorrplot" version))
13806 (sha256
13807 (base32
13808 "12sxvd9kjgszpbk35m7fj1wv7x40bp79c0g0by1xax70r3495h93"))))
13809 (build-system r-build-system)
13810 (propagated-inputs
13811 `(("r-ggplot2" ,r-ggplot2)
13812 ("r-reshape2" ,r-reshape2)))
13813 (home-page "http://www.sthda.com/english/wiki/ggcorrplot")
13814 (synopsis "Visualization of a correlation matrix using ggplot2")
13815 (description
13816 "The ggcorrplot package can be used to visualize easily a correlation
13817 matrix using ggplot2. It provides a solution for reordering the correlation
13818 matrix and displays the significance level on the plot. It also includes a
13819 function for computing a matrix of correlation p-values.")
13820 (license license:gpl2)))
13821
13822 (define-public r-flexdashboard
13823 (package
13824 (name "r-flexdashboard")
13825 (version "0.5.1.1")
13826 (source
13827 (origin
13828 (method url-fetch)
13829 (uri (cran-uri "flexdashboard" version))
13830 (sha256
13831 (base32
13832 "0fy3nbrr67zqgd44r2mc850s5sp0hzfcw3zqs15m8kxzj1aw067x"))))
13833 (build-system r-build-system)
13834 (arguments
13835 `(#:modules ((guix build utils)
13836 (guix build r-build-system)
13837 (srfi srfi-1)
13838 (srfi srfi-26)
13839 (ice-9 popen)
13840 (ice-9 textual-ports))
13841 #:phases
13842 (modify-phases %standard-phases
13843 (add-after 'unpack 'process-javascript
13844 (lambda* (#:key inputs #:allow-other-keys)
13845 (with-directory-excursion "inst"
13846 ;; Concatenate all components of prism.js
13847 (let ((contents (string-join
13848 (map (lambda (name)
13849 (call-with-input-file
13850 (assoc-ref inputs name)
13851 get-string-all))
13852 (list "js-prism"
13853 "js-prism-r"
13854 "js-prism-line-numbers"))
13855 "\n")))
13856 (call-with-output-file "prism-src.js"
13857 (cut display contents <>)))
13858 (call-with-values
13859 (lambda ()
13860 (unzip2
13861 `(("www/stickytableheaders/jquery.stickytableheaders.js"
13862 "www/stickytableheaders/jquery.stickytableheaders.min.js")
13863 ("www/sly/sly.js"
13864 "www/sly/sly.min.js")
13865 ("prism-src.js"
13866 "www/prism/prism.js")
13867 (,(assoc-ref inputs "js-raphael")
13868 "htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
13869 (,(assoc-ref inputs "js-featherlight")
13870 "www/featherlight/featherlight.min.js"))))
13871 (lambda (sources targets)
13872 (for-each (lambda (source target)
13873 (format #t "Processing ~a --> ~a~%"
13874 source target)
13875 (delete-file target)
13876 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
13877 (call-with-output-file target
13878 (lambda (port)
13879 (dump-port minified port)))))
13880 sources targets))))
13881 #t)))))
13882 (propagated-inputs
13883 `(("r-htmltools" ,r-htmltools)
13884 ("r-htmlwidgets" ,r-htmlwidgets)
13885 ("r-jsonlite" ,r-jsonlite)
13886 ("r-knitr" ,r-knitr)
13887 ("r-rmarkdown" ,r-rmarkdown)
13888 ("r-shiny" ,r-shiny)))
13889 (native-inputs
13890 `(("uglify-js" ,uglify-js)
13891 ("js-raphael"
13892 ,(origin
13893 (method url-fetch)
13894 (uri "https://raw.githubusercontent.com/DmitryBaranovskiy/raphael/v2.1.4/raphael.js")
13895 (sha256
13896 (base32
13897 "1h4c4akrgcj7wra9j1z1rv2406j0yf68y9c0wg8v7w9ibw2iwf1x"))))
13898 ("js-prism"
13899 ,(origin
13900 (method url-fetch)
13901 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/prism.js")
13902 (sha256
13903 (base32
13904 "0gqa9irbp9k8p5r3d98cszajzhjnssnl43nrsc5aiy7ki52z500c"))))
13905 ("js-prism-r"
13906 ,(origin
13907 (method url-fetch)
13908 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/components/prism-r.js")
13909 (sha256
13910 (base32
13911 "1x31glci7wdgr2305njy0bm2lncb0jyn0j1s2g72rqi29xid9aki"))))
13912 ("js-prism-line-numbers"
13913 ,(origin
13914 (method url-fetch)
13915 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/plugins/line-numbers/prism-line-numbers.js")
13916 (sha256
13917 (base32
13918 "1543wgf3iynrilyb27jq8px3h5gvfz5xmdib5ik2ki400c1sl991"))))
13919 ("js-featherlight"
13920 ,(origin
13921 (method url-fetch)
13922 (uri "https://raw.githubusercontent.com/noelboss/featherlight/1.3.4/src/featherlight.js")
13923 (sha256
13924 (base32
13925 "14kkhwzvp8rxq2mrck5i0xcm8v5rqwqhwnmncbng8h4qq42zx3sb"))))))
13926 (home-page "https://rmarkdown.rstudio.com/flexdashboard")
13927 (synopsis "R Markdown format for flexible dashboards")
13928 (description
13929 "This package provides an R Markdown format for converting an R Markdown
13930 document to a grid-oriented dashboard. The dashboard flexibly adapts the size
13931 of its components to the containing web page.")
13932 (license license:expat)))
13933
13934 (define-public r-preseqr
13935 (package
13936 (name "r-preseqr")
13937 (version "4.0.0")
13938 (source
13939 (origin
13940 (method url-fetch)
13941 (uri (cran-uri "preseqR" version))
13942 (sha256
13943 (base32
13944 "1g2rnnmi45649vpy6z45v5i3wxm54s138ajqrzwi3a5r7x3xnhq1"))))
13945 (properties `((upstream-name . "preseqR")))
13946 (build-system r-build-system)
13947 (propagated-inputs
13948 `(("r-polynom" ,r-polynom)))
13949 (home-page "https://cran.r-project.org/web/packages/preseqR/")
13950 (synopsis "Predicting species accumulation curves")
13951 (description
13952 "This package can be used to predict the r-species accumulation
13953 curve (r-SAC), which is the number of species represented at least r times as
13954 a function of the sampling effort. When r = 1, the curve is known as the
13955 species accumulation curve, or the library complexity curve in high-throughput
13956 genomic sequencing. The package includes both parametric and nonparametric
13957 methods, as described by Deng C, et al. (2018).")
13958 (license license:gpl3)))
13959
13960 (define-public r-mapplots
13961 (package
13962 (name "r-mapplots")
13963 (version "1.5.1")
13964 (source
13965 (origin
13966 (method url-fetch)
13967 (uri (cran-uri "mapplots" version))
13968 (sha256
13969 (base32
13970 "18s2y66f8vi8g2r8a25zbgp2xm079r8v8qxv0w71h8krycs6vs9p"))))
13971 (build-system r-build-system)
13972 (home-page "https://cran.r-project.org/web/packages/mapplots/")
13973 (synopsis "Data visualization on maps")
13974 (description
13975 "This package helps you create simple maps; add sub-plots like pie plots
13976 to a map or any other plot; format, plot and export gridded data. The package
13977 was developed for displaying fisheries data but most functions can be used for
13978 more generic data visualisation.")
13979 (license license:gpl2+)))
13980
13981 (define-public r-pmcmr
13982 (package
13983 (name "r-pmcmr")
13984 (version "4.3")
13985 (source
13986 (origin
13987 (method url-fetch)
13988 (uri (cran-uri "PMCMR" version))
13989 (sha256
13990 (base32
13991 "09bvdj2h1086r2cgy3myrhlylplxxlliv8nwx09c8kb1vn02i2ij"))))
13992 (properties `((upstream-name . "PMCMR")))
13993 (build-system r-build-system)
13994 (home-page "https://cran.r-project.org/web/packages/PMCMR/")
13995 (synopsis "Calculate pairwise multiple comparisons of mean rank sums")
13996 (description
13997 "This is a deprecated package for calculating pairwise multiple
13998 comparisons of mean rank sums. This package is superseded by the novel
13999 PMCMRplus package. The PMCMR package is no longer maintained, but kept for
14000 compatibility of reverse depending packages for some time.")
14001 (license license:gpl3+)))
14002
14003 (define-public r-downloader
14004 (package
14005 (name "r-downloader")
14006 (version "0.4")
14007 (source
14008 (origin
14009 (method url-fetch)
14010 (uri (cran-uri "downloader" version))
14011 (sha256
14012 (base32
14013 "1axggnsc27zzgr7snf41j3zd1vp3nfpmq4zj4d01axc709dyg40q"))))
14014 (build-system r-build-system)
14015 (propagated-inputs
14016 `(("r-digest" ,r-digest)))
14017 (home-page "https://github.com/wch/downloader")
14018 (synopsis "Download files over HTTP and HTTPS")
14019 (description
14020 "This package provides a wrapper for the @code{download.file} function,
14021 making it possible to download files over HTTPS across platforms. The
14022 @code{RCurl} package provides this functionality (and much more) but has
14023 external dependencies. This package has is implemented purely in R.")
14024 (license license:gpl2)))
14025
14026 (define-public r-rex
14027 (package
14028 (name "r-rex")
14029 (version "1.1.2")
14030 (source
14031 (origin
14032 (method url-fetch)
14033 (uri (cran-uri "rex" version))
14034 (sha256
14035 (base32
14036 "0alsadgjgass3wr8y5d247j12qqzg454sc84vpskclrkmz778g5x"))))
14037 (build-system r-build-system)
14038 (propagated-inputs
14039 `(("r-lazyeval" ,r-lazyeval)
14040 ("r-magrittr" ,r-magrittr)))
14041 (home-page "https://github.com/kevinushey/rex")
14042 (synopsis "Friendly regular expressions")
14043 (description
14044 "This package provides a friendly interface for the construction of
14045 regular expressions. Regular expressions are a very powerful feature, however
14046 they are often difficult to interpret. Rex allows you to build complex
14047 regular expressions from human readable expressions")
14048 (license license:expat)))
14049
14050 (define-public r-sctransform
14051 (package
14052 (name "r-sctransform")
14053 (version "0.2.0")
14054 (source
14055 (origin
14056 (method url-fetch)
14057 (uri (cran-uri "sctransform" version))
14058 (sha256
14059 (base32
14060 "1r5kiqqs318q59h2i8m7c6nhghp9w6q26ss2y5a390lkhsawgx6p"))))
14061 (build-system r-build-system)
14062 (propagated-inputs
14063 `(("r-future" ,r-future)
14064 ("r-future-apply" ,r-future-apply)
14065 ("r-ggplot2" ,r-ggplot2)
14066 ("r-gridextra" ,r-gridextra)
14067 ("r-mass" ,r-mass)
14068 ("r-matrix" ,r-matrix)
14069 ("r-rcpp" ,r-rcpp)
14070 ("r-rcppeigen" ,r-rcppeigen)
14071 ("r-reshape2" ,r-reshape2)))
14072 (home-page "https://github.com/ChristophH/sctransform")
14073 (synopsis "Variance stabilizing transformations for Single Cell UMI Data")
14074 (description
14075 "This package provides a normalization method for single-cell UMI count
14076 data using a variance stabilizing transformation. The transformation is based
14077 on a negative binomial regression model with regularized parameters. As part
14078 of the same regression framework, this package also provides functions for
14079 batch correction, and data correction.")
14080 (license license:gpl3)))
14081
14082 (define-public r-styler
14083 (package
14084 (name "r-styler")
14085 (version "1.1.0")
14086 (source
14087 (origin
14088 (method url-fetch)
14089 (uri (cran-uri "styler" version))
14090 (sha256
14091 (base32
14092 "1z24mi88snbz1avjw9phq0lzmigddvycc56s83nxzr9w9z85mh05"))))
14093 (build-system r-build-system)
14094 (propagated-inputs
14095 `(("r-backports" ,r-backports)
14096 ("r-cli" ,r-cli)
14097 ("r-magrittr" ,r-magrittr)
14098 ("r-purrr" ,r-purrr)
14099 ("r-rematch2" ,r-rematch2)
14100 ("r-rlang" ,r-rlang)
14101 ("r-rprojroot" ,r-rprojroot)
14102 ("r-tibble" ,r-tibble)
14103 ("r-withr" ,r-withr)
14104 ("r-xfun" ,r-xfun)))
14105 (home-page "https://github.com/r-lib/styler")
14106 (synopsis "Non-invasive pretty printing of R code")
14107 (description
14108 "This is a package for pretty-printing R code without changing the user's
14109 formatting intent.")
14110 (license license:gpl3)))
14111
14112 (define-public r-scrime
14113 (package
14114 (name "r-scrime")
14115 (version "1.3.5")
14116 (source
14117 (origin
14118 (method url-fetch)
14119 (uri (cran-uri "scrime" version))
14120 (sha256
14121 (base32
14122 "0y2mh9fsffjf3i15bafpasa17z99c1s75r8g6h4hgcwfgpjx75sx"))))
14123 (build-system r-build-system)
14124 (home-page "https://cran.r-project.org/web/packages/scrime/")
14125 (synopsis "Analysis of high-dimensional categorical data such as SNP data")
14126 (description
14127 "This package provides tools for the analysis of high-dimensional data
14128 developed/implemented at the group \"Statistical Complexity Reduction In
14129 Molecular Epidemiology\" (SCRIME). The main focus is on SNP data, but most of
14130 the functions can also be applied to other types of categorical data.")
14131 (license license:gpl2)))
14132
14133 (define-public r-blme
14134 (package
14135 (name "r-blme")
14136 (version "1.0-4")
14137 (source
14138 (origin
14139 (method url-fetch)
14140 (uri (cran-uri "blme" version))
14141 (sha256
14142 (base32
14143 "1ca2b0248k0fj3lczn9shfjplz1sl4ay4v6djldizp2ch2vwdgy2"))))
14144 (build-system r-build-system)
14145 (propagated-inputs `(("r-lme4" ,r-lme4)))
14146 (home-page "https://github.com/vdorie/blme")
14147 (synopsis "Bayesian linear mixed-effects models")
14148 (description
14149 "This package provides tools for maximum a posteriori estimation for
14150 linear and generalized linear mixed-effects models in a Bayesian setting. It
14151 extends the lme4 package.")
14152 (license license:gpl2+)))
14153
14154 (define-public r-batchtools
14155 (package
14156 (name "r-batchtools")
14157 (version "0.9.11")
14158 (source
14159 (origin
14160 (method url-fetch)
14161 (uri (cran-uri "batchtools" version))
14162 (sha256
14163 (base32
14164 "02mj21ypcjv5fs7ajf63p6bq0cyvihdl55hlpqx6kmsfjin1cr0v"))))
14165 (build-system r-build-system)
14166 (propagated-inputs
14167 `(("r-backports" ,r-backports)
14168 ("r-base64url" ,r-base64url)
14169 ("r-brew" ,r-brew)
14170 ("r-checkmate" ,r-checkmate)
14171 ("r-data-table" ,r-data-table)
14172 ("r-digest" ,r-digest)
14173 ("r-fs" ,r-fs)
14174 ("r-progress" ,r-progress)
14175 ("r-r6" ,r-r6)
14176 ("r-rappdirs" ,r-rappdirs)
14177 ("r-stringi" ,r-stringi)
14178 ("r-withr" ,r-withr)))
14179 (home-page "https://github.com/mllg/batchtools")
14180 (synopsis "Tools for computation on batch systems")
14181 (description
14182 "As a successor of the packages BatchJobs and BatchExperiments, this
14183 package provides a parallel implementation of the Map function for high
14184 performance computing systems managed by various schedulers. A multicore and
14185 socket mode allow the parallelization on a local machines, and multiple
14186 machines can be hooked up via SSH to create a makeshift cluster. Moreover,
14187 the package provides an abstraction mechanism to define large-scale computer
14188 experiments in a well-organized and reproducible way.")
14189 (license license:lgpl3)))
14190
14191 (define-public r-clue
14192 (package
14193 (name "r-clue")
14194 (version "0.3-57")
14195 (source
14196 (origin
14197 (method url-fetch)
14198 (uri (cran-uri "clue" version))
14199 (sha256
14200 (base32
14201 "05rdcahawxlxci3fjxihjvvh33wqpxw50sx015165ab4nh3rsdkf"))))
14202 (build-system r-build-system)
14203 (propagated-inputs `(("r-cluster" ,r-cluster)))
14204 (home-page "https://cran.r-project.org/web/packages/clue/")
14205 (synopsis "Tools for analyzing cluster ensembles")
14206 (description "Cluster ensembles are collections of individual solutions to
14207 a given clustering problem which are useful or necessary to consider in a wide
14208 range of applications. This R package provides an extensible computational
14209 environment for creating and analyzing cluster ensembles, with basic data
14210 structures for representing partitions and hierarchies, and facilities for
14211 computing on them, including methods for measuring proximity and obtaining
14212 consensus and secondary clusterings.")
14213 (license license:gpl2)))
14214
14215 (define-public r-sitmo
14216 (package
14217 (name "r-sitmo")
14218 (version "2.0.1")
14219 (source
14220 (origin
14221 (method url-fetch)
14222 (uri (cran-uri "sitmo" version))
14223 (sha256
14224 (base32
14225 "0apdhwy3kxs39agsbvx5vn3xsgb22bf3jrwmr2cmqk9kmxbx740c"))))
14226 (build-system r-build-system)
14227 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
14228 (home-page "https://github.com/coatless/sitmo/")
14229 (synopsis "Parallel pseudo random number generator header files")
14230 (description
14231 "This package provides two high quality and fast PPRNGs that may be used
14232 in an OpenMP parallel environment. In addition, there is a generator for one
14233 dimensional low-discrepancy sequence.")
14234 (license license:expat)))
14235
14236 (define-public r-dqrng
14237 (package
14238 (name "r-dqrng")
14239 (version "0.2.0")
14240 (source
14241 (origin
14242 (method url-fetch)
14243 (uri (cran-uri "dqrng" version))
14244 (sha256
14245 (base32
14246 "07fgs08w0afgz36lh90g5gi7rc93j2c0cqc9wvakch05f178wis4"))))
14247 (build-system r-build-system)
14248 (propagated-inputs
14249 `(("r-bh" ,r-bh)
14250 ("r-rcpp" ,r-rcpp)
14251 ("r-sitmo" ,r-sitmo)))
14252 (home-page "https://www.daqana.org/dqrng")
14253 (synopsis "Fast pseudo random number generators")
14254 (description
14255 "Several fast random number generators are provided as C++ header-only
14256 libraries: the PCG family as well as Xoroshiro128+ and Xoshiro256+.
14257 Additionally, fast functions for generating random numbers according to a
14258 uniform, normal and exponential distribution are included. The latter two use
14259 the Ziggurat algorithm originally proposed by Marsaglia and Tsang. These
14260 functions are exported to R and as a C++ interface and are enabled for use
14261 with the default 64 bit generator from the PCG family, Xoroshiro128+ and
14262 Xoshiro256+ as well as the 64 bit version of the 20 rounds Threefry
14263 engine (Salmon et al., 2011) as provided by the package @code{sitmo}.")
14264 ;; This package includes code under CC0 and Apache 2.0 or Expat, but as a
14265 ;; whole is distributed under the terms of the AGPL 3.
14266 (license license:agpl3)))