gnu: Add eclib.
[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-5")
169 (source
170 (origin
171 (method url-fetch)
172 (uri (cran-uri "vegan" version))
173 (sha256
174 (base32
175 "0wb90ng02gi13854bjq0b8a2vrknyhb0s0l1v3z38c4zy9k54sw7"))))
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.4")
246 (source
247 (origin
248 (method url-fetch)
249 (uri (cran-uri "rvest" version))
250 (sha256
251 (base32
252 "0ji5lk8g1gbv4d9c4jg1fg6rgsqrrwkm05j1id7drdw9kqdifgj1"))))
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.3.0")
296 (source
297 (origin
298 (method url-fetch)
299 (uri (cran-uri "reprex" version))
300 (sha256
301 (base32
302 "0v7vxzs8alwz8y1cjicpimp5yimf1g9gb8x5wy3zhvrz6kk2lg10"))))
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 package 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.14")
457 (source (origin
458 (method url-fetch)
459 (uri (cran-uri "servr" version))
460 (sha256
461 (base32
462 "0zjjnfgas9d16fihksyk24kgkkqswb4sd0rz51id2ni1ymdyasjk"))))
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 (native-inputs
742 `(("uglify-js" ,uglify-js)))
743 (home-page "http://shiny.rstudio.com")
744 (synopsis "Easy interactive web applications with R")
745 (description
746 "Makes it incredibly easy to build interactive web applications
747 with R. Automatic \"reactive\" binding between inputs and outputs and
748 extensive prebuilt widgets make it possible to build beautiful,
749 responsive, and powerful applications with minimal effort.")
750 (license license:artistic2.0)))
751
752 (define-public r-shinydashboard
753 (package
754 (name "r-shinydashboard")
755 (version "0.7.1")
756 (source (origin
757 (method url-fetch)
758 (uri (cran-uri "shinydashboard" version))
759 (sha256
760 (base32
761 "0khac8b27q3swdw07kl609hm0fjfjsjv591b388q99mqqr2rk92i"))))
762 (build-system r-build-system)
763 ;; The directory inst/AdminLTE/ contains a minified JavaScript file.
764 ;; Regenerate it from the included sources.
765 (arguments
766 `(#:modules ((guix build utils)
767 (guix build r-build-system)
768 (ice-9 popen))
769 #:phases
770 (modify-phases %standard-phases
771 (add-after 'unpack 'generate-minified-javascript
772 (lambda _
773 (with-directory-excursion "inst/AdminLTE"
774 (delete-file "app.min.js")
775 (let ((minified (open-pipe* OPEN_READ "uglify-js" "app.js")))
776 (call-with-output-file "app.min.js"
777 (lambda (port)
778 (dump-port minified port))))))))))
779 (propagated-inputs
780 `(("r-htmltools" ,r-htmltools)
781 ("r-promises" ,r-promises)
782 ("r-shiny" ,r-shiny)))
783 (native-inputs
784 `(("uglify-js" ,uglify-js)))
785 (home-page "http://rstudio.github.io/shinydashboard/")
786 (synopsis "Create dashboards with shiny")
787 (description "This package provides an extension to the Shiny web
788 application framework for R, making it easy to create attractive dashboards.")
789 ;; This package includes software that was released under the Expat
790 ;; license, but the whole package is released under GPL version 2 or
791 ;; later.
792 (license license:gpl2+)))
793
794 (define-public r-shinyfiles
795 (package
796 (name "r-shinyfiles")
797 (version "0.7.3")
798 (source
799 (origin
800 (method url-fetch)
801 (uri (cran-uri "shinyFiles" version))
802 (sha256
803 (base32
804 "01as3l9ffj5dwac0vviais2x5l3027zxlj67kcvkdwxaj5hql33i"))))
805 (properties `((upstream-name . "shinyFiles")))
806 (build-system r-build-system)
807 (propagated-inputs
808 `(("r-fs" ,r-fs)
809 ("r-htmltools" ,r-htmltools)
810 ("r-jsonlite" ,r-jsonlite)
811 ("r-shiny" ,r-shiny)
812 ("r-tibble" ,r-tibble)))
813 (home-page "https://github.com/thomasp85/shinyFiles")
814 (synopsis "Server-side file system viewer for Shiny")
815 (description
816 "This package provides functionality for client-side navigation of the
817 server side file system in shiny apps. In case the app is running locally
818 this gives the user direct access to the file system without the need to
819 \"download\" files to a temporary location. Both file and folder selection as
820 well as file saving is available.")
821 (license license:gpl2+)))
822
823 (define-public r-crosstalk
824 (package
825 (name "r-crosstalk")
826 (version "1.0.0")
827 (source
828 (origin
829 (method url-fetch)
830 (uri (cran-uri "crosstalk" version))
831 (sha256
832 (base32
833 "0lfa89vhrzi7a1rghmygcjr8gzddw35sinb3jx6g49mc9jias7mk"))))
834 (build-system r-build-system)
835 (propagated-inputs
836 `(("r-ggplot2" ,r-ggplot2)
837 ("r-htmltools" ,r-htmltools)
838 ("r-jsonlite" ,r-jsonlite)
839 ("r-lazyeval" ,r-lazyeval)
840 ("r-r6" ,r-r6)
841 ("r-shiny" ,r-shiny)))
842 (home-page "https://rstudio.github.io/crosstalk/")
843 (synopsis "Inter-widget interactivity for HTML widgets")
844 (description
845 "This package provides building blocks for allowing HTML widgets to
846 communicate with each other, with Shiny or without (i.e. static @code{.html}
847 files). It currently supports linked brushing and filtering.")
848 (license license:expat)))
849
850 (define-public r-rook
851 (package
852 (name "r-rook")
853 (version "1.1-1")
854 (source
855 (origin
856 (method url-fetch)
857 (uri (cran-uri "Rook" version))
858 (sha256
859 (base32
860 "00s9a0kr9rwxvlq433daxjk4ji8m0w60hjdprf502msw9kxfrx00"))))
861 (properties `((upstream-name . "Rook")))
862 (build-system r-build-system)
863 (propagated-inputs `(("r-brew" ,r-brew)))
864 (home-page "https://cran.r-project.org/web/packages/Rook")
865 (synopsis "Web server interface for R")
866 (description
867 "This package contains the Rook specification and convenience software
868 for building and running Rook applications. A Rook application is an R
869 reference class object that implements a @code{call} method or an R closure
870 that takes exactly one argument, an environment, and returns a list with three
871 named elements: the @code{status}, the @code{headers}, and the @code{body}.")
872 (license license:gpl2)))
873
874 (define-public r-miniui
875 (package
876 (name "r-miniui")
877 (version "0.1.1.1")
878 (source
879 (origin
880 (method url-fetch)
881 (uri (cran-uri "miniUI" version))
882 (sha256
883 (base32
884 "1h5h2sc57h95d6bsgs95l26911g38hvjc1v50bc31xl9689l2as5"))))
885 (properties `((upstream-name . "miniUI")))
886 (build-system r-build-system)
887 (propagated-inputs
888 `(("r-htmltools" ,r-htmltools)
889 ("r-shiny" ,r-shiny)))
890 (home-page "https://cran.r-project.org/web/packages/miniUI/")
891 (synopsis "Shiny UI widgets for small screens")
892 (description
893 "This package provides UI widget and layout functions for writing Shiny apps that
894 work well on small screens.")
895 (license license:gpl3)))
896
897 (define-public r-feather
898 (package
899 (name "r-feather")
900 (version "0.3.3")
901 (source
902 (origin
903 (method url-fetch)
904 (uri (cran-uri "feather" version))
905 (sha256
906 (base32
907 "0ls8lmygyjq60467s88h66d7fczjp1d3a2106rfq4dx9lyfvdfsa"))))
908 (build-system r-build-system)
909 (propagated-inputs
910 `(("r-hms" ,r-hms)
911 ("r-rcpp" ,r-rcpp)
912 ("r-tibble" ,r-tibble)))
913 (home-page "https://github.com/wesm/feather")
914 (synopsis "R Bindings to the Feather API")
915 (description "Read and write feather files, a lightweight binary columnar
916 data store designed for maximum speed.")
917 (license license:asl2.0)))
918
919 (define-public r-maps
920 (package
921 (name "r-maps")
922 (version "3.3.0")
923 (source
924 (origin
925 (method url-fetch)
926 (uri (cran-uri "maps" version))
927 (sha256
928 (base32
929 "05i2ppl5z4p8rawgqmy3z4ia05fcblpq1vvrmrkgkkpdlhczx6hr"))))
930 (build-system r-build-system)
931 (home-page "https://cran.r-project.org/web/packages/maps")
932 (synopsis "Draw geographical maps")
933 (description "This package provides an R module for display of maps.
934 Projection code and larger maps are in separate packages (@code{mapproj} and
935 @code{mapdata}).")
936 (license license:gpl2)))
937
938 (define-public r-mapproj
939 (package
940 (name "r-mapproj")
941 (version "1.2.6")
942 (source
943 (origin
944 (method url-fetch)
945 (uri (cran-uri "mapproj" version))
946 (sha256
947 (base32
948 "1rggww8cbwv0vzlj5afzhbsbngg4bzj5znbkz7wmxsbshfbsm9b2"))))
949 (build-system r-build-system)
950 (propagated-inputs `(("r-maps" ,r-maps)))
951 (home-page "https://cran.r-project.org/web/packages/mapproj")
952 (synopsis "Map projection in R")
953 (description "This package converts latitude/longitude into projected
954 coordinates.")
955 (license (list license:gpl2 ; The R interface
956 (license:non-copyleft ; The C code
957 "https://www.gnu.org/licenses/license-list.en.html#lucent102"
958 "Lucent Public License Version 1.02")))))
959
960 (define-public r-rgooglemaps
961 (package
962 (name "r-rgooglemaps")
963 (version "1.4.3")
964 (source
965 (origin
966 (method url-fetch)
967 (uri (cran-uri "RgoogleMaps" version))
968 (sha256
969 (base32
970 "06ab3lg1rwm93hkshf1vxfm8mlxq5qsjan0wx43lhnrysay65js4"))))
971 (properties `((upstream-name . "RgoogleMaps")))
972 (build-system r-build-system)
973 (propagated-inputs `(("r-png" ,r-png)))
974 (home-page "https://cran.r-project.org/web/packages/RgoogleMaps")
975 (synopsis "Use Google Maps in R")
976 (description "This package serves two purposes:
977 @enumerate
978 @item Provide a comfortable R interface to query the Google server for static
979 maps, and
980 @item Use the map as a background image to overlay plots within R. This
981 requires proper coordinate scaling.
982 @end enumerate\n")
983 (license license:gpl2+)))
984
985 (define-public r-geosphere
986 (package
987 (name "r-geosphere")
988 (version "1.5-10")
989 (source
990 (origin
991 (method url-fetch)
992 (uri (cran-uri "geosphere" version))
993 (sha256
994 (base32
995 "15xlgsmn0vwky1l13n6acdz6jn2b2na3gf6x367y3qh1f5w4zkan"))))
996 (build-system r-build-system)
997 (propagated-inputs `(("r-sp" ,r-sp)))
998 (home-page "https://cran.r-project.org/web/packages/geosphere")
999 (synopsis "Spherical trigonometry")
1000 (description "This package computes spherical trigonometry for geographic
1001 applications. That is, compute distances and related measures for angular
1002 (longitude/latitude) locations.")
1003 (license license:gpl3+)))
1004
1005 (define-public r-ggmap
1006 (package
1007 (name "r-ggmap")
1008 (version "3.0.0")
1009 (source
1010 (origin
1011 (method url-fetch)
1012 (uri (cran-uri "ggmap" version))
1013 (sha256
1014 (base32
1015 "13dmzl6z62pzjiffilarkji46vy0sacxa8a7mhrhc3biq3ylzhln"))))
1016 (build-system r-build-system)
1017 (propagated-inputs
1018 `(("r-bitops" ,r-bitops)
1019 ("r-digest" ,r-digest)
1020 ("r-dplyr" ,r-dplyr)
1021 ("r-ggplot2" ,r-ggplot2)
1022 ("r-glue" ,r-glue)
1023 ("r-httr" ,r-httr)
1024 ("r-jpeg" ,r-jpeg)
1025 ("r-magrittr" ,r-magrittr)
1026 ("r-plyr" ,r-plyr)
1027 ("r-png" ,r-png)
1028 ("r-purrr" ,r-purrr)
1029 ("r-rgooglemaps" ,r-rgooglemaps)
1030 ("r-rjson" ,r-rjson)
1031 ("r-scales" ,r-scales)
1032 ("r-stringr" ,r-stringr)
1033 ("r-tibble" ,r-tibble)
1034 ("r-tidyr" ,r-tidyr)))
1035 (home-page "https://github.com/dkahle/ggmap")
1036 (synopsis "Spatial visualization with ggplot2")
1037 (description "This package provides a collection of functions to visualize
1038 spatial data and models on top of static maps from various online sources (e.g
1039 Google Maps and Stamen Maps). It includes tools common to those tasks,
1040 including functions for geolocation and routing.")
1041 (license license:gpl2)))
1042
1043 (define-public r-haven
1044 (package
1045 (name "r-haven")
1046 (version "2.1.0")
1047 (source
1048 (origin
1049 (method url-fetch)
1050 (uri (cran-uri "haven" version))
1051 (sha256
1052 (base32
1053 "0x5fwc4q2gdxwwp5sxdd6q17jhpisd769y9kv0xgnjcm0cdwz8f0"))))
1054 (build-system r-build-system)
1055 (inputs
1056 `(("zlib" ,zlib)))
1057 (propagated-inputs
1058 `(("r-forcats" ,r-forcats)
1059 ("r-hms" ,r-hms)
1060 ("r-rcpp" ,r-rcpp)
1061 ("r-readr" ,r-readr)
1062 ("r-tibble" ,r-tibble)))
1063 (home-page "https://haven.tidyverse.org")
1064 (synopsis "Import and Export 'SPSS', 'Stata' and 'SAS' Files")
1065 (description
1066 "This package lets you mport foreign statistical formats into R via the
1067 embedded @url{https://github.com/WizardMac/ReadStat,ReadStat} C library.")
1068 (license license:expat)))
1069
1070 (define-public r-amap
1071 (package
1072 (name "r-amap")
1073 (version "0.8-17")
1074 (source (origin
1075 (method url-fetch)
1076 (uri (cran-uri "amap" version))
1077 (sha256
1078 (base32
1079 "1il94bkhl8192vawq4gr2gwyhqhid27jr2312rhvr72ssg8p713b"))))
1080 (build-system r-build-system)
1081 (native-inputs
1082 `(("gfortran" ,gfortran)))
1083 (home-page "http://mulcyber.toulouse.inra.fr/projects/amap/")
1084 (synopsis "Another multidimensional analysis package")
1085 (description "This package provides tools for clustering and principal
1086 component analysis (with robust methods, and parallelized functions).")
1087 (license license:gpl2+)))
1088
1089 (define-public r-ape
1090 (package
1091 (name "r-ape")
1092 (version "5.3")
1093 (source
1094 (origin
1095 (method url-fetch)
1096 (uri (cran-uri "ape" version))
1097 (sha256
1098 (base32
1099 "08wbk1kxhs32bmmvqlqanbdg1w235amd35k8m00fngsj9h9xzc08"))))
1100 (build-system r-build-system)
1101 (propagated-inputs
1102 `(("r-lattice" ,r-lattice)
1103 ("r-nlme" ,r-nlme)
1104 ("r-rcpp" ,r-rcpp)))
1105 (home-page "http://ape-package.ird.fr/")
1106 (synopsis "Analyses of phylogenetics and evolution")
1107 (description
1108 "This package provides functions for reading, writing, plotting, and
1109 manipulating phylogenetic trees, analyses of comparative data in a
1110 phylogenetic framework, ancestral character analyses, analyses of
1111 diversification and macroevolution, computing distances from DNA sequences,
1112 and several other tools.")
1113 (license license:gpl2+)))
1114
1115 (define-public r-abbyyr
1116 (package
1117 (name "r-abbyyr")
1118 (version "0.5.4")
1119 (source
1120 (origin
1121 (method url-fetch)
1122 (uri (cran-uri "abbyyR" version))
1123 (sha256
1124 (base32
1125 "1jh1c1ad6mgw7brdh2isnza1qpjlfxnqr7jl76yd93axyfl76xjx"))))
1126 (properties `((upstream-name . "abbyyR")))
1127 (build-system r-build-system)
1128 (propagated-inputs
1129 `(("r-curl" ,r-curl)
1130 ("r-httr" ,r-httr)
1131 ("r-plyr" ,r-plyr)
1132 ("r-progress" ,r-progress)
1133 ("r-readr" ,r-readr)
1134 ("r-xml" ,r-xml)))
1135 (home-page "https://github.com/soodoku/abbyyR")
1136 (synopsis "Access to Abbyy Optical Character Recognition (OCR) API")
1137 (description
1138 "This package provides tools to get text from images of text using Abbyy
1139 Cloud Optical Character Recognition (OCR) API. With abbyyyR, one can easily
1140 OCR images, barcodes, forms, documents with machine readable zones, e.g.
1141 passports and get the results in a variety of formats including plain text and
1142 XML. To learn more about the Abbyy OCR API, see @url{http://ocrsdk.com/}.")
1143 (license license:expat)))
1144
1145 (define-public r-colorspace
1146 (package
1147 (name "r-colorspace")
1148 (version "1.4-1")
1149 (source
1150 (origin
1151 (method url-fetch)
1152 (uri (cran-uri "colorspace" version))
1153 (sha256
1154 (base32 "0wyny3ah2d74hqv80s6imrarpna09gq3j9rjnz6zx2qg0lx72gb9"))))
1155 (build-system r-build-system)
1156 (home-page "https://cran.r-project.org/web/packages/colorspace")
1157 (synopsis "Color space manipulation")
1158 (description
1159 "This package carries out a mapping between assorted color spaces
1160 including RGB, HSV, HLS, CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB and polar
1161 CIELAB. Qualitative, sequential, and diverging color palettes based on HCL
1162 colors are provided.")
1163 (license license:bsd-3)))
1164
1165 (define-public r-glue
1166 (package
1167 (name "r-glue")
1168 (version "1.3.1")
1169 (source
1170 (origin
1171 (method url-fetch)
1172 (uri (cran-uri "glue" version))
1173 (sha256
1174 (base32
1175 "1a1ycg9r3gd91visp49q49rsrdgyf8kr9dxdy3hk99kikn4z5hag"))))
1176 (build-system r-build-system)
1177 (home-page "https://github.com/tidyverse/glue")
1178 (synopsis "Interpreted string literals")
1179 (description
1180 "This package provides an implementation of interpreted string literals,
1181 inspired by Python's Literal String Interpolation (PEP-0498) and
1182 Docstrings (PEP-0257) and Julia's Triple-Quoted String Literals.")
1183 (license license:expat)))
1184
1185 (define-public r-pastecs
1186 (package
1187 (name "r-pastecs")
1188 (version "1.3.21")
1189 (source (origin
1190 (method url-fetch)
1191 (uri (cran-uri "pastecs" version))
1192 (sha256
1193 (base32
1194 "0z4dic94ar646w7zc2ggi5hgvf2qnznsani94c5pyql8zspz47lc"))))
1195 (build-system r-build-system)
1196 (propagated-inputs
1197 `(("r-boot" ,r-boot)))
1198 (home-page "http://www.sciviews.org/pastecs")
1199 (synopsis "Analysis of space-time ecological series")
1200 (description
1201 "This package provides functions for regulation, decomposition and analysis
1202 of space-time series. The @code{pastecs} library is a PNEC-Art4 and IFREMER
1203 initiative to bring PASSTEC 2000 functionalities to R.")
1204 (license license:gpl2+)))
1205
1206 (define-public r-plogr
1207 (package
1208 (name "r-plogr")
1209 (version "0.2.0")
1210 (source
1211 (origin
1212 (method url-fetch)
1213 (uri (cran-uri "plogr" version))
1214 (sha256
1215 (base32
1216 "0a8dhzlna79ggyhfr0nncgh15a9n6r0dsz664pz0ah323wpblqqf"))))
1217 (build-system r-build-system)
1218 (home-page "https://github.com/krlmlr/plogr")
1219 (synopsis "R bindings for the plog C++ logging library")
1220 (description
1221 "This package provides the header files for a stripped-down version of
1222 the plog header-only C++ logging library, and a method to log to R's standard
1223 error stream.")
1224 (license license:expat)))
1225
1226 (define-public r-pls
1227 (package
1228 (name "r-pls")
1229 (version "2.7-1")
1230 (source
1231 (origin
1232 (method url-fetch)
1233 (uri (cran-uri "pls" version))
1234 (sha256
1235 (base32
1236 "0jw3zl5z06023zxr74phnvwax8m3i4a4i6lsqiq6j15aq9zq3zgq"))))
1237 (build-system r-build-system)
1238 (home-page "http://mevik.net/work/software/pls.html")
1239 (synopsis "Partial Least Squares and Principal Component Regression")
1240 (description
1241 "The pls package implements multivariate regression methods: Partial Least
1242 Squares Regression (@dfn{PLSR}), Principal Component Regression (@dfn{PCR}), and
1243 Canonical Powered Partial Least Squares (@dfn{CPPLS}). It supports:
1244
1245 @itemize
1246 @item several algorithms: the traditional orthogonal scores (@dfn{NIPALS}) PLS
1247 algorithm, kernel PLS, wide kernel PLS, Simpls, and PCR through @code{svd}
1248 @item multi-response models (or @dfn{PLS2})
1249 @item flexible cross-validation
1250 @item Jackknife variance estimates of regression coefficients
1251 @item extensive and flexible plots: scores, loadings, predictions, coefficients,
1252 (R)MSEP, R², and correlation loadings
1253 @item formula interface, modelled after @code{lm()}, with methods for predict,
1254 print, summary, plot, update, etc.
1255 @item extraction functions for coefficients, scores, and loadings
1256 @item MSEP, RMSEP, and R² estimates
1257 @item multiplicative scatter correction (@dfn{MSC})
1258 @end itemize\n")
1259 (license license:gpl2)))
1260
1261 (define-public r-ps
1262 (package
1263 (name "r-ps")
1264 (version "1.3.0")
1265 (source
1266 (origin
1267 (method url-fetch)
1268 (uri (cran-uri "ps" version))
1269 (sha256
1270 (base32 "1lcq7r0q4jb8x6k023zr2ydj2dg925bqqbkhx1phpnyjrk897498"))))
1271 (build-system r-build-system)
1272 (home-page "http://ps.r-lib.org")
1273 (synopsis "List, query, and manipulate system processes")
1274 (description
1275 "The ps package implements an API to list, query, and manipulate system
1276 processes. Most of its code is based on the @code{psutil} Python package.")
1277 (license license:bsd-3)))
1278
1279 (define-public r-pkgbuild
1280 (package
1281 (name "r-pkgbuild")
1282 (version "1.0.3")
1283 (source
1284 (origin
1285 (method url-fetch)
1286 (uri (cran-uri "pkgbuild" version))
1287 (sha256
1288 (base32
1289 "0k8zwa66rm1ncx19ld5mbaxcjxkswiczpdqyssy44vl8k6scwfn9"))))
1290 (build-system r-build-system)
1291 (propagated-inputs
1292 `(("r-callr" ,r-callr)
1293 ("r-cli" ,r-cli)
1294 ("r-crayon" ,r-crayon)
1295 ("r-desc" ,r-desc)
1296 ("r-prettyunits" ,r-prettyunits)
1297 ("r-r6" ,r-r6)
1298 ("r-rprojroot" ,r-rprojroot)
1299 ("r-withr" ,r-withr)))
1300 (home-page "https://github.com/r-pkgs/pkgbuild")
1301 (synopsis "Find tools needed to build R packages")
1302 (description
1303 "This package provides functions used to build R packages. It locates
1304 compilers needed to build R packages on various platforms and ensures the PATH
1305 is configured appropriately so R can use them.")
1306 (license license:gpl3)))
1307
1308 (define-public r-pkgload
1309 (package
1310 (name "r-pkgload")
1311 (version "1.0.2")
1312 (source
1313 (origin
1314 (method url-fetch)
1315 (uri (cran-uri "pkgload" version))
1316 (sha256
1317 (base32
1318 "0z7jvharafahi2gv5547mk1n499isjzw06kfwymmxc0gd575d1ii"))))
1319 (build-system r-build-system)
1320 (propagated-inputs
1321 `(("r-desc" ,r-desc)
1322 ("r-pkgbuild" ,r-pkgbuild)
1323 ("r-rlang" ,r-rlang)
1324 ("r-rprojroot" ,r-rprojroot)
1325 ("r-rstudioapi" ,r-rstudioapi)
1326 ("r-withr" ,r-withr)))
1327 (home-page "https://github.com/r-lib/pkgload")
1328 (synopsis "Simulate package installation and attach")
1329 (description
1330 "This package simulates the process of installing a package and then
1331 attaching it. This is a key part of the @code{devtools} package as it allows
1332 you to rapidly iterate while developing a package.")
1333 (license license:gpl3)))
1334
1335 (define-public r-rcpp
1336 (package
1337 (name "r-rcpp")
1338 (version "1.0.1")
1339 (source
1340 (origin
1341 (method url-fetch)
1342 (uri (cran-uri "Rcpp" version))
1343 (sha256
1344 (base32 "015rmxns8mhmnd9wnz9bmma4iwx2sf4bcwkkp9hcgvdmblzf0vg7"))))
1345 (build-system r-build-system)
1346 (native-inputs
1347 `(("r-knitr" ,r-knitr))) ; for vignettes
1348 (home-page "http://www.rcpp.org")
1349 (synopsis "Seamless R and C++ integration")
1350 (description
1351 "The Rcpp package provides R functions as well as C++ classes which offer
1352 a seamless integration of R and C++. Many R data types and objects can be
1353 mapped back and forth to C++ equivalents which facilitates both writing of new
1354 code as well as easier integration of third-party libraries. Documentation
1355 about Rcpp is provided by several vignettes included in this package, via the
1356 @code{Rcpp Gallery} site at <http://gallery.rcpp.org>, the paper by Eddelbuettel
1357 and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see
1358 @code{citation(\"Rcpp\")} for details on these last two.")
1359 (license license:gpl2+)))
1360
1361 (define-public r-bindr
1362 (package
1363 (name "r-bindr")
1364 (version "0.1.1")
1365 (source
1366 (origin
1367 (method url-fetch)
1368 (uri (cran-uri "bindr" version))
1369 (sha256
1370 (base32
1371 "1l05fpk2yql3jka321c0bdgx6mqq9pvfrg2844lbjfpbgjkmqy3w"))))
1372 (build-system r-build-system)
1373 (home-page "https://github.com/krlmlr/bindr")
1374 (synopsis "Parametrized active bindings")
1375 (description
1376 "This package provides a simple interface for creating active bindings
1377 where the bound function accepts additional arguments.")
1378 (license license:expat)))
1379
1380 (define-public r-bindrcpp
1381 (package
1382 (name "r-bindrcpp")
1383 (version "0.2.2")
1384 (source
1385 (origin
1386 (method url-fetch)
1387 (uri (cran-uri "bindrcpp" version))
1388 (sha256
1389 (base32
1390 "0rz4ibjdjsxl99ff3ha79z7cnjmilx4rx58fk9kk7ld9xc4hf4s8"))))
1391 (build-system r-build-system)
1392 (propagated-inputs
1393 `(("r-bindr" ,r-bindr)
1394 ("r-plogr" ,r-plogr)
1395 ("r-rcpp" ,r-rcpp)))
1396 (home-page "https://github.com/krlmlr/bindrcpp")
1397 (synopsis "Rcpp interface to active bindings")
1398 (description
1399 "This package provides an easy way to fill an environment with active
1400 bindings that call a C++ function.")
1401 (license license:expat)))
1402
1403 (define-public r-auc
1404 (package
1405 (name "r-auc")
1406 (version "0.3.0")
1407 (source
1408 (origin
1409 (method url-fetch)
1410 (uri (cran-uri "AUC" version))
1411 (sha256
1412 (base32
1413 "0ripcib2qz0m7rgr1kiz68nx8f6p408l1ww7j78ljqik7p3g41g7"))))
1414 (properties `((upstream-name . "AUC")))
1415 (build-system r-build-system)
1416 (home-page "https://cran.r-project.org/web/packages/AUC")
1417 (synopsis "Compute the area under the curve of selected measures")
1418 (description
1419 "This package includes functions to compute the area under the curve of
1420 selected measures: the area under the sensitivity curve (AUSEC), the area
1421 under the specificity curve (AUSPC), the area under the accuracy
1422 curve (AUACC), and the area under the receiver operating characteristic
1423 curve (AUROC). The curves can also be visualized. Support for partial areas
1424 is provided.")
1425 (license license:gpl2+)))
1426
1427 (define-public r-calibrate
1428 (package
1429 (name "r-calibrate")
1430 (version "1.7.2")
1431 (source
1432 (origin
1433 (method url-fetch)
1434 (uri (cran-uri "calibrate" version))
1435 (sha256
1436 (base32
1437 "010nb1nb9y7zhw2k6d2i2drwy5brp7b83mjj2w7i3wjp9xb6l1kq"))))
1438 (build-system r-build-system)
1439 (propagated-inputs
1440 `(("r-mass" ,r-mass)))
1441 (home-page "https://cran.r-project.org/web/packages/calibrate")
1442 (synopsis "Calibration of scatterplot and biplot axes")
1443 (description
1444 "This is a package for drawing calibrated scales with tick marks
1445 on (non-orthogonal) variable vectors in scatterplots and biplots.")
1446 (license license:gpl2)))
1447
1448 (define-public r-shape
1449 (package
1450 (name "r-shape")
1451 (version "1.4.4")
1452 (source
1453 (origin
1454 (method url-fetch)
1455 (uri (cran-uri "shape" version))
1456 (sha256
1457 (base32
1458 "0hadk3mapkhbh8xjkiz52vxdagmmgvm15xwpzb90ikw4giyipjzl"))))
1459 (build-system r-build-system)
1460 (home-page "https://cran.r-project.org/web/packages/shape")
1461 (synopsis "Functions for plotting graphical shapes")
1462 (description
1463 "This package provides functions for plotting graphical shapes such as
1464 ellipses, circles, cylinders, arrows, ...")
1465 (license license:gpl3+)))
1466
1467 (define-public r-globaloptions
1468 (package
1469 (name "r-globaloptions")
1470 (version "0.1.0")
1471 (source
1472 (origin
1473 (method url-fetch)
1474 (uri (cran-uri "GlobalOptions" version))
1475 (sha256
1476 (base32
1477 "1wlyqz1yhmhjwslrd7q69jbd9vsbjkjfc01g60kl3cdpyr8hlyjn"))))
1478 (properties `((upstream-name . "GlobalOptions")))
1479 (build-system r-build-system)
1480 (home-page "https://github.com/jokergoo/GlobalOptions")
1481 (synopsis "Generate functions to get or set global options")
1482 (description
1483 "This package provides more controls on the option values such as
1484 validation and filtering on the values, making options invisible or private.")
1485 (license license:gpl2+)))
1486
1487 (define-public r-circlize
1488 (package
1489 (name "r-circlize")
1490 (version "0.4.6")
1491 (source
1492 (origin
1493 (method url-fetch)
1494 (uri (cran-uri "circlize" version))
1495 (sha256
1496 (base32
1497 "1yjnb88pnzk5c1p0vjxykc7cr3394ln5axviqcf12ajibvy8rj6f"))))
1498 (build-system r-build-system)
1499 (propagated-inputs
1500 `(("r-colorspace" ,r-colorspace)
1501 ("r-globaloptions" ,r-globaloptions)
1502 ("r-shape" ,r-shape)))
1503 (home-page "https://github.com/jokergoo/circlize")
1504 (synopsis "Circular visualization")
1505 (description
1506 "Circular layout is an efficient way to visualise huge amounts of
1507 information. This package provides an implementation of circular layout
1508 generation in R as well as an enhancement of available software. Its
1509 flexibility is based on the usage of low-level graphics functions such that
1510 self-defined high-level graphics can be easily implemented by users for
1511 specific purposes. Together with the seamless connection between the powerful
1512 computational and visual environment in R, it gives users more convenience and
1513 freedom to design figures for better understanding complex patterns behind
1514 multi-dimensional data.")
1515 (license license:gpl2+)))
1516
1517 (define-public r-powerlaw
1518 (package
1519 (name "r-powerlaw")
1520 (version "0.70.2")
1521 (source
1522 (origin
1523 (method url-fetch)
1524 (uri (cran-uri "poweRlaw" version))
1525 (sha256
1526 (base32
1527 "1asr6ikr7hmj78jyg8r1gwvcjg14addkxdiz92nh06lv71a183r4"))))
1528 (properties `((upstream-name . "poweRlaw")))
1529 (build-system r-build-system)
1530 (propagated-inputs
1531 `(("r-vgam" ,r-vgam)))
1532 (home-page "https://github.com/csgillespie/poweRlaw")
1533 (synopsis "Tools for the analysis of heavy tailed distributions")
1534 (description
1535 "This package provides an implementation of maximum likelihood estimators
1536 for a variety of heavy tailed distributions, including both the discrete and
1537 continuous power law distributions. Additionally, a goodness-of-fit based
1538 approach is used to estimate the lower cut-off for the scaling region.")
1539 ;; Any of these GPL versions.
1540 (license (list license:gpl2 license:gpl3))))
1541
1542 (define-public r-compare
1543 (package
1544 (name "r-compare")
1545 (version "0.2-6")
1546 (source
1547 (origin
1548 (method url-fetch)
1549 (uri (cran-uri "compare" version))
1550 (sha256
1551 (base32
1552 "0k9zms930b5dz9gy8414li21wy0zg9x9vp7301v5cvyfi0g7xzgw"))))
1553 (build-system r-build-system)
1554 (home-page "https://cran.r-project.org/web/packages/compare")
1555 (synopsis "Comparing objects for differences")
1556 (description
1557 "This package provides functions to compare a model object to a
1558 comparison object. If the objects are not identical, the functions can be
1559 instructed to explore various modifications of the objects (e.g., sorting
1560 rows, dropping names) to see if the modified versions are identical.")
1561 (license license:gpl2+)))
1562
1563 (define-public r-dendextend
1564 (package
1565 (name "r-dendextend")
1566 (version "1.12.0")
1567 (source
1568 (origin
1569 (method url-fetch)
1570 (uri (cran-uri "dendextend" version))
1571 (sha256
1572 (base32
1573 "0mgsc9qkr5p6hss3wychdjvk263ay48yx543wawj72l7q7cgx1xl"))))
1574 (build-system r-build-system)
1575 (propagated-inputs
1576 `(("r-ggplot2" ,r-ggplot2)
1577 ("r-magrittr" ,r-magrittr)
1578 ("r-viridis" ,r-viridis)))
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.2")
1731 (source
1732 (origin
1733 (method url-fetch)
1734 (uri (cran-uri "progress" version))
1735 (sha256
1736 (base32
1737 "0dgzb362641aqm8xd88iqa8jmpdm43xs0aba0d5kk6fvapnxi95l"))))
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.1")
2072 (source
2073 (origin
2074 (method url-fetch)
2075 (uri (cran-uri "lpSolve" version))
2076 (sha256
2077 (base32
2078 "1f10ywlaaldgjj84vs108ly0nsbkrdgbn5d6qj7nk93j1x1xrn3a"))))
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-9")
2210 (source
2211 (origin
2212 (method url-fetch)
2213 (uri (cran-uri "kSamples" version))
2214 (sha256
2215 (base32
2216 "1zs22p68d6320kcylisnk0b5wmpapxkyz15py09czxzw7npw8gms"))))
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.3")
2364 (source
2365 (origin
2366 (method url-fetch)
2367 (uri (cran-uri "dimRed" version))
2368 (sha256
2369 (base32
2370 "110d6y83ib1nfpxzmvkvb3fn3brskwkdbsk4dqrdrswrd4znxrg6"))))
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.1")
2553 (source
2554 (origin
2555 (method url-fetch)
2556 (uri (cran-uri "gower" version))
2557 (sha256
2558 (base32
2559 "007ivwn1nagpi26qq8iih1c2l61c53glvv60n90hi341ry8vwgxg"))))
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.1")
2777 (source
2778 (origin
2779 (method url-fetch)
2780 (uri (cran-uri "ggrepel" version))
2781 (sha256
2782 (base32
2783 "10vjrcmx8yknfbx93d9a4y3z8gafri0fhimw6hcq733dmdvkml6m"))))
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.2")
2823 (source
2824 (origin
2825 (method url-fetch)
2826 (uri (cran-uri "stringdist" version))
2827 (sha256
2828 (base32
2829 "0nw8c317qkfq63pr0prl0hx522ddfq4cbgixb5r4pq3fxk9z303l"))))
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-8")
2898 (source
2899 (origin
2900 (method url-fetch)
2901 (uri (cran-uri "jomo" version))
2902 (sha256
2903 (base32
2904 "097zfdcqc3a45ay8xxbraqh8xsfyivskkdmc2b4ca4n979lx8vyb"))))
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.5.0")
2971 (source
2972 (origin
2973 (method url-fetch)
2974 (uri (cran-uri "mice" version))
2975 (sha256
2976 (base32
2977 "0icydc312sbvzbp0r0mhs2r77a2ly2xvz5w5amirz3wdkvgyrk2g"))))
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 package 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.1")
3473 (source
3474 (origin
3475 (method url-fetch)
3476 (uri (cran-uri "processx" version))
3477 (sha256
3478 (base32
3479 "1bhbfacx2z2d97pz5bch45nvbvywhx2zp049czlfbdivkzgxn8v1"))))
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-7")
3500 (source
3501 (origin
3502 (method url-fetch)
3503 (uri (cran-uri "TSP" version))
3504 (sha256
3505 (base32
3506 "0rxxhvqi55869dg2p82hzg5kvgcqf9h60cjcg00k3pv9aw4x07kb"))))
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-7")
3587 (source
3588 (origin
3589 (method url-fetch)
3590 (uri (cran-uri "seriation" version))
3591 (sha256
3592 (base32
3593 "0dbz5b5msy4fr2whhphyriqk1xc6305zpjq59rrwxyz3d7rzwpa6"))))
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.7")
3621 (source
3622 (origin
3623 (method url-fetch)
3624 (uri (cran-uri "xfun" version))
3625 (sha256
3626 (base32
3627 "1gllyyjhkvswcwa15h1f3kb1l1drs2ifpxy4jjanmmhaj7wcmvy9"))))
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-zeallot
3657 (package
3658 (name "r-zeallot")
3659 (version "0.1.0")
3660 (source
3661 (origin
3662 (method url-fetch)
3663 (uri (cran-uri "zeallot" version))
3664 (sha256
3665 (base32
3666 "1sd1igcfnv27pa3bqxlbyxchi562h7grnjg1l7wxx3bwr49i57s3"))))
3667 (build-system r-build-system)
3668 (home-page "https://github.com/nteetor/zeallot")
3669 (synopsis "Multiple, unpacking, and destructuring assignment")
3670 (description
3671 "This package provides a @code{%<-%} operator to perform multiple,
3672 unpacking, and destructuring assignment in R. The operator unpacks the
3673 right-hand side of an assignment into multiple values and assigns these values
3674 to variables on the left-hand side of the assignment.")
3675 (license license:expat)))
3676
3677 (define-public r-vctrs
3678 (package
3679 (name "r-vctrs")
3680 (version "0.1.0")
3681 (source
3682 (origin
3683 (method url-fetch)
3684 (uri (cran-uri "vctrs" version))
3685 (sha256
3686 (base32
3687 "13w1r8zpalirpfaz5sykpn0mj4jmhxi2qkdcfq081ixlfjyzwa6c"))))
3688 (build-system r-build-system)
3689 (propagated-inputs
3690 `(("r-backports" ,r-backports)
3691 ("r-digest" ,r-digest)
3692 ("r-glue" ,r-glue)
3693 ("r-rlang" ,r-rlang)
3694 ("r-zeallot" ,r-zeallot)))
3695 (home-page "https://github.com/r-lib/vctrs")
3696 (synopsis "Vector helpers")
3697 (description
3698 "There are three main goals to the @code{vctrs} package:
3699
3700 @enumerate
3701 @item To propose @code{vec_size()} and @code{vec_type()} as alternatives to
3702 @code{length()} and @code{class()}. These definitions are paired with a
3703 framework for type-coercion and size-recycling.
3704 @item To define type- and size-stability as desirable function properties, use
3705 them to analyse existing base function, and to propose better alternatives.
3706 This work has been particularly motivated by thinking about the ideal
3707 properties of @code{c()}, @code{ifelse()}, and @code{rbind()}.
3708 @item To provide a new @code{vctr} base class that makes it easy to create new
3709 S3 vectors. @code{vctrs} provides methods for many base generics in terms of
3710 a few new @code{vctrs} generics, making implementation considerably simpler
3711 and more robust.
3712 @end enumerate\n")
3713 (license license:gpl3)))
3714
3715 (define-public r-pillar
3716 (package
3717 (name "r-pillar")
3718 (version "1.4.1")
3719 (source
3720 (origin
3721 (method url-fetch)
3722 (uri (cran-uri "pillar" version))
3723 (sha256
3724 (base32
3725 "0mcc09caxm69pghhz6b8vawj9ni63aijv5qba53pg4ph7rxclwgm"))))
3726 (build-system r-build-system)
3727 (propagated-inputs
3728 `(("r-cli" ,r-cli)
3729 ("r-crayon" ,r-crayon)
3730 ("r-fansi" ,r-fansi)
3731 ("r-rlang" ,r-rlang)
3732 ("r-utf8" ,r-utf8)
3733 ("r-vctrs" ,r-vctrs)))
3734 (home-page "https://github.com/r-lib/pillar")
3735 (synopsis "Coloured formatting for columns")
3736 (description
3737 "This package provides a @code{pillar} generic designed for formatting
3738 columns of data using the full range of colours provided by modern
3739 terminals.")
3740 (license license:gpl3)))
3741
3742 (define-public r-uuid
3743 (package
3744 (name "r-uuid")
3745 (version "0.1-2")
3746 (source
3747 (origin
3748 (method url-fetch)
3749 (uri (cran-uri "uuid" version))
3750 (sha256
3751 (base32
3752 "1gmisd630fc8ybg845hbg13wmm3pk3npaamrh5wqbc1nqd6p0wfx"))))
3753 (build-system r-build-system)
3754 (home-page "http://www.rforge.net/uuid")
3755 (synopsis "Tools for generating and handling of UUIDs")
3756 (description
3757 "This package provides tools for generating and handling of
3758 @dfn{Universally Unique Identifiers} (UUIDs).")
3759 (license license:expat)))
3760
3761 (define-public r-tinytex
3762 (package
3763 (name "r-tinytex")
3764 (version "0.13")
3765 (source
3766 (origin
3767 (method url-fetch)
3768 (uri (cran-uri "tinytex" version))
3769 (sha256
3770 (base32
3771 "1bbphyrbk2rnyi0jhw4hj2w4l84kyhb0km901qd5qnnl0cy6dzvb"))))
3772 (build-system r-build-system)
3773 (propagated-inputs
3774 `(("r-xfun" ,r-xfun)))
3775 (home-page "https://github.com/yihui/tinytex")
3776 (synopsis "Helper functions for TeX Live and compiling LaTeX documents")
3777 (description
3778 "This package provides helper functions to install and maintain the LaTeX
3779 distribution named TinyTeX, a lightweight, cross-platform, portable, and
3780 easy-to-maintain version of TeX Live. This package also contains helper
3781 functions to compile LaTeX documents, and install missing LaTeX packages
3782 automatically.")
3783 (license license:expat)))
3784
3785 (define-public r-metap
3786 (package
3787 (name "r-metap")
3788 (version "1.1")
3789 (source
3790 (origin
3791 (method url-fetch)
3792 (uri (cran-uri "metap" version))
3793 (sha256
3794 (base32
3795 "10kv7z8pik5iy374h399vws0ldf41y2nczlwh8axqf9dcwl084i0"))))
3796 (build-system r-build-system)
3797 (propagated-inputs
3798 `(("r-lattice" ,r-lattice)
3799 ("r-rdpack" ,r-rdpack)))
3800 (home-page "http://www.dewey.myzen.co.uk/meta/meta.html")
3801 (synopsis "Meta-analysis of significance values")
3802 (description
3803 "The canonical way to perform meta-analysis involves using effect sizes.
3804 When they are not available this package provides a number of methods for
3805 meta-analysis of significance values including the methods of Edgington,
3806 Fisher, Stouffer, Tippett, and Wilkinson; a number of data-sets to replicate
3807 published results; and a routine for graphical display.")
3808 (license license:gpl2)))
3809
3810 (define-public r-network
3811 (package
3812 (name "r-network")
3813 (version "1.15")
3814 (source
3815 (origin
3816 (method url-fetch)
3817 (uri (cran-uri "network" version))
3818 (sha256
3819 (base32
3820 "1cscw5978fyixhkicf06c4b2g1yf6gyi8vx86cz3dy75d41mrgjw"))))
3821 (build-system r-build-system)
3822 (propagated-inputs
3823 `(("r-magrittr" ,r-magrittr)
3824 ("r-tibble" ,r-tibble)))
3825 (home-page "https://statnet.org/")
3826 (synopsis "Classes for relational data")
3827 (description
3828 "This package provides tools to create and modify network objects. The
3829 @code{network} class can represent a range of relational data types, and
3830 supports arbitrary vertex/edge/graph attributes.")
3831 (license license:gpl2+)))
3832
3833 (define-public r-statnet-common
3834 (package
3835 (name "r-statnet-common")
3836 (version "4.3.0")
3837 (source
3838 (origin
3839 (method url-fetch)
3840 (uri (cran-uri "statnet.common" version))
3841 (sha256
3842 (base32
3843 "0ng90i0wm9wlyhjbnmnylc1bbqw396p1dr7f402dyry9x9ck6jl3"))))
3844 (properties
3845 `((upstream-name . "statnet.common")))
3846 (build-system r-build-system)
3847 (propagated-inputs
3848 `(("r-coda" ,r-coda)))
3849 (home-page "https://statnet.org")
3850 (synopsis "R scripts and utilities used by the Statnet software")
3851 (description "This package provides non-statistical utilities used by the
3852 software developed by the Statnet Project.")
3853 (license license:gpl3)))
3854
3855 (define-public r-sna
3856 (package
3857 (name "r-sna")
3858 (version "2.4")
3859 (source
3860 (origin
3861 (method url-fetch)
3862 (uri (cran-uri "sna" version))
3863 (sha256
3864 (base32
3865 "1ks8819qvpdfansfqj9p32s1rhvl26frvbi78m4rx1wd1qcv74i2"))))
3866 (build-system r-build-system)
3867 (propagated-inputs
3868 `(("r-network" ,r-network)
3869 ("r-statnet-common" ,r-statnet-common)))
3870 (home-page "https://statnet.org")
3871 (synopsis "Tools for social network analysis")
3872 (description
3873 "This package provides a range of tools for social network analysis,
3874 including node and graph-level indices, structural distance and covariance
3875 methods, structural equivalence detection, network regression, random graph
3876 generation, and 2D/3D network visualization.")
3877 (license license:gpl2+)))
3878
3879 (define-public r-ttr
3880 (package
3881 (name "r-ttr")
3882 (version "0.23-4")
3883 (source
3884 (origin
3885 (method url-fetch)
3886 (uri (cran-uri "TTR" version))
3887 (sha256
3888 (base32
3889 "18mzyv6cmxmqyqsfwlx2b2k055887mfgc2jgj8xkn8c6m56n05zb"))))
3890 (properties `((upstream-name . "TTR")))
3891 (build-system r-build-system)
3892 (propagated-inputs
3893 `(("r-curl" ,r-curl)
3894 ("r-xts" ,r-xts)
3895 ("r-zoo" ,r-zoo)))
3896 (native-inputs `(("gfortran" ,gfortran)))
3897 (home-page "https://github.com/joshuaulrich/TTR")
3898 (synopsis "Technical trading rules")
3899 (description
3900 "This package provides functions and data to construct technical trading
3901 rules with R.")
3902 (license license:gpl2)))
3903
3904 (define-public r-leaps
3905 (package
3906 (name "r-leaps")
3907 (version "3.0")
3908 (source
3909 (origin
3910 (method url-fetch)
3911 (uri (cran-uri "leaps" version))
3912 (sha256
3913 (base32
3914 "11gjmn1azrjw5xlvdb4gknj9985kck9x8zb9np1rnk2smp6pka2m"))))
3915 (build-system r-build-system)
3916 (native-inputs `(("gfortran" ,gfortran)))
3917 (home-page "https://cran.r-project.org/web/packages/leaps/")
3918 (synopsis "Regression subset selection")
3919 (description
3920 "This package provides tools for regression subset selection, including
3921 exhaustive search.")
3922 (license license:gpl2+)))
3923
3924 (define-public r-splus2r
3925 (package
3926 (name "r-splus2r")
3927 (version "1.2-2")
3928 (source
3929 (origin
3930 (method url-fetch)
3931 (uri (cran-uri "splus2R" version))
3932 (sha256
3933 (base32
3934 "0xrbj8vxy0pc6hl7m8abv71d3hjw47cl51s7j7priadyqczkq6sz"))))
3935 (properties `((upstream-name . "splus2R")))
3936 (build-system r-build-system)
3937 (native-inputs `(("gfortran" ,gfortran)))
3938 (home-page "https://cran.r-project.org/web/packages/splus2R/")
3939 (synopsis "Supplemental S-PLUS functionality in R")
3940 (description
3941 "Currently there are many functions in S-PLUS that are missing in R. To
3942 facilitate the conversion of S-PLUS packages to R packages, this package
3943 provides some missing S-PLUS functionality in R.")
3944 (license license:gpl2)))
3945
3946 (define-public r-ifultools
3947 (package
3948 (name "r-ifultools")
3949 (version "2.0-5")
3950 (source
3951 (origin
3952 (method url-fetch)
3953 (uri (cran-uri "ifultools" version))
3954 (sha256
3955 (base32
3956 "040kvbczcmmbaiaz0k0pdq9af541pjj6iwzh1a3w4szh9w6b5a3j"))))
3957 (build-system r-build-system)
3958 (propagated-inputs
3959 `(("r-mass" ,r-mass)
3960 ("r-splus2r" ,r-splus2r)))
3961 (home-page "https://cran.r-project.org/web/packages/ifultools/")
3962 (synopsis "Insightful research tools")
3963 (description "This package provides C code used by the wmtsa, fractal, and
3964 sapa R packages.")
3965 (license license:gpl2)))
3966
3967 (define-public r-sapa
3968 (package
3969 (name "r-sapa")
3970 (version "2.0-2")
3971 (source
3972 (origin
3973 (method url-fetch)
3974 (uri (cran-uri "sapa" version))
3975 (sha256
3976 (base32
3977 "056xlh14dnzq4x7sbp7ff2k61jxy7110a742b502vz549qfrr5ds"))))
3978 (build-system r-build-system)
3979 (propagated-inputs
3980 `(("r-ifultools" ,r-ifultools)
3981 ("r-splus2r" ,r-splus2r)))
3982 (home-page "https://cran.r-project.org/web/packages/sapa/")
3983 (synopsis "Spectral analysis for physical applications")
3984 (description "This package provides software for the book Spectral
3985 Analysis for Physical Applications, Donald B. Percival and Andrew T. Walden,
3986 Cambridge University Press, 1993.")
3987 (license license:gpl2)))
3988
3989 (define-public r-aggregation
3990 (package
3991 (name "r-aggregation")
3992 (version "1.0.1")
3993 (source
3994 (origin
3995 (method url-fetch)
3996 (uri (cran-uri "aggregation" version))
3997 (sha256
3998 (base32
3999 "0j9g604m2ccc7hcy02539yja9cf3xcbl25gvp838bp4x8w18my46"))))
4000 (build-system r-build-system)
4001 (home-page "https://cran.r-project.org/web/packages/aggregation/")
4002 (synopsis "Methods for p-value aggregation")
4003 (description
4004 "This package contains functionality for performing the following methods
4005 of p-value aggregation: Fisher's method, the Lancaster method (weighted
4006 Fisher's method), and Sidak correction.")
4007 (license license:gpl3)))
4008
4009 (define-public r-quantmod
4010 (package
4011 (name "r-quantmod")
4012 (version "0.4-14")
4013 (source
4014 (origin
4015 (method url-fetch)
4016 (uri (cran-uri "quantmod" version))
4017 (sha256
4018 (base32
4019 "1csljagnpkr1mmc18h70b64zbyj07kx972nip9dng39jfg7ilnyr"))))
4020 (build-system r-build-system)
4021 (propagated-inputs
4022 `(("r-curl" ,r-curl)
4023 ("r-ttr" ,r-ttr)
4024 ("r-xts" ,r-xts)
4025 ("r-zoo" ,r-zoo)))
4026 (home-page "https://cran.r-project.org/web/packages/quantmod/")
4027 (synopsis "Quantitative financial modelling framework")
4028 (description "This package provides a quantitative financial modelling
4029 framework to allow users to specify, build, trade, and analyse quantitative
4030 financial trading strategies.")
4031 (license license:gpl3)))
4032
4033 (define-public r-tseries
4034 (package
4035 (name "r-tseries")
4036 (version "0.10-47")
4037 (source
4038 (origin
4039 (method url-fetch)
4040 (uri (cran-uri "tseries" version))
4041 (sha256
4042 (base32
4043 "0yzvc9djp3angvxdxqi60wi726y76ablsb71q88ycvw0avgpf8r0"))))
4044 (build-system r-build-system)
4045 (propagated-inputs
4046 `(("r-quadprog" ,r-quadprog)
4047 ("r-quantmod" ,r-quantmod)
4048 ("r-zoo" ,r-zoo)))
4049 (native-inputs
4050 `(("gfortran" ,gfortran)))
4051 (home-page "https://cran.r-project.org/web/packages/tseries/")
4052 (synopsis "Time series analysis and computational finance")
4053 (description
4054 "This package provides functions relating to time series analysis and
4055 computational finance.")
4056 (license license:gpl2)))
4057
4058 (define-public r-wmtsa
4059 (package
4060 (name "r-wmtsa")
4061 (version "2.0-3")
4062 (source
4063 (origin
4064 (method url-fetch)
4065 (uri (cran-uri "wmtsa" version))
4066 (sha256
4067 (base32
4068 "1q436krz5p1f4a7a7sya6a9rh9x9mi8zzcgq66gbk9w9w4hcqcj6"))))
4069 (build-system r-build-system)
4070 (propagated-inputs
4071 `(("r-ifultools" ,r-ifultools)
4072 ("r-mass" ,r-mass)
4073 ("r-splus2r" ,r-splus2r)))
4074 (home-page "https://cran.r-project.org/web/packages/wmtsa/")
4075 (synopsis "Wavelet methods for time series analysis")
4076 (description
4077 "This package provides software to accompany the book \"Wavelet Methods
4078 for Time Series Analysis\", Donald B. Percival and Andrew T. Walden, Cambridge
4079 University Press, 2000.")
4080 (license license:gpl2)))
4081
4082 (define-public r-tsa
4083 (package
4084 (name "r-tsa")
4085 (version "1.2")
4086 (source
4087 (origin
4088 (method url-fetch)
4089 (uri (cran-uri "TSA" version))
4090 (sha256
4091 (base32
4092 "0gjfqibwdznz0nka95k4fjm935svxjpnqfywwz403crn2lh30h6q"))))
4093 (properties `((upstream-name . "TSA")))
4094 (build-system r-build-system)
4095 (propagated-inputs
4096 `(("r-leaps" ,r-leaps)
4097 ("r-locfit" ,r-locfit)
4098 ("r-mgcv" ,r-mgcv)))
4099 (home-page "http://www.stat.uiowa.edu/~kchan/TSA.htm")
4100 (synopsis "Time series analysis")
4101 (description
4102 "This package contains R functions and datasets detailed in the book
4103 \"Time Series Analysis with Applications in R (second edition)\" by Jonathan
4104 Cryer and Kung-Sik Chan.")
4105 (license license:gpl2+)))
4106
4107 (define-public r-extradistr
4108 (package
4109 (name "r-extradistr")
4110 (version "1.8.11")
4111 (source
4112 (origin
4113 (method url-fetch)
4114 (uri (cran-uri "extraDistr" version))
4115 (sha256
4116 (base32
4117 "1vvqv1d4hxa025gmm8cbiph63qsqy87l3ri5idd524gyz3chbcl3"))))
4118 (properties `((upstream-name . "extraDistr")))
4119 (build-system r-build-system)
4120 (propagated-inputs
4121 `(("r-rcpp" ,r-rcpp)))
4122 (home-page "https://github.com/twolodzko/extraDistr")
4123 (synopsis "Additional univariate and multivariate distributions")
4124 (description
4125 "This package implements density, distribution functions, quantile
4126 functions and random generation functions for a large number of univariate and
4127 multivariate distributions.")
4128 (license license:gpl2)))
4129
4130 (define-public r-fractal
4131 (package
4132 (name "r-fractal")
4133 (version "2.0-4")
4134 (source
4135 (origin
4136 (method url-fetch)
4137 (uri (cran-uri "fractal" version))
4138 (sha256
4139 (base32
4140 "18lr9z0gslvfc3z8vyj3krqj3bfhg60zv1fzinrwwkc4cpk1w7mp"))))
4141 (build-system r-build-system)
4142 (propagated-inputs
4143 `(("r-ifultools" ,r-ifultools)
4144 ("r-mass" ,r-mass)
4145 ("r-sapa" ,r-sapa)
4146 ("r-scatterplot3d" ,r-scatterplot3d)
4147 ("r-splus2r" ,r-splus2r)
4148 ("r-wmtsa" ,r-wmtsa)))
4149 (home-page "https://cran.r-project.org/web/packages/fractal/")
4150 (synopsis "Fractal time series modeling and analysis")
4151 (description
4152 "This package provides tools for stochastic fractal and deterministic
4153 chaotic time series analysis.")
4154 (license license:gpl2)))
4155
4156 (define-public r-urca
4157 (package
4158 (name "r-urca")
4159 (version "1.3-0")
4160 (source
4161 (origin
4162 (method url-fetch)
4163 (uri (cran-uri "urca" version))
4164 (sha256
4165 (base32
4166 "1akaqwf3fvvvx4sgfn641fd4sj51s0701pvfl6s5hnz2k0iwh732"))))
4167 (build-system r-build-system)
4168 (propagated-inputs `(("r-nlme" ,r-nlme)))
4169 (native-inputs `(("gfortran" ,gfortran)))
4170 (home-page "https://cran.r-project.org/web/packages/urca/")
4171 (synopsis "Unit root and cointegration tests for time series data")
4172 (description
4173 "This package provides unit root and cointegration tests encountered in
4174 applied econometric analysis.")
4175 (license license:gpl2+)))
4176
4177 (define-public r-cubature
4178 (package
4179 (name "r-cubature")
4180 (version "2.0.3")
4181 (source
4182 (origin
4183 (method url-fetch)
4184 (uri (cran-uri "cubature" version))
4185 (sha256
4186 (base32
4187 "0wvs80i4axj7pdcy9gjl08qzjbcjkldha94xy4gdxc34vgmh7gvr"))))
4188 (build-system r-build-system)
4189 (propagated-inputs
4190 `(("r-rcpp" ,r-rcpp)))
4191 (home-page "https://github.com/bnaras/cubature")
4192 (synopsis "Adaptive multivariate integration over hypercubes")
4193 (description
4194 "This package is an R wrapper around the cubature C library for adaptive
4195 multivariate integration over hypercubes. This version provides both
4196 @code{hcubature} and @code{pcubature} routines in addition to a vector
4197 interface.")
4198 ;; The included cubature C library is released under GPLv2+, but the
4199 ;; wrapper declares the license to be GPLv3+.
4200 (license (list license:gpl2+ license:gpl3+))))
4201
4202 (define-public r-trend
4203 (package
4204 (name "r-trend")
4205 (version "1.1.1")
4206 (source
4207 (origin
4208 (method url-fetch)
4209 (uri (cran-uri "trend" version))
4210 (sha256
4211 (base32
4212 "1bd567n15k2vpmgbx02584k5kglrc58mlb5kgd07wdss3knpa48q"))))
4213 (build-system r-build-system)
4214 (propagated-inputs
4215 `(("r-extradistr" ,r-extradistr)))
4216 (native-inputs
4217 `(("gfortran" ,gfortran)))
4218 (home-page "https://cran.r-project.org/web/packages/trend/")
4219 (synopsis "Non-parametric trend tests and change-point detection")
4220 (description
4221 "The analysis of environmental data often requires the detection of
4222 trends and change-points. This package includes tests for trend
4223 detection (Cox-Stuart Trend Test, Mann-Kendall Trend Test, (correlated)
4224 Hirsch-Slack Test, partial Mann-Kendall Trend Test, multivariate (multisite)
4225 Mann-Kendall Trend Test, (Seasonal) Sen's slope, partial Pearson and Spearman
4226 correlation trend test), change-point detection (Lanzante's test procedures,
4227 Pettitt's test, Buishand Range Test, Buishand U Test, Standard Normal
4228 Homogeinity Test), detection of non-randomness (Wallis-Moore Phase Frequency
4229 Test, Bartels rank von Neumann's ratio test, Wald-Wolfowitz Test) and the two
4230 sample Robust Rank-Order Distributional Test.")
4231 (license license:gpl3)))
4232
4233 (define-public r-expm
4234 (package
4235 (name "r-expm")
4236 (version "0.999-4")
4237 (source
4238 (origin
4239 (method url-fetch)
4240 (uri (cran-uri "expm" version))
4241 (sha256
4242 (base32
4243 "15k0acg2aqb2ajhwal6l7vhhp03m4lg579805d34554cl0kn9l2q"))))
4244 (build-system r-build-system)
4245 (propagated-inputs `(("r-matrix" ,r-matrix)))
4246 (native-inputs `(("gfortran" ,gfortran)))
4247 (home-page "https://r-forge.r-project.org/projects/expm/")
4248 (synopsis "Tools for matrix exponentials and related quantities")
4249 (description
4250 "This package provides tools for the computation of the matrix
4251 exponential, logarithm, square root, and related quantities.")
4252 (license license:gpl2+)))
4253
4254 (define-public r-complexplus
4255 (package
4256 (name "r-complexplus")
4257 (version "2.1")
4258 (source
4259 (origin
4260 (method url-fetch)
4261 (uri (cran-uri "complexplus" version))
4262 (sha256
4263 (base32
4264 "16w9v7d1ckavqmr86l34frr37pkvdn0iqnb17ssb8xaggns5lgqx"))))
4265 (build-system r-build-system)
4266 (propagated-inputs
4267 `(("r-expm" ,r-expm)
4268 ("r-matrix" ,r-matrix)))
4269 (home-page "https://cran.r-project.org/web/packages/complexplus/")
4270 (synopsis "Functions of complex or real variables")
4271 (description
4272 "This package extends several functions to the complex domain, including
4273 the matrix exponential and logarithm, and the determinant.")
4274 (license license:gpl2)))
4275
4276 (define-public r-phontools
4277 (package
4278 (name "r-phontools")
4279 (version "0.2-2.1")
4280 (source
4281 (origin
4282 (method url-fetch)
4283 (uri (cran-uri "phonTools" version))
4284 (sha256
4285 (base32
4286 "01i481mhswsys3gpasw9gn6nxkfmi7bz46g5c84m13pg0cv8hxc7"))))
4287 (properties `((upstream-name . "phonTools")))
4288 (build-system r-build-system)
4289 (home-page "http://www.santiagobarreda.com/rscripts.html")
4290 (synopsis "Tools for phonetic and acoustic analyses")
4291 (description
4292 "This package contains tools for the organization, display, and analysis
4293 of the sorts of data frequently encountered in phonetics research and
4294 experimentation, including the easy creation of IPA vowel plots, and the
4295 creation and manipulation of WAVE audio files.")
4296 (license license:bsd-2)))
4297
4298 (define-public r-np
4299 (package
4300 (name "r-np")
4301 (version "0.60-9")
4302 (source
4303 (origin
4304 (method url-fetch)
4305 (uri (cran-uri "np" version))
4306 (sha256
4307 (base32
4308 "1z4jcpx8bbgwslv42wrphfd1qfq965qjn0kmfxm5f6hbbycahcgy"))))
4309 (build-system r-build-system)
4310 (propagated-inputs
4311 `(("r-boot" ,r-boot)
4312 ("r-cubature" ,r-cubature)
4313 ("r-quadprog" ,r-quadprog)
4314 ("r-quantreg" ,r-quantreg)))
4315 (home-page "https://github.com/JeffreyRacine/R-Package-np")
4316 (synopsis "Non-parametric kernel smoothing methods for mixed data types")
4317 (description "This package provides non-parametric (and semi-parametric)
4318 kernel methods that seamlessly handle a mix of continuous, unordered, and
4319 ordered factor data types.")
4320 ;; Any version of the GPL.
4321 (license license:gpl3+)))
4322
4323 (define-public r-powerplus
4324 (package
4325 (name "r-powerplus")
4326 (version "3.1")
4327 (source
4328 (origin
4329 (method url-fetch)
4330 (uri (cran-uri "powerplus" version))
4331 (sha256
4332 (base32
4333 "0ayp6x34hkzgris4j3zbbs0r23n81bhww3wgfyy630ri4sk6brrn"))))
4334 (build-system r-build-system)
4335 (propagated-inputs
4336 `(("r-complexplus" ,r-complexplus)
4337 ("r-expm" ,r-expm)
4338 ("r-mass" ,r-mass)
4339 ("r-matrix" ,r-matrix)
4340 ("r-phontools" ,r-phontools)))
4341 (home-page "https://cran.r-project.org/web/packages/powerplus/")
4342 (synopsis "Exponentiation operations")
4343 (description
4344 "This package provides tools for the computation of matrix and scalar
4345 exponentiation.")
4346 (license license:gpl2)))
4347
4348 (define-public r-heatmaply
4349 (package
4350 (name "r-heatmaply")
4351 (version "0.16.0")
4352 (source
4353 (origin
4354 (method url-fetch)
4355 (uri (cran-uri "heatmaply" version))
4356 (sha256
4357 (base32
4358 "1qhxk48qh61qjxdlhl0qffdh3yh8iiwccid5ssngdv433q0cmyc1"))))
4359 (build-system r-build-system)
4360 (propagated-inputs
4361 `(("r-assertthat" ,r-assertthat)
4362 ("r-colorspace" ,r-colorspace)
4363 ("r-dendextend" ,r-dendextend)
4364 ("r-ggplot2" ,r-ggplot2)
4365 ("r-htmlwidgets" ,r-htmlwidgets)
4366 ("r-magrittr" ,r-magrittr)
4367 ("r-plotly" ,r-plotly)
4368 ("r-rcolorbrewer" ,r-rcolorbrewer)
4369 ("r-reshape2" ,r-reshape2)
4370 ("r-scales" ,r-scales)
4371 ("r-seriation" ,r-seriation)
4372 ("r-viridis" ,r-viridis)
4373 ("r-webshot" ,r-webshot)))
4374 (home-page "https://cran.r-project.org/package=heatmaply")
4375 (synopsis "Interactive cluster heat maps using plotly")
4376 (description
4377 "This package enables you to create interactive cluster heatmaps that can
4378 be saved as a stand-alone HTML file, embedded in R Markdown documents or in a
4379 Shiny app, and made available in the RStudio viewer pane. Hover the mouse
4380 pointer over a cell to show details or drag a rectangle to zoom. A heatmap is
4381 a popular graphical method for visualizing high-dimensional data, in which a
4382 table of numbers is encoded as a grid of colored cells. The rows and columns
4383 of the matrix are ordered to highlight patterns and are often accompanied by
4384 dendrograms.")
4385 ;; Either version of the license.
4386 (license (list license:gpl2 license:gpl3))))
4387
4388 (define-public r-h5
4389 (package
4390 (name "r-h5")
4391 (version "0.9.9")
4392 (source
4393 (origin
4394 (method url-fetch)
4395 (uri (cran-uri "h5" version))
4396 (sha256
4397 (base32
4398 "14p7i1sj24ky87kd7qr3n9fc9l64s0bp0rwbyl6i2x69xn75gpsx"))))
4399 (build-system r-build-system)
4400 (inputs
4401 `(("zlib" ,zlib)
4402 ("hdf5" ,hdf5)))
4403 (native-inputs
4404 `(("which" ,which)))
4405 (propagated-inputs
4406 `(("r-rcpp" ,r-rcpp)))
4407 (home-page "https://github.com/mannau/h5")
4408 (synopsis "Interface to the HDF5 Library")
4409 (description
4410 "This package provides an S4 interface to the HDF5 library supporting
4411 fast storage and retrieval of R-objects like vectors, matrices and arrays to
4412 binary files in a language independent format. The HDF5 format can therefore
4413 be used as an alternative to R's save/load mechanism. Since h5 is able to
4414 access only subsets of stored data it can also handle data sets which do not
4415 fit into memory.")
4416 (license license:bsd-2)))
4417
4418 (define-public r-cgdsr
4419 (package
4420 (name "r-cgdsr")
4421 (version "1.2.10")
4422 (source
4423 (origin
4424 (method url-fetch)
4425 (uri (cran-uri "cgdsr" version))
4426 (sha256
4427 (base32
4428 "1xyhw7mhmjichr1l6f9y1qvfj9wm87kfbm87ji7lcwf36gxh5g23"))))
4429 (build-system r-build-system)
4430 (propagated-inputs
4431 `(("r-r-methodss3" ,r-r-methodss3)
4432 ("r-r-oo" ,r-r-oo)))
4433 (home-page "https://github.com/cBioPortal/cgdsr")
4434 (synopsis "R-based API for accessing the MSKCC Cancer Genomics Data Server")
4435 (description
4436 "This package provides a basic set of R functions for querying the Cancer
4437 Genomics Data Server (CGDS), hosted by the Computational Biology Center at
4438 Memorial-Sloan-Kettering Cancer Center (MSKCC).")
4439 (license license:lgpl3)))
4440
4441 (define-public r-import
4442 (package
4443 (name "r-import")
4444 (version "1.1.0")
4445 (source
4446 (origin
4447 (method url-fetch)
4448 (uri (cran-uri "import" version))
4449 (sha256
4450 (base32
4451 "0blf9539rbfwcmw8zsb4k58slb4pdnc075v34vmyjw752fznhcji"))))
4452 (build-system r-build-system)
4453 (home-page "https://github.com/smbache/import")
4454 (synopsis "Import mechanism for R")
4455 (description
4456 "This is an alternative mechanism for importing objects from packages.
4457 The syntax allows for importing multiple objects from a package with a single
4458 command in an expressive way. The import package bridges some of the gap
4459 between using @code{library} (or @code{require}) and direct (single-object)
4460 imports. Furthermore the imported objects are not placed in the current
4461 environment. It is also possible to import objects from stand-alone @code{.R}
4462 files.")
4463 (license license:expat)))
4464
4465 (define-public r-shinyace
4466 (package
4467 (name "r-shinyace")
4468 (version "0.3.3")
4469 (source
4470 (origin
4471 (method url-fetch)
4472 (uri (cran-uri "shinyAce" version))
4473 (sha256
4474 (base32
4475 "02q6wqw349nlyf3mbf18cxif1xv9cal5qzccrdlnv73szqn9jk7j"))))
4476 (properties `((upstream-name . "shinyAce")))
4477 (build-system r-build-system)
4478 (propagated-inputs
4479 `(("r-shiny" ,r-shiny)
4480 ("r-jsonlite" ,r-jsonlite)))
4481 (home-page "http://cran.r-project.org/web/packages/shinyAce")
4482 (synopsis "Ace editor bindings for Shiny")
4483 (description
4484 "This package provides Ace editor bindings to enable a rich text editing
4485 environment within Shiny.")
4486 (license license:expat)))
4487
4488 (define-public r-base64url
4489 (package
4490 (name "r-base64url")
4491 (version "1.4")
4492 (source
4493 (origin
4494 (method url-fetch)
4495 (uri (cran-uri "base64url" version))
4496 (sha256
4497 (base32
4498 "0n1c2b68vza1dh7sk38v6biiwm72c4jpl79kpdg1bsb0hq9qy18x"))))
4499 (build-system r-build-system)
4500 (propagated-inputs
4501 `(("r-backports" ,r-backports)))
4502 (home-page "https://github.com/mllg/base64url")
4503 (synopsis "Fast and URL-safe base64 encoder and decoder")
4504 (description
4505 "This package provides a URL-safe base64 encoder and decoder. In
4506 contrast to RFC3548, the 62nd character (@code{+}) is replaced with @code{-},
4507 the 63rd character (@code{/}) is replaced with @code{_}. Furthermore, the
4508 encoder does not fill the string with trailing @code{=}. The resulting
4509 encoded strings comply to the regular expression pattern @code{[A-Za-z0-9_-]}
4510 and thus are safe to use in URLs or for file names. The package also comes
4511 with a simple base32 encoder/decoder suited for case insensitive file
4512 systems.")
4513 (license license:gpl3)))
4514
4515 (define-public r-radiant-data
4516 (package
4517 (name "r-radiant-data")
4518 (version "0.9.9")
4519 (source
4520 (origin
4521 (method url-fetch)
4522 (uri (cran-uri "radiant.data" version))
4523 (sha256
4524 (base32
4525 "17mgm0sggh4f7ihqmj9m3996p3pqc7h2cwx6ll1ha3kg5mx0znyn"))
4526 (modules '((guix build utils)))
4527 (snippet
4528 '(begin
4529 ;; Delete files that are under CC-NC-SA.
4530 (delete-file-recursively "inst/app/tools/help")
4531 #t))))
4532 (properties `((upstream-name . "radiant.data")))
4533 (build-system r-build-system)
4534 (propagated-inputs
4535 `(("r-base64enc" ,r-base64enc)
4536 ("r-broom" ,r-broom)
4537 ("r-car" ,r-car)
4538 ("r-curl" ,r-curl)
4539 ("r-dplyr" ,r-dplyr)
4540 ("r-dt" ,r-dt)
4541 ("r-glue" ,r-glue)
4542 ("r-ggplot2" ,r-ggplot2)
4543 ("r-gridextra" ,r-gridextra)
4544 ("r-import" ,r-import)
4545 ("r-jsonlite" ,r-jsonlite)
4546 ("r-knitr" ,r-knitr)
4547 ("r-lubridate" ,r-lubridate)
4548 ("r-magrittr" ,r-magrittr)
4549 ("r-markdown" ,r-markdown)
4550 ("r-plotly" ,r-plotly)
4551 ("r-psych" ,r-psych)
4552 ("r-readr" ,r-readr)
4553 ("r-readxl" ,r-readxl)
4554 ("r-rlang" ,r-rlang)
4555 ("r-rmarkdown" ,r-rmarkdown)
4556 ("r-rstudioapi" ,r-rstudioapi)
4557 ("r-scales" ,r-scales)
4558 ("r-shiny" ,r-shiny)
4559 ("r-shinyfiles" ,r-shinyfiles)
4560 ("r-shinyace" ,r-shinyace)
4561 ("r-stringi" ,r-stringi)
4562 ("r-tibble" ,r-tibble)
4563 ("r-tidyr" ,r-tidyr)
4564 ("r-writexl" ,r-writexl)))
4565 (home-page "https://github.com/radiant-rstats/radiant.data")
4566 (synopsis "Data menu for Radiant: business analytics using R and Shiny")
4567 (description
4568 "The Radiant Data menu includes interfaces for loading, saving, viewing,
4569 visualizing, summarizing, transforming, and combining data. It also contains
4570 functionality to generate reproducible reports of the analyses conducted in
4571 the application.")
4572 (license license:agpl3)))
4573
4574 (define-public r-algdesign
4575 (package
4576 (name "r-algdesign")
4577 (version "1.1-7.3")
4578 (source
4579 (origin
4580 (method url-fetch)
4581 (uri (cran-uri "AlgDesign" version))
4582 (sha256
4583 (base32
4584 "0bl7mx4dnmkgs2x1fj7cqnrp7jx18mqwxyga0rzlniq12h8mc3fz"))))
4585 (properties `((upstream-name . "AlgDesign")))
4586 (build-system r-build-system)
4587 (home-page "https://github.com/jvbraun/AlgDesign")
4588 (synopsis "Algorithmic experimental design")
4589 (description
4590 "This package provides tools to calculate exact and approximate theory
4591 experimental designs for D, A, and I criteria. Very large designs may be
4592 created. Experimental designs may be blocked or blocked designs created from
4593 a candidate list, using several criteria. The blocking can be done when whole
4594 and within plot factors interact.")
4595 (license license:gpl2+)))
4596
4597 (define-public r-signal
4598 (package
4599 (name "r-signal")
4600 (version "0.7-6")
4601 (source
4602 (origin
4603 (method url-fetch)
4604 (uri (cran-uri "signal" version))
4605 (sha256
4606 (base32
4607 "1vsxramz5qd9q9s3vlqzmfdpmwl2rhlb2n904zw6f0fg0xxjfq3b"))))
4608 (build-system r-build-system)
4609 (propagated-inputs `(("r-mass" ,r-mass)))
4610 (native-inputs `(("gfortran" ,gfortran)))
4611 (home-page "https://cran.r-project.org/web/packages/signal/")
4612 (synopsis "Signal processing")
4613 (description
4614 "This package provides a set of signal processing functions originally
4615 written for Matlab and GNU Octave. It includes filter generation utilities,
4616 filtering functions, resampling routines, and visualization of filter models.
4617 It also includes interpolation functions.")
4618 (license license:gpl2)))
4619
4620 (define-public r-gsubfn
4621 (package
4622 (name "r-gsubfn")
4623 (version "0.7")
4624 (source
4625 (origin
4626 (method url-fetch)
4627 (uri (cran-uri "gsubfn" version))
4628 (sha256
4629 (base32
4630 "00j6b8b6xsx6v370h220x233rpk6asca78165y3d48jpwvwisdc9"))))
4631 (build-system r-build-system)
4632 (propagated-inputs `(("r-proto" ,r-proto)))
4633 (home-page "http://gsubfn.googlecode.com")
4634 (synopsis "Utilities for strings and function arguments.")
4635 (description
4636 "This package provides @code{gsubfn} which is like @code{gsub} but can
4637 take a replacement function or certain other objects instead of the
4638 replacement string. Matches and back references are input to the replacement
4639 function and replaced by the function output. @code{gsubfn} can be used to
4640 split strings based on content rather than delimiters and for quasi-perl-style
4641 string interpolation. The package also has facilities for translating
4642 formulas to functions and allowing such formulas in function calls instead of
4643 functions.")
4644 (license license:gpl2+)))
4645
4646 (define-public r-sqldf
4647 (package
4648 (name "r-sqldf")
4649 (version "0.4-11")
4650 (source
4651 (origin
4652 (method url-fetch)
4653 (uri (cran-uri "sqldf" version))
4654 (sha256
4655 (base32
4656 "0q12vsb53p2wchgp8wfz5bk08wfnm0jxjrakclj4jyy6x3a7ksff"))))
4657 (build-system r-build-system)
4658 (propagated-inputs
4659 `(("r-chron" ,r-chron)
4660 ("r-dbi" ,r-dbi)
4661 ("r-gsubfn" ,r-gsubfn)
4662 ("r-proto" ,r-proto)
4663 ("r-rsqlite" ,r-rsqlite)))
4664 (home-page "https://github.com/ggrothendieck/sqldf")
4665 (synopsis "Manipulate R data frames using SQL")
4666 (description
4667 "The @code{sqldf} function is typically passed a single argument which is
4668 an SQL select statement where the table names are ordinary R data frame names.
4669 @code{sqldf} transparently sets up a database, imports the data frames into
4670 that database, performs the SQL statement and returns the result using a
4671 heuristic to determine which class to assign to each column of the returned
4672 data frame. The @code{sqldf} or @code{read.csv.sql} functions can also be
4673 used to read filtered files into R even if the original files are larger than
4674 R itself can handle.")
4675 (license license:gpl2)))
4676
4677 (define-public r-abind
4678 (package
4679 (name "r-abind")
4680 (version "1.4-5")
4681 (source
4682 (origin
4683 (method url-fetch)
4684 (uri (cran-uri "abind" version))
4685 (sha256
4686 (base32
4687 "0b1zd8jbnl6l292cr9rb50m09fy3ylxvzkpgi5lfb1nbzddcwfis"))))
4688 (build-system r-build-system)
4689 (home-page "https://cran.r-project.org/web/packages/abind/")
4690 (synopsis "Combine multidimensional arrays")
4691 (description
4692 "This package provides tools to combine multidimensional arrays into a
4693 single array. This is a generalization of @code{cbind} and @code{rbind}. It
4694 works with vectors, matrices, and higher-dimensional arrays. It also provides
4695 the functions @code{adrop}, @code{asub}, and @code{afill} for manipulating,
4696 extracting and replacing data in arrays.")
4697 (license license:lgpl2.0+)))
4698
4699 (define-public r-prroc
4700 (package
4701 (name "r-prroc")
4702 (version "1.3.1")
4703 (source
4704 (origin
4705 (method url-fetch)
4706 (uri (cran-uri "PRROC" version))
4707 (sha256
4708 (base32
4709 "1m28h8pcd78049lz2qixhkcr9h5b3jik3maqzfbvq9y58z71i4a7"))))
4710 (properties `((upstream-name . "PRROC")))
4711 (build-system r-build-system)
4712 (home-page "https://cran.r-project.org/web/packages/PRROC/")
4713 (synopsis "Precision-Recall and ROC curves for weighted and unweighted data")
4714 (description
4715 "This package computes the areas under the @dfn{precision-recall} (PR)
4716 and ROC curve for weighted (e.g. soft-labeled) and unweighted data. In
4717 contrast to other implementations, the interpolation between points of the PR
4718 curve is done by a non-linear piecewise function. In addition to the areas
4719 under the curves, the curves themselves can also be computed and plotted by a
4720 specific S3-method.")
4721 (license license:gpl3)))
4722
4723 (define-public r-vim
4724 (package
4725 (name "r-vim")
4726 (version "4.8.0")
4727 (source
4728 (origin
4729 (method url-fetch)
4730 (uri (cran-uri "VIM" version))
4731 (sha256
4732 (base32
4733 "08x4a4yzgp8adgrv7a3666yma4b60n64mcsnvhzmwdy023f4ysrw"))))
4734 (properties `((upstream-name . "VIM")))
4735 (build-system r-build-system)
4736 (propagated-inputs
4737 `(("r-car" ,r-car)
4738 ("r-colorspace" ,r-colorspace)
4739 ("r-data-table" ,r-data-table)
4740 ("r-e1071" ,r-e1071)
4741 ("r-laeken" ,r-laeken)
4742 ("r-mass" ,r-mass)
4743 ("r-nnet" ,r-nnet)
4744 ("r-ranger" ,r-ranger)
4745 ("r-rcpp" ,r-rcpp)
4746 ("r-robustbase" ,r-robustbase)
4747 ("r-sp" ,r-sp)
4748 ("r-vcd" ,r-vcd)))
4749 (home-page "https://github.com/alexkowa/VIM")
4750 (synopsis "Visualization and imputation of missing values")
4751 (description
4752 "This package provides tools for the visualization of missing and/or
4753 imputed values are introduced, which can be used for exploring the data and
4754 the structure of the missing and/or imputed values. Depending on this
4755 structure of the missing values, the corresponding methods may help to
4756 identify the mechanism generating the missing values and allows to explore the
4757 data including missing values. In addition, the quality of imputation can be
4758 visually explored using various univariate, bivariate, multiple and
4759 multivariate plot methods.")
4760 (license license:gpl2+)))
4761
4762 (define-public r-fnn
4763 (package
4764 (name "r-fnn")
4765 (version "1.1.3")
4766 (source
4767 (origin
4768 (method url-fetch)
4769 (uri (cran-uri "FNN" version))
4770 (sha256
4771 (base32
4772 "0cllqlnynm5yaj4r64mqyyfc8phkb38rwssq8k8ikgfgr4jklxny"))))
4773 (properties `((upstream-name . "FNN")))
4774 (build-system r-build-system)
4775 (home-page "https://cran.r-project.org/web/packages/FNN")
4776 (synopsis "Fast nearest neighbor search algorithms and applications")
4777 (description
4778 "This package provides cover-tree and kd-tree fast k-nearest neighbor
4779 search algorithms. Related applications including KNN classification,
4780 regression and information measures are implemented.")
4781 ;; The DESCRIPTION file erroneously states that GPL version 2.1 or
4782 ;; later can be used.
4783 (license license:gpl2+)))
4784
4785 (define-public r-smoother
4786 (package
4787 (name "r-smoother")
4788 (version "1.1")
4789 (source
4790 (origin
4791 (method url-fetch)
4792 (uri (cran-uri "smoother" version))
4793 (sha256
4794 (base32
4795 "0nqr1bvlr5bnasqg74zmknjjl4x28kla9h5cxpga3kq5z215pdci"))))
4796 (build-system r-build-system)
4797 (propagated-inputs
4798 `(("r-ttr" ,r-ttr)))
4799 (home-page "http://cran.r-project.org/web/packages/smoother")
4800 (synopsis "Functions relating to the smoothing of numerical data")
4801 (description
4802 "This package provides a collection of methods for smoothing numerical
4803 data, commencing with a port of the Matlab gaussian window smoothing function.
4804 In addition, several functions typically used in smoothing of financial data
4805 are included.")
4806 (license license:gpl2)))
4807
4808 (define-public r-riverplot
4809 (package
4810 (name "r-riverplot")
4811 (version "0.6")
4812 (source
4813 (origin
4814 (method url-fetch)
4815 (uri (cran-uri "riverplot" version))
4816 (sha256
4817 (base32
4818 "0q1icpny8nkxyjhawyjzwrw8qlz0ayn2xyrsqrm4vkxyv6c9xk8z"))))
4819 (build-system r-build-system)
4820 (home-page "https://logfc.wordpress.com")
4821 (synopsis "Sankey or ribbon plots")
4822 (description
4823 "Sankey plots are a type of diagram that is convenient to illustrate how
4824 flow of information, resources etc. separates and joins, much like observing
4825 how rivers split and merge. For example, they can be used to compare
4826 different clusterings. This package provides an implementation of Sankey
4827 plots for R.")
4828 (license license:gpl2+)))
4829
4830 (define-public r-dyn
4831 (package
4832 (name "r-dyn")
4833 (version "0.2-9.6")
4834 (source
4835 (origin
4836 (method url-fetch)
4837 (uri (cran-uri "dyn" version))
4838 (sha256
4839 (base32
4840 "16fqv9k7yxdgybwzafjkyqm16qpgqz13lcjpi6a1nc8xbzlzh0gb"))))
4841 (build-system r-build-system)
4842 (propagated-inputs
4843 `(("r-zoo" ,r-zoo)))
4844 (home-page "https://cran.r-project.org/web/packages/dyn")
4845 (synopsis "Time series regression")
4846 (description
4847 "This package provides the dyn class interfaces @code{ts}, @code{irts},
4848 @code{zoo} and @code{zooreg} time series classes to @code{lm}, @code{glm},
4849 @code{loess}, @code{quantreg::rq}, @code{MASS::rlm},
4850 @code{MCMCpack::MCMCregress()}, @code{quantreg::rq()},
4851 @code{randomForest::randomForest()} and other regression functions, allowing
4852 those functions to be used with time series including specifications that may
4853 contain lags, diffs and missing values.")
4854 ;; Any GPL version.
4855 (license license:gpl2+)))
4856
4857 (define-public r-catdap
4858 (package
4859 (name "r-catdap")
4860 (version "1.3.4")
4861 (source
4862 (origin
4863 (method url-fetch)
4864 (uri (cran-uri "catdap" version))
4865 (sha256
4866 (base32
4867 "0i877l61f6c75pczi235rzci67w29zv1d7z5zn5p5ymndclvlpl2"))))
4868 (build-system r-build-system)
4869 (native-inputs
4870 `(("gfortran" ,gfortran)))
4871 (home-page "https://cran.r-project.org/web/packages/catdap/")
4872 (synopsis "Tools for categorical data analysis")
4873 (description
4874 "This package provides functions for analyzing multivariate data.
4875 Dependencies of the distribution of the specified variable (response
4876 variable) to other variables (explanatory variables) are derived and
4877 evaluated by the @dfn{Akaike Information Criterion} (AIC).")
4878 (license license:gpl2+)))
4879
4880 (define-public r-arules
4881 (package
4882 (name "r-arules")
4883 (version "1.6-3")
4884 (source
4885 (origin
4886 (method url-fetch)
4887 (uri (cran-uri "arules" version))
4888 (sha256
4889 (base32
4890 "0dimrq1pz449z0mz9m87nhm5bpc0v789bcc3lghhh97wwi5zah9y"))))
4891 (build-system r-build-system)
4892 (propagated-inputs
4893 `(("r-matrix" ,r-matrix)))
4894 (home-page "https://github.com/mhahsler/arules")
4895 (synopsis "Mining association rules and frequent itemsets")
4896 (description
4897 "This package provides an infrastructure for representing, manipulating
4898 and analyzing transaction data and patterns (frequent itemsets and association rules).
4899 It also provides C implementations of the association mining algorithms Apriori
4900 and Eclat.")
4901 (license license:gpl3)))
4902
4903 (define-public r-parsedate
4904 (package
4905 (name "r-parsedate")
4906 (version "1.2.0")
4907 (source
4908 (origin
4909 (method url-fetch)
4910 (uri (cran-uri "parsedate" version))
4911 (sha256
4912 (base32
4913 "0gb3w6hmwxayhijpf36p5dk4h6bbdps57x3cgikwvvxkgi83rarr"))))
4914 (build-system r-build-system)
4915 (propagated-inputs
4916 `(("r-rematch2" ,r-rematch2)))
4917 (home-page "https://github.com/gaborcsardi/parsedate")
4918 (synopsis
4919 "Recognize and parse dates in various formats")
4920 (description
4921 "This package provides three functions for dealing with dates:
4922 @code{parse_iso_8601} recognizes and parses all valid ISO 8601 date and
4923 time formats, @code{parse_date} parses dates in unspecified formats,
4924 and @code{format_iso_8601} formats a date in ISO 8601 format.")
4925 (license license:gpl2)))
4926
4927 (define-public r-abc-data
4928 (package
4929 (name "r-abc-data")
4930 (version "1.0")
4931 (source
4932 (origin
4933 (method url-fetch)
4934 (uri (cran-uri "abc.data" version))
4935 (sha256
4936 (base32
4937 "1bv1n68ah714ws58cf285n2s2v5vn7382lfjca4jxph57lyg8hmj"))))
4938 (properties `((upstream-name . "abc.data")))
4939 (build-system r-build-system)
4940 (home-page "https://cran.r-project.org/web/packages/abc.data/")
4941 (synopsis "Data for Approximate Bayesian Computation (ABC) package")
4942 (description
4943 "This package contains data which are used by functions of the abc
4944 package which implements several @dfn{Approximate Bayesian Computation} (ABC)
4945 algorithms for performing parameter estimation, model selection, and
4946 goodness-of-fit.")
4947 (license license:gpl3+)))
4948
4949 (define-public r-abc
4950 (package
4951 (name "r-abc")
4952 (version "2.1")
4953 (source
4954 (origin
4955 (method url-fetch)
4956 (uri (cran-uri "abc" version))
4957 (sha256
4958 (base32
4959 "0ngzaaz2y2s03fhngvwipmy4kq38xrmyddaz6a6l858rxvadrlhb"))))
4960 (build-system r-build-system)
4961 (propagated-inputs
4962 `(("r-abc-data" ,r-abc-data)
4963 ("r-locfit" ,r-locfit)
4964 ("r-mass" ,r-mass)
4965 ("r-nnet" ,r-nnet)
4966 ("r-quantreg" ,r-quantreg)))
4967 (home-page "https://cran.r-project.org/web/packages/abc/")
4968 (synopsis "Tools for Approximate Bayesian Computation (ABC)")
4969 (description
4970 "This package implements several @dfn{Approximate Bayesian
4971 Computation} (ABC) algorithms for performing parameter estimation, model
4972 selection, and goodness-of-fit. Cross-validation tools are also available for
4973 measuring the accuracy of ABC estimates, and to calculate the
4974 misclassification probabilities of different models.")
4975 (license license:gpl3+)))
4976
4977 (define-public r-zip
4978 (package
4979 (name "r-zip")
4980 (version "2.0.2")
4981 (source
4982 (origin
4983 (method url-fetch)
4984 (uri (cran-uri "zip" version))
4985 (sha256
4986 (base32
4987 "1xvgs7mhxi0sdp5ix4nisqm9lf8f75b7ip7b1hqpq9bzh0x6z8ix"))))
4988 (build-system r-build-system)
4989 (home-page "https://github.com/gaborcsardi/zip")
4990 (synopsis "Cross-platform Zip compression")
4991 (description
4992 "This package provides a cross-platform Zip compression library for R.
4993 It is a replacement for the @code{zip} function, that does not require any
4994 additional external tools on any platform.")
4995 (license license:cc0)))
4996
4997 (define-public r-openxlsx
4998 (package
4999 (name "r-openxlsx")
5000 (version "4.1.0.1")
5001 (source
5002 (origin
5003 (method url-fetch)
5004 (uri (cran-uri "openxlsx" version))
5005 (sha256
5006 (base32
5007 "1lflygpi1z4rlb1c6g6wsmi334maiiy7jhpg6ph4sw8lpvg12w4b"))))
5008 (build-system r-build-system)
5009 (propagated-inputs
5010 `(("r-rcpp" ,r-rcpp)
5011 ("r-zip" ,r-zip)))
5012 (home-page "https://github.com/awalker89/openxlsx")
5013 (synopsis "Read, write and edit XLSX files")
5014 (description
5015 "This package simplifies the creation of Excel @code{.xlsx} files by
5016 providing a high level interface to writing, styling and editing worksheets.
5017 Through the use of Rcpp, read/write times are comparable to the @code{xlsx}
5018 and @code{XLConnect} packages with the added benefit of removing the
5019 dependency on Java.")
5020 (license license:gpl3)))
5021
5022 (define-public r-rio
5023 (package
5024 (name "r-rio")
5025 (version "0.5.16")
5026 (source
5027 (origin
5028 (method url-fetch)
5029 (uri (cran-uri "rio" version))
5030 (sha256
5031 (base32
5032 "0rfl56fdawlhc98451a9lcb6a6m56kw0i7dvd5hx58z025d8vsyk"))))
5033 (build-system r-build-system)
5034 (propagated-inputs
5035 `(("r-curl" ,r-curl)
5036 ("r-data-table" ,r-data-table)
5037 ("r-foreign" ,r-foreign)
5038 ("r-haven" ,r-haven)
5039 ("r-openxlsx" ,r-openxlsx)
5040 ("r-readxl" ,r-readxl)
5041 ("r-tibble" ,r-tibble)))
5042 (home-page "https://github.com/leeper/rio")
5043 (synopsis "Swiss-army knife for data I/O")
5044 (description
5045 "This package provides streamlined data import and export infrastructure
5046 by making assumptions that the user is probably willing to make: @code{import}
5047 and @code{export} determine the data structure from the file extension,
5048 reasonable defaults are used for data import and export (e.g.,
5049 @code{stringsAsFactors=FALSE}), web-based import is natively
5050 supported (including from SSL/HTTPS), compressed files can be read directly
5051 without explicit decompression, and fast import packages are used where
5052 appropriate. An additional convenience function, @code{convert}, provides a
5053 simple method for converting between file types.")
5054 (license license:gpl2)))
5055
5056 (define-public r-maptools
5057 (package
5058 (name "r-maptools")
5059 (version "0.9-5")
5060 (source
5061 (origin
5062 (method url-fetch)
5063 (uri (cran-uri "maptools" version))
5064 (sha256
5065 (base32
5066 "1pbvcn9xfx0hxq1ppbfg9xm5j04q4c15nj983yjmg7dlkzq135ax"))))
5067 (build-system r-build-system)
5068 (propagated-inputs
5069 `(("r-foreign" ,r-foreign)
5070 ("r-lattice" ,r-lattice)
5071 ("r-sp" ,r-sp)))
5072 (home-page "http://r-forge.r-project.org/projects/maptools/")
5073 (synopsis "Tools for reading and handling spatial objects")
5074 (description
5075 "This package provides a set of tools for manipulating and reading
5076 geographic data, in particular ESRI Shapefiles. It includes binary access to
5077 GSHHG shoreline files. The package also provides interface wrappers for
5078 exchanging spatial objects with other R packages.")
5079 ;; The C source files from shapelib are released under the Expat license.
5080 ;; The R code is released under GPL version 2 or later.
5081 (license (list license:gpl2+
5082 license:expat))))
5083
5084 (define-public r-later
5085 (package
5086 (name "r-later")
5087 (version "0.8.0")
5088 (source
5089 (origin
5090 (method url-fetch)
5091 (uri (cran-uri "later" version))
5092 (sha256
5093 (base32
5094 "08g503xjxrfxvrzj0cavsrz4m8ykbha64344j1w2r6v17js2hakb"))))
5095 (build-system r-build-system)
5096 (propagated-inputs
5097 `(("r-bh" ,r-bh)
5098 ("r-rcpp" ,r-rcpp)
5099 ("r-rlang" ,r-rlang)))
5100 (home-page "https://github.com/r-lib/later")
5101 (synopsis "Utilities for delaying function execution")
5102 (description
5103 "This package provides tools to execute arbitrary R or C functions some
5104 time after the current time, after the R execution stack has emptied.")
5105 (license license:gpl2+)))
5106
5107 (define-public r-promises
5108 (package
5109 (name "r-promises")
5110 (version "1.0.1")
5111 (source
5112 (origin
5113 (method url-fetch)
5114 (uri (cran-uri "promises" version))
5115 (sha256
5116 (base32
5117 "0n2mlv6bvfb4yhgcml696l9vkbw21pz0smqylivr606z99rwgny2"))))
5118 (build-system r-build-system)
5119 (propagated-inputs
5120 `(("r-later" ,r-later)
5121 ("r-magrittr" ,r-magrittr)
5122 ("r-r6" ,r-r6)
5123 ("r-rcpp" ,r-rcpp)
5124 ("r-rlang" ,r-rlang)))
5125 (home-page "https://rstudio.github.io/promises")
5126 (synopsis "Abstractions for promise-based asynchronous programming")
5127 (description
5128 "This package provides fundamental abstractions for doing asynchronous
5129 programming in R using promises. Asynchronous programming is useful for
5130 allowing a single R process to orchestrate multiple tasks in the background
5131 while also attending to something else. Semantics are similar to JavaScript
5132 promises, but with a syntax that is idiomatic R.")
5133 (license license:expat)))
5134
5135 (define-public r-dosnow
5136 (package
5137 (name "r-dosnow")
5138 (version "1.0.16")
5139 (source
5140 (origin
5141 (method url-fetch)
5142 (uri (cran-uri "doSNOW" version))
5143 (sha256
5144 (base32
5145 "13ir4a8252h4yvp5ir9xnwack1kn58i4ny6sf2qdc12zspn3850n"))))
5146 (properties `((upstream-name . "doSNOW")))
5147 (build-system r-build-system)
5148 (propagated-inputs
5149 `(("r-foreach" ,r-foreach)
5150 ("r-iterators" ,r-iterators)
5151 ("r-snow" ,r-snow)))
5152 (home-page "https://cran.r-project.org/web/packages/doSNOW")
5153 (synopsis "Foreach parallel adaptor for the snow package")
5154 (description
5155 "This package provides a parallel backend for the @code{%dopar%} function
5156 using the @code{snow} package.")
5157 (license license:gpl2)))
5158
5159 (define-public r-snowfall
5160 (package
5161 (name "r-snowfall")
5162 (version "1.84-6.1")
5163 (source (origin
5164 (method url-fetch)
5165 (uri (cran-uri "snowfall" version))
5166 (sha256
5167 (base32 "13941rlw1jsdjsndp1plzj1cq5aqravizkrqn6l25r9im7rnsi2w"))))
5168 (build-system r-build-system)
5169 (propagated-inputs
5170 `(("r-snow" ,r-snow)))
5171 (home-page "http://cran.r-project.org/web/packages/snowfall/")
5172 (synopsis "Easier cluster computing")
5173 (description "This package is a usability wrapper around snow for easier
5174 development of parallel R programs. This package offers e.g. extended error
5175 checks, and additional functions. All functions work in sequential mode, too,
5176 if no cluster is present or wished. The package is also designed as connector
5177 to the cluster management tool @code{sfCluster}, but can also used without
5178 it.")
5179 (license license:gpl2+)))
5180
5181 (define-public r-rappdirs
5182 (package
5183 (name "r-rappdirs")
5184 (version "0.3.1")
5185 (source
5186 (origin
5187 (method url-fetch)
5188 (uri (cran-uri "rappdirs" version))
5189 (sha256
5190 (base32
5191 "0ji6sg3bdn5gazkq14xmmcq7jnbsyxw4lzmmbgv6526j2vn93n1g"))))
5192 (build-system r-build-system)
5193 (home-page "https://cran.r-project.org/web/packages/rappdirs/")
5194 (synopsis "Determine where to save data, caches, and logs")
5195 (description
5196 "This package provides an easy way to determine which directories on the
5197 user's computer should be used to save data, caches and logs. It is a port of
5198 Python's @url{https://github.com/ActiveState/appdirs,Appdirs} to R.")
5199 (license license:expat)))
5200
5201 (define-public r-learnr
5202 (package
5203 (name "r-learnr")
5204 (version "0.9.2.1")
5205 (source
5206 (origin
5207 (method url-fetch)
5208 (uri (cran-uri "learnr" version))
5209 (sha256
5210 (base32
5211 "0jbk0g6fkw7zs8ykzhsvh9vvz8xmc4v03bqzjsa5mmpxpqan5vx5"))))
5212 (build-system r-build-system)
5213 (propagated-inputs
5214 `(("r-evaluate" ,r-evaluate)
5215 ("r-htmltools" ,r-htmltools)
5216 ("r-htmlwidgets" ,r-htmlwidgets)
5217 ("r-jsonlite" ,r-jsonlite)
5218 ("r-knitr" ,r-knitr)
5219 ("r-markdown" ,r-markdown)
5220 ("r-rappdirs" ,r-rappdirs)
5221 ("r-rmarkdown" ,r-rmarkdown)
5222 ("r-rprojroot" ,r-rprojroot)
5223 ("r-shiny" ,r-shiny)
5224 ("r-withr" ,r-withr)))
5225 (home-page "https://rstudio.github.io/learnr/")
5226 (synopsis "Interactive tutorials for R")
5227 (description
5228 "This package provides tools to create interactive tutorials using R
5229 Markdown. Use a combination of narrative, figures, videos, exercises, and
5230 quizzes to create self-paced tutorials for learning about R and R packages.")
5231 (license license:asl2.0)))
5232
5233 (define-public r-analytics
5234 (package
5235 (name "r-analytics")
5236 (version "3.0")
5237 (source
5238 (origin
5239 (method url-fetch)
5240 (uri (cran-uri "analytics" version))
5241 (sha256
5242 (base32
5243 "0js3c8lwj3knccb55nq03cbjlf4w390p9aid2mi5x80l3ayd9in1"))))
5244 (build-system r-build-system)
5245 (propagated-inputs
5246 `(("r-car" ,r-car)
5247 ("r-cluster" ,r-cluster)
5248 ("r-fractal" ,r-fractal)
5249 ("r-lmtest" ,r-lmtest)
5250 ("r-mass" ,r-mass)
5251 ("r-np" ,r-np)
5252 ("r-powerplus" ,r-powerplus)
5253 ("r-robust" ,r-robust)
5254 ("r-trend" ,r-trend)
5255 ("r-tsa" ,r-tsa)
5256 ("r-urca" ,r-urca)
5257 ("r-vim" ,r-vim)))
5258 (home-page "https://cran.r-project.org/web/packages/analytics/")
5259 (synopsis "Collection of data analysis tools")
5260 (description
5261 "This package is a collection of data analysis tools. It includes tools
5262 for regression outlier detection in a fitted linear model, stationary
5263 bootstrap using a truncated geometric distribution, a comprehensive test for
5264 weak stationarity, column means by group, weighted biplots, and a heuristic to
5265 obtain a better initial configuration in non-metric MDS.")
5266 (license license:gpl2)))
5267
5268 (define-public r-reticulate
5269 (package
5270 (name "r-reticulate")
5271 (version "1.12")
5272 (source
5273 (origin
5274 (method url-fetch)
5275 (uri (cran-uri "reticulate" version))
5276 (sha256
5277 (base32
5278 "0pqr1rcs8yg9nlh729mvlws93cqhpmv49j9bcgarh7vxzkwyv0kb"))))
5279 (build-system r-build-system)
5280 (inputs `(("python" ,python)))
5281 (propagated-inputs
5282 `(("r-jsonlite" ,r-jsonlite)
5283 ("r-matrix" ,r-matrix)
5284 ("r-rcpp" ,r-rcpp)))
5285 (home-page "https://github.com/rstudio/reticulate")
5286 (synopsis "R interface to Python")
5287 (description
5288 "This package provides an interface from R to Python modules, classes,
5289 and functions. When calling into Python, R data types are automatically
5290 converted to their equivalent Python types. When values are returned from
5291 Python to R they are converted back to R types.")
5292 (license license:asl2.0)))
5293
5294 (define-public r-bibtex
5295 (package
5296 (name "r-bibtex")
5297 (version "0.4.2")
5298 (source
5299 (origin
5300 (method url-fetch)
5301 (uri (cran-uri "bibtex" version))
5302 (sha256
5303 (base32
5304 "0wl3925ryd54g1nv3ncwllc493d39dpgy5md61940h69c0van1hz"))))
5305 (build-system r-build-system)
5306 (propagated-inputs `(("r-stringr" ,r-stringr)))
5307 (home-page "https://github.com/romainfrancois/bibtex")
5308 (synopsis "Bibtex parser")
5309 (description "This package provides a utility for R to parse a bibtex
5310 file.")
5311 (license license:gpl2+)))
5312
5313 (define-public r-ggseqlogo
5314 (package
5315 (name "r-ggseqlogo")
5316 (version "0.1")
5317 (source
5318 (origin
5319 (method url-fetch)
5320 (uri (cran-uri "ggseqlogo" version))
5321 (sha256
5322 (base32
5323 "13q6kcpxrqxqbji889fx63p0nsi08lk5yymkchig75r5k1d18ky1"))))
5324 (build-system r-build-system)
5325 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
5326 (home-page "https://github.com/omarwagih/ggseqlogo")
5327 (synopsis "ggplot2 extension for drawing genetic sequence logos")
5328 (description
5329 "The range of functions provided by this package makes it possible to
5330 draw highly versatile genomic sequence logos. Features include, but are not
5331 limited to, modifying colour schemes and fonts used to draw the logo,
5332 generating multiple logo plots, and aiding the visualisation with annotations.
5333 Sequence logos can easily be combined with other ggplot2 plots.")
5334 ;; Unspecified version of the LGPL.
5335 (license license:lgpl3+)))
5336
5337 (define-public r-ggsci
5338 (package
5339 (name "r-ggsci")
5340 (version "2.9")
5341 (source
5342 (origin
5343 (method url-fetch)
5344 (uri (cran-uri "ggsci" version))
5345 (sha256
5346 (base32
5347 "0g73x6grbka7ahjh6z23m3wrcifp5rdfdiasbl8lq4sp6rplxwaa"))))
5348 (build-system r-build-system)
5349 (propagated-inputs
5350 `(("r-ggplot2" ,r-ggplot2)
5351 ("r-scales" ,r-scales)))
5352 (home-page "https://nanx.me/ggsci/")
5353 (synopsis "Scientific journal and sci-fi themed color palettes for ggplot2")
5354 (description
5355 "This package provides a collection of ggplot2 color palettes inspired by
5356 plots in scientific journals, data visualization libraries, science fiction
5357 movies, and TV shows.")
5358 (license license:gpl3)))
5359
5360 (define-public r-ggsignif
5361 (package
5362 (name "r-ggsignif")
5363 (version "0.5.0")
5364 (source
5365 (origin
5366 (method url-fetch)
5367 (uri (cran-uri "ggsignif" version))
5368 (sha256
5369 (base32
5370 "0z04g5kqdj66fyfxb5d2m7njkqd7idbiy4xgsnxdh5pbh3cr643x"))))
5371 (build-system r-build-system)
5372 (propagated-inputs
5373 `(("r-ggplot2" ,r-ggplot2)))
5374 (home-page "https://github.com/const-ae/ggsignif")
5375 (synopsis "Significance brackets for ggplot2")
5376 (description
5377 "Enrich your ggplots with group-wise comparisons. This package provides
5378 an easy way to indicate if two groups are significantly different. Commonly
5379 this is shown by a bracket on top connecting the groups of interest which
5380 itself is annotated with the level of significance. The package provides a
5381 single layer that takes the groups for comparison and the test as arguments
5382 and adds the annotation to the plot.")
5383 (license license:gpl3)))
5384
5385 (define-public r-ggpubr
5386 (package
5387 (name "r-ggpubr")
5388 (version "0.2")
5389 (source
5390 (origin
5391 (method url-fetch)
5392 (uri (cran-uri "ggpubr" version))
5393 (sha256
5394 (base32
5395 "0rkpcjb1x7lvhj68aam5airbi534jqyiq12x5xk40a25iifhghq6"))))
5396 (build-system r-build-system)
5397 (propagated-inputs
5398 `(("r-cowplot" ,r-cowplot)
5399 ("r-dplyr" ,r-dplyr)
5400 ("r-ggplot2" ,r-ggplot2)
5401 ("r-ggrepel" ,r-ggrepel)
5402 ("r-ggsci" ,r-ggsci)
5403 ("r-ggsignif" ,r-ggsignif)
5404 ("r-glue" ,r-glue)
5405 ("r-gridextra" ,r-gridextra)
5406 ("r-magrittr" ,r-magrittr)
5407 ("r-polynom" ,r-polynom)
5408 ("r-purrr" ,r-purrr)
5409 ("r-scales" ,r-scales)
5410 ("r-tidyr" ,r-tidyr)))
5411 (home-page "http://www.sthda.com/english/rpkgs/ggpubr")
5412 (synopsis "ggplot2-based publication-ready plots")
5413 (description
5414 "The ggplot2 package is an excellent and flexible package for elegant
5415 data visualization in R. However the default generated plots require some
5416 formatting before we can send them for publication. The ggpubr package
5417 provides some easy-to-use functions for creating and customizing ggplot2-based
5418 publication-ready plots.")
5419 (license license:gpl2)))
5420
5421 (define-public r-ellipse
5422 (package
5423 (name "r-ellipse")
5424 (version "0.4.1")
5425 (source
5426 (origin
5427 (method url-fetch)
5428 (uri (cran-uri "ellipse" version))
5429 (sha256
5430 (base32
5431 "0g82vc51m3c1k0hnpp2zla6amxxgk2mmkl8ssnsc49jv3599r6hs"))))
5432 (build-system r-build-system)
5433 (home-page "https://cran.r-project.org/web/packages/ellipse/")
5434 (synopsis "Functions for drawing ellipses and ellipse-like confidence regions")
5435 (description
5436 "This package contains various routines for drawing ellipses and
5437 ellipse-like confidence regions, implementing the plots described in Murdoch
5438 and Chow (1996), A graphical display of large correlation matrices, The
5439 American Statistician 50, 178-180. There are also routines implementing the
5440 profile plots described in Bates and Watts (1988), Nonlinear Regression
5441 Analysis and its Applications.")
5442 (license license:gpl2+)))
5443
5444 (define-public r-flashclust
5445 (package
5446 (name "r-flashclust")
5447 (version "1.01-2")
5448 (source
5449 (origin
5450 (method url-fetch)
5451 (uri (cran-uri "flashClust" version))
5452 (sha256
5453 (base32
5454 "0l4lpz451ll7f7lfxmb7ds24ppzhfg1c3ypvydglcc35p2dq99s8"))))
5455 (properties `((upstream-name . "flashClust")))
5456 (build-system r-build-system)
5457 (native-inputs `(("gfortran" ,gfortran)))
5458 (home-page "https://cran.r-project.org/web/packages/flashClust/")
5459 (synopsis "Implementation of optimal hierarchical clustering")
5460 (description
5461 "This package provides a fast implementation of hierarchical
5462 clustering.")
5463 (license license:gpl2+)))
5464
5465 (define-public r-factominer
5466 (package
5467 (name "r-factominer")
5468 (version "1.41")
5469 (source
5470 (origin
5471 (method url-fetch)
5472 (uri (cran-uri "FactoMineR" version))
5473 (sha256
5474 (base32
5475 "1h20hydav6l2b7bngqw1av4l5rrh0wk58nhailga1f4qw9lrv259"))))
5476 (properties `((upstream-name . "FactoMineR")))
5477 (build-system r-build-system)
5478 (propagated-inputs
5479 `(("r-car" ,r-car)
5480 ("r-cluster" ,r-cluster)
5481 ("r-ellipse" ,r-ellipse)
5482 ("r-flashclust" ,r-flashclust)
5483 ("r-lattice" ,r-lattice)
5484 ("r-leaps" ,r-leaps)
5485 ("r-mass" ,r-mass)
5486 ("r-scatterplot3d" ,r-scatterplot3d)))
5487 (home-page "http://factominer.free.fr")
5488 (synopsis "Multivariate exploratory data analysis and data mining")
5489 (description
5490 "This package provides exploratory data analysis methods to summarize,
5491 visualize and describe datasets. The main principal component methods are
5492 available, those with the largest potential in terms of applications:
5493 principal component analysis (PCA) when variables are quantitative,
5494 correspondence analysis (CA) and multiple correspondence analysis (MCA) when
5495 variables are categorical, Multiple Factor Analysis when variables are
5496 structured in groups, etc. and hierarchical cluster analysis.")
5497 (license license:gpl2+)))
5498
5499 (define-public r-factoextra
5500 (package
5501 (name "r-factoextra")
5502 (version "1.0.5")
5503 (source
5504 (origin
5505 (method url-fetch)
5506 (uri (cran-uri "factoextra" version))
5507 (sha256
5508 (base32
5509 "1l6m8k7qhdw8ndar8nhmym0lfyd1i2iszl1cicjax0vq23ss6xw1"))))
5510 (build-system r-build-system)
5511 (propagated-inputs
5512 `(("r-abind" ,r-abind)
5513 ("r-cluster" ,r-cluster)
5514 ("r-dendextend" ,r-dendextend)
5515 ("r-factominer" ,r-factominer)
5516 ("r-ggplot2" ,r-ggplot2)
5517 ("r-ggpubr" ,r-ggpubr)
5518 ("r-ggrepel" ,r-ggrepel)
5519 ("r-reshape2" ,r-reshape2)
5520 ("r-tidyr" ,r-tidyr)))
5521 (home-page "http://www.sthda.com/english/rpkgs/factoextra")
5522 (synopsis "Extract and visualize the results of multivariate data analyses")
5523 (description
5524 "This package provides some easy-to-use functions to extract and
5525 visualize the output of multivariate data analyses, including
5526 @code{PCA} (Principal Component Analysis), @code{CA} (Correspondence
5527 Analysis), @code{MCA} (Multiple Correspondence Analysis), @code{FAMD} (Factor
5528 Analysis of Mixed Data), @code{MFA} (Multiple Factor Analysis) and
5529 @code{HMFA} (Hierarchical Multiple Factor Analysis) functions from different R
5530 packages. It contains also functions for simplifying some clustering analysis
5531 steps and provides ggplot2-based elegant data visualization.")
5532 (license license:gpl2)))
5533
5534 (define-public r-fansi
5535 (package
5536 (name "r-fansi")
5537 (version "0.4.0")
5538 (source
5539 (origin
5540 (method url-fetch)
5541 (uri (cran-uri "fansi" version))
5542 (sha256
5543 (base32
5544 "02f2rx7v7wz6w97m2slwky2i5y8f9iafycmkyr3siy3z3k8fj171"))))
5545 (build-system r-build-system)
5546 (native-inputs
5547 `(("r-knitr" ,r-knitr))) ; for vignettes
5548 (home-page "https://github.com/brodieG/fansi")
5549 (synopsis "ANSI control sequence aware string functions")
5550 (description
5551 "This package provides counterparts to R string manipulation functions
5552 that account for the effects of ANSI text formatting control sequences.")
5553 (license license:gpl2+)))
5554
5555 (define-public r-nbclust
5556 (package
5557 (name "r-nbclust")
5558 (version "3.0")
5559 (source
5560 (origin
5561 (method url-fetch)
5562 (uri (cran-uri "NbClust" version))
5563 (sha256
5564 (base32
5565 "1vwb48zy6ln1ddpqmfngii1i80n8qmqyxnzdp6gbaq96lakl3w3c"))))
5566 (properties `((upstream-name . "NbClust")))
5567 (build-system r-build-system)
5568 (home-page "https://sites.google.com/site/malikacharrad/research/nbclust-package")
5569 (synopsis "Determine the best number of clusters in a data set")
5570 (description
5571 "NbClust provides 30 indexes for determining the optimal number of
5572 clusters in a data set and offers the best clustering scheme from different
5573 results to the user.")
5574 (license license:gpl2)))
5575
5576 (define-public r-hdf5r
5577 (package
5578 (name "r-hdf5r")
5579 (version "1.2.0")
5580 (source
5581 (origin
5582 (method url-fetch)
5583 (uri (cran-uri "hdf5r" version))
5584 (sha256
5585 (base32
5586 "10gynjwaaxks8y9c2fl8k040j0nbwn372nil70009yfk9wrkx0aq"))))
5587 (build-system r-build-system)
5588 (inputs
5589 `(("hdf5" ,hdf5)
5590 ("zlib" ,zlib)))
5591 (propagated-inputs
5592 `(("r-bit64" ,r-bit64)
5593 ("r-r6" ,r-r6)))
5594 (home-page "https://hhoeflin.github.io/hdf5r")
5595 (synopsis "Interface to the HDF5 binary data format")
5596 (description
5597 "HDF5 is a data model, library and file format for storing and managing
5598 large amounts of data. This package provides a nearly feature complete,
5599 object oriented wrapper for the HDF5 API using R6 classes. Additionally,
5600 functionality is added so that HDF5 objects behave very similar to their
5601 corresponding R counterparts.")
5602 (license license:asl2.0)))
5603
5604 (define-public r-itertools
5605 (package
5606 (name "r-itertools")
5607 (version "0.1-3")
5608 (source
5609 (origin
5610 (method url-fetch)
5611 (uri (cran-uri "itertools" version))
5612 (sha256
5613 (base32
5614 "1ls5biiva10pb1dj3ph4griykb9vam02hkrdmlr5a5wf660hg6xn"))))
5615 (build-system r-build-system)
5616 (propagated-inputs
5617 `(("r-iterators" ,r-iterators)))
5618 (home-page "https://cran.r-project.org/web/packages/itertools/")
5619 (synopsis "Iterator tools")
5620 (description
5621 "This package provides various tools for creating iterators, many
5622 patterned after functions in the Python @code{itertools} module, and others
5623 patterned after functions in the snow package.")
5624 (license license:gpl2)))
5625
5626 (define-public r-polynom
5627 (package
5628 (name "r-polynom")
5629 (version "1.4-0")
5630 (source
5631 (origin
5632 (method url-fetch)
5633 (uri (cran-uri "polynom" version))
5634 (sha256
5635 (base32
5636 "1pflscwc0qzdf0y60j7s0dkglgmz18xajywfbn6s263idyr8idy5"))))
5637 (build-system r-build-system)
5638 (home-page "https://cran.r-project.org/web/packages/polynom/")
5639 (synopsis "Functions for univariate polynomial manipulations")
5640 (description
5641 "This package provides a collection of functions to implement a class for
5642 univariate polynomial manipulations.")
5643 (license license:gpl2)))
5644
5645 (define-public r-gbrd
5646 (package
5647 (name "r-gbrd")
5648 (version "0.4-11")
5649 (source
5650 (origin
5651 (method url-fetch)
5652 (uri (cran-uri "gbRd" version))
5653 (sha256
5654 (base32
5655 "06x97rw5i6v6cgjxkfhxnw4dn7lghn5q6ra7ri5ag1x9dkfzcl82"))))
5656 (properties `((upstream-name . "gbRd")))
5657 (build-system r-build-system)
5658 (home-page "https://cran.r-project.org/web/packages/gbRd/")
5659 (synopsis "Utilities for processing Rd objects and files")
5660 (description
5661 "This package provides utilities for processing Rd objects and files.
5662 Extract argument descriptions and other parts of the help pages of
5663 functions.")
5664 (license license:gpl2+)))
5665
5666 (define-public r-rjags
5667 (package
5668 (name "r-rjags")
5669 (version "4-8")
5670 (source
5671 (origin
5672 (method url-fetch)
5673 (uri (cran-uri "rjags" version))
5674 (sha256
5675 (base32
5676 "17xmjksj69f9wk4x71jxk4cgiqhaf2fj6bjm0mgzp4qln5x84a8m"))))
5677 (build-system r-build-system)
5678 (propagated-inputs
5679 `(("r-coda" ,r-coda)))
5680 (inputs
5681 `(("jags" ,jags)))
5682 (native-inputs
5683 `(("pkg-config" ,pkg-config)))
5684 (home-page "http://mcmc-jags.sourceforge.net")
5685 (synopsis "Bayesian graphical models using MCMC")
5686 (description
5687 "This package provides an R interface to the JAGS MCMC library. JAGS is
5688 Just Another Gibbs Sampler. It is a program for analysis of Bayesian
5689 hierarchical models using Markov Chain Monte Carlo (MCMC) simulation.")
5690 (license license:gpl2)))
5691
5692 (define-public r-rdpack
5693 (package
5694 (name "r-rdpack")
5695 (version "0.11-0")
5696 (source
5697 (origin
5698 (method url-fetch)
5699 (uri (cran-uri "Rdpack" version))
5700 (sha256
5701 (base32
5702 "11cd27s6zp5cxnwxcvz6rjf00y0r7aq8ywhzwpf1r4xy1z44kd4g"))))
5703 (properties `((upstream-name . "Rdpack")))
5704 (build-system r-build-system)
5705 (propagated-inputs
5706 `(("r-bibtex" ,r-bibtex)
5707 ("r-gbrd" ,r-gbrd)))
5708 (home-page "https://github.com/GeoBosh/Rdpack")
5709 (synopsis "Update and manipulate Rd documentation objects")
5710 (description
5711 "This package provides functions for manipulation of R documentation
5712 objects, including functions @code{reprompt()} and @code{ereprompt()} for
5713 updating Rd documentation for functions, methods and classes; it also includes
5714 Rd macros for citations and import of references from bibtex files for use in
5715 Rd files and roxygen2 comments, as well as many functions for manipulation of
5716 references and Rd files.")
5717 (license license:gpl2+)))
5718
5719 (define-public r-officer
5720 (package
5721 (name "r-officer")
5722 (version "0.3.4")
5723 (source
5724 (origin
5725 (method url-fetch)
5726 (uri (cran-uri "officer" version))
5727 (sha256
5728 (base32
5729 "1m4b3mcn5j5q3nq0jp1nranh4rdb8vxcpabn6ryqk9m6709fvhjz"))))
5730 (build-system r-build-system)
5731 (propagated-inputs
5732 `(("r-base64enc" ,r-base64enc)
5733 ("r-digest" ,r-digest)
5734 ("r-htmltools" ,r-htmltools)
5735 ("r-magrittr" ,r-magrittr)
5736 ("r-r6" ,r-r6)
5737 ("r-rcpp" ,r-rcpp)
5738 ("r-rlang" ,r-rlang)
5739 ("r-uuid" ,r-uuid)
5740 ("r-xml2" ,r-xml2)
5741 ("r-zip" ,r-zip)))
5742 (home-page "https://davidgohel.github.io/officer")
5743 (synopsis "Manipulation of Word and PowerPoint documents")
5744 (description
5745 "This package provides tools to access and manipulate Word and PowerPoint
5746 documents from R. The package focuses on tabular and graphical reporting from
5747 R; it also provides two functions that let users get document content into
5748 data objects. A set of functions lets add and remove images, tables and
5749 paragraphs of text in new or existing documents. When working with PowerPoint
5750 presentations, slides can be added or removed; shapes inside slides can also
5751 be added or removed. When working with Word documents, a cursor can be used
5752 to help insert or delete content at a specific location in the document.")
5753 (license license:gpl3)))
5754
5755 (define-public r-abn
5756 (package
5757 (name "r-abn")
5758 (version "1.3")
5759 (source
5760 (origin
5761 (method url-fetch)
5762 (uri (cran-uri "abn" version))
5763 (sha256
5764 (base32
5765 "1q9hzpxwg835711kxwygd0l2awal6f015f8s6fprwz7graz1wbbm"))))
5766 (build-system r-build-system)
5767 (inputs
5768 `(("gsl" ,gsl)))
5769 (propagated-inputs
5770 `(("r-cairo" ,r-cairo)
5771 ("r-lme4" ,r-lme4)
5772 ("r-mass" ,r-mass)
5773 ("r-nnet" ,r-nnet)
5774 ("r-rcpp" ,r-rcpp)
5775 ("r-rcpparmadillo" ,r-rcpparmadillo)
5776 ("r-rjags" ,r-rjags)))
5777 (home-page "http://www.r-bayesian-networks.org")
5778 (synopsis "Modelling multivariate data with additive bayesian networks")
5779 (description
5780 "Bayesian network analysis is a form of probabilistic graphical models
5781 which derives from empirical data a directed acyclic graph, DAG, describing
5782 the dependency structure between random variables. An additive Bayesian
5783 network model consists of a form of a DAG where each node comprises a
5784 @dfn{generalized linear model} (GLM). Additive Bayesian network models are
5785 equivalent to Bayesian multivariate regression using graphical modelling, they
5786 generalises the usual multivariable regression, GLM, to multiple dependent
5787 variables. This package provides routines to help determine optimal Bayesian
5788 network models for a given data set, where these models are used to identify
5789 statistical dependencies in messy, complex data.")
5790 (license license:gpl2+)))
5791
5792 (define-public r-acd
5793 (package
5794 (name "r-acd")
5795 (version "1.5.3")
5796 (source
5797 (origin
5798 (method url-fetch)
5799 (uri (cran-uri "ACD" version))
5800 (sha256
5801 (base32
5802 "1a67bi3hklq8nlc50r0qnyr4k7m9kpvijy8sqqpm54by5hsysfd6"))))
5803 (properties `((upstream-name . "ACD")))
5804 (build-system r-build-system)
5805 (home-page "https://cran.r-project.org/web/packages/ACD/")
5806 (synopsis "Categorical data analysis with complete or missing responses")
5807 (description
5808 "This package provides tools for categorical data analysis with complete
5809 or missing responses.")
5810 (license license:gpl2+)))
5811
5812 (define-public r-acdm
5813 (package
5814 (name "r-acdm")
5815 (version "1.0.4")
5816 (source
5817 (origin
5818 (method url-fetch)
5819 (uri (cran-uri "ACDm" version))
5820 (sha256
5821 (base32
5822 "0b4f02ga5ra66mbrm79g0bnlzmii82rks9kmxixxqgf18yhlyjil"))))
5823 (properties `((upstream-name . "ACDm")))
5824 (build-system r-build-system)
5825 (propagated-inputs
5826 `(("r-dplyr" ,r-dplyr)
5827 ("r-ggplot2" ,r-ggplot2)
5828 ("r-plyr" ,r-plyr)
5829 ("r-rsolnp" ,r-rsolnp)
5830 ("r-zoo" ,r-zoo)))
5831 (home-page "https://cran.r-project.org/web/packages/ACDm/")
5832 (synopsis "Tools for Autoregressive Conditional Duration Models")
5833 (description
5834 "ACDm is a package for Autoregressive Conditional Duration (ACD, Engle
5835 and Russell, 1998) models. It creates trade, price or volume durations from
5836 transactions (tic) data, performs diurnal adjustments, fits various ACD models
5837 and tests them.")
5838 (license license:gpl2+)))
5839
5840 (define-public r-overlap
5841 (package
5842 (name "r-overlap")
5843 (version "0.3.2")
5844 (source
5845 (origin
5846 (method url-fetch)
5847 (uri (cran-uri "overlap" version))
5848 (sha256
5849 (base32
5850 "1j3m6ir1chdz0si2fhcw6gs7c9h09bv0chz18rpzxsywww6d4rzy"))))
5851 (build-system r-build-system)
5852 (home-page "https://cran.r-project.org/web/packages/overlap/")
5853 (synopsis "Estimates of coefficient of overlapping for animal activity patterns")
5854 (description
5855 "This package provides functions to fit kernel density functions to data
5856 on temporal activity patterns of animals; estimate coefficients of overlapping
5857 of densities for two species; and calculate bootstrap estimates of confidence
5858 intervals.")
5859 (license license:gpl3+)))
5860
5861 (define-public r-snakecase
5862 (package
5863 (name "r-snakecase")
5864 (version "0.11.0")
5865 (source
5866 (origin
5867 (method url-fetch)
5868 (uri (cran-uri "snakecase" version))
5869 (sha256
5870 (base32
5871 "1ky1x2cp5rd0ffd9m1fji9sq4z4jsrpxzg30brw8bb4ihfjj114r"))))
5872 (build-system r-build-system)
5873 (propagated-inputs
5874 `(("r-stringi" ,r-stringi)
5875 ("r-stringr" ,r-stringr)))
5876 (home-page "https://github.com/Tazinho/snakecase")
5877 (synopsis "Convert strings into any case")
5878 (description
5879 "This package provides a consistent, flexible and easy to use tool to
5880 parse and convert strings into cases like snake or camel among others.")
5881 (license license:gpl3)))
5882
5883 (define-public r-prediction
5884 (package
5885 (name "r-prediction")
5886 (version "0.3.6.2")
5887 (source
5888 (origin
5889 (method url-fetch)
5890 (uri (cran-uri "prediction" version))
5891 (sha256
5892 (base32
5893 "0kx7xbm2j6c8h6gk1iig4vfpg877psg16j74hl7zc2mv40sc6dy5"))))
5894 (build-system r-build-system)
5895 (propagated-inputs
5896 `(("r-data-table" ,r-data-table)))
5897 (home-page "https://github.com/leeper/prediction")
5898 (synopsis "Tidy, type-safe prediction methods")
5899 (description
5900 "This package provides the @code{prediction()} function, a type-safe
5901 alternative to @code{predict()} that always returns a data frame. The package
5902 currently supports common model types (e.g., @code{\"lm\"}, @code{\"glm\"})
5903 from the @code{stats} package, as well as numerous other model classes from
5904 other add-on packages.")
5905 (license license:expat)))
5906
5907 (define-public r-insight
5908 (package
5909 (name "r-insight")
5910 (version "0.3.0")
5911 (source
5912 (origin
5913 (method url-fetch)
5914 (uri (cran-uri "insight" version))
5915 (sha256
5916 (base32
5917 "1r288hc01cpyrk3nias30fw783z2vw20qr1k67vr65anh7mwm7vb"))))
5918 (build-system r-build-system)
5919 (home-page "https://easystats.github.io/insight/")
5920 (synopsis "Easy access to model information for various model objects")
5921 (description
5922 "This package provides a tool to provide an easy, intuitive and
5923 consistent access to information contained in various R models, like model
5924 formulas, model terms, information about random effects, data that was used to
5925 fit the model or data from response variables. The package mainly revolves
5926 around two types of functions: Functions that find (the names of) information,
5927 starting with @code{find_}, and functions that get the underlying data,
5928 starting with @code{get_}. The package has a consistent syntax and works with
5929 many different model objects, where otherwise functions to access these
5930 information are missing.")
5931 (license license:gpl3)))
5932
5933 (define-public r-sjlabelled
5934 (package
5935 (name "r-sjlabelled")
5936 (version "1.1.0")
5937 (source
5938 (origin
5939 (method url-fetch)
5940 (uri (cran-uri "sjlabelled" version))
5941 (sha256
5942 (base32
5943 "0rnmlwpp41h04dzfjd5ncvzjzs43slaimb4v2in1axznv3haafyc"))))
5944 (build-system r-build-system)
5945 (propagated-inputs
5946 `(("r-haven" ,r-haven)
5947 ("r-insight" ,r-insight)
5948 ("r-magrittr" ,r-magrittr)
5949 ("r-purrr" ,r-purrr)
5950 ("r-rlang" ,r-rlang)
5951 ("r-tidyselect" ,r-tidyselect)))
5952 (home-page "https://github.com/strengejacke/sjlabelled")
5953 (synopsis "Labelled data utility functions")
5954 (description
5955 "This package provides a collection of functions dealing with labelled
5956 data, like reading and writing data between R and other statistical software
5957 packages. This includes easy ways to get, set or change value and variable
5958 label attributes, to convert labelled vectors into factors or numeric (and
5959 vice versa), or to deal with multiple declared missing values.")
5960 (license license:gpl3)))
5961
5962 (define-public r-sjmisc
5963 (package
5964 (name "r-sjmisc")
5965 (version "2.8.0")
5966 (source
5967 (origin
5968 (method url-fetch)
5969 (uri (cran-uri "sjmisc" version))
5970 (sha256
5971 (base32
5972 "0pgavkygsj8fa591pmasx78b4gd32sf2pa067yqvi82xha7dj5k4"))))
5973 (build-system r-build-system)
5974 (propagated-inputs
5975 `(("r-dplyr" ,r-dplyr)
5976 ("r-insight" ,r-insight)
5977 ("r-magrittr" ,r-magrittr)
5978 ("r-purrr" ,r-purrr)
5979 ("r-rlang" ,r-rlang)
5980 ("r-sjlabelled" ,r-sjlabelled)))
5981 (home-page "https://github.com/strengejacke/sjmisc")
5982 (synopsis "Data and variable transformation functions")
5983 (description
5984 "This package is a collection of miscellaneous utility functions,
5985 supporting data transformation tasks like recoding, dichotomizing or grouping
5986 variables, setting and replacing missing values. The data transformation
5987 functions also support labelled data, and all integrate seamlessly into a
5988 tidyverse workflow.")
5989 (license license:gpl3)))
5990
5991 (define-public r-nortest
5992 (package
5993 (name "r-nortest")
5994 (version "1.0-4")
5995 (source
5996 (origin
5997 (method url-fetch)
5998 (uri (cran-uri "nortest" version))
5999 (sha256
6000 (base32
6001 "17r0wpz72z9312c70nwi1i1kp1v9fm1h6jg7q5cx1mc1h420m1d3"))))
6002 (build-system r-build-system)
6003 (home-page "https://cran.r-project.org/web/packages/nortest/")
6004 (synopsis "Tests for normality")
6005 (description
6006 "This package provides five omnibus tests for testing the composite
6007 hypothesis of normality.")
6008 (license license:gpl2+)))
6009
6010 (define-public r-moonbook
6011 (package
6012 (name "r-moonbook")
6013 (version "0.2.3")
6014 (source
6015 (origin
6016 (method url-fetch)
6017 (uri (cran-uri "moonBook" version))
6018 (sha256
6019 (base32
6020 "0hys56mwbm776ff7dibi8wzyf69qiais9rs1jazv79lk6h56s9s6"))))
6021 (properties `((upstream-name . "moonBook")))
6022 (build-system r-build-system)
6023 (propagated-inputs
6024 `(("r-magrittr" ,r-magrittr)
6025 ("r-nortest" ,r-nortest)
6026 ("r-purrr" ,r-purrr)
6027 ("r-sjmisc" ,r-sjmisc)
6028 ("r-stringr" ,r-stringr)
6029 ("r-survival" ,r-survival)))
6030 (home-page "https://github.com/cardiomoon/moonBook")
6031 (synopsis "Functions and datasets for the book by Keon-Woong Moon")
6032 (description
6033 "This package provides several analysis-related functions for the book
6034 entitled \"R statistics and graph for medical articles\" (written in Korean),
6035 version 1, by Keon-Woong Moon with Korean demographic data with several plot
6036 functions.")
6037 (license license:gpl2)))
6038
6039 (define-public r-flextable
6040 (package
6041 (name "r-flextable")
6042 (version "0.5.4")
6043 (source
6044 (origin
6045 (method url-fetch)
6046 (uri (cran-uri "flextable" version))
6047 (sha256
6048 (base32
6049 "0h6ylgz1mn61d2kh1bym8hfl3r7nf4z092lmjsaav3h1ki3avrnl"))))
6050 (build-system r-build-system)
6051 (propagated-inputs
6052 `(("r-base64enc" ,r-base64enc)
6053 ("r-data-table" ,r-data-table)
6054 ("r-gdtools" ,r-gdtools)
6055 ("r-htmltools" ,r-htmltools)
6056 ("r-knitr" ,r-knitr)
6057 ("r-officer" ,r-officer)
6058 ("r-rlang" ,r-rlang)
6059 ("r-rmarkdown" ,r-rmarkdown)
6060 ("r-xml2" ,r-xml2)))
6061 (home-page "https://davidgohel.github.io/flextable")
6062 (synopsis "Functions for tabular reporting")
6063 (description
6064 "This package provides tools to create pretty tables for HTML documents
6065 and other formats. Functions are provided to let users create tables, modify
6066 and format their content. It extends the @code{officer} package and can be
6067 used within R markdown documents when rendering to HTML and to Word
6068 documents.")
6069 (license license:gpl3)))
6070
6071 (define-public r-writexl
6072 (package
6073 (name "r-writexl")
6074 (version "1.1")
6075 (source
6076 (origin
6077 (method url-fetch)
6078 (uri (cran-uri "writexl" version))
6079 (sha256
6080 (base32
6081 "0w4wnpl3yhaqp63p32bk60xrbmd7xd11kxifjbzrghi7d4483a46"))))
6082 (build-system r-build-system)
6083 (inputs `(("zlib" ,zlib)))
6084 (home-page "https://github.com/ropensci/writexl")
6085 (synopsis "Export data frames to xlsx format")
6086 (description
6087 "This package provides a data frame to xlsx exporter based on
6088 libxlsxwriter.")
6089 (license license:bsd-2)))
6090
6091 (define-public r-biasedurn
6092 (package
6093 (name "r-biasedurn")
6094 (version "1.07")
6095 (source
6096 (origin
6097 (method url-fetch)
6098 (uri (cran-uri "BiasedUrn" version))
6099 (sha256
6100 (base32
6101 "13i2lgfnjhlbbm2yxfc2l5hswqw6x03pwba5csjmirv8kpjw4xr3"))))
6102 (properties `((upstream-name . "BiasedUrn")))
6103 (build-system r-build-system)
6104 (home-page "https://cran.r-project.org/web/packages/BiasedUrn/")
6105 (synopsis "Biased Urn model distributions")
6106 (description
6107 "This package provides statistical models of biased sampling in the form
6108 of univariate and multivariate noncentral hypergeometric distributions,
6109 including Wallenius' noncentral hypergeometric distribution and Fisher's
6110 noncentral hypergeometric distribution (also called extended hypergeometric
6111 distribution).")
6112 (license license:gpl3)))
6113
6114 (define-public r-goplot
6115 (package
6116 (name "r-goplot")
6117 (version "1.0.2")
6118 (source
6119 (origin
6120 (method url-fetch)
6121 (uri (cran-uri "GOplot" version))
6122 (sha256
6123 (base32
6124 "1y8dv0kbzpr9za91njw0x233vx5d13vqml9hmpddcyi9s6va5nix"))))
6125 (properties `((upstream-name . "GOplot")))
6126 (build-system r-build-system)
6127 (propagated-inputs
6128 `(("r-ggdendro" ,r-ggdendro)
6129 ("r-ggplot2" ,r-ggplot2)
6130 ("r-gridextra" ,r-gridextra)
6131 ("r-rcolorbrewer" ,r-rcolorbrewer)))
6132 (home-page "https://github.com/wencke/wencke.github.io")
6133 (synopsis "Visualization of functional analysis data")
6134 (description
6135 "This package provides an implementation of multilayered visualizations
6136 for enhanced graphical representation of functional analysis data. It
6137 combines and integrates omics data derived from expression and functional
6138 annotation enrichment analyses. Its plotting functions have been developed
6139 with an hierarchical structure in mind: starting from a general overview to
6140 identify the most enriched categories (modified bar plot, bubble plot) to a
6141 more detailed one displaying different types of relevant information for the
6142 molecules in a given set of categories (circle plot, chord plot, cluster plot,
6143 Venn diagram, heatmap).")
6144 (license license:gpl2)))
6145
6146 (define-public r-getopt
6147 (package
6148 (name "r-getopt")
6149 (version "1.20.3")
6150 (source
6151 (origin
6152 (method url-fetch)
6153 (uri (cran-uri "getopt" version))
6154 (sha256
6155 (base32
6156 "0zzmzgwl9a4y3s34600vmih22d6y32294f9bvxrnmffnvkgmy7sk"))))
6157 (build-system r-build-system)
6158 (home-page "https://github.com/trevorld/getopt")
6159 (synopsis "Command-line option processor for R")
6160 (description
6161 "This package is designed to be used with Rscript to write shebang
6162 scripts that accept short and long options. Many users will prefer to
6163 use the packages @code{optparse} or @code{argparse} which add extra
6164 features like automatically generated help options and usage texts,
6165 support for default values, positional argument support, etc.")
6166 (license license:gpl2+)))
6167
6168 (define-public r-findpython
6169 (package
6170 (name "r-findpython")
6171 (version "1.0.5")
6172 (source
6173 (origin
6174 (method url-fetch)
6175 (uri (cran-uri "findpython" version))
6176 (sha256
6177 (base32
6178 "0icifm4z6hhpmcjrg75a875iph0ci890ss02kdv3725pijc236iy"))))
6179 (build-system r-build-system)
6180 (home-page "https://github.com/trevorld/findpython")
6181 (synopsis "Functions to find an acceptable Python binary")
6182 (description
6183 "This package was designed to find an acceptable Python binary that
6184 matches version and feature constraints.")
6185 (license license:expat)))
6186
6187 ;; This in not the same as "r-argparser"
6188 (define-public r-argparse
6189 (package
6190 (name "r-argparse")
6191 (version "2.0.1")
6192 (source
6193 (origin
6194 (method url-fetch)
6195 (uri (cran-uri "argparse" version))
6196 (sha256
6197 (base32
6198 "1as7h6z7kzgv0fqzpnp76qbm96b4jcd37azd58b7rz0l1n94764l"))))
6199 (build-system r-build-system)
6200 (inputs `(("python" ,python)))
6201 (propagated-inputs
6202 `(("r-findpython" ,r-findpython)
6203 ("r-jsonlite" ,r-jsonlite)
6204 ("r-r6" ,r-r6)))
6205 (home-page "https://github.com/trevorld/argparse")
6206 (synopsis "Command line optional and positional argument parser")
6207 (description
6208 "This package provides a command line parser to be used with Rscript to
6209 write shebang scripts that gracefully accept positional and optional arguments
6210 and automatically generate usage notices.")
6211 (license license:gpl2+)))
6212
6213 (define-public r-hash
6214 (package
6215 (name "r-hash")
6216 (version "2.2.6.1")
6217 (source
6218 (origin
6219 (method url-fetch)
6220 (uri (cran-uri "hash" version))
6221 (sha256
6222 (base32
6223 "0b3fl0rvgwb992knl81vm99lsldg5clvaqjh6mamm6zqmb6dz056"))))
6224 (build-system r-build-system)
6225 (home-page "https://cran.r-project.org/web/packages/hash/")
6226 (synopsis "Implementation of hash/associated arrays/dictionaries")
6227 (description
6228 "This package implements a data structure similar to hashes in Perl and
6229 dictionaries in Python but with a purposefully R flavor. For objects of
6230 appreciable size, access using hashes outperforms native named lists and
6231 vectors.")
6232 (license license:gpl2+)))
6233
6234 (define-public r-orddom
6235 (package
6236 (name "r-orddom")
6237 (version "3.1")
6238 (source
6239 (origin
6240 (method url-fetch)
6241 (uri (cran-uri "orddom" version))
6242 (sha256
6243 (base32
6244 "165axs15fvwhrp89xd87l81q3h2qjll1vrwcsap645cwvb85nwsh"))))
6245 (build-system r-build-system)
6246 (propagated-inputs `(("r-psych" ,r-psych)))
6247 (home-page "https://cran.r-project.org/web/packages/orddom/")
6248 (synopsis "Ordinal dominance statistics")
6249 (description
6250 "This package provides tools to compute ordinal, statistics and effect
6251 sizes as an alternative to mean comparison: Cliff's delta or success rate
6252 difference (SRD), Vargha and Delaney's A or the Area Under a Receiver
6253 Operating Characteristic Curve (AUC), the discrete type of McGraw & Wong's
6254 Common Language Effect Size (CLES) or Grissom & Kim's Probability of
6255 Superiority (PS), and the Number needed to treat (NNT) effect size. Moreover,
6256 comparisons to Cohen's d are offered based on Huberty & Lowman's Percentage of
6257 Group (Non-)Overlap considerations.")
6258 (license license:gpl2)))
6259
6260 (define-public r-doby
6261 (package
6262 (name "r-doby")
6263 (version "4.6-2")
6264 (source
6265 (origin
6266 (method url-fetch)
6267 (uri (cran-uri "doBy" version))
6268 (sha256
6269 (base32
6270 "02vbv9nfgywg6lsiialkmfnax5z3rkyb9nr8j9l2cp8xi6ml95mb"))))
6271 (properties `((upstream-name . "doBy")))
6272 (build-system r-build-system)
6273 (propagated-inputs
6274 `(("r-dplyr" ,r-dplyr)
6275 ("r-magrittr" ,r-magrittr)
6276 ("r-mass" ,r-mass)
6277 ("r-matrix" ,r-matrix)
6278 ("r-plyr" ,r-plyr)))
6279 (home-page "http://people.math.aau.dk/~sorenh/software/doBy/")
6280 (synopsis "Groupwise statistics, LSmeans, linear contrasts, and utilities")
6281 (description
6282 "This package contains:
6283
6284 @itemize
6285 @item facilities for working with grouped data: @code{do}
6286 something to data stratified @code{by} some variables.
6287 @item implementations of least-squares means, general linear contrasts, and
6288 @item miscellaneous other utilities.
6289 @end itemize\n")
6290 (license license:gpl2+)))
6291
6292 (define-public r-refgenome
6293 (package
6294 (name "r-refgenome")
6295 (version "1.7.7")
6296 (source
6297 (origin
6298 (method url-fetch)
6299 (uri (cran-uri "refGenome" version))
6300 (sha256
6301 (base32
6302 "1za89bn3am1zgvm641qi1ab6kaqpll4rb9p9f1sjwvcgqq6065g5"))))
6303 (properties `((upstream-name . "refGenome")))
6304 (build-system r-build-system)
6305 (propagated-inputs
6306 `(("r-dbi" ,r-dbi)
6307 ("r-doby" ,r-doby)
6308 ("r-rsqlite" ,r-rsqlite)))
6309 (home-page "https://cran.r-project.org/web/packages/refGenome/")
6310 (synopsis
6311 "Gene and splice site annotation using annotation data from Ensembl and UCSC")
6312 (description
6313 "This package contains functionality for importing and managing of
6314 downloaded genome annotation data from the Ensembl genome browser (European
6315 Bioinformatics Institute) and from the UCSC genome browser (University of
6316 California, Santa Cruz) and annotation routines for genomic positions and
6317 splice site positions.")
6318 (license license:gpl2)))
6319
6320 (define-public r-basix
6321 (package
6322 (name "r-basix")
6323 (version "1.1")
6324 (source
6325 (origin
6326 (method url-fetch)
6327 (uri (cran-uri "BASIX" version))
6328 (sha256
6329 (base32
6330 "18dkvv1iwskfnlpl6xridcgqpalbbpm2616mvc3hfrc0b26v01id"))))
6331 (properties `((upstream-name . "BASIX")))
6332 (build-system r-build-system)
6333 (home-page "https://cran.r-project.org/web/packages/BASIX/")
6334 (synopsis "Efficient C/C++ toolset for R")
6335 (description
6336 "BASIX provides some efficient C/C++ implementations of native R
6337 procedures to speed up calculations in R.")
6338 (license license:gpl2)))
6339
6340 (define-public r-blockfest
6341 (package
6342 (name "r-blockfest")
6343 (version "1.6")
6344 (source
6345 (origin
6346 (method url-fetch)
6347 (uri (cran-uri "BlockFeST" version))
6348 (sha256
6349 (base32
6350 "0hj7a5as7nxbgjac7lbj6qfwffx3g8x8phpf9a55f1c9cdzi73a5"))))
6351 (properties `((upstream-name . "BlockFeST")))
6352 (build-system r-build-system)
6353 (propagated-inputs `(("r-basix" ,r-basix)))
6354 (home-page "https://cran.r-project.org/web/packages/BlockFeST/")
6355 (synopsis "Bayesian calculation of region-specific fixation index")
6356 (description
6357 "This package provides an R implementation of an extension of the
6358 BayeScan software for codominant markers, adding the option to group
6359 individual SNPs into pre-defined blocks. A typical application of this new
6360 approach is the identification of genomic regions, genes, or gene sets
6361 containing one or more SNPs that evolved under directional selection.")
6362 (license license:gpl2)))
6363
6364 (define-public r-proc
6365 (package
6366 (name "r-proc")
6367 (version "1.15.0")
6368 (source
6369 (origin
6370 (method url-fetch)
6371 (uri (cran-uri "pROC" version))
6372 (sha256
6373 (base32
6374 "1dxxkwdhxfnj2znq4c5ggrr9m5klh5pmfxg17rz59vr2hfb73m24"))))
6375 (properties `((upstream-name . "pROC")))
6376 (build-system r-build-system)
6377 (propagated-inputs
6378 `(("r-plyr" ,r-plyr)
6379 ("r-rcpp" ,r-rcpp)))
6380 (home-page "http://expasy.org/tools/pROC/")
6381 (synopsis "Display and analyze ROC curves")
6382 (description
6383 "This package provides tools for visualizing, smoothing and comparing
6384 receiver operating characteristic (ROC curves). The area under the
6385 curve (AUC) can be compared with statistical tests based on U-statistics or
6386 bootstrap. Confidence intervals can be computed for (p)AUC or ROC curves.")
6387 (license license:gpl3+)))
6388
6389 (define-public r-rootsolve
6390 (package
6391 (name "r-rootsolve")
6392 (version "1.7")
6393 (source
6394 (origin
6395 (method url-fetch)
6396 (uri (cran-uri "rootSolve" version))
6397 (sha256
6398 (base32
6399 "08ic6ggcc5dw4nv9xsqkm3vnvswmxyhnqnv1rdjv1h2gy1ivpcq8"))))
6400 (properties `((upstream-name . "rootSolve")))
6401 (build-system r-build-system)
6402 (native-inputs `(("gfortran" ,gfortran)))
6403 (home-page "https://cran.r-project.org/web/packages/rootSolve/")
6404 (synopsis "Tools for the analysis of ordinary differential equations")
6405 (description
6406 "This package provides routines to find the root of nonlinear functions,
6407 and to perform steady-state and equilibrium analysis of @dfn{ordinary
6408 differential equations} (ODE). It includes routines that:
6409
6410 @enumerate
6411 @item generate gradient and jacobian matrices (full and banded),
6412 @item find roots of non-linear equations by the Newton-Raphson method,
6413 @item estimate steady-state conditions of a system of (differential) equations
6414 in full, banded or sparse form, using the Newton-Raphson method, or by
6415 dynamically running,
6416 @item solve the steady-state conditions for uni- and multicomponent 1-D, 2-D,
6417 and 3-D partial differential equations, that have been converted to ordinary
6418 differential equations by numerical differencing (using the method-of-lines
6419 approach).
6420 @end enumerate\n")
6421 (license license:gpl2+)))
6422
6423 (define-public r-abcanalysis
6424 (package
6425 (name "r-abcanalysis")
6426 (version "1.2.1")
6427 (source
6428 (origin
6429 (method url-fetch)
6430 (uri (cran-uri "ABCanalysis" version))
6431 (sha256
6432 (base32 "0wac1ksmnxa36v99ca4hv8k0rsh3igwpcllmlv9wf7i9kgqviqwi"))))
6433 (properties `((upstream-name . "ABCanalysis")))
6434 (build-system r-build-system)
6435 (propagated-inputs `(("r-plotrix" ,r-plotrix)))
6436 (home-page "https://www.uni-marburg.de/fb12/arbeitsgruppen/datenbionik/software-en/")
6437 (synopsis "Computed ABC Analysis")
6438 (description
6439 "Multivariate data sets often differ in several factors or derived statistical
6440 parameters, which have to be selected for a valid interpretation. Basing this
6441 selection on traditional statistical limits leads occasionally to the perception
6442 of losing information from a data set. This package provides tools to calculate
6443 these limits on the basis of the mathematical properties of the distribution of
6444 the analyzed items.")
6445 (license license:gpl3)))
6446
6447 (define-public r-slam
6448 (package
6449 (name "r-slam")
6450 (version "0.1-45")
6451 (source
6452 (origin
6453 (method url-fetch)
6454 (uri (cran-uri "slam" version))
6455 (sha256
6456 (base32 "0xvj8va6xd7zkn3l4a5ad7v62s7xmkz8frq7gpcl3b6vqwckkaw4"))))
6457 (build-system r-build-system)
6458 (home-page "https://cran.r-project.org/web/packages/slam/")
6459 (synopsis "Sparse lightweight arrays and matrices")
6460 (description
6461 "This package contains data structures and algorithms for sparse arrays and matrices,
6462 based on index arrays and simple triplet representations, respectively.")
6463 (license license:gpl2)))
6464
6465 (define-public r-manipulatewidget
6466 (package
6467 (name "r-manipulatewidget")
6468 (version "0.10.0")
6469 (source
6470 (origin
6471 (method url-fetch)
6472 (uri (cran-uri "manipulateWidget" version))
6473 (sha256
6474 (base32 "1zagrbwkn2d50zzw8i2vyb1hsq4cydmfsqiy1a2qlp6zrv8a6q9x"))))
6475 (properties
6476 `((upstream-name . "manipulateWidget")))
6477 (build-system r-build-system)
6478 (propagated-inputs
6479 `(("r-base64enc" ,r-base64enc)
6480 ("r-codetools" ,r-codetools)
6481 ("r-htmltools" ,r-htmltools)
6482 ("r-htmlwidgets" ,r-htmlwidgets)
6483 ("r-knitr" ,r-knitr)
6484 ("r-miniui" ,r-miniui)
6485 ("r-shiny" ,r-shiny)
6486 ("r-webshot" ,r-webshot)))
6487 (home-page "https://github.com/rte-antares-rpackage/manipulateWidget/")
6488 (synopsis "Add even more interactivity to interactive charts")
6489 (description
6490 "This package lets you create in just a few lines of R code a nice user interface to
6491 modify the data or the graphical parameters of one or multiple interactive
6492 charts. It is useful to quickly explore visually some data or for package
6493 developers to generate user interfaces easy to maintain.")
6494 (license license:gpl2+)))
6495
6496 (define-public r-a3
6497 (package
6498 (name "r-a3")
6499 (version "1.0.0")
6500 (source
6501 (origin
6502 (method url-fetch)
6503 (uri (cran-uri "A3" version))
6504 (sha256
6505 (base32 "017hq9pjsv1h9i7cqk5cfx27as54shlhdsdvr6jkhb8jfkpdb6cw"))))
6506 (properties `((upstream-name . "A3")))
6507 (build-system r-build-system)
6508 (propagated-inputs
6509 `(("r-pbapply" ,r-pbapply)
6510 ("r-xtable" ,r-xtable)))
6511 (home-page "https://cran.r-project.org/web/packages/A3/")
6512 (synopsis "Error metrics for predictive models")
6513 (description
6514 "This package supplies tools for tabulating and analyzing the results of predictive
6515 models. The methods employed are applicable to virtually any predictive model
6516 and make comparisons between different methodologies straightforward.")
6517 (license license:gpl2+)))
6518
6519 (define-public r-infotheo
6520 (package
6521 (name "r-infotheo")
6522 (version "1.2.0")
6523 (source
6524 (origin
6525 (method url-fetch)
6526 (uri (cran-uri "infotheo" version))
6527 (sha256
6528 (base32
6529 "18xacczfq3z3xpy434js4nf3l19lczngzd0lq26wh22pvg1yniwv"))))
6530 (build-system r-build-system)
6531 (home-page "http://homepage.meyerp.com/software")
6532 (synopsis "Information-theoretic measures")
6533 (description
6534 "This package implements various measures of information theory based on
6535 several entropy estimators.")
6536 (license license:gpl3+)))
6537
6538 (define-public r-abcoptim
6539 (package
6540 (name "r-abcoptim")
6541 (version "0.15.0")
6542 (source
6543 (origin
6544 (method url-fetch)
6545 (uri (cran-uri "ABCoptim" version))
6546 (sha256
6547 (base32 "1ih0xk88qhsmpvnxf56041wx5sk8as2f4f2gdnpnwdym9mbr9n4b"))))
6548 (properties `((upstream-name . "ABCoptim")))
6549 (build-system r-build-system)
6550 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
6551 (home-page "https://github.com/gvegayon/ABCoptim/")
6552 (synopsis "Optimization of Artificial Bee Colony algorithm")
6553 (description
6554 "Artificial Bee Colony (ABC) is one of the most recently defined algorithms by Dervis
6555 Karaboga in 2005, motivated by the intelligent behavior of honey bees. It is as
6556 simple as Particle Swarm Optimization (PSO) and Differential Evolution (DE)
6557 algorithms, and uses only common control parameters such as colony size and
6558 maximum cycle number. The @code{r-abcoptim} implements the Artificial bee
6559 colony optimization algorithm @url{http://mf.erciyes.edu.tr/abc/pub/tr06_2005.pdf}.
6560 This version is a work-in-progress and is written in R code.")
6561 (license license:expat)))
6562
6563 (define-public r-abcp2
6564 (package
6565 (name "r-abcp2")
6566 (version "1.2")
6567 (source
6568 (origin
6569 (method url-fetch)
6570 (uri (cran-uri "ABCp2" version))
6571 (sha256
6572 (base32 "1s2skkxpzss7c29i8600psgrp0hl46jcrxqrmy2b4db8hc0kcnbx"))))
6573 (properties `((upstream-name . "ABCp2")))
6574 (build-system r-build-system)
6575 (propagated-inputs `(("r-mass" ,r-mass)))
6576 (home-page "https://cran.r-project.org/web/packages/ABCp2/")
6577 (synopsis "Approximate Bayesian Computational Model for Estimating P2")
6578 (description
6579 "This package tests the goodness of fit of a distribution of offspring to the Normal,
6580 Poisson, and Gamma distribution and estimates the proportional paternity of the
6581 second male (P2) based on the best fit distribution.")
6582 (license license:gpl2)))
6583
6584 (define-public r-abcrf
6585 (package
6586 (name "r-abcrf")
6587 (version "1.8")
6588 (source
6589 (origin
6590 (method url-fetch)
6591 (uri (cran-uri "abcrf" version))
6592 (sha256
6593 (base32 "0r31ki89z8zzcffm0yvd2zw3q96rk6g6fnwwkql902mgajbrha1f"))))
6594 (build-system r-build-system)
6595 (propagated-inputs
6596 `(("r-doparallel" ,r-doparallel)
6597 ("r-foreach" ,r-foreach)
6598 ("r-mass" ,r-mass)
6599 ("r-matrixstats" ,r-matrixstats)
6600 ("r-ranger" ,r-ranger)
6601 ("r-rcpp" ,r-rcpp)
6602 ("r-rcpparmadillo" ,r-rcpparmadillo)
6603 ("r-readr" ,r-readr)
6604 ("r-stringr" ,r-stringr)))
6605 (home-page "https://cran.r-project.org/web/packages/abcrf/")
6606 (synopsis "Approximate bayesian computation via random forests")
6607 (description
6608 "This package performs approximate bayesian computation (ABC) model choice and
6609 parameter inference via random forests. This machine learning tool named random
6610 forests (RF) can conduct selection among the highly complex models covered by
6611 ABC algorithms.")
6612 (license license:gpl2+)))
6613
6614 (define-public r-abctools
6615 (package
6616 (name "r-abctools")
6617 (version "1.1.3")
6618 (source
6619 (origin
6620 (method url-fetch)
6621 (uri (cran-uri "abctools" version))
6622 (sha256
6623 (base32 "07s9dg10i8lsxl73b4n2hynca2fjgb0ykb0dz8c3zv6cgw3cyx97"))))
6624 (build-system r-build-system)
6625 (propagated-inputs
6626 `(("r-abc" ,r-abc)
6627 ("r-abind" ,r-abind)
6628 ("r-hmisc" ,r-hmisc)
6629 ("r-plyr" ,r-plyr)))
6630 (home-page "https://github.com/dennisprangle/abctools/")
6631 (synopsis "Tools for ABC analyses")
6632 (description
6633 "This @code{r-abctools} package provides tools for approximate Bayesian computation
6634 including summary statistic selection and assessing coverage. This includes
6635 recent dimension reduction algorithms to tune the choice of summary statistics,
6636 and coverage methods to tune the choice of threshold.")
6637 (license license:gpl2+)))
6638
6639 (define-public r-ggstance
6640 (package
6641 (name "r-ggstance")
6642 (version "0.3.1")
6643 (source
6644 (origin
6645 (method url-fetch)
6646 (uri (cran-uri "ggstance" version))
6647 (sha256
6648 (base32 "0v7f3xdaaridw6d4jvnsfwxmpjrasvx5vl555wsrn50aah17fkvh"))))
6649 (build-system r-build-system)
6650 (propagated-inputs
6651 `(("r-ggplot2" ,r-ggplot2)
6652 ("r-plyr" ,r-plyr)
6653 ("r-rlang" ,r-rlang)
6654 ("r-withr" ,r-withr)))
6655 (home-page "https://cran.r-project.org/web/packages/ggstance/")
6656 (synopsis "Horizontal and vertical versions of @code{r-ggplot2}")
6657 (description
6658 "This package is a @code{r-ggplot2} extension that provides flipped components:
6659 @enumerate
6660 @item horizontal versions of @code{r-ggplot2} stats and @code{r-ggplot2} geoms;
6661 @item vertical versions of @code{r-ggplot2} positions.
6662 @end enumerate")
6663 (license license:gpl3)))
6664
6665 (define-public r-mosaiccore
6666 (package
6667 (name "r-mosaiccore")
6668 (version "0.6.0")
6669 (source
6670 (origin
6671 (method url-fetch)
6672 (uri (cran-uri "mosaicCore" version))
6673 (sha256
6674 (base32 "1klw97h6lchw1cpcl8s637ikcl428cckmjq0czi7mibh9q9mw72z"))))
6675 (properties `((upstream-name . "mosaicCore")))
6676 (build-system r-build-system)
6677 (propagated-inputs
6678 `(("r-dplyr" ,r-dplyr)
6679 ("r-lazyeval" ,r-lazyeval)
6680 ("r-mass" ,r-mass)
6681 ("r-rlang" ,r-rlang)
6682 ("r-tidyr" ,r-tidyr)))
6683 (home-page "https://github.com/ProjectMOSAIC/mosaicCore/")
6684 (synopsis "Common utilities for mosaic family packages")
6685 (description
6686 "Common utilities used in other Mosaic family packages are collected here.")
6687 (license license:gpl2+)))
6688
6689 (define-public r-ggformula
6690 (package
6691 (name "r-ggformula")
6692 (version "0.9.1")
6693 (source
6694 (origin
6695 (method url-fetch)
6696 (uri (cran-uri "ggformula" version))
6697 (sha256
6698 (base32 "01ngx8qh9lhmagng6abx2ky54zi3iyj5bpxlnw59slagwv7l6icx"))))
6699 (build-system r-build-system)
6700 (propagated-inputs
6701 `(("r-ggplot2" ,r-ggplot2)
6702 ("r-ggstance" ,r-ggstance)
6703 ("r-magrittr" ,r-magrittr)
6704 ("r-mosaiccore" ,r-mosaiccore)
6705 ("r-rlang" ,r-rlang)
6706 ("r-stringr" ,r-stringr)
6707 ("r-tibble" ,r-tibble)
6708 ("r-tidyr" ,r-tidyr)))
6709 (home-page "https://github.com/ProjectMOSAIC/ggformula/")
6710 (synopsis "Formula interface for the @code{r-ggplot2}")
6711 (description
6712 "The @code{r-ggformula} introduces a family of graphics functions, gf_point(),
6713 gf_density(), and so on, bring the formula interface to ggplot(). This captures
6714 and extends the excellent simplicity of the lattice-graphics formula interface,
6715 while providing the intuitive capabilities of @code{r-ggplot2}.")
6716 (license license:expat)))
6717
6718 (define-public r-mosaicdata
6719 (package
6720 (name "r-mosaicdata")
6721 (version "0.17.0")
6722 (source
6723 (origin
6724 (method url-fetch)
6725 (uri (cran-uri "mosaicData" version))
6726 (sha256
6727 (base32 "04z0mdm52mykqsxsinhmsihn181zf6cw321gayk2rjp7lj7mwdq9"))))
6728 (properties `((upstream-name . "mosaicData")))
6729 (build-system r-build-system)
6730 (home-page "https://cran.r-project.org/web/packages/mosaicData/")
6731 (synopsis "Data sets for project Mosaic")
6732 (description
6733 "This package provides data sets from project Mosaic @url{http://mosaic-web.org}
6734 used to teach mathematics, statistics, computation and modeling.")
6735 (license license:gpl2+)))
6736
6737 (define-public r-raster
6738 (package
6739 (name "r-raster")
6740 (version "2.9-5")
6741 (source
6742 (origin
6743 (method url-fetch)
6744 (uri (cran-uri "raster" version))
6745 (sha256
6746 (base32
6747 "0ljrymsp4zzaxdj1l0mw0a6hi88m5h0h920ixfzrg0szbyxqd0yk"))))
6748 (build-system r-build-system)
6749 (propagated-inputs
6750 `(("r-rcpp" ,r-rcpp)
6751 ("r-sp" ,r-sp)))
6752 (home-page "https://www.rspatial.org/")
6753 (synopsis "Geographic data analysis and modeling")
6754 (description
6755 "The package implements basic and high-level functions for reading,
6756 writing, manipulating, analyzing and modeling of gridded spatial data.
6757 Processing of very large files is supported.")
6758 (license license:gpl3+)))
6759
6760 (define-public r-mosaic
6761 (package
6762 (name "r-mosaic")
6763 (version "1.4.0")
6764 (source
6765 (origin
6766 (method url-fetch)
6767 (uri (cran-uri "mosaic" version))
6768 (sha256
6769 (base32 "10jbrg8kli00kfgbh2f67bymm5cnlancc9dplb1j7fl552yjddn2"))))
6770 (build-system r-build-system)
6771 (propagated-inputs
6772 `(("r-broom" ,r-broom)
6773 ("r-dplyr" ,r-dplyr)
6774 ("r-ggdendro" ,r-ggdendro)
6775 ("r-ggformula" ,r-ggformula)
6776 ("r-ggplot2" ,r-ggplot2)
6777 ("r-ggrepel" ,r-ggrepel)
6778 ("r-glue" ,r-glue)
6779 ("r-gridextra" ,r-gridextra)
6780 ("r-lattice" ,r-lattice)
6781 ("r-latticeextra" ,r-latticeextra)
6782 ("r-lazyeval" ,r-lazyeval)
6783 ("r-mass" ,r-mass)
6784 ("r-matrix" ,r-matrix)
6785 ("r-mosaiccore" ,r-mosaiccore)
6786 ("r-mosaicdata" ,r-mosaicdata)
6787 ("r-readr" ,r-readr)
6788 ("r-tidyr" ,r-tidyr)))
6789 (home-page "https://github.com/ProjectMOSAIC/mosaic/")
6790 (synopsis "Mathematics, statistics, and computation teaching utilities")
6791 (description
6792 "This package contain data sets and utilities from
6793 @url{http://mosaic-web.org, Project MOSAIC} used to teach mathematics,
6794 statistics, computation and modeling. Project MOSAIC is a community of
6795 educators working to tie together aspects of quantitative work that students
6796 in science, technology, engineering and mathematics will need in their
6797 professional lives, but which are usually taught in isolation, if at all.")
6798 (license license:gpl2+)))
6799
6800 (define-public r-abd
6801 (package
6802 (name "r-abd")
6803 (version "0.2-8")
6804 (source
6805 (origin
6806 (method url-fetch)
6807 (uri (cran-uri "abd" version))
6808 (sha256
6809 (base32 "191gspqzdv573vaw624ri0f5cm6v4j524bjs74d4a1hn3kn6r9b7"))))
6810 (build-system r-build-system)
6811 (propagated-inputs
6812 `(("r-lattice" ,r-lattice)
6813 ("r-mosaic" ,r-mosaic)
6814 ("r-nlme" ,r-nlme)))
6815 (home-page "https://cran.r-project.org/web/packages/abd/")
6816 (synopsis "Analysis of biological data")
6817 (description
6818 "The @code{r-abd} package contains data sets and sample code for the Analysis of
6819 biological data by Michael Whitlock and Dolph Schluter.")
6820 (license license:gpl2)))
6821
6822 (define-public r-svgui
6823 (package
6824 (name "r-svgui")
6825 (version "1.0.0")
6826 (source
6827 (origin
6828 (method url-fetch)
6829 (uri (cran-uri "svGUI" version))
6830 (sha256
6831 (base32 "1r7ab0p4yr8q03gj02hmj7k1ghksgkg4nx750c0ajfs2q9y1dxfc"))))
6832 (properties `((upstream-name . "svGUI")))
6833 (build-system r-build-system)
6834 (home-page "https://github.com/SciViews/svGUI/")
6835 (synopsis "Functions for managing GUI clients in R")
6836 (description
6837 "The SciViews @code{svGUI} package eases the management of Graphical User
6838 Interfaces (GUI) in R. It is independent from any particular GUI widgets. It
6839 centralizes info about GUI elements currently used, and it dispatches GUI
6840 calls to the particular toolkits in use in function of the context.")
6841 (license license:gpl2)))
6842
6843 (define-public r-svdialogs
6844 (package
6845 (name "r-svdialogs")
6846 (version "1.0.0")
6847 (source
6848 (origin
6849 (method url-fetch)
6850 (uri (cran-uri "svDialogs" version))
6851 (sha256
6852 (base32 "0xqppydfawnwk84kb5qiybwbcmv38vn4imgz01mz2pnq4xb80p97"))))
6853 (properties `((upstream-name . "svDialogs")))
6854 (build-system r-build-system)
6855 (inputs
6856 `(("yad" ,yad)
6857 ("zenity" ,zenity)))
6858 (propagated-inputs
6859 `(("r-rstudioapi" ,r-rstudioapi)
6860 ("r-svgui" ,r-svgui)))
6861 (home-page "https://github.com/SciViews/svDialogs/")
6862 (synopsis "Portable dialog boxes")
6863 (description
6864 "This package helps to construct standard dialog boxes for your GUI, including
6865 message boxes, input boxes, list, file or directory selection, and others. In
6866 case R cannot display GUI dialog boxes, a simpler command line version of these
6867 interactive elements is also provided as a fallback solution.")
6868 (license license:gpl2)))
6869
6870 (define-public r-abe
6871 (package
6872 (name "r-abe")
6873 (version "3.0.1")
6874 (source
6875 (origin
6876 (method url-fetch)
6877 (uri (cran-uri "abe" version))
6878 (sha256
6879 (base32
6880 "1f19h3xzzmjhvwc1rrb8z0rai3ip03y4gdi2gg9bfr5sg2nfklk6"))))
6881 (build-system r-build-system)
6882 (home-page "https://cran.r-project.org/web/packages/abe/")
6883 (synopsis "Augmented backward elimination")
6884 (description
6885 "This package performs augmented backward elimination and checks the
6886 stability of the obtained model. Augmented backward elimination combines
6887 significance or information based criteria with the change in estimate to
6888 either select the optimal model for prediction purposes or to serve as a tool
6889 to obtain a practically sound, highly interpretable model.")
6890 (license license:gpl2+)))
6891
6892 (define-public r-abf2
6893 (package
6894 (name "r-abf2")
6895 (version "0.7-1")
6896 (source
6897 (origin
6898 (method url-fetch)
6899 (uri (cran-uri "abf2" version))
6900 (sha256
6901 (base32 "0d65mc1w4pbiv7xaqzdlw1bfsxf25587rv597hh41vs0j0zlfpxx"))))
6902 (build-system r-build-system)
6903 (home-page "https://cran.r-project.org/web/packages/abf2/")
6904 (synopsis "Load gap-free axon @code{r-abf2} files")
6905 (description
6906 "This package loads electrophysiology data from ABF2 files, as created by
6907 Axon Instruments/Molecular Devices software. Only files recorded in gap-free
6908 mode are currently supported.")
6909 (license license:artistic2.0)))
6910
6911 (define-public r-abhgenotyper
6912 (package
6913 (name "r-abhgenotyper")
6914 (version "1.0.1")
6915 (source
6916 (origin
6917 (method url-fetch)
6918 (uri (cran-uri "ABHgenotypeR" version))
6919 (sha256
6920 (base32 "08cpmnaaxsm5c5bjifnfxdlvg5inrf13biqpcl2yq5zpqjmiki0l"))))
6921 (properties `((upstream-name . "ABHgenotypeR")))
6922 (build-system r-build-system)
6923 (propagated-inputs
6924 `(("r-ggplot2" ,r-ggplot2)
6925 ("r-reshape2" ,r-reshape2)))
6926 (home-page "https://github.com/StefanReuscher/ABHgenotypeR/")
6927 (synopsis "Visualize and manipulate ABH genotypes")
6928 (description
6929 "The @code{r-abhgenotyper} package provides simple imputation,
6930 error-correction and plotting capacities for genotype data. The package is
6931 supposed to serve as an intermediate but independent analysis tool between the
6932 TASSEL GBS pipeline and the @code{r-qtl} package. It provides functionalities
6933 not found in either TASSEL or @code{r-qtl} in addition to visualization of
6934 genotypes as \"graphical genotypes\".")
6935 (license license:gpl3)))
6936
6937 (define-public r-furrr
6938 (package
6939 (name "r-furrr")
6940 (version "0.1.0")
6941 (source
6942 (origin
6943 (method url-fetch)
6944 (uri (cran-uri "furrr" version))
6945 (sha256
6946 (base32
6947 "1ld9aa9hydna94hgm6p91zjbfv1dz1vsgchjlpknkg6irbvkfafx"))))
6948 (build-system r-build-system)
6949 (propagated-inputs
6950 `(("r-future" ,r-future)
6951 ("r-globals" ,r-globals)
6952 ("r-purrr" ,r-purrr)
6953 ("r-rlang" ,r-rlang)))
6954 (home-page "https://github.com/DavisVaughan/furrr")
6955 (synopsis "Apply mapping functions in parallel using futures")
6956 (description
6957 "This package provides implementations of the family of @code{map()}
6958 functions from the @code{purrr} package that can be resolved using any
6959 @code{future}-supported backend, e.g. parallel on the local machine or
6960 distributed on a compute cluster.")
6961 (license license:lgpl2.1+)))
6962
6963 (define-public r-abjutils
6964 (package
6965 (name "r-abjutils")
6966 (version "0.2.3")
6967 (source
6968 (origin
6969 (method url-fetch)
6970 (uri (cran-uri "abjutils" version))
6971 (sha256
6972 (base32 "0n4zps65y3zg0gfzlv97w91si52a9izkncirskbkj5x9hk0nhxcv"))))
6973 (build-system r-build-system)
6974 (propagated-inputs
6975 `(("r-devtools" ,r-devtools)
6976 ("r-dplyr" ,r-dplyr)
6977 ("r-furrr" ,r-furrr)
6978 ("r-future" ,r-future)
6979 ("r-glue" ,r-glue)
6980 ("r-httr" ,r-httr)
6981 ("r-magrittr" ,r-magrittr)
6982 ("r-progress" ,r-progress)
6983 ("r-purrr" ,r-purrr)
6984 ("r-readr" ,r-readr)
6985 ("r-rlang" ,r-rlang)
6986 ("r-rstudioapi" ,r-rstudioapi)
6987 ("r-scales" ,r-scales)
6988 ("r-stringi" ,r-stringi)
6989 ("r-stringr" ,r-stringr)
6990 ("r-tibble" ,r-tibble)
6991 ("r-tidyr" ,r-tidyr)))
6992 (home-page "https://github.com/abjur/abjutils/")
6993 (synopsis "Collection of tools for jurimetrical analysis")
6994 (description
6995 "This package implements general purpose tools, such as functions for
6996 sampling and basic manipulation of Brazilian lawsuits identification number.
6997 It also implements functions for text cleaning, such as accentuation
6998 removal.")
6999 (license license:expat)))
7000
7001 (define-public r-abnormality
7002 (package
7003 (name "r-abnormality")
7004 (version "0.1.0")
7005 (source
7006 (origin
7007 (method url-fetch)
7008 (uri (cran-uri "abnormality" version))
7009 (sha256
7010 (base32 "1fzfskl9akl06nliy8hkv2a0pznpj8pwcypg3gj5r2nzvr3kan9v"))))
7011 (build-system r-build-system)
7012 (propagated-inputs
7013 `(("r-mass" ,r-mass)
7014 ("r-matrix" ,r-matrix)))
7015 (home-page "https://cran.r-project.org/web/packages/abnormality/")
7016 (synopsis "Measure a subject's abnormality with respect to a reference population")
7017 (description
7018 "This package contains functions to implement the methodology and
7019 considerations laid out by Marks et al. in the article \"Measuring abnormality
7020 in high dimensional spaces: applications in biomechanical gait analysis\".
7021 Using high-dimensional datasets to measure a subject's overall level of
7022 abnormality as compared to a reference population is often needed in outcomes
7023 research.")
7024 (license license:expat)))
7025
7026 (define-public r-abodoutlier
7027 (package
7028 (name "r-abodoutlier")
7029 (version "0.1")
7030 (source
7031 (origin
7032 (method url-fetch)
7033 (uri (cran-uri "abodOutlier" version))
7034 (sha256
7035 (base32 "1pvhgxmh23br84r0fbmv7g53z2427birdja96a67vqgz18r3fdvj"))))
7036 (properties `((upstream-name . "abodOutlier")))
7037 (build-system r-build-system)
7038 (propagated-inputs
7039 `(("r-cluster" ,r-cluster)))
7040 (home-page "https://cran.r-project.org/web/packages/abodOutlier/")
7041 (synopsis "Angle-based outlier detection")
7042 (description
7043 "This package performs angle-based outlier detection on a given data
7044 frame. It offers three methods to process data:
7045 @enumerate
7046 @item full but slow implementation using all the data that has cubic
7047 complexity;
7048 @item a fully randomized method;
7049 @item a method using k-nearest neighbours.
7050 @end enumerate
7051 These algorithms are well suited for high dimensional data outlier
7052 detection.")
7053 (license license:expat)))
7054
7055 (define-public r-abps
7056 (package
7057 (name "r-abps")
7058 (version "0.3")
7059 (source
7060 (origin
7061 (method url-fetch)
7062 (uri (cran-uri "ABPS" version))
7063 (sha256
7064 (base32 "0n3f66nmfi5v94il1mxy026mi84w01ph2aljk60vn3mrz8kwf2ll"))))
7065 (properties `((upstream-name . "ABPS")))
7066 (build-system r-build-system)
7067 (propagated-inputs `(("r-kernlab" ,r-kernlab)))
7068 (home-page "https://cran.r-project.org/web/packages/ABPS/")
7069 (synopsis "Abnormal blood profile score to detect blood doping")
7070 (description
7071 "This package offers an implementation of the @dfn{Abnormal blood profile score} (ABPS).
7072 The ABPS is a part of the Athlete biological passport program of the World
7073 anti-doping agency, which combines several blood parameters into a single
7074 score in order to detect blood doping. The package also contains functions to
7075 calculate other scores used in anti-doping programs, such as the ratio of
7076 hemoglobin to reticulocytes (OFF-score), as well as example data.")
7077 (license license:gpl2+)))
7078
7079 (define-public r-parmigene
7080 (package
7081 (name "r-parmigene")
7082 (version "1.0.2")
7083 (source
7084 (origin
7085 (method url-fetch)
7086 (uri (cran-uri "parmigene" version))
7087 (sha256
7088 (base32
7089 "1fsm6pkr17jcbzkj1hbn91jf890fviqk1lq6ls8pihsdgah1zb4d"))))
7090 (build-system r-build-system)
7091 (home-page "https://cran.r-project.org/web/packages/parmigene/")
7092 (synopsis "Mutual information estimation for gene network reconstruction")
7093 (description
7094 "This package provides a parallel estimation of the mutual information
7095 based on entropy estimates from k-nearest neighbors distances and algorithms
7096 for the reconstruction of gene regulatory networks.")
7097 (license license:agpl3+)))
7098
7099 (define-public r-pscl
7100 (package
7101 (name "r-pscl")
7102 (version "1.5.2")
7103 (source
7104 (origin
7105 (method url-fetch)
7106 (uri (cran-uri "pscl" version))
7107 (sha256
7108 (base32 "1phf3awsfr4ncqfqzin5m1pz0g7y1zhbcm2sz7358ssw914fd7rc"))))
7109 (build-system r-build-system)
7110 (propagated-inputs
7111 `(("r-mass" ,r-mass)))
7112 (home-page "https://github.com/atahk/pscl/")
7113 (synopsis "Political science computational laboratory")
7114 (description
7115 "The @code{pscl} is an R package providing classes and methods for:
7116 @enumerate
7117 @item Bayesian analysis of roll call data (item-response models);
7118 @item elementary Bayesian statistics;
7119 @item maximum likelihood estimation of zero-inflated and hurdle models for count
7120 data;
7121 @item utility functions.
7122 @end enumerate")
7123 (license license:gpl2)))
7124
7125 (define-public r-accelmissing
7126 (package
7127 (name "r-accelmissing")
7128 (version "1.4")
7129 (source
7130 (origin
7131 (method url-fetch)
7132 (uri (cran-uri "accelmissing" version))
7133 (sha256
7134 (base32 "1nql9inx6azdzi3z4sfm2vdml2mms6krl8wzlf1dn1c97ahn57fy"))))
7135 (build-system r-build-system)
7136 (propagated-inputs
7137 `(("r-mice" ,r-mice)
7138 ("r-pscl" ,r-pscl)))
7139 (home-page "https://cran.r-project.org/web/packages/accelmissing/")
7140 (synopsis "Missing value imputation for accelerometer data")
7141 (description
7142 "This package provides a statistical method to impute the missing values in
7143 accelerometer data. The methodology includes both parametric and
7144 semi-parametric multiple imputations under the zero-inflated Poisson lognormal
7145 model. It also provides multiple functions to preprocess the accelerometer data
7146 previous to the missing data imputation. These include detecting the wearing
7147 and the non-wearing time, selecting valid days and subjects, and creating plots.")
7148 (license license:gpl2+)))
7149
7150 (define-public r-mhsmm
7151 (package
7152 (name "r-mhsmm")
7153 (version "0.4.16")
7154 (source
7155 (origin
7156 (method url-fetch)
7157 (uri (cran-uri "mhsmm" version))
7158 (sha256
7159 (base32 "009dj0zkj1zry7jr9hf4cknb686z50a2l967if64xm0dvjmp7dgs"))))
7160 (build-system r-build-system)
7161 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
7162 (home-page "https://github.com/jaredo/mhsmm/")
7163 (synopsis "Inference for hidden Markov and semi-Markov models")
7164 (description
7165 "The @code{r-mhsmm} package implements estimation and prediction methods for
7166 hidden Markov and semi-Markov models for multiple observation sequences. Such
7167 techniques are of interest when observed data is thought to be dependent on some
7168 unobserved (or hidden) state. Also, this package is suitable for equidistant
7169 time series data, with multivariate and/or missing data. Allows user defined
7170 emission distributions.")
7171 (license license:gpl2+)))
7172
7173 (define-public r-nleqslv
7174 (package
7175 (name "r-nleqslv")
7176 (version "3.3.2")
7177 (source
7178 (origin
7179 (method url-fetch)
7180 (uri (cran-uri "nleqslv" version))
7181 (sha256
7182 (base32 "1v9znvncyigw9r25wx2ma0b7ib179b488dl0qsrhp5zrcz7mcjgm"))))
7183 (build-system r-build-system)
7184 (native-inputs `(("gfortran" ,gfortran)))
7185 (home-page "https://cran.r-project.org/web/packages/nleqslv/")
7186 (synopsis "Solve systems of nonlinear equations")
7187 (description
7188 "The @code{r-nleqslv} package solves a system of nonlinear equations using a
7189 Broyden or a Newton method with a choice of global strategies such as line
7190 search and trust region. There are options for using a numerical or user
7191 supplied Jacobian, for specifying a banded numerical Jacobian and for allowing a
7192 singular or ill-conditioned Jacobian.")
7193 (license license:gpl2+)))
7194
7195 (define-public r-physicalactivity
7196 (package
7197 (name "r-physicalactivity")
7198 (version "0.2-2")
7199 (source
7200 (origin
7201 (method url-fetch)
7202 (uri (cran-uri "PhysicalActivity" version))
7203 (sha256
7204 (base32 "14z6plgwyr46vs9m997rvlz8sdglfs9g087an8668zqkzzs2w4ln"))))
7205 (properties
7206 `((upstream-name . "PhysicalActivity")))
7207 (build-system r-build-system)
7208 (home-page "https://cran.r-project.org/web/packages/PhysicalActivity/")
7209 (synopsis "Procesing accelerometer data for physical activity measurement")
7210 (description
7211 "This @code{r-physicalactivity} package provides a function @code{wearingMarking}
7212 for classification of monitor wear and nonwear time intervals in accelerometer
7213 data collected to assess physical activity. The package also contains functions
7214 for making plots of accelerometer data and obtaining the summary of various
7215 information including daily monitor wear time and the mean monitor wear time
7216 during valid days. The revised package version 0.2-1 improved the functions
7217 regarding speed, robustness and add better support for time zones and daylight
7218 saving. In addition, several functions were added:
7219 @enumerate
7220 @item the @code{markDelivery} can classify days for ActiGraph delivery by mail;
7221 @item the @code{markPAI} can categorize physical activity intensity level based
7222 on user-defined cut-points of accelerometer counts.
7223 @end enumerate
7224 It also supports importing ActiGraph (AGD) files with @code{readActigraph} and
7225 @code{queryActigraph} functions.")
7226 (license license:gpl3+)))
7227
7228 (define-public r-acc
7229 (package
7230 (name "r-acc")
7231 (version "1.3.3")
7232 (source
7233 (origin
7234 (method url-fetch)
7235 (uri (cran-uri "acc" version))
7236 (sha256
7237 (base32 "1ii2vm47djxbixa75h690q1s2f9m9x6i8nkygik93j6dayr6kr1m"))))
7238 (build-system r-build-system)
7239 (propagated-inputs
7240 `(("r-circlize" ,r-circlize)
7241 ("r-dbi" ,r-dbi)
7242 ("r-ggplot2" ,r-ggplot2)
7243 ("r-iterators" ,r-iterators)
7244 ("r-mhsmm" ,r-mhsmm)
7245 ("r-nleqslv" ,r-nleqslv)
7246 ("r-physicalactivity" ,r-physicalactivity)
7247 ("r-plyr" ,r-plyr)
7248 ("r-r-utils" ,r-r-utils)
7249 ("r-rcpp" ,r-rcpp)
7250 ("r-rcpparmadillo" ,r-rcpparmadillo)
7251 ("r-rsqlite" ,r-rsqlite)
7252 ("r-zoo" ,r-zoo)))
7253 (home-page "https://cran.r-project.org/web/packages/acc/")
7254 (synopsis "Exploring accelerometer data")
7255 (description
7256 "This package processes accelerometer data from uni-axial and tri-axial devices
7257 and generates data summaries. Also, includes functions to plot, analyze, and
7258 simulate accelerometer data.")
7259 (license license:gpl2+)))
7260
7261 (define-public r-rbenchmark
7262 (package
7263 (name "r-rbenchmark")
7264 (version "1.0.0")
7265 (source
7266 (origin
7267 (method url-fetch)
7268 (uri (cran-uri "rbenchmark" version))
7269 (sha256
7270 (base32 "010fn3qwnk2k411cbqyvra1d12c3bhhl3spzm8kxffmirj4p2al9"))))
7271 (build-system r-build-system)
7272 (home-page "https://cran.r-project.org/web/packages/rbenchmark/")
7273 (synopsis "Benchmarking routine for R")
7274 (description
7275 "This @code{r-rbenchmark} package is inspired by the Perl module Benchmark,
7276 and is intended to facilitate benchmarking of arbitrary R code. The library
7277 consists of just one function, benchmark, which is a simple wrapper around
7278 system.time. Given a specification of the benchmarking process (counts of
7279 replications, evaluation environment) and an arbitrary number of expressions,
7280 benchmark evaluates each of the expressions in the specified environment,
7281 replicating the evaluation as many times as specified, and returning the results
7282 conveniently wrapped into a data frame.")
7283 (license license:gpl2+)))
7284
7285 (define-public r-mitools
7286 (package
7287 (name "r-mitools")
7288 (version "2.4")
7289 (source
7290 (origin
7291 (method url-fetch)
7292 (uri (cran-uri "mitools" version))
7293 (sha256
7294 (base32
7295 "0c2x2n1p53lcw0vx4vmy5j7m2f95i7g2iwbryl89imr99rvz617j"))))
7296 (build-system r-build-system)
7297 (propagated-inputs `(("r-dbi" ,r-dbi)))
7298 (home-page "https://cran.r-project.org/web/packages/mitools/")
7299 (synopsis "Tools for multiple imputation of missing data")
7300 (description
7301 "This package provides tools to perform analyses and combine results from
7302 multiple-imputation datasets.")
7303 (license license:gpl2)))
7304
7305 (define-public r-magick
7306 (package
7307 (name "r-magick")
7308 (version "2.0")
7309 (source
7310 (origin
7311 (method url-fetch)
7312 (uri (cran-uri "magick" version))
7313 (sha256
7314 (base32
7315 "18y465325mhf48x2jn3jz9khwq1z2aj13wfbdkv8k3hln1sd572m"))))
7316 (build-system r-build-system)
7317 (inputs
7318 `(("imagemagick" ,imagemagick)
7319 ("zlib" ,zlib)))
7320 (propagated-inputs
7321 `(("r-curl" ,r-curl)
7322 ("r-magrittr" ,r-magrittr)
7323 ("r-rcpp" ,r-rcpp)))
7324 (native-inputs
7325 `(("pkg-config" ,pkg-config)))
7326 (home-page "https://github.com/ropensci/magick")
7327 (synopsis "Advanced graphics and image-processing in R")
7328 (description
7329 "This package provides bindings to ImageMagick, a comprehensive image
7330 processing library. It supports many common formats (PNG, JPEG, TIFF, PDF,
7331 etc.) and manipulations (rotate, scale, crop, trim, flip, blur, etc). All
7332 operations are vectorized via the Magick++ STL meaning they operate either on
7333 a single frame or a series of frames for working with layers, collages, or
7334 animation. In RStudio, images are automatically previewed when printed to the
7335 console, resulting in an interactive editing environment.")
7336 (license license:expat)))
7337
7338 (define-public r-survey
7339 (package
7340 (name "r-survey")
7341 (version "3.36")
7342 (source
7343 (origin
7344 (method url-fetch)
7345 (uri (cran-uri "survey" version))
7346 (sha256
7347 (base32
7348 "0xclsy4ram4k48vzh5m5bpmknnpwxnss85v73s4czsjj5ffjxwwh"))))
7349 (build-system r-build-system)
7350 (propagated-inputs
7351 `(("r-lattice" ,r-lattice)
7352 ("r-matrix" ,r-matrix)
7353 ("r-minqa" ,r-minqa)
7354 ("r-mitools" ,r-mitools)
7355 ("r-numderiv" ,r-numderiv)
7356 ("r-survival" ,r-survival)))
7357 (home-page "http://r-survey.r-forge.r-project.org/survey/")
7358 (synopsis "Analysis of complex survey samples")
7359 (description
7360 "This package provides tools for the analysis of complex survey samples.
7361 The provided features include: summary statistics, two-sample tests, rank
7362 tests, generalised linear models, cumulative link models, Cox models,
7363 loglinear models, and general maximum pseudolikelihood estimation for
7364 multistage stratified, cluster-sampled, unequally weighted survey samples;
7365 variances by Taylor series linearisation or replicate weights;
7366 post-stratification, calibration, and raking; two-phase subsampling designs;
7367 graphics; PPS sampling without replacement; principal components, and factor
7368 analysis.")
7369 ;; Either version of the GPL.
7370 (license (list license:gpl2 license:gpl3))))
7371
7372 (define-public r-dvmisc
7373 (package
7374 (name "r-dvmisc")
7375 (version "1.1.3")
7376 (source
7377 (origin
7378 (method url-fetch)
7379 (uri (cran-uri "dvmisc" version))
7380 (sha256
7381 (base32 "0x391pxg5mqgp5xxc8qwhwxky8ds7d9gr9iwmsb12c92kxfk00bv"))))
7382 (build-system r-build-system)
7383 (propagated-inputs
7384 `(("r-cubature" ,r-cubature)
7385 ("r-data-table" ,r-data-table)
7386 ("r-dplyr" ,r-dplyr)
7387 ("r-ggplot2" ,r-ggplot2)
7388 ("r-mass" ,r-mass)
7389 ("r-mvtnorm" ,r-mvtnorm)
7390 ("r-pracma" ,r-pracma)
7391 ("r-purrr" ,r-purrr)
7392 ("r-rbenchmark" ,r-rbenchmark)
7393 ("r-rcpp" ,r-rcpp)
7394 ("r-survey" ,r-survey)))
7395 (home-page "https://cran.r-project.org/web/packages/dvmisc/")
7396 (synopsis "Faster computation of common statistics and miscellaneous functions")
7397 (description
7398 "This package implements faster versions of base R functions (e.g. mean, standard
7399 deviation, covariance, weighted mean), mostly written in C++, along with
7400 miscellaneous functions for various purposes (e.g. create the histogram with
7401 fitted probability density function or probability mass function curve, create
7402 the body mass index groups, assess the linearity assumption in logistic
7403 regression).")
7404 (license license:gpl2)))
7405
7406 (define-public r-accelerometry
7407 (package
7408 (name "r-accelerometry")
7409 (version "3.1.2")
7410 (source
7411 (origin
7412 (method url-fetch)
7413 (uri (cran-uri "accelerometry" version))
7414 (sha256
7415 (base32 "13xzrwhr4i1nj9c8vrmfdg2rmrc8n446iihcyxmy99sm99hpzyip"))))
7416 (build-system r-build-system)
7417 (propagated-inputs
7418 `(("r-dvmisc" ,r-dvmisc)
7419 ("r-rcpp" ,r-rcpp)))
7420 (home-page "https://cran.r-project.org/web/packages/accelerometry/")
7421 (synopsis "Functions for processing accelerometer data")
7422 (description
7423 "This package provides a collection of functions that perform operations on
7424 time-series accelerometer data, such as identify the non-wear time, flag minutes
7425 that are part of an activity bout, and find the maximum 10-minute average count
7426 value. The functions are generally very flexible, allowing for a variety of
7427 algorithms to be implemented.")
7428 (license license:gpl3)))
7429
7430 (define-public r-absim
7431 (package
7432 (name "r-absim")
7433 (version "0.2.6")
7434 (source
7435 (origin
7436 (method url-fetch)
7437 (uri (cran-uri "AbSim" version))
7438 (sha256
7439 (base32 "16ddjk8b6xw80ch4jis1y751i9561wdxh0gifbf15qiz3vjckq8m"))))
7440 (properties `((upstream-name . "AbSim")))
7441 (build-system r-build-system)
7442 (propagated-inputs
7443 `(("r-ape" ,r-ape)
7444 ("r-powerlaw" ,r-powerlaw)))
7445 (home-page "https://cran.r-project.org/web/packages/AbSim/")
7446 (synopsis "Time resolved simulations of antibody repertoires")
7447 (description
7448 "This package provides simulation methods for the evolution of antibody repertoires.
7449 The heavy and light chain variable region of both human and C57BL/6 mice can
7450 be simulated in a time-dependent fashion. Both single lineages using one set of
7451 V-, D-, and J-genes or full repertoires can be simulated. The algorithm begins
7452 with an initial V-D-J recombination event, starting the first phylogenetic tree.
7453 Upon completion, the main loop of the algorithm begins, with each iteration
7454 representing one simulated time step. Various mutation events are possible at
7455 each time step, contributing to a diverse final repertoire.")
7456 (license license:gpl2)))
7457
7458 (define-public r-quic
7459 (package
7460 (name "r-quic")
7461 (version "1.1")
7462 (source
7463 (origin
7464 (method url-fetch)
7465 (uri (cran-uri "QUIC" version))
7466 (sha256
7467 (base32 "021bp9xbaih60qmss015ycblbv6d1dvb1z89y93zpqqnc2qhpv3c"))))
7468 (properties `((upstream-name . "QUIC")))
7469 (build-system r-build-system)
7470 (home-page "https://www.cs.utexas.edu/users/sustik/QUIC/")
7471 (synopsis "Regularized sparse inverse covariance matrix estimation")
7472 (description
7473 "This package implements the regularized Gaussian maximum likelihood
7474 estimation of the inverse of a covariance matrix. It uses Newton's method and
7475 coordinate descent to solve the regularized inverse covariance matrix
7476 estimation problem.")
7477 ;; The project home page states that the release is under GPLv3 or later.
7478 ;; The CRAN page only says GPL-3.
7479 (license license:gpl3+)))
7480
7481 (define-public r-abundant
7482 (package
7483 (name "r-abundant")
7484 (version "1.1")
7485 (source
7486 (origin
7487 (method url-fetch)
7488 (uri (cran-uri "abundant" version))
7489 (sha256
7490 (base32 "1m76qdmqvwpgm0sihazi2dna7cgsz9rljal18vgffb5wamwmg9k7"))))
7491 (build-system r-build-system)
7492 (propagated-inputs
7493 `(("r-quic" ,r-quic)))
7494 (home-page "https://cran.r-project.org/web/packages/abundant/")
7495 (synopsis "Abundant regression and high-dimensional principal fitted components")
7496 (description
7497 "This package provides tools to fit and predict with the high-dimensional
7498 principal fitted components model. This model is described by Cook, Forzani,
7499 and Rothman (2012) @url{doi:10.1214/11-AOS962}.")
7500 ;; The DESCRIPTION file states GPL-2, but since it directly depends on a
7501 ;; GPLv3+ package (QUIC) this likely means GPLv2+.
7502 (license license:gpl2+)))
7503
7504 (define-public r-ac3net
7505 (package
7506 (name "r-ac3net")
7507 (version "1.2.2")
7508 (source
7509 (origin
7510 (method url-fetch)
7511 (uri (cran-uri "Ac3net" version))
7512 (sha256
7513 (base32 "1ns4n0xxz6p34c11bj0k7nzgmyqr9mis2b0g5nfz37dbikndyqyz"))))
7514 (properties `((upstream-name . "Ac3net")))
7515 (build-system r-build-system)
7516 (propagated-inputs
7517 `(("r-data-table" ,r-data-table)))
7518 (home-page "https://cran.r-project.org/web/packages/Ac3net/")
7519 (synopsis "Inferring directional conservative causal core gene networks")
7520 (description "This package infers directional Conservative causal core
7521 (gene) networks (C3NET). This is a version of the algorithm C3NET with
7522 directional network.")
7523 (license license:gpl3+)))
7524
7525 (define-public r-aca
7526 (package
7527 (name "r-aca")
7528 (version "1.1")
7529 (source
7530 (origin
7531 (method url-fetch)
7532 (uri (cran-uri "ACA" version))
7533 (sha256
7534 (base32 "1i3hm27nvnkvc39xlh0d1blq8q0q02czmvgi3cazmjx3jvxay0vq"))))
7535 (properties `((upstream-name . "ACA")))
7536 (build-system r-build-system)
7537 (home-page "https://cran.r-project.org/web/packages/ACA/")
7538 (synopsis "Abrupt change-point or aberration detection in point series")
7539 (description
7540 "This package offers an interactive function for the detection of breakpoints in
7541 series.")
7542 ;; Any version of the GPL
7543 (license (list license:gpl2+ license:gpl3+))))
7544
7545 (define-public r-acceptancesampling
7546 (package
7547 (name "r-acceptancesampling")
7548 (version "1.0-6")
7549 (source
7550 (origin
7551 (method url-fetch)
7552 (uri (cran-uri "AcceptanceSampling" version))
7553 (sha256
7554 (base32 "1z3rmln63ki2kik9kinbwr9qhr32ggbmh4mm3xqy6di119n47ca9"))))
7555 (properties
7556 `((upstream-name . "AcceptanceSampling")))
7557 (build-system r-build-system)
7558 (home-page "https://cran.r-project.org/web/packages/AcceptanceSampling/")
7559 (synopsis "Creation and evaluation of acceptance sampling plans")
7560 (description
7561 "This @code{r-acceptancesampling} provides functionality for creating and evaluating
7562 acceptance sampling plans. Acceptance sampling is a methodology commonly used
7563 in quality control and improvement. International standards of acceptance
7564 sampling provide sampling plans for specific circumstances. The aim of this
7565 package is to provide an easy-to-use interface to visualize single, double or
7566 multiple sampling plans. In addition, methods have been provided to enable the
7567 user to assess sampling plans against pre-specified levels of performance, as
7568 measured by the probability of acceptance for a given level of quality in the
7569 lot.")
7570 (license license:gpl3+)))
7571
7572 (define-public r-acclma
7573 (package
7574 (name "r-acclma")
7575 (version "1.0")
7576 (source
7577 (origin
7578 (method url-fetch)
7579 (uri (cran-uri "ACCLMA" version))
7580 (sha256
7581 (base32 "1na27sp18fq12gp6vxgqw1ffsz2yi1d8xvrxbrzx5g1kqxrayy0v"))))
7582 (properties `((upstream-name . "ACCLMA")))
7583 (build-system r-build-system)
7584 (home-page "https://cran.r-project.org/web/packages/ACCLMA/")
7585 (synopsis "ACC & LMA graph plotting")
7586 (description
7587 "This package contains a function that imports data from a @acronym{CSV,
7588 Comma-Separated Values} file, or uses manually entered data from the format (x,
7589 y, weight) and plots the appropriate @acronym{ACC, Absolute Concentration
7590 Curve} vs @acronym{LOI, Line of Independence} graph and
7591 @acronym{LMA, @acronym{LOI} Minus @acronym{ACC}} graph. The main
7592 function is @code{plotLMA} (source file, header) that takes a data set and plots the
7593 appropriate @acronym{LMA} and @acronym{ACC} graphs. If no source file (a
7594 string) was passed, a manual data entry window is opened. The header parameter
7595 indicates by TRUE/FALSE (false by default) if the source @acronym{CSV} file has
7596 a header row or not. The dataset should contain only one independent variable
7597 (x) and one dependent variable (y) and can contain a weight for each
7598 observation.")
7599 (license license:gpl2)))
7600
7601 (define-public r-aspi
7602 (package
7603 (name "r-aspi")
7604 (version "0.2.0")
7605 (source
7606 (origin
7607 (method url-fetch)
7608 (uri (cran-uri "aspi" version))
7609 (sha256
7610 (base32 "0rhvxw243vvdv3hxa6pi343gcjc2cbxq1jzqirl9k1l4i3897l87"))))
7611 (build-system r-build-system)
7612 (home-page
7613 "https://cran.r-project.org/web/packages/aspi/")
7614 (synopsis
7615 "Analysis of symmetry of parasitic infections")
7616 (description
7617 "This package provides tools for the analysis and visualization of bilateral
7618 asymmetry in parasitic infections.")
7619 (license license:gpl3+)))
7620
7621 (define-public r-sandwich
7622 (package
7623 (name "r-sandwich")
7624 (version "2.5-1")
7625 (source
7626 (origin
7627 (method url-fetch)
7628 (uri (cran-uri "sandwich" version))
7629 (sha256
7630 (base32
7631 "1mk685b9wq7k566pbml52rj96i5h6b3vf215k9picgmq296nzvyv"))))
7632 (build-system r-build-system)
7633 (propagated-inputs
7634 `(("r-zoo" ,r-zoo)))
7635 (home-page "https://cran.r-project.org/web/packages/sandwich/")
7636 (synopsis "Robust Covariance Matrix Estimators")
7637 (description
7638 "This package provides model-robust standard error estimators for
7639 cross-sectional, time series, clustered, panel, and longitudinal data.")
7640 ;; Either version of the license.
7641 (license (list license:gpl2 license:gpl3))))
7642
7643 (define-public r-th-data
7644 (package
7645 (name "r-th-data")
7646 (version "1.0-10")
7647 (source
7648 (origin
7649 (method url-fetch)
7650 (uri (cran-uri "TH.data" version))
7651 (sha256
7652 (base32
7653 "0mgz7aj2d9abbmdr65zgmg1ddp3fdbs3mfj83r5xadh5ldkir2k1"))))
7654 (properties `((upstream-name . "TH.data")))
7655 (build-system r-build-system)
7656 (propagated-inputs
7657 `(("r-mass" ,r-mass)
7658 ("r-survival" ,r-survival)))
7659 (home-page "https://cran.r-project.org/web/packages/TH.data/")
7660 (synopsis "Shared data sets")
7661 (description
7662 "This package contains supporting data sets that are used in other
7663 packages maintained by Torsten Hothorn.")
7664 (license license:gpl3)))
7665
7666 (define-public r-multcomp
7667 (package
7668 (name "r-multcomp")
7669 (version "1.4-10")
7670 (source
7671 (origin
7672 (method url-fetch)
7673 (uri (cran-uri "multcomp" version))
7674 (sha256
7675 (base32
7676 "1kzmdn9jmz5bmhf3wsfr12ljbasmwsgcsfdia52k0bi6q0swdg19"))))
7677 (build-system r-build-system)
7678 (propagated-inputs
7679 `(("r-codetools" ,r-codetools)
7680 ("r-mvtnorm" ,r-mvtnorm)
7681 ("r-sandwich" ,r-sandwich)
7682 ("r-survival" ,r-survival)
7683 ("r-th-data" ,r-th-data)))
7684 (home-page "https://cran.r-project.org/web/packages/multcomp/")
7685 (synopsis "Simultaneous inference in general parametric models")
7686 (description
7687 "Simultaneous tests and confidence intervals for general linear
7688 hypotheses in parametric models, including linear, generalized linear, linear
7689 mixed effects, and survival models. The package includes demos reproducing
7690 analyzes presented in the book \"Multiple Comparisons Using R\" (Bretz,
7691 Hothorn, Westfall, 2010, CRC Press).")
7692 (license license:gpl2)))
7693
7694 (define-public r-emmeans
7695 (package
7696 (name "r-emmeans")
7697 (version "1.3.5")
7698 (source
7699 (origin
7700 (method url-fetch)
7701 (uri (cran-uri "emmeans" version))
7702 (sha256
7703 (base32
7704 "0zyink60132f2a0491a94bf67hq8a0bwmw5wn19l0ms8iyiml9d2"))))
7705 (build-system r-build-system)
7706 (propagated-inputs
7707 `(("r-estimability" ,r-estimability)
7708 ("r-mvtnorm" ,r-mvtnorm)
7709 ("r-numderiv" ,r-numderiv)
7710 ("r-plyr" ,r-plyr)
7711 ("r-xtable" ,r-xtable)))
7712 (home-page "https://github.com/rvlenth/emmeans")
7713 (synopsis "Estimated marginal means, aka least-squares means")
7714 (description
7715 "This package provides tools to obtain @dfn{estimated marginal
7716 means} (EMMs) for many linear, generalized linear, and mixed models. It can
7717 be used to compute contrasts or linear functions of EMMs, trends, and
7718 comparisons of slopes.")
7719 ;; Either version of the license.
7720 (license (list license:gpl2 license:gpl3))))
7721
7722 (define-public r-pwr
7723 (package
7724 (name "r-pwr")
7725 (version "1.2-2")
7726 (source
7727 (origin
7728 (method url-fetch)
7729 (uri (cran-uri "pwr" version))
7730 (sha256
7731 (base32
7732 "0r5g781lr677vp3zyhgmi7r68c87l8gd05l1s3ffnxgn5wf043sm"))))
7733 (build-system r-build-system)
7734 (native-inputs
7735 `(("r-knitr" ,r-knitr)))
7736 (home-page "https://github.com/heliosdrm/pwr")
7737 (synopsis "Basic functions for power analysis")
7738 (description
7739 "This package provides power analysis functions along the lines of
7740 Cohen (1988).")
7741 (license license:gpl3+)))
7742
7743 (define-public r-libcoin
7744 (package
7745 (name "r-libcoin")
7746 (version "1.0-4")
7747 (source
7748 (origin
7749 (method url-fetch)
7750 (uri (cran-uri "libcoin" version))
7751 (sha256
7752 (base32
7753 "1i893ij9vkmc4y721npw1s3prmmcs2da5vf3ajm0j8ccmfhbmp4i"))))
7754 (build-system r-build-system)
7755 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
7756 (home-page "https://cran.r-project.org/web/packages/libcoin")
7757 (synopsis "Linear test statistics for permutation inference")
7758 (description
7759 "This package provides basic infrastructure for linear test statistics
7760 and permutation inference in the framework of Strasser and Weber (1999).")
7761 (license license:gpl2)))
7762
7763 (define-public r-coin
7764 (package
7765 (name "r-coin")
7766 (version "1.3-0")
7767 (source
7768 (origin
7769 (method url-fetch)
7770 (uri (cran-uri "coin" version))
7771 (sha256
7772 (base32
7773 "1y0yl4mjaxca0jqz53sv1gcpdg89m099rq61iszxvpx7w0vvpkmd"))))
7774 (build-system r-build-system)
7775 (propagated-inputs
7776 `(("r-libcoin" ,r-libcoin)
7777 ("r-matrixstats" ,r-matrixstats)
7778 ("r-modeltools" ,r-modeltools)
7779 ("r-multcomp" ,r-multcomp)
7780 ("r-mvtnorm" ,r-mvtnorm)
7781 ("r-survival" ,r-survival)))
7782 (home-page "http://coin.r-forge.r-project.org")
7783 (synopsis "Conditional inference procedures in a permutation test framework")
7784 (description
7785 "This package provides conditional inference procedures for the general
7786 independence problem including two-sample, K-sample (non-parametric ANOVA),
7787 correlation, censored, ordered and multivariate problems.")
7788 (license license:gpl2)))
7789
7790 (define-public r-bayesplot
7791 (package
7792 (name "r-bayesplot")
7793 (version "1.7.0")
7794 (source
7795 (origin
7796 (method url-fetch)
7797 (uri (cran-uri "bayesplot" version))
7798 (sha256
7799 (base32
7800 "0h23sbfny2hcipvvfhq5aiwdh1vanizn7f8lpb9kffypxhcd7v7w"))))
7801 (build-system r-build-system)
7802 (inputs
7803 `(("pandoc" ,ghc-pandoc)
7804 ("pandoc-citeproc" ,ghc-pandoc-citeproc)))
7805 (propagated-inputs
7806 `(("r-dplyr" ,r-dplyr)
7807 ("r-ggplot2" ,r-ggplot2)
7808 ("r-ggridges" ,r-ggridges)
7809 ("r-glue" ,r-glue)
7810 ("r-reshape2" ,r-reshape2)
7811 ("r-rlang" ,r-rlang)
7812 ("r-tibble" ,r-tibble)
7813 ("r-tidyselect" ,r-tidyselect)))
7814 (home-page "http://mc-stan.org/bayesplot")
7815 (synopsis "Plotting for Bayesian models")
7816 (description
7817 "This package provides plotting functions for posterior analysis, model
7818 checking, and MCMC diagnostics. The package is designed not only to provide
7819 convenient functionality for users, but also a common set of functions that
7820 can be easily used by developers working on a variety of R packages for
7821 Bayesian modeling.")
7822 (license license:gpl3+)))
7823
7824 (define-public r-tmb
7825 (package
7826 (name "r-tmb")
7827 (version "1.7.15")
7828 (source
7829 (origin
7830 (method url-fetch)
7831 (uri (cran-uri "TMB" version))
7832 (sha256
7833 (base32
7834 "1r2d8c5iazihba42sn33yarv0dcfiy989sx64zcf14zr8k6cgjzs"))))
7835 (properties `((upstream-name . "TMB")))
7836 (build-system r-build-system)
7837 (propagated-inputs
7838 `(("r-matrix" ,r-matrix)
7839 ("r-rcppeigen" ,r-rcppeigen)))
7840 (home-page "http://tmb-project.org")
7841 (synopsis "Template model builder: a general random effect tool")
7842 (description
7843 "With this tool, a user should be able to quickly implement complex
7844 random effect models through simple C++ templates. The package combines
7845 @code{CppAD} (C++ automatic differentiation), @code{Eigen} (templated
7846 matrix-vector library) and @code{CHOLMOD} (sparse matrix routines available
7847 from R) to obtain an efficient implementation of the applied Laplace
7848 approximation with exact derivatives. Key features are: Automatic sparseness
7849 detection, parallelism through BLAS and parallel user templates.")
7850 (license license:gpl2)))
7851
7852 (define-public r-sjstats
7853 (package
7854 (name "r-sjstats")
7855 (version "0.17.5")
7856 (source
7857 (origin
7858 (method url-fetch)
7859 (uri (cran-uri "sjstats" version))
7860 (sha256
7861 (base32
7862 "1x9ybvz84vgaabmqp4z6crbv5q6kqjg6msk1spbr11zx9dbj06ca"))))
7863 (build-system r-build-system)
7864 (propagated-inputs
7865 `(("r-bayestestr" ,r-bayestestr)
7866 ("r-broom" ,r-broom)
7867 ("r-dplyr" ,r-dplyr)
7868 ("r-emmeans" ,r-emmeans)
7869 ("r-insight" ,r-insight)
7870 ("r-lme4" ,r-lme4)
7871 ("r-magrittr" ,r-magrittr)
7872 ("r-mass" ,r-mass)
7873 ("r-modelr" ,r-modelr)
7874 ("r-performance" ,r-performance)
7875 ("r-purrr" ,r-purrr)
7876 ("r-rlang" ,r-rlang)
7877 ("r-sjlabelled" ,r-sjlabelled)
7878 ("r-sjmisc" ,r-sjmisc)
7879 ("r-tidyr" ,r-tidyr)))
7880 (home-page "https://github.com/strengejacke/sjstats")
7881 (synopsis "Functions for common statistical computations")
7882 (description
7883 "This package provides a collection of convenient functions for common
7884 statistical computations, which are not directly provided by R's @code{base}
7885 or @code{stats} packages. This package aims at providing, first, shortcuts
7886 for statistical measures, which otherwise could only be calculated with
7887 additional effort. Second, these shortcut functions are generic, and can be
7888 applied not only to vectors, but also to other objects as well. The focus of
7889 most functions lies on summary statistics or fit measures for regression
7890 models, including generalized linear models, mixed effects models and Bayesian
7891 models.")
7892 (license license:gpl3)))
7893
7894 (define-public r-glmmtmb
7895 (package
7896 (name "r-glmmtmb")
7897 (version "0.2.3")
7898 (source
7899 (origin
7900 (method url-fetch)
7901 (uri (cran-uri "glmmTMB" version))
7902 (sha256
7903 (base32
7904 "035hkywa37bz555fv6znxd4hfcs5w884365wfnwk4jx5vann4vvb"))))
7905 (properties `((upstream-name . "glmmTMB")))
7906 (build-system r-build-system)
7907 (propagated-inputs
7908 `(("r-lme4" ,r-lme4)
7909 ("r-matrix" ,r-matrix)
7910 ("r-nlme" ,r-nlme)
7911 ("r-rcppeigen" ,r-rcppeigen)
7912 ("r-tmb" ,r-tmb)))
7913 (native-inputs
7914 `(("r-knitr" ,r-knitr))) ; for vignettes
7915 (home-page "https://github.com/glmmTMB")
7916 (synopsis "Generalized linear mixed models")
7917 (description
7918 "Fit linear and generalized linear mixed models with various extensions,
7919 including zero-inflation. The models are fitted using maximum likelihood
7920 estimation via the Template Model Builder. Random effects are assumed to be
7921 Gaussian on the scale of the linear predictor and are integrated out using the
7922 Laplace approximation. Gradients are calculated using automatic
7923 differentiation.")
7924 (license license:agpl3+)))
7925
7926 (define-public r-bayestestr
7927 (package
7928 (name "r-bayestestr")
7929 (version "0.2.0")
7930 (source
7931 (origin
7932 (method url-fetch)
7933 (uri (cran-uri "bayestestR" version))
7934 (sha256
7935 (base32
7936 "0729j4fdxkkvmh99nmny38dywidzgmipdjqbi2ljxygsn4jg7ysy"))))
7937 (properties `((upstream-name . "bayestestR")))
7938 (build-system r-build-system)
7939 (propagated-inputs
7940 `(("r-insight" ,r-insight)))
7941 (home-page "https://github.com/easystats/bayestestR")
7942 (synopsis "Describe Bayesian models and posterior distributions")
7943 (description
7944 "This package provides utilities to understand and describe posterior
7945 distributions and Bayesian models. It includes point-estimates such as
7946 @dfn{Maximum A Posteriori} (MAP), measures of dispersion such as @dfn{Highest
7947 Density Interval} (HDI), and indices used for null-hypothesis testing (such as
7948 ROPE percentage and pd).")
7949 (license license:gpl3)))
7950
7951 (define-public r-performance
7952 (package
7953 (name "r-performance")
7954 (version "0.2.0")
7955 (source
7956 (origin
7957 (method url-fetch)
7958 (uri (cran-uri "performance" version))
7959 (sha256
7960 (base32
7961 "1pzd6z7i1jxr2xi1shg3d0bxlbpmjl7kpmwgjnfys6syv57znd1z"))))
7962 (build-system r-build-system)
7963 (propagated-inputs
7964 `(("r-bayestestr" ,r-bayestestr)
7965 ("r-insight" ,r-insight)))
7966 (home-page "https://easystats.github.io/performance/")
7967 (synopsis "Assessment of regression models performance")
7968 (description
7969 "This package provides utilities for computing measures to assess model
7970 quality, which are not directly provided by R's @code{base} or @code{stats}
7971 packages. These include e.g. measures like r-squared, intraclass correlation
7972 coefficient, root mean squared error or functions to check models for
7973 overdispersion, singularity or zero-inflation and more. Functions apply to a
7974 large variety of regression models, including generalized linear models, mixed
7975 effects models and Bayesian models.")
7976 (license license:gpl3)))
7977
7978 (define-public r-ggeffects
7979 (package
7980 (name "r-ggeffects")
7981 (version "0.10.0")
7982 (source
7983 (origin
7984 (method url-fetch)
7985 (uri (cran-uri "ggeffects" version))
7986 (sha256
7987 (base32
7988 "0gmqzjk8k8q6j4q6asv9f3b1fv4qrw5w8xa48ha3y98shzm5np9k"))))
7989 (build-system r-build-system)
7990 (propagated-inputs
7991 `(("r-dplyr" ,r-dplyr)
7992 ("r-insight" ,r-insight)
7993 ("r-magrittr" ,r-magrittr)
7994 ("r-mass" ,r-mass)
7995 ("r-purrr" ,r-purrr)
7996 ("r-rlang" ,r-rlang)
7997 ("r-scales" ,r-scales)
7998 ("r-sjlabelled" ,r-sjlabelled)
7999 ("r-sjmisc" ,r-sjmisc)))
8000 (home-page "https://github.com/strengejacke/ggeffects")
8001 (synopsis "Create tidy data frames of marginal effects for ggplot")
8002 (description
8003 "This package provides tools to compute marginal effects from statistical
8004 models and return the result as tidy data frames. These data frames are ready
8005 to use with the @code{ggplot2} package. Marginal effects can be calculated
8006 for many different models. Interaction terms, splines and polynomial terms
8007 are also supported. The two main functions are @code{ggpredict()} and
8008 @code{ggeffect()}. There is a generic @code{plot()} method to plot the
8009 results using @code{ggplot2}.")
8010 (license license:gpl3)))
8011
8012 (define-public r-sjplot
8013 (package
8014 (name "r-sjplot")
8015 (version "2.6.3")
8016 (source
8017 (origin
8018 (method url-fetch)
8019 (uri (cran-uri "sjPlot" version))
8020 (sha256
8021 (base32
8022 "0h1mkmp5mrkbf7y3zh6m4cnm737cpg1m5si0lrmal7j2ixqicwjy"))))
8023 (properties `((upstream-name . "sjPlot")))
8024 (build-system r-build-system)
8025 (propagated-inputs
8026 `(("r-bayestestr" ,r-bayestestr)
8027 ("r-broom" ,r-broom)
8028 ("r-dplyr" ,r-dplyr)
8029 ("r-forcats" ,r-forcats)
8030 ("r-ggeffects" ,r-ggeffects)
8031 ("r-ggplot2" ,r-ggplot2)
8032 ("r-glmmtmb" ,r-glmmtmb)
8033 ("r-insight" ,r-insight)
8034 ("r-knitr" ,r-knitr)
8035 ("r-lme4" ,r-lme4)
8036 ("r-magrittr" ,r-magrittr)
8037 ("r-mass" ,r-mass)
8038 ("r-modelr" ,r-modelr)
8039 ("r-nlme" ,r-nlme)
8040 ("r-performance" ,r-performance)
8041 ("r-psych" ,r-psych)
8042 ("r-purrr" ,r-purrr)
8043 ("r-rlang" ,r-rlang)
8044 ("r-scales" ,r-scales)
8045 ("r-sjlabelled" ,r-sjlabelled)
8046 ("r-sjmisc" ,r-sjmisc)
8047 ("r-sjstats" ,r-sjstats)
8048 ("r-tidyr" ,r-tidyr)))
8049 (home-page "https://strengejacke.github.io/sjPlot/")
8050 (synopsis "Data visualization for statistics in social science")
8051 (description
8052 "This package represents a collection of plotting and table output
8053 functions for data visualization. Results of various statistical
8054 analyses (that are commonly used in social sciences) can be visualized using
8055 this package, including simple and cross tabulated frequencies, histograms,
8056 box plots, (generalized) linear models, mixed effects models, principal
8057 component analysis and correlation matrices, cluster analyses, scatter plots,
8058 stacked scales, effects plots of regression models (including interaction
8059 terms) and much more. This package supports labelled data.")
8060 (license license:gpl3)))
8061
8062 (define-public r-ini
8063 (package
8064 (name "r-ini")
8065 (version "0.3.1")
8066 (source
8067 (origin
8068 (method url-fetch)
8069 (uri (cran-uri "ini" version))
8070 (sha256
8071 (base32
8072 "04yqij344dwm0xqgara8xia42mlmij3i8711qbb5534w05a1l6bv"))))
8073 (build-system r-build-system)
8074 (home-page "https://github.com/dvdscripter/ini")
8075 (synopsis "Read and write configuration files")
8076 (description
8077 "This package provides tools to parse simple @code{.ini} configuration
8078 files to an structured list. Users can manipulate this resulting list with
8079 @code{lapply()} functions. This same structured list can be used to write
8080 back to file after modifications.")
8081 (license license:gpl3)))
8082
8083 (define-public r-gh
8084 (package
8085 (name "r-gh")
8086 (version "1.0.1")
8087 (source
8088 (origin
8089 (method url-fetch)
8090 (uri (cran-uri "gh" version))
8091 (sha256
8092 (base32
8093 "1llinfajb0g7006jd2w1hpskxpmkjhnqarcjb71r1qvsccb2ph7k"))))
8094 (build-system r-build-system)
8095 (propagated-inputs
8096 `(("r-httr" ,r-httr)
8097 ("r-ini" ,r-ini)
8098 ("r-jsonlite" ,r-jsonlite)))
8099 (home-page "https://github.com/r-lib/gh#readme")
8100 (synopsis "Access the GitHub API via R")
8101 (description
8102 "This package provides a minimal R client to access the GitHub API.")
8103 (license license:expat)))
8104
8105 (define-public r-fs
8106 (package
8107 (name "r-fs")
8108 (version "1.3.1")
8109 (source
8110 (origin
8111 (method url-fetch)
8112 (uri (cran-uri "fs" version))
8113 (sha256
8114 (base32
8115 "1g26rgx13dzigp2vrlld6h28q33lwbax97zvwdrq2pc3iz54v4yn"))))
8116 (build-system r-build-system)
8117 (propagated-inputs
8118 `(("r-rcpp" ,r-rcpp)))
8119 (native-inputs
8120 `(("pkg-config" ,pkg-config)))
8121 (home-page "http://fs.r-lib.org")
8122 (synopsis "Cross-platform file system operations based on libuv")
8123 (description
8124 "This package provides a cross-platform interface to file system
8125 operations, built on top of the libuv C library.")
8126 (license license:gpl3)))
8127
8128 (define-public r-clisymbols
8129 (package
8130 (name "r-clisymbols")
8131 (version "1.2.0")
8132 (source
8133 (origin
8134 (method url-fetch)
8135 (uri (cran-uri "clisymbols" version))
8136 (sha256
8137 (base32
8138 "1q7gi2zmykhzas9v8fdnbpdq7pzdcpbhim1yxvd2062l777g4j86"))))
8139 (build-system r-build-system)
8140 (home-page "https://github.com/gaborcsardi/clisymbols")
8141 (synopsis "Unicode symbols at the R prompt")
8142 (description
8143 "This package provides a small subset of Unicode symbols, that are useful
8144 when building command line applications. They fall back to alternatives on
8145 terminals that do not support Unicode.")
8146 (license license:expat)))
8147
8148 (define-public r-usethis
8149 (package
8150 (name "r-usethis")
8151 (version "1.5.0")
8152 (source
8153 (origin
8154 (method url-fetch)
8155 (uri (cran-uri "usethis" version))
8156 (sha256
8157 (base32
8158 "0pn6ka3726psaqlx573g6nxi90apf0rn5m4k2lz1jr66xdc19sag"))))
8159 (build-system r-build-system)
8160 (propagated-inputs
8161 `(("r-clipr" ,r-clipr)
8162 ("r-clisymbols" ,r-clisymbols)
8163 ("r-crayon" ,r-crayon)
8164 ("r-curl" ,r-curl)
8165 ("r-desc" ,r-desc)
8166 ("r-fs" ,r-fs)
8167 ("r-gh" ,r-gh)
8168 ("r-git2r" ,r-git2r)
8169 ("r-glue" ,r-glue)
8170 ("r-purrr" ,r-purrr)
8171 ("r-rlang" ,r-rlang)
8172 ("r-rprojroot" ,r-rprojroot)
8173 ("r-rstudioapi" ,r-rstudioapi)
8174 ("r-whisker" ,r-whisker)
8175 ("r-withr" ,r-withr)
8176 ("r-yaml" ,r-yaml)))
8177 (home-page "https://github.com/r-lib/usethis")
8178 (synopsis "Automate R package and project setup")
8179 (description
8180 "This package helps you to automate R package and project setup tasks
8181 that are otherwise performed manually. This includes setting up unit testing,
8182 test coverage, continuous integration, Git, GitHub integration, licenses,
8183 Rcpp, RStudio projects, and more.")
8184 (license license:gpl3)))
8185
8186 (define-public r-sessioninfo
8187 (package
8188 (name "r-sessioninfo")
8189 (version "1.1.1")
8190 (source
8191 (origin
8192 (method url-fetch)
8193 (uri (cran-uri "sessioninfo" version))
8194 (sha256
8195 (base32
8196 "0j5f3l58fynxx3v0w62vqpii7miabszgljpja36xx9s8hikh8sqn"))))
8197 (build-system r-build-system)
8198 (propagated-inputs
8199 `(("r-cli" ,r-cli)
8200 ("r-withr" ,r-withr)))
8201 (home-page "https://github.com/r-lib/sessioninfo#readme")
8202 (synopsis "R session information")
8203 (description
8204 "This package provides tools to query and print information about the
8205 current R session. It is similar to @code{utils::sessionInfo()}, but includes
8206 more information about packages, and where they were installed from.")
8207 (license license:gpl2)))
8208
8209 (define-public r-remotes
8210 (package
8211 (name "r-remotes")
8212 (version "2.0.4")
8213 (source
8214 (origin
8215 (method url-fetch)
8216 (uri (cran-uri "remotes" version))
8217 (sha256
8218 (base32
8219 "1jbn4kjimcr82zv5lnqxqa2487a96vn6jxf7wc6gnpxr6k06d61p"))))
8220 (build-system r-build-system)
8221 (home-page "https://github.com/r-lib/remotes#readme")
8222 (synopsis "R package installation from remote repositories")
8223 (description
8224 "Download and install R packages stored in GitHub, BitBucket, or plain
8225 subversion or git repositories. This package is a lightweight replacement of
8226 the @code{install_*} functions in the @code{devtools} package. Indeed most of
8227 the code was copied over from @code{devtools}.")
8228 (license license:gpl2+)))
8229
8230 (define-public r-xopen
8231 (package
8232 (name "r-xopen")
8233 (version "1.0.0")
8234 (source
8235 (origin
8236 (method url-fetch)
8237 (uri (cran-uri "xopen" version))
8238 (sha256
8239 (base32
8240 "1vrvgdika1d63dwygynbv2wmd87ll8dji5dy89hj576n8hw601z2"))))
8241 (build-system r-build-system)
8242 (propagated-inputs
8243 `(("r-processx" ,r-processx)))
8244 (home-page "https://github.com/r-lib/xopen#readme")
8245 (synopsis "Open system files, URLs, anything")
8246 (description
8247 "This package provides a cross-platform solution to open files,
8248 directories or URLs with their associated programs.")
8249 (license license:expat)))
8250
8251 (define-public r-rcmdcheck
8252 (package
8253 (name "r-rcmdcheck")
8254 (version "1.3.3")
8255 (source
8256 (origin
8257 (method url-fetch)
8258 (uri (cran-uri "rcmdcheck" version))
8259 (sha256
8260 (base32
8261 "1d4kzgfqy72r6b7bn1j4znyksrycgypx1jjvpv9lrmvn37mpkdhs"))))
8262 (build-system r-build-system)
8263 (propagated-inputs
8264 `(("r-callr" ,r-callr)
8265 ("r-cli" ,r-cli)
8266 ("r-crayon" ,r-crayon)
8267 ("r-desc" ,r-desc)
8268 ("r-digest" ,r-digest)
8269 ("r-pkgbuild" ,r-pkgbuild)
8270 ("r-prettyunits" ,r-prettyunits)
8271 ("r-r6" ,r-r6)
8272 ("r-rprojroot" ,r-rprojroot)
8273 ("r-sessioninfo" ,r-sessioninfo)
8274 ("r-withr" ,r-withr)
8275 ("r-xopen" ,r-xopen)))
8276 (home-page "https://github.com/r-Lib/rcmdcheck#readme")
8277 (synopsis "Run R CMD check from R and capture results")
8278 (description
8279 "Run @code{R CMD check} from R programmatically, and capture the results
8280 of the individual checks.")
8281 (license license:expat)))
8282
8283 (define-public r-rapportools
8284 (package
8285 (name "r-rapportools")
8286 (version "1.0")
8287 (source
8288 (origin
8289 (method url-fetch)
8290 (uri (cran-uri "rapportools" version))
8291 (sha256
8292 (base32
8293 "1sgv4sc737i12arh5dc3263kjsz3dzg06qihfmrqyax94mv2d01b"))))
8294 (build-system r-build-system)
8295 (propagated-inputs
8296 `(("r-pander" ,r-pander)
8297 ("r-plyr" ,r-plyr)
8298 ("r-reshape" ,r-reshape)))
8299 (home-page "https://cran.r-project.org/web/packages/rapportools/")
8300 (synopsis "Miscellaneous helper functions with sane defaults for reporting")
8301 (description
8302 "This package provides helper functions that act as wrappers to more
8303 advanced statistical methods with the advantage of having sane defaults for
8304 quick reporting.")
8305 (license license:agpl3+)))
8306
8307 (define-public r-pander
8308 (package
8309 (name "r-pander")
8310 (version "0.6.3")
8311 (source
8312 (origin
8313 (method url-fetch)
8314 (uri (cran-uri "pander" version))
8315 (sha256
8316 (base32
8317 "1bd9sdghlsppmff18k5fg3i0visq9f4wc82rlhwq5m82bmgdgnyi"))))
8318 (build-system r-build-system)
8319 (propagated-inputs
8320 `(("r-digest" ,r-digest)
8321 ("r-rcpp" ,r-rcpp)))
8322 (home-page "https://rapporter.github.io/pander")
8323 (synopsis "Render R objects into Pandoc's markdown")
8324 (description
8325 "The main aim of the pander R package is to provide a minimal and easy
8326 tool for rendering R objects into Pandoc's markdown. The package is also
8327 capable of exporting/converting complex Pandoc documents (reports) in various
8328 ways.")
8329 ;; This package is licensed under either the AGPLv3+ or the very rarely
8330 ;; used OSL 3.0.
8331 (license license:agpl3+)))
8332
8333 (define-public r-summarytools
8334 (package
8335 (name "r-summarytools")
8336 (version "0.9.3")
8337 (source
8338 (origin
8339 (method url-fetch)
8340 (uri (cran-uri "summarytools" version))
8341 (sha256
8342 (base32
8343 "1wfbkgvicaic37zgpr6zcm4a58yx43p59h0sqggdj44ncqs7147f"))))
8344 (build-system r-build-system)
8345 (propagated-inputs
8346 `(("r-checkmate" ,r-checkmate)
8347 ("r-dplyr" ,r-dplyr)
8348 ("r-htmltools" ,r-htmltools)
8349 ("r-lubridate" ,r-lubridate)
8350 ("r-magick" ,r-magick)
8351 ("r-matrixstats" ,r-matrixstats)
8352 ("r-pander" ,r-pander)
8353 ("r-pryr" ,r-pryr)
8354 ("r-rapportools" ,r-rapportools)
8355 ("r-rcurl" ,r-rcurl)
8356 ("r-tibble" ,r-tibble)
8357 ("r-tidyr" ,r-tidyr)))
8358 (home-page "https://github.com/dcomtois/summarytools")
8359 (synopsis "Tools to quickly and neatly summarize data")
8360 (description
8361 "This package provides tools for data frame summaries, cross-tabulations,
8362 weight-enabled frequency tables and common univariate statistics in concise
8363 tables available in a variety of formats (plain ASCII, Markdown and HTML). A
8364 good point-of-entry for exploring data, both for experienced and new R
8365 users.")
8366 (license license:gpl2)))
8367
8368 (define-public r-lsei
8369 (package
8370 (name "r-lsei")
8371 (version "1.2-0")
8372 (source
8373 (origin
8374 (method url-fetch)
8375 (uri (cran-uri "lsei" version))
8376 (sha256
8377 (base32
8378 "1xl06fb3is744pxlh42wx5hn1h0ab1k31wnmsmh0524kxzcyp0a7"))))
8379 (build-system r-build-system)
8380 (native-inputs
8381 `(("gfortran" ,gfortran)))
8382 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
8383 (synopsis "Solve regression problems under equality/inequality constraints")
8384 (description
8385 "It contains functions that solve least squares linear regression
8386 problems under linear equality/inequality constraints. Functions for solving
8387 quadratic programming problems are also available, which transform such
8388 problems into least squares ones first.")
8389 (license license:gpl2+)))
8390
8391 (define-public r-npsurv
8392 (package
8393 (name "r-npsurv")
8394 (version "0.4-0")
8395 (source
8396 (origin
8397 (method url-fetch)
8398 (uri (cran-uri "npsurv" version))
8399 (sha256
8400 (base32
8401 "1wq4c9yfha5azjhrn40iiqkshmvh611sa90jp3lh82n4bl9zfk20"))))
8402 (build-system r-build-system)
8403 (propagated-inputs
8404 `(("r-lsei" ,r-lsei)))
8405 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
8406 (synopsis "Nonparametric survival analysis")
8407 (description
8408 "This package contains functions for non-parametric survival analysis of
8409 exact and interval-censored observations.")
8410 (license license:gpl2+)))
8411
8412 (define-public r-clusteval
8413 (package
8414 (name "r-clusteval")
8415 (version "0.1")
8416 (source
8417 (origin
8418 (method url-fetch)
8419 (uri (cran-uri "clusteval" version))
8420 (sha256
8421 (base32
8422 "1ld0bdl4fy8dsfzm3k7a37cyxc6pfc9qs31x4pxd3z5rslghz7rj"))))
8423 (build-system r-build-system)
8424 (propagated-inputs
8425 `(("r-mvtnorm" ,r-mvtnorm)
8426 ("r-rcpp" ,r-rcpp)))
8427 (home-page "https://cran.r-project.org/web/packages/clusteval/")
8428 (synopsis "Evaluation of clustering algorithms")
8429 (description
8430 "This R package provides a suite of tools to evaluate clustering
8431 algorithms, clusterings, and individual clusters.")
8432 (license license:expat)))
8433
8434 (define-public r-tweedie
8435 (package
8436 (name "r-tweedie")
8437 (version "2.3.2")
8438 (source
8439 (origin
8440 (method url-fetch)
8441 (uri (cran-uri "tweedie" version))
8442 (sha256
8443 (base32
8444 "10fv998qjxsyx0h94fi0xbh6xbf24nwgh254n9zfnmix9vk2cqls"))))
8445 (build-system r-build-system)
8446 (native-inputs `(("gfortran" ,gfortran)))
8447 (home-page "https://cran.r-project.org/web/packages/tweedie/")
8448 (synopsis "Evaluation of Tweedie exponential family models")
8449 (description
8450 "Maximum likelihood computations for Tweedie families, including the
8451 series expansion (Dunn and Smyth, 2005; <doi10.1007/s11222-005-4070-y>) and
8452 the Fourier inversion (Dunn and Smyth, 2008; <doi:10.1007/s11222-007-9039-6>),
8453 and related methods.")
8454 (license license:gpl2+)))
8455
8456 (define-public r-rcppgsl
8457 (package
8458 (name "r-rcppgsl")
8459 (version "0.3.6")
8460 (source
8461 (origin
8462 (method url-fetch)
8463 (uri (cran-uri "RcppGSL" version))
8464 (sha256
8465 (base32
8466 "16pdapq31729db53agnb48jkvdm97167n3bigy5zazc3q3isis1m"))))
8467 (properties `((upstream-name . "RcppGSL")))
8468 (build-system r-build-system)
8469 (propagated-inputs
8470 `(("r-rcpp" ,r-rcpp)
8471 ("gsl" ,gsl)))
8472 (native-inputs
8473 `(("r-knitr" ,r-knitr))) ; for vignettes
8474 (home-page "https://cran.r-project.org/web/packages/RcppGSL/")
8475 (synopsis "Rcpp integration for GSL vectors and matrices")
8476 (description
8477 "The GNU Scientific Library (or GSL) is a collection of numerical
8478 routines for scientific computing. It is particularly useful for C and C++
8479 programs as it provides a standard C interface to a wide range of mathematical
8480 routines. There are over 1000 functions in total with an extensive test
8481 suite. The RcppGSL package provides an easy-to-use interface between GSL data
8482 structures and R using concepts from Rcpp which is itself a package that eases
8483 the interfaces between R and C++.")
8484 (license license:gpl2+)))
8485
8486 (define-public r-mvabund
8487 (package
8488 (name "r-mvabund")
8489 (version "4.0.1")
8490 (source
8491 (origin
8492 (method url-fetch)
8493 (uri (cran-uri "mvabund" version))
8494 (sha256
8495 (base32
8496 "0la935gsiryfc0zixxr1dqj0av271x96pqxbi3bp6dksbw5gm68k"))))
8497 (build-system r-build-system)
8498 (propagated-inputs
8499 `(("r-mass" ,r-mass)
8500 ("r-rcpp" ,r-rcpp)
8501 ("r-rcppgsl" ,r-rcppgsl)
8502 ("r-statmod" ,r-statmod)
8503 ("r-tweedie" ,r-tweedie)))
8504 (home-page "https://cran.r-project.org/web/packages/mvabund/")
8505 (synopsis "Statistical methods for analysing multivariate abundance data")
8506 (description
8507 "This package provides a set of tools for displaying, modeling and
8508 analysing multivariate abundance data in community ecology.")
8509 (license license:lgpl2.1+)))
8510
8511 (define-public r-afex
8512 (package
8513 (name "r-afex")
8514 (version "0.23-0")
8515 (source
8516 (origin
8517 (method url-fetch)
8518 (uri (cran-uri "afex" version))
8519 (sha256
8520 (base32
8521 "0yv4s7461swn0116y4wq9v139p1br5rr6hhnq1cmkbvybmwj2vp7"))))
8522 (build-system r-build-system)
8523 (propagated-inputs
8524 `(("r-car" ,r-car)
8525 ("r-lme4" ,r-lme4)
8526 ("r-lmertest" ,r-lmertest)
8527 ("r-pbkrtest" ,r-pbkrtest)
8528 ("r-reshape2" ,r-reshape2)))
8529 (home-page "https://afex.singmann.science/")
8530 (synopsis "Analysis of factorial experiments")
8531 (description
8532 "This package provides convenience functions for analyzing factorial
8533 experiments using ANOVA or mixed models.")
8534 (license license:gpl2+)))
8535
8536 (define-public r-lmertest
8537 (package
8538 (name "r-lmertest")
8539 (version "3.1-0")
8540 (source
8541 (origin
8542 (method url-fetch)
8543 (uri (cran-uri "lmerTest" version))
8544 (sha256
8545 (base32
8546 "1nkz8cmxa5yb8q4i65bmhnn5pd4bhwcyjplyscynb24z3f64xp9b"))))
8547 (properties `((upstream-name . "lmerTest")))
8548 (build-system r-build-system)
8549 (propagated-inputs
8550 `(("r-ggplot2" ,r-ggplot2)
8551 ("r-lme4" ,r-lme4)
8552 ("r-mass" ,r-mass)
8553 ("r-numderiv" ,r-numderiv)))
8554 (home-page "https://github.com/runehaubo/lmerTestR")
8555 (synopsis "Tests in linear mixed effects models")
8556 (description
8557 "This package provides p-values in type I, II or III anova and summary
8558 tables for @code{lmer} model fits via Satterthwaite's degrees of freedom
8559 method. A Kenward-Roger method is also available via the @code{pbkrtest}
8560 package. Model selection methods include step, drop1 and anova-like tables
8561 for random effects (ranova). Methods for Least-Square means (LS-means) and
8562 tests of linear contrasts of fixed effects are also available.")
8563 (license license:gpl2+)))
8564
8565 (define-public r-r2glmm
8566 (package
8567 (name "r-r2glmm")
8568 (version "0.1.2")
8569 (source
8570 (origin
8571 (method url-fetch)
8572 (uri (cran-uri "r2glmm" version))
8573 (sha256
8574 (base32
8575 "0iim92blpa59vgz97c2pi05yhbjjmaffdbkbmk5kplfb2vmazgiy"))))
8576 (build-system r-build-system)
8577 (propagated-inputs
8578 `(("r-afex" ,r-afex)
8579 ("r-data-table" ,r-data-table)
8580 ("r-dplyr" ,r-dplyr)
8581 ("r-ggplot2" ,r-ggplot2)
8582 ("r-gridextra" ,r-gridextra)
8583 ("r-lmertest" ,r-lmertest)
8584 ("r-mass" ,r-mass)
8585 ("r-matrix" ,r-matrix)
8586 ("r-mgcv" ,r-mgcv)
8587 ("r-pbkrtest" ,r-pbkrtest)))
8588 (home-page "https://github.com/bcjaeger/r2glmm")
8589 (synopsis "Compute R squared for mixed (multilevel) models")
8590 (description
8591 "This package computes model and semi partial R squared with confidence
8592 limits for the linear and generalized linear mixed model (LMM and GLMM). The
8593 R squared measure from L. J. Edwards et al. (2008) is extended to the GLMM
8594 using @dfn{penalized quasi-likelihood} (PQL) estimation (see Jaeger et
8595 al. (2016)).")
8596 (license license:gpl2)))
8597
8598 (define-public r-weights
8599 (package
8600 (name "r-weights")
8601 (version "1.0")
8602 (source
8603 (origin
8604 (method url-fetch)
8605 (uri (cran-uri "weights" version))
8606 (sha256
8607 (base32
8608 "0186bfpkhxngrshac6bpg37alp6slwhwd43inrm8hqg0vhpfgc4c"))))
8609 (build-system r-build-system)
8610 (propagated-inputs
8611 `(("r-gdata" ,r-gdata)
8612 ("r-hmisc" ,r-hmisc)
8613 ("r-mice" ,r-mice)))
8614 (home-page
8615 "https://cran.r-project.org/web/packages/weights/")
8616 (synopsis "Weighting and weighted statistics")
8617 (description "This package Provides a variety of functions for producing
8618 simple weighted statistics, such as weighted Pearson's correlations, partial
8619 correlations, Chi-Squared statistics, histograms, and t-tests. Also now
8620 includes some software for quickly recoding survey data and plotting point
8621 estimates from interaction terms in regressions (and multiply imputed
8622 regressions). NOTE: Weighted partial correlation calculations pulled to
8623 address a bug.")
8624 (license license:gpl2+)))
8625
8626 (define-public r-rcppannoy
8627 (package
8628 (name "r-rcppannoy")
8629 (version "0.0.12")
8630 (source
8631 (origin
8632 (method url-fetch)
8633 (uri (cran-uri "RcppAnnoy" version))
8634 (sha256
8635 (base32
8636 "1b0fmip9c4i0my1yjrvqy8jxfiiqcggq2kms135q0b53njxnqwwg"))))
8637 (properties `((upstream-name . "RcppAnnoy")))
8638 (build-system r-build-system)
8639 (propagated-inputs
8640 `(("r-rcpp" ,r-rcpp)))
8641 (native-inputs
8642 `(("r-knitr" ,r-knitr))) ; for vignettes
8643 (home-page "https://cran.r-project.org/web/packages/RcppAnnoy/")
8644 (synopsis "Rcpp bindings for Annoy, a library for Approximate Nearest Neighbors")
8645 (description
8646 "Annoy is a small C++ library for Approximate Nearest Neighbors written
8647 for efficient memory usage as well an ability to load from and save to disk.
8648 This package provides an R interface.")
8649 ;; Annoy is released under ASL 2.0, but this wrapper is released under
8650 ;; GPLv2+.
8651 (license (list license:gpl2+ license:asl2.0))))
8652
8653 (define-public r-rcpphnsw
8654 (package
8655 (name "r-rcpphnsw")
8656 (version "0.1.0")
8657 (source
8658 (origin
8659 (method url-fetch)
8660 (uri (cran-uri "RcppHNSW" version))
8661 (sha256
8662 (base32
8663 "158a069n42pbnjrlmvqsr6bm2cfp9hxpnk3nhp3dwi9qjlq4r9bm"))))
8664 (properties `((upstream-name . "RcppHNSW")))
8665 (build-system r-build-system)
8666 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
8667 (home-page "https://cran.r-project.org/web/packages/RcppHNSW/")
8668 (synopsis "Rcpp bindings for hnswlib, a library for approximate nearest neighbors")
8669 (description
8670 "Hnswlib is a C++ library for approximate nearest neighbors. This
8671 package provides a minimal R interface by relying on the Rcpp package.")
8672 ;; hnswlib is released under Version 2.0 of the Apache License.
8673 (license (list license:gpl3 license:asl2.0))))
8674
8675 (define-public r-ncdf4
8676 (package
8677 (name "r-ncdf4")
8678 (version "1.16.1")
8679 (source
8680 (origin
8681 (method url-fetch)
8682 (uri (cran-uri "ncdf4" version))
8683 (sha256
8684 (base32
8685 "083sb24anyd4sw0il3x07pqn9rbx5y5ayqass6mz8x443rnjvphd"))))
8686 (build-system r-build-system)
8687 (inputs
8688 `(("netcdf" ,netcdf)
8689 ("zlib" ,zlib)))
8690 (home-page "https://cran.r-project.org/web/packages/ncdf4/index.html")
8691 (synopsis "R interface to Unidata netCDF format data files")
8692 (description
8693 "This package provides a high-level R interface to data files written
8694 using Unidata's netCDF library (version 4 or earlier), which are binary data
8695 files that are portable across platforms and include metadata information in
8696 addition to the data sets. Using this package, netCDF files can be opened and
8697 data sets read in easily. It is also easy to create new netCDF dimensions,
8698 variables, and files, in either version 3 or 4 format, and manipulate existing
8699 netCDF files.")
8700 (license license:gpl3+)))
8701
8702 (define-public r-biocmanager
8703 (package
8704 (name "r-biocmanager")
8705 (version "1.30.4")
8706 (source
8707 (origin
8708 (method url-fetch)
8709 (uri (cran-uri "BiocManager" version))
8710 (sha256
8711 (base32
8712 "0kxs76pixk1d2lpvkyrq6nnvv1rqf55ph5f7igkadyyqirf3y2ah"))))
8713 (properties `((upstream-name . "BiocManager")))
8714 (build-system r-build-system)
8715 (home-page "https://cran.r-project.org/web/packages/BiocManager/")
8716 (synopsis "Access the Bioconductor project package repository")
8717 (description
8718 "This package provides a convenient tool to install and update
8719 Bioconductor packages.")
8720 (license license:artistic2.0)))
8721
8722 (define-public r-rgl
8723 (package
8724 (name "r-rgl")
8725 (version "0.100.19")
8726 (source
8727 (origin
8728 (method url-fetch)
8729 (uri (cran-uri "rgl" version))
8730 (sha256
8731 (base32
8732 "09bhvx8aq104yzysfgd7wlnq4vrvmnd4jzgj0c32whjfal10fqsh"))))
8733 (build-system r-build-system)
8734 (native-inputs
8735 `(("pkg-config" ,pkg-config)))
8736 (inputs
8737 `(("freetype" ,freetype)
8738 ("libpng" ,libpng)
8739 ("glu" ,glu)
8740 ("libx11" ,libx11)
8741 ("ghc-pandoc" ,ghc-pandoc)
8742 ("zlib" ,zlib)))
8743 (propagated-inputs
8744 `(("r-crosstalk" ,r-crosstalk)
8745 ("r-htmltools" ,r-htmltools)
8746 ("r-htmlwidgets" ,r-htmlwidgets)
8747 ("r-jsonlite" ,r-jsonlite)
8748 ("r-knitr" ,r-knitr)
8749 ("r-magrittr" ,r-magrittr)
8750 ("r-manipulatewidget" ,r-manipulatewidget)
8751 ("r-shiny" ,r-shiny)))
8752 (home-page "https://r-forge.r-project.org/projects/rgl/")
8753 (synopsis "3D visualization using OpenGL")
8754 (description
8755 "This package provides medium to high level functions for 3D interactive graphics,
8756 including functions modelled on base graphics (@code{plot3d()}, etc.) as well
8757 as functions for constructing representations of geometric
8758 objects (@code{cube3d()}, etc.). Output may be on screen using OpenGL, or to
8759 various standard 3D file formats including WebGL, PLY, OBJ, STL as well as 2D
8760 image formats, including PNG, Postscript, SVG, PGF.")
8761 ;; Any version of the GPL.
8762 (license (list license:gpl2+ license:gpl3+))))
8763
8764 (define-public r-multicool
8765 (package
8766 (name "r-multicool")
8767 (version "0.1-10")
8768 (source
8769 (origin
8770 (method url-fetch)
8771 (uri (cran-uri "multicool" version))
8772 (sha256
8773 (base32
8774 "1ybg9piya9psqg42w9i3zsnavbxhkfklfwl7cb420i5nkq6wpc2v"))))
8775 (build-system r-build-system)
8776 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
8777 (home-page "https://cran.r-project.org/web/packages/multicool/")
8778 (synopsis "Permutations of multisets in cool-lex order")
8779 (description
8780 "This package provides a set of tools to permute multisets without loops
8781 or hash tables and to generate integer partitions. Cool-lex order is similar
8782 to colexicographical order.")
8783 (license license:gpl2)))
8784
8785 (define-public r-misc3d
8786 (package
8787 (name "r-misc3d")
8788 (version "0.8-4")
8789 (source
8790 (origin
8791 (method url-fetch)
8792 (uri (cran-uri "misc3d" version))
8793 (sha256
8794 (base32
8795 "0qjzpw3h09qi2gfz52b7nhzd95p7yyxsd03fldc9wzzn6wi3vpkm"))))
8796 (build-system r-build-system)
8797 (home-page "https://cran.r-project.org/web/packages/misc3d/")
8798 (synopsis "Miscellaneous 3D Plots")
8799 (description
8800 "This package provides a collection of miscellaneous 3d plots, including
8801 isosurfaces.")
8802 ;; Any version of the GPL.
8803 (license (list license:gpl2+ license:gpl3+))))
8804
8805 (define-public r-ks
8806 (package
8807 (name "r-ks")
8808 (version "1.11.5")
8809 (source
8810 (origin
8811 (method url-fetch)
8812 (uri (cran-uri "ks" version))
8813 (sha256
8814 (base32
8815 "06ymx244yknmpl6935l4pafqbm4gcbpnhqg7rinql6rrfr9mcrag"))))
8816 (build-system r-build-system)
8817 (propagated-inputs
8818 `(("r-fnn" ,r-fnn)
8819 ("r-kernlab" ,r-kernlab)
8820 ("r-kernsmooth" ,r-kernsmooth)
8821 ("r-matrix" ,r-matrix)
8822 ("r-mclust" ,r-mclust)
8823 ("r-mgcv" ,r-mgcv)
8824 ("r-multicool" ,r-multicool)
8825 ("r-mvtnorm" ,r-mvtnorm)))
8826 (home-page "http://www.mvstat.net/tduong/")
8827 (synopsis "Kernel smoothing")
8828 (description
8829 "This package provides kernel smoothers for univariate and multivariate
8830 data, including density functions, density derivatives, cumulative
8831 distributions, modal clustering, discriminant analysis, and two-sample
8832 hypothesis testing.")
8833 ;; Either version of the GPL.
8834 (license (list license:gpl2 license:gpl3))))
8835
8836 (define-public r-feature
8837 (package
8838 (name "r-feature")
8839 (version "1.2.13")
8840 (source
8841 (origin
8842 (method url-fetch)
8843 (uri (cran-uri "feature" version))
8844 (sha256
8845 (base32
8846 "07hkw0bv38naj2hdsx4xxrm2dngi6w3rbvgr7s50bjic8hlgy1ra"))))
8847 (build-system r-build-system)
8848 (propagated-inputs
8849 `(("r-ks" ,r-ks)
8850 ("r-misc3d" ,r-misc3d)
8851 ("r-rgl" ,r-rgl)))
8852 (home-page "http://www.mvstat.net/tduong/")
8853 (synopsis "Inferential feature significance for kernel density estimation")
8854 (description
8855 "The feature package contains functions to display and compute kernel
8856 density estimates, significant gradient and significant curvature regions.
8857 Significant gradient and/or curvature regions often correspond to significant
8858 features (e.g. local modes).")
8859 ;; Either version of the GPL.
8860 (license (list license:gpl2 license:gpl3))))
8861
8862 (define-public r-arm
8863 (package
8864 (name "r-arm")
8865 (version "1.10-1")
8866 (source
8867 (origin
8868 (method url-fetch)
8869 (uri (cran-uri "arm" version))
8870 (sha256
8871 (base32
8872 "0vvp90jygajd6ydky57z66wqjq9msfbl88irj5jbsray574mh4bg"))))
8873 (build-system r-build-system)
8874 (propagated-inputs
8875 `(("r-abind" ,r-abind)
8876 ("r-coda" ,r-coda)
8877 ("r-lme4" ,r-lme4)
8878 ("r-mass" ,r-mass)
8879 ("r-matrix" ,r-matrix)
8880 ("r-nlme" ,r-nlme)))
8881 (home-page "https://cran.r-project.org/web/packages/arm/")
8882 (synopsis "Data analysis using regression and multilevel/hierarchical models")
8883 (description
8884 "This package provides functions to accompany A. Gelman and J. Hill,
8885 Data Analysis Using Regression and Multilevel/Hierarchical Models, Cambridge
8886 University Press, 2007.")
8887 (license license:gpl3+)))
8888
8889 (define-public r-circular
8890 (package
8891 (name "r-circular")
8892 (version "0.4-93")
8893 (source
8894 (origin
8895 (method url-fetch)
8896 (uri (cran-uri "circular" version))
8897 (sha256
8898 (base32
8899 "0hki85rs8wc5950pjaw28q54rly2napfbcrx3pchlfap6wwy5kkn"))))
8900 (build-system r-build-system)
8901 (propagated-inputs
8902 `(("r-boot" ,r-boot)
8903 ("r-mvtnorm" ,r-mvtnorm)))
8904 (native-inputs
8905 `(("gfortran" ,gfortran)))
8906 (home-page "https://cran.r-project.org/web/packages/circular/")
8907 (synopsis "Circular statistics")
8908 (description
8909 "This package provides tools for circular statistics, from \"Topics in
8910 circular Statistics\" (2001) S. Rao Jammalamadaka and A. SenGupta, World
8911 Scientific.")
8912 (license license:gpl2+)))
8913
8914 (define-public r-activity
8915 (package
8916 (name "r-activity")
8917 (version "1.2")
8918 (source
8919 (origin
8920 (method url-fetch)
8921 (uri (cran-uri "activity" version))
8922 (sha256
8923 (base32
8924 "11w2bz6p9xbzdh6773dmbbh6rws0h5dj18p8m0ivzizgq932vdzs"))))
8925 (build-system r-build-system)
8926 (propagated-inputs
8927 `(("r-circular" ,r-circular)
8928 ("r-pbapply" ,r-pbapply)))
8929 (home-page "https://cran.r-project.org/web/packages/activity/")
8930 (synopsis "Animal activity statistics")
8931 (description
8932 "This package provides functions to fit kernel density functions to
8933 animal activity time data; plot activity distributions; quantify overall
8934 levels of activity; statistically compare activity metrics through
8935 bootstrapping; and evaluate variation in linear variables with time (or other
8936 circular variables).")
8937 (license license:gpl3)))
8938
8939 (define-public r-ouch
8940 (package
8941 (name "r-ouch")
8942 (version "2.14-1")
8943 (source
8944 (origin
8945 (method url-fetch)
8946 (uri (cran-uri "ouch" version))
8947 (sha256
8948 (base32
8949 "0ddf9bw5lhj8vb0ja78jf99i0smq4rgmm842k4a4ygap41vdyn2b"))))
8950 (build-system r-build-system)
8951 (propagated-inputs `(("r-subplex" ,r-subplex)))
8952 (home-page "http://kingaa.github.io/ouch/")
8953 (synopsis "Ornstein-Uhlenbeck models for phylogenetic comparative hypotheses")
8954 (description
8955 "This package provides tools to fit and compare Ornstein-Uhlenbeck models
8956 for evolution along a phylogenetic tree.")
8957 (license license:gpl2+)))
8958
8959 (define-public r-fmsb
8960 (package
8961 (name "r-fmsb")
8962 (version "0.6.3")
8963 (source
8964 (origin
8965 (method url-fetch)
8966 (uri (cran-uri "fmsb" version))
8967 (sha256
8968 (base32
8969 "1n29bnyp20pvpk2lsa9fblsj5w7amp14snc74pk5w3yr5y6rj0s5"))))
8970 (build-system r-build-system)
8971 (home-page "http://minato.sip21c.org/msb/")
8972 (synopsis "Functions for medical statistics book with demographic data")
8973 (description
8974 "This package provides several utility functions for the book entitled
8975 \"Practices of Medical and Health Data Analysis using R\" (Pearson Education
8976 Japan, 2007) with Japanese demographic data and some demographic analysis
8977 related functions.")
8978 (license license:gpl2+)))
8979
8980 (define-public r-stabledist
8981 (package
8982 (name "r-stabledist")
8983 (version "0.7-1")
8984 (source
8985 (origin
8986 (method url-fetch)
8987 (uri (cran-uri "stabledist" version))
8988 (sha256
8989 (base32
8990 "0scar396wiq6wkbkvwp4qrxqc1m075y56p37i6iry5rw796p1i86"))))
8991 (build-system r-build-system)
8992 (home-page "http://www.rmetrics.org")
8993 (synopsis "Stable distribution functions")
8994 (description
8995 "This package provides density, probability and quantile functions, and
8996 random number generation for (skew) stable distributions, using the
8997 parametrizations of Nolan.")
8998 (license license:gpl2+)))
8999
9000 (define-public r-gsl
9001 (package
9002 (name "r-gsl")
9003 (version "2.1-6")
9004 (source
9005 (origin
9006 (method url-fetch)
9007 (uri (cran-uri "gsl" version))
9008 (sha256
9009 (base32
9010 "0p4rh7npp6qbfc5sxjq86xjn7c9ivf3pd60qf1hldwckjqin7m7m"))))
9011 (build-system r-build-system)
9012 (inputs
9013 `(("gsl" ,gsl)))
9014 (home-page "https://cran.r-project.org/web/packages/gsl")
9015 (synopsis "Wrapper for the GNU Scientific Library")
9016 (description
9017 "This package provides an R wrapper for the special functions and quasi
9018 random number generators of the GNU Scientific Library.")
9019 (license license:gpl2+)))
9020
9021 (define-public r-adgoftest
9022 (package
9023 (name "r-adgoftest")
9024 (version "0.3")
9025 (source
9026 (origin
9027 (method url-fetch)
9028 (uri (cran-uri "ADGofTest" version))
9029 (sha256
9030 (base32
9031 "0ik817qzqp6kfbckjp1z7srlma0w6z2zcwykh0jdiv7nahwk3ncw"))))
9032 (properties `((upstream-name . "ADGofTest")))
9033 (build-system r-build-system)
9034 (home-page "https://cran.r-project.org/web/packages/ADGofTest")
9035 (synopsis "Anderson-Darling GoF test")
9036 (description
9037 "This package provides an implementation of the Anderson-Darling GoF test
9038 with p-value calculation based on Marsaglia's 2004 paper \"Evaluating the
9039 Anderson-Darling Distribution\".")
9040 ;; Any version of the GPL.
9041 (license license:gpl3+)))
9042
9043 (define-public r-softimpute
9044 (package
9045 (name "r-softimpute")
9046 (version "1.4")
9047 (source
9048 (origin
9049 (method url-fetch)
9050 (uri (cran-uri "softImpute" version))
9051 (sha256
9052 (base32
9053 "07cxbzkl08q58m1455i139952rmryjlic4s2f2hscl5zxxmfdxcq"))))
9054 (properties `((upstream-name . "softImpute")))
9055 (build-system r-build-system)
9056 (propagated-inputs
9057 `(("r-matrix" ,r-matrix)))
9058 (native-inputs
9059 `(("gfortran" ,gfortran)))
9060 (home-page "https://cran.r-project.org/web/packages/softImpute")
9061 (synopsis "Matrix completion via iterative soft-thresholded SVD")
9062 (description
9063 "This package provides iterative methods for matrix completion that use
9064 nuclear-norm regularization. The package includes procedures for centering
9065 and scaling rows, columns or both, and for computing low-rank @dfn{single
9066 value decompositions} (SVDs) on large sparse centered matrices (i.e. principal
9067 components).")
9068 (license license:gpl2)))
9069
9070 (define-public r-fftwtools
9071 (package
9072 (name "r-fftwtools")
9073 (version "0.9-8")
9074 (source
9075 (origin
9076 (method url-fetch)
9077 (uri (cran-uri "fftwtools" version))
9078 (sha256
9079 (base32
9080 "1nqvpzda281rxi1cmwajxxsn3sc3gz7scv8bvs5jm34kf36whha6"))))
9081 (build-system r-build-system)
9082 (inputs `(("fftw" ,fftw)))
9083 (home-page "https://github.com/krahim/fftwtools")
9084 (synopsis "Wrapper for FFTW3")
9085 (description
9086 "This package provides a wrapper for several FFTW functions. It provides
9087 access to the two-dimensional FFT, the multivariate FFT, and the
9088 one-dimensional real to complex FFT using the FFTW3 library. The package
9089 includes the functions @code{fftw()} and @code{mvfftw()} which are designed to
9090 mimic the functionality of the R functions @code{fft()} and @code{mvfft()}.
9091 The FFT functions have a parameter that allows them to not return the
9092 redundant complex conjugate when the input is real data.")
9093 (license license:gpl2+)))
9094
9095 (define-public r-tiff
9096 (package
9097 (name "r-tiff")
9098 (version "0.1-5")
9099 (source
9100 (origin
9101 (method url-fetch)
9102 (uri (cran-uri "tiff" version))
9103 (sha256
9104 (base32
9105 "0asf2bws3x3yd3g3ixvk0f86b0mdf882pl8xrqlxrkbgjalyc54m"))))
9106 (build-system r-build-system)
9107 (inputs
9108 `(("libtiff" ,libtiff)
9109 ("libjpeg" ,libjpeg)
9110 ("zlib" ,zlib)))
9111 (home-page "http://www.rforge.net/tiff/")
9112 (synopsis "Read and write TIFF images")
9113 (description
9114 "This package provides an easy and simple way to read, write and display
9115 bitmap images stored in the TIFF format. It can read and write both files and
9116 in-memory raw vectors.")
9117 ;; Either of these two license versions.
9118 (license (list license:gpl2 license:gpl3))))
9119
9120 (define-public r-waveslim
9121 (package
9122 (name "r-waveslim")
9123 (version "1.7.5.1")
9124 (source
9125 (origin
9126 (method url-fetch)
9127 (uri (cran-uri "waveslim" version))
9128 (sha256
9129 (base32
9130 "0mky0nb4xxp8rybp87mxw2f1q6k400wpxv01zr4injv7ja6028xk"))))
9131 (build-system r-build-system)
9132 (native-inputs
9133 `(("gfortran" ,gfortran)))
9134 (home-page "http://waveslim.blogspot.com")
9135 (synopsis "Basic wavelet routines for signal processing")
9136 (description
9137 "This package provides basic wavelet routines for time series (1D),
9138 image (2D) and array (3D) analysis. The code provided here is based on
9139 wavelet methodology developed in Percival and Walden (2000); Gencay, Selcuk
9140 and Whitcher (2001); the dual-tree complex wavelet transform (DTCWT) from
9141 Kingsbury (1999, 2001) as implemented by Selesnick; and Hilbert wavelet
9142 pairs (Selesnick 2001, 2002).")
9143 (license license:bsd-3)))
9144
9145 (define-public r-wordcloud
9146 (package
9147 (name "r-wordcloud")
9148 (version "2.6")
9149 (source
9150 (origin
9151 (method url-fetch)
9152 (uri (cran-uri "wordcloud" version))
9153 (sha256
9154 (base32
9155 "0j96yyvm6bcrrpbdx4w26piqx44a0vbsr3px9cb4zk8a8da6jwak"))))
9156 (build-system r-build-system)
9157 (propagated-inputs
9158 `(("r-rcolorbrewer" ,r-rcolorbrewer)
9159 ("r-rcpp" ,r-rcpp)))
9160 (home-page "https://cran.r-project.org/web/packages/wordcloud")
9161 (synopsis "Word clouds")
9162 (description
9163 "This package provides functionality to create pretty word clouds,
9164 visualize differences and similarity between documents, and avoid
9165 over-plotting in scatter plots with text.")
9166 (license license:lgpl2.1)))
9167
9168 (define-public r-colorramps
9169 (package
9170 (name "r-colorramps")
9171 (version "2.3")
9172 (source
9173 (origin
9174 (method url-fetch)
9175 (uri (cran-uri "colorRamps" version))
9176 (sha256
9177 (base32
9178 "0shbjh83x1axv4drm5r3dwgbyv70idih8z4wlzjs4hiac2qfl41z"))))
9179 (properties `((upstream-name . "colorRamps")))
9180 (build-system r-build-system)
9181 (home-page "https://cran.r-project.org/web/packages/colorRamps")
9182 (synopsis "Build color tables")
9183 (description "This package provides features to build gradient color
9184 maps.")
9185 ;; Any version of the GPL
9186 (license license:gpl3+)))
9187
9188 (define-public r-tidytree
9189 (package
9190 (name "r-tidytree")
9191 (version "0.2.4")
9192 (source
9193 (origin
9194 (method url-fetch)
9195 (uri (cran-uri "tidytree" version))
9196 (sha256
9197 (base32
9198 "04bznlfs617plv258nmsyq2pywnijcnzy2pbn5b2fgjk2xqkp29w"))))
9199 (build-system r-build-system)
9200 (propagated-inputs
9201 `(("r-ape" ,r-ape)
9202 ("r-dplyr" ,r-dplyr)
9203 ("r-lazyeval" ,r-lazyeval)
9204 ("r-magrittr" ,r-magrittr)
9205 ("r-rlang" ,r-rlang)
9206 ("r-tibble" ,r-tibble)))
9207 (home-page "https://github.com/GuangchuangYu/tidytree")
9208 (synopsis "Tidy tool for phylogenetic tree data manipulation")
9209 (description
9210 "Phylogenetic trees generally contain multiple components including nodes,
9211 edges, branches and associated data. This package provides an approach to
9212 convert tree objects to tidy data frames. It also provides tidy interfaces to
9213 manipulate tree data.")
9214 (license license:artistic2.0)))
9215
9216 (define-public r-rvcheck
9217 (package
9218 (name "r-rvcheck")
9219 (version "0.1.3")
9220 (source
9221 (origin
9222 (method url-fetch)
9223 (uri (cran-uri "rvcheck" version))
9224 (sha256
9225 (base32
9226 "1i2g6gyiqyd1pn6y0h6vmlcmg1qb5pv7rym8mkw8jnyc3in9hn8b"))))
9227 (build-system r-build-system)
9228 (propagated-inputs
9229 `(("r-rlang" ,r-rlang)))
9230 (home-page "https://cran.r-project.org/web/packages/rvcheck")
9231 (synopsis "R package version check")
9232 (description
9233 "This package provides tools to check the latest release version of R and
9234 R packages (on CRAN, Bioconductor or Github).")
9235 (license license:artistic2.0)))
9236
9237 (define-public r-docopt
9238 (package
9239 (name "r-docopt")
9240 (version "0.6.1")
9241 (source
9242 (origin
9243 (method url-fetch)
9244 (uri (cran-uri "docopt" version))
9245 (sha256
9246 (base32
9247 "06zknnd0c5s2y0hbddzdlr3m63ib783izpck6pgz7sjbab5pd068"))))
9248 (build-system r-build-system)
9249 (home-page "https://github.com/docopt/docopt.R")
9250 (synopsis "Command-line interface specification language")
9251 (description
9252 "This package enables you to define a command-line interface by just
9253 giving it a description in the specific format.")
9254 (license license:expat)))
9255
9256 (define-public r-sparsesvd
9257 (package
9258 (name "r-sparsesvd")
9259 (version "0.1-4")
9260 (source
9261 (origin
9262 (method url-fetch)
9263 (uri (cran-uri "sparsesvd" version))
9264 (sha256
9265 (base32
9266 "1yf373552wvdnd65r7hfcqa3v29dqn7jd4cn431mqd2acnqjrsam"))))
9267 (build-system r-build-system)
9268 (propagated-inputs `(("r-matrix" ,r-matrix)))
9269 (home-page "http://tedlab.mit.edu/~dr/SVDLIBC/")
9270 (synopsis "Sparse truncated singular value decomposition")
9271 (description
9272 "This package provides a Wrapper around the SVDLIBC library
9273 for (truncated) singular value decomposition of a sparse matrix. Currently,
9274 only sparse real matrices in Matrix package format are supported.")
9275 ;; SVDLIBC is released under BSD-2. The R interface is released under
9276 ;; BSD-3.
9277 (license (list license:bsd-3 license:bsd-2))))
9278
9279 (define-public r-densityclust
9280 (package
9281 (name "r-densityclust")
9282 (version "0.3")
9283 (source
9284 (origin
9285 (method url-fetch)
9286 (uri (cran-uri "densityClust" version))
9287 (sha256
9288 (base32
9289 "1zry0vafajzmr37aylglxfvwplhdygbkb9cvzvh8cy0xgnjrnx13"))))
9290 (properties `((upstream-name . "densityClust")))
9291 (build-system r-build-system)
9292 (propagated-inputs
9293 `(("r-fnn" ,r-fnn)
9294 ("r-ggplot2" ,r-ggplot2)
9295 ("r-ggrepel" ,r-ggrepel)
9296 ("r-gridextra" ,r-gridextra)
9297 ("r-rcolorbrewer" ,r-rcolorbrewer)
9298 ("r-rcpp" ,r-rcpp)
9299 ("r-rtsne" ,r-rtsne)))
9300 (home-page "https://cran.r-project.org/web/packages/densityClust")
9301 (synopsis "Clustering by fast search and find of density peaks")
9302 (description
9303 "This package provides an improved implementation (based on k-nearest
9304 neighbors) of the density peak clustering algorithm, originally described by
9305 Alex Rodriguez and Alessandro Laio (Science, 2014 vol. 344). It can handle
9306 large datasets (> 100,000 samples) very efficiently.")
9307 (license license:gpl2+)))
9308
9309 (define-public r-combinat
9310 (package
9311 (name "r-combinat")
9312 (version "0.0-8")
9313 (source
9314 (origin
9315 (method url-fetch)
9316 (uri (cran-uri "combinat" version))
9317 (sha256
9318 (base32
9319 "1h9hr88gigihc4na7lb5i7rn4az1xa7sb34zvnznaj6pdrmwy4qm"))))
9320 (build-system r-build-system)
9321 (home-page "https://cran.r-project.org/web/packages/combinat")
9322 (synopsis "Combinatorics utilities")
9323 (description "This package provides assorted routines for combinatorics.")
9324 (license license:gpl2)))
9325
9326 (define-public r-qlcmatrix
9327 (package
9328 (name "r-qlcmatrix")
9329 (version "0.9.7")
9330 (source
9331 (origin
9332 (method url-fetch)
9333 (uri (cran-uri "qlcMatrix" version))
9334 (sha256
9335 (base32
9336 "0iqkcvvy8rxlk0s83sjq57dd6fadb18p5z31lzy0gnzv1hsy1x8y"))))
9337 (properties `((upstream-name . "qlcMatrix")))
9338 (build-system r-build-system)
9339 (propagated-inputs
9340 `(("r-docopt" ,r-docopt)
9341 ("r-matrix" ,r-matrix)
9342 ("r-slam" ,r-slam)
9343 ("r-sparsesvd" ,r-sparsesvd)))
9344 (home-page "https://cran.r-project.org/web/packages/qlcMatrix")
9345 (synopsis "Sparse matrix functions for quantitative language comparison")
9346 (description
9347 "This package provides an extension of the functionality of the Matrix
9348 package for using sparse matrices. Some of the functions are very general,
9349 while other are highly specific for the special data format used for
9350 @dfn{quantitative language comparison} (QLC).")
9351 (license license:gpl3)))
9352
9353 (define-public r-ddrtree
9354 (package
9355 (name "r-ddrtree")
9356 (version "0.1.5")
9357 (source
9358 (origin
9359 (method url-fetch)
9360 (uri (cran-uri "DDRTree" version))
9361 (sha256
9362 (base32
9363 "16s5fjw7kwlxhrkzdny62sx32fvmg3rxjc3wrh6krd31jh1fqlfk"))))
9364 (properties `((upstream-name . "DDRTree")))
9365 (build-system r-build-system)
9366 (propagated-inputs
9367 `(("r-bh" ,r-bh)
9368 ("r-irlba" ,r-irlba)
9369 ("r-rcpp" ,r-rcpp)
9370 ("r-rcppeigen" ,r-rcppeigen)))
9371 (home-page "https://cran.r-project.org/web/packages/DDRTree")
9372 (synopsis "Learning principal graphs with DDRTree")
9373 (description
9374 "This package provides an implementation of the framework of
9375 @dfn{reversed graph embedding} (RGE) which projects data into a reduced
9376 dimensional space while constructs a principal tree which passes through the
9377 middle of the data simultaneously. DDRTree shows superiority to
9378 alternatives (Wishbone, DPT) for inferring the ordering as well as the
9379 intrinsic structure of single cell genomics data. In general, it could be
9380 used to reconstruct the temporal progression as well as the bifurcation
9381 structure of any data type.")
9382 (license license:asl2.0)))
9383
9384 (define-public r-corpcor
9385 (package
9386 (name "r-corpcor")
9387 (version "1.6.9")
9388 (source
9389 (origin
9390 (method url-fetch)
9391 (uri (cran-uri "corpcor" version))
9392 (sha256
9393 (base32
9394 "1hi3i9d3841snppq1ks5pd8cliq1b4rm4dpsczmfqvwksg8snkrf"))))
9395 (build-system r-build-system)
9396 (home-page "http://strimmerlab.org/software/corpcor/")
9397 (synopsis "Efficient estimation of covariance and (partial) correlation")
9398 (description
9399 "This package implements a James-Stein-type shrinkage estimator for the
9400 covariance matrix, with separate shrinkage for variances and correlations.
9401 Furthermore, functions are available for fast singular value decomposition,
9402 for computing the pseudoinverse, and for checking the rank and positive
9403 definiteness of a matrix.")
9404 (license license:gpl3+)))
9405
9406 (define-public r-rspectra
9407 (package
9408 (name "r-rspectra")
9409 (version "0.15-0")
9410 (source
9411 (origin
9412 (method url-fetch)
9413 (uri (cran-uri "RSpectra" version))
9414 (sha256
9415 (base32
9416 "1ab975scdqaxdna9sayjl6l14hz991y0pc8c8ah48w000616km8s"))))
9417 (properties `((upstream-name . "RSpectra")))
9418 (build-system r-build-system)
9419 (propagated-inputs
9420 `(("r-matrix" ,r-matrix)
9421 ("r-rcpp" ,r-rcpp)
9422 ("r-rcppeigen" ,r-rcppeigen)))
9423 (home-page "https://github.com/yixuan/RSpectra")
9424 (synopsis "Solvers for large-scale Eigenvalue and SVD problems")
9425 (description
9426 "This package provides an R interface to the Spectra library for
9427 large-scale eigenvalue and SVD problems. It is typically used to compute a
9428 few eigenvalues/vectors of an n by n matrix, e.g., the k largest eigenvalues,
9429 which is usually more efficient than @code{eigen()} if k << n.")
9430 ;; MPL 2 or later.
9431 (license license:mpl2.0)))
9432
9433 (define-public r-vbsr
9434 (package
9435 (name "r-vbsr")
9436 (version "0.0.5")
9437 (source
9438 (origin
9439 (method url-fetch)
9440 (uri (cran-uri "vbsr" version))
9441 (sha256
9442 (base32
9443 "1avskbxxyinjjdga4rnghcfvd4sypv4m39ysfaij5avvmi89bx3b"))))
9444 (build-system r-build-system)
9445 (home-page "https://cran.r-project.org/web/packages/vbsr")
9446 (synopsis "Variational Bayes spike regression regularized linear models")
9447 (description
9448 "This package provides an efficient algorithm for solving ultra-sparse
9449 regularized regression models using a variational Bayes algorithm with a spike
9450 prior. The algorithm is solved on a path, with coordinate updates, and is
9451 capable of generating very sparse models. Very general model
9452 diagnostics for controlling type-1 errors are also provided.")
9453 (license license:gpl2)))
9454
9455 (define-public r-flare
9456 (package
9457 (name "r-flare")
9458 (version "1.6.0")
9459 (source
9460 (origin
9461 (method url-fetch)
9462 (uri (cran-uri "flare" version))
9463 (sha256
9464 (base32
9465 "0ygif9a7a99qwv0b488wymmmncp6f5ww9yz13s4qs6p8yf37x1r1"))))
9466 (build-system r-build-system)
9467 (propagated-inputs
9468 `(("r-igraph" ,r-igraph)
9469 ("r-lattice" ,r-lattice)
9470 ("r-mass" ,r-mass)
9471 ("r-matrix" ,r-matrix)))
9472 (home-page "https://cran.r-project.org/web/packages/flare")
9473 (synopsis "Family of Lasso regression implementations")
9474 (description
9475 "This package provides implementations of a family of Lasso variants
9476 including Dantzig Selector, LAD Lasso, SQRT Lasso, Lq Lasso for estimating
9477 high dimensional sparse linear models.")
9478 (license license:gpl2)))
9479
9480 (define-public r-lassopv
9481 (package
9482 (name "r-lassopv")
9483 (version "0.2.0")
9484 (source
9485 (origin
9486 (method url-fetch)
9487 (uri (cran-uri "lassopv" version))
9488 (sha256
9489 (base32
9490 "0yawnjw063jypk3riy9xab9cmliv6c9dnabi18670khd3gzb2r9z"))))
9491 (build-system r-build-system)
9492 (propagated-inputs `(("r-lars" ,r-lars)))
9493 (home-page "https://github.com/lingfeiwang/lassopv")
9494 (synopsis "Non-parametric p-value estimation for predictors in Lasso")
9495 (description
9496 "This package enables you to estimate the p-values for predictors x
9497 against target variable y in Lasso regression, using the regularization
9498 strength when each predictor enters the active set of regularization path for
9499 the first time as the statistic.")
9500 (license license:gpl3)))
9501
9502 (define-public r-splitstackshape
9503 (package
9504 (name "r-splitstackshape")
9505 (version "1.4.8")
9506 (source
9507 (origin
9508 (method url-fetch)
9509 (uri (cran-uri "splitstackshape" version))
9510 (sha256
9511 (base32
9512 "0mpyf2kkfdl69pdc6brl1r6101vyc6pgr7z17s55ppg3y71k4q35"))))
9513 (build-system r-build-system)
9514 (propagated-inputs
9515 `(("r-data-table" ,r-data-table)))
9516 (home-page "https://github.com/mrdwab/splitstackshape")
9517 (synopsis "Stack and reshape datasets after splitting concatenated values")
9518 (description
9519 "Online data collection tools like Google Forms often export
9520 multiple-response questions with data concatenated in cells. The
9521 @code{concat.split} (cSplit) family of functions provided by this package
9522 splits such data into separate cells. This package also includes functions to
9523 stack groups of columns and to reshape wide data, even when the data are
9524 \"unbalanced\"---something which @code{reshape} (from base R) does not handle,
9525 and which @code{melt} and @code{dcast} from @code{reshape2} do not easily
9526 handle.")
9527 (license license:gpl3)))
9528
9529 (define-public r-tfmpvalue
9530 (package
9531 (name "r-tfmpvalue")
9532 (version "0.0.8")
9533 (source
9534 (origin
9535 (method url-fetch)
9536 (uri (cran-uri "TFMPvalue" version))
9537 (sha256
9538 (base32
9539 "0h9qkl15k8v17v3g9bdnfwvh2s04ywjgg5y0xn2077dmywlja1bd"))))
9540 (properties `((upstream-name . "TFMPvalue")))
9541 (build-system r-build-system)
9542 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9543 (home-page "https://github.com/ge11232002/TFMPvalue")
9544 (synopsis "P-value computation for position weight matrices")
9545 (description
9546 "In putative @dfn{Transcription Factor Binding Sites} (TFBSs)
9547 identification from sequence/alignments, we are interested in the significance
9548 of certain match scores. TFMPvalue provides the accurate calculation of a
9549 p-value with a score threshold for position weight matrices, or the score with
9550 a given p-value. It is an interface to code originally made available by
9551 Helene Touzet and Jean-Stephane Varre, 2007, Algorithms Mol Biol:2, 15.
9552 Touzet and Varre (2007).")
9553 (license license:gpl2)))
9554
9555 (define-public r-rnifti
9556 (package
9557 (name "r-rnifti")
9558 (version "0.10.0")
9559 (source
9560 (origin
9561 (method url-fetch)
9562 (uri (cran-uri "RNifti" version))
9563 (sha256
9564 (base32
9565 "07sfzps4yg5zdhbxh6i4rbjvbjvvf2d8i9jcf64ywbmi557sw1zv"))))
9566 (properties `((upstream-name . "RNifti")))
9567 (build-system r-build-system)
9568 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9569 (home-page "https://github.com/jonclayden/RNifti")
9570 (synopsis "Fast R and C++ access to NIfTI images")
9571 (description
9572 "This package provides very fast read and write access to images stored
9573 in the NIfTI-1 and ANALYZE-7.5 formats, with seamless synchronisation between
9574 compiled C and interpreted R code. It also provides a C/C++ API that can be
9575 used by other packages.")
9576 (license license:gpl2)))
9577
9578 (define-public r-shades
9579 (package
9580 (name "r-shades")
9581 (version "1.3.1")
9582 (source
9583 (origin
9584 (method url-fetch)
9585 (uri (cran-uri "shades" version))
9586 (sha256
9587 (base32
9588 "0v0xp9l1zyq4iysmkrbdwk4r1rksjj8p5c1726yrcgyg55mj59nv"))))
9589 (build-system r-build-system)
9590 (home-page "https://github.com/jonclayden/shades")
9591 (synopsis "Simple color manipulation")
9592 (description
9593 "This package provides functions for easily manipulating colors,
9594 creating color scales and calculating color distances.")
9595 (license license:bsd-3)))
9596
9597 (define-public r-ore
9598 (package
9599 (name "r-ore")
9600 (version "1.6.2")
9601 (source
9602 (origin
9603 (method url-fetch)
9604 (uri (cran-uri "ore" version))
9605 (sha256
9606 (base32
9607 "1l1ziljgm5gwjhvjq42wi5vcwbxlaj5dl9w8bhz0wh8vx4ajj07m"))))
9608 (build-system r-build-system)
9609 (home-page "https://github.com/jonclayden/ore")
9610 (synopsis "R interface to the Onigmo regular expression library")
9611 (description
9612 "This package provides an alternative to R's built-in functionality for
9613 handling regular expressions, based on the Onigmo library. It offers
9614 first-class compiled regex objects, partial matching and function-based
9615 substitutions, amongst other features.")
9616 (license license:bsd-3)))
9617
9618 (define-public r-reportr
9619 (package
9620 (name "r-reportr")
9621 (version "1.3.0")
9622 (source
9623 (origin
9624 (method url-fetch)
9625 (uri (cran-uri "reportr" version))
9626 (sha256
9627 (base32
9628 "0zynplxqvbmf23cm2rsz3wz2jx6mv55z94mn1k44ny3lx625cnpw"))))
9629 (build-system r-build-system)
9630 (propagated-inputs `(("r-ore" ,r-ore)))
9631 (home-page "https://github.com/jonclayden/reportr")
9632 (synopsis "General message and error reporting system")
9633 (description
9634 "This package provides a system for reporting messages, which offers
9635 certain useful features over the standard R system, such as the incorporation
9636 of output consolidation, message filtering, assertions, expression
9637 substitution, automatic generation of stack traces for debugging, and
9638 conditional reporting based on the current \"output level\".")
9639 (license license:gpl2)))
9640
9641 (define-public r-tractor-base
9642 (package
9643 (name "r-tractor-base")
9644 (version "3.3.2")
9645 (source
9646 (origin
9647 (method url-fetch)
9648 (uri (cran-uri "tractor.base" version))
9649 (sha256
9650 (base32
9651 "0y5gm0y4chl30f5qqq8qiiw4j8g32s4i9xrvyp3cwg902kf2p86i"))))
9652 (properties `((upstream-name . "tractor.base")))
9653 (build-system r-build-system)
9654 (propagated-inputs
9655 `(("r-ore" ,r-ore)
9656 ("r-reportr" ,r-reportr)
9657 ("r-rnifti" ,r-rnifti)
9658 ("r-shades" ,r-shades)))
9659 (home-page "http://www.tractor-mri.org.uk")
9660 (synopsis "Read, manipulate and visualize magnetic resonance images")
9661 (description
9662 "This package provides functions for working with magnetic resonance
9663 images. It supports reading and writing of popular file formats (DICOM,
9664 Analyze, NIfTI-1, NIfTI-2, MGH); interactive and non-interactive
9665 visualization; flexible image manipulation; metadata and sparse image
9666 handling.")
9667 (license license:gpl2)))
9668
9669 (define-public r-grimport
9670 (package
9671 (name "r-grimport")
9672 (version "0.9-2")
9673 (source
9674 (origin
9675 (method url-fetch)
9676 (uri (cran-uri "grImport" version))
9677 (sha256
9678 (base32
9679 "0n3y6dzy8s0ifvyrgwbly6cl14lmgd54dyi74s5i984apszpsp16"))))
9680 (properties `((upstream-name . "grImport")))
9681 (build-system r-build-system)
9682 (inputs
9683 `(("ghostscript" ,ghostscript)))
9684 (propagated-inputs
9685 `(("r-xml" ,r-xml)))
9686 (home-page "https://cran.r-project.org/web/packages/grImport")
9687 (synopsis "Convert, import, and draw PostScript pictures")
9688 (description
9689 "This package provides functions for converting, importing, and drawing
9690 PostScript pictures in R plots.")
9691 (license license:gpl2+)))
9692
9693 (define-public r-grimport2
9694 (package
9695 (name "r-grimport2")
9696 (version "0.1-5")
9697 (source
9698 (origin
9699 (method url-fetch)
9700 (uri (cran-uri "grImport2" version))
9701 (sha256
9702 (base32
9703 "0dyb3nrrvxnkk9q5b136bdivcz1jj3ajx1kscm3k0kkpqjif0pls"))))
9704 (properties `((upstream-name . "grImport2")))
9705 (build-system r-build-system)
9706 (propagated-inputs
9707 `(("r-base64enc" ,r-base64enc)
9708 ("r-jpeg" ,r-jpeg)
9709 ("r-png" ,r-png)
9710 ("r-xml" ,r-xml)))
9711 (home-page "https://cran.r-project.org/web/packages/grImport2/")
9712 (synopsis "Import SVG graphics")
9713 (description
9714 "This package provides functions for importing external vector images and
9715 drawing them as part of R plots. This package is different from the
9716 @code{grImport} package because, where that package imports PostScript format
9717 images, this package imports SVG format images. Furthermore, this package
9718 imports a specific subset of SVG, so external images must be preprocessed
9719 using a package like @code{rsvg} to produce SVG that this package can import.
9720 SVG features that are not supported by R graphics, such as gradient fills, can
9721 be imported and then exported via the @code{gridSVG} package.")
9722 (license license:gpl2+)))
9723
9724 (define-public r-kohonen
9725 (package
9726 (name "r-kohonen")
9727 (version "3.0.8")
9728 (source
9729 (origin
9730 (method url-fetch)
9731 (uri (cran-uri "kohonen" version))
9732 (sha256
9733 (base32
9734 "1zbfqa1qdlry8w6xhypkiknc5gn98v1ijhlsfka8zjg8ajhqgn1q"))))
9735 (build-system r-build-system)
9736 (propagated-inputs
9737 `(("r-mass" ,r-mass)
9738 ("r-rcpp" ,r-rcpp)))
9739 (home-page "https://cran.r-project.org/web/packages/kohonen")
9740 (synopsis "Supervised and unsupervised self-organising maps")
9741 (description
9742 "This package provides functions to train @dfn{self-organising
9743 maps} (SOMs). Also interrogation of the maps and prediction using trained
9744 maps are supported. The name of the package refers to Teuvo Kohonen, the
9745 inventor of the SOM.")
9746 (license license:gpl2+)))
9747
9748 (define-public r-nnls
9749 (package
9750 (name "r-nnls")
9751 (version "1.4")
9752 (source
9753 (origin
9754 (method url-fetch)
9755 (uri (cran-uri "nnls" version))
9756 (sha256
9757 (base32
9758 "07vcrrxvswrvfiha6f3ikn640yg0m2b4yd9lkmim1g0jmsmpfp8f"))))
9759 (build-system r-build-system)
9760 (native-inputs `(("gfortran" ,gfortran)))
9761 (home-page "https://cran.r-project.org/web/packages/nnls")
9762 (synopsis "Lawson-Hanson algorithm for non-negative least squares")
9763 (description
9764 "This package provides an R interface to the Lawson-Hanson implementation
9765 of an algorithm for @dfn{non-negative least squares} (NNLS). It also allows
9766 the combination of non-negative and non-positive constraints.")
9767 (license license:gpl2+)))
9768
9769 (define-public r-iso
9770 (package
9771 (name "r-iso")
9772 (version "0.0-18")
9773 (source
9774 (origin
9775 (method url-fetch)
9776 (uri (cran-uri "Iso" version))
9777 (sha256
9778 (base32
9779 "014mm5b1f7i6nwlz3kyg1biph0y542kcx5bd13p68cv5a928qzid"))))
9780 (properties `((upstream-name . "Iso")))
9781 (build-system r-build-system)
9782 (native-inputs `(("gfortran" ,gfortran)))
9783 (home-page "http://www.stat.auckland.ac.nz/~rolf/")
9784 (synopsis "Functions to perform isotonic regression")
9785 (description
9786 "This package provides support for linear order and unimodal
9787 order (univariate) isotonic regression and bivariate isotonic regression with
9788 linear order on both variables.")
9789 (license license:gpl2+)))
9790
9791 (define-public r-chemometricswithr
9792 (package
9793 (name "r-chemometricswithr")
9794 (version "0.1.13")
9795 (source
9796 (origin
9797 (method url-fetch)
9798 (uri (cran-uri "ChemometricsWithR" version))
9799 (sha256
9800 (base32
9801 "166va1g3m1wv21qkmw4wpz0bsrclh3jih8smxphdc13l9pqgclpq"))))
9802 (properties
9803 `((upstream-name . "ChemometricsWithR")))
9804 (build-system r-build-system)
9805 (propagated-inputs
9806 `(("r-devtools" ,r-devtools)
9807 ("r-kohonen" ,r-kohonen)
9808 ("r-mass" ,r-mass)
9809 ("r-pls" ,r-pls)))
9810 (home-page "https://github.com/rwehrens/CWR")
9811 (synopsis "Chemometrics with R")
9812 (description
9813 "This package provides functions and scripts used in the book
9814 \"Chemometrics with R - Multivariate Data Analysis in the Natural Sciences and
9815 Life Sciences\" by Ron Wehrens, Springer (2011).")
9816 (license license:gpl2+)))
9817
9818 (define-public r-als
9819 (package
9820 (name "r-als")
9821 (version "0.0.6")
9822 (source
9823 (origin
9824 (method url-fetch)
9825 (uri (cran-uri "ALS" version))
9826 (sha256
9827 (base32
9828 "1swrn39vy50fazkpf97r7c542gkj6mlvy8gmcxllg7mf2mqx546a"))))
9829 (properties `((upstream-name . "ALS")))
9830 (build-system r-build-system)
9831 (propagated-inputs
9832 `(("r-iso" ,r-iso)
9833 ("r-nnls" ,r-nnls)))
9834 (home-page "https://cran.r-project.org/web/packages/ALS")
9835 (synopsis "Multivariate curve resolution alternating least squares")
9836 (description
9837 "Alternating least squares is often used to resolve components
9838 contributing to data with a bilinear structure; the basic technique may be
9839 extended to alternating constrained least squares. This package provides an
9840 implementation of @dfn{multivariate curve resolution alternating least
9841 squares} (MCR-ALS).
9842
9843 Commonly applied constraints include unimodality, non-negativity, and
9844 normalization of components. Several data matrices may be decomposed
9845 simultaneously by assuming that one of the two matrices in the bilinear
9846 decomposition is shared between datasets.")
9847 (license license:gpl2+)))
9848
9849 (define-public r-strucchange
9850 (package
9851 (name "r-strucchange")
9852 (version "1.5-1")
9853 (source
9854 (origin
9855 (method url-fetch)
9856 (uri (cran-uri "strucchange" version))
9857 (sha256
9858 (base32
9859 "0cdgvl6kphm2i59bmnppn1y3kv65ml111bk7yzpcx7vv8wh2w3kl"))))
9860 (build-system r-build-system)
9861 (propagated-inputs
9862 `(("r-sandwich" ,r-sandwich)
9863 ("r-zoo" ,r-zoo)))
9864 (home-page "https://cran.r-project.org/web/packages/strucchange")
9865 (synopsis "Testing, monitoring, and dating structural changes")
9866 (description
9867 "This package provides tools for testing, monitoring and dating
9868 structural changes in (linear) regression models. It features tests/methods
9869 from the generalized fluctuation test framework as well as from the F
9870 test (Chow test) framework. This includes methods to fit, plot and test
9871 fluctuation processes (e.g., CUSUM, MOSUM, recursive/moving estimates) and F
9872 statistics, respectively. It is possible to monitor incoming data online
9873 using fluctuation processes. Finally, the breakpoints in regression models
9874 with structural changes can be estimated together with confidence intervals.
9875 Emphasis is always given to methods for visualizing the data.")
9876 ;; Either of these two GPL versions
9877 (license (list license:gpl2 license:gpl3))))
9878
9879 (define-public r-pixmap
9880 (package
9881 (name "r-pixmap")
9882 (version "0.4-11")
9883 (source
9884 (origin
9885 (method url-fetch)
9886 (uri (cran-uri "pixmap" version))
9887 (sha256
9888 (base32
9889 "04klxp6jndw1bp6z40v20fbmdmdpfca2g0czmmmgbkark9s1183g"))))
9890 (build-system r-build-system)
9891 (home-page "https://cran.r-project.org/web/packages/pixmap")
9892 (synopsis "Tools for bitmap images")
9893 (description
9894 "This package provides functions for importing, exporting, plotting and
9895 other manipulations of bitmapped images.")
9896 (license license:gpl2)))
9897
9898 (define-public r-rapidjsonr
9899 (package
9900 (name "r-rapidjsonr")
9901 (version "1.1")
9902 (source
9903 (origin
9904 (method url-fetch)
9905 (uri (cran-uri "rapidjsonr" version))
9906 (sha256
9907 (base32
9908 "0h4phjjhykbb45rg5b1xn48vqxdcvcngbm0416ds8in7j469wbwd"))))
9909 (build-system r-build-system)
9910 (home-page "https://cran.r-project.org/web/packages/rapidjsonr")
9911 (synopsis "JSON parser")
9912 (description
9913 "This package provides JSON parsing capability through the Rapidjson
9914 library.")
9915 (license license:expat)))
9916
9917 (define-public r-ontologyindex
9918 (package
9919 (name "r-ontologyindex")
9920 (version "2.5")
9921 (source
9922 (origin
9923 (method url-fetch)
9924 (uri (cran-uri "ontologyIndex" version))
9925 (sha256
9926 (base32
9927 "127hlf0z5fmbgnq4p9h8nvn6p72d2fpcn846zzb99s213421jnry"))))
9928 (properties `((upstream-name . "ontologyIndex")))
9929 (build-system r-build-system)
9930 (home-page "https://cran.r-project.org/web/packages/ontologyIndex")
9931 (synopsis "Functions for processing ontologies in R")
9932 (description
9933 "This package provides functions for reading ontologies into R as lists
9934 and manipulating sets of ontological terms.")
9935 (license license:gpl2+)))
9936
9937 (define-public r-bigrquery
9938 (package
9939 (name "r-bigrquery")
9940 (version "1.1.1")
9941 (source
9942 (origin
9943 (method url-fetch)
9944 (uri (cran-uri "bigrquery" version))
9945 (sha256
9946 (base32
9947 "1if39xkr231xmjq10fx2g7bgg4jgfd3wzx1p9g3pq4hbf2s6x0is"))))
9948 (build-system r-build-system)
9949 (propagated-inputs
9950 `(("r-assertthat" ,r-assertthat)
9951 ("r-bit64" ,r-bit64)
9952 ("r-curl" ,r-curl)
9953 ("r-dbi" ,r-dbi)
9954 ("r-glue" ,r-glue)
9955 ("r-httr" ,r-httr)
9956 ("r-jsonlite" ,r-jsonlite)
9957 ("r-prettyunits" ,r-prettyunits)
9958 ("r-progress" ,r-progress)
9959 ("r-rapidjsonr" ,r-rapidjsonr)
9960 ("r-rcpp" ,r-rcpp)
9961 ("r-tibble" ,r-tibble)))
9962 (home-page "https://github.com/rstats-db/bigrquery")
9963 (synopsis "R interface to Google's BigQuery API")
9964 (description
9965 "This package provides an R interface to Google's BigQuery database.")
9966 (license license:gpl3)))
9967
9968 (define-public r-gmp
9969 (package
9970 (name "r-gmp")
9971 (version "0.5-13.5")
9972 (source
9973 (origin
9974 (method url-fetch)
9975 (uri (cran-uri "gmp" version))
9976 (sha256
9977 (base32
9978 "042mzsl6z6s61fy5m21yf9q83l08vnyqljn4iax7kqyiycpsp0gn"))))
9979 (build-system r-build-system)
9980 (arguments
9981 '(#:phases
9982 (modify-phases %standard-phases
9983 (add-after 'unpack 'set-CC
9984 (lambda _ (setenv "CC" "gcc") #t)))))
9985 (inputs `(("gmp" ,gmp)))
9986 (home-page "https://cran.r-project.org/web/packages/gmp")
9987 (synopsis "Multiple precision arithmetic")
9988 (description
9989 "This package supports multiple precision arithmetic (big integers and
9990 rationals, prime number tests, matrix computation), \"arithmetic without
9991 limitations\" using the GNU Multiple Precision library.")
9992 ;; Any version of the GPL.
9993 (license license:gpl3+)))
9994
9995 (define-public r-rmpfr
9996 (package
9997 (name "r-rmpfr")
9998 (version "0.7-2")
9999 (source
10000 (origin
10001 (method url-fetch)
10002 (uri (cran-uri "Rmpfr" version))
10003 (sha256
10004 (base32
10005 "1zq3as34r27v2yc729731997wdhxb6cs5ilmak4nmsljabnac7gc"))))
10006 (properties `((upstream-name . "Rmpfr")))
10007 (build-system r-build-system)
10008 (inputs
10009 `(("mpfr" ,mpfr)))
10010 (propagated-inputs
10011 `(("r-gmp" ,r-gmp)))
10012 (home-page "http://rmpfr.r-forge.r-project.org/")
10013 (synopsis "R bindings to the MPFR library")
10014 (description
10015 "This package supports arithmetic (via S4 classes and methods) for
10016 arbitrary precision floating point numbers, including transcendental
10017 functions. To this end, the package interfaces with the @dfn{Multiple
10018 Precision Floating-Point Reliable} (MPFR) library.")
10019 (license license:gpl2+)))
10020
10021 (define-public r-assertive-base
10022 (package
10023 (name "r-assertive-base")
10024 (version "0.0-7")
10025 (source
10026 (origin
10027 (method url-fetch)
10028 (uri (cran-uri "assertive.base" version))
10029 (sha256
10030 (base32
10031 "1xs3ysvj0z57c58jw57pckq2rynia6ks4rmjmc02alczhk54wbgh"))))
10032 (properties
10033 `((upstream-name . "assertive.base")))
10034 (build-system r-build-system)
10035 (home-page "https://bitbucket.org/richierocks/assertive.base")
10036 (synopsis "Core of the assertive package")
10037 (description
10038 "This package provides a minimal set of predicates and assertions used by
10039 the assertive package. This is mainly for use by other package developers who
10040 want to include run-time testing features in their own packages.")
10041 (license license:gpl3+)))
10042
10043 (define-public r-assertive-properties
10044 (package
10045 (name "r-assertive-properties")
10046 (version "0.0-4")
10047 (source
10048 (origin
10049 (method url-fetch)
10050 (uri (cran-uri "assertive.properties" version))
10051 (sha256
10052 (base32
10053 "0sqs54acs9qk9kvm32rxzfbzxz1l8mjahpfnw7r30z2brgz661jw"))))
10054 (properties
10055 `((upstream-name . "assertive.properties")))
10056 (build-system r-build-system)
10057 (propagated-inputs
10058 `(("r-assertive-base" ,r-assertive-base)))
10059 (home-page "https://bitbucket.org/richierocks/assertive.properties")
10060 (synopsis "Assertions to check properties of variables")
10061 (description
10062 "This package provides a set of predicates and assertions for checking
10063 the properties of variables, such as length, names and attributes. This is
10064 mainly for use by other package developers who want to include run-time
10065 testing features in their own packages.")
10066 (license license:gpl3+)))
10067
10068 (define-public r-assertive-numbers
10069 (package
10070 (name "r-assertive-numbers")
10071 (version "0.0-2")
10072 (source
10073 (origin
10074 (method url-fetch)
10075 (uri (cran-uri "assertive.numbers" version))
10076 (sha256
10077 (base32
10078 "0jc3ss64j4m7bjydhagwwmka5n7c72vpw4kfcch0m5jvkq5qrqds"))))
10079 (properties
10080 `((upstream-name . "assertive.numbers")))
10081 (build-system r-build-system)
10082 (propagated-inputs
10083 `(("r-assertive-base" ,r-assertive-base)))
10084 (home-page "https://bitbucket.org/richierocks/assertive.numbers")
10085 (synopsis "Assertions to check properties of numbers")
10086 (description
10087 "This package provides a set of predicates and assertions for checking
10088 the properties of numbers. This is mainly for use by other package developers
10089 who want to include run-time testing features in their own packages.")
10090 (license license:gpl3+)))
10091
10092 (define-public r-assertive-sets
10093 (package
10094 (name "r-assertive-sets")
10095 (version "0.0-3")
10096 (source
10097 (origin
10098 (method url-fetch)
10099 (uri (cran-uri "assertive.sets" version))
10100 (sha256
10101 (base32
10102 "1cqvh2syvh5b6d85h601zjmsdbbf3h8q98ids4dfl4frdshpasc7"))))
10103 (properties
10104 `((upstream-name . "assertive.sets")))
10105 (build-system r-build-system)
10106 (propagated-inputs
10107 `(("r-assertive-base" ,r-assertive-base)))
10108 (home-page "https://bitbucket.org/richierocks/assertive.sets")
10109 (synopsis "Assertions to check properties of sets")
10110 (description
10111 "This package provides a set of predicates and assertions for checking
10112 the properties of sets. This is mainly for use by other package developers
10113 who want to include run-time testing features in their own packages.")
10114 (license license:gpl3+)))
10115
10116 (define-public r-assertive-matrices
10117 (package
10118 (name "r-assertive-matrices")
10119 (version "0.0-2")
10120 (source
10121 (origin
10122 (method url-fetch)
10123 (uri (cran-uri "assertive.matrices" version))
10124 (sha256
10125 (base32
10126 "16sykzcndv6y2d43x6v9n7m95kv76364h39kh10w4z0xw6ksfqil"))))
10127 (properties
10128 `((upstream-name . "assertive.matrices")))
10129 (build-system r-build-system)
10130 (propagated-inputs
10131 `(("r-assertive-base" ,r-assertive-base)))
10132 (home-page "https://bitbucket.org/richierocks/assertive.matrices")
10133 (synopsis "Assertions to check properties of matrices")
10134 (description
10135 "This package provides a set of predicates and assertions for checking
10136 the properties of matrices. This is mainly for use by other package
10137 developers who want to include run-time testing features in their own
10138 packages.")
10139 (license license:gpl3+)))
10140
10141 (define-public r-assertive-models
10142 (package
10143 (name "r-assertive-models")
10144 (version "0.0-2")
10145 (source
10146 (origin
10147 (method url-fetch)
10148 (uri (cran-uri "assertive.models" version))
10149 (sha256
10150 (base32
10151 "0bn4j4v5qvb2d672cgri61p8d9v258pmz35y3lvm6b9mdxwdi9mr"))))
10152 (properties
10153 `((upstream-name . "assertive.models")))
10154 (build-system r-build-system)
10155 (propagated-inputs
10156 `(("r-assertive-base" ,r-assertive-base)))
10157 (home-page "https://bitbucket.org/richierocks/assertive.models")
10158 (synopsis "Assertions to check properties of models")
10159 (description
10160 "This package provides a set of predicates and assertions for checking
10161 the properties of models. This is mainly for use by other package developers
10162 who want to include run-time testing features in their own packages.")
10163 (license license:gpl3+)))
10164
10165 (define-public r-assertive-reflection
10166 (package
10167 (name "r-assertive-reflection")
10168 (version "0.0-4")
10169 (source
10170 (origin
10171 (method url-fetch)
10172 (uri (cran-uri "assertive.reflection" version))
10173 (sha256
10174 (base32
10175 "19zmsbn00crfqm0kwd9ys5gv87xs3gi6wmlikrz9xiwzm7hp4dhj"))))
10176 (properties
10177 `((upstream-name . "assertive.reflection")))
10178 (build-system r-build-system)
10179 (propagated-inputs
10180 `(("r-assertive-base" ,r-assertive-base)))
10181 (home-page "https://bitbucket.org/richierocks/assertive.reflection")
10182 (synopsis "Assertions for checking the state of R")
10183 (description
10184 "This package provides a set of predicates and assertions for checking
10185 the state and capabilities of R, the operating system it is running on, and
10186 the IDE being used. This is mainly for use by other package developers who
10187 want to include run-time testing features in their own packages.")
10188 (license license:gpl3+)))
10189
10190 (define-public r-assertive-types
10191 (package
10192 (name "r-assertive-types")
10193 (version "0.0-3")
10194 (source
10195 (origin
10196 (method url-fetch)
10197 (uri (cran-uri "assertive.types" version))
10198 (sha256
10199 (base32
10200 "0zxq1jfrzgw95ll7alvm0xnk7aihjdksngq4ya2whyvfjbmv4vdb"))))
10201 (properties
10202 `((upstream-name . "assertive.types")))
10203 (build-system r-build-system)
10204 (propagated-inputs
10205 `(("r-assertive-base" ,r-assertive-base)
10206 ("r-assertive-properties" ,r-assertive-properties)
10207 ("r-codetools" ,r-codetools)))
10208 (home-page "https://bitbucket.org/richierocks/assertive.types")
10209 (synopsis "Assertions to check types of variables")
10210 (description
10211 "This package provides a set of predicates and assertions for checking
10212 the types of variables. This is mainly for use by other package developers
10213 who want to include run-time testing features in their own packages.")
10214 (license license:gpl3+)))
10215
10216 (define-public r-assertive-files
10217 (package
10218 (name "r-assertive-files")
10219 (version "0.0-2")
10220 (source
10221 (origin
10222 (method url-fetch)
10223 (uri (cran-uri "assertive.files" version))
10224 (sha256
10225 (base32
10226 "02pfz8j5vwcj5kl6zca46894li7lxwnlrr29j922f14ay6kdssmy"))))
10227 (properties
10228 `((upstream-name . "assertive.files")))
10229 (build-system r-build-system)
10230 (propagated-inputs
10231 `(("r-assertive-base" ,r-assertive-base)
10232 ("r-assertive-numbers" ,r-assertive-numbers)))
10233 (home-page "https://bitbucket.org/richierocks/assertive.files")
10234 (synopsis "Assertions to check properties of files")
10235 (description
10236 "This package provides a set of predicates and assertions for checking
10237 the properties of files and connections. This is mainly for use by other
10238 package developers who want to include run-time testing features in their own
10239 packages.")
10240 (license license:gpl3+)))
10241
10242 (define-public r-assertive-code
10243 (package
10244 (name "r-assertive-code")
10245 (version "0.0-3")
10246 (source
10247 (origin
10248 (method url-fetch)
10249 (uri (cran-uri "assertive.code" version))
10250 (sha256
10251 (base32
10252 "1qhbp668zfvhqs8avkhg9amp4zyazz6dsy4fc6kpdmw3sv8yi07g"))))
10253 (properties
10254 `((upstream-name . "assertive.code")))
10255 (build-system r-build-system)
10256 (propagated-inputs
10257 `(("r-assertive-base" ,r-assertive-base)
10258 ("r-assertive-properties" ,r-assertive-properties)
10259 ("r-assertive-types" ,r-assertive-types)))
10260 (home-page "https://bitbucket.org/richierocks/assertive.code")
10261 (synopsis "Assertions to check properties of code")
10262 (description
10263 "This package provides a set of predicates and assertions for checking
10264 the properties of code. This is mainly for use by other package developers
10265 who want to include run-time testing features in their own packages.")
10266 (license license:gpl3+)))
10267
10268 (define-public r-assertive-datetimes
10269 (package
10270 (name "r-assertive-datetimes")
10271 (version "0.0-2")
10272 (source
10273 (origin
10274 (method url-fetch)
10275 (uri (cran-uri "assertive.datetimes" version))
10276 (sha256
10277 (base32
10278 "00a98fx8p3pr3ckayh8wmxmm4rz01s67wah9697m92yci6pv3m78"))))
10279 (properties
10280 `((upstream-name . "assertive.datetimes")))
10281 (build-system r-build-system)
10282 (propagated-inputs
10283 `(("r-assertive-base" ,r-assertive-base)
10284 ("r-assertive-types" ,r-assertive-types)))
10285 (home-page "https://bitbucket.org/richierocks/assertive.datetimes")
10286 (synopsis "Assertions to check properties of dates and times")
10287 (description
10288 "This package provides a set of predicates and assertions for checking
10289 the properties of dates and times. This is mainly for use by other package
10290 developers who want to include run-time testing features in their own
10291 packages.")
10292 (license license:gpl3+)))
10293
10294 (define-public r-assertive-strings
10295 (package
10296 (name "r-assertive-strings")
10297 (version "0.0-3")
10298 (source
10299 (origin
10300 (method url-fetch)
10301 (uri (cran-uri "assertive.strings" version))
10302 (sha256
10303 (base32
10304 "0n6jrk88670g4ym0r8ii40a08a90z1xadj8wcryk8h0nl04dchfm"))))
10305 (properties
10306 `((upstream-name . "assertive.strings")))
10307 (build-system r-build-system)
10308 (propagated-inputs
10309 `(("r-assertive-base" ,r-assertive-base)
10310 ("r-assertive-types" ,r-assertive-types)
10311 ("r-stringi" ,r-stringi)))
10312 (home-page "https://bitbucket.org/richierocks/assertive.strings")
10313 (synopsis "Assertions to check properties of strings")
10314 (description
10315 "This package provides a set of predicates and assertions for checking
10316 the properties of strings. This is mainly for use by other package developers
10317 who want to include run-time testing features in their own packages.")
10318 (license license:gpl3+)))
10319
10320 (define-public r-assertive-data-us
10321 (package
10322 (name "r-assertive-data-us")
10323 (version "0.0-2")
10324 (source
10325 (origin
10326 (method url-fetch)
10327 (uri (cran-uri "assertive.data.us" version))
10328 (sha256
10329 (base32
10330 "1bgspn0sccmp9z7s7djvdvprgxlyc5vrxznp4zfjb79kwvgn83hq"))))
10331 (properties
10332 `((upstream-name . "assertive.data.us")))
10333 (build-system r-build-system)
10334 (propagated-inputs
10335 `(("r-assertive-base" ,r-assertive-base)
10336 ("r-assertive-strings" ,r-assertive-strings)))
10337 (home-page "https://bitbucket.org/richierocks/assertive.data.us")
10338 (synopsis "Assertions to check properties of strings")
10339 (description
10340 "This package provides a set of predicates and assertions for checking
10341 the properties of US-specific complex data types. This is mainly for use by
10342 other package developers who want to include run-time testing features in
10343 their own packages.")
10344 (license license:gpl3+)))
10345
10346 (define-public r-assertive-data-uk
10347 (package
10348 (name "r-assertive-data-uk")
10349 (version "0.0-2")
10350 (source
10351 (origin
10352 (method url-fetch)
10353 (uri (cran-uri "assertive.data.uk" version))
10354 (sha256
10355 (base32
10356 "1fzjvhwp7mwkqqix29khvs6zcrc82n6j4czvzzb473vyjyvdlj5b"))))
10357 (properties
10358 `((upstream-name . "assertive.data.uk")))
10359 (build-system r-build-system)
10360 (propagated-inputs
10361 `(("r-assertive-base" ,r-assertive-base)
10362 ("r-assertive-strings" ,r-assertive-strings)))
10363 (home-page "https://bitbucket.org/richierocks/assertive.data.uk")
10364 (synopsis "Assertions to check properties of strings")
10365 (description
10366 "This package provides a set of predicates and assertions for checking
10367 the properties of UK-specific complex data types. This is mainly for use by
10368 other package developers who want to include run-time testing features in
10369 their own packages.")
10370 (license license:gpl3+)))
10371
10372 (define-public r-assertive-data
10373 (package
10374 (name "r-assertive-data")
10375 (version "0.0-3")
10376 (source
10377 (origin
10378 (method url-fetch)
10379 (uri (cran-uri "assertive.data" version))
10380 (sha256
10381 (base32
10382 "00cvg2g36mdl8plrzx40m63qd55742mddqrchwy9n3c7mm4gn02s"))))
10383 (properties
10384 `((upstream-name . "assertive.data")))
10385 (build-system r-build-system)
10386 (propagated-inputs
10387 `(("r-assertive-base" ,r-assertive-base)
10388 ("r-assertive-strings" ,r-assertive-strings)))
10389 (home-page "https://bitbucket.org/richierocks/assertive.data")
10390 (synopsis "Assertions to check properties of data")
10391 (description
10392 "This package provides a set of predicates and assertions for checking
10393 the properties of (country independent) complex data types. This is mainly
10394 for use by other package developers who want to include run-time testing
10395 features in their own packages.")
10396 (license license:gpl3+)))
10397
10398 (define-public r-assertive
10399 (package
10400 (name "r-assertive")
10401 (version "0.3-5")
10402 (source
10403 (origin
10404 (method url-fetch)
10405 (uri (cran-uri "assertive" version))
10406 (sha256
10407 (base32
10408 "0blbbhlxcb5ffdxqxi62xs33ljiawh6s22a0pyvbbh79jf46rzr3"))))
10409 (build-system r-build-system)
10410 (propagated-inputs
10411 `(("r-assertive-base" ,r-assertive-base)
10412 ("r-assertive-code" ,r-assertive-code)
10413 ("r-assertive-data" ,r-assertive-data)
10414 ("r-assertive-data-uk" ,r-assertive-data-uk)
10415 ("r-assertive-data-us" ,r-assertive-data-us)
10416 ("r-assertive-datetimes" ,r-assertive-datetimes)
10417 ("r-assertive-files" ,r-assertive-files)
10418 ("r-assertive-matrices" ,r-assertive-matrices)
10419 ("r-assertive-models" ,r-assertive-models)
10420 ("r-assertive-numbers" ,r-assertive-numbers)
10421 ("r-assertive-properties" ,r-assertive-properties)
10422 ("r-assertive-reflection" ,r-assertive-reflection)
10423 ("r-assertive-sets" ,r-assertive-sets)
10424 ("r-assertive-strings" ,r-assertive-strings)
10425 ("r-assertive-types" ,r-assertive-types)
10426 ("r-knitr" ,r-knitr)))
10427 (home-page "https://bitbucket.org/richierocks/assertive")
10428 (synopsis "Readable check functions to ensure code integrity")
10429 (description
10430 "This package provides lots of predicates (@code{is_*} functions) to
10431 check the state of your variables, and assertions (@code{assert_*} functions)
10432 to throw errors if they aren't in the right form.")
10433 (license license:gpl3+)))
10434
10435 (define-public r-dotcall64
10436 (package
10437 (name "r-dotcall64")
10438 (version "1.0-0")
10439 (source
10440 (origin
10441 (method url-fetch)
10442 (uri (cran-uri "dotCall64" version))
10443 (sha256
10444 (base32
10445 "1b8p7m3w0m7bp977c6jz74xkd611cxg11j49yza59k5fp338scb9"))))
10446 (properties `((upstream-name . "dotCall64")))
10447 (build-system r-build-system)
10448 (native-inputs `(("gfortran" ,gfortran)))
10449 (home-page "https://git.math.uzh.ch/reinhard.furrer/dotCall64")
10450 (synopsis "Enhanced foreign function interface supporting long vectors")
10451 (description
10452 "This package provides @code{.C64()}, an enhanced version of @code{.C()}
10453 and @code{.Fortran()} from the R foreign function interface. @code{.C64()}
10454 supports long vectors, arguments of type 64-bit integer, and provides a
10455 mechanism to avoid unnecessary copies of read-only and write-only arguments.
10456 This makes it a convenient and fast interface to C/C++ and Fortran code.")
10457 (license license:gpl2+)))
10458
10459 (define-public r-spam
10460 (package
10461 (name "r-spam")
10462 (version "2.2-2")
10463 (source
10464 (origin
10465 (method url-fetch)
10466 (uri (cran-uri "spam" version))
10467 (sha256
10468 (base32
10469 "024dgfnjfxvsiymbzrhadinamj6qy509f4sbd1zxql8ymkyxn7vi"))))
10470 (build-system r-build-system)
10471 (propagated-inputs
10472 `(("r-dotcall64" ,r-dotcall64)))
10473 (native-inputs `(("gfortran" ,gfortran)))
10474 (home-page "https://www.math.uzh.ch/pages/spam/")
10475 (synopsis "Sparse matrix algebra")
10476 (description
10477 "This package provides a set of functions for sparse matrix algebra.
10478 Differences with other sparse matrix packages are:
10479
10480 @enumerate
10481 @item it only supports (essentially) one sparse matrix format;
10482 @item it is based on transparent and simple structure(s);
10483 @item it is tailored for MCMC calculations within G(M)RF;
10484 @item and it is fast and scalable (with the extension package @code{spam64}).
10485 @end enumerate\n")
10486 ;; Either of these licenses
10487 (license (list license:bsd-3 license:lgpl2.0))))
10488
10489 (define-public r-fields
10490 (package
10491 (name "r-fields")
10492 (version "9.8-3")
10493 (source
10494 (origin
10495 (method url-fetch)
10496 (uri (cran-uri "fields" version))
10497 (sha256
10498 (base32
10499 "1q9x68dczjym56v7x90x4x5br59vj3dww6w8v42zd3yl17h7c1h1"))))
10500 (build-system r-build-system)
10501 (propagated-inputs
10502 `(("r-maps" ,r-maps)
10503 ("r-spam" ,r-spam)))
10504 (native-inputs
10505 `(("gfortran" ,gfortran)))
10506 (home-page "http://www.image.ucar.edu/fields")
10507 (synopsis "Tools for spatial data")
10508 (description
10509 "This is a package for curve, surface and function fitting with an
10510 emphasis on splines, spatial data and spatial statistics. The major methods
10511 include cubic, and thin plate splines, Kriging, and compactly supported
10512 covariance functions for large data sets.")
10513 (license license:gpl2+)))
10514
10515 (define-public r-spatialextremes
10516 (package
10517 (name "r-spatialextremes")
10518 (version "2.0-7")
10519 (source
10520 (origin
10521 (method url-fetch)
10522 (uri (cran-uri "SpatialExtremes" version))
10523 (sha256
10524 (base32
10525 "1y0h1pcfqp9ynxsr3yrfbihlwm25ypyb88jmm5k2g7xvm8h9g050"))))
10526 (properties
10527 `((upstream-name . "SpatialExtremes")))
10528 (build-system r-build-system)
10529 (propagated-inputs
10530 `(("r-fields" ,r-fields)
10531 ("r-maps" ,r-maps)))
10532 (home-page "http://spatialextremes.r-forge.r-project.org/")
10533 (synopsis "Modelling spatial extremes")
10534 (description
10535 "This package provides tools for the statistical modelling of spatial
10536 extremes using max-stable processes, copula or Bayesian hierarchical models.
10537 More precisely, this package allows (conditional) simulations from various
10538 parametric max-stable models, analysis of the extremal spatial dependence, the
10539 fitting of such processes using composite likelihoods or least square (simple
10540 max-stable processes only), model checking and selection and prediction.")
10541 (license license:gpl2+)))
10542
10543 (define-public r-drc
10544 (package
10545 (name "r-drc")
10546 (version "3.0-1")
10547 (source
10548 (origin
10549 (method url-fetch)
10550 (uri (cran-uri "drc" version))
10551 (sha256
10552 (base32
10553 "0c8xn8ripzq270hy8d16fcnx02l02alddznd7fqwk3jyi6113h1y"))))
10554 (build-system r-build-system)
10555 (propagated-inputs
10556 `(("r-car" ,r-car)
10557 ("r-gtools" ,r-gtools)
10558 ("r-mass" ,r-mass)
10559 ("r-multcomp" ,r-multcomp)
10560 ("r-plotrix" ,r-plotrix)
10561 ("r-scales" ,r-scales)))
10562 (home-page "https://cran.r-project.org/web/packages/drc")
10563 (synopsis "Analysis of dose-response curves")
10564 (description
10565 "This package provides a suite of flexible and versatile model fitting
10566 and after-fitting functions for the analysis of dose-response data.")
10567 (license license:gpl2+)))
10568
10569 (define-public r-rmeta
10570 (package
10571 (name "r-rmeta")
10572 (version "3.0")
10573 (source
10574 (origin
10575 (method url-fetch)
10576 (uri (cran-uri "rmeta" version))
10577 (sha256
10578 (base32
10579 "0vkbnxp579v8zmcv1isdbzj5swpr6fq17zwparxcvzswjc2x9ydr"))))
10580 (build-system r-build-system)
10581 (home-page "https://cran.r-project.org/web/packages/rmeta")
10582 (synopsis "Tools for meta-analysis")
10583 (description
10584 "This package provides functions for simple fixed and random effects
10585 meta-analysis for two-sample comparisons and cumulative meta-analyses. It
10586 draws standard summary plots, funnel plots, and computes summaries and tests
10587 for association and heterogeneity.")
10588 (license license:gpl2)))
10589
10590 (define-public r-bootstrap
10591 (package
10592 (name "r-bootstrap")
10593 (version "2017.2")
10594 (source
10595 (origin
10596 (method url-fetch)
10597 (uri (cran-uri "bootstrap" version))
10598 (sha256
10599 (base32
10600 "08lmsy7k8wsgv89yc904c6fidcymr1ma2ry4fl0p69p21v4iiwa4"))))
10601 (build-system r-build-system)
10602 (native-inputs `(("gfortran" ,gfortran)))
10603 (home-page "https://cran.r-project.org/web/packages/bootstrap")
10604 (synopsis "Functions for the book \"An Introduction to the Bootstrap\"")
10605 (description
10606 "This package provides software and data for the book \"An Introduction
10607 to the Bootstrap\" by B. Efron and R. Tibshirani, 1993, Chapman and Hall.
10608 This package is primarily provided for projects already based on it, and for
10609 support of the book. New projects should preferentially use the recommended
10610 package \"boot\".")
10611 (license license:bsd-3)))
10612
10613 (define-public r-survivalroc
10614 (package
10615 (name "r-survivalroc")
10616 (version "1.0.3")
10617 (source
10618 (origin
10619 (method url-fetch)
10620 (uri (cran-uri "survivalROC" version))
10621 (sha256
10622 (base32
10623 "0wnd65ff5w679hxa1zrpfrx9qg47q21pjxppsga6m3h4iq1yfj8l"))))
10624 (properties `((upstream-name . "survivalROC")))
10625 (build-system r-build-system)
10626 (home-page "https://cran.r-project.org/web/packages/survivalROC")
10627 (synopsis "Time-dependent ROC curve estimation from censored survival data")
10628 (description
10629 "Compute time-dependent ROC curve from censored survival data using
10630 Kaplan-Meier (KM) or Nearest Neighbor Estimation (NNE) method of Heagerty,
10631 Lumley & Pepe (Biometrics, Vol 56 No 2, 2000, PP 337-344)")
10632 (license license:gpl2+)))
10633
10634 (define-public r-longitudinal
10635 (package
10636 (name "r-longitudinal")
10637 (version "1.1.12")
10638 (source
10639 (origin
10640 (method url-fetch)
10641 (uri (cran-uri "longitudinal" version))
10642 (sha256
10643 (base32
10644 "1d83ws28nxi3kw5lgd5n5y7865djq7ky72fw3ddi1fkkhg1r9y6l"))))
10645 (build-system r-build-system)
10646 (propagated-inputs `(("r-corpcor" ,r-corpcor)))
10647 (home-page "http://strimmerlab.org/software/longitudinal/")
10648 (synopsis "Analysis of multiple time course data")
10649 (description
10650 "This package contains general data structures and functions for
10651 longitudinal data with multiple variables, repeated measurements, and
10652 irregularly spaced time points. It also implements a shrinkage estimator of
10653 dynamical correlation and dynamical covariance.")
10654 (license license:gpl3+)))
10655
10656 (define-public r-genenet
10657 (package
10658 (name "r-genenet")
10659 (version "1.2.13")
10660 (source
10661 (origin
10662 (method url-fetch)
10663 (uri (cran-uri "GeneNet" version))
10664 (sha256
10665 (base32
10666 "0w52apk0nnr8nsskf26ff7ana8xiksr8wqmkjxzwhzgg7fncm61p"))))
10667 (properties `((upstream-name . "GeneNet")))
10668 (build-system r-build-system)
10669 (propagated-inputs
10670 `(("r-corpcor" ,r-corpcor)
10671 ("r-fdrtool" ,r-fdrtool)
10672 ("r-longitudinal" ,r-longitudinal)))
10673 (home-page "http://strimmerlab.org/software/genenet/")
10674 (synopsis "Modeling and inferring gene networks")
10675 (description
10676 "This package analyzes gene expression (time series) data with focus on
10677 the inference of gene networks. In particular, GeneNet implements the methods
10678 of Schaefer and Strimmer (2005a,b,c) and Opgen-Rhein and Strimmer (2006, 2007)
10679 for learning large-scale gene association networks (including assignment of
10680 putative directions).")
10681 (license license:gpl3+)))
10682
10683 (define-public r-rbamtools
10684 (package
10685 (name "r-rbamtools")
10686 (version "2.16.11.2")
10687 (source
10688 (origin
10689 (method url-fetch)
10690 (uri (cran-uri "rbamtools" version))
10691 (sha256
10692 (base32
10693 "0gzkb1xyrkriv45wq8gv7qfwjslnvwkfkk5jjc4wg5kmm0ydpdzj"))))
10694 (build-system r-build-system)
10695 (inputs `(("zlib" ,zlib)))
10696 (propagated-inputs
10697 `(("r-refgenome" ,r-refgenome)))
10698 (home-page "https://cran.r-project.org/web/packages/rbamtools")
10699 (synopsis "Read and write BAM (binary alignment) files")
10700 (description
10701 "This package provides an R interface to functions of the SAMtools
10702 library.")
10703 (license license:artistic2.0)))
10704
10705 (define-public r-protviz
10706 (package
10707 (name "r-protviz")
10708 (version "0.4.0")
10709 (source
10710 (origin
10711 (method url-fetch)
10712 (uri (cran-uri "protViz" version))
10713 (sha256
10714 (base32
10715 "150i2q4nakz28f39kmhrchz4qsr8ax6y02512md94k8hq4hamxg1"))))
10716 (properties `((upstream-name . "protViz")))
10717 (build-system r-build-system)
10718 (inputs
10719 `(("perl" ,perl)
10720 ("python-2" ,python-2)))
10721 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
10722 (home-page "https://github.com/protViz/protViz/")
10723 (synopsis "Visualizing and analyzing mass spectrometry data in proteomics")
10724 (description
10725 "This package helps with quality checks, visualizations and analysis of
10726 mass spectrometry data, coming from proteomics experiments. The package is
10727 developed, tested and used at the Functional Genomics Center Zurich, where it
10728 is used mainly for prototyping, teaching, and having fun with proteomics data.
10729 But it can also be used to do data analysis for small scale data sets.")
10730 (license license:gpl3)))
10731
10732 (define-public r-cmprsk
10733 (package
10734 (name "r-cmprsk")
10735 (version "2.2-8")
10736 (source
10737 (origin
10738 (method url-fetch)
10739 (uri (cran-uri "cmprsk" version))
10740 (sha256
10741 (base32
10742 "1nacbzx950ygaqgnj0949skhwpzar5i3xlscd44jsimk2gsppx6z"))))
10743 (build-system r-build-system)
10744 (propagated-inputs
10745 `(("r-survival" ,r-survival)))
10746 (native-inputs
10747 `(("gfortran" ,gfortran)))
10748 (home-page "https://cran.r-project.org/web/packages/cmprsk")
10749 (synopsis "Subdistribution analysis of competing risks")
10750 (description
10751 "This package provides tool for estimation, testing and regression
10752 modeling of subdistribution functions in competing risks, as described in
10753 Gray (1988), A class of K-sample tests for comparing the cumulative incidence
10754 of a competing risk, Ann. Stat. 16:1141-1154, and Fine JP and Gray RJ (1999),
10755 A proportional hazards model for the subdistribution of a competing risk,
10756 JASA, 94:496-509.")
10757 (license license:gpl2+)))
10758
10759 (define-public r-etm
10760 (package
10761 (name "r-etm")
10762 (version "1.0.5")
10763 (source
10764 (origin
10765 (method url-fetch)
10766 (uri (cran-uri "etm" version))
10767 (sha256
10768 (base32
10769 "1yivbq8y0ijcl1m4nir4q9hp4pi6iphwxgjprygsdf7vp98wq677"))))
10770 (build-system r-build-system)
10771 (propagated-inputs
10772 `(("r-data-table" ,r-data-table)
10773 ("r-lattice" ,r-lattice)
10774 ("r-rcpp" ,r-rcpp)
10775 ("r-rcpparmadillo" ,r-rcpparmadillo)
10776 ("r-survival" ,r-survival)))
10777 (home-page "https://cran.r-project.org/web/packages/etm")
10778 (synopsis "Empirical transition matrix")
10779 (description
10780 "The @dfn{empirical transition matrix} (etm) package permits to estimate
10781 the matrix of transition probabilities for any time-inhomogeneous multistate
10782 model with finite state space using the Aalen-Johansen estimator.")
10783 (license license:expat)))
10784
10785 (define-public r-epi
10786 (package
10787 (name "r-epi")
10788 (version "2.37")
10789 (source
10790 (origin
10791 (method url-fetch)
10792 (uri (cran-uri "Epi" version))
10793 (sha256
10794 (base32
10795 "1lanr9x0c6w22406p56j7cwk6wck8njq6pscb4gzc613d68zj1lk"))))
10796 (properties `((upstream-name . "Epi")))
10797 (build-system r-build-system)
10798 (propagated-inputs
10799 `(("r-cmprsk" ,r-cmprsk)
10800 ("r-data-table" ,r-data-table)
10801 ("r-etm" ,r-etm)
10802 ("r-mass" ,r-mass)
10803 ("r-matrix" ,r-matrix)
10804 ("r-mgcv" ,r-mgcv)
10805 ("r-numderiv" ,r-numderiv)
10806 ("r-plyr" ,r-plyr)
10807 ("r-survival" ,r-survival)
10808 ("r-zoo" ,r-zoo)))
10809 (home-page "http://BendixCarstensen.com/Epi/")
10810 (synopsis "Statistical analysis in epidemiology")
10811 (description
10812 "This package provides functions for demographic and epidemiological
10813 analysis in the Lexis diagram, i.e. register and cohort follow-up data, in
10814 particular representation, manipulation and simulation of multistate data -
10815 the Lexis suite of functions, which includes interfaces to the @code{mstate},
10816 @code{etm} and @code{cmprsk} packages. It also contains functions for
10817 Age-Period-Cohort and Lee-Carter modeling and a function for interval censored
10818 data and some useful functions for tabulation and plotting, as well as a
10819 number of epidemiological data sets.")
10820 (license license:gpl2)))
10821
10822 (define-public r-ppls
10823 (package
10824 (name "r-ppls")
10825 (version "1.6-1.1")
10826 (source
10827 (origin
10828 (method url-fetch)
10829 (uri (cran-uri "ppls" version))
10830 (sha256
10831 (base32
10832 "1zyrisy3c4cz896j1bjh61sf57wdl9p8ywdq268cl819szfq78mx"))))
10833 (build-system r-build-system)
10834 (propagated-inputs `(("r-mass" ,r-mass)))
10835 (home-page "https://cran.r-project.org/web/packages/ppls")
10836 (synopsis "Penalized partial least squares")
10837 (description
10838 "This package contains linear and nonlinear regression methods based on
10839 partial least squares and penalization techniques. Model parameters are
10840 selected via cross-validation, and confidence intervals ans tests for the
10841 regression coefficients can be conducted via jackknifing.")
10842 (license license:gpl2+)))
10843
10844 (define-public r-huge
10845 (package
10846 (name "r-huge")
10847 (version "1.3.2")
10848 (source
10849 (origin
10850 (method url-fetch)
10851 (uri (cran-uri "huge" version))
10852 (sha256
10853 (base32
10854 "1j93gvi1jyq3ld9jhdqhrpm2is54rk3ilmf3yw7fx6gva0y6hjqd"))))
10855 (build-system r-build-system)
10856 (propagated-inputs
10857 `(("r-igraph" ,r-igraph)
10858 ("r-mass" ,r-mass)
10859 ("r-matrix" ,r-matrix)
10860 ("r-rcpp" ,r-rcpp)
10861 ("r-rcppeigen" ,r-rcppeigen)))
10862 (home-page "https://cran.r-project.org/web/packages/huge")
10863 (synopsis "High-dimensional undirected graph estimation")
10864 (description
10865 "This package provides a general framework for high-dimensional
10866 undirected graph estimation. It integrates data preprocessing, neighborhood
10867 screening, graph estimation, and model selection techniques into a pipeline.")
10868 (license license:gpl2)))
10869
10870 (define-public r-parcor
10871 (package
10872 (name "r-parcor")
10873 (version "0.2-6")
10874 (source
10875 (origin
10876 (method url-fetch)
10877 (uri (cran-uri "parcor" version))
10878 (sha256
10879 (base32
10880 "0vgs6k92vdr0cmb8cwbv2ff6qavw30agskfd8bfh17hsskrisvx0"))))
10881 (build-system r-build-system)
10882 (propagated-inputs
10883 `(("r-epi" ,r-epi)
10884 ("r-genenet" ,r-genenet)
10885 ("r-glmnet" ,r-glmnet)
10886 ("r-mass" ,r-mass)
10887 ("r-ppls" ,r-ppls)))
10888 (home-page "https://cran.r-project.org/web/packages/parcor")
10889 (synopsis "Regularized estimation of partial correlation matrices")
10890 (description
10891 "This package estimates the matrix of partial correlations based on
10892 different regularized regression methods: lasso, adaptive lasso, PLS, and
10893 Ridge Regression. In addition, the package provides model selection for
10894 lasso, adaptive lasso and Ridge regression based on cross-validation.")
10895 (license license:gpl2+)))
10896
10897 (define-public r-mcmc
10898 (package
10899 (name "r-mcmc")
10900 (version "0.9-6")
10901 (source
10902 (origin
10903 (method url-fetch)
10904 (uri (cran-uri "mcmc" version))
10905 (sha256
10906 (base32
10907 "1fc6a6asn53lx7x7pnlb5mb716nv4pcmbp99f1i30y4hzygihfj4"))))
10908 (build-system r-build-system)
10909 (home-page "http://www.stat.umn.edu/geyer/mcmc/")
10910 (synopsis "Markov chain Monte Carlo")
10911 (description
10912 "This package simulates continuous distributions of random vectors using
10913 @dfn{Markov chain Monte Carlo} (MCMC). Users specify the distribution by an R
10914 function that evaluates the log unnormalized density. Algorithms are random
10915 walk Metropolis algorithm (function @code{metrop}), simulated
10916 tempering (function @code{temper}), and morphometric random walk
10917 Metropolis (function @code{morph.metrop}), which achieves geometric ergodicity
10918 by change of variable.")
10919 (license license:expat)))
10920
10921 (define-public r-listenv
10922 (package
10923 (name "r-listenv")
10924 (version "0.7.0")
10925 (source
10926 (origin
10927 (method url-fetch)
10928 (uri (cran-uri "listenv" version))
10929 (sha256
10930 (base32
10931 "0ma5jsri2zqkrlsm9nqpikl7imbwfy1glsmk13mblw0q245h49k1"))))
10932 (build-system r-build-system)
10933 (native-inputs
10934 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
10935 (home-page "https://github.com/HenrikBengtsson/listenv")
10936 (synopsis "Environments behaving (almost) as lists")
10937 (description
10938 "This package implements list environments. List environments are
10939 environments that have list-like properties. For instance, the elements of a
10940 list environment are ordered and can be accessed and iterated over using index
10941 subsetting.")
10942 (license license:lgpl2.1+)))
10943
10944 (define-public r-globals
10945 (package
10946 (name "r-globals")
10947 (version "0.12.4")
10948 (source
10949 (origin
10950 (method url-fetch)
10951 (uri (cran-uri "globals" version))
10952 (sha256
10953 (base32
10954 "0szyv1ayyk31bh3xqlkj43020w44xq6s4rw2bxwizyjssxm3b1br"))))
10955 (build-system r-build-system)
10956 (propagated-inputs
10957 `(("r-codetools" ,r-codetools)))
10958 (home-page "https://github.com/HenrikBengtsson/globals")
10959 (synopsis "Identify global objects in R expressions")
10960 (description
10961 "This package provides tools to identify global (\"unknown\" or \"free\")
10962 objects in R expressions by code inspection using various strategies, e.g.
10963 conservative or liberal. The objective of this package is to make it as
10964 simple as possible to identify global objects for the purpose of exporting
10965 them in distributed compute environments.")
10966 (license license:lgpl2.1+)))
10967
10968 (define-public r-future
10969 (package
10970 (name "r-future")
10971 (version "1.13.0")
10972 (source
10973 (origin
10974 (method url-fetch)
10975 (uri (cran-uri "future" version))
10976 (sha256
10977 (base32
10978 "0h8ng2a6vg4axd5f75xcb3ip9d95zi22fa048dq2bzlnncwlznjz"))))
10979 (build-system r-build-system)
10980 (propagated-inputs
10981 `(("r-digest" ,r-digest)
10982 ("r-globals" ,r-globals)
10983 ("r-listenv" ,r-listenv)))
10984 (native-inputs
10985 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
10986 (home-page "https://github.com/HenrikBengtsson/future")
10987 (synopsis "Unified parallel and distributed processing in R")
10988 (description
10989 "The purpose of this package is to provide a lightweight and unified
10990 Future API for sequential and parallel processing of R expression via futures.
10991 This package implements sequential, multicore, multisession, and cluster
10992 futures. With these, R expressions can be evaluated on the local machine, in
10993 parallel a set of local machines, or distributed on a mix of local and remote
10994 machines. Extensions to this package implement additional backends for
10995 processing futures via compute cluster schedulers etc. Because of its unified
10996 API, there is no need to modify any code in order to switch from sequential on
10997 the local machine to, say, distributed processing on a remote compute cluster.")
10998 (license license:lgpl2.1+)))
10999
11000 (define-public r-future-apply
11001 (package
11002 (name "r-future-apply")
11003 (version "1.2.0")
11004 (source
11005 (origin
11006 (method url-fetch)
11007 (uri (cran-uri "future.apply" version))
11008 (sha256
11009 (base32
11010 "00ma43ma3byrf9vfqqn9g8sn18c71ryhk7lpza5h7817f1kibw1h"))))
11011 (properties `((upstream-name . "future.apply")))
11012 (build-system r-build-system)
11013 (propagated-inputs
11014 `(("r-future" ,r-future)
11015 ("r-globals" ,r-globals)))
11016 (native-inputs
11017 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
11018 (home-page "https://github.com/HenrikBengtsson/future.apply")
11019 (synopsis "Apply function to elements in parallel using futures")
11020 (description
11021 "This package provides implementations of @code{apply()},
11022 @code{eapply()}, @code{lapply()}, @code{Map()}, @code{mapply()},
11023 @code{replicate()}, @code{sapply()}, @code{tapply()}, and @code{vapply()} that
11024 can be resolved using any future-supported backend, e.g. parallel on the local
11025 machine or distributed on a compute cluster.")
11026 (license license:gpl2+)))
11027
11028 (define-public r-rsvd
11029 (package
11030 (name "r-rsvd")
11031 (version "1.0.1")
11032 (source
11033 (origin
11034 (method url-fetch)
11035 (uri (cran-uri "rsvd" version))
11036 (sha256
11037 (base32
11038 "1faskhf5j2bj9f971qljsmh182g3rnyilj1wwijz530a6skxidzz"))))
11039 (build-system r-build-system)
11040 (propagated-inputs
11041 `(("r-matrix" ,r-matrix)))
11042 (home-page "https://github.com/erichson/rSVD")
11043 (synopsis "Randomized singular value decomposition")
11044 (description
11045 "Low-rank matrix decompositions are fundamental tools and widely used for
11046 data analysis, dimension reduction, and data compression. Classically, highly
11047 accurate deterministic matrix algorithms are used for this task. However, the
11048 emergence of large-scale data has severely challenged our computational
11049 ability to analyze big data. The concept of randomness has been demonstrated
11050 as an effective strategy to quickly produce approximate answers to familiar
11051 problems such as the @dfn{singular value decomposition} (SVD). This package
11052 provides several randomized matrix algorithms such as the randomized singular
11053 value decomposition (@code{rsvd}), randomized principal component
11054 analysis (@code{rpca}), randomized robust principal component
11055 analysis (@code{rrpca}), randomized interpolative decomposition (@code{rid}),
11056 and the randomized CUR decomposition (@code{rcur}). In addition several plot
11057 functions are provided.")
11058 (license license:gpl3+)))
11059
11060 (define-public r-sloop
11061 (package
11062 (name "r-sloop")
11063 (version "1.0.1")
11064 (source
11065 (origin
11066 (method url-fetch)
11067 (uri (cran-uri "sloop" version))
11068 (sha256
11069 (base32
11070 "00fk5fr5zsk2qxc1kfhmshhjxgnamm3401089sx8m2l529zd6r8j"))))
11071 (build-system r-build-system)
11072 (propagated-inputs
11073 `(("r-codetools" ,r-codetools)
11074 ("r-crayon" ,r-crayon)
11075 ("r-purrr" ,r-purrr)
11076 ("r-rlang" ,r-rlang)
11077 ("r-tibble" ,r-tibble)))
11078 (home-page "https://github.com/r-lib/sloop")
11079 (synopsis "Helpers for object-oriented programming in R")
11080 (description
11081 "This package provides a collection of helper functions designed to
11082 help you to better understand object oriented programming in R, particularly
11083 using @code{S3}.")
11084 (license license:gpl3)))
11085
11086 (define-public r-capushe
11087 (package
11088 (name "r-capushe")
11089 (version "1.1.1")
11090 (source
11091 (origin
11092 (method url-fetch)
11093 (uri (cran-uri "capushe" version))
11094 (sha256
11095 (base32
11096 "1aa76ir1kp67hiz7dr60azyc71yzslshyc640fjh0fpw0sp5kwbc"))))
11097 (build-system r-build-system)
11098 (propagated-inputs `(("r-mass" ,r-mass)))
11099 (home-page "https://cran.r-project.org/web/packages/capushe/index.html")
11100 (synopsis "Calibrating penalties using slope heuristics")
11101 (description
11102 "This package provides tools for the calibration of penalized criteria
11103 for model selection. The calibration methods available are based on the slope
11104 heuristics.")
11105 (license license:gpl2+)))
11106
11107 (define-public r-dorng
11108 (package
11109 (name "r-dorng")
11110 (version "1.7.1")
11111 (source
11112 (origin
11113 (method url-fetch)
11114 (uri (cran-uri "doRNG" version))
11115 (sha256
11116 (base32
11117 "1sb75aqkliprglfxc4x4wds6alqgzhvl2n812g1d32a88ra3slr7"))))
11118 (properties `((upstream-name . "doRNG")))
11119 (build-system r-build-system)
11120 (propagated-inputs
11121 `(("r-foreach" ,r-foreach)
11122 ("r-iterators" ,r-iterators)
11123 ("r-pkgmaker" ,r-pkgmaker)
11124 ("r-rngtools" ,r-rngtools)))
11125 (home-page "https://renozao.github.io/doRNG/")
11126 (synopsis "Generic reproducible parallel backend for foreach loops")
11127 (description
11128 "This package provides functions to perform reproducible parallel
11129 @code{foreach} loops, using independent random streams as generated by
11130 L'Ecuyer's combined multiple-recursive generator. It enables to easily
11131 convert standard @code{%dopar%} loops into fully reproducible loops,
11132 independently of the number of workers, the task scheduling strategy, or the
11133 chosen parallel environment and associated foreach backend.")
11134 (license license:gpl2+)))
11135
11136 (define-public r-blockmodeling
11137 (package
11138 (name "r-blockmodeling")
11139 (version "0.3.4")
11140 (source
11141 (origin
11142 (method url-fetch)
11143 (uri (cran-uri "blockmodeling" version))
11144 (sha256
11145 (base32
11146 "11v9903y9dwlzaqp8sx0fsibcg82phvappddy37r8lnxd4vchsd2"))))
11147 (build-system r-build-system)
11148 (propagated-inputs
11149 `(("r-doparallel" ,r-doparallel)
11150 ("r-dorng" ,r-dorng)
11151 ("r-foreach" ,r-foreach)
11152 ("r-matrix" ,r-matrix)))
11153 (native-inputs `(("gfortran" ,gfortran)))
11154 (home-page "https://cran.r-project.org/web/packages/blockmodeling")
11155 (synopsis "Generalized and classical blockmodeling of valued networks")
11156 (description
11157 "This package is primarily meant as an implementation of generalized
11158 blockmodeling for valued networks. In addition, measures of similarity or
11159 dissimilarity based on structural equivalence and regular equivalence (REGE
11160 algorithms) can be computed and partitioned matrices can be plotted.")
11161 (license license:gpl2+)))
11162
11163 (define-public r-upsetr
11164 (package
11165 (name "r-upsetr")
11166 (version "1.4.0")
11167 (source
11168 (origin
11169 (method url-fetch)
11170 (uri (cran-uri "UpSetR" version))
11171 (sha256
11172 (base32
11173 "007i0njnjjy7vbrxabwav7a1kk2n0hn2mkvqsdzzfk10ckp5y7im"))))
11174 (properties `((upstream-name . "UpSetR")))
11175 (build-system r-build-system)
11176 (propagated-inputs
11177 `(("r-ggplot2" ,r-ggplot2)
11178 ("r-gridextra" ,r-gridextra)
11179 ("r-plyr" ,r-plyr)
11180 ("r-scales" ,r-scales)))
11181 (home-page "https://github.com/hms-dbmi/UpSetR")
11182 (synopsis "Visualize intersecting sets")
11183 (description
11184 "This package provides a more scalable alternative to Venn and Euler
11185 diagrams for visualizing intersecting sets. Create visualizations of
11186 intersecting sets using a novel matrix design, along with visualizations of
11187 several common set, element and attribute related tasks.")
11188 (license license:expat)))
11189
11190 ;; This package includes a JavaScript file, which is not minified. When
11191 ;; upgrading please check that there are no new minified JavaScript files.
11192 (define-public r-shinybs
11193 (package
11194 (name "r-shinybs")
11195 (version "0.61")
11196 (source
11197 (origin
11198 (method url-fetch)
11199 (uri (cran-uri "shinyBS" version))
11200 (sha256
11201 (base32
11202 "0rhim4mbp4x9vvm7xkmpl7mhb9qd1gr96cr4dv330v863ra2kgji"))))
11203 (properties `((upstream-name . "shinyBS")))
11204 (build-system r-build-system)
11205 ;; The tests spawn Shiny browser apps. They cannot be run
11206 ;; non-interactively.
11207 (arguments '(#:tests? #f))
11208 (propagated-inputs
11209 `(("r-htmltools" ,r-htmltools)
11210 ("r-shiny" ,r-shiny)))
11211 (home-page "https://ebailey78.github.io/shinyBS/")
11212 (synopsis "Twitter Bootstrap components for Shiny")
11213 (description
11214 "This package adds additional Twitter Bootstrap components to Shiny.")
11215 (license license:gpl3)))
11216
11217 (define-public r-outliers
11218 (package
11219 (name "r-outliers")
11220 (version "0.14")
11221 (source
11222 (origin
11223 (method url-fetch)
11224 (uri (cran-uri "outliers" version))
11225 (sha256
11226 (base32
11227 "0vcqfqmmv4yblyp3s6bd25r49pxb7hjzipiic5a82924nqfqzkmn"))))
11228 (build-system r-build-system)
11229 (home-page "https://cran.r-project.org/web/packages/outliers/index.html")
11230 (synopsis "Tests for outliers")
11231 (description
11232 "This package provides a collection of some tests commonly used for
11233 identifying outliers.")
11234 (license license:gpl2+)))
11235
11236 (define-public r-bayesm
11237 (package
11238 (name "r-bayesm")
11239 (version "3.1-1")
11240 (source
11241 (origin
11242 (method url-fetch)
11243 (uri (cran-uri "bayesm" version))
11244 (sha256
11245 (base32
11246 "0y30cza92s6kgvmxjpr6f5g0qbcck7hslqp89ncprarhxiym2m28"))))
11247 (build-system r-build-system)
11248 (propagated-inputs
11249 `(("r-rcpp" ,r-rcpp)
11250 ("r-rcpparmadillo" ,r-rcpparmadillo)))
11251 (home-page "http://www.perossi.org/home/bsm-1")
11252 (synopsis "Bayesian inference for marketing/micro-econometrics")
11253 (description
11254 "This package covers many important models used in marketing and
11255 micro-econometrics applications, including Bayes Regression (univariate or
11256 multivariate dep var), Bayes Seemingly Unrelated Regression (SUR), Binary and
11257 Ordinal Probit, Multinomial Logit (MNL) and Multinomial Probit (MNP),
11258 Multivariate Probit, Negative Binomial (Poisson) Regression, Multivariate
11259 Mixtures of Normals (including clustering), Dirichlet Process Prior Density
11260 Estimation with normal base, Hierarchical Linear Models with normal prior and
11261 covariates, Hierarchical Linear Models with a mixture of normals prior and
11262 covariates, Hierarchical Multinomial Logits with a mixture of normals prior
11263 and covariates, Hierarchical Multinomial Logits with a Dirichlet Process prior
11264 and covariates, Hierarchical Negative Binomial Regression Models, Bayesian
11265 analysis of choice-based conjoint data, Bayesian treatment of linear
11266 instrumental variables models, Analysis of Multivariate Ordinal survey data
11267 with scale usage heterogeneity, and Bayesian Analysis of Aggregate Random
11268 Coefficient Logit Models.")
11269 (license license:gpl2+)))
11270
11271 (define-public r-tensora
11272 (package
11273 (name "r-tensora")
11274 (version "0.36.1")
11275 (source
11276 (origin
11277 (method url-fetch)
11278 (uri (cran-uri "tensorA" version))
11279 (sha256
11280 (base32
11281 "176hjy3bvg3in62r97wxbhq187sjz6c1gwy9x6spaxl6k4my3zy7"))))
11282 (properties `((upstream-name . "tensorA")))
11283 (build-system r-build-system)
11284 (home-page "http://www.stat.boogaart.de/tensorA")
11285 (synopsis "Advanced tensor arithmetic with named indices")
11286 (description
11287 "This package provides convenience functions for advanced linear algebra
11288 with tensors and computation with datasets of tensors on a higher level
11289 abstraction. It includes Einstein and Riemann summing conventions, dragging,
11290 co- and contravariate indices, and parallel computations on sequences of
11291 tensors.")
11292 (license license:gpl2+)))
11293
11294 (define-public r-rarpack
11295 (package
11296 (name "r-rarpack")
11297 (version "0.11-0")
11298 (source
11299 (origin
11300 (method url-fetch)
11301 (uri (cran-uri "rARPACK" version))
11302 (sha256
11303 (base32
11304 "12h2y46xcfldhjdmm960swgn9b23zvkj5vg2bi42s9qxwgi02d63"))))
11305 (properties `((upstream-name . "rARPACK")))
11306 (build-system r-build-system)
11307 (propagated-inputs `(("r-rspectra" ,r-rspectra)))
11308 (home-page "https://github.com/yixuan/rARPACK")
11309 (synopsis "Solvers for large scale eigenvalue and SVD problems")
11310 (description
11311 "This package was previously an R wrapper of the ARPACK library, and now
11312 a shell of the R package RSpectra, an R interface to the Spectra library for
11313 solving large scale eigenvalue/vector problems. The current version of
11314 rARPACK simply imports and exports the functions provided by RSpectra. New
11315 users of rARPACK are advised to switch to the RSpectra package.")
11316 (license license:bsd-3)))
11317
11318 (define-public r-compositions
11319 (package
11320 (name "r-compositions")
11321 (version "1.40-2")
11322 (source
11323 (origin
11324 (method url-fetch)
11325 (uri (cran-uri "compositions" version))
11326 (sha256
11327 (base32
11328 "12mp05yi7jkdqg9iwh6bc9sx6sdxagcnrirznxy9hq8502p7238i"))))
11329 (build-system r-build-system)
11330 (propagated-inputs
11331 `(("r-bayesm" ,r-bayesm)
11332 ("r-energy" ,r-energy)
11333 ("r-robustbase" ,r-robustbase)
11334 ("r-tensora" ,r-tensora)))
11335 (home-page "http://www.stat.boogaart.de/compositions")
11336 (synopsis "Compositional data analysis")
11337 (description
11338 "This package provides functions for the consistent analysis of
11339 compositional data (e.g. portions of substances) and positive
11340 numbers (e.g. concentrations).")
11341 (license license:gpl2+)))
11342
11343 (define-public r-cobs
11344 (package
11345 (name "r-cobs")
11346 (version "1.3-3")
11347 (source
11348 (origin
11349 (method url-fetch)
11350 (uri (cran-uri "cobs" version))
11351 (sha256
11352 (base32
11353 "1pqvz7czcchri4x79g78hbwyagb3bqzdqb047zkbdinyz067c7kb"))))
11354 (build-system r-build-system)
11355 (propagated-inputs
11356 `(("r-quantreg" ,r-quantreg)
11357 ("r-sparsem" ,r-sparsem)))
11358 (home-page "https://cran.r-project.org/web/packages/cobs")
11359 (synopsis "Constrained B-Splines (sparse matrix based)")
11360 (description
11361 "This package provides qualitatively constrained (regression) smoothing
11362 splines via linear programming and sparse matrices.")
11363 (license license:gpl2+)))
11364
11365 (define-public r-drimpute
11366 (package
11367 (name "r-drimpute")
11368 (version "1.0")
11369 (source
11370 (origin
11371 (method url-fetch)
11372 (uri (cran-uri "DrImpute" version))
11373 (sha256
11374 (base32
11375 "1adzarrwqb282pqgx2yqswp9rpwd1naxsmar54kddr6qyd6b923b"))))
11376 (properties `((upstream-name . "DrImpute")))
11377 (build-system r-build-system)
11378 (propagated-inputs
11379 `(("r-rcpp" ,r-rcpp)
11380 ("r-rcpparmadillo" ,r-rcpparmadillo)))
11381 (home-page "https://github.com/ikwak2/DrImpute")
11382 (synopsis "Imputing dropout events in single-cell RNA-Seq data")
11383 (description
11384 "This is an R package for imputing dropout events. Many statistical
11385 methods in cell type identification, visualization and lineage reconstruction
11386 do not account for dropout events. DrImpute can improve the performance of
11387 such software by imputing dropout events.")
11388 (license license:gpl3)))
11389
11390 (define-public r-gamlss-dist
11391 (package
11392 (name "r-gamlss-dist")
11393 (version "5.1-4")
11394 (source
11395 (origin
11396 (method url-fetch)
11397 (uri (cran-uri "gamlss.dist" version))
11398 (sha256
11399 (base32
11400 "0zi87lgigr83l35zqq1y1g4cdq6ssjamripzz7yis74aznh6qg1l"))))
11401 (properties `((upstream-name . "gamlss.dist")))
11402 (build-system r-build-system)
11403 (propagated-inputs `(("r-mass" ,r-mass)))
11404 (home-page "http://www.gamlss.org/")
11405 (synopsis "Distributions for Generalized Additive Models for location scale and shape")
11406 (description
11407 "This package provides a set of distributions which can be used for
11408 modelling the response variables in Generalized Additive Models for Location
11409 Scale and Shape. The distributions can be continuous, discrete or mixed
11410 distributions. Extra distributions can be created, by transforming, any
11411 continuous distribution defined on the real line, to a distribution defined on
11412 ranges 0 to infinity or 0 to 1, by using a @code{log} or a @code{logit}
11413 transformation, respectively.")
11414 ;; Either version of the GPL.
11415 (license (list license:gpl2 license:gpl3))))
11416
11417 ;; This package includes JavaScript files, which are not minified. When
11418 ;; upgrading please check that there are no new minified JavaScript files.
11419 (define-public r-shinyjs
11420 (package
11421 (name "r-shinyjs")
11422 (version "1.0")
11423 (source
11424 (origin
11425 (method url-fetch)
11426 (uri (cran-uri "shinyjs" version))
11427 (sha256
11428 (base32
11429 "113zpijri0l80rlgrvqn6bxk0sdqgl79h7yhja2p76f9dc9i2sr8"))))
11430 (build-system r-build-system)
11431 (propagated-inputs
11432 `(("r-digest" ,r-digest)
11433 ("r-htmltools" ,r-htmltools)
11434 ("r-jsonlite" ,r-jsonlite)
11435 ("r-shiny" ,r-shiny)))
11436 (home-page "https://deanattali.com/shinyjs")
11437 (synopsis "Improve the user experience of your Shiny apps")
11438 (description
11439 "Perform common useful JavaScript operations in Shiny apps that will
11440 greatly improve your apps without having to know any JavaScript. Examples
11441 include: hiding an element, disabling an input, resetting an input back to its
11442 original value, delaying code execution by a few seconds, and many more useful
11443 functions for both the end user and the developer. Shinyjs can also be used
11444 to easily call your own custom JavaScript functions from R.")
11445 (license license:agpl3+)))
11446
11447 ;; This package includes minified JavaScript files. When upgrading please
11448 ;; check that there are no new minified JavaScript files.
11449 (define-public r-colourpicker
11450 (package
11451 (name "r-colourpicker")
11452 (version "1.0")
11453 (source
11454 (origin
11455 (method url-fetch)
11456 (uri (cran-uri "colourpicker" version))
11457 (sha256
11458 (base32
11459 "0z3v2083g7kwdp21x9s2n1crfh24agpdq3yxkcdzc2awn2pwpnpi"))))
11460 (build-system r-build-system)
11461 (arguments
11462 `(#:modules ((guix build utils)
11463 (guix build r-build-system)
11464 (srfi srfi-1)
11465 (ice-9 popen))
11466 #:phases
11467 (modify-phases %standard-phases
11468 (add-after 'unpack 'process-javascript
11469 (lambda* (#:key inputs #:allow-other-keys)
11470 (with-directory-excursion "inst"
11471 (call-with-values
11472 (lambda ()
11473 (unzip2
11474 `((,(assoc-ref inputs "js-salvattore")
11475 "examples/colourInput/www/salvattore.min.js")
11476 (,(assoc-ref inputs "js-jquery")
11477 "htmlwidgets/lib/jquery/jquery.min.js")
11478 ("www/shared/colourpicker/js/colourpicker.js"
11479 "www/shared/colourpicker/js/colourpicker.min.js"))))
11480 (lambda (sources targets)
11481 (for-each (lambda (source target)
11482 (format #t "Processing ~a --> ~a~%"
11483 source target)
11484 (delete-file target)
11485 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
11486 (call-with-output-file target
11487 (lambda (port)
11488 (dump-port minified port)))))
11489 sources targets))))
11490 #t)))))
11491 (propagated-inputs
11492 `(("r-ggplot2" ,r-ggplot2)
11493 ("r-htmltools" ,r-htmltools)
11494 ("r-htmlwidgets" ,r-htmlwidgets)
11495 ("r-jsonlite" ,r-jsonlite)
11496 ("r-miniui" ,r-miniui)
11497 ("r-shiny" ,r-shiny)
11498 ("r-shinyjs" ,r-shinyjs)))
11499 (native-inputs
11500 `(("uglify-js" ,uglify-js)
11501 ("js-jquery"
11502 ,(origin
11503 (method url-fetch)
11504 (uri "https://code.jquery.com/jquery-3.3.1.js")
11505 (sha256
11506 (base32
11507 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))
11508 ("js-salvattore"
11509 ,(origin
11510 (method url-fetch)
11511 (uri "https://raw.githubusercontent.com/rnmp/salvattore/v1.0.9/dist/salvattore.js")
11512 (sha256
11513 (base32
11514 "0lfrbx7l9w5x89jpc6njmd0pk7h8fpvg537vklai2vf7b1r2nnk5"))))))
11515 (home-page "https://github.com/daattali/colourpicker")
11516 (synopsis "Color picker tool for Shiny and for selecting colors in plots")
11517 (description
11518 "This package provides a color picker that can be used as an input in
11519 Shiny apps or Rmarkdown documents. The color picker supports alpha opacity,
11520 custom color palettes, and many more options. A plot color helper tool is
11521 available as an RStudio Addin, which helps you pick colors to use in your
11522 plots. A more generic color picker RStudio Addin is also provided to let you
11523 select colors to use in your R code.")
11524 (license license:expat)))
11525
11526 (define-public r-ggextra
11527 (package
11528 (name "r-ggextra")
11529 (version "0.8")
11530 (source
11531 (origin
11532 (method url-fetch)
11533 (uri (cran-uri "ggExtra" version))
11534 (sha256
11535 (base32
11536 "1m5zpn3l3p1y3d2692gyz50m63d58m2a3b7zb595kvcffdx2qr5b"))))
11537 (properties `((upstream-name . "ggExtra")))
11538 (build-system r-build-system)
11539 (propagated-inputs
11540 `(("r-colourpicker" ,r-colourpicker)
11541 ("r-ggplot2" ,r-ggplot2)
11542 ("r-gtable" ,r-gtable)
11543 ("r-miniui" ,r-miniui)
11544 ("r-scales" ,r-scales)
11545 ("r-shiny" ,r-shiny)
11546 ("r-shinyjs" ,r-shinyjs)))
11547 (home-page "https://github.com/daattali/ggExtra")
11548 (synopsis "Marginal histograms for ggplot2 and other enhancements")
11549 (description
11550 "This package is a collection of functions and layers to enhance ggplot2.
11551 The flagship function is @code{ggMarginal()}, which can be used to add
11552 marginal histograms/boxplots/density plots to ggplot2 scatterplots.")
11553 (license license:expat)))
11554
11555 (define-public r-minpack-lm
11556 (package
11557 (name "r-minpack-lm")
11558 (version "1.2-1")
11559 (source
11560 (origin
11561 (method url-fetch)
11562 (uri (cran-uri "minpack.lm" version))
11563 (sha256
11564 (base32
11565 "18ym2pdql5vzngc7q5gn66d153hrfrnd8ilv8yh6vd7j7sx7vjql"))))
11566 (properties `((upstream-name . "minpack.lm")))
11567 (build-system r-build-system)
11568 (native-inputs `(("gfortran" ,gfortran)))
11569 (home-page "https://cran.r-project.org/web/packages/minpack.lm")
11570 (synopsis "Levenberg-Marquardt Nonlinear Least-Squares algorithm")
11571 (description
11572 "The @code{nls.lm} function provides an R interface to @code{lmder} and
11573 @code{lmdif} from the MINPACK library, for solving nonlinear least-squares
11574 problems by a modification of the Levenberg-Marquardt algorithm, with support
11575 for lower and upper parameter bounds. The implementation can be used via
11576 @code{nls}-like calls using the @code{nlsLM} function.")
11577 (license license:gpl3)))
11578
11579 (define-public r-moments
11580 (package
11581 (name "r-moments")
11582 (version "0.14")
11583 (source
11584 (origin
11585 (method url-fetch)
11586 (uri (cran-uri "moments" version))
11587 (sha256
11588 (base32
11589 "0f9y58w1hxcz4bqivirx25ywlmc80gbi6dfx5cnhkpdg1pk82fra"))))
11590 (build-system r-build-system)
11591 (home-page "https://cran.r-project.org/web/packages/moments")
11592 (synopsis "Moments, cumulants, skewness, kurtosis and related tests")
11593 (description
11594 "This package provides functions to calculate: moments, Pearson's
11595 kurtosis, Geary's kurtosis and skewness; it also includes tests related to
11596 them (Anscombe-Glynn, D'Agostino, Bonett-Seier).")
11597 (license license:gpl2+)))
11598
11599 (define-public r-msir
11600 (package
11601 (name "r-msir")
11602 (version "1.3.2")
11603 (source
11604 (origin
11605 (method url-fetch)
11606 (uri (cran-uri "msir" version))
11607 (sha256
11608 (base32
11609 "0pvc3q162vqq3k39nni732x05zzfz4y9y2zf56d83185ypszv9kb"))))
11610 (build-system r-build-system)
11611 (propagated-inputs
11612 `(("r-mclust" ,r-mclust)))
11613 (home-page "https://cran.r-project.org/web/packages/msir")
11614 (synopsis "Model-based sliced inverse regression")
11615 (description
11616 "This is an R package for dimension reduction based on finite Gaussian
11617 mixture modeling of inverse regression.")
11618 (license license:gpl2+)))
11619
11620 (define-public r-pbivnorm
11621 (package
11622 (name "r-pbivnorm")
11623 (version "0.6.0")
11624 (source
11625 (origin
11626 (method url-fetch)
11627 (uri (cran-uri "pbivnorm" version))
11628 (sha256
11629 (base32
11630 "05jzrjqxzbcf6z245hlk7sjxiszv9paadaaimvcx5y5qgi87vhq7"))))
11631 (build-system r-build-system)
11632 (native-inputs `(("gfortran" ,gfortran)))
11633 (home-page "https://github.com/brentonk/pbivnorm")
11634 (synopsis "Vectorized bivariate normal CDF")
11635 (description
11636 "This package provides a vectorized R function for calculating
11637 probabilities from a standard bivariate normal CDF.")
11638 (license license:gpl2+)))
11639
11640 (define-public r-lavaan
11641 (package
11642 (name "r-lavaan")
11643 (version "0.6-3")
11644 (source
11645 (origin
11646 (method url-fetch)
11647 (uri (cran-uri "lavaan" version))
11648 (sha256
11649 (base32
11650 "0hw856kv11zqn6nd4216rh19i6xbnc1rh044r7jvvxkhzgbqkyxz"))))
11651 (build-system r-build-system)
11652 (propagated-inputs
11653 `(("r-mass" ,r-mass)
11654 ("r-mnormt" ,r-mnormt)
11655 ("r-numderiv" ,r-numderiv)
11656 ("r-pbivnorm" ,r-pbivnorm)))
11657 (home-page "http://lavaan.ugent.be")
11658 (synopsis "Latent variable analysis")
11659 (description
11660 "This package provides tools to fit a variety of latent variable models,
11661 including confirmatory factor analysis, structural equation modeling and
11662 latent growth curve models.")
11663 (license license:gpl2+)))
11664
11665 (define-public r-nonnest2
11666 (package
11667 (name "r-nonnest2")
11668 (version "0.5-2")
11669 (source
11670 (origin
11671 (method url-fetch)
11672 (uri (cran-uri "nonnest2" version))
11673 (sha256
11674 (base32
11675 "1bq44qqmm59j91m0sny4xnqmxqlga4cm48qdsw8xfs3x19xwmxk6"))))
11676 (build-system r-build-system)
11677 (propagated-inputs
11678 `(("r-compquadform" ,r-compquadform)
11679 ("r-lavaan" ,r-lavaan)
11680 ("r-mvtnorm" ,r-mvtnorm)
11681 ("r-sandwich" ,r-sandwich)))
11682 (home-page "https://cran.r-project.org/web/packages/nonnest2/")
11683 (synopsis "Tests of non-nested models")
11684 (description
11685 "This package allows for testing of non-nested models. It includes tests
11686 of model distinguishability and of model fit that can be applied to both
11687 nested and non-nested models. The package also includes functionality to
11688 obtain confidence intervals associated with AIC and BIC.")
11689 ;; Either version of the GPL.
11690 (license (list license:gpl2 license:gpl3))))
11691
11692 (define-public r-penalized
11693 (package
11694 (name "r-penalized")
11695 (version "0.9-51")
11696 (source
11697 (origin
11698 (method url-fetch)
11699 (uri (cran-uri "penalized" version))
11700 (sha256
11701 (base32
11702 "1zcrwa93mc27qj3g4ayc2k895r6g8q0g6qb2azmvj7wqk750va7a"))))
11703 (build-system r-build-system)
11704 (propagated-inputs
11705 `(("r-rcpp" ,r-rcpp)
11706 ("r-rcpparmadillo" ,r-rcpparmadillo)
11707 ("r-survival" ,r-survival)))
11708 (home-page "https://cran.r-project.org/web/packages/penalized/")
11709 (synopsis "Penalized estimation in GLMs and in the Cox model")
11710 (description
11711 "This package provides tools for fitting possibly high dimensional
11712 penalized regression models. The penalty structure can be any combination of
11713 an L1 penalty (lasso and fused lasso), an L2 penalty (ridge) and a positivity
11714 constraint on the regression coefficients. The supported regression models
11715 are linear, logistic and Poisson regression and the Cox Proportional Hazards
11716 model. Cross-validation routines allow optimization of the tuning
11717 parameters.")
11718 (license license:gpl2+)))
11719
11720 (define-public r-zim
11721 (package
11722 (name "r-zim")
11723 (version "1.1.0")
11724 (source
11725 (origin
11726 (method url-fetch)
11727 (uri (cran-uri "ZIM" version))
11728 (sha256
11729 (base32
11730 "0scyfjn4ilsvha3x41c3b8bcfi31hlhwm77wn2a8hj5dsvnnmzig"))))
11731 (properties `((upstream-name . "ZIM")))
11732 (build-system r-build-system)
11733 (propagated-inputs `(("r-mass" ,r-mass)))
11734 (home-page "https://github.com/biostatstudio/ZIM")
11735 (synopsis "Zero-inflated models (ZIM) for count time series with excess zeros")
11736 (description
11737 "Analyze count time series with excess zeros. Two types of statistical
11738 models are supported: Markov regression and state-space models. They are also
11739 known as observation-driven and parameter-driven models respectively in the
11740 time series literature. The functions used for Markov regression or
11741 observation-driven models can also be used to fit ordinary regression models
11742 with independent data under the zero-inflated Poisson (ZIP) or zero-inflated
11743 negative binomial (ZINB) assumption. The package also contains miscellaneous
11744 functions to compute density, distribution, quantile, and generate random
11745 numbers from ZIP and ZINB distributions.")
11746 (license license:gpl3)))
11747
11748 (define-public r-nor1mix
11749 (package
11750 (name "r-nor1mix")
11751 (version "1.3-0")
11752 (source
11753 (origin
11754 (method url-fetch)
11755 (uri (cran-uri "nor1mix" version))
11756 (sha256
11757 (base32
11758 "1817wcvlmxs70vs4db0jkxd7i037744zz8ay3c2a9949z29fxr4w"))))
11759 (build-system r-build-system)
11760 (home-page "https://cran.r-project.org/web/packages/nor1mix/")
11761 (synopsis "Normal (1-d) mixture models")
11762 (description
11763 "This package provides S3 classes and methods for one-dimensional normal
11764 mixture models, for, e.g., density estimation or clustering algorithms
11765 research and teaching; it provides the widely used Marron-Wand densities. It
11766 also provides tools for efficient random number generation and graphics.")
11767 (license license:gpl2+)))
11768
11769 (define-public r-beanplot
11770 (package
11771 (name "r-beanplot")
11772 (version "1.2")
11773 (source
11774 (origin
11775 (method url-fetch)
11776 (uri (cran-uri "beanplot" version))
11777 (sha256
11778 (base32
11779 "0wmkr704fl8kdxkjwmaxw2a2h5dwzfgsgpncnk2p2wd4768jknj9"))))
11780 (build-system r-build-system)
11781 (home-page "https://cran.r-project.org/web/packages/beanplot/")
11782 (synopsis "Visualization via beanplots")
11783 (description
11784 "This package provides beanplots, an alternative to
11785 boxplot/stripchart/violin plots. It can be used to plot univariate comparison
11786 graphs.")
11787 (license license:gpl2)))
11788
11789 (define-public r-pbdzmq
11790 (package
11791 (name "r-pbdzmq")
11792 (version "0.3-3")
11793 (source
11794 (origin
11795 (method url-fetch)
11796 (uri (cran-uri "pbdZMQ" version))
11797 (sha256
11798 (base32
11799 "1jkfcfhspvqra7vbllrvkz3jx8j7d0ang6zzcdjgpb7200sc29mf"))))
11800 (properties `((upstream-name . "pbdZMQ")))
11801 (build-system r-build-system)
11802 (inputs
11803 `(("zeromq" ,zeromq)
11804 ("zlib" ,zlib)))
11805 (native-inputs
11806 `(("pkg-config" ,pkg-config)))
11807 (home-page "https://pbdr.org/")
11808 (synopsis "R interface to ZeroMQ")
11809 (description
11810 "ZeroMQ is a well-known library for high-performance asynchronous
11811 messaging in scalable, distributed applications. This package provides high
11812 level R wrapper functions to easily utilize ZeroMQ. The main focus is on
11813 interactive client/server programming frameworks. A few wrapper functions
11814 compatible with @code{rzmq} are also provided.")
11815 (license license:gpl3)))
11816
11817 (define-public r-repr
11818 (package
11819 (name "r-repr")
11820 (version "1.0.1")
11821 (source
11822 (origin
11823 (method url-fetch)
11824 (uri (cran-uri "repr" version))
11825 (sha256
11826 (base32
11827 "0jy43g34r38fqprcdys0p9pliahrj5l64a9bbkzy206qgz0j5ppc"))))
11828 (build-system r-build-system)
11829 (propagated-inputs
11830 `(("r-base64enc" ,r-base64enc)
11831 ("r-htmltools" ,r-htmltools)
11832 ("r-jsonlite" ,r-jsonlite)
11833 ("r-pillar" ,r-pillar)))
11834 (home-page "https://cran.r-project.org/web/packages/repr/")
11835 (synopsis "Serializable representations")
11836 (description
11837 "This package provides string and binary representations of objects for
11838 several formats and MIME types.")
11839 (license license:gpl3)))
11840
11841 (define-public r-irdisplay
11842 (package
11843 (name "r-irdisplay")
11844 (version "0.7.0")
11845 (source
11846 (origin
11847 (method url-fetch)
11848 (uri (cran-uri "IRdisplay" version))
11849 (sha256
11850 (base32
11851 "12chk53nf4zckgc4yl7gbvd7m5dvli52inp5b3f0zvcjvfncksli"))))
11852 (properties `((upstream-name . "IRdisplay")))
11853 (build-system r-build-system)
11854 (propagated-inputs
11855 `(("r-repr" ,r-repr)))
11856 (home-page "https://cran.r-project.org/web/packages/IRdisplay/")
11857 (synopsis "Jupyter display machinery")
11858 (description
11859 "This package provides an interface to the rich display capabilities of
11860 Jupyter front-ends (e.g. Jupyter Notebook). It is designed to be used from a
11861 running IRkernel session.")
11862 (license license:expat)))
11863
11864 (define-public r-irkernel
11865 (package
11866 (name "r-irkernel")
11867 (version "1.0.1")
11868 (source
11869 (origin
11870 (method url-fetch)
11871 (uri (cran-uri "IRkernel" version))
11872 (sha256
11873 (base32
11874 "1gij59b068qp7sbn9d0b9ghmnhfks15a9anj7bp26acv0yvdsg3s"))))
11875 (properties `((upstream-name . "IRkernel")))
11876 (build-system r-build-system)
11877 (arguments
11878 `(#:phases
11879 (modify-phases %standard-phases
11880 (add-after 'install 'install-kernelspec
11881 (lambda* (#:key outputs #:allow-other-keys)
11882 (let ((out (assoc-ref outputs "out")))
11883 (setenv "HOME" "/tmp")
11884 (invoke "jupyter" "kernelspec" "install"
11885 "--name" "ir"
11886 "--prefix" out
11887 (string-append out "/site-library/IRkernel/kernelspec"))
11888 #t))))))
11889 (inputs
11890 `(("jupyter" ,jupyter)))
11891 (propagated-inputs
11892 `(("r-crayon" ,r-crayon)
11893 ("r-digest" ,r-digest)
11894 ("r-evaluate" ,r-evaluate)
11895 ("r-irdisplay" ,r-irdisplay)
11896 ("r-jsonlite" ,r-jsonlite)
11897 ("r-pbdzmq" ,r-pbdzmq)
11898 ("r-repr" ,r-repr)
11899 ("r-uuid" ,r-uuid)))
11900 (home-page "https://cran.r-project.org/web/packages/IRkernel/")
11901 (synopsis "Native R kernel for Jupyter")
11902 (description
11903 "The R kernel for the Jupyter environment executes R code which the
11904 front-end (Jupyter Notebook or other front-ends) submits to the kernel via the
11905 network.")
11906 (license license:expat)))
11907
11908 (define-public r-gmodels
11909 (package
11910 (name "r-gmodels")
11911 (version "2.18.1")
11912 (source
11913 (origin
11914 (method url-fetch)
11915 (uri (cran-uri "gmodels" version))
11916 (sha256
11917 (base32
11918 "0s8kd8krqk4kwv2zqxpsfy3w8qdwf5naf4b5l383vidq9sil0qb2"))))
11919 (build-system r-build-system)
11920 (propagated-inputs
11921 `(("r-gdata" ,r-gdata)
11922 ("r-mass" ,r-mass)))
11923 (home-page "https://cran.r-project.org/web/packages/gmodels/")
11924 (synopsis "Various R programming tools for model fitting")
11925 (description
11926 "This package provides various R programming tools for model fitting.")
11927 (license license:gpl2)))
11928
11929 (define-public r-apcluster
11930 (package
11931 (name "r-apcluster")
11932 (version "1.4.7")
11933 (source
11934 (origin
11935 (method url-fetch)
11936 (uri (cran-uri "apcluster" version))
11937 (sha256
11938 (base32
11939 "188hdfmwjjx3aic599nwmkzjqm9j9jighi5bly6qd43c1vj6ih2s"))))
11940 (build-system r-build-system)
11941 (propagated-inputs
11942 `(("r-matrix" ,r-matrix)
11943 ("r-rcpp" ,r-rcpp)))
11944 (home-page "https://cran.r-project.org/web/packages/apcluster/")
11945 (synopsis "Affinity propagation clustering")
11946 (description
11947 "This package implements affinity propagation clustering introduced by
11948 Frey and Dueck (2007). The package further provides leveraged affinity
11949 propagation and an algorithm for exemplar-based agglomerative clustering that
11950 can also be used to join clusters obtained from affinity propagation. Various
11951 plotting functions are available for analyzing clustering results.")
11952 (license license:gpl2+)))
11953
11954 (define-public r-valr
11955 (package
11956 (name "r-valr")
11957 (version "0.5.0")
11958 (source
11959 (origin
11960 (method url-fetch)
11961 (uri (cran-uri "valr" version))
11962 (sha256
11963 (base32
11964 "14jhrwkiwmha3vlmm7b50n2xxyizj6ddmy89gb20mpzq7qhz1ika"))))
11965 (build-system r-build-system)
11966 (propagated-inputs
11967 `(("r-broom" ,r-broom)
11968 ("r-dplyr" ,r-dplyr)
11969 ("r-ggplot2" ,r-ggplot2)
11970 ("r-rcpp" ,r-rcpp)
11971 ("r-readr" ,r-readr)
11972 ("r-rlang" ,r-rlang)
11973 ("r-stringr" ,r-stringr)
11974 ("r-tibble" ,r-tibble)))
11975 (home-page "http://github.com/rnabioco/valr")
11976 (synopsis "Genome interval arithmetic in R")
11977 (description
11978 "This package enables you to read and manipulate genome intervals and
11979 signals. It provides functionality similar to command-line tool suites within
11980 R, enabling interactive analysis and visualization of genome-scale data.")
11981 (license license:expat)))
11982
11983 (define-public r-rematch2
11984 (package
11985 (name "r-rematch2")
11986 (version "2.0.1")
11987 (source
11988 (origin
11989 (method url-fetch)
11990 (uri (cran-uri "rematch2" version))
11991 (sha256
11992 (base32
11993 "16k0i5p7fa3qfxv59ijyn638wpz8n4jrkrnilqmh5g9l8f8bn4h6"))))
11994 (build-system r-build-system)
11995 (propagated-inputs
11996 `(("r-tibble" ,r-tibble)))
11997 (home-page "https://github.com/r-lib/rematch2")
11998 (synopsis "Tidy output from regular expression matching")
11999 (description
12000 "This package provides wrappers on @code{regexpr} and @code{gregexpr} to
12001 return the match results in tidy data frames.")
12002 (license license:expat)))
12003
12004 (define-public r-picante
12005 (package
12006 (name "r-picante")
12007 (version "1.8")
12008 (source
12009 (origin
12010 (method url-fetch)
12011 (uri (cran-uri "picante" version))
12012 (sha256
12013 (base32
12014 "1bcq2j7fs89c2jib68qq6la67rxyg9raryf162mwvjakpf6k19l1"))))
12015 (build-system r-build-system)
12016 (propagated-inputs
12017 `(("r-ape" ,r-ape)
12018 ("r-nlme" ,r-nlme)
12019 ("r-vegan" ,r-vegan)))
12020 (home-page "https://cran.r-project.org/web/packages/picante/")
12021 (synopsis "Integrating phylogenies and ecology")
12022 (description
12023 "This package provides functions for phylocom integration, community
12024 analyses, null-models, traits and evolution. It implements numerous
12025 ecophylogenetic approaches including measures of community phylogenetic and
12026 trait diversity, phylogenetic signal, estimation of trait values for
12027 unobserved taxa, null models for community and phylogeny randomizations, and
12028 utility functions for data input/output and phylogeny plotting. A full
12029 description of package functionality and methods are provided by Kembel et
12030 al. (2010).")
12031 (license license:gpl2)))
12032
12033 (define-public r-reinforcelearn
12034 (package
12035 (name "r-reinforcelearn")
12036 (version "0.2.1")
12037 (source
12038 (origin
12039 (method url-fetch)
12040 (uri (cran-uri "reinforcelearn" version))
12041 (sha256
12042 (base32
12043 "176z2q69p24i29a8sh19xxn2zl3h1z2ixdssr5i6m4yvkvdrvv3b"))))
12044 (build-system r-build-system)
12045 (propagated-inputs
12046 `(("r-checkmate" ,r-checkmate)
12047 ("r-nnet" ,r-nnet)
12048 ("r-purrr" ,r-purrr)
12049 ("r-r6" ,r-r6)))
12050 (home-page "https://markusdumke.github.io/reinforcelearn")
12051 (synopsis "Reinforcement learning")
12052 (description
12053 "This package implements reinforcement learning environments and
12054 algorithms as described in Sutton & Barto (1998). The Q-Learning algorithm
12055 can be used with function approximation, eligibility traces (Singh & Sutton,
12056 1996) and experience replay (Mnih et al., 2013).")
12057 (license license:expat)))
12058
12059 (define-public r-lemon
12060 (package
12061 (name "r-lemon")
12062 (version "0.4.3")
12063 (source
12064 (origin
12065 (method url-fetch)
12066 (uri (cran-uri "lemon" version))
12067 (sha256
12068 (base32
12069 "0wsn5bfg10wq4dnrgpyraz2bzx9p19c7hf1pwj3h4zmpqfgsdbpw"))))
12070 (build-system r-build-system)
12071 (propagated-inputs
12072 `(("r-ggplot2" ,r-ggplot2)
12073 ("r-gridextra" ,r-gridextra)
12074 ("r-gtable" ,r-gtable)
12075 ("r-knitr" ,r-knitr)
12076 ("r-lattice" ,r-lattice)
12077 ("r-plyr" ,r-plyr)
12078 ("r-scales" ,r-scales)))
12079 (home-page "https://github.com/stefanedwards/lemon")
12080 (synopsis "Freshen up your ggplot2 plots")
12081 (description
12082 "This package provides functions for working with legends and axis lines
12083 of ggplot2, facets that repeat axis lines on all panels, and some knitr
12084 extensions.")
12085 (license license:gpl3)))
12086
12087 (define-public r-wgaim
12088 (package
12089 (name "r-wgaim")
12090 (version "1.4-11")
12091 (source
12092 (origin
12093 (method url-fetch)
12094 (uri (cran-uri "wgaim" version))
12095 (sha256
12096 (base32
12097 "1jjyp100dcjjczp61xlvhmy48ynniqcys535vzbgswhr7fvijymg"))))
12098 (build-system r-build-system)
12099 (propagated-inputs
12100 `(("r-lattice" ,r-lattice)
12101 ("r-qtl" ,r-qtl)))
12102 (home-page "https://cran.r-project.org/web/packages/wgaim")
12103 (synopsis "Whole genome average interval mapping for QTL detection")
12104 (description
12105 "This package integrates sophisticated mixed modelling methods with a
12106 whole genome approach to detecting significant QTL in linkage maps.")
12107 (license license:gpl2+)))
12108
12109 (define-public r-bedr
12110 (package
12111 (name "r-bedr")
12112 (version "1.0.7")
12113 (source
12114 (origin
12115 (method url-fetch)
12116 (uri (cran-uri "bedr" version))
12117 (sha256
12118 (base32
12119 "0zpqvyjgwyqawxm8qrhcv8zq2b3yxgcqkkc87br29yrl7sjb8h6j"))))
12120 (build-system r-build-system)
12121 (propagated-inputs
12122 `(("r-data-table" ,r-data-table)
12123 ("r-r-utils" ,r-r-utils)
12124 ("r-testthat" ,r-testthat)
12125 ("r-venndiagram" ,r-venndiagram)
12126 ("r-yaml" ,r-yaml)
12127 ("bedops" ,bedops)
12128 ("bedtools" ,bedtools)
12129 ("htslib" ,htslib))) ; for tabix
12130 (native-inputs
12131 `(("r-knitr" ,r-knitr))) ; for vignettes
12132 (home-page "https://cran.r-project.org/web/packages/bedr")
12133 (synopsis "Genomic region processing")
12134 (description
12135 "This package is for genomic regions processing using command line tools
12136 such as BEDTools, BEDOPS and Tabix. These tools offer scalable and efficient
12137 utilities to perform genome arithmetic e.g indexing, formatting and merging.
12138 The bedr package's API enhances access to these tools as well as offers
12139 additional utilities for genomic regions processing.")
12140 (license license:gpl2)))
12141
12142 (define-public r-partitions
12143 (package
12144 (name "r-partitions")
12145 (version "1.9-19")
12146 (source
12147 (origin
12148 (method url-fetch)
12149 (uri (cran-uri "partitions" version))
12150 (sha256
12151 (base32
12152 "1pklfnjdc094c8nzkqcdvqzdh8v3p5n8jbg4pf9678iw648saiyx"))))
12153 (build-system r-build-system)
12154 (propagated-inputs
12155 `(("r-gmp" ,r-gmp)
12156 ("r-polynom" ,r-polynom)))
12157 (home-page "https://cran.r-project.org/web/packages/partitions")
12158 (synopsis "Additive partitions of integers")
12159 (description
12160 "This package provides tools to enumerates the partitions, unequal
12161 partitions, and restricted partitions of an integer; the three corresponding
12162 partition functions are also given.")
12163 ;; Any version of the GPL
12164 (license license:gpl2+)))
12165
12166 (define-public r-brobdingnag
12167 (package
12168 (name "r-brobdingnag")
12169 (version "1.2-6")
12170 (source
12171 (origin
12172 (method url-fetch)
12173 (uri (cran-uri "Brobdingnag" version))
12174 (sha256
12175 (base32
12176 "1m3ajvcksqfck5l5hj5xiflj4ry6d896ybv4f0xxks8chgnwmv0r"))))
12177 (properties `((upstream-name . "Brobdingnag")))
12178 (build-system r-build-system)
12179 (home-page "https://github.com/RobinHankin/Brobdingnag.git")
12180 (synopsis "Very large numbers in R")
12181 (description
12182 "This package handles very large numbers in R. Real numbers are held
12183 using their natural logarithms, plus a logical flag indicating sign. The
12184 package includes a vignette that gives a step-by-step introduction to using S4
12185 methods.")
12186 ;; Any version of the GPL
12187 (license license:gpl2+)))
12188
12189 (define-public r-untb
12190 (package
12191 (name "r-untb")
12192 (version "1.7-4")
12193 (source
12194 (origin
12195 (method url-fetch)
12196 (uri (cran-uri "untb" version))
12197 (sha256
12198 (base32
12199 "1i7m4vfslsix98dwx4jlrsldm7fhhfp25gr7aapcxqxms7ryaby6"))))
12200 (build-system r-build-system)
12201 (propagated-inputs
12202 `(("r-brobdingnag" ,r-brobdingnag)
12203 ("r-partitions" ,r-partitions)
12204 ("r-polynom" ,r-polynom)))
12205 (home-page "https://github.com/RobinHankin/untb.git")
12206 (synopsis "Ecological drift under the UNTB")
12207 (description
12208 "This package provides numerical simulations, and visualizations, of
12209 Hubbell's @dfn{Unified Neutral Theory of Biodiversity} (UNTB).")
12210 (license license:gpl2+)))
12211
12212 (define-public r-stepwise
12213 (package
12214 (name "r-stepwise")
12215 (version "0.3")
12216 (source
12217 (origin
12218 (method url-fetch)
12219 (uri (cran-uri "stepwise" version))
12220 (sha256
12221 (base32
12222 "1lbx1bxwkf9dw6q46w40pp7h5nkxgghmx8rkpaymm6iybc7gyir2"))))
12223 (build-system r-build-system)
12224 (home-page "http://stat.sfu.ca/statgen/research/stepwise.html")
12225 (synopsis "Stepwise detection of recombination breakpoints")
12226 (description
12227 "This package provides a stepwise approach to identifying recombination
12228 breakpoints in a genomic sequence alignment.")
12229 (license license:gpl2+)))
12230
12231 (define-public r-snpmaxsel
12232 (package
12233 (name "r-snpmaxsel")
12234 (version "1.0-3")
12235 (source
12236 (origin
12237 (method url-fetch)
12238 (uri (cran-uri "SNPmaxsel" version))
12239 (sha256
12240 (base32
12241 "0pjvixwqzjd3jwccc8yqq9c76afvbmfq0z1w0cwyj8bblrjpx13z"))))
12242 (properties `((upstream-name . "SNPmaxsel")))
12243 (build-system r-build-system)
12244 (propagated-inputs
12245 `(("r-combinat" ,r-combinat)
12246 ("r-mvtnorm" ,r-mvtnorm)))
12247 (home-page "https://cran.r-project.org/web/packages/SNPmaxsel/index.html")
12248 (synopsis "Maximally selected statistics for SNP data")
12249 (description
12250 "This package implements asymptotic methods related to maximally selected
12251 statistics, with applications to @dfn{single-nucleotide polymorphism} (SNP)
12252 data.")
12253 (license license:gpl2+)))
12254
12255 (define-public r-acsnminer
12256 (package
12257 (name "r-acsnminer")
12258 (version "0.16.8.25")
12259 (source (origin
12260 (method url-fetch)
12261 (uri (cran-uri "ACSNMineR" version))
12262 (sha256
12263 (base32
12264 "0gh604s8qall6zfjlwcg2ilxjvz08dplf9k5g47idhv43scm748l"))))
12265 (properties `((upstream-name . "ACSNMineR")))
12266 (build-system r-build-system)
12267 (propagated-inputs
12268 `(("r-ggplot2" ,r-ggplot2)
12269 ("r-gridextra" ,r-gridextra)))
12270 (home-page "https://cran.r-project.org/web/packages/ACSNMineR")
12271 (synopsis "Gene enrichment analysis")
12272 (description
12273 "This package provides tools to compute and represent gene set enrichment
12274 or depletion from your data based on pre-saved maps from the @dfn{Atlas of
12275 Cancer Signalling Networks} (ACSN) or user imported maps. The gene set
12276 enrichment can be run with hypergeometric test or Fisher exact test, and can
12277 use multiple corrections. Visualization of data can be done either by
12278 barplots or heatmaps.")
12279 (license license:gpl2+)))
12280
12281 (define-public r-seqinr
12282 (package
12283 (name "r-seqinr")
12284 (version "3.4-5")
12285 (source
12286 (origin
12287 (method url-fetch)
12288 (uri (cran-uri "seqinr" version))
12289 (sha256
12290 (base32
12291 "17zv0n5cji17izwmwg0jcbxbjl3w5rls91w15svcnlpxjms38ahn"))))
12292 (build-system r-build-system)
12293 (propagated-inputs
12294 `(("r-ade4" ,r-ade4)
12295 ("r-segmented" ,r-segmented)))
12296 (inputs
12297 `(("zlib" ,zlib)))
12298 (home-page "http://seqinr.r-forge.r-project.org/")
12299 (synopsis "Biological sequences retrieval and analysis")
12300 (description
12301 "This package provides tools for exploratory data analysis and data
12302 visualization of biological sequence (DNA and protein) data. It also includes
12303 utilities for sequence data management under the ACNUC system.")
12304 (license license:gpl2+)))
12305
12306 (define-public r-units
12307 (package
12308 (name "r-units")
12309 (version "0.6-3")
12310 (source
12311 (origin
12312 (method url-fetch)
12313 (uri (cran-uri "units" version))
12314 (sha256
12315 (base32
12316 "0kx640h60s3zzkdr302asap7diap6vri6d41scnx507yvkcqiph3"))))
12317 (build-system r-build-system)
12318 (inputs
12319 `(("udunits" ,udunits)))
12320 (propagated-inputs
12321 `(("r-rcpp" ,r-rcpp)))
12322 (home-page "https://github.com/r-quantities/units/")
12323 (synopsis "Measurement Units for R Vectors")
12324 (description
12325 "This package provides support for measurement units in R vectors,
12326 matrices and arrays: automatic propagation, conversion, derivation and
12327 simplification of units; raising errors in case of unit incompatibility. It
12328 is compatible with the @code{POSIXct}, @code{Date} and @code{difftime}
12329 classes.")
12330 (license license:gpl2)))
12331
12332 (define-public r-classint
12333 (package
12334 (name "r-classint")
12335 (version "0.3-3")
12336 (source
12337 (origin
12338 (method url-fetch)
12339 (uri (cran-uri "classInt" version))
12340 (sha256
12341 (base32
12342 "0c2z6shlxa928xa20yl956r06lx20mji3mwipdvmj3f4z5g6hgm9"))))
12343 (properties `((upstream-name . "classInt")))
12344 (build-system r-build-system)
12345 (propagated-inputs
12346 `(("r-class" ,r-class)
12347 ("r-e1071" ,r-e1071)
12348 ("r-kernsmooth" ,r-kernsmooth)))
12349 (native-inputs `(("gfortran" ,gfortran)))
12350 (home-page "https://github.com/r-spatial/classInt/")
12351 (synopsis "Choose univariate class intervals")
12352 (description
12353 "This package provides selected commonly used methods for choosing
12354 univariate class intervals for mapping or other graphics purposes.")
12355 (license license:gpl2+)))
12356
12357 (define-public r-spdata
12358 (package
12359 (name "r-spdata")
12360 (version "0.3.0")
12361 (source
12362 (origin
12363 (method url-fetch)
12364 (uri (cran-uri "spData" version))
12365 (sha256
12366 (base32
12367 "162cqb331ki43jx4r8lpkjpn2l712figd896rnawg9j1jmjyl96y"))))
12368 (properties `((upstream-name . "spData")))
12369 (build-system r-build-system)
12370 (home-page "https://github.com/Nowosad/spData")
12371 (synopsis "Datasets for spatial analysis")
12372 (description
12373 "This a package containing diverse spatial datasets for demonstrating,
12374 benchmarking and teaching spatial data analysis. It includes R data of class
12375 @code{sf}, @code{Spatial}, and @code{nb}. It also contains data stored in a
12376 range of file formats including GeoJSON, ESRI Shapefile and GeoPackage. Some
12377 of the datasets are designed to illustrate specific analysis techniques.
12378 @code{cycle_hire()} and @code{cycle_hire_osm()}, for example, are designed to
12379 illustrate point pattern analysis techniques.")
12380 (license license:cc0)))
12381
12382 (define-public r-learnbayes
12383 (package
12384 (name "r-learnbayes")
12385 (version "2.15.1")
12386 (source
12387 (origin
12388 (method url-fetch)
12389 (uri (cran-uri "LearnBayes" version))
12390 (sha256
12391 (base32
12392 "0ch54v2zz2yyyk0lvn5rfikdmyz1qh9j1wk3585wl8v58mc0h4cv"))))
12393 (properties `((upstream-name . "LearnBayes")))
12394 (build-system r-build-system)
12395 (home-page "https://cran.r-project.org/web/packages/LearnBayes")
12396 (synopsis "Functions for learning Bayesian inference")
12397 (description
12398 "This package provides a collection of functions helpful in learning the
12399 basic tenets of Bayesian statistical inference. It contains functions for
12400 summarizing basic one and two parameter posterior distributions and predictive
12401 distributions. It contains MCMC algorithms for summarizing posterior
12402 distributions defined by the user. It also contains functions for regression
12403 models, hierarchical models, Bayesian tests, and illustrations of Gibbs
12404 sampling.")
12405 (license license:gpl2+)))
12406
12407 (define-public r-deldir
12408 (package
12409 (name "r-deldir")
12410 (version "0.1-21")
12411 (source
12412 (origin
12413 (method url-fetch)
12414 (uri (cran-uri "deldir" version))
12415 (sha256
12416 (base32
12417 "03392pl6j8rm3n32xrfkyfx866k1vm5sj87pva70yyiwh70vrnmr"))))
12418 (build-system r-build-system)
12419 (native-inputs `(("gfortran" ,gfortran)))
12420 (home-page "https://cran.r-project.org/web/packages/deldir")
12421 (synopsis "Delaunay triangulation and Dirichlet (Voronoi) tessellation")
12422 (description
12423 "This package provides tools for calculating the Delaunay triangulation
12424 and the Dirichlet or Voronoi tessellation (with respect to the entire plane)
12425 of a planar point set. It plots triangulations and tessellations in various
12426 ways, clips tessellations to sub-windows, calculates perimeters of
12427 tessellations, and summarizes information about the tiles of the
12428 tessellation.")
12429 (license license:gpl2+)))
12430
12431 (define-public r-sf
12432 (package
12433 (name "r-sf")
12434 (version "0.7-4")
12435 (source
12436 (origin
12437 (method url-fetch)
12438 (uri (cran-uri "sf" version))
12439 (sha256
12440 (base32
12441 "0vnyr7xyfcl928kbrb1k8l4fkd0cjrfq486g6gxpvy5j0cc2h4i1"))))
12442 (build-system r-build-system)
12443 (inputs
12444 `(("gdal" ,gdal)
12445 ("geos" ,geos)
12446 ("proj" ,proj.4)
12447 ("zlib" ,zlib)))
12448 (propagated-inputs
12449 `(("r-classint" ,r-classint)
12450 ("r-dbi" ,r-dbi)
12451 ("r-magrittr" ,r-magrittr)
12452 ("r-rcpp" ,r-rcpp)
12453 ("r-units" ,r-units)))
12454 (native-inputs `(("pkg-config" ,pkg-config)))
12455 (home-page "https://github.com/r-spatial/sf/")
12456 (synopsis "Simple features for R")
12457 (description
12458 "This package provides support for simple features, a standardized way to
12459 encode spatial vector data. It binds to GDAL for reading and writing data, to
12460 GEOS for geometrical operations, and to PROJ for projection conversions and
12461 datum transformations.")
12462 ;; Either of these licenses
12463 (license (list license:gpl2 license:expat))))
12464
12465 (define-public r-spdep
12466 (package
12467 (name "r-spdep")
12468 (version "1.1-2")
12469 (source
12470 (origin
12471 (method url-fetch)
12472 (uri (cran-uri "spdep" version))
12473 (sha256
12474 (base32
12475 "06mk81kc1ml2wjc8wwwgr0wasjcr4mwrxpfa8vfc373bmnha635s"))))
12476 (build-system r-build-system)
12477 (propagated-inputs
12478 `(("r-boot" ,r-boot)
12479 ("r-coda" ,r-coda)
12480 ("r-deldir" ,r-deldir)
12481 ("r-expm" ,r-expm)
12482 ("r-gmodels" ,r-gmodels)
12483 ("r-learnbayes" ,r-learnbayes)
12484 ("r-mass" ,r-mass)
12485 ("r-matrix" ,r-matrix)
12486 ("r-nlme" ,r-nlme)
12487 ("r-sf" ,r-sf)
12488 ("r-sp" ,r-sp)
12489 ("r-spdata" ,r-spdata)))
12490 (home-page "https://github.com/r-spatial/spdep/")
12491 (synopsis "Spatial dependence: weighting schemes, statistics and models")
12492 (description
12493 "This package provides a collection of functions to create spatial
12494 weights matrix objects from polygon contiguities, from point patterns by
12495 distance and tessellations, for summarizing these objects, and for permitting
12496 their use in spatial data analysis, including regional aggregation by minimum
12497 spanning tree.")
12498 (license license:gpl2+)))
12499
12500 (define-public r-adegenet
12501 (package
12502 (name "r-adegenet")
12503 (version "2.1.1")
12504 (source
12505 (origin
12506 (method url-fetch)
12507 (uri (cran-uri "adegenet" version))
12508 (sha256
12509 (base32
12510 "0ynfblp0hbd3dp3k86fn1wyhqr28lk6hs2bg4q7gyf0sfdfzwhrh"))))
12511 (build-system r-build-system)
12512 (propagated-inputs
12513 `(("r-ade4" ,r-ade4)
12514 ("r-ape" ,r-ape)
12515 ("r-boot" ,r-boot)
12516 ("r-dplyr" ,r-dplyr)
12517 ("r-ggplot2" ,r-ggplot2)
12518 ("r-igraph" ,r-igraph)
12519 ("r-mass" ,r-mass)
12520 ("r-reshape2" ,r-reshape2)
12521 ("r-seqinr" ,r-seqinr)
12522 ("r-shiny" ,r-shiny)
12523 ("r-spdep" ,r-spdep)
12524 ("r-vegan" ,r-vegan)))
12525 (home-page "https://github.com/thibautjombart/adegenet")
12526 (synopsis "Exploratory analysis of genetic and genomic data")
12527 (description
12528 "This package provides a toolset for the exploration of genetic and
12529 genomic data. Adegenet provides formal (S4) classes for storing and handling
12530 various genetic data, including genetic markers with varying ploidy and
12531 hierarchical population structure (@code{genind} class), alleles counts by
12532 populations (@code{genpop}), and genome-wide SNP data (@code{genlight}). It
12533 also implements original multivariate methods (DAPC, sPCA), graphics,
12534 statistical tests, simulation tools, distance and similarity measures, and
12535 several spatial methods. A range of both empirical and simulated datasets is
12536 also provided to illustrate various methods.")
12537 (license license:gpl2+)))
12538
12539 (define-public r-pegas
12540 (package
12541 (name "r-pegas")
12542 (version "0.11")
12543 (source
12544 (origin
12545 (method url-fetch)
12546 (uri (cran-uri "pegas" version))
12547 (sha256
12548 (base32
12549 "0l21bapzbjcvblbvks3jh9rpy9hng1ccd7f0glhqw695lc737bpx"))))
12550 (build-system r-build-system)
12551 (propagated-inputs
12552 `(("r-adegenet" ,r-adegenet)
12553 ("r-ape" ,r-ape)))
12554 (home-page "http://ape-package.ird.fr/pegas.html")
12555 (synopsis "Population and evolutionary genetics analysis system")
12556 (description
12557 "This package provides functions for reading, writing, plotting,
12558 analysing, and manipulating allelic and haplotypic data, including from VCF
12559 files, and for the analysis of population nucleotide sequences and
12560 micro-satellites including coalescent analyses, linkage disequilibrium,
12561 population structure (Fst, Amova) and equilibrium (HWE), haplotype networks,
12562 minimum spanning tree and network, and median-joining networks.")
12563 (license license:gpl2+)))
12564
12565 (define-public r-rmetasim
12566 (package
12567 (name "r-rmetasim")
12568 (version "3.1.7")
12569 (source
12570 (origin
12571 (method url-fetch)
12572 (uri (cran-uri "rmetasim" version))
12573 (sha256
12574 (base32
12575 "0sz4mdprdi6sgkfwfdvh2hr9nxiwq17sw0vggq3cvs7lzb0i6m9r"))))
12576 (build-system r-build-system)
12577 (propagated-inputs
12578 `(("r-ade4" ,r-ade4)
12579 ("r-adegenet" ,r-adegenet)
12580 ("r-gtools" ,r-gtools)
12581 ("r-pegas" ,r-pegas)))
12582 (home-page "https://cran.r-project.org/web/packages/rmetasim")
12583 (synopsis "Individual-based population genetic simulation environment")
12584 (description
12585 "This package provides an interface between R and the metasim simulation
12586 engine. The simulation environment is documented in: Strand, A.(2002),
12587 Metasim 1.0: an individual-based environment for simulating population
12588 genetics of complex population dynamics.")
12589 ;; Any GPL version
12590 (license license:gpl2+)))
12591
12592 (define-public r-genetics
12593 (package
12594 (name "r-genetics")
12595 (version "1.3.8.1.2")
12596 (source
12597 (origin
12598 (method url-fetch)
12599 (uri (cran-uri "genetics" version))
12600 (sha256
12601 (base32
12602 "1v0ylnia6c44v356dsmnkx6054vcxazpzsrdh3yph5ch5vg6gjrh"))))
12603 (build-system r-build-system)
12604 (propagated-inputs
12605 `(("r-combinat" ,r-combinat)
12606 ("r-gdata" ,r-gdata)
12607 ("r-gtools" ,r-gtools)
12608 ("r-mass" ,r-mass)
12609 ("r-mvtnorm" ,r-mvtnorm)))
12610 (home-page "https://cran.r-project.org/web/packages/genetics/")
12611 (synopsis "Population genetics")
12612 (description
12613 "This package provides classes and methods for handling genetic data.
12614 It includes classes to represent genotypes and haplotypes at single markers up
12615 to multiple markers on multiple chromosomes. Function include allele
12616 frequencies, flagging homo/heterozygotes, flagging carriers of certain
12617 alleles, estimating and testing for Hardy-Weinberg disequilibrium, estimating
12618 and testing for linkage disequilibrium, ...")
12619 ;; Any GPL version.
12620 (license license:gpl2+)))
12621
12622 (define-public r-snp-plotter
12623 (package
12624 (name "r-snp-plotter")
12625 (version "0.5.1")
12626 (source
12627 (origin
12628 (method url-fetch)
12629 (uri (cran-uri "snp.plotter" version))
12630 (sha256
12631 (base32
12632 "16apsqvkah5l0d5qcwp3lq2jspkb6n62wzr0wskmj84jblx483vv"))))
12633 (properties `((upstream-name . "snp.plotter")))
12634 (build-system r-build-system)
12635 (propagated-inputs `(("r-genetics" ,r-genetics)))
12636 (home-page "https://cran.r-project.org/web/packages/snp.plotter/")
12637 (synopsis "Plot p-values using single SNP and/or haplotype data")
12638 (description
12639 "This package helps you create plots of p-values using single SNP and/or
12640 haplotype data. Main features of the package include options to display a
12641 @dfn{linkage disequilibrium} (LD) plot and the ability to plot multiple
12642 datasets simultaneously. Plots can be created using global and/or individual
12643 haplotype p-values along with single SNP p-values. Images are created as
12644 either PDF/EPS files.")
12645 (license license:gpl2+)))
12646
12647 (define-public r-polspline
12648 (package
12649 (name "r-polspline")
12650 (version "1.1.15")
12651 (source
12652 (origin
12653 (method url-fetch)
12654 (uri (cran-uri "polspline" version))
12655 (sha256
12656 (base32
12657 "19zs4kpagsrzhng1byjbz1c4jxnfk58h4rgr096ml1bjwrgamnwc"))))
12658 (build-system r-build-system)
12659 (native-inputs `(("gfortran" ,gfortran)))
12660 (home-page "https://cran.r-project.org/web/packages/polspline/")
12661 (synopsis "Polynomial spline routines")
12662 (description
12663 "This package provides routines for the polynomial spline fitting
12664 routines hazard regression, hazard estimation with flexible tails, logspline,
12665 lspec, polyclass, and polymars.")
12666 (license license:gpl2+)))
12667
12668 (define-public r-rms
12669 (package
12670 (name "r-rms")
12671 (version "5.1-3.1")
12672 (source
12673 (origin
12674 (method url-fetch)
12675 (uri (cran-uri "rms" version))
12676 (sha256
12677 (base32
12678 "0drbr3g0x5pbxyzy50wnf92rbal8izizrcqslqhg0gsfg9adjih9"))))
12679 (build-system r-build-system)
12680 (propagated-inputs
12681 `(("r-ggplot2" ,r-ggplot2)
12682 ("r-hmisc" ,r-hmisc)
12683 ("r-htmltable" ,r-htmltable)
12684 ("r-htmltools" ,r-htmltools)
12685 ("r-lattice" ,r-lattice)
12686 ("r-multcomp" ,r-multcomp)
12687 ("r-nlme" ,r-nlme)
12688 ("r-polspline" ,r-polspline)
12689 ("r-quantreg" ,r-quantreg)
12690 ("r-rpart" ,r-rpart)
12691 ("r-sparsem" ,r-sparsem)
12692 ("r-survival" ,r-survival)))
12693 (native-inputs `(("gfortran" ,gfortran)))
12694 (home-page "http://biostat.mc.vanderbilt.edu/rms")
12695 (synopsis "Regression modeling strategies")
12696 (description
12697 "This is a package for regression modeling, testing, estimation,
12698 validation, graphics, prediction, and typesetting by storing enhanced model
12699 design attributes in the fit. The rms package is a collection of functions
12700 that assist with and streamline modeling. It also contains functions for
12701 binary and ordinal logistic regression models, ordinal models for continuous Y
12702 with a variety of distribution families, and the Buckley-James multiple
12703 regression model for right-censored responses, and implements penalized
12704 maximum likelihood estimation for logistic and ordinary linear models. The
12705 package works with almost any regression model, but it was especially written
12706 to work with binary or ordinal regression models, Cox regression, accelerated
12707 failure time models, ordinary linear models, the Buckley-James model,
12708 generalized least squares for serially or spatially correlated observations,
12709 generalized linear models, and quantile regression.")
12710 (license license:gpl2+)))
12711
12712 (define-public r-haplo-stats
12713 (package
12714 (name "r-haplo-stats")
12715 (version "1.7.9")
12716 (source
12717 (origin
12718 (method url-fetch)
12719 (uri (cran-uri "haplo.stats" version))
12720 (sha256
12721 (base32
12722 "19kxascqq5qz0zdxx0w837ji207y1z2ggxkl4vmlbay03k2dw2mx"))))
12723 (properties `((upstream-name . "haplo.stats")))
12724 (build-system r-build-system)
12725 (propagated-inputs
12726 `(("r-rms" ,r-rms)))
12727 (native-inputs
12728 `(("r-r-rsp" ,r-r-rsp))) ; for vignettes
12729 (home-page "https://www.mayo.edu/research/labs/statistical-genetics-genetic-epidemiology/software")
12730 (synopsis "Analysis of haplotypes when linkage phase is ambiguous")
12731 (description
12732 "This package provides routines for the analysis of indirectly measured
12733 haplotypes. The statistical methods assume that all subjects are unrelated
12734 and that haplotypes are ambiguous (due to unknown linkage phase of the genetic
12735 markers). The main functions are: @code{haplo.em()}, @code{haplo.glm()},
12736 @code{haplo.score()}, and @code{haplo.power()}; all of which have detailed
12737 examples in the vignette.")
12738 (license license:gpl2+)))
12739
12740 (define-public r-bqtl
12741 (package
12742 (name "r-bqtl")
12743 (version "1.0-32")
12744 (source
12745 (origin
12746 (method url-fetch)
12747 (uri (cran-uri "bqtl" version))
12748 (sha256
12749 (base32
12750 "0jjqgsm9fmvz5nkgz608xfljjpmaf4rs4f7kxvpqn4b1l9s5lhci"))))
12751 (build-system r-build-system)
12752 (native-inputs `(("gfortran" ,gfortran)))
12753 (home-page "http://famprevmed.ucsd.edu/faculty/cberry/bqtl/")
12754 (synopsis "Bayesian QTL mapping toolkit")
12755 (description
12756 "This is a QTL mapping toolkit for inbred crosses and recombinant inbred
12757 lines. It includes maximum likelihood and Bayesian tools.")
12758 (license license:gpl2+)))
12759
12760 (define-public r-ibdreg
12761 (package
12762 (name "r-ibdreg")
12763 (version "0.2.5")
12764 (source
12765 (origin
12766 (method url-fetch)
12767 (uri (cran-uri "ibdreg" version))
12768 (sha256
12769 (base32
12770 "1kaa5q1byi30wzr0mw4w2cv1ssxprzcwf91wrpqwkgcsdy7dkh2g"))))
12771 (build-system r-build-system)
12772 (home-page "https://www.mayo.edu/research/labs/\
12773 statistical-genetics-genetic-epidemiology/software")
12774 (synopsis "Regression methods for IBD linkage with covariates")
12775 (description
12776 "This package provides a method to test genetic linkage with covariates
12777 by regression methods with response IBD sharing for relative pairs. Account
12778 for correlations of IBD statistics and covariates for relative pairs within
12779 the same pedigree.")
12780 (license license:gpl2+)))
12781
12782 (define-public r-dlmap
12783 (package
12784 (name "r-dlmap")
12785 (version "1.13")
12786 (source
12787 (origin
12788 (method url-fetch)
12789 (uri (cran-uri "dlmap" version))
12790 (sha256
12791 (base32
12792 "0s6wlkggkm3qndwyvw72xv1n0mcjb7ss3ajbq2ll6rv30splq0db"))))
12793 (build-system r-build-system)
12794 (propagated-inputs
12795 `(("r-ibdreg" ,r-ibdreg)
12796 ("r-mgcv" ,r-mgcv)
12797 ("r-nlme" ,r-nlme)
12798 ("r-qtl" ,r-qtl)
12799 ("r-wgaim" ,r-wgaim)))
12800 (home-page "https://cran.r-project.org/web/packages/dlmap/")
12801 (synopsis "Detection localization mapping for QTL")
12802 (description
12803 "This is package for QTL mapping in a mixed model framework with separate
12804 detection and localization stages. The first stage detects the number of QTL
12805 on each chromosome based on the genetic variation due to grouped markers on
12806 the chromosome; the second stage uses this information to determine the most
12807 likely QTL positions. The mixed model can accommodate general fixed and
12808 random effects, including spatial effects in field trials and pedigree
12809 effects. It is applicable to backcrosses, doubled haploids, recombinant
12810 inbred lines, F2 intercrosses, and association mapping populations.")
12811 (license license:gpl2)))
12812
12813 (define-public r-ldheatmap
12814 (package
12815 (name "r-ldheatmap")
12816 (version "0.99-5")
12817 (source
12818 (origin
12819 (method url-fetch)
12820 (uri (cran-uri "LDheatmap" version))
12821 (sha256
12822 (base32
12823 "0il3g3n3bzv74lz7dlhyiwc2x2417v6yhx2g47pahxdzqa09kf4s"))))
12824 (properties `((upstream-name . "LDheatmap")))
12825 (build-system r-build-system)
12826 (propagated-inputs
12827 `(("r-genetics" ,r-genetics)
12828 ("r-snpstats" ,r-snpstats)))
12829 (home-page "http://stat.sfu.ca/statgen/research/ldheatmap.html")
12830 (synopsis "Graphical display of pairwise linkage disequilibria between SNPs")
12831 (description
12832 "This package provides tools to produce a graphical display, as a heat
12833 map, of measures of pairwise linkage disequilibria between SNPs. Users may
12834 optionally include the physical locations or genetic map distances of each SNP
12835 on the plot.")
12836 (license license:gpl3)))
12837
12838 (define-public r-hwde
12839 (package
12840 (name "r-hwde")
12841 (version "0.67")
12842 (source
12843 (origin
12844 (method url-fetch)
12845 (uri (cran-uri "hwde" version))
12846 (sha256
12847 (base32
12848 "0wb2f9i5qi7w77ygh8bvydfpr7j5x8dyvnnhdkajaz0wdcpkyaqy"))))
12849 (build-system r-build-system)
12850 (home-page "https://cran.r-project.org/web/packages/hwde/")
12851 (synopsis "Models and tests for departure from Hardy-Weinberg equilibrium")
12852 (description
12853 "This package fits models for genotypic disequilibria, as described in
12854 Huttley and Wilson (2000), Weir (1996) and Weir and Wilson (1986). Contrast
12855 terms are available that account for first order interactions between loci.
12856 It also implements, for a single locus in a single population, a conditional
12857 exact test for Hardy-Weinberg equilibrium.")
12858 (license license:gpl2+)))
12859
12860 (define-public r-tdthap
12861 (package
12862 (name "r-tdthap")
12863 (version "1.1-9")
12864 (source
12865 (origin
12866 (method url-fetch)
12867 (uri (cran-uri "tdthap" version))
12868 (sha256
12869 (base32
12870 "0y01x0hcf0rw06cpn4pk17b0shf4v2c9was7vfs0zhsbq8qcwx7r"))))
12871 (build-system r-build-system)
12872 (home-page "https://cran.r-project.org/web/packages/tdthap/")
12873 (synopsis "TDT tests for extended haplotypes")
12874 (description
12875 "Functions and examples are provided for transmission/disequilibrium
12876 tests for extended marker haplotypes, as in Clayton, D. and Jones, H. (1999)
12877 \"Transmission/disequilibrium tests for extended marker haplotypes\".")
12878 (license license:artistic2.0)))
12879
12880 (define-public r-sparql
12881 (package
12882 (name "r-sparql")
12883 (version "1.16")
12884 (source (origin
12885 (method url-fetch)
12886 (uri (cran-uri "SPARQL" version))
12887 (sha256
12888 (base32
12889 "0gak1q06yyhdmcxb2n3v0h9gr1vqd0viqji52wpw211qp6r6dcrc"))))
12890 (properties `((upstream-name . "SPARQL")))
12891 (build-system r-build-system)
12892 (propagated-inputs
12893 `(("r-rcurl" ,r-rcurl)
12894 ("r-xml" ,r-xml)))
12895 (home-page "https://cran.r-project.org/web/packages/SPARQL")
12896 (synopsis "SPARQL client for R")
12897 (description "This package provides an interface to use SPARQL to pose
12898 SELECT or UPDATE queries to an end-point.")
12899 ;; The only license indication is found in the DESCRIPTION file,
12900 ;; which states GPL-3. So we cannot assume GPLv3+.
12901 (license license:gpl3)))
12902
12903 (define-public r-bookdown
12904 (package
12905 (name "r-bookdown")
12906 (version "0.11")
12907 (source (origin
12908 (method url-fetch)
12909 (uri (cran-uri "bookdown" version))
12910 (sha256
12911 (base32
12912 "0w4fkv5fqiaqgkx44p0s161imf29zir9742126xkz1pl1j25jn1r"))))
12913 (build-system r-build-system)
12914 (propagated-inputs
12915 `(("r-htmltools" ,r-htmltools)
12916 ("r-knitr" ,r-knitr)
12917 ("r-rmarkdown" ,r-rmarkdown)
12918 ("r-tinytex" ,r-tinytex)
12919 ("r-xfun" ,r-xfun)
12920 ("pandoc" ,ghc-pandoc)))
12921 (home-page "https://github.com/rstudio/bookdown")
12922 (synopsis "Authoring books and technical documents with R markdown")
12923 (description "This package provides output formats and utilities for
12924 authoring books and technical documents with R Markdown.")
12925 (license license:gpl3)))
12926
12927 (define-public r-optparse
12928 (package
12929 (name "r-optparse")
12930 (version "1.6.2")
12931 (source
12932 (origin
12933 (method url-fetch)
12934 (uri (cran-uri "optparse" version))
12935 (sha256
12936 (base32
12937 "0zrp6jakjhawrwfri270ym83vj5a7nvjk0w6b41z41ahw2da99dm"))))
12938 (build-system r-build-system)
12939 (propagated-inputs
12940 `(("r-getopt" ,r-getopt)))
12941 (home-page "https://github.com/trevorld/optparse")
12942 (synopsis "Command line option parser")
12943 (description
12944 "This package provides a command line parser inspired by Python's
12945 @code{optparse} library to be used with Rscript to write shebang scripts
12946 that accept short and long options.")
12947 (license license:gpl2+)))
12948
12949 (define-public r-wgcna
12950 (package
12951 (name "r-wgcna")
12952 (version "1.68")
12953 (source
12954 (origin
12955 (method url-fetch)
12956 (uri (cran-uri "WGCNA" version))
12957 (sha256
12958 (base32
12959 "1s7gy5vd7x67hpgli8r7ba2z99w3psiyv5hqmrh94zw141dg210a"))))
12960 (properties `((upstream-name . "WGCNA")))
12961 (build-system r-build-system)
12962 (propagated-inputs
12963 `(("r-annotationdbi" ,r-annotationdbi)
12964 ("r-doparallel" ,r-doparallel)
12965 ("r-dynamictreecut" ,r-dynamictreecut)
12966 ("r-fastcluster" ,r-fastcluster)
12967 ("r-foreach" ,r-foreach)
12968 ("r-go-db" ,r-go-db)
12969 ("r-hmisc" ,r-hmisc)
12970 ("r-impute" ,r-impute)
12971 ("r-rcpp" ,r-rcpp)
12972 ("r-robust" ,r-robust)
12973 ("r-survival" ,r-survival)
12974 ("r-matrixstats" ,r-matrixstats)
12975 ("r-preprocesscore" ,r-preprocesscore)))
12976 (home-page
12977 "http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/Rpackages/WGCNA/")
12978 (synopsis "Weighted correlation network analysis")
12979 (description
12980 "This package provides functions necessary to perform Weighted
12981 Correlation Network Analysis on high-dimensional data. It includes functions
12982 for rudimentary data cleaning, construction and summarization of correlation
12983 networks, module identification and functions for relating both variables and
12984 modules to sample traits. It also includes a number of utility functions for
12985 data manipulation and visualization.")
12986 (license license:gpl2+)))
12987
12988 (define-public r-kernlab
12989 (package
12990 (name "r-kernlab")
12991 (version "0.9-27")
12992 (source
12993 (origin
12994 (method url-fetch)
12995 (uri (cran-uri "kernlab" version))
12996 (sha256
12997 (base32
12998 "1m0xqf6gyvwayz7w3c83y32ayvnlz0jicj8ijk808zq9sh7dbbgn"))))
12999 (build-system r-build-system)
13000 (home-page "https://cran.r-project.org/web/packages/kernlab")
13001 (synopsis "Kernel-based machine learning tools")
13002 (description
13003 "This package provides kernel-based machine learning methods for
13004 classification, regression, clustering, novelty detection, quantile regression
13005 and dimensionality reduction. Among other methods @code{kernlab} includes
13006 Support Vector Machines, Spectral Clustering, Kernel PCA, Gaussian Processes
13007 and a QP solver.")
13008 (license license:gpl2)))
13009
13010 (define-public r-hierfstat
13011 (package
13012 (name "r-hierfstat")
13013 (version "0.04-22")
13014 (source
13015 (origin
13016 (method url-fetch)
13017 (uri (cran-uri "hierfstat" version))
13018 (sha256
13019 (base32
13020 "1fav2v2996v5kb1ffa6v5wxfm921syxg6as034vd3j4jfhdibyfx"))))
13021 (build-system r-build-system)
13022 (propagated-inputs
13023 `(("r-ade4" ,r-ade4)
13024 ("r-adegenet" ,r-adegenet)
13025 ("r-gtools" ,r-gtools)))
13026 (home-page "https://cran.r-project.org/web/packages/hierfstat/")
13027 (synopsis "Estimation and tests of hierarchical F-statistics")
13028 (description
13029 "This package allows the estimation of hierarchical F-statistics from
13030 haploid or diploid genetic data with any numbers of levels in the hierarchy,
13031 following the algorithm of Yang (Evolution, 1998, 52(4):950-956). Functions
13032 are also given to test via randomisations the significance of each F and
13033 variance components, using the likelihood-ratio statistics G.")
13034 (license license:gpl2+)))
13035
13036 (define-public r-hapassoc
13037 (package
13038 (name "r-hapassoc")
13039 (version "1.2-8")
13040 (source
13041 (origin
13042 (method url-fetch)
13043 (uri (cran-uri "hapassoc" version))
13044 (sha256
13045 (base32
13046 "0qs5jl0snzfchgpp6pabncwywxcmi743g91jvjiyyzw0lw85yv4s"))))
13047 (build-system r-build-system)
13048 (home-page "http://stat.sfu.ca/statgen/research/hapassoc.html")
13049 (synopsis "Inference of trait associations with SNP haplotypes")
13050 (description
13051 "Hapassoc performs likelihood inference of trait associations with
13052 haplotypes and other covariates in @dfn{generalized linear models} (GLMs). The
13053 functions are developed primarily for data collected in cohort or
13054 cross-sectional studies. They can accommodate uncertain haplotype phase and
13055 handle missing genotypes at some SNPs.")
13056 (license license:gpl2)))
13057
13058 (define-public r-sampling
13059 (package
13060 (name "r-sampling")
13061 (version "2.8")
13062 (source
13063 (origin
13064 (method url-fetch)
13065 (uri (cran-uri "sampling" version))
13066 (sha256
13067 (base32
13068 "06pj7dan0mknpsblmlnk7am78qrnwgnql5vvx7vmbfvib7rj6s9m"))))
13069 (build-system r-build-system)
13070 (propagated-inputs
13071 `(("r-lpsolve" ,r-lpsolve)
13072 ("r-mass" ,r-mass)))
13073 (home-page "https://cran.r-project.org/web/packages/sampling/")
13074 (synopsis "Survey sampling")
13075 (description
13076 "This package provides functions for drawing and calibrating samples.")
13077 (license license:gpl2+)))
13078
13079 (define-public r-r2html
13080 (package
13081 (name "r-r2html")
13082 (version "2.3.2")
13083 (source
13084 (origin
13085 (method url-fetch)
13086 (uri (cran-uri "R2HTML" version))
13087 (sha256
13088 (base32
13089 "00kxny7hajs9r2kw63qk7d03ggdxx2j1g8vbrmzp806y8aczvik9"))))
13090 (properties `((upstream-name . "R2HTML")))
13091 (build-system r-build-system)
13092 (home-page "https://github.com/nalimilan/R2HTML")
13093 (synopsis "HTML export for R objects")
13094 (description
13095 "This package includes HTML functions and methods to write in an HTML
13096 file. Thus, making HTML reports is easy. It includes a function that allows
13097 redirection on the fly, which appears to be very useful for teaching purposes,
13098 as the student can keep a copy of the produced output to keep all that they
13099 did during the course. The package comes with a vignette describing how to
13100 write HTML reports for statistical analysis. Finally, a driver for Sweave
13101 allows to parse HTML flat files containing R code and to automatically write
13102 the corresponding outputs (tables and graphs).")
13103 (license license:gpl2+)))
13104
13105 (define-public r-rjava
13106 (package
13107 (name "r-rjava")
13108 (version "0.9-11")
13109 (source
13110 (origin
13111 (method url-fetch)
13112 (uri (cran-uri "rJava" version))
13113 (sha256
13114 (base32
13115 "0s9cjy1wh7snmbqwznh8f1r4ipylr7mgda4a979z963a8lqy32n2"))))
13116 (properties `((upstream-name . "rJava")))
13117 (build-system r-build-system)
13118 (arguments
13119 `(#:modules ((guix build utils)
13120 (guix build r-build-system)
13121 (ice-9 match))
13122 #:phases
13123 (modify-phases %standard-phases
13124 (add-after 'unpack 'set-JAVA_HOME
13125 (lambda* (#:key inputs #:allow-other-keys)
13126 (let ((jdk (assoc-ref inputs "jdk")))
13127 (setenv "JAVA_HOME" jdk)
13128 (setenv "JAVA" (which "java"))
13129 (setenv "JAR" (which "jar"))
13130 (setenv "JAVAC" (which "javac"))
13131 (setenv "JAVAH" (which "javah"))
13132 (setenv "JAVA_CPPFLAGS"
13133 (string-append "-I" jdk "/include "
13134 "-I" jdk "/include/linux"))
13135 (match (find-files (string-append jdk "/jre/lib/") "libjvm.so")
13136 ((lib) (setenv "JAVA_LIBS" lib))
13137 (_ (error "Could not find libjvm.so"))))
13138 #t)))))
13139 (inputs
13140 `(("icu4c" ,icu4c)
13141 ("jdk" ,icedtea-8 "jdk")
13142 ("pcre" ,pcre)
13143 ("zlib" ,zlib)))
13144 (home-page "http://www.rforge.net/rJava/")
13145 (synopsis "Low-Level R to Java interface")
13146 (description
13147 "This package provides a low-level interface to the Java VM very much
13148 like .C/.Call and friends. It allows the creation of objects, calling methods
13149 and accessing fields.")
13150 (license license:gpl2)))
13151
13152 (define-public r-svmisc
13153 (package
13154 (name "r-svmisc")
13155 (version "1.1.0")
13156 (source
13157 (origin
13158 (method url-fetch)
13159 (uri (cran-uri "svMisc" version))
13160 (sha256
13161 (base32
13162 "01r2a73wx2sh1njky961fxabx5wgddqqjqba6vjg0f3h8r3abmn2"))))
13163 (properties `((upstream-name . "svMisc")))
13164 (build-system r-build-system)
13165 (home-page "https://github.com/SciViews/svMisc")
13166 (synopsis "Miscellaneous functions for SciViews")
13167 (description
13168 "This package provides miscellaneous functions for SciViews or general
13169 use, including tools to manage a temporary environment attached to the search
13170 path for temporary variables you do not want to @code{save()} or
13171 @code{load()}; test the current platform; showing progress bars, etc.")
13172 (license license:gpl2)))
13173
13174 (define-public r-xyz
13175 (package
13176 (name "r-xyz")
13177 (version "0.2")
13178 (source
13179 (origin
13180 (method url-fetch)
13181 (uri (cran-uri "xyz" version))
13182 (sha256
13183 (base32
13184 "13w4sb4pvgciwr8wsz785dafj2k2kpx7znz46r5d32wx88vkycp4"))))
13185 (build-system r-build-system)
13186 (propagated-inputs
13187 `(("r-rcpp" ,r-rcpp)))
13188 (home-page "https://cran.r-project.org/web/packages/xyz/")
13189 (synopsis "Algorithm for fast interaction search in high-dimensional data")
13190 (description
13191 "High dimensional interaction search by brute force requires a quadratic
13192 computational cost in the number of variables. The xyz algorithm provably
13193 finds strong interactions in almost linear time. For details of the algorithm
13194 see: G. Thanei, N. Meinshausen and R. Shah (2016). The xyz algorithm for fast
13195 interaction search in high-dimensional data.")
13196 ;; Any version of the GPL.
13197 (license license:gpl2+)))
13198
13199 (define-public r-rttf2pt1
13200 (package
13201 (name "r-rttf2pt1")
13202 (version "1.3.7")
13203 (source
13204 (origin
13205 (method url-fetch)
13206 (uri (cran-uri "Rttf2pt1" version))
13207 (sha256
13208 (base32
13209 "12hf9r3mhjr9sawdvf7qhjf1zph2q64f77i81jwvy7awidbm0kja"))))
13210 (properties `((upstream-name . "Rttf2pt1")))
13211 (build-system r-build-system)
13212 (home-page "https://github.com/wch/Rttf2pt1")
13213 (synopsis "Font conversion utility")
13214 (description
13215 "This package contains the program @code{ttf2pt1}, for use with the
13216 @code{extrafont} package.")
13217 ;; Most of the files are covered under the Expat license. Some files are
13218 ;; covered under BSD-3. Deviations for individual files are recorded in
13219 ;; the LICENSE file.
13220 (license (list license:bsd-3 license:expat
13221 (license:non-copyleft "file://LICENSE")))))
13222
13223 (define-public r-extrafontdb
13224 (package
13225 (name "r-extrafontdb")
13226 (version "1.0")
13227 (source
13228 (origin
13229 (method url-fetch)
13230 (uri (cran-uri "extrafontdb" version))
13231 (sha256
13232 (base32
13233 "115n42hfvv5h4nn4cfkfmkmn968py4lpy8zd0d6w5yylwpzbm8gs"))))
13234 (build-system r-build-system)
13235 (home-page "https://github.com/wch/extrafontdb")
13236 (synopsis "Database for the extrafont package")
13237 (description
13238 "This package holds the database for the @code{extrafont} package.")
13239 (license license:gpl2)))
13240
13241 (define-public r-extrafont
13242 (package
13243 (name "r-extrafont")
13244 (version "0.17")
13245 (source
13246 (origin
13247 (method url-fetch)
13248 (uri (cran-uri "extrafont" version))
13249 (sha256
13250 (base32
13251 "0b9k2n9sk23bh45hjgnkxpjyvpdrz1hx7kmxvmb4nhlhm1wpsv9g"))))
13252 (build-system r-build-system)
13253 (propagated-inputs
13254 `(("r-extrafontdb" ,r-extrafontdb)
13255 ("r-rttf2pt1" ,r-rttf2pt1)))
13256 (home-page "https://github.com/wch/extrafont")
13257 (synopsis "Tools for using fonts in R")
13258 (description
13259 "The extrafont package makes it easier to use fonts other than the basic
13260 PostScript fonts that R uses. Fonts that are imported into extrafont can be
13261 used with PDF or PostScript output files. There are two hurdles for using
13262 fonts in PDF (or Postscript) output files:
13263
13264 @enumerate
13265 @item Making R aware of the font and the dimensions of the characters.
13266 @item Embedding the fonts in the PDF file so that the PDF can be displayed
13267 properly on a device that doesn't have the font. This is usually needed if
13268 you want to print the PDF file or share it with others.
13269 @end enumerate
13270
13271 The extrafont package makes both of these things easier.")
13272 (license license:gpl2)))
13273
13274 (define-public r-xkcd
13275 (package
13276 (name "r-xkcd")
13277 (version "0.0.6")
13278 (source
13279 (origin
13280 (method url-fetch)
13281 (uri (cran-uri "xkcd" version))
13282 (sha256
13283 (base32
13284 "1z2y0ihn68ppay7xkglhw7djki5654g6z4bbpyy41if57z9q554f"))))
13285 (build-system r-build-system)
13286 (propagated-inputs
13287 `(("r-extrafont" ,r-extrafont)
13288 ("r-ggplot2" ,r-ggplot2)
13289 ("r-hmisc" ,r-hmisc)))
13290 (home-page "https://cran.r-project.org/web/packages/xkcd/")
13291 (synopsis "Plot ggplot2 graphics in the XKCD style")
13292 (description
13293 "This package provides the means to plot ggplot2 graphs in the style of
13294 the XKCD web comic.")
13295 (license license:gpl3)))
13296
13297 (define-public r-msigdbr
13298 (package
13299 (name "r-msigdbr")
13300 (version "6.2.1")
13301 (source
13302 (origin
13303 (method url-fetch)
13304 (uri (cran-uri "msigdbr" version))
13305 (sha256
13306 (base32
13307 "1264j1hs74kq7hyh68vfynadfi6mdpq46qm1hnwzkzzhmbzpb9cg"))))
13308 (build-system r-build-system)
13309 (propagated-inputs
13310 `(("r-dplyr" ,r-dplyr)
13311 ("r-magrittr" ,r-magrittr)
13312 ("r-rlang" ,r-rlang)
13313 ("r-tibble" ,r-tibble)))
13314 (home-page "https://github.com/igordot/msigdbr")
13315 (synopsis "MSigDB gene sets for multiple organisms")
13316 (description
13317 "This package provides the @dfn{Molecular Signatures Database} (MSigDB)
13318 gene sets typically used with the @dfn{Gene Set Enrichment Analysis} (GSEA)
13319 software in a standard R data frame with key-value pairs. Included are the
13320 original human gene symbols and Entrez IDs as well as the equivalents for
13321 various frequently studied model organisms such as mouse, rat, pig, fly, and
13322 yeast.")
13323 ;; The package is covered under the Expat license, but the upstream MSigDB
13324 ;; files are made available under the Creative Commons Attribution 4.0
13325 ;; International license.
13326 (license (list license:expat license:cc-by4.0))))
13327
13328 (define-public r-gridgraphics
13329 (package
13330 (name "r-gridgraphics")
13331 (version "0.4-1")
13332 (source
13333 (origin
13334 (method url-fetch)
13335 (uri (cran-uri "gridGraphics" version))
13336 (sha256
13337 (base32
13338 "1kr3p54bkv2q7agxrva30y9bkwkiq1k2cfl5z1kvyjv6f5xi4w5p"))))
13339 (properties `((upstream-name . "gridGraphics")))
13340 (build-system r-build-system)
13341 (home-page "https://github.com/pmur002/gridgraphics")
13342 (synopsis "Redraw base graphics using @code{grid} graphics")
13343 (description
13344 "This package provides functions to convert a page of plots drawn with
13345 the @code{graphics} package into identical output drawn with the @code{grid}
13346 package. The result looks like the original @code{graphics}-based plot, but
13347 consists of @code{grid} grobs and viewports that can then be manipulated with
13348 @code{grid} functions (e.g., edit grobs and revisit viewports).")
13349 (license license:gpl2+)))
13350
13351 (define-public r-farver
13352 (package
13353 (name "r-farver")
13354 (version "1.1.0")
13355 (source
13356 (origin
13357 (method url-fetch)
13358 (uri (cran-uri "farver" version))
13359 (sha256
13360 (base32
13361 "1dllgx121al374gyp9pjv1m8ip4imm8zhbgyh1970dsz2c4z71i0"))))
13362 (build-system r-build-system)
13363 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
13364 (home-page "https://github.com/thomasp85/farver")
13365 (synopsis "Vectorized color conversion and comparison")
13366 (description
13367 "The encoding of color can be handled in many different ways, using
13368 different color spaces. As different color spaces have different uses,
13369 efficient conversion between these representations are important. This
13370 package provides a set of functions that gives access to very fast color space
13371 conversion and comparisons implemented in C++, and offers 100-fold speed
13372 improvements over the @code{convertColor} function in the @code{grDevices}
13373 package.")
13374 (license license:expat)))
13375
13376 (define-public r-ggplotify
13377 (package
13378 (name "r-ggplotify")
13379 (version "0.0.3")
13380 (source
13381 (origin
13382 (method url-fetch)
13383 (uri (cran-uri "ggplotify" version))
13384 (sha256
13385 (base32
13386 "14hqlpvnaq5psz1ljcpw9isa06827rg3fm5c1dx159rsjfi56yby"))))
13387 (build-system r-build-system)
13388 (propagated-inputs
13389 `(("r-ggplot2" ,r-ggplot2)
13390 ("r-gridgraphics" ,r-gridgraphics)
13391 ("r-rvcheck" ,r-rvcheck)))
13392 (home-page "https://github.com/GuangchuangYu/ggplotify")
13393 (synopsis "Convert plots to @code{grob} or @code{ggplot} object")
13394 (description
13395 "This package provides tools to convert plot function calls (using
13396 expression or formula) to @code{grob} or @code{ggplot} objects that are
13397 compatible with the @code{grid} and @code{ggplot2} environment. With this
13398 package, we are able to e.g. use @code{cowplot} to align plots produced by
13399 @code{base} graphics, @code{grid}, @code{lattice}, @code{vcd} etc. by
13400 converting them to @code{ggplot} objects.")
13401 (license license:artistic2.0)))
13402
13403 (define-public r-triebeard
13404 (package
13405 (name "r-triebeard")
13406 (version "0.3.0")
13407 (source
13408 (origin
13409 (method url-fetch)
13410 (uri (cran-uri "triebeard" version))
13411 (sha256
13412 (base32
13413 "1hqyz57gph02c9fdc07lxz113bbklif3g18sw8jan6pakhhdc7dz"))))
13414 (build-system r-build-system)
13415 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
13416 (home-page "https://github.com/Ironholds/triebeard/")
13417 (synopsis "Radix trees in Rcpp")
13418 (description
13419 "Radix trees, or tries, are key-value data structures optimized for
13420 efficient lookups, similar in purpose to hash tables. This package provides
13421 an implementation of radix trees for use in R programming and in developing
13422 packages with Rcpp.")
13423 (license license:expat)))
13424
13425 (define-public r-tweenr
13426 (package
13427 (name "r-tweenr")
13428 (version "1.0.1")
13429 (source
13430 (origin
13431 (method url-fetch)
13432 (uri (cran-uri "tweenr" version))
13433 (sha256
13434 (base32
13435 "0sq90pbln6lkc2q3zflhkxxwpqdw5dd7igrxhdnlynkdrmi83mpg"))))
13436 (build-system r-build-system)
13437 (propagated-inputs
13438 `(("r-farver" ,r-farver)
13439 ("r-magrittr" ,r-magrittr)
13440 ("r-rcpp" ,r-rcpp)
13441 ("r-rlang" ,r-rlang)))
13442 (home-page "https://github.com/thomasp85/tweenr")
13443 (synopsis "Interpolate data for smooth animations")
13444 (description
13445 "In order to create smooth animation between states of data, tweening is
13446 necessary. This package provides a range of functions for creating tweened
13447 data that can be used as basis for animation. Furthermore it adds a number of
13448 vectorized interpolaters for common R data types such as numeric, date and
13449 color.")
13450 (license license:expat)))
13451
13452 (define-public r-polyclip
13453 (package
13454 (name "r-polyclip")
13455 (version "1.10-0")
13456 (source
13457 (origin
13458 (method url-fetch)
13459 (uri (cran-uri "polyclip" version))
13460 (sha256
13461 (base32
13462 "0jyk4maqiblvj095jd59dr76kbniyli3v3xvy0a72ljszq6vrnkl"))))
13463 (build-system r-build-system)
13464 (native-inputs `(("pkg-config" ,pkg-config)))
13465 (home-page "http://www.angusj.com/delphi/clipper.php")
13466 (synopsis "Polygon clipping")
13467 (description
13468 "This package provides an R port of the library Clipper. It performs
13469 polygon clipping operations (intersection, union, set minus, set difference)
13470 for polygonal regions of arbitrary complexity, including holes. It computes
13471 offset polygons (spatial buffer zones, morphological dilations, Minkowski
13472 dilations) for polygonal regions and polygonal lines. It computes the
13473 Minkowski Sum of general polygons. There is a function for removing
13474 self-intersections from polygon data.")
13475 (license license:boost1.0)))
13476
13477 (define-public r-urltools
13478 (package
13479 (name "r-urltools")
13480 (version "1.7.3")
13481 (source
13482 (origin
13483 (method url-fetch)
13484 (uri (cran-uri "urltools" version))
13485 (sha256
13486 (base32
13487 "04x3my655dd287cbsszbnf75q0swmjlxxrblcsay7a8n3df3a830"))))
13488 (build-system r-build-system)
13489 (propagated-inputs
13490 `(("r-rcpp" ,r-rcpp)
13491 ("r-triebeard" ,r-triebeard)))
13492 (home-page "https://github.com/Ironholds/urltools/")
13493 (synopsis "Vectorized tools for URL handling and parsing")
13494 (description
13495 "This package provides a toolkit for all URL-handling needs, including
13496 encoding and decoding, parsing, parameter extraction and modification. All
13497 functions are designed to be both fast and entirely vectorized. It is
13498 intended to be useful for people dealing with web-related datasets, such as
13499 server-side logs, although may be useful for other situations involving large
13500 sets of URLs.")
13501 (license license:expat)))
13502
13503 (define-public r-ggforce
13504 (package
13505 (name "r-ggforce")
13506 (version "0.2.2")
13507 (source
13508 (origin
13509 (method url-fetch)
13510 (uri (cran-uri "ggforce" version))
13511 (sha256
13512 (base32
13513 "0snxx9zhcccxa7pz9pf3bjqmcmv9mz4m47v81hklnhm25jj40xg2"))))
13514 (build-system r-build-system)
13515 (propagated-inputs
13516 `(("r-ggplot2" ,r-ggplot2)
13517 ("r-gtable" ,r-gtable)
13518 ("r-mass" ,r-mass)
13519 ("r-polyclip" ,r-polyclip)
13520 ("r-rcpp" ,r-rcpp)
13521 ("r-rcppeigen" ,r-rcppeigen)
13522 ("r-rlang" ,r-rlang)
13523 ("r-scales" ,r-scales)
13524 ("r-tweenr" ,r-tweenr)))
13525 (home-page "https://ggforce.data-imaginist.com")
13526 (synopsis "Accelerating ggplot2")
13527 (description
13528 "The aim of the ggplot2 package is to aid in visual data investigations.
13529 This focus has led to a lack of facilities for composing specialized plots.
13530 Thi package aims to be a collection of mainly new statistics and geometries
13531 that fills this gap.")
13532 (license license:expat)))
13533
13534 (define-public r-europepmc
13535 (package
13536 (name "r-europepmc")
13537 (version "0.3")
13538 (source
13539 (origin
13540 (method url-fetch)
13541 (uri (cran-uri "europepmc" version))
13542 (sha256
13543 (base32
13544 "1ngqs1sqzkbwv98dd5z4cxj8bnz41wyd0g060a2vpqi3s99s4i2h"))))
13545 (build-system r-build-system)
13546 (propagated-inputs
13547 `(("r-dplyr" ,r-dplyr)
13548 ("r-httr" ,r-httr)
13549 ("r-jsonlite" ,r-jsonlite)
13550 ("r-plyr" ,r-plyr)
13551 ("r-progress" ,r-progress)
13552 ("r-purrr" ,r-purrr)
13553 ("r-urltools" ,r-urltools)
13554 ("r-xml2" ,r-xml2)))
13555 (home-page "https://github.com/ropensci/europepmc/")
13556 (synopsis "R Interface to the Europe PubMed Central RESTful Web Service")
13557 (description
13558 "This package provides an R Client for the
13559 @url{https://europepmc.org/RestfulWebService,Europe PubMed Central RESTful Web
13560 Service}. It gives access to both metadata on life science literature and
13561 open access full texts. Europe PMC indexes all PubMed content and other
13562 literature sources including Agricola, a bibliographic database of citations
13563 to the agricultural literature, or Biological Patents. In addition to
13564 bibliographic metadata, the client allows users to fetch citations and
13565 reference lists. Links between life-science literature and other EBI
13566 databases, including ENA, PDB or ChEMBL are also accessible.")
13567 (license license:gpl3)))
13568
13569 (define-public r-ggraph
13570 (package
13571 (name "r-ggraph")
13572 (version "1.0.2")
13573 (source
13574 (origin
13575 (method url-fetch)
13576 (uri (cran-uri "ggraph" version))
13577 (sha256
13578 (base32
13579 "0fpmp326mryd1k1qvacjadksrnhbla8h960i18lmrimzrag7692c"))))
13580 (build-system r-build-system)
13581 (propagated-inputs
13582 `(("r-digest" ,r-digest)
13583 ("r-dplyr" ,r-dplyr)
13584 ("r-ggforce" ,r-ggforce)
13585 ("r-ggplot2" ,r-ggplot2)
13586 ("r-ggrepel" ,r-ggrepel)
13587 ("r-gtable" ,r-gtable)
13588 ("r-igraph" ,r-igraph)
13589 ("r-mass" ,r-mass)
13590 ("r-plyr" ,r-plyr)
13591 ("r-rcpp" ,r-rcpp)
13592 ("r-scales" ,r-scales)
13593 ("r-viridis" ,r-viridis)))
13594 (home-page "https://cran.r-project.org/web/packages/ggraph/")
13595 (synopsis "Implementation of grammar of graphics for graphs and networks")
13596 (description
13597 "The grammar of graphics as implemented in ggplot2 is a poor fit for
13598 graph and network visualizations due to its reliance on tabular data input.
13599 The ggraph package is an extension of the ggplot2 API tailored to graph
13600 visualizations and provides the same flexible approach to building up plots
13601 layer by layer.")
13602 (license license:gpl3)))
13603
13604 (define-public r-varselrf
13605 (package
13606 (name "r-varselrf")
13607 (version "0.7-8")
13608 (source
13609 (origin
13610 (method url-fetch)
13611 (uri (cran-uri "varSelRF" version))
13612 (sha256
13613 (base32
13614 "0h49rl1j13yfh97rsfsyh9s2c4wajny4rzms2qw77d0cavxqg53i"))))
13615 (properties `((upstream-name . "varSelRF")))
13616 (build-system r-build-system)
13617 (propagated-inputs
13618 `(("r-randomforest" ,r-randomforest)))
13619 (home-page "http://ligarto.org/rdiaz/Software/Software.html")
13620 (synopsis "Variable selection using random forests")
13621 (description
13622 "This package provides tools for the variable selection from random
13623 forests using both backwards variable elimination (for the selection of small
13624 sets of non-redundant variables) and selection based on the importance
13625 spectrum (somewhat similar to scree plots; for the selection of large,
13626 potentially highly-correlated variables). The main applications are in
13627 high-dimensional data (e.g., microarray data, and other genomics and
13628 proteomics applications).")
13629 (license license:gpl2+)))
13630
13631 (define-public r-pamr
13632 (package
13633 (name "r-pamr")
13634 (version "1.56.1")
13635 (source
13636 (origin
13637 (method url-fetch)
13638 (uri (cran-uri "pamr" version))
13639 (sha256
13640 (base32
13641 "0ycpgkk23y3zzkb42n2skcyl35ps1n7jmyzfj7pbxr3f6gr2grfh"))))
13642 (build-system r-build-system)
13643 (propagated-inputs
13644 `(("r-cluster" ,r-cluster)
13645 ("r-survival" ,r-survival)))
13646 (native-inputs `(("gfortran" ,gfortran)))
13647 (home-page "https://cran.r-project.org/web/packages/pamr/")
13648 (synopsis "Prediction Analysis for Microarrays")
13649 (description
13650 "This package provides some functions for sample classification in
13651 microarrays.")
13652 (license license:gpl2)))
13653
13654 (define-public r-rda
13655 (package
13656 (name "r-rda")
13657 (version "1.0.2-2.1")
13658 (source
13659 (origin
13660 (method url-fetch)
13661 (uri (cran-uri "rda" version))
13662 (sha256
13663 (base32
13664 "1y4fawslr3i6crjaxhsdb47kfsqkyszdx6avq3r5far5a4pvc639"))))
13665 (build-system r-build-system)
13666 (home-page "https://cran.r-project.org/web/packages/rda/")
13667 (synopsis "Shrunken centroids regularized discriminant analysis")
13668 (description
13669 "This package provides tools for shrunken centroids regularized
13670 discriminant analysis for the purpose of classifying high dimensional data.")
13671 (license license:gpl2+)))
13672
13673 (define-public r-ggvis
13674 (package
13675 (name "r-ggvis")
13676 (version "0.4.4")
13677 (source
13678 (origin
13679 (method url-fetch)
13680 (uri (cran-uri "ggvis" version))
13681 (sha256
13682 (base32
13683 "1bxggjr2313kfy895j0fvrv4bg7yh2z87907lk48i1kn5c9flchk"))))
13684 (build-system r-build-system)
13685 (propagated-inputs
13686 `(("r-assertthat" ,r-assertthat)
13687 ("r-dplyr" ,r-dplyr)
13688 ("r-htmltools" ,r-htmltools)
13689 ("r-jsonlite" ,r-jsonlite)
13690 ("r-lazyeval" ,r-lazyeval)
13691 ("r-magrittr" ,r-magrittr)
13692 ("r-shiny" ,r-shiny)))
13693 (home-page "https://ggvis.rstudio.com/")
13694 (synopsis "Interactive grammar of graphics")
13695 (description
13696 "This package is a data visualization package for R providing an
13697 implementation of an interactive grammar of graphics, taking the best parts of
13698 ggplot2, combining them with the reactive framework of Shiny and drawing web
13699 graphics using Vega.")
13700 (license license:gpl2)))
13701
13702 (define-public r-gbm
13703 (package
13704 (name "r-gbm")
13705 (version "2.1.5")
13706 (source
13707 (origin
13708 (method url-fetch)
13709 (uri (cran-uri "gbm" version))
13710 (sha256
13711 (base32
13712 "0vs6ljaqhwwpgr8wlbhmm4v147rd82kl16rpaijqiylxcc8dxyq6"))))
13713 (build-system r-build-system)
13714 (propagated-inputs
13715 `(("r-gridextra" ,r-gridextra)
13716 ("r-lattice" ,r-lattice)
13717 ("r-survival" ,r-survival)))
13718 (home-page "https://github.com/gbm-developers/gbm")
13719 (synopsis "Generalized boosted regression models")
13720 (description
13721 "This package is an implementation of extensions to Freund and Schapire's
13722 AdaBoost algorithm and Friedman's gradient boosting machine. It includes
13723 regression methods for least squares, absolute loss, t-distribution loss,
13724 quantile regression, logistic, multinomial logistic, Poisson, Cox proportional
13725 hazards partial likelihood, AdaBoost exponential loss, Huberized hinge loss,
13726 and Learning to Rank measures (LambdaMart).")
13727 (license license:gpl2+)))
13728
13729 (define-public r-threejs
13730 (package
13731 (name "r-threejs")
13732 (version "0.3.1")
13733 (source
13734 (origin
13735 (method url-fetch)
13736 (uri (cran-uri "threejs" version))
13737 (sha256
13738 (base32
13739 "1s3rdlzy7man6177ycayg6xsh6k8y1r9rdj9yzn3b93j2rs0nxbi"))))
13740 (build-system r-build-system)
13741 (arguments
13742 `(#:modules ((guix build utils)
13743 (guix build r-build-system)
13744 (srfi srfi-1)
13745 (ice-9 popen))
13746 #:phases
13747 (modify-phases %standard-phases
13748 (add-after 'unpack 'process-javascript
13749 (lambda* (#:key inputs #:allow-other-keys)
13750 (with-directory-excursion "inst"
13751 (call-with-values
13752 (lambda ()
13753 (unzip2
13754 `((,(assoc-ref inputs "js-jquery")
13755 "htmlwidgets/lib/jquery/jquery.min.js")
13756 (,(assoc-ref inputs "js-threejs-85")
13757 "htmlwidgets/lib/threejs-85/three.min.js"))))
13758 (lambda (sources targets)
13759 (for-each (lambda (source target)
13760 (format #t "Processing ~a --> ~a~%"
13761 source target)
13762 (delete-file target)
13763 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
13764 (call-with-output-file target
13765 (lambda (port)
13766 (dump-port minified port)))))
13767 sources targets))))
13768 #t)))))
13769 (propagated-inputs
13770 `(("r-base64enc" ,r-base64enc)
13771 ("r-crosstalk" ,r-crosstalk)
13772 ("r-htmlwidgets" ,r-htmlwidgets)
13773 ("r-igraph" ,r-igraph)))
13774 (native-inputs
13775 `(("uglify-js" ,uglify-js)
13776 ("js-jquery"
13777 ,(origin
13778 (method url-fetch)
13779 (uri "https://code.jquery.com/jquery-3.3.1.js")
13780 (sha256
13781 (base32
13782 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))
13783 ("js-threejs-85"
13784 ,(origin
13785 (method url-fetch)
13786 (uri "https://raw.githubusercontent.com/mrdoob/three.js/r85/build/three.js")
13787 (sha256
13788 (base32
13789 "17khh3dmijdjw4qb9qih1rqhxgrmm3pc6w8lzdx6rf6a3mrc9xnl"))))))
13790 (home-page "https://bwlewis.github.io/rthreejs")
13791 (synopsis "Interactive 3D scatter plots, networks and globes")
13792 (description
13793 "Create interactive 3D scatter plots, network plots, and globes in R
13794 using the three.js visualization library.")
13795 (license license:expat)))
13796
13797 (define-public r-mlbench
13798 (package
13799 (name "r-mlbench")
13800 (version "2.1-1")
13801 (source
13802 (origin
13803 (method url-fetch)
13804 (uri (cran-uri "mlbench" version))
13805 (sha256
13806 (base32
13807 "1rp035qxfgh5ail92zjh9jh57dj0b8babw3wsg29v8ricpal30bl"))))
13808 (build-system r-build-system)
13809 (home-page "https://cran.r-project.org/web/packages/mlbench/")
13810 (synopsis "Machine learning benchmark problems")
13811 (description
13812 "This package provides a collection of artificial and real-world machine
13813 learning benchmark problems, including, e.g., several data sets from the UCI
13814 repository.")
13815 (license license:gpl2)))
13816
13817 (define-public r-mpm
13818 (package
13819 (name "r-mpm")
13820 (version "1.0-22")
13821 (source
13822 (origin
13823 (method url-fetch)
13824 (uri (cran-uri "mpm" version))
13825 (sha256
13826 (base32
13827 "0wijw8v0wmbfrda5564cmnp788qmlkk21yn5cp5qk8aprm9l1fnk"))))
13828 (build-system r-build-system)
13829 (propagated-inputs
13830 `(("r-kernsmooth" ,r-kernsmooth)
13831 ("r-mass" ,r-mass)))
13832 (home-page "http://mpm.r-forge.r-project.org")
13833 (synopsis "Multivariate projection methods")
13834 (description
13835 "This is a package for exploratory graphical analysis of multivariate
13836 data, specifically gene expression data with different projection methods:
13837 principal component analysis, correspondence analysis, spectral map
13838 analysis.")
13839 (license license:gpl2+)))
13840
13841 (define-public r-png
13842 (package
13843 (name "r-png")
13844 (version "0.1-7")
13845 (source (origin
13846 (method url-fetch)
13847 (uri (cran-uri "png" version))
13848 (sha256
13849 (base32
13850 "0g2mcp55lvvpx4kd3mn225mpbxqcq73wy5qx8b4lyf04iybgysg2"))))
13851 (build-system r-build-system)
13852 (inputs
13853 `(("libpng" ,libpng)
13854 ("zlib" ,zlib)))
13855 (home-page "http://www.rforge.net/png/")
13856 (synopsis "Read and write PNG images")
13857 (description
13858 "This package provides an easy and simple way to read, write and display
13859 bitmap images stored in the PNG format. It can read and write both files and
13860 in-memory raw vectors.")
13861 ;; Any of these GPL versions.
13862 (license (list license:gpl2 license:gpl3))))
13863
13864 (define-public r-ggcorrplot
13865 (package
13866 (name "r-ggcorrplot")
13867 (version "0.1.3")
13868 (source
13869 (origin
13870 (method url-fetch)
13871 (uri (cran-uri "ggcorrplot" version))
13872 (sha256
13873 (base32
13874 "0hi9lz121ya1l2lbm7rqlxg6fs6bvxck396dngnidrhl5fvqb41b"))))
13875 (build-system r-build-system)
13876 (propagated-inputs
13877 `(("r-ggplot2" ,r-ggplot2)
13878 ("r-reshape2" ,r-reshape2)))
13879 (home-page "http://www.sthda.com/english/wiki/ggcorrplot")
13880 (synopsis "Visualization of a correlation matrix using ggplot2")
13881 (description
13882 "The ggcorrplot package can be used to visualize easily a correlation
13883 matrix using ggplot2. It provides a solution for reordering the correlation
13884 matrix and displays the significance level on the plot. It also includes a
13885 function for computing a matrix of correlation p-values.")
13886 (license license:gpl2)))
13887
13888 (define-public r-flexdashboard
13889 (package
13890 (name "r-flexdashboard")
13891 (version "0.5.1.1")
13892 (source
13893 (origin
13894 (method url-fetch)
13895 (uri (cran-uri "flexdashboard" version))
13896 (sha256
13897 (base32
13898 "0fy3nbrr67zqgd44r2mc850s5sp0hzfcw3zqs15m8kxzj1aw067x"))))
13899 (build-system r-build-system)
13900 (arguments
13901 `(#:modules ((guix build utils)
13902 (guix build r-build-system)
13903 (srfi srfi-1)
13904 (srfi srfi-26)
13905 (ice-9 popen)
13906 (ice-9 textual-ports))
13907 #:phases
13908 (modify-phases %standard-phases
13909 (add-after 'unpack 'process-javascript
13910 (lambda* (#:key inputs #:allow-other-keys)
13911 (with-directory-excursion "inst"
13912 ;; Concatenate all components of prism.js
13913 (let ((contents (string-join
13914 (map (lambda (name)
13915 (call-with-input-file
13916 (assoc-ref inputs name)
13917 get-string-all))
13918 (list "js-prism"
13919 "js-prism-r"
13920 "js-prism-line-numbers"))
13921 "\n")))
13922 (call-with-output-file "prism-src.js"
13923 (cut display contents <>)))
13924 (call-with-values
13925 (lambda ()
13926 (unzip2
13927 `(("www/stickytableheaders/jquery.stickytableheaders.js"
13928 "www/stickytableheaders/jquery.stickytableheaders.min.js")
13929 ("www/sly/sly.js"
13930 "www/sly/sly.min.js")
13931 ("prism-src.js"
13932 "www/prism/prism.js")
13933 (,(assoc-ref inputs "js-raphael")
13934 "htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
13935 (,(assoc-ref inputs "js-featherlight")
13936 "www/featherlight/featherlight.min.js"))))
13937 (lambda (sources targets)
13938 (for-each (lambda (source target)
13939 (format #t "Processing ~a --> ~a~%"
13940 source target)
13941 (delete-file target)
13942 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
13943 (call-with-output-file target
13944 (lambda (port)
13945 (dump-port minified port)))))
13946 sources targets))))
13947 #t)))))
13948 (propagated-inputs
13949 `(("r-htmltools" ,r-htmltools)
13950 ("r-htmlwidgets" ,r-htmlwidgets)
13951 ("r-jsonlite" ,r-jsonlite)
13952 ("r-knitr" ,r-knitr)
13953 ("r-rmarkdown" ,r-rmarkdown)
13954 ("r-shiny" ,r-shiny)))
13955 (native-inputs
13956 `(("uglify-js" ,uglify-js)
13957 ("js-raphael"
13958 ,(origin
13959 (method url-fetch)
13960 (uri "https://raw.githubusercontent.com/DmitryBaranovskiy/raphael/v2.1.4/raphael.js")
13961 (sha256
13962 (base32
13963 "1h4c4akrgcj7wra9j1z1rv2406j0yf68y9c0wg8v7w9ibw2iwf1x"))))
13964 ("js-prism"
13965 ,(origin
13966 (method url-fetch)
13967 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/prism.js")
13968 (sha256
13969 (base32
13970 "0gqa9irbp9k8p5r3d98cszajzhjnssnl43nrsc5aiy7ki52z500c"))))
13971 ("js-prism-r"
13972 ,(origin
13973 (method url-fetch)
13974 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/components/prism-r.js")
13975 (sha256
13976 (base32
13977 "1x31glci7wdgr2305njy0bm2lncb0jyn0j1s2g72rqi29xid9aki"))))
13978 ("js-prism-line-numbers"
13979 ,(origin
13980 (method url-fetch)
13981 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/plugins/line-numbers/prism-line-numbers.js")
13982 (sha256
13983 (base32
13984 "1543wgf3iynrilyb27jq8px3h5gvfz5xmdib5ik2ki400c1sl991"))))
13985 ("js-featherlight"
13986 ,(origin
13987 (method url-fetch)
13988 (uri "https://raw.githubusercontent.com/noelboss/featherlight/1.3.4/src/featherlight.js")
13989 (sha256
13990 (base32
13991 "14kkhwzvp8rxq2mrck5i0xcm8v5rqwqhwnmncbng8h4qq42zx3sb"))))))
13992 (home-page "https://rmarkdown.rstudio.com/flexdashboard")
13993 (synopsis "R Markdown format for flexible dashboards")
13994 (description
13995 "This package provides an R Markdown format for converting an R Markdown
13996 document to a grid-oriented dashboard. The dashboard flexibly adapts the size
13997 of its components to the containing web page.")
13998 (license license:expat)))
13999
14000 (define-public r-preseqr
14001 (package
14002 (name "r-preseqr")
14003 (version "4.0.0")
14004 (source
14005 (origin
14006 (method url-fetch)
14007 (uri (cran-uri "preseqR" version))
14008 (sha256
14009 (base32
14010 "1g2rnnmi45649vpy6z45v5i3wxm54s138ajqrzwi3a5r7x3xnhq1"))))
14011 (properties `((upstream-name . "preseqR")))
14012 (build-system r-build-system)
14013 (propagated-inputs
14014 `(("r-polynom" ,r-polynom)))
14015 (home-page "https://cran.r-project.org/web/packages/preseqR/")
14016 (synopsis "Predicting species accumulation curves")
14017 (description
14018 "This package can be used to predict the r-species accumulation
14019 curve (r-SAC), which is the number of species represented at least r times as
14020 a function of the sampling effort. When r = 1, the curve is known as the
14021 species accumulation curve, or the library complexity curve in high-throughput
14022 genomic sequencing. The package includes both parametric and nonparametric
14023 methods, as described by Deng C, et al. (2018).")
14024 (license license:gpl3)))
14025
14026 (define-public r-mapplots
14027 (package
14028 (name "r-mapplots")
14029 (version "1.5.1")
14030 (source
14031 (origin
14032 (method url-fetch)
14033 (uri (cran-uri "mapplots" version))
14034 (sha256
14035 (base32
14036 "18s2y66f8vi8g2r8a25zbgp2xm079r8v8qxv0w71h8krycs6vs9p"))))
14037 (build-system r-build-system)
14038 (home-page "https://cran.r-project.org/web/packages/mapplots/")
14039 (synopsis "Data visualization on maps")
14040 (description
14041 "This package helps you create simple maps; add sub-plots like pie plots
14042 to a map or any other plot; format, plot and export gridded data. The package
14043 was developed for displaying fisheries data but most functions can be used for
14044 more generic data visualisation.")
14045 (license license:gpl2+)))
14046
14047 (define-public r-pmcmr
14048 (package
14049 (name "r-pmcmr")
14050 (version "4.3")
14051 (source
14052 (origin
14053 (method url-fetch)
14054 (uri (cran-uri "PMCMR" version))
14055 (sha256
14056 (base32
14057 "09bvdj2h1086r2cgy3myrhlylplxxlliv8nwx09c8kb1vn02i2ij"))))
14058 (properties `((upstream-name . "PMCMR")))
14059 (build-system r-build-system)
14060 (home-page "https://cran.r-project.org/web/packages/PMCMR/")
14061 (synopsis "Calculate pairwise multiple comparisons of mean rank sums")
14062 (description
14063 "This is a deprecated package for calculating pairwise multiple
14064 comparisons of mean rank sums. This package is superseded by the novel
14065 PMCMRplus package. The PMCMR package is no longer maintained, but kept for
14066 compatibility of reverse depending packages for some time.")
14067 (license license:gpl3+)))
14068
14069 (define-public r-downloader
14070 (package
14071 (name "r-downloader")
14072 (version "0.4")
14073 (source
14074 (origin
14075 (method url-fetch)
14076 (uri (cran-uri "downloader" version))
14077 (sha256
14078 (base32
14079 "1axggnsc27zzgr7snf41j3zd1vp3nfpmq4zj4d01axc709dyg40q"))))
14080 (build-system r-build-system)
14081 (propagated-inputs
14082 `(("r-digest" ,r-digest)))
14083 (home-page "https://github.com/wch/downloader")
14084 (synopsis "Download files over HTTP and HTTPS")
14085 (description
14086 "This package provides a wrapper for the @code{download.file} function,
14087 making it possible to download files over HTTPS across platforms. The
14088 @code{RCurl} package provides this functionality (and much more) but has
14089 external dependencies. This package has is implemented purely in R.")
14090 (license license:gpl2)))
14091
14092 (define-public r-rex
14093 (package
14094 (name "r-rex")
14095 (version "1.1.2")
14096 (source
14097 (origin
14098 (method url-fetch)
14099 (uri (cran-uri "rex" version))
14100 (sha256
14101 (base32
14102 "0alsadgjgass3wr8y5d247j12qqzg454sc84vpskclrkmz778g5x"))))
14103 (build-system r-build-system)
14104 (propagated-inputs
14105 `(("r-lazyeval" ,r-lazyeval)
14106 ("r-magrittr" ,r-magrittr)))
14107 (home-page "https://github.com/kevinushey/rex")
14108 (synopsis "Friendly regular expressions")
14109 (description
14110 "This package provides a friendly interface for the construction of
14111 regular expressions. Regular expressions are a very powerful feature, however
14112 they are often difficult to interpret. Rex allows you to build complex
14113 regular expressions from human readable expressions")
14114 (license license:expat)))
14115
14116 (define-public r-sctransform
14117 (package
14118 (name "r-sctransform")
14119 (version "0.2.0")
14120 (source
14121 (origin
14122 (method url-fetch)
14123 (uri (cran-uri "sctransform" version))
14124 (sha256
14125 (base32
14126 "1r5kiqqs318q59h2i8m7c6nhghp9w6q26ss2y5a390lkhsawgx6p"))))
14127 (build-system r-build-system)
14128 (propagated-inputs
14129 `(("r-future" ,r-future)
14130 ("r-future-apply" ,r-future-apply)
14131 ("r-ggplot2" ,r-ggplot2)
14132 ("r-gridextra" ,r-gridextra)
14133 ("r-mass" ,r-mass)
14134 ("r-matrix" ,r-matrix)
14135 ("r-rcpp" ,r-rcpp)
14136 ("r-rcppeigen" ,r-rcppeigen)
14137 ("r-reshape2" ,r-reshape2)))
14138 (home-page "https://github.com/ChristophH/sctransform")
14139 (synopsis "Variance stabilizing transformations for Single Cell UMI Data")
14140 (description
14141 "This package provides a normalization method for single-cell UMI count
14142 data using a variance stabilizing transformation. The transformation is based
14143 on a negative binomial regression model with regularized parameters. As part
14144 of the same regression framework, this package also provides functions for
14145 batch correction, and data correction.")
14146 (license license:gpl3)))
14147
14148 (define-public r-styler
14149 (package
14150 (name "r-styler")
14151 (version "1.1.1")
14152 (source
14153 (origin
14154 (method url-fetch)
14155 (uri (cran-uri "styler" version))
14156 (sha256
14157 (base32
14158 "1k660lpjvd64gnf6bndcb1cq3qxsvik928kcn6271zmkhja5rgyb"))))
14159 (build-system r-build-system)
14160 (propagated-inputs
14161 `(("r-backports" ,r-backports)
14162 ("r-cli" ,r-cli)
14163 ("r-magrittr" ,r-magrittr)
14164 ("r-purrr" ,r-purrr)
14165 ("r-rematch2" ,r-rematch2)
14166 ("r-rlang" ,r-rlang)
14167 ("r-rprojroot" ,r-rprojroot)
14168 ("r-tibble" ,r-tibble)
14169 ("r-withr" ,r-withr)
14170 ("r-xfun" ,r-xfun)))
14171 (home-page "https://github.com/r-lib/styler")
14172 (synopsis "Non-invasive pretty printing of R code")
14173 (description
14174 "This is a package for pretty-printing R code without changing the user's
14175 formatting intent.")
14176 (license license:gpl3)))
14177
14178 (define-public r-scrime
14179 (package
14180 (name "r-scrime")
14181 (version "1.3.5")
14182 (source
14183 (origin
14184 (method url-fetch)
14185 (uri (cran-uri "scrime" version))
14186 (sha256
14187 (base32
14188 "0y2mh9fsffjf3i15bafpasa17z99c1s75r8g6h4hgcwfgpjx75sx"))))
14189 (build-system r-build-system)
14190 (home-page "https://cran.r-project.org/web/packages/scrime/")
14191 (synopsis "Analysis of high-dimensional categorical data such as SNP data")
14192 (description
14193 "This package provides tools for the analysis of high-dimensional data
14194 developed/implemented at the group \"Statistical Complexity Reduction In
14195 Molecular Epidemiology\" (SCRIME). The main focus is on SNP data, but most of
14196 the functions can also be applied to other types of categorical data.")
14197 (license license:gpl2)))
14198
14199 (define-public r-blme
14200 (package
14201 (name "r-blme")
14202 (version "1.0-4")
14203 (source
14204 (origin
14205 (method url-fetch)
14206 (uri (cran-uri "blme" version))
14207 (sha256
14208 (base32
14209 "1ca2b0248k0fj3lczn9shfjplz1sl4ay4v6djldizp2ch2vwdgy2"))))
14210 (build-system r-build-system)
14211 (propagated-inputs `(("r-lme4" ,r-lme4)))
14212 (home-page "https://github.com/vdorie/blme")
14213 (synopsis "Bayesian linear mixed-effects models")
14214 (description
14215 "This package provides tools for maximum a posteriori estimation for
14216 linear and generalized linear mixed-effects models in a Bayesian setting. It
14217 extends the lme4 package.")
14218 (license license:gpl2+)))
14219
14220 (define-public r-batchtools
14221 (package
14222 (name "r-batchtools")
14223 (version "0.9.11")
14224 (source
14225 (origin
14226 (method url-fetch)
14227 (uri (cran-uri "batchtools" version))
14228 (sha256
14229 (base32
14230 "02mj21ypcjv5fs7ajf63p6bq0cyvihdl55hlpqx6kmsfjin1cr0v"))))
14231 (build-system r-build-system)
14232 (propagated-inputs
14233 `(("r-backports" ,r-backports)
14234 ("r-base64url" ,r-base64url)
14235 ("r-brew" ,r-brew)
14236 ("r-checkmate" ,r-checkmate)
14237 ("r-data-table" ,r-data-table)
14238 ("r-digest" ,r-digest)
14239 ("r-fs" ,r-fs)
14240 ("r-progress" ,r-progress)
14241 ("r-r6" ,r-r6)
14242 ("r-rappdirs" ,r-rappdirs)
14243 ("r-stringi" ,r-stringi)
14244 ("r-withr" ,r-withr)))
14245 (home-page "https://github.com/mllg/batchtools")
14246 (synopsis "Tools for computation on batch systems")
14247 (description
14248 "As a successor of the packages BatchJobs and BatchExperiments, this
14249 package provides a parallel implementation of the Map function for high
14250 performance computing systems managed by various schedulers. A multicore and
14251 socket mode allow the parallelization on a local machines, and multiple
14252 machines can be hooked up via SSH to create a makeshift cluster. Moreover,
14253 the package provides an abstraction mechanism to define large-scale computer
14254 experiments in a well-organized and reproducible way.")
14255 (license license:lgpl3)))
14256
14257 (define-public r-clue
14258 (package
14259 (name "r-clue")
14260 (version "0.3-57")
14261 (source
14262 (origin
14263 (method url-fetch)
14264 (uri (cran-uri "clue" version))
14265 (sha256
14266 (base32
14267 "05rdcahawxlxci3fjxihjvvh33wqpxw50sx015165ab4nh3rsdkf"))))
14268 (build-system r-build-system)
14269 (propagated-inputs `(("r-cluster" ,r-cluster)))
14270 (home-page "https://cran.r-project.org/web/packages/clue/")
14271 (synopsis "Tools for analyzing cluster ensembles")
14272 (description "Cluster ensembles are collections of individual solutions to
14273 a given clustering problem which are useful or necessary to consider in a wide
14274 range of applications. This R package provides an extensible computational
14275 environment for creating and analyzing cluster ensembles, with basic data
14276 structures for representing partitions and hierarchies, and facilities for
14277 computing on them, including methods for measuring proximity and obtaining
14278 consensus and secondary clusterings.")
14279 (license license:gpl2)))
14280
14281 (define-public r-sitmo
14282 (package
14283 (name "r-sitmo")
14284 (version "2.0.1")
14285 (source
14286 (origin
14287 (method url-fetch)
14288 (uri (cran-uri "sitmo" version))
14289 (sha256
14290 (base32
14291 "0apdhwy3kxs39agsbvx5vn3xsgb22bf3jrwmr2cmqk9kmxbx740c"))))
14292 (build-system r-build-system)
14293 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
14294 (home-page "https://github.com/coatless/sitmo/")
14295 (synopsis "Parallel pseudo random number generator header files")
14296 (description
14297 "This package provides two high quality and fast PPRNGs that may be used
14298 in an OpenMP parallel environment. In addition, there is a generator for one
14299 dimensional low-discrepancy sequence.")
14300 (license license:expat)))
14301
14302 (define-public r-dqrng
14303 (package
14304 (name "r-dqrng")
14305 (version "0.2.1")
14306 (source
14307 (origin
14308 (method url-fetch)
14309 (uri (cran-uri "dqrng" version))
14310 (sha256
14311 (base32
14312 "0rp8q5zijlvaqmpnkwr314w9w40sj4fz7sqsdgsffcfvn42w2jg1"))))
14313 (build-system r-build-system)
14314 (propagated-inputs
14315 `(("r-bh" ,r-bh)
14316 ("r-rcpp" ,r-rcpp)
14317 ("r-sitmo" ,r-sitmo)))
14318 (home-page "https://www.daqana.org/dqrng")
14319 (synopsis "Fast pseudo random number generators")
14320 (description
14321 "Several fast random number generators are provided as C++ header-only
14322 libraries: the PCG family as well as Xoroshiro128+ and Xoshiro256+.
14323 Additionally, fast functions for generating random numbers according to a
14324 uniform, normal and exponential distribution are included. The latter two use
14325 the Ziggurat algorithm originally proposed by Marsaglia and Tsang. These
14326 functions are exported to R and as a C++ interface and are enabled for use
14327 with the default 64 bit generator from the PCG family, Xoroshiro128+ and
14328 Xoshiro256+ as well as the 64 bit version of the 20 rounds Threefry
14329 engine (Salmon et al., 2011) as provided by the package @code{sitmo}.")
14330 ;; This package includes code under CC0 and Apache 2.0 or Expat, but as a
14331 ;; whole is distributed under the terms of the AGPL 3.
14332 (license license:agpl3)))
14333
14334 (define-public r-dalex
14335 (package
14336 (name "r-dalex")
14337 (version "0.4")
14338 (source
14339 (origin
14340 (method url-fetch)
14341 (uri (cran-uri "DALEX" version))
14342 (sha256
14343 (base32
14344 "1mr8lqq8s4aacmh7xdhmkmv8vsjqjczlqlaw27xnsljgj2kgq87a"))))
14345 (properties `((upstream-name . "DALEX")))
14346 (build-system r-build-system)
14347 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
14348 (home-page "https://pbiecek.github.io/DALEX/")
14349 (synopsis "Descriptive machine learning explanations")
14350 (description
14351 "Machine Learning models are widely used and have various applications in
14352 classification or regression. Models created with boosting, bagging, stacking
14353 or similar techniques are often used due to their high performance, but such
14354 black-box models usually lack interpretability. The DALEX package contains
14355 various explainers that help to understand the link between input variables
14356 and model output.")
14357 ;; Any version of the GPL
14358 (license license:gpl3+)))
14359
14360 (define-public r-enrichr
14361 (package
14362 (name "r-enrichr")
14363 (version "1.0")
14364 (source
14365 (origin
14366 (method url-fetch)
14367 (uri (cran-uri "enrichR" version))
14368 (sha256
14369 (base32
14370 "0lfdr45sdyqhvgz8q4qdbk12mpv86d6id665kq6aaslgr8jggfmn"))))
14371 (properties `((upstream-name . "enrichR")))
14372 (build-system r-build-system)
14373 (propagated-inputs
14374 `(("r-httr" ,r-httr)
14375 ("r-rjson" ,r-rjson)))
14376 (home-page "https://cran.r-project.org/web/packages/enrichR/")
14377 (synopsis "R Interface to Enrichr database for analyzing gene sets")
14378 (description
14379 "This package provides an R interface to all Enrichr databases, a
14380 web-based tool for analyzing gene sets and returns any enrichment of common
14381 annotated biological functions.")
14382 (license license:gpl2+)))
14383
14384 (define-public r-plot3d
14385 (package
14386 (name "r-plot3d")
14387 (version "1.1.1")
14388 (source
14389 (origin
14390 (method url-fetch)
14391 (uri (cran-uri "plot3D" version))
14392 (sha256
14393 (base32
14394 "0chn70fqwyca8lbnjnpbcj08ni0dfbax2gjmzhk2c4w72c04mzpn"))))
14395 (properties `((upstream-name . "plot3D")))
14396 (build-system r-build-system)
14397 (propagated-inputs `(("r-misc3d" ,r-misc3d)))
14398 (home-page "https://cran.r-project.org/web/packages/plot3D")
14399 (synopsis "Plot multi-dimensional data")
14400 (description
14401 "This package provides functions for viewing 2D and 3D data, including
14402 perspective plots, slice plots, surface plots, scatter plots, etc. It
14403 includes data sets from oceanography.")
14404 (license license:gpl3+)))
14405
14406 (define-public r-ggfortify
14407 (package
14408 (name "r-ggfortify")
14409 (version "0.4.7")
14410 (source
14411 (origin
14412 (method url-fetch)
14413 (uri (cran-uri "ggfortify" version))
14414 (sha256
14415 (base32
14416 "1wk9j0xg5hj9i1vf62qjiphv8cbsgq7y6baay3pfl3wyb2dwgci0"))))
14417 (build-system r-build-system)
14418 (propagated-inputs
14419 `(("r-dplyr" ,r-dplyr)
14420 ("r-ggplot2" ,r-ggplot2)
14421 ("r-gridextra" ,r-gridextra)
14422 ("r-scales" ,r-scales)
14423 ("r-stringr" ,r-stringr)
14424 ("r-tibble" ,r-tibble)
14425 ("r-tidyr" ,r-tidyr)))
14426 (home-page "https://github.com/sinhrks/ggfortify")
14427 (synopsis "Data visualization tools for statistical analysis results")
14428 (description
14429 "This package provides unified plotting tools for statistics commonly
14430 used, such as GLM, time series, PCA families, clustering and survival
14431 analysis. The package offers a single plotting interface for these analysis
14432 results and plots in a unified style using the @code{ggplot2} package.")
14433 (license license:gpl2)))
14434
14435 (define-public r-refmanager
14436 (package
14437 (name "r-refmanager")
14438 (version "1.2.12")
14439 (source
14440 (origin
14441 (method url-fetch)
14442 (uri (cran-uri "RefManageR" version))
14443 (sha256
14444 (base32
14445 "1hfxa1qacfryk36mpaqdhdgws5jwxiyy489ikd3wa18bp1wz8dkp"))))
14446 (properties `((upstream-name . "RefManageR")))
14447 (build-system r-build-system)
14448 (propagated-inputs
14449 `(("r-bibtex" ,r-bibtex)
14450 ("r-httr" ,r-httr)
14451 ("r-jsonlite" ,r-jsonlite)
14452 ("r-lubridate" ,r-lubridate)
14453 ("r-plyr" ,r-plyr)
14454 ("r-stringr" ,r-stringr)
14455 ("r-xml2" ,r-xml2)))
14456 (home-page "https://github.com/ropensci/RefManageR/")
14457 (synopsis "Straightforward BibTeX and BibLaTeX bibliography management")
14458 (description
14459 "This package provides tools for importing and working with bibliographic
14460 references. It greatly enhances the @code{bibentry} class by providing a
14461 class @code{BibEntry} which stores BibTeX and BibLaTeX references, supports
14462 UTF-8 encoding, and can be easily searched by any field, by date ranges, and
14463 by various formats for name lists (author by last names, translator by full
14464 names, etc.). Entries can be updated, combined, sorted, printed in a number
14465 of styles, and exported. BibTeX and BibLaTeX @code{.bib} files can be read
14466 into R and converted to @code{BibEntry} objects.")
14467 ;; Any of these licenses may be picked.
14468 (license (list license:gpl2 license:gpl3 license:bsd-3))))
14469
14470 (define-public r-citr
14471 (package
14472 (name "r-citr")
14473 (version "0.3.0")
14474 (source
14475 (origin
14476 (method url-fetch)
14477 (uri (cran-uri "citr" version))
14478 (sha256
14479 (base32
14480 "0pik6s6xk5768s3kkppw2192dj455py53gsn6k2b7xgg96ircy0g"))))
14481 (build-system r-build-system)
14482 (propagated-inputs
14483 `(("r-assertthat" ,r-assertthat)
14484 ("r-bibtex" ,r-bibtex)
14485 ("r-curl" ,r-curl)
14486 ("r-httr" ,r-httr)
14487 ("r-miniui" ,r-miniui)
14488 ("r-refmanager" ,r-refmanager)
14489 ("r-rstudioapi" ,r-rstudioapi)
14490 ("r-shiny" ,r-shiny)
14491 ("r-shinyjs" ,r-shinyjs)
14492 ("r-yaml" ,r-yaml)))
14493 (home-page "https://github.com/crsh/citr")
14494 (synopsis "RStudio add-in to insert Markdown citations")
14495 (description
14496 "This package provides functions and an RStudio add-in that search a
14497 BibTeX or BibLaTeX file to create and insert formatted Markdown citations into
14498 the current document.")
14499 (license license:expat)))
14500
14501 (define-public r-xgboost
14502 (package
14503 (name "r-xgboost")
14504 (version "0.82.1")
14505 (source
14506 (origin
14507 (method url-fetch)
14508 (uri (cran-uri "xgboost" version))
14509 (sha256
14510 (base32
14511 "0plhx63wcm4syslzmjfv6bdgaqn96fnav048hrj0vxk4dzgfp8sq"))))
14512 (build-system r-build-system)
14513 (propagated-inputs
14514 `(("r-data-table" ,r-data-table)
14515 ("r-magrittr" ,r-magrittr)
14516 ("r-matrix" ,r-matrix)
14517 ("r-stringi" ,r-stringi)))
14518 (home-page "https://github.com/dmlc/xgboost")
14519 (synopsis "Extreme gradient boosting")
14520 (description
14521 "This package provides an R interface to Extreme Gradient Boosting, which
14522 is an efficient implementation of the gradient boosting framework from Chen
14523 and Guestrin (2016). The package includes efficient linear model solver and
14524 tree learning algorithms. The package can automatically do parallel
14525 computation on a single machine. It supports various objective functions,
14526 including regression, classification and ranking. The package is made to be
14527 extensible, so that users are also allowed to define their own objectives
14528 easily.")
14529 (license license:asl2.0)))