9a49602fff2cca1e140dfd11a4743dc65e523d52
[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 © 2015 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2016, 2017 Ben Woodcroft <donttrustben@gmail.com>
5 ;;; Copyright © 2016, 2017, 2018 Roel Janssen <roel@gnu.org>
6 ;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
7 ;;; Copyright © 2017 Raoul Bonnal <ilpuccio.febo@gmail.com>
8 ;;; Copyright © 2018 Vijayalakshmi Vedantham <vijimay12@gmail.com>
9 ;;; Copyright © 2018 Sahithi Yarlagadda <sahi@swecha.net>
10 ;;; Copyright © 2018 Sandeep Subramanian <sandeepsubramanian94@gmail.com>
11 ;;; Copyright © 2018 Charlie Ritter <chewzeirta@posteo.net>
12 ;;; Copyright © 2018 Konrad Hinsen <konrad.hinsen@fastmail.net>
13 ;;; Copyright © 2018 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
14 ;;; Copyright © 2018 Laura Lazzati <laura.lazzati.15@gmail.com>
15 ;;; Copyright © 2018 Leo Famulari <leo@famulari.name>
16 ;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com>
17 ;;; Copyright © 2018, 2019 Brett Gilio <brettg@posteo.net>
18 ;;; Copyright © 2019 Nicolò Balzarotti <anothersms@gmail.com>
19 ;;; Copyright © 2019 Wiktor Żelazny <wzelazny@vurv.cz>
20 ;;;
21 ;;; This file is part of GNU Guix.
22 ;;;
23 ;;; GNU Guix is free software; you can redistribute it and/or modify it
24 ;;; under the terms of the GNU General Public License as published by
25 ;;; the Free Software Foundation; either version 3 of the License, or (at
26 ;;; your option) any later version.
27 ;;;
28 ;;; GNU Guix is distributed in the hope that it will be useful, but
29 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
30 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 ;;; GNU General Public License for more details.
32 ;;;
33 ;;; You should have received a copy of the GNU General Public License
34 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
35
36 (define-module (gnu packages cran)
37 #:use-module ((guix licenses) #:prefix license:)
38 #:use-module (guix packages)
39 #:use-module (guix download)
40 #:use-module (guix git-download)
41 #:use-module (guix utils)
42 #:use-module (guix build-system r)
43 #:use-module (gnu packages algebra)
44 #:use-module (gnu packages base)
45 #:use-module (gnu packages bioinformatics)
46 #:use-module (gnu packages c)
47 #:use-module (gnu packages compression)
48 #:use-module (gnu packages curl)
49 #:use-module (gnu packages databases)
50 #:use-module (gnu packages fontutils)
51 #:use-module (gnu packages gcc)
52 #:use-module (gnu packages geo)
53 #:use-module (gnu packages ghostscript)
54 #:use-module (gnu packages gl)
55 #:use-module (gnu packages gnome)
56 #:use-module (gnu packages graph)
57 #:use-module (gnu packages gtk)
58 #:use-module (gnu packages haskell-xyz)
59 #:use-module (gnu packages icu4c)
60 #:use-module (gnu packages image)
61 #:use-module (gnu packages imagemagick)
62 #:use-module (gnu packages java)
63 #:use-module (gnu packages javascript)
64 #:use-module (gnu packages lisp)
65 #:use-module (gnu packages machine-learning)
66 #:use-module (gnu packages maths)
67 #:use-module (gnu packages mpi)
68 #:use-module (gnu packages multiprecision)
69 #:use-module (gnu packages networking)
70 #:use-module (gnu packages pcre)
71 #:use-module (gnu packages perl)
72 #:use-module (gnu packages pkg-config)
73 #:use-module (gnu packages python)
74 #:use-module (gnu packages python-xyz)
75 #:use-module (gnu packages statistics)
76 #:use-module (gnu packages tls)
77 #:use-module (gnu packages web)
78 #:use-module (gnu packages xorg))
79
80 (define-public r-clipr
81 (package
82 (name "r-clipr")
83 (version "0.7.0")
84 (source
85 (origin
86 (method url-fetch)
87 (uri (cran-uri "clipr" version))
88 (sha256
89 (base32
90 "1qn2p13d0c1bpqss6mv9hk60980rzhznfqpyaf5x0fy65svy9903"))))
91 (build-system r-build-system)
92 (home-page "https://github.com/mdlincoln/clipr")
93 (synopsis "Read and write from the system clipboard")
94 (description
95 "This package provides simple utility functions to read from and write to
96 the system clipboards.")
97 (license license:gpl3)))
98
99 (define-public r-scales
100 (package
101 (name "r-scales")
102 (version "1.1.0")
103 (source
104 (origin
105 (method url-fetch)
106 (uri (cran-uri "scales" version))
107 (sha256
108 (base32 "00rdbfj5mwc3kr8pskidn3n2zkp4ms6cx36xazz54pxw3pysdr0y"))))
109 (build-system r-build-system)
110 (propagated-inputs
111 `(("r-farver" ,r-farver)
112 ("r-labeling" ,r-labeling)
113 ("r-lifecycle" ,r-lifecycle)
114 ("r-munsell" ,r-munsell)
115 ("r-rcolorbrewer" ,r-rcolorbrewer)
116 ("r-r6" ,r-r6)
117 ("r-viridislite" ,r-viridislite)))
118 (home-page "https://github.com/hadley/scales")
119 (synopsis "Scale functions for visualization")
120 (description
121 "This package provides graphical scales that map data to aesthetics, and
122 provides methods for automatically determining breaks and labels for axes and
123 legends.")
124 (license license:expat)))
125
126 (define-public r-pheatmap
127 (package
128 (name "r-pheatmap")
129 (version "1.0.12")
130 (source
131 (origin
132 (method url-fetch)
133 (uri (cran-uri "pheatmap" version))
134 (sha256
135 (base32
136 "1hdh74az3vyzz6dqa311rhxdm74n46lyr03p862kn80p0kp9d7ap"))))
137 (build-system r-build-system)
138 (propagated-inputs
139 `(("r-gtable" ,r-gtable)
140 ("r-rcolorbrewer" ,r-rcolorbrewer)
141 ("r-scales" ,r-scales)))
142 (home-page "https://cran.r-project.org/web/packages/pheatmap")
143 (synopsis "Pretty heatmaps")
144 (description
145 "This package provides an implementation of heatmaps that offers more
146 control over dimensions and appearance.")
147 (license license:gpl2+)))
148
149 (define-public r-ellipsis
150 (package
151 (name "r-ellipsis")
152 (version "0.3.0")
153 (source
154 (origin
155 (method url-fetch)
156 (uri (cran-uri "ellipsis" version))
157 (sha256
158 (base32
159 "01z9gq311nzwv3a0sa49jhm5ylqd59srip4vjkrf23hzgb5i9y0b"))))
160 (build-system r-build-system)
161 (propagated-inputs
162 `(("r-rlang" ,r-rlang)))
163 (home-page "https://github.com/hadley/ellipsis")
164 (synopsis "Tools for working with additional arguments")
165 (description
166 "In S3 generics, it's useful to take @code{...} so that methods can have
167 additional arguments. But this flexibility comes at a cost: misspelled
168 arguments will be silently ignored. The @code{ellipsis} package is an
169 experiment that allows a generic to warn if any arguments passed in @code{...}
170 are not used.")
171 (license license:gpl3)))
172
173 (define-public r-grr
174 (package
175 (name "r-grr")
176 (version "0.9.5")
177 (source
178 (origin
179 (method url-fetch)
180 (uri (cran-uri "grr" version))
181 (sha256
182 (base32
183 "0arbcgrvhkwb5xk4nry1ffg2qj0v8ivhjghdr505ib4357g0c9i9"))))
184 (build-system r-build-system)
185 (home-page "https://cran.r-project.org/web/packages/grr")
186 (synopsis "Alternative implementations of base R functions")
187 (description
188 "This package provides alternative implementations of some base R
189 functions, including @code{sort}, @code{order}, and @code{match}. The
190 functions are simplified but can be faster or have other advantages.")
191 (license license:gpl3)))
192
193 (define-public r-matrix-utils
194 (package
195 (name "r-matrix-utils")
196 (version "0.9.7")
197 (source
198 (origin
199 (method url-fetch)
200 (uri (cran-uri "Matrix.utils" version))
201 (sha256
202 (base32
203 "1x64r4aj3gy1dzjjysyrk1j9jq3qsnyrqws8i6bs7q8pf6gvr7va"))))
204 (properties `((upstream-name . "Matrix.utils")))
205 (build-system r-build-system)
206 (propagated-inputs
207 `(("r-grr" ,r-grr)
208 ("r-matrix" ,r-matrix)))
209 (home-page "https://github.com/cvarrichio/Matrix.utils")
210 (synopsis
211 "Data.frame-Like Operations on Sparse and Dense Matrix Objects")
212 (description
213 "This package implements data manipulation methods such as @code{cast},
214 @code{aggregate}, and @code{merge}/@code{join} for Matrix and Matrix-like
215 objects.")
216 (license license:gpl3)))
217
218 (define-public r-sys
219 (package
220 (name "r-sys")
221 (version "3.3")
222 (source
223 (origin
224 (method url-fetch)
225 (uri (cran-uri "sys" version))
226 (sha256
227 (base32
228 "14wvy46i2iz9jn7lj3cvifmps932s3395wq681hniva0f8m7q8d6"))))
229 (build-system r-build-system)
230 (home-page "https://github.com/jeroen/sys")
231 (synopsis "Powerful and reliable tools for running system commands in R")
232 (description
233 "This package provides drop-in replacements for the base @code{system2()}
234 function with fine control and consistent behavior across platforms. It
235 supports clean interruption, timeout, background tasks, and streaming STDIN /
236 STDOUT / STDERR over binary or text connections. The package also provides
237 functions for evaluating expressions inside a temporary fork. Such
238 evaluations have no side effects on the main R process, and support reliable
239 interrupts and timeouts. This provides the basis for a sandboxing
240 mechanism.")
241 (license license:expat)))
242
243 (define-public r-askpass
244 (package
245 (name "r-askpass")
246 (version "1.1")
247 (source
248 (origin
249 (method url-fetch)
250 (uri (cran-uri "askpass" version))
251 (sha256
252 (base32
253 "07q0ik8jzk44vpwh48rr3fnpd7dzsdhjjsl4l850rffv3dyq4h6v"))))
254 (build-system r-build-system)
255 (propagated-inputs `(("r-sys" ,r-sys)))
256 (home-page "https://github.com/jeroen/askpass")
257 (synopsis "Safe password entry for R")
258 (description
259 "This package provides cross-platform utilities for prompting the user
260 for credentials or a passphrase, for example to authenticate with a server or
261 read a protected key.")
262 (license license:expat)))
263
264 (define-public r-vegan
265 (package
266 (name "r-vegan")
267 (version "2.5-6")
268 (source
269 (origin
270 (method url-fetch)
271 (uri (cran-uri "vegan" version))
272 (sha256
273 (base32
274 "0g60rgn1i7wqf9pf5m1yki1m45gcp7i5hmjic0ci0f6vng70mh5k"))))
275 (build-system r-build-system)
276 (native-inputs
277 `(("gfortran" ,gfortran)))
278 (propagated-inputs
279 `(("r-cluster" ,r-cluster)
280 ("r-knitr" ,r-knitr) ; needed for vignettes
281 ("r-lattice" ,r-lattice)
282 ("r-mass" ,r-mass)
283 ("r-mgcv" ,r-mgcv)
284 ("r-permute" ,r-permute)))
285 (home-page "https://cran.r-project.org/web/packages/vegan")
286 (synopsis "Functions for community ecology")
287 (description
288 "The vegan package provides tools for descriptive community ecology. It
289 has most basic functions of diversity analysis, community ordination and
290 dissimilarity analysis. Most of its multivariate tools can be used for other
291 data types as well.")
292 (license license:gpl2+)))
293
294 (define-public r-tidyverse
295 (package
296 (name "r-tidyverse")
297 (version "1.3.0")
298 (source
299 (origin
300 (method url-fetch)
301 (uri (cran-uri "tidyverse" version))
302 (sha256
303 (base32
304 "02gyys08qv2v4cl2d66gml4d31ipxay0iyfwwksvxyclx60wp2kd"))))
305 (build-system r-build-system)
306 (propagated-inputs
307 `(("r-broom" ,r-broom)
308 ("r-cli" ,r-cli)
309 ("r-crayon" ,r-crayon)
310 ("r-dbplyr" ,r-dbplyr)
311 ("r-dplyr" ,r-dplyr)
312 ("r-forcats" ,r-forcats)
313 ("r-ggplot2" ,r-ggplot2)
314 ("r-haven" ,r-haven)
315 ("r-hms" ,r-hms)
316 ("r-httr" ,r-httr)
317 ("r-jsonlite" ,r-jsonlite)
318 ("r-lubridate" ,r-lubridate)
319 ("r-magrittr" ,r-magrittr)
320 ("r-modelr" ,r-modelr)
321 ("r-pillar" ,r-pillar)
322 ("r-purrr" ,r-purrr)
323 ("r-readr" ,r-readr)
324 ("r-readxl" ,r-readxl)
325 ("r-reprex" ,r-reprex)
326 ("r-rlang" ,r-rlang)
327 ("r-rstudioapi" ,r-rstudioapi)
328 ("r-rvest" ,r-rvest)
329 ("r-stringr" ,r-stringr)
330 ("r-tibble" ,r-tibble)
331 ("r-tidyr" ,r-tidyr)
332 ("r-xml2" ,r-xml2)))
333 (home-page "https://tidyverse.tidyverse.org")
334 (synopsis "Install and load packages from the \"Tidyverse\"")
335 (description
336 "The @code{tidyverse} is a set of packages that work in harmony because
337 they share common data representations and API design. This package is
338 designed to make it easy to install and load multiple tidyverse packages in a
339 single step.")
340 (license license:gpl3)))
341
342 (define-public r-rvest
343 (package
344 (name "r-rvest")
345 (version "0.3.5")
346 (source
347 (origin
348 (method url-fetch)
349 (uri (cran-uri "rvest" version))
350 (sha256
351 (base32 "0r0a5jic09xw5pk0x42pr99r3zab5m9s4x85ymx1sl769jz42zqf"))))
352 (build-system r-build-system)
353 (propagated-inputs
354 `(("r-httr" ,r-httr)
355 ("r-magrittr" ,r-magrittr)
356 ("r-selectr" ,r-selectr)
357 ("r-xml2" ,r-xml2)))
358 (home-page "https://github.com/hadley/rvest")
359 (synopsis "Simple web scraping for R")
360 (description
361 "@code{r-rvest} helps you scrape information from web pages. It is
362 designed to work with @code{magrittr} to make it easy to express common web
363 scraping tasks, inspired by libraries like @code{BeautifulSoup}.")
364 (license license:gpl3)))
365
366 (define-public r-selectr
367 (package
368 (name "r-selectr")
369 (version "0.4-2")
370 (source
371 (origin
372 (method url-fetch)
373 (uri (cran-uri "selectr" version))
374 (sha256
375 (base32 "09y1n3iy297g49xlpl7xrjpwgnm57pskx5991lyfcpizbz8ax22m"))))
376 (build-system r-build-system)
377 (propagated-inputs
378 `(("r-stringr" ,r-stringr)
379 ("r-r6" ,r-r6)))
380 (home-page "https://sjp.co.nz/projects/selectr/")
381 (synopsis "Translate CSS selectors to XPath expressions")
382 (description
383 "@code{r-selectr} translates a CSS3 selector into an equivalent XPath
384 expression. This allows you to use CSS selectors when working with the XML
385 package as it can only evaluate XPath expressions. Also provided are
386 convenience functions useful for using CSS selectors on XML nodes. This
387 package is a port of the Python package @code{cssselect}.")
388 (license license:bsd-3)))
389
390 (define-public r-reprex
391 (package
392 (name "r-reprex")
393 (version "0.3.0")
394 (source
395 (origin
396 (method url-fetch)
397 (uri (cran-uri "reprex" version))
398 (sha256
399 (base32
400 "0v7vxzs8alwz8y1cjicpimp5yimf1g9gb8x5wy3zhvrz6kk2lg10"))))
401 (build-system r-build-system)
402 (propagated-inputs
403 `(("r-callr" ,r-callr)
404 ("r-clipr" ,r-clipr)
405 ("r-fs" ,r-fs)
406 ("r-rlang" ,r-rlang)
407 ("r-rmarkdown" ,r-rmarkdown)
408 ("r-whisker" ,r-whisker)
409 ("r-withr" ,r-withr)))
410 (home-page "https://github.com/tidyverse/reprex")
411 (synopsis "Prepare reproducible R code examples for sharing")
412 (description
413 "This package provides a convenience wrapper that uses the
414 @code{rmarkdown} package to render small snippets of code to target formats
415 that include both code and output. The goal is to encourage the sharing of
416 small, reproducible, and runnable examples on code-oriented websites or email.
417 @code{reprex} also extracts clean, runnable R code from various common formats,
418 such as copy/paste from an R session.")
419 (license license:expat)))
420
421 (define-public r-callr
422 (package
423 (name "r-callr")
424 (version "3.3.2")
425 (source
426 (origin
427 (method url-fetch)
428 (uri (cran-uri "callr" version))
429 (sha256
430 (base32
431 "12dbqzjngbyaqdyw0yq1blyfx8pagcvx1vqj2jm451hs25nhdrnh"))))
432 (build-system r-build-system)
433 (propagated-inputs
434 `(("r-r6" ,r-r6)
435 ("r-processx" ,r-processx)))
436 (home-page "https://github.com/r-lib/callr#readme")
437 (synopsis "Call R from R")
438 (description
439 "It is sometimes useful to perform a computation in a separate R process,
440 without affecting the current R process at all. This package does exactly
441 that.")
442 (license license:expat)))
443
444 (define-public r-readxl
445 (package
446 (name "r-readxl")
447 (version "1.3.1")
448 (source
449 (origin
450 (method url-fetch)
451 (uri (cran-uri "readxl" version))
452 (sha256
453 (base32
454 "15mambxr8c7k2ikdfsl1w3vxvm54dsnk0cl1qvks6iig7rql3d14"))))
455 (build-system r-build-system)
456 (propagated-inputs
457 `(("r-cellranger" ,r-cellranger)
458 ("r-progress" ,r-progress)
459 ("r-rcpp" ,r-rcpp)
460 ("r-tibble" ,r-tibble)))
461 (home-page "https://readxl.tidyverse.org")
462 (synopsis "Read Excel files")
463 (description
464 "This package lets you import Excel files into R. It supports
465 @file{.xls} via the embedded @code{libxls} C library and @file{.xlsx} via
466 the embedded @code{RapidXML} C++ library.")
467 ;; XXX: This package bundles a copy of 'libxsl' which is BSD-2 and
468 ;; 'rapidxml' which is Boost.
469 (license (list license:gpl3 license:bsd-2 license:boost1.0))))
470
471 (define-public r-modelr
472 (package
473 (name "r-modelr")
474 (version "0.1.5")
475 (source
476 (origin
477 (method url-fetch)
478 (uri (cran-uri "modelr" version))
479 (sha256
480 (base32
481 "0nnfhlzz75ihs8azy963cc4cwg1kx81rybk4z3wm98bbghwfxfs5"))))
482 (build-system r-build-system)
483 (propagated-inputs
484 `(("r-broom" ,r-broom)
485 ("r-dplyr" ,r-dplyr)
486 ("r-magrittr" ,r-magrittr)
487 ("r-purrr" ,r-purrr)
488 ("r-rlang" ,r-rlang)
489 ("r-tibble" ,r-tibble)
490 ("r-tidyr" ,r-tidyr)))
491 (home-page "https://github.com/tidyverse/modelr")
492 (synopsis "Helper functions for modelling in pipelines")
493 (description
494 "Functions for modelling that help you seamlessly integrate modelling
495 into a pipeline of data manipulation and visualisation.")
496 (license license:gpl3)))
497
498 (define-public r-httpuv
499 (package
500 (name "r-httpuv")
501 (version "1.5.2")
502 (source (origin
503 (method url-fetch)
504 (uri (cran-uri "httpuv" version))
505 (sha256
506 (base32
507 "13ax0hs2lc39ilznh1zarwqdzahcbhb8adilrfik3xg0fkljpcwk"))))
508 (build-system r-build-system)
509 (propagated-inputs
510 `(("r-bh" ,r-bh)
511 ("r-later" ,r-later)
512 ("r-promises" ,r-promises)
513 ("r-r6" ,r-r6)
514 ("r-rcpp" ,r-rcpp)))
515 (home-page "https://github.com/rstudio/httpuv")
516 (synopsis "HTTP and WebSocket server library for R")
517 (description
518 "The httpuv package provides low-level socket and protocol support for
519 handling HTTP and WebSocket requests directly from within R. It is primarily
520 intended as a building block for other packages, rather than making it
521 particularly easy to create complete web applications using httpuv alone.")
522 ;; This package includes third-party code that was originally released
523 ;; under various non-copyleft licenses. Full licensing information can be
524 ;; obtained here: https://github.com/rstudio/httpuv/blob/master/LICENSE
525 (license license:gpl3+)))
526
527 (define-public r-jsonlite
528 (package
529 (name "r-jsonlite")
530 (version "1.6")
531 (source (origin
532 (method url-fetch)
533 (uri (cran-uri "jsonlite" version))
534 (sha256
535 (base32
536 "0lyvhnr6n57h3a89bvipii7x17nvfaycm9j5j50bfrlr48jv9ic8"))))
537 (build-system r-build-system)
538 (home-page "http://arxiv.org/abs/1403.2805")
539 (synopsis "Robust, high performance JSON parser and generator for R")
540 (description
541 "The jsonlite package provides a fast JSON parser and generator optimized
542 for statistical data and the web. It offers flexible, robust, high
543 performance tools for working with JSON in R and is particularly powerful for
544 building pipelines and interacting with a web API. In addition to converting
545 JSON data from/to R objects, jsonlite contains functions to stream, validate,
546 and prettify JSON data. The unit tests included with the package verify that
547 all edge cases are encoded and decoded consistently for use with dynamic data
548 in systems and applications.")
549 (license license:expat)))
550
551 (define-public r-servr
552 (package
553 (name "r-servr")
554 (version "0.15")
555 (source (origin
556 (method url-fetch)
557 (uri (cran-uri "servr" version))
558 (sha256
559 (base32
560 "199k9aghwk9rf1rm8pjg60xacqww25cza259h5dfj1ixil0m6dxi"))))
561 (build-system r-build-system)
562 (propagated-inputs
563 `(("r-httpuv" ,r-httpuv)
564 ("r-jsonlite" ,r-jsonlite)
565 ("r-mime" ,r-mime)
566 ("r-xfun" ,r-xfun)))
567 (home-page "https://github.com/yihui/servr")
568 (synopsis "Simple HTTP server to serve static files or dynamic documents")
569 (description
570 "Servr provides an HTTP server in R to serve static files, or dynamic
571 documents that can be converted to HTML files (e.g., R Markdown) under a given
572 directory.")
573 (license license:expat)))
574
575 (define-public r-htmltools
576 (package
577 (name "r-htmltools")
578 (version "0.4.0")
579 (source (origin
580 (method url-fetch)
581 (uri (cran-uri "htmltools" version))
582 (sha256
583 (base32
584 "06l17d8jkf438yk2mchpsp4j90bynnapz3nabh5vkcc324p5a62v"))))
585 (build-system r-build-system)
586 (propagated-inputs
587 `(("r-digest" ,r-digest)
588 ("r-rcpp" ,r-rcpp)
589 ("r-rlang" ,r-rlang)))
590 (home-page "https://cran.r-project.org/web/packages/htmltools")
591 (synopsis "R tools for HTML")
592 (description
593 "This package provides tools for HTML generation and output in R.")
594 (license license:expat)))
595
596 (define-public r-htmlwidgets
597 (package
598 (name "r-htmlwidgets")
599 (version "1.5.1")
600 (source (origin
601 (method url-fetch)
602 (uri (cran-uri "htmlwidgets" version))
603 (sha256
604 (base32
605 "10fp306l1nybkah6jrlrqwwdb6zvklbddp8i3w9v9naj8la5jbnl"))))
606 (build-system r-build-system)
607 (propagated-inputs
608 `(("r-htmltools" ,r-htmltools)
609 ("r-jsonlite" ,r-jsonlite)
610 ("r-yaml" ,r-yaml)))
611 (home-page "https://github.com/ramnathv/htmlwidgets")
612 (synopsis "HTML Widgets for R")
613 (description
614 "HTML widgets is a framework for creating HTML widgets that render in
615 various contexts including the R console, R Markdown documents, and Shiny web
616 applications.")
617 (license license:expat)))
618
619 (define-public r-htmltable
620 (package
621 (name "r-htmltable")
622 (version "1.13.2")
623 (source
624 (origin
625 (method url-fetch)
626 (uri (cran-uri "htmlTable" version))
627 (sha256
628 (base32
629 "0h6jslchlx1dzqqdb70c3n9xlapcym9ykycvr0hc4q3450y8qmvh"))))
630 (properties `((upstream-name . "htmlTable")))
631 (build-system r-build-system)
632 (propagated-inputs
633 `(("r-checkmate" ,r-checkmate)
634 ("r-htmltools" ,r-htmltools)
635 ("r-htmlwidgets" ,r-htmlwidgets)
636 ("r-knitr" ,r-knitr)
637 ("r-magrittr" ,r-magrittr)
638 ("r-rstudioapi" ,r-rstudioapi)
639 ("r-stringr" ,r-stringr)))
640 (home-page "http://gforge.se/packages/")
641 (synopsis "Advanced tables for Markdown/HTML")
642 (description
643 "This package provides functions to build tables with advanced layout
644 elements such as row spanners, column spanners, table spanners, zebra
645 striping, and more. While allowing advanced layout, the underlying
646 CSS-structure is simple in order to maximize compatibility with word
647 processors such as LibreOffice. The package also contains a few text
648 formatting functions that help outputting text compatible with HTML or
649 LaTeX.")
650 (license license:gpl3+)))
651
652 (define-public r-curl
653 (package
654 (name "r-curl")
655 (version "4.2")
656 (source (origin
657 (method url-fetch)
658 (uri (cran-uri "curl" version))
659 (sha256
660 (base32
661 "0xh227gvb056wlipjxxbf555z1i1qcs7rr1igvs6k6645y9irrlp"))))
662 (build-system r-build-system)
663 (arguments
664 `(#:phases
665 (modify-phases %standard-phases
666 ;; The environment variable CURL_CA_BUNDLE is only respected when
667 ;; running Windows, so we disable the platform checks.
668 ;; This can be removed once the libcurl has been patched.
669 (add-after 'unpack 'allow-CURL_CA_BUNDLE
670 (lambda _
671 (substitute* "R/onload.R"
672 (("if \\(!grepl\\(\"mingw\".*")
673 "if (FALSE)\n"))
674 (substitute* "src/handle.c"
675 (("#ifdef _WIN32") "#if 1"))
676 #t)))))
677 (inputs
678 `(("libcurl" ,curl)
679 ("zlib" ,zlib)))
680 (native-inputs
681 `(("pkg-config" ,pkg-config)))
682 (home-page "https://github.com/jeroenooms/curl")
683 (synopsis "HTTP client for R")
684 (description
685 "The @code{curl()} and @code{curl_download()} functions provide highly
686 configurable drop-in replacements for base @code{url()} and
687 @code{download.file()} with better performance, support for encryption, gzip
688 compression, authentication, and other @code{libcurl} goodies. The core of
689 the package implements a framework for performing fully customized requests
690 where data can be processed either in memory, on disk, or streaming via the
691 callback or connection interfaces.")
692 (license license:expat)))
693
694 (define-public r-hwriter
695 (package
696 (name "r-hwriter")
697 (version "1.3.2")
698 (source
699 (origin
700 (method url-fetch)
701 (uri (cran-uri "hwriter" version))
702 (sha256
703 (base32
704 "0arjsz854rfkfqhgvpqbm9lfni97dcjs66isdsfvwfd2wz932dbb"))))
705 (build-system r-build-system)
706 (home-page "https://cran.r-project.org/web/packages/hwriter")
707 (synopsis "Output R objects in HTML format")
708 (description
709 "This package provides easy-to-use and versatile functions to output R
710 objects in HTML format.")
711 (license license:lgpl2.1+)))
712
713 (define-public r-rjson
714 (package
715 (name "r-rjson")
716 (version "0.2.20")
717 (source
718 (origin
719 (method url-fetch)
720 (uri (cran-uri "rjson" version))
721 (sha256
722 (base32
723 "0v1zvdd3svnavklh7y5xbwrrkbvx6053r4c5hgnk7hz7bqg7qa1s"))))
724 (build-system r-build-system)
725 (home-page "https://cran.r-project.org/web/packages/rjson")
726 (synopsis "JSON library for R")
727 (description
728 "This package provides functions to convert R objects into JSON objects
729 and vice-versa.")
730 (license license:gpl2+)))
731
732 (define-public r-shiny
733 (package
734 (name "r-shiny")
735 (version "1.2.0")
736 (source
737 (origin
738 (method git-fetch)
739 (uri (git-reference
740 (url "https://github.com/rstudio/shiny.git")
741 (commit (string-append "v" version))))
742 (file-name (git-file-name name version))
743 (sha256
744 (base32
745 "1kl3dh68h4cnrm3rqn9pddk5n6bsmr5x0626bkfv0qqi0q92zin4"))))
746 (build-system r-build-system)
747 (arguments
748 `(#:modules ((guix build r-build-system)
749 (guix build minify-build-system)
750 (guix build utils)
751 (ice-9 match))
752 #:imported-modules (,@%r-build-system-modules
753 (guix build minify-build-system))
754 #:phases
755 (modify-phases (@ (guix build r-build-system) %standard-phases)
756 (add-after 'unpack 'replace-bundled-minified-JavaScript
757 (lambda* (#:key inputs #:allow-other-keys)
758 (let ((replace-file (lambda (old new)
759 (format #t "replacing ~a with ~a\n" old new)
760 (delete-file old)
761 (symlink new old))))
762 ;; NOTE: Files in ./inst/www/shared/datepicker/js/locales/
763 ;; contain just data. They are not minified code, so we don't
764 ;; replace them.
765 (with-directory-excursion "inst/www/shared"
766 (replace-file "bootstrap/shim/respond.min.js"
767 (string-append (assoc-ref inputs "js-respond")
768 "/share/javascript/respond.min.js"))
769 (replace-file "bootstrap/shim/html5shiv.min.js"
770 (string-append (assoc-ref inputs "js-html5shiv")
771 "/share/javascript/html5shiv.min.js"))
772 (replace-file "json2-min.js"
773 (string-append (assoc-ref inputs "js-json2")
774 "/share/javascript/json2.min.js"))
775 (replace-file "strftime/strftime-min.js"
776 (string-append (assoc-ref inputs "js-strftime")
777 "/share/javascript/strftime.min.js"))
778 (replace-file "highlight/highlight.pack.js"
779 (string-append (assoc-ref inputs "js-highlight")
780 "/share/javascript/highlight.min.js"))
781 (replace-file "datatables/js/jquery.dataTables.min.js"
782 (string-append (assoc-ref inputs "js-datatables")
783 "/share/javascript/jquery.dataTables.min.js"))
784 (replace-file "selectize/js/selectize.min.js"
785 (string-append (assoc-ref inputs "js-selectize")
786 "/share/javascript/selectize.min.js"))
787 (replace-file "selectize/js/es5-shim.min.js"
788 (string-append (assoc-ref inputs "js-es5-shim")
789 "/share/javascript/es5-shim.min.js"))
790 (for-each (match-lambda
791 ((source . target)
792 (delete-file target)
793 (minify source #:target target)))
794 '(("jqueryui/jquery-ui.js" .
795 "jqueryui/jquery-ui.min.js")
796 ("datepicker/js/bootstrap-datepicker.js" .
797 "datepicker/js/bootstrap-datepicker.min.js")
798 ("ionrangeslider/js/ion.rangeSlider.js" .
799 "ionrangeslider/js/ion.rangeSlider.min.js")
800 ("bootstrap/js/bootstrap.js" .
801 "bootstrap/js/bootstrap.min.js")
802 ("shiny.js" .
803 "shiny.min.js")
804 ("jquery.js" .
805 "jquery.min.js")))))
806 #t)))))
807 (propagated-inputs
808 `(("r-crayon" ,r-crayon)
809 ("r-httpuv" ,r-httpuv)
810 ("r-mime" ,r-mime)
811 ("r-jsonlite" ,r-jsonlite)
812 ("r-xtable" ,r-xtable)
813 ("r-digest" ,r-digest)
814 ("r-htmltools" ,r-htmltools)
815 ("r-r6" ,r-r6)
816 ("r-sourcetools" ,r-sourcetools)))
817 (inputs
818 `(("js-datatables" ,js-datatables)
819 ("js-html5shiv" ,js-html5shiv)
820 ("js-json2" ,js-json2)
821 ("js-respond" ,js-respond)
822 ("js-selectize" ,js-selectize)
823 ("js-strftime" ,js-strftime)
824 ("js-highlight" ,js-highlight)
825 ("js-es5-shim" ,js-es5-shim)))
826 (native-inputs
827 `(("uglify-js" ,uglify-js)))
828 (home-page "http://shiny.rstudio.com")
829 (synopsis "Easy interactive web applications with R")
830 (description
831 "Makes it incredibly easy to build interactive web applications
832 with R. Automatic \"reactive\" binding between inputs and outputs and
833 extensive prebuilt widgets make it possible to build beautiful,
834 responsive, and powerful applications with minimal effort.")
835 (license license:artistic2.0)))
836
837 ;; This package includes minified JavaScript files. When upgrading please
838 ;; check that there are no new minified JavaScript files.
839 (define-public r-shinytree
840 (package
841 (name "r-shinytree")
842 (version "0.2.7")
843 (source
844 (origin
845 (method url-fetch)
846 (uri (cran-uri "shinyTree" version))
847 (sha256
848 (base32
849 "0jfx2capckv7hf2yx3fn8i4rcmhi222ah91jnmhg497x8wgz31s3"))
850 (modules '((guix build utils)))
851 (snippet
852 '(begin
853 ;; Delete minified JavaScript
854 (for-each delete-file
855 '("inst/www/jsTree-3.3.7/libs/require.js"
856 "inst/www/jsTree-3.3.7/libs/jquery.js"
857 "inst/www/jsTree-3.3.7/jstree.min.js"))
858 #t))))
859 (properties `((upstream-name . "shinyTree")))
860 (build-system r-build-system)
861 (arguments
862 `(#:modules ((guix build utils)
863 (guix build r-build-system)
864 (srfi srfi-1)
865 (ice-9 popen))
866 #:phases
867 (modify-phases %standard-phases
868 (add-after 'unpack 'replace-minified-javascript
869 (lambda* (#:key inputs #:allow-other-keys)
870 (with-directory-excursion "inst/www/jsTree-3.3.7/"
871 (symlink (string-append (assoc-ref inputs "js-requirejs")
872 "/share/javascript/require.min.js")
873 "libs/require.js")
874 (call-with-values
875 (lambda ()
876 (unzip2
877 `((,(assoc-ref inputs "js-jquery")
878 "libs/jquery.js")
879 ("jstree.js"
880 "jstree.min.js"))))
881 (lambda (sources targets)
882 (for-each (lambda (source target)
883 (format #t "Processing ~a --> ~a~%"
884 source target)
885 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
886 (call-with-output-file target
887 (lambda (port)
888 (dump-port minified port)))))
889 sources targets))))
890 #t)))))
891 (propagated-inputs
892 `(("r-htmlwidgets" ,r-htmlwidgets)
893 ("r-jsonlite" ,r-jsonlite)
894 ("r-promises" ,r-promises)
895 ("r-shiny" ,r-shiny)
896 ("r-stringr" ,r-stringr)))
897 (inputs
898 `(("js-requirejs" ,js-requirejs)))
899 (native-inputs
900 `(("uglify-js" ,uglify-js)
901 ("js-jquery"
902 ,(origin
903 (method url-fetch)
904 (uri "https://code.jquery.com/jquery-3.3.1.js")
905 (sha256
906 (base32
907 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))))
908 (home-page "https://cran.r-project.org/web/packages/shinyTree/")
909 (synopsis "jsTree bindings for Shiny")
910 (description
911 "This package exposes R bindings to jsTree, a JavaScript library that
912 supports interactive trees, to enable rich, editable trees in Shiny.")
913 (license license:expat)))
914
915 (define-public r-shinydashboard
916 (package
917 (name "r-shinydashboard")
918 (version "0.7.1")
919 (source (origin
920 (method url-fetch)
921 (uri (cran-uri "shinydashboard" version))
922 (sha256
923 (base32
924 "0khac8b27q3swdw07kl609hm0fjfjsjv591b388q99mqqr2rk92i"))))
925 (build-system r-build-system)
926 ;; The directory inst/AdminLTE/ contains a minified JavaScript file.
927 ;; Regenerate it from the included sources.
928 (arguments
929 `(#:modules ((guix build utils)
930 (guix build r-build-system)
931 (ice-9 popen))
932 #:phases
933 (modify-phases %standard-phases
934 (add-after 'unpack 'generate-minified-javascript
935 (lambda _
936 (with-directory-excursion "inst/AdminLTE"
937 (delete-file "app.min.js")
938 (let ((minified (open-pipe* OPEN_READ "uglify-js" "app.js")))
939 (call-with-output-file "app.min.js"
940 (lambda (port)
941 (dump-port minified port))))))))))
942 (propagated-inputs
943 `(("r-htmltools" ,r-htmltools)
944 ("r-promises" ,r-promises)
945 ("r-shiny" ,r-shiny)))
946 (native-inputs
947 `(("uglify-js" ,uglify-js)))
948 (home-page "http://rstudio.github.io/shinydashboard/")
949 (synopsis "Create dashboards with shiny")
950 (description "This package provides an extension to the Shiny web
951 application framework for R, making it easy to create attractive dashboards.")
952 ;; This package includes software that was released under the Expat
953 ;; license, but the whole package is released under GPL version 2 or
954 ;; later.
955 (license license:gpl2+)))
956
957 (define-public r-shinyfiles
958 (package
959 (name "r-shinyfiles")
960 (version "0.7.5")
961 (source
962 (origin
963 (method url-fetch)
964 (uri (cran-uri "shinyFiles" version))
965 (sha256
966 (base32 "1143m941hma9hc77c3xcw26c0ygfhn9ii2sbp9wrydxv4gc7mr8a"))))
967 (properties `((upstream-name . "shinyFiles")))
968 (build-system r-build-system)
969 (propagated-inputs
970 `(("r-fs" ,r-fs)
971 ("r-htmltools" ,r-htmltools)
972 ("r-jsonlite" ,r-jsonlite)
973 ("r-shiny" ,r-shiny)
974 ("r-tibble" ,r-tibble)))
975 (home-page "https://github.com/thomasp85/shinyFiles")
976 (synopsis "Server-side file system viewer for Shiny")
977 (description
978 "This package provides functionality for client-side navigation of the
979 server side file system in shiny apps. In case the app is running locally
980 this gives the user direct access to the file system without the need to
981 \"download\" files to a temporary location. Both file and folder selection as
982 well as file saving is available.")
983 (license license:gpl2+)))
984
985 (define-public r-shinythemes
986 (package
987 (name "r-shinythemes")
988 (version "1.1.2")
989 (source
990 (origin
991 (method url-fetch)
992 (uri (cran-uri "shinythemes" version))
993 (sha256
994 (base32
995 "12miz44n2zxfswnia7p8dirxj3miw0aqn4pkx2111ikz67ax84rf"))))
996 (properties `((upstream-name . "shinythemes")))
997 (build-system r-build-system)
998 (propagated-inputs `(("r-shiny" ,r-shiny)))
999 (home-page "http://rstudio.github.io/shinythemes/")
1000 (synopsis "Themes for Shiny")
1001 (description
1002 "This package provides themes for use with Shiny. It includes several
1003 Bootstrap themes, which are packaged for use with Shiny applications.")
1004 ;; The package is released under version 3 of the GPL, but it includes
1005 ;; source files that are covered by the Expat license. It also includes
1006 ;; fonts under SIL or the ASL.
1007 (license (list license:gpl3 license:expat
1008 license:silofl1.1 license:asl2.0))))
1009
1010 ;; The package sources include minified variants of d3.js and non-minified
1011 ;; source code of d3-jetpack.
1012 (define-public r-d3r
1013 (package
1014 (name "r-d3r")
1015 (version "0.8.7")
1016 (source
1017 (origin
1018 (method url-fetch)
1019 (uri (cran-uri "d3r" version))
1020 (sha256
1021 (base32
1022 "0xl3im76lp7pd5lhp8jfyqdm4j4zvjrx5a5fl81xv2cf7x3n4f2a"))))
1023 (build-system r-build-system)
1024 (arguments
1025 `(#:modules ((guix build utils)
1026 (guix build r-build-system)
1027 (srfi srfi-1)
1028 (ice-9 popen))
1029 #:phases
1030 (modify-phases %standard-phases
1031 (add-after 'unpack 'process-javascript
1032 (lambda* (#:key inputs #:allow-other-keys)
1033 (with-directory-excursion "inst/www/d3/"
1034 (call-with-values
1035 (lambda ()
1036 (unzip2
1037 `((,(assoc-ref inputs "d3.v3.js")
1038 "v3/dist/d3.min.js")
1039 (,(assoc-ref inputs "d3.v4.js")
1040 "v4/dist/d3.min.js")
1041 (,(assoc-ref inputs "d3.v5.js")
1042 "v5/dist/d3.min.js"))))
1043 (lambda (sources targets)
1044 (for-each (lambda (source target)
1045 (format #t "Processing ~a --> ~a~%"
1046 source target)
1047 (delete-file target)
1048 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
1049 (call-with-output-file target
1050 (lambda (port)
1051 (dump-port minified port)))))
1052 sources targets))))
1053 #t)))))
1054 (propagated-inputs
1055 `(("r-dplyr" ,r-dplyr)
1056 ("r-htmltools" ,r-htmltools)
1057 ("r-tidyr" ,r-tidyr)))
1058 (native-inputs
1059 `(("uglify-js" ,uglify-js)
1060 ("d3.v3.js"
1061 ,(origin
1062 (method url-fetch)
1063 (uri "https://d3js.org/d3.v3.js")
1064 (sha256
1065 (base32
1066 "1arr7sr08vy7wh0nvip2mi7dpyjw4576vf3bm45rp4g5lc1k1x41"))))
1067 ("d3.v4.js"
1068 ,(origin
1069 (method url-fetch)
1070 (uri "https://d3js.org/d3.v4.js")
1071 (sha256
1072 (base32
1073 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))
1074 ("d3.v5.js"
1075 ,(origin
1076 (method url-fetch)
1077 (uri "https://d3js.org/d3.v5.js")
1078 (sha256
1079 (base32
1080 "0kxvx5pfagxn6nhavdwsdnzyd26g0z5dsfi1pi5dvcmb0c8ipcdn"))))))
1081 (home-page "https://github.com/timelyportfolio/d3r")
1082 (synopsis "d3.js utilities for R")
1083 (description
1084 "This package provides a suite of functions to help ease the use of the
1085 d3.js visualization library in R. These helpers include
1086 @code{htmltools::htmlDependency} functions, hierarchy builders, and conversion
1087 tools for @code{partykit}, @code{igraph}, @code{table}, and @code{data.frame}
1088 R objects into the JSON format that the d3.js library expects.")
1089 (license license:bsd-3)))
1090
1091 ;; We use the latest commit here because the last release was in 2016 while
1092 ;; the latest commit was in 2018.
1093 (define-public r-sankeyd3
1094 (let ((commit "fd50a74e29056e0d67d75b4d04de47afb2f932bc")
1095 (revision "1"))
1096 (package
1097 (name "r-sankeyd3")
1098 (version (git-version "0.3.2" revision commit))
1099 (source
1100 (origin
1101 (method git-fetch)
1102 (uri (git-reference
1103 (url "https://github.com/fbreitwieser/sankeyD3.git")
1104 (commit commit)))
1105 (file-name (git-file-name name version))
1106 (sha256
1107 (base32
1108 "0jrcnfax321pszbpjdifnkbrgbjr43bjzvlzv1p5a8wskksqwiyx"))))
1109 (build-system r-build-system)
1110 (propagated-inputs
1111 `(("r-d3r" ,r-d3r)
1112 ("r-htmlwidgets" ,r-htmlwidgets)
1113 ("r-shiny" ,r-shiny)
1114 ("r-magrittr" ,r-magrittr)))
1115 (home-page "https://github.com/fbreitwieser/sankeyD3")
1116 (synopsis "Sankey network graphs from R")
1117 (description
1118 "This package provides an R library to generate Sankey network graphs
1119 in R and Shiny via the D3 visualization library.")
1120 ;; The R code is licensed under GPLv3+. It includes the non-minified
1121 ;; JavaScript source code of d3-sankey, which is released under the
1122 ;; 3-clause BSD license.
1123 (license (list license:gpl3+ license:bsd-3)))))
1124
1125 (define-public r-crosstalk
1126 (package
1127 (name "r-crosstalk")
1128 (version "1.0.0")
1129 (source
1130 (origin
1131 (method url-fetch)
1132 (uri (cran-uri "crosstalk" version))
1133 (sha256
1134 (base32
1135 "0lfa89vhrzi7a1rghmygcjr8gzddw35sinb3jx6g49mc9jias7mk"))))
1136 (build-system r-build-system)
1137 (propagated-inputs
1138 `(("r-ggplot2" ,r-ggplot2)
1139 ("r-htmltools" ,r-htmltools)
1140 ("r-jsonlite" ,r-jsonlite)
1141 ("r-lazyeval" ,r-lazyeval)
1142 ("r-r6" ,r-r6)
1143 ("r-shiny" ,r-shiny)))
1144 (home-page "https://rstudio.github.io/crosstalk/")
1145 (synopsis "Inter-widget interactivity for HTML widgets")
1146 (description
1147 "This package provides building blocks for allowing HTML widgets to
1148 communicate with each other, with Shiny or without (i.e. static @code{.html}
1149 files). It currently supports linked brushing and filtering.")
1150 (license license:expat)))
1151
1152 (define-public r-rook
1153 (package
1154 (name "r-rook")
1155 (version "1.1-1")
1156 (source
1157 (origin
1158 (method url-fetch)
1159 (uri (cran-uri "Rook" version))
1160 (sha256
1161 (base32
1162 "00s9a0kr9rwxvlq433daxjk4ji8m0w60hjdprf502msw9kxfrx00"))))
1163 (properties `((upstream-name . "Rook")))
1164 (build-system r-build-system)
1165 (propagated-inputs `(("r-brew" ,r-brew)))
1166 (home-page "https://cran.r-project.org/web/packages/Rook")
1167 (synopsis "Web server interface for R")
1168 (description
1169 "This package contains the Rook specification and convenience software
1170 for building and running Rook applications. A Rook application is an R
1171 reference class object that implements a @code{call} method or an R closure
1172 that takes exactly one argument, an environment, and returns a list with three
1173 named elements: the @code{status}, the @code{headers}, and the @code{body}.")
1174 (license license:gpl2)))
1175
1176 (define-public r-miniui
1177 (package
1178 (name "r-miniui")
1179 (version "0.1.1.1")
1180 (source
1181 (origin
1182 (method url-fetch)
1183 (uri (cran-uri "miniUI" version))
1184 (sha256
1185 (base32
1186 "1h5h2sc57h95d6bsgs95l26911g38hvjc1v50bc31xl9689l2as5"))))
1187 (properties `((upstream-name . "miniUI")))
1188 (build-system r-build-system)
1189 (propagated-inputs
1190 `(("r-htmltools" ,r-htmltools)
1191 ("r-shiny" ,r-shiny)))
1192 (home-page "https://cran.r-project.org/web/packages/miniUI/")
1193 (synopsis "Shiny UI widgets for small screens")
1194 (description
1195 "This package provides UI widget and layout functions for writing Shiny apps that
1196 work well on small screens.")
1197 (license license:gpl3)))
1198
1199 (define-public r-feather
1200 (package
1201 (name "r-feather")
1202 (version "0.3.5")
1203 (source
1204 (origin
1205 (method url-fetch)
1206 (uri (cran-uri "feather" version))
1207 (sha256
1208 (base32
1209 "1gxd0h2m56sjjlzn4dry6s13nddxc4l5i11gsvavaf2dwbahdzsh"))))
1210 (build-system r-build-system)
1211 (propagated-inputs
1212 `(("r-hms" ,r-hms)
1213 ("r-rcpp" ,r-rcpp)
1214 ("r-tibble" ,r-tibble)))
1215 (home-page "https://github.com/wesm/feather")
1216 (synopsis "R Bindings to the Feather API")
1217 (description "Read and write feather files, a lightweight binary columnar
1218 data store designed for maximum speed.")
1219 (license license:asl2.0)))
1220
1221 (define-public r-maps
1222 (package
1223 (name "r-maps")
1224 (version "3.3.0")
1225 (source
1226 (origin
1227 (method url-fetch)
1228 (uri (cran-uri "maps" version))
1229 (sha256
1230 (base32
1231 "05i2ppl5z4p8rawgqmy3z4ia05fcblpq1vvrmrkgkkpdlhczx6hr"))))
1232 (build-system r-build-system)
1233 (home-page "https://cran.r-project.org/web/packages/maps")
1234 (synopsis "Draw geographical maps")
1235 (description "This package provides an R module for display of maps.
1236 Projection code and larger maps are in separate packages (@code{mapproj} and
1237 @code{mapdata}).")
1238 (license license:gpl2)))
1239
1240 (define-public r-mapproj
1241 (package
1242 (name "r-mapproj")
1243 (version "1.2.6")
1244 (source
1245 (origin
1246 (method url-fetch)
1247 (uri (cran-uri "mapproj" version))
1248 (sha256
1249 (base32
1250 "1rggww8cbwv0vzlj5afzhbsbngg4bzj5znbkz7wmxsbshfbsm9b2"))))
1251 (build-system r-build-system)
1252 (propagated-inputs `(("r-maps" ,r-maps)))
1253 (home-page "https://cran.r-project.org/web/packages/mapproj")
1254 (synopsis "Map projection in R")
1255 (description "This package converts latitude/longitude into projected
1256 coordinates.")
1257 (license (list license:gpl2 ; The R interface
1258 (license:non-copyleft ; The C code
1259 "https://www.gnu.org/licenses/license-list.en.html#lucent102"
1260 "Lucent Public License Version 1.02")))))
1261
1262 (define-public r-rgooglemaps
1263 (package
1264 (name "r-rgooglemaps")
1265 (version "1.4.4")
1266 (source
1267 (origin
1268 (method url-fetch)
1269 (uri (cran-uri "RgoogleMaps" version))
1270 (sha256
1271 (base32
1272 "0sbklacc4jl5524ixhc11mh6smrzdz4l9pji6cn402i6zdn9z05x"))))
1273 (properties `((upstream-name . "RgoogleMaps")))
1274 (build-system r-build-system)
1275 (propagated-inputs `(("r-png" ,r-png)))
1276 (home-page "https://cran.r-project.org/web/packages/RgoogleMaps")
1277 (synopsis "Use Google Maps in R")
1278 (description "This package serves two purposes:
1279 @enumerate
1280 @item Provide a comfortable R interface to query the Google server for static
1281 maps, and
1282 @item Use the map as a background image to overlay plots within R. This
1283 requires proper coordinate scaling.
1284 @end enumerate\n")
1285 (license license:gpl2+)))
1286
1287 (define-public r-geosphere
1288 (package
1289 (name "r-geosphere")
1290 (version "1.5-10")
1291 (source
1292 (origin
1293 (method url-fetch)
1294 (uri (cran-uri "geosphere" version))
1295 (sha256
1296 (base32
1297 "15xlgsmn0vwky1l13n6acdz6jn2b2na3gf6x367y3qh1f5w4zkan"))))
1298 (build-system r-build-system)
1299 (propagated-inputs `(("r-sp" ,r-sp)))
1300 (home-page "https://cran.r-project.org/web/packages/geosphere")
1301 (synopsis "Spherical trigonometry")
1302 (description "This package computes spherical trigonometry for geographic
1303 applications. That is, compute distances and related measures for angular
1304 (longitude/latitude) locations.")
1305 (license license:gpl3+)))
1306
1307 (define-public r-ggmap
1308 (package
1309 (name "r-ggmap")
1310 (version "3.0.0")
1311 (source
1312 (origin
1313 (method url-fetch)
1314 (uri (cran-uri "ggmap" version))
1315 (sha256
1316 (base32
1317 "13dmzl6z62pzjiffilarkji46vy0sacxa8a7mhrhc3biq3ylzhln"))))
1318 (build-system r-build-system)
1319 (propagated-inputs
1320 `(("r-bitops" ,r-bitops)
1321 ("r-digest" ,r-digest)
1322 ("r-dplyr" ,r-dplyr)
1323 ("r-ggplot2" ,r-ggplot2)
1324 ("r-glue" ,r-glue)
1325 ("r-httr" ,r-httr)
1326 ("r-jpeg" ,r-jpeg)
1327 ("r-magrittr" ,r-magrittr)
1328 ("r-plyr" ,r-plyr)
1329 ("r-png" ,r-png)
1330 ("r-purrr" ,r-purrr)
1331 ("r-rgooglemaps" ,r-rgooglemaps)
1332 ("r-rjson" ,r-rjson)
1333 ("r-scales" ,r-scales)
1334 ("r-stringr" ,r-stringr)
1335 ("r-tibble" ,r-tibble)
1336 ("r-tidyr" ,r-tidyr)))
1337 (home-page "https://github.com/dkahle/ggmap")
1338 (synopsis "Spatial visualization with ggplot2")
1339 (description "This package provides a collection of functions to visualize
1340 spatial data and models on top of static maps from various online sources (e.g
1341 Google Maps and Stamen Maps). It includes tools common to those tasks,
1342 including functions for geolocation and routing.")
1343 (license license:gpl2)))
1344
1345 (define-public r-haven
1346 (package
1347 (name "r-haven")
1348 (version "2.2.0")
1349 (source
1350 (origin
1351 (method url-fetch)
1352 (uri (cran-uri "haven" version))
1353 (sha256
1354 (base32
1355 "0g9d6mxqmrw2zdms78jpx2sx73pczlyy771v1h5hmxqz9sqyk7hr"))))
1356 (build-system r-build-system)
1357 (inputs
1358 `(("zlib" ,zlib)))
1359 (propagated-inputs
1360 `(("r-forcats" ,r-forcats)
1361 ("r-hms" ,r-hms)
1362 ("r-rcpp" ,r-rcpp)
1363 ("r-rlang" ,r-rlang)
1364 ("r-readr" ,r-readr)
1365 ("r-tibble" ,r-tibble)
1366 ("r-tidyselect" ,r-tidyselect)))
1367 (home-page "https://haven.tidyverse.org")
1368 (synopsis "Import and Export 'SPSS', 'Stata' and 'SAS' Files")
1369 (description
1370 "This package lets you mport foreign statistical formats into R via the
1371 embedded @url{https://github.com/WizardMac/ReadStat,ReadStat} C library.")
1372 (license license:expat)))
1373
1374 (define-public r-amap
1375 (package
1376 (name "r-amap")
1377 (version "0.8-17")
1378 (source (origin
1379 (method url-fetch)
1380 (uri (cran-uri "amap" version))
1381 (sha256
1382 (base32
1383 "1il94bkhl8192vawq4gr2gwyhqhid27jr2312rhvr72ssg8p713b"))))
1384 (build-system r-build-system)
1385 (native-inputs
1386 `(("gfortran" ,gfortran)))
1387 (home-page "http://mulcyber.toulouse.inra.fr/projects/amap/")
1388 (synopsis "Another multidimensional analysis package")
1389 (description "This package provides tools for clustering and principal
1390 component analysis (with robust methods, and parallelized functions).")
1391 (license license:gpl2+)))
1392
1393 (define-public r-ape
1394 (package
1395 (name "r-ape")
1396 (version "5.3")
1397 (source
1398 (origin
1399 (method url-fetch)
1400 (uri (cran-uri "ape" version))
1401 (sha256
1402 (base32
1403 "08wbk1kxhs32bmmvqlqanbdg1w235amd35k8m00fngsj9h9xzc08"))))
1404 (build-system r-build-system)
1405 (propagated-inputs
1406 `(("r-lattice" ,r-lattice)
1407 ("r-nlme" ,r-nlme)
1408 ("r-rcpp" ,r-rcpp)))
1409 (home-page "http://ape-package.ird.fr/")
1410 (synopsis "Analyses of phylogenetics and evolution")
1411 (description
1412 "This package provides functions for reading, writing, plotting, and
1413 manipulating phylogenetic trees, analyses of comparative data in a
1414 phylogenetic framework, ancestral character analyses, analyses of
1415 diversification and macroevolution, computing distances from DNA sequences,
1416 and several other tools.")
1417 (license license:gpl2+)))
1418
1419 (define-public r-abbyyr
1420 (package
1421 (name "r-abbyyr")
1422 (version "0.5.5")
1423 (source
1424 (origin
1425 (method url-fetch)
1426 (uri (cran-uri "abbyyR" version))
1427 (sha256
1428 (base32
1429 "1vldnd3dg89aj6a73nhirirqddbfdrnzhb5m3679i60sark8nk6r"))))
1430 (properties `((upstream-name . "abbyyR")))
1431 (build-system r-build-system)
1432 (propagated-inputs
1433 `(("r-curl" ,r-curl)
1434 ("r-httr" ,r-httr)
1435 ("r-plyr" ,r-plyr)
1436 ("r-progress" ,r-progress)
1437 ("r-readr" ,r-readr)
1438 ("r-xml" ,r-xml)))
1439 (home-page "https://github.com/soodoku/abbyyR")
1440 (synopsis "Access to Abbyy Optical Character Recognition (OCR) API")
1441 (description
1442 "This package provides tools to get text from images of text using Abbyy
1443 Cloud Optical Character Recognition (OCR) API. With abbyyyR, one can easily
1444 OCR images, barcodes, forms, documents with machine readable zones, e.g.
1445 passports and get the results in a variety of formats including plain text and
1446 XML. To learn more about the Abbyy OCR API, see @url{http://ocrsdk.com/}.")
1447 (license license:expat)))
1448
1449 (define-public r-colorspace
1450 (package
1451 (name "r-colorspace")
1452 (version "1.4-1")
1453 (source
1454 (origin
1455 (method url-fetch)
1456 (uri (cran-uri "colorspace" version))
1457 (sha256
1458 (base32 "0wyny3ah2d74hqv80s6imrarpna09gq3j9rjnz6zx2qg0lx72gb9"))))
1459 (build-system r-build-system)
1460 (home-page "https://cran.r-project.org/web/packages/colorspace")
1461 (synopsis "Color space manipulation")
1462 (description
1463 "This package carries out a mapping between assorted color spaces
1464 including RGB, HSV, HLS, CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB and polar
1465 CIELAB. Qualitative, sequential, and diverging color palettes based on HCL
1466 colors are provided.")
1467 (license license:bsd-3)))
1468
1469 (define-public r-glue
1470 (package
1471 (name "r-glue")
1472 (version "1.3.1")
1473 (source
1474 (origin
1475 (method url-fetch)
1476 (uri (cran-uri "glue" version))
1477 (sha256
1478 (base32
1479 "1a1ycg9r3gd91visp49q49rsrdgyf8kr9dxdy3hk99kikn4z5hag"))))
1480 (build-system r-build-system)
1481 (home-page "https://github.com/tidyverse/glue")
1482 (synopsis "Interpreted string literals")
1483 (description
1484 "This package provides an implementation of interpreted string literals,
1485 inspired by Python's Literal String Interpolation (PEP-0498) and
1486 Docstrings (PEP-0257) and Julia's Triple-Quoted String Literals.")
1487 (license license:expat)))
1488
1489 (define-public r-pastecs
1490 (package
1491 (name "r-pastecs")
1492 (version "1.3.21")
1493 (source (origin
1494 (method url-fetch)
1495 (uri (cran-uri "pastecs" version))
1496 (sha256
1497 (base32
1498 "0z4dic94ar646w7zc2ggi5hgvf2qnznsani94c5pyql8zspz47lc"))))
1499 (build-system r-build-system)
1500 (propagated-inputs
1501 `(("r-boot" ,r-boot)))
1502 (home-page "http://www.sciviews.org/pastecs")
1503 (synopsis "Analysis of space-time ecological series")
1504 (description
1505 "This package provides functions for regulation, decomposition and analysis
1506 of space-time series. The @code{pastecs} library is a PNEC-Art4 and IFREMER
1507 initiative to bring PASSTEC 2000 functionalities to R.")
1508 (license license:gpl2+)))
1509
1510 (define-public r-plogr
1511 (package
1512 (name "r-plogr")
1513 (version "0.2.0")
1514 (source
1515 (origin
1516 (method url-fetch)
1517 (uri (cran-uri "plogr" version))
1518 (sha256
1519 (base32
1520 "0a8dhzlna79ggyhfr0nncgh15a9n6r0dsz664pz0ah323wpblqqf"))))
1521 (build-system r-build-system)
1522 (home-page "https://github.com/krlmlr/plogr")
1523 (synopsis "R bindings for the plog C++ logging library")
1524 (description
1525 "This package provides the header files for a stripped-down version of
1526 the plog header-only C++ logging library, and a method to log to R's standard
1527 error stream.")
1528 (license license:expat)))
1529
1530 (define-public r-pls
1531 (package
1532 (name "r-pls")
1533 (version "2.7-2")
1534 (source
1535 (origin
1536 (method url-fetch)
1537 (uri (cran-uri "pls" version))
1538 (sha256
1539 (base32 "121byimd6bg7jbrq5wz5fpi0vxq0vh8g724vkhnjzszbvcv1xsb7"))))
1540 (build-system r-build-system)
1541 (home-page "http://mevik.net/work/software/pls.html")
1542 (synopsis "Partial Least Squares and Principal Component Regression")
1543 (description
1544 "The pls package implements multivariate regression methods: Partial Least
1545 Squares Regression (@dfn{PLSR}), Principal Component Regression (@dfn{PCR}), and
1546 Canonical Powered Partial Least Squares (@dfn{CPPLS}). It supports:
1547
1548 @itemize
1549 @item several algorithms: the traditional orthogonal scores (@dfn{NIPALS}) PLS
1550 algorithm, kernel PLS, wide kernel PLS, Simpls, and PCR through @code{svd}
1551 @item multi-response models (or @dfn{PLS2})
1552 @item flexible cross-validation
1553 @item Jackknife variance estimates of regression coefficients
1554 @item extensive and flexible plots: scores, loadings, predictions, coefficients,
1555 (R)MSEP, R², and correlation loadings
1556 @item formula interface, modelled after @code{lm()}, with methods for predict,
1557 print, summary, plot, update, etc.
1558 @item extraction functions for coefficients, scores, and loadings
1559 @item MSEP, RMSEP, and R² estimates
1560 @item multiplicative scatter correction (@dfn{MSC})
1561 @end itemize\n")
1562 (license license:gpl2)))
1563
1564 (define-public r-ps
1565 (package
1566 (name "r-ps")
1567 (version "1.3.0")
1568 (source
1569 (origin
1570 (method url-fetch)
1571 (uri (cran-uri "ps" version))
1572 (sha256
1573 (base32 "1lcq7r0q4jb8x6k023zr2ydj2dg925bqqbkhx1phpnyjrk897498"))))
1574 (build-system r-build-system)
1575 (home-page "http://ps.r-lib.org")
1576 (synopsis "List, query, and manipulate system processes")
1577 (description
1578 "The ps package implements an API to list, query, and manipulate system
1579 processes. Most of its code is based on the @code{psutil} Python package.")
1580 (license license:bsd-3)))
1581
1582 (define-public r-pkgbuild
1583 (package
1584 (name "r-pkgbuild")
1585 (version "1.0.6")
1586 (source
1587 (origin
1588 (method url-fetch)
1589 (uri (cran-uri "pkgbuild" version))
1590 (sha256
1591 (base32 "0xnlz6ivhkbmncg9hfw5p69lm4rjy3wn5lyxmygxyf4rrfnnqwxx"))))
1592 (build-system r-build-system)
1593 (propagated-inputs
1594 `(("r-callr" ,r-callr)
1595 ("r-cli" ,r-cli)
1596 ("r-crayon" ,r-crayon)
1597 ("r-desc" ,r-desc)
1598 ("r-prettyunits" ,r-prettyunits)
1599 ("r-r6" ,r-r6)
1600 ("r-rprojroot" ,r-rprojroot)
1601 ("r-withr" ,r-withr)))
1602 (home-page "https://github.com/r-pkgs/pkgbuild")
1603 (synopsis "Find tools needed to build R packages")
1604 (description
1605 "This package provides functions used to build R packages. It locates
1606 compilers needed to build R packages on various platforms and ensures the PATH
1607 is configured appropriately so R can use them.")
1608 (license license:gpl3)))
1609
1610 (define-public r-pkgload
1611 (package
1612 (name "r-pkgload")
1613 (version "1.0.2")
1614 (source
1615 (origin
1616 (method url-fetch)
1617 (uri (cran-uri "pkgload" version))
1618 (sha256
1619 (base32
1620 "0z7jvharafahi2gv5547mk1n499isjzw06kfwymmxc0gd575d1ii"))))
1621 (build-system r-build-system)
1622 (propagated-inputs
1623 `(("r-desc" ,r-desc)
1624 ("r-pkgbuild" ,r-pkgbuild)
1625 ("r-rlang" ,r-rlang)
1626 ("r-rprojroot" ,r-rprojroot)
1627 ("r-rstudioapi" ,r-rstudioapi)
1628 ("r-withr" ,r-withr)))
1629 (home-page "https://github.com/r-lib/pkgload")
1630 (synopsis "Simulate package installation and attach")
1631 (description
1632 "This package simulates the process of installing a package and then
1633 attaching it. This is a key part of the @code{devtools} package as it allows
1634 you to rapidly iterate while developing a package.")
1635 (license license:gpl3)))
1636
1637 (define-public r-rcpp
1638 (package
1639 (name "r-rcpp")
1640 (version "1.0.3")
1641 (source
1642 (origin
1643 (method url-fetch)
1644 (uri (cran-uri "Rcpp" version))
1645 (sha256
1646 (base32 "03h3zyjq948y0hrrs95lfk4zgx6wfrg64hjlrfrzf5na7bfh0d9b"))))
1647 (build-system r-build-system)
1648 (native-inputs
1649 `(("r-knitr" ,r-knitr))) ; for vignettes
1650 (home-page "http://www.rcpp.org")
1651 (synopsis "Seamless R and C++ integration")
1652 (description
1653 "The Rcpp package provides R functions as well as C++ classes which offer
1654 a seamless integration of R and C++. Many R data types and objects can be
1655 mapped back and forth to C++ equivalents which facilitates both writing of new
1656 code as well as easier integration of third-party libraries. Documentation
1657 about Rcpp is provided by several vignettes included in this package, via the
1658 @code{Rcpp Gallery} site at <http://gallery.rcpp.org>, the paper by Eddelbuettel
1659 and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see
1660 @code{citation(\"Rcpp\")} for details on these last two.")
1661 (license license:gpl2+)))
1662
1663 (define-public r-bindr
1664 (package
1665 (name "r-bindr")
1666 (version "0.1.1")
1667 (source
1668 (origin
1669 (method url-fetch)
1670 (uri (cran-uri "bindr" version))
1671 (sha256
1672 (base32
1673 "1l05fpk2yql3jka321c0bdgx6mqq9pvfrg2844lbjfpbgjkmqy3w"))))
1674 (build-system r-build-system)
1675 (home-page "https://github.com/krlmlr/bindr")
1676 (synopsis "Parametrized active bindings")
1677 (description
1678 "This package provides a simple interface for creating active bindings
1679 where the bound function accepts additional arguments.")
1680 (license license:expat)))
1681
1682 (define-public r-bindrcpp
1683 (package
1684 (name "r-bindrcpp")
1685 (version "0.2.2")
1686 (source
1687 (origin
1688 (method url-fetch)
1689 (uri (cran-uri "bindrcpp" version))
1690 (sha256
1691 (base32
1692 "0rz4ibjdjsxl99ff3ha79z7cnjmilx4rx58fk9kk7ld9xc4hf4s8"))))
1693 (build-system r-build-system)
1694 (propagated-inputs
1695 `(("r-bindr" ,r-bindr)
1696 ("r-plogr" ,r-plogr)
1697 ("r-rcpp" ,r-rcpp)))
1698 (home-page "https://github.com/krlmlr/bindrcpp")
1699 (synopsis "Rcpp interface to active bindings")
1700 (description
1701 "This package provides an easy way to fill an environment with active
1702 bindings that call a C++ function.")
1703 (license license:expat)))
1704
1705 (define-public r-auc
1706 (package
1707 (name "r-auc")
1708 (version "0.3.0")
1709 (source
1710 (origin
1711 (method url-fetch)
1712 (uri (cran-uri "AUC" version))
1713 (sha256
1714 (base32
1715 "0ripcib2qz0m7rgr1kiz68nx8f6p408l1ww7j78ljqik7p3g41g7"))))
1716 (properties `((upstream-name . "AUC")))
1717 (build-system r-build-system)
1718 (home-page "https://cran.r-project.org/web/packages/AUC")
1719 (synopsis "Compute the area under the curve of selected measures")
1720 (description
1721 "This package includes functions to compute the area under the curve of
1722 selected measures: the area under the sensitivity curve (AUSEC), the area
1723 under the specificity curve (AUSPC), the area under the accuracy
1724 curve (AUACC), and the area under the receiver operating characteristic
1725 curve (AUROC). The curves can also be visualized. Support for partial areas
1726 is provided.")
1727 (license license:gpl2+)))
1728
1729 (define-public r-calibrate
1730 (package
1731 (name "r-calibrate")
1732 (version "1.7.5")
1733 (source
1734 (origin
1735 (method url-fetch)
1736 (uri (cran-uri "calibrate" version))
1737 (sha256
1738 (base32 "1s423nr176l2sc66wp7hzgqkv7c2bq8d2bjrrvrrm5qa9y3zdx1k"))))
1739 (build-system r-build-system)
1740 (propagated-inputs
1741 `(("r-mass" ,r-mass)))
1742 (home-page "https://cran.r-project.org/web/packages/calibrate")
1743 (synopsis "Calibration of scatterplot and biplot axes")
1744 (description
1745 "This is a package for drawing calibrated scales with tick marks
1746 on (non-orthogonal) variable vectors in scatterplots and biplots.")
1747 (license license:gpl2)))
1748
1749 (define-public r-shape
1750 (package
1751 (name "r-shape")
1752 (version "1.4.4")
1753 (source
1754 (origin
1755 (method url-fetch)
1756 (uri (cran-uri "shape" version))
1757 (sha256
1758 (base32
1759 "0hadk3mapkhbh8xjkiz52vxdagmmgvm15xwpzb90ikw4giyipjzl"))))
1760 (build-system r-build-system)
1761 (home-page "https://cran.r-project.org/web/packages/shape")
1762 (synopsis "Functions for plotting graphical shapes")
1763 (description
1764 "This package provides functions for plotting graphical shapes such as
1765 ellipses, circles, cylinders, arrows, ...")
1766 (license license:gpl3+)))
1767
1768 (define-public r-globaloptions
1769 (package
1770 (name "r-globaloptions")
1771 (version "0.1.1")
1772 (source
1773 (origin
1774 (method url-fetch)
1775 (uri (cran-uri "GlobalOptions" version))
1776 (sha256
1777 (base32 "0x89hfz80avq4zcskxl71i4zi0mgniqqxfrvz050aa2189wfyja2"))))
1778 (properties `((upstream-name . "GlobalOptions")))
1779 (build-system r-build-system)
1780 (home-page "https://github.com/jokergoo/GlobalOptions")
1781 (synopsis "Generate functions to get or set global options")
1782 (description
1783 "This package provides more controls on the option values such as
1784 validation and filtering on the values, making options invisible or private.")
1785 (license license:gpl2+)))
1786
1787 (define-public r-circlize
1788 (package
1789 (name "r-circlize")
1790 (version "0.4.8")
1791 (source
1792 (origin
1793 (method url-fetch)
1794 (uri (cran-uri "circlize" version))
1795 (sha256
1796 (base32
1797 "0jvr9hmxyhg0zx101iiqkrg8wfaj86kp62xpv42n2j9fkn5r1mi2"))))
1798 (build-system r-build-system)
1799 (propagated-inputs
1800 `(("r-colorspace" ,r-colorspace)
1801 ("r-globaloptions" ,r-globaloptions)
1802 ("r-shape" ,r-shape)))
1803 (home-page "https://github.com/jokergoo/circlize")
1804 (synopsis "Circular visualization")
1805 (description
1806 "Circular layout is an efficient way to visualise huge amounts of
1807 information. This package provides an implementation of circular layout
1808 generation in R as well as an enhancement of available software. Its
1809 flexibility is based on the usage of low-level graphics functions such that
1810 self-defined high-level graphics can be easily implemented by users for
1811 specific purposes. Together with the seamless connection between the powerful
1812 computational and visual environment in R, it gives users more convenience and
1813 freedom to design figures for better understanding complex patterns behind
1814 multi-dimensional data.")
1815 (license license:gpl2+)))
1816
1817 (define-public r-powerlaw
1818 (package
1819 (name "r-powerlaw")
1820 (version "0.70.2")
1821 (source
1822 (origin
1823 (method url-fetch)
1824 (uri (cran-uri "poweRlaw" version))
1825 (sha256
1826 (base32
1827 "1asr6ikr7hmj78jyg8r1gwvcjg14addkxdiz92nh06lv71a183r4"))))
1828 (properties `((upstream-name . "poweRlaw")))
1829 (build-system r-build-system)
1830 (propagated-inputs
1831 `(("r-vgam" ,r-vgam)))
1832 (home-page "https://github.com/csgillespie/poweRlaw")
1833 (synopsis "Tools for the analysis of heavy tailed distributions")
1834 (description
1835 "This package provides an implementation of maximum likelihood estimators
1836 for a variety of heavy tailed distributions, including both the discrete and
1837 continuous power law distributions. Additionally, a goodness-of-fit based
1838 approach is used to estimate the lower cut-off for the scaling region.")
1839 ;; Any of these GPL versions.
1840 (license (list license:gpl2 license:gpl3))))
1841
1842 (define-public r-compare
1843 (package
1844 (name "r-compare")
1845 (version "0.2-6")
1846 (source
1847 (origin
1848 (method url-fetch)
1849 (uri (cran-uri "compare" version))
1850 (sha256
1851 (base32
1852 "0k9zms930b5dz9gy8414li21wy0zg9x9vp7301v5cvyfi0g7xzgw"))))
1853 (build-system r-build-system)
1854 (home-page "https://cran.r-project.org/web/packages/compare")
1855 (synopsis "Comparing objects for differences")
1856 (description
1857 "This package provides functions to compare a model object to a
1858 comparison object. If the objects are not identical, the functions can be
1859 instructed to explore various modifications of the objects (e.g., sorting
1860 rows, dropping names) to see if the modified versions are identical.")
1861 (license license:gpl2+)))
1862
1863 (define-public r-dendextend
1864 (package
1865 (name "r-dendextend")
1866 (version "1.12.0")
1867 (source
1868 (origin
1869 (method url-fetch)
1870 (uri (cran-uri "dendextend" version))
1871 (sha256
1872 (base32
1873 "0mgsc9qkr5p6hss3wychdjvk263ay48yx543wawj72l7q7cgx1xl"))))
1874 (build-system r-build-system)
1875 (propagated-inputs
1876 `(("r-ggplot2" ,r-ggplot2)
1877 ("r-magrittr" ,r-magrittr)
1878 ("r-viridis" ,r-viridis)))
1879 (home-page "https://cran.r-project.org/web/packages/dendextend")
1880 (synopsis "Extending 'dendrogram' functionality in R")
1881 (description
1882 "This package offers a set of functions for extending @code{dendrogram}
1883 objects in R, letting you visualize and compare trees of hierarchical
1884 clusterings. You can adjust a tree's graphical parameters (the color, size,
1885 type, etc of its branches, nodes and labels) and visually and statistically
1886 compare different dendrograms to one another.")
1887 ;; Any of these versions
1888 (license (list license:gpl2 license:gpl3))))
1889
1890 (define-public r-getoptlong
1891 (package
1892 (name "r-getoptlong")
1893 (version "0.1.7")
1894 (source
1895 (origin
1896 (method url-fetch)
1897 (uri (cran-uri "GetoptLong" version))
1898 (sha256
1899 (base32
1900 "1fl3w2n602ldybc5qj7qw4xmzzb804bsjkqwf6dswzj0vf0qiadr"))))
1901 (properties `((upstream-name . "GetoptLong")))
1902 (build-system r-build-system)
1903 (inputs
1904 `(("perl" ,perl)))
1905 (propagated-inputs
1906 `(("r-globaloptions" ,r-globaloptions)
1907 ("r-rjson" ,r-rjson)))
1908 (home-page "https://github.com/jokergoo/GetoptLong")
1909 (synopsis "Parsing command-line arguments and variable interpolation")
1910 (description
1911 "This is yet another command-line argument parser which wraps the
1912 powerful Perl module @code{Getopt::Long} and with some adaptation for easier
1913 use in R. It also provides a simple way for variable interpolation in R.")
1914 (license license:gpl2+)))
1915
1916 (define-public r-fastmatch
1917 (package
1918 (name "r-fastmatch")
1919 (version "1.1-0")
1920 (source
1921 (origin
1922 (method url-fetch)
1923 (uri (cran-uri "fastmatch" version))
1924 (sha256
1925 (base32
1926 "0z80jxkygmzn11sq0c2iz357s9bpki548lg926g85gldhfj1md90"))))
1927 (build-system r-build-system)
1928 (home-page "http://www.rforge.net/fastmatch")
1929 (synopsis "Fast match function")
1930 (description
1931 "This package provides a fast @code{match} replacement for cases that
1932 require repeated look-ups. It is slightly faster that R's built-in
1933 @code{match} function on first match against a table, but extremely fast on
1934 any subsequent lookup as it keeps the hash table in memory.")
1935 (license license:gpl2)))
1936
1937 (define-public r-ff
1938 (package
1939 (name "r-ff")
1940 (version "2.2-14")
1941 (source
1942 (origin
1943 (method url-fetch)
1944 (uri (cran-uri "ff" version))
1945 (sha256
1946 (base32
1947 "1w724q4jpzbvzpilb2ifviaxkjgk9lzwxz9gksnvicbmfa20fqqw"))))
1948 (build-system r-build-system)
1949 (propagated-inputs `(("r-bit" ,r-bit)))
1950 (home-page "http://ff.r-forge.r-project.org/")
1951 (synopsis "Memory-efficient storage of large data on disk and access functions")
1952 (description
1953 "This package provides data structures that are stored on disk but
1954 behave (almost) as if they were in RAM by transparently mapping only a section
1955 in main memory.")
1956 ;; error Architecture not supported.
1957 (supported-systems (delete "aarch64-linux" %supported-systems))
1958 (license license:gpl2)))
1959
1960 (define-public r-ffbase
1961 (package
1962 (name "r-ffbase")
1963 (version "0.12.7")
1964 (source
1965 (origin
1966 (method url-fetch)
1967 (uri (cran-uri "ffbase" version))
1968 (sha256
1969 (base32
1970 "04kxx2f3f0743c5nvpb7x1x0pcd220dazpd5ag1pidxbz3xa85nw"))))
1971 (build-system r-build-system)
1972 (propagated-inputs
1973 `(("r-bit" ,r-bit)
1974 ("r-fastmatch" ,r-fastmatch)
1975 ("r-ff" ,r-ff)))
1976 (home-page "http://github.com/edwindj/ffbase")
1977 (synopsis "Basic statistical functions for package 'ff'")
1978 (description
1979 "This package extends the out of memory vectors of @code{ff} with
1980 statistical functions and other utilities to ease their usage.")
1981 (license license:gpl3)))
1982
1983 (define-public r-prettyunits
1984 (package
1985 (name "r-prettyunits")
1986 (version "1.0.2")
1987 (source
1988 (origin
1989 (method url-fetch)
1990 (uri (cran-uri "prettyunits" version))
1991 (sha256
1992 (base32
1993 "0p3z42hnk53x7ky4d1dr2brf7p8gv3agxr71i99m01n2hq2ri91m"))))
1994 (build-system r-build-system)
1995 (propagated-inputs
1996 `(("r-assertthat" ,r-assertthat)
1997 ("r-magrittr" ,r-magrittr)))
1998 (home-page "https://github.com/gaborcsardi/prettyunits")
1999 (synopsis "Pretty, human readable formatting of quantities")
2000 (description
2001 "This package provides tools for pretty, human readable formatting of
2002 quantities.")
2003 (license license:expat)))
2004
2005 (define-public r-reshape
2006 (package
2007 (name "r-reshape")
2008 (version "0.8.8")
2009 (source
2010 (origin
2011 (method url-fetch)
2012 (uri (cran-uri "reshape" version))
2013 (sha256
2014 (base32
2015 "0s6i0sqxg1vldxs6miv8mi0zydxbqzgpmzfiwkj8y7jix3yrfmad"))))
2016 (build-system r-build-system)
2017 (propagated-inputs
2018 `(("r-plyr" ,r-plyr)
2019 ("r-rcpp" ,r-rcpp)))
2020 (home-page "http://had.co.nz/reshape")
2021 (synopsis "Flexibly reshape data")
2022 (description
2023 "Flexibly restructure and aggregate data using just two functions:
2024 @code{melt} and @code{cast}. This package provides them.")
2025 (license license:expat)))
2026
2027 (define-public r-progress
2028 (package
2029 (name "r-progress")
2030 (version "1.2.2")
2031 (source
2032 (origin
2033 (method url-fetch)
2034 (uri (cran-uri "progress" version))
2035 (sha256
2036 (base32
2037 "0dgzb362641aqm8xd88iqa8jmpdm43xs0aba0d5kk6fvapnxi95l"))))
2038 (build-system r-build-system)
2039 (propagated-inputs
2040 `(("r-crayon" ,r-crayon)
2041 ("r-hms" ,r-hms)
2042 ("r-prettyunits" ,r-prettyunits)
2043 ("r-r6" ,r-r6)))
2044 (home-page "https://github.com/gaborcsardi/progress")
2045 (synopsis "Terminal progress bars")
2046 (description
2047 "This package provides configurable progress bars. They may include
2048 percentage, elapsed time, and/or the estimated completion time. They work in
2049 terminals, in Emacs ESS, RStudio, Windows Rgui, and the macOS R.app. The
2050 package also provides a C++ API, that works with or without Rcpp.")
2051 (license license:expat)))
2052
2053 (define-public r-ggally
2054 (package
2055 (name "r-ggally")
2056 (version "1.4.0")
2057 (source
2058 (origin
2059 (method url-fetch)
2060 (uri (cran-uri "GGally" version))
2061 (sha256
2062 (base32
2063 "1zjmcc5bzagvy7c5cmdcl39xmx07fwi98yrj4i05w7y40kqcsiws"))))
2064 (properties `((upstream-name . "GGally")))
2065 (build-system r-build-system)
2066 (inputs
2067 `(("libressl" ,libressl)))
2068 (propagated-inputs
2069 `(("r-ggplot2" ,r-ggplot2)
2070 ("r-gtable" ,r-gtable)
2071 ("r-plyr" ,r-plyr)
2072 ("r-progress" ,r-progress)
2073 ("r-rcolorbrewer" ,r-rcolorbrewer)
2074 ("r-reshape" ,r-reshape)
2075 ("r-rlang" ,r-rlang)))
2076 (home-page "https://ggobi.github.io/ggally")
2077 (synopsis "Extension to ggplot2")
2078 (description
2079 "The R package ggplot2 is a plotting system based on the grammar of
2080 graphics. GGally extends ggplot2 by adding several functions to reduce the
2081 complexity of combining geometric objects with transformed data. Some of
2082 these functions include a pairwise plot matrix, a two group pairwise plot
2083 matrix, a parallel coordinates plot, a survival plot, and several functions to
2084 plot networks.")
2085 (license license:gpl2+)))
2086
2087 (define-public r-proxy
2088 (package
2089 (name "r-proxy")
2090 (version "0.4-23")
2091 (source
2092 (origin
2093 (method url-fetch)
2094 (uri (cran-uri "proxy" version))
2095 (sha256
2096 (base32
2097 "17b6qfllqrhzrxqgx7dccffgybnkcria5a68ap5ly3plg04ypm4x"))))
2098 (build-system r-build-system)
2099 (home-page "https://cran.r-project.org/web/packages/proxy")
2100 (synopsis "Distance and similarity measures")
2101 (description
2102 "This package provides an extensible framework for the efficient
2103 calculation of auto- and cross-proximities, along with implementations of the
2104 most popular ones.")
2105 (license license:gpl2)))
2106
2107 (define-public r-sp
2108 (package
2109 (name "r-sp")
2110 (version "1.3-2")
2111 (source
2112 (origin
2113 (method url-fetch)
2114 (uri (cran-uri "sp" version))
2115 (sha256
2116 (base32 "0kpjsqh3lzqp1m0avsvm54lazlgwfx3hyf0av3mvbyslsanj42ll"))))
2117 (build-system r-build-system)
2118 (propagated-inputs
2119 `(("r-lattice" ,r-lattice)))
2120 (home-page "https://cran.r-project.org/web/packages/sp")
2121 (synopsis "Classes and methods for spatial data")
2122 (description
2123 "This package provides classes and methods for spatial data; the classes
2124 document where the spatial location information resides, for 2D or 3D data.
2125 Utility functions are provided, e.g. for plotting data as maps, spatial
2126 selection, as well as methods for retrieving coordinates, for subsetting,
2127 print, summary, etc.")
2128 (license license:gpl2+)))
2129
2130 (define-public r-rmtstat
2131 (package
2132 (name "r-rmtstat")
2133 (version "0.3")
2134 (source
2135 (origin
2136 (method url-fetch)
2137 (uri (cran-uri "RMTstat" version))
2138 (sha256
2139 (base32
2140 "1nn25q4kmh9kj975sxkrpa97vh5irqrlqhwsfinbck6h6ia4rsw1"))))
2141 (properties `((upstream-name . "RMTstat")))
2142 (build-system r-build-system)
2143 (home-page "https://cran.r-project.org/web/packages/RMTstat")
2144 (synopsis "Distributions, statistics and tests derived from random matrix theory")
2145 (description
2146 "This package provides functions for working with the Tracy-Widom laws
2147 and other distributions related to the eigenvalues of large Wishart
2148 matrices.")
2149 (license license:bsd-3)))
2150
2151 (define-public r-rmpi
2152 (package
2153 (name "r-rmpi")
2154 (version "0.6-9")
2155 (source (origin
2156 (method url-fetch)
2157 (uri (cran-uri "Rmpi" version))
2158 (sha256
2159 (base32
2160 "1rhycla98hxgnnxlxxldr1x51djak7c2jjvlrv3jcsvgwp1ymqdj"))))
2161 (properties `((upstream-name . "Rmpi")))
2162 (build-system r-build-system)
2163 (arguments
2164 `(#:configure-flags '("--configure-args=\"--with-Rmpi-type=OPENMPI\"")
2165 #:phases (modify-phases %standard-phases
2166 (add-before 'install 'mpi-setup
2167 ,%openmpi-setup))))
2168 (inputs
2169 `(("openmpi" ,openmpi)))
2170 (native-inputs
2171 `(("pkg-config" ,pkg-config)))
2172 (home-page "http://www.stats.uwo.ca/faculty/yu/Rmpi")
2173 (synopsis "R interface to message-passing interface (MPI)")
2174 (description
2175 "This package provides an interface (wrapper) to MPI APIs. It also
2176 provides an interactive R manager and worker environment.")
2177 (license license:gpl2+)))
2178
2179 (define-public r-lmoments
2180 (package
2181 (name "r-lmoments")
2182 (version "1.3-1")
2183 (source
2184 (origin
2185 (method url-fetch)
2186 (uri (cran-uri "Lmoments" version))
2187 (sha256
2188 (base32
2189 "0pc63bj9a8hzr5m3yssrc4kin39fffwkl8rggs3sagzr12d4i7bw"))))
2190 (properties `((upstream-name . "Lmoments")))
2191 (build-system r-build-system)
2192 (propagated-inputs
2193 `(("r-rcpp" ,r-rcpp)
2194 ("r-rcpparmadillo" ,r-rcpparmadillo)))
2195 (home-page "http://www.tilastotiede.fi/juha_karvanen.html")
2196 (synopsis "L-moments and quantile mixtures")
2197 (description
2198 "This package contains functions to estimate L-moments and trimmed
2199 L-moments from the data. It also contains functions to estimate the
2200 parameters of the normal polynomial quantile mixture and the Cauchy polynomial
2201 quantile mixture from L-moments and trimmed L-moments.")
2202 (license license:gpl2)))
2203
2204 (define-public r-distillery
2205 (package
2206 (name "r-distillery")
2207 (version "1.0-6")
2208 (source
2209 (origin
2210 (method url-fetch)
2211 (uri (cran-uri "distillery" version))
2212 (sha256
2213 (base32
2214 "1mi3ig9jq0kd7yrwc5m37lmrw04p1b4lirnbsxi10z3n5yay4429"))))
2215 (build-system r-build-system)
2216 (home-page "http://www.ral.ucar.edu/staff/ericg")
2217 (synopsis "Functions for confidence intervals and object information")
2218 (description
2219 "This package provides some very simple method functions for confidence
2220 interval calculation and to distill pertinent information from a potentially
2221 complex object; primarily used in common with the packages extRemes and
2222 SpatialVx.")
2223 (license license:gpl2+)))
2224
2225 (define-public r-extremes
2226 (package
2227 (name "r-extremes")
2228 (version "2.0-10")
2229 (source
2230 (origin
2231 (method url-fetch)
2232 (uri (cran-uri "extRemes" version))
2233 (sha256
2234 (base32
2235 "08fj72gpq2d6695hbm3cgwgal64z009ykrirby7g6r0akfcsx5ic"))))
2236 (properties `((upstream-name . "extRemes")))
2237 (build-system r-build-system)
2238 (propagated-inputs
2239 `(("r-distillery" ,r-distillery)
2240 ("r-lmoments" ,r-lmoments)))
2241 (home-page "http://www.assessment.ucar.edu/toolkit/")
2242 (synopsis "Extreme value analysis")
2243 (description
2244 "ExtRemes is a suite of functions for carrying out analyses on the
2245 extreme values of a process of interest; be they block maxima over long blocks
2246 or excesses over a high threshold.")
2247 (license license:gpl2+)))
2248
2249 (define-public r-lmtest
2250 (package
2251 (name "r-lmtest")
2252 (version "0.9-37")
2253 (source
2254 (origin
2255 (method url-fetch)
2256 (uri (cran-uri "lmtest" version))
2257 (sha256
2258 (base32
2259 "02nasm0j2vwkhz11dxqixs23msy1s3yj0jps6949fmgh9gwjkjfx"))))
2260 (build-system r-build-system)
2261 (propagated-inputs
2262 `(("r-zoo" ,r-zoo)))
2263 (native-inputs
2264 `(("gfortran" ,gfortran)))
2265 (home-page "https://cran.r-project.org/web/packages/lmtest")
2266 (synopsis "Testing linear regression models")
2267 (description
2268 "This package provides a collection of tests, data sets, and examples for
2269 diagnostic checking in linear regression models. Furthermore, some generic
2270 tools for inference in parametric models are provided.")
2271 ;; Either version is okay
2272 (license (list license:gpl2 license:gpl3))))
2273
2274 (define-public r-idr
2275 (package
2276 (name "r-idr")
2277 (version "1.2")
2278 (source (origin
2279 (method url-fetch)
2280 (uri (cran-uri "idr" version))
2281 (sha256
2282 (base32
2283 "05nvgw1xdg670bsjjrxkgd1mrdkciccpw4krn0zcgdf2r21dzgwb"))))
2284 (build-system r-build-system)
2285 (home-page "https://cran.r-project.org/web/packages/idr/")
2286 (synopsis "Irreproducible discovery rate")
2287 (description
2288 "This is a package for estimating the copula mixture model and plotting
2289 correspondence curves in \"Measuring reproducibility of high-throughput
2290 experiments\" (2011), Annals of Applied Statistics, Vol. 5, No. 3, 1752-1779,
2291 by Li, Brown, Huang, and Bickel")
2292 (license license:gpl2+)))
2293
2294 (define-public r-inline
2295 (package
2296 (name "r-inline")
2297 (version "0.3.15")
2298 (source (origin
2299 (method url-fetch)
2300 (uri (cran-uri "inline" version))
2301 (sha256
2302 (base32
2303 "0s4wssvpan189fijahknxq5s22ww9bzmdlmyhnra748r7khky17z"))))
2304 (build-system r-build-system)
2305 (home-page "https://cran.r-project.org/web/packages/inline")
2306 (synopsis "Functions to inline C, C++, Fortran function calls from R")
2307 (description
2308 "This package provides functionality to dynamically define R functions
2309 and S4 methods with inlined C, C++ or Fortran code supporting @code{.C} and
2310 @code{.Call} calling conventions.")
2311 ;; Any version of the LGPL.
2312 (license license:lgpl3+)))
2313
2314 (define-public r-bbmle
2315 (package
2316 (name "r-bbmle")
2317 (version "1.0.20")
2318 (source
2319 (origin
2320 (method url-fetch)
2321 (uri (cran-uri "bbmle" version))
2322 (sha256
2323 (base32
2324 "1xzij7swrrzl5ly8l3lw6awh486zcm00251dwqws1y23fbgyh3vc"))))
2325 (build-system r-build-system)
2326 (propagated-inputs
2327 `(("r-lattice" ,r-lattice)
2328 ("r-mass" ,r-mass)
2329 ("r-numderiv" ,r-numderiv)))
2330 (home-page "https://cran.r-project.org/web/packages/bbmle")
2331 (synopsis "Tools for General Maximum Likelihood Estimation")
2332 (description
2333 "This package provides methods and functions for fitting maximum
2334 likelihood models in R. This package modifies and extends the @code{mle}
2335 classes in the @code{stats4} package.")
2336 ;; Any version of the GPL
2337 (license license:gpl2+)))
2338
2339 (define-public r-emdbook
2340 (package
2341 (name "r-emdbook")
2342 (version "1.3.11")
2343 (source
2344 (origin
2345 (method url-fetch)
2346 (uri (cran-uri "emdbook" version))
2347 (sha256
2348 (base32
2349 "0a515jdzvg87npvrh7md7zp0v5nlz7c2jr7pba5dql6slb0d8j7q"))))
2350 (build-system r-build-system)
2351 (propagated-inputs
2352 `(("r-bbmle" ,r-bbmle)
2353 ("r-coda" ,r-coda)
2354 ("r-lattice" ,r-lattice)
2355 ("r-mass" ,r-mass)
2356 ("r-plyr" ,r-plyr)
2357 ("r-rcpp" ,r-rcpp)))
2358 (home-page "http://www.math.mcmaster.ca/bolker/emdbook")
2359 (synopsis "Support functions and data for \"Ecological Models and Data\"")
2360 (description
2361 "This package provides auxiliary functions and data sets for \"Ecological
2362 Models and Data\", a book presenting maximum likelihood estimation and related
2363 topics for ecologists (ISBN 978-0-691-12522-0).")
2364 ;; Any GPL version
2365 (license (list license:gpl2 license:gpl3))))
2366
2367 (define-public r-lpsolve
2368 (package
2369 (name "r-lpsolve")
2370 (version "5.6.13.3")
2371 (source
2372 (origin
2373 (method url-fetch)
2374 (uri (cran-uri "lpSolve" version))
2375 (sha256
2376 (base32
2377 "1xazby8amb47vw5n12k13awv7x3bjci3q8vdd3vk1ms0ii16ahg6"))))
2378 (properties `((upstream-name . "lpSolve")))
2379 (build-system r-build-system)
2380 (home-page "https://cran.r-project.org/web/packages/lpSolve")
2381 (synopsis "R interface to Lp_solve to solve linear/integer programs")
2382 (description
2383 "Lp_solve is software for solving linear, integer and mixed integer
2384 programs. This implementation supplies a \"wrapper\" function in C and some R
2385 functions that solve general linear/integer problems, assignment problems, and
2386 transportation problems.")
2387 (license license:lgpl2.0)))
2388
2389 (define-public r-limsolve
2390 (package
2391 (name "r-limsolve")
2392 (version "1.5.6")
2393 (source
2394 (origin
2395 (method url-fetch)
2396 (uri (cran-uri "limSolve" version))
2397 (sha256
2398 (base32
2399 "1829rd2cnd8qj80z9a7sgc7gx4sf3kvl5g6d2a0lqqw30f9sjzmr"))))
2400 (properties `((upstream-name . "limSolve")))
2401 (build-system r-build-system)
2402 (propagated-inputs
2403 `(("r-lpsolve" ,r-lpsolve)
2404 ("r-mass" ,r-mass)
2405 ("r-quadprog" ,r-quadprog)))
2406 (native-inputs `(("gfortran" ,gfortran)))
2407 (home-page "https://cran.r-project.org/web/packages/limSolve")
2408 (synopsis "Solving linear inverse models")
2409 (description
2410 "This package provides functions that:
2411
2412 @enumerate
2413 @item find the minimum/maximum of a linear or quadratic function,
2414 @item sample an underdetermined or overdetermined system,
2415 @item solve a linear system Ax=B for the unknown x.
2416 @end enumerate
2417
2418 It includes banded and tridiagonal linear systems. The package calls Fortran
2419 functions from LINPACK.")
2420 ;; Any GPL version.
2421 (license (list license:gpl2+ license:gpl3+))))
2422
2423 (define-public r-fitdistrplus
2424 (package
2425 (name "r-fitdistrplus")
2426 (version "1.0-14")
2427 (source
2428 (origin
2429 (method url-fetch)
2430 (uri (cran-uri "fitdistrplus" version))
2431 (sha256
2432 (base32
2433 "10q08wsv8v3w7797jdvvv60bgrf1bi6438wf0jcqv81ays82a245"))))
2434 (build-system r-build-system)
2435 (propagated-inputs
2436 `(("r-mass" ,r-mass)
2437 ("r-npsurv" ,r-npsurv)
2438 ("r-survival" ,r-survival)))
2439 (home-page "http://riskassessment.r-forge.r-project.org")
2440 (synopsis "Fitting a parametric distribution from data")
2441 (description
2442 "This package extends the @code{fitdistr} function of the MASS package
2443 with several functions to help the fit of a parametric distribution to
2444 non-censored or censored data. Censored data may contain left-censored,
2445 right-censored and interval-censored values, with several lower and upper
2446 bounds. In addition to @dfn{maximum likelihood estimation} (MLE), the package
2447 provides moment matching (MME), quantile matching (QME) and maximum
2448 goodness-of-fit estimation (MGE) methods (available only for non-censored
2449 data). Weighted versions of MLE, MME and QME are available.")
2450 (license license:gpl2+)))
2451
2452 (define-public r-energy
2453 (package
2454 (name "r-energy")
2455 (version "1.7-6")
2456 (source
2457 (origin
2458 (method url-fetch)
2459 (uri (cran-uri "energy" version))
2460 (sha256
2461 (base32
2462 "16m8bxfgr9sdisjy2qrv6fv5xxwcc9q890l0hpbwq6qzisrdn3lh"))))
2463 (build-system r-build-system)
2464 (propagated-inputs
2465 `(("r-boot" ,r-boot)
2466 ("r-rcpp" ,r-rcpp)))
2467 (home-page "https://cran.r-project.org/web/packages/energy")
2468 (synopsis "Multivariate inference via the energy of data")
2469 (description
2470 "This package provides e-statistics (energy) tests and statistics for
2471 multivariate and univariate inference, including distance correlation,
2472 one-sample, two-sample, and multi-sample tests for comparing multivariate
2473 distributions, are implemented. Measuring and testing multivariate
2474 independence based on distance correlation, partial distance correlation,
2475 multivariate goodness-of-fit tests, clustering based on energy distance,
2476 testing for multivariate normality, distance components (disco) for
2477 non-parametric analysis of structured data, and other energy
2478 statistics/methods are implemented.")
2479 (license license:gpl2+)))
2480
2481 (define-public r-suppdists
2482 (package
2483 (name "r-suppdists")
2484 (version "1.1-9.4")
2485 (source
2486 (origin
2487 (method url-fetch)
2488 (uri (cran-uri "SuppDists" version))
2489 (sha256
2490 (base32
2491 "1ffx8wigqqvz2pnh06jjc0fnf4vq9z2rhwk2y3f9aszn18ap3dgw"))))
2492 (properties `((upstream-name . "SuppDists")))
2493 (build-system r-build-system)
2494 (home-page "https://cran.r-project.org/web/packages/SuppDists")
2495 (synopsis "Supplementary distributions")
2496 (description
2497 "This package provides ten distributions supplementing those built into
2498 R. Inverse Gauss, Kruskal-Wallis, Kendall's Tau, Friedman's chi squared,
2499 Spearman's rho, maximum F ratio, the Pearson product moment correlation
2500 coefficient, Johnson distributions, normal scores and generalized
2501 hypergeometric distributions. In addition two random number generators of
2502 George Marsaglia are included.")
2503 (license license:gpl2+)))
2504
2505 (define-public r-ksamples
2506 (package
2507 (name "r-ksamples")
2508 (version "1.2-9")
2509 (source
2510 (origin
2511 (method url-fetch)
2512 (uri (cran-uri "kSamples" version))
2513 (sha256
2514 (base32
2515 "1zs22p68d6320kcylisnk0b5wmpapxkyz15py09czxzw7npw8gms"))))
2516 (properties `((upstream-name . "kSamples")))
2517 (build-system r-build-system)
2518 (propagated-inputs
2519 `(("r-suppdists" ,r-suppdists)))
2520 (home-page "https://cran.r-project.org/web/packages/kSamples")
2521 (synopsis "K-Sample rank tests and their combinations")
2522 (description
2523 "This package provides tools to compares k samples using the
2524 Anderson-Darling test, Kruskal-Wallis type tests with different rank score
2525 criteria, Steel's multiple comparison test, and the Jonckheere-Terpstra (JT)
2526 test. It computes asymptotic, simulated or (limited) exact P-values, all
2527 valid under randomization, with or without ties, or conditionally under random
2528 sampling from populations, given the observed tie pattern. Except for Steel's
2529 test and the JT test it also combines these tests across several blocks of
2530 samples.")
2531 (license license:gpl2+)))
2532
2533 (define-public r-cvst
2534 (package
2535 (name "r-cvst")
2536 (version "0.2-2")
2537 (source
2538 (origin
2539 (method url-fetch)
2540 (uri (cran-uri "CVST" version))
2541 (sha256
2542 (base32
2543 "05l3yzkfrbds09ah9cdwn2sn4ryhq78lz33ryzrgkv176jc8qjw5"))))
2544 (properties `((upstream-name . "CVST")))
2545 (build-system r-build-system)
2546 (propagated-inputs
2547 `(("r-kernlab" ,r-kernlab)
2548 ("r-matrix" ,r-matrix)))
2549 (home-page "https://cran.r-project.org/web/packages/CVST")
2550 (synopsis "Fast cross-validation via sequential testing")
2551 (description
2552 "This package implements the fast cross-validation via sequential
2553 testing (CVST) procedure. CVST is an improved cross-validation procedure
2554 which uses non-parametric testing coupled with sequential analysis to
2555 determine the best parameter set on linearly increasing subsets of the data.
2556 Additionally to the CVST the package contains an implementation of the
2557 ordinary k-fold cross-validation with a flexible and powerful set of helper
2558 objects and methods to handle the overall model selection process. The
2559 implementations of the Cochran's Q test with permutations and the sequential
2560 testing framework of Wald are generic and can therefore also be used in other
2561 contexts.")
2562 (license license:gpl2+)))
2563
2564 (define-public r-squarem
2565 (package
2566 (name "r-squarem")
2567 (version "2017.10-1")
2568 (source
2569 (origin
2570 (method url-fetch)
2571 (uri (cran-uri "SQUAREM" version))
2572 (sha256
2573 (base32
2574 "10xj26x7qjyvzndnbjl5krr9wabnb9cbrnp3m7xg673g8ddr12cv"))))
2575 (properties `((upstream-name . "SQUAREM")))
2576 (build-system r-build-system)
2577 (home-page "http://www.jhsph.edu/agingandhealth/People/Faculty_personal_pages/Varadhan.html")
2578 (synopsis "Squared Extrapolation Methods for Accelerating EM-Like Monotone Algorithms")
2579 (description
2580 "This package provides algorithms for accelerating the convergence of
2581 slow, monotone sequences from smooth, contraction mapping such as the EM
2582 algorithm. It can be used to accelerate any smooth, linearly convergent
2583 acceleration scheme. A tutorial style introduction to this package is
2584 available in a vignette.")
2585 (license license:gpl2+)))
2586
2587 (define-public r-lava
2588 (package
2589 (name "r-lava")
2590 (version "1.6.6")
2591 (source
2592 (origin
2593 (method url-fetch)
2594 (uri (cran-uri "lava" version))
2595 (sha256
2596 (base32
2597 "0nfab5fgnmxh8cplg8rd8cp34fny5j0k5wn4baj51r6ck7fq9g3s"))))
2598 (build-system r-build-system)
2599 (propagated-inputs
2600 `(("r-numderiv" ,r-numderiv)
2601 ("r-squarem" ,r-squarem)
2602 ("r-survival" ,r-survival)))
2603 (home-page "https://github.com/kkholst/lava")
2604 (synopsis "Latent variable models")
2605 (description
2606 "This package provides tools for the estimation and simulation of latent
2607 variable models.")
2608 (license license:gpl3)))
2609
2610 (define-public r-drr
2611 (package
2612 (name "r-drr")
2613 (version "0.0.3")
2614 (source
2615 (origin
2616 (method url-fetch)
2617 (uri (cran-uri "DRR" version))
2618 (sha256
2619 (base32
2620 "1yd1fvllfkcrwg9v322n4wkk4q4q84nvy58y4vac9pdr3yf3i4vl"))))
2621 (properties `((upstream-name . "DRR")))
2622 (build-system r-build-system)
2623 (propagated-inputs
2624 `(("r-cvst" ,r-cvst)
2625 ("r-kernlab" ,r-kernlab)
2626 ("r-matrix" ,r-matrix)))
2627 (home-page "https://cran.r-project.org/web/packages/DRR")
2628 (synopsis "Dimensionality reduction via regression")
2629 (description
2630 "This package provides an implementation of dimensionality reduction via
2631 regression using Kernel Ridge Regression.")
2632 (license license:gpl3)))
2633
2634 (define-public r-prodlim
2635 (package
2636 (name "r-prodlim")
2637 (version "2019.11.13")
2638 (source
2639 (origin
2640 (method url-fetch)
2641 (uri (cran-uri "prodlim" version))
2642 (sha256
2643 (base32
2644 "03wvh3kirp1prac5nky6a5whs97rvaf4hc27x0fnh51sa17r42b8"))))
2645 (build-system r-build-system)
2646 (propagated-inputs
2647 `(("r-kernsmooth" ,r-kernsmooth)
2648 ("r-lava" ,r-lava)
2649 ("r-rcpp" ,r-rcpp)
2650 ("r-survival" ,r-survival)))
2651 (home-page "https://cran.r-project.org/web/packages/prodlim")
2652 (synopsis "Product-limit estimation for censored event history analysis")
2653 (description
2654 "This package provides a fast and user-friendly implementation of
2655 nonparametric estimators for censored event history (survival) analysis with
2656 the Kaplan-Meier and Aalen-Johansen methods.")
2657 (license license:gpl2+)))
2658
2659 (define-public r-dimred
2660 (package
2661 (name "r-dimred")
2662 (version "0.2.3")
2663 (source
2664 (origin
2665 (method url-fetch)
2666 (uri (cran-uri "dimRed" version))
2667 (sha256
2668 (base32
2669 "110d6y83ib1nfpxzmvkvb3fn3brskwkdbsk4dqrdrswrd4znxrg6"))))
2670 (properties `((upstream-name . "dimRed")))
2671 (build-system r-build-system)
2672 (propagated-inputs
2673 `(("r-drr" ,r-drr)
2674 ("r-magrittr" ,r-magrittr)))
2675 (home-page "https://github.com/gdkrmr/dimRed")
2676 (synopsis "Framework for dimensionality reduction")
2677 (description
2678 "This package provides a collection of dimensionality reduction
2679 techniques from R packages and provides a common interface for calling the
2680 methods.")
2681 (license license:gpl3)))
2682
2683 (define-public r-timedate
2684 (package
2685 (name "r-timedate")
2686 (version "3043.102")
2687 (source
2688 (origin
2689 (method url-fetch)
2690 (uri (cran-uri "timeDate" version))
2691 (sha256
2692 (base32
2693 "0wvl5pq261rvbgly7vilk3x3m9xk3ly6il1i5scwdf6srl1vlz1p"))))
2694 (properties `((upstream-name . "timeDate")))
2695 (build-system r-build-system)
2696 (home-page "https://www.rmetrics.org")
2697 (synopsis "Chronological and calendar objects")
2698 (description
2699 "This package provides an environment for teaching \"Financial
2700 Engineering and Computational Finance\" and for managing chronological and
2701 calendar objects.")
2702 (license license:gpl2+)))
2703
2704 (define-public r-magic
2705 (package
2706 (name "r-magic")
2707 (version "1.5-9")
2708 (source
2709 (origin
2710 (method url-fetch)
2711 (uri (cran-uri "magic" version))
2712 (sha256
2713 (base32
2714 "0snmdh6vk0p6ar1swsihisinxrx7l8371dri5lk0z24ysgr5w7gs"))))
2715 (build-system r-build-system)
2716 (propagated-inputs
2717 `(("r-abind" ,r-abind)))
2718 (home-page "https://github.com/RobinHankin/magic.git")
2719 (synopsis "Create and investigate magic squares")
2720 (description
2721 "This package provides a collection of efficient, vectorized algorithms
2722 for the creation and investigation of magic squares and hypercubes, including
2723 a variety of functions for the manipulation and analysis of arbitrarily
2724 dimensioned arrays.")
2725 (license license:gpl2)))
2726
2727 (define-public r-rmysql
2728 (package
2729 (name "r-rmysql")
2730 (version "0.10.17")
2731 (source
2732 (origin
2733 (method url-fetch)
2734 (uri (cran-uri "RMySQL" version))
2735 (sha256
2736 (base32
2737 "1xamf99ih44dvaxg5x4ivj0hkqssmabgqd7gh8b8q1srw7yg8kbm"))))
2738 (properties `((upstream-name . "RMySQL")))
2739 (build-system r-build-system)
2740 (inputs
2741 `(("mariadb" ,mariadb)
2742 ("zlib" ,zlib)))
2743 (propagated-inputs
2744 `(("r-dbi" ,r-dbi)))
2745 (home-page "https://github.com/r-dbi/RMySQL")
2746 (synopsis "Database interface and MySQL driver for R")
2747 (description
2748 "This package provides a DBI interface to MySQL / MariaDB. The RMySQL
2749 package contains an old implementation based on legacy code from S-PLUS which
2750 is being phased out. A modern MySQL client based on Rcpp is available from
2751 the RMariaDB package.")
2752 (license license:gpl2)))
2753
2754 (define-public r-rpostgresql
2755 (package
2756 (name "r-rpostgresql")
2757 (version "0.6-2")
2758 (source
2759 (origin
2760 (method url-fetch)
2761 (uri (cran-uri "RPostgreSQL" version))
2762 (sha256
2763 (base32
2764 "1mdhw5821v2h7hpa53v10wz53k4i90r0vb6a3dia5gq8f9j1h088"))))
2765 (properties `((upstream-name . "RPostgreSQL")))
2766 (build-system r-build-system)
2767 (inputs
2768 `(("postgresql" ,postgresql)))
2769 (propagated-inputs
2770 `(("r-dbi" ,r-dbi)))
2771 (home-page "https://github.com/tomoakin/RPostgreSQL")
2772 (synopsis "R interface to the PostgreSQL database system")
2773 (description
2774 "This package provides a Database Interface (DBI) compliant driver for R
2775 to access PostgreSQL database systems.")
2776 ;; The whole package is released under GPL version 2. It includes code
2777 ;; under the PostgreSQL license.
2778 (license license:gpl2)))
2779
2780 (define-public r-linprog
2781 (package
2782 (name "r-linprog")
2783 (version "0.9-2")
2784 (source
2785 (origin
2786 (method url-fetch)
2787 (uri (cran-uri "linprog" version))
2788 (sha256
2789 (base32
2790 "1ki14an0pmhs2mnmfjjvdzd76pshiyvi659zf7hqvqwj0viv4dw9"))))
2791 (build-system r-build-system)
2792 (propagated-inputs `(("r-lpsolve" ,r-lpsolve)))
2793 (home-page "http://linprog.r-forge.r-project.org/")
2794 (synopsis "Linear programming and optimization")
2795 (description
2796 "This package can be used to solve Linear Programming / Linear
2797 Optimization problems by using the simplex algorithm.")
2798 (license license:gpl2+)))
2799
2800 (define-public r-geometry
2801 (package
2802 (name "r-geometry")
2803 (version "0.4.4")
2804 (source
2805 (origin
2806 (method url-fetch)
2807 (uri (cran-uri "geometry" version))
2808 (sha256
2809 (base32
2810 "1mx5n5mw63nij4n6crs9165mlls4fnh1ipw5ch467rjsidgl0mg8"))))
2811 (build-system r-build-system)
2812 (propagated-inputs
2813 `(("r-magic" ,r-magic)
2814 ("r-linprog" ,r-linprog)
2815 ("r-lpsolve" ,r-lpsolve)
2816 ("r-rcpp" ,r-rcpp)
2817 ("r-rcppprogress" ,r-rcppprogress)))
2818 (home-page "http://geometry.r-forge.r-project.org/")
2819 (synopsis "Mesh generation and surface tesselation")
2820 (description
2821 "This package makes the qhull library available in R, in a similar manner
2822 as in Octave. Qhull computes convex hulls, Delaunay triangulations, halfspace
2823 intersections about a point, Voronoi diagrams, furthest-site Delaunay
2824 triangulations, and furthest-site Voronoi diagrams. It runs in 2-d, 3-d, 4-d,
2825 and higher dimensions. It implements the Quickhull algorithm for computing
2826 the convex hull. Qhull does not support constrained Delaunay triangulations,
2827 or mesh generation of non-convex objects, but the package does include some R
2828 functions that allow for this. Currently the package only gives access to
2829 Delaunay triangulation and convex hull computation.")
2830 ;; The Qhull sources are included and are distributed under a custom
2831 ;; non-copyleft license. The R sources are released under GPL version 2.
2832 (license (list license:gpl2
2833 (license:non-copyleft "http://www.qhull.org/COPYING.txt")))))
2834
2835 (define-public r-ddalpha
2836 (package
2837 (name "r-ddalpha")
2838 (version "1.3.10")
2839 (source
2840 (origin
2841 (method url-fetch)
2842 (uri (cran-uri "ddalpha" version))
2843 (sha256
2844 (base32
2845 "1064g7y8d7kmvd5kjc2m48yvidmh2ci1y0xgil3pcx4ix6mf0ljz"))))
2846 (build-system r-build-system)
2847 (propagated-inputs
2848 `(("r-bh" ,r-bh)
2849 ("r-class" ,r-class)
2850 ("r-geometry" ,r-geometry)
2851 ("r-mass" ,r-mass)
2852 ("r-rcpp" ,r-rcpp)
2853 ("r-robustbase" ,r-robustbase)
2854 ("r-sfsmisc" ,r-sfsmisc)))
2855 (native-inputs
2856 `(("gfortran" ,gfortran)))
2857 (home-page "https://cran.r-project.org/web/packages/ddalpha")
2858 (synopsis "Depth-Based classification and calculation of data depth")
2859 (description
2860 "This package contains procedures for depth-based supervised learning,
2861 which are entirely non-parametric, in particular the DDalpha-procedure (Lange,
2862 Mosler and Mozharovskyi, 2014). The training data sample is transformed by a
2863 statistical depth function to a compact low-dimensional space, where the final
2864 classification is done. It also offers an extension to functional data and
2865 routines for calculating certain notions of statistical depth functions. 50
2866 multivariate and 5 functional classification problems are included.")
2867 (license license:gpl2)))
2868
2869 (define-public r-gower
2870 (package
2871 (name "r-gower")
2872 (version "0.2.1")
2873 (source
2874 (origin
2875 (method url-fetch)
2876 (uri (cran-uri "gower" version))
2877 (sha256
2878 (base32
2879 "007ivwn1nagpi26qq8iih1c2l61c53glvv60n90hi341ry8vwgxg"))))
2880 (build-system r-build-system)
2881 (home-page "https://github.com/markvanderloo/gower")
2882 (synopsis "Gower's distance")
2883 (description
2884 "This package provides tools to compute Gower's distance (or similarity)
2885 coefficient between records, and to compute the top-n matches between records.
2886 Core algorithms are executed in parallel on systems supporting OpenMP.")
2887 (license license:gpl3)))
2888
2889 (define-public r-rcpproll
2890 (package
2891 (name "r-rcpproll")
2892 (version "0.3.0")
2893 (source
2894 (origin
2895 (method url-fetch)
2896 (uri (cran-uri "RcppRoll" version))
2897 (sha256
2898 (base32
2899 "0srzfhzkk42kzrdjnhbb37946jp1p688rgysy6k3i2is8jb21zyb"))))
2900 (properties `((upstream-name . "RcppRoll")))
2901 (build-system r-build-system)
2902 (propagated-inputs
2903 `(("r-rcpp" ,r-rcpp)))
2904 (home-page "https://cran.r-project.org/web/packages/RcppRoll")
2905 (synopsis "Efficient rolling and windowed operations")
2906 (description
2907 "This package provides fast and efficient routines for common rolling /
2908 windowed operations. Routines for the efficient computation of windowed mean,
2909 median, sum, product, minimum, maximum, standard deviation and variance are
2910 provided.")
2911 (license license:gpl2+)))
2912
2913 (define-public r-ipred
2914 (package
2915 (name "r-ipred")
2916 (version "0.9-9")
2917 (source
2918 (origin
2919 (method url-fetch)
2920 (uri (cran-uri "ipred" version))
2921 (sha256
2922 (base32
2923 "0vs1hqfx7yd0xdbmfsf2gim7spkni0845cj6gswn0nhdfdq7ma0d"))))
2924 (build-system r-build-system)
2925 (propagated-inputs
2926 `(("r-class" ,r-class)
2927 ("r-mass" ,r-mass)
2928 ("r-nnet" ,r-nnet)
2929 ("r-prodlim" ,r-prodlim)
2930 ("r-rpart" ,r-rpart)
2931 ("r-survival" ,r-survival)))
2932 (home-page "https://cran.r-project.org/web/packages/ipred")
2933 (synopsis "Improved predictors")
2934 (description
2935 "This package provides improved predictive models by indirect
2936 classification and bagging for classification, regression and survival
2937 problems as well as resampling based estimators of prediction error.")
2938 (license license:gpl2+)))
2939
2940 (define-public r-psych
2941 (package
2942 (name "r-psych")
2943 (version "1.8.12")
2944 (source
2945 (origin
2946 (method url-fetch)
2947 (uri (cran-uri "psych" version))
2948 (sha256
2949 (base32
2950 "0hvp0dkkkn0szaf5rkirr3kb8qmr4bxwl775m5wmpvn1kc25w5vf"))))
2951 (build-system r-build-system)
2952 (propagated-inputs
2953 `(("r-foreign" ,r-foreign)
2954 ("r-lattice" ,r-lattice)
2955 ("r-mnormt" ,r-mnormt)
2956 ("r-nlme" ,r-nlme)))
2957 (home-page "https://cran.r-project.org/web/packages/psych/")
2958 (synopsis "Procedures for psychological, psychometric, and personality research")
2959 (description
2960 "This package provides a general purpose toolbox for personality,
2961 psychometric theory and experimental psychology. Functions are primarily for
2962 multivariate analysis and scale construction using factor analysis, principal
2963 component analysis, cluster analysis and reliability analysis, although others
2964 provide basic descriptive statistics. Item Response Theory is done using
2965 factor analysis of tetrachoric and polychoric correlations. Functions for
2966 analyzing data at multiple levels include within and between group statistics,
2967 including correlations and factor analysis. Functions for simulating and
2968 testing particular item and test structures are included. Several functions
2969 serve as a useful front end for structural equation modeling. Graphical
2970 displays of path diagrams, factor analysis and structural equation models are
2971 created using basic graphics.")
2972 (license license:gpl2+)))
2973
2974 (define-public r-generics
2975 (package
2976 (name "r-generics")
2977 (version "0.0.2")
2978 (source
2979 (origin
2980 (method url-fetch)
2981 (uri (cran-uri "generics" version))
2982 (sha256
2983 (base32
2984 "0xk1xhpy7gpv3pvaygzhpfdxj72zmb38pb4nscfyg2ff36vx3cvi"))))
2985 (build-system r-build-system)
2986 (home-page "https://github.com/r-lib/generics")
2987 (synopsis "Common S3 generics not provided by base R methods")
2988 (description
2989 "In order to reduce potential package dependencies and conflicts,
2990 generics provides a number of commonly used S3 generics that are not provided
2991 by base R methods related to model fitting.")
2992 (license license:gpl2)))
2993
2994 (define-public r-broom
2995 (package
2996 (name "r-broom")
2997 (version "0.5.2")
2998 (source
2999 (origin
3000 (method url-fetch)
3001 (uri (cran-uri "broom" version))
3002 (sha256
3003 (base32
3004 "0qmclih5dm5sqzy4hplcfy677kr12pm9pnpv3r319g14dd27pbqn"))))
3005 (build-system r-build-system)
3006 (propagated-inputs
3007 `(("r-backports" ,r-backports)
3008 ("r-dplyr" ,r-dplyr)
3009 ("r-generics" ,r-generics)
3010 ("r-nlme" ,r-nlme)
3011 ("r-purrr" ,r-purrr)
3012 ("r-reshape2" ,r-reshape2)
3013 ("r-stringr" ,r-stringr)
3014 ("r-tibble" ,r-tibble)
3015 ("r-tidyr" ,r-tidyr)))
3016 (home-page "https://github.com/tidyverse/broom")
3017 (synopsis "Convert statistical analysis objects into tidy data frames")
3018 (description
3019 "This package provides tools to convert statistical analysis objects from
3020 R into tidy data frames, so that they can more easily be combined, reshaped
3021 and otherwise processed with tools like @code{dplyr}, @code{tidyr} and
3022 @code{ggplot2}. The package provides three S3 generics: @code{tidy}, which
3023 summarizes a model's statistical findings such as coefficients of a
3024 regression; @code{augment}, which adds columns to the original data such as
3025 predictions, residuals and cluster assignments; and @code{glance}, which
3026 provides a one-row summary of model-level statistics.")
3027 (license license:expat)))
3028
3029 (define-public r-recipes
3030 (package
3031 (name "r-recipes")
3032 (version "0.1.7")
3033 (source
3034 (origin
3035 (method url-fetch)
3036 (uri (cran-uri "recipes" version))
3037 (sha256
3038 (base32
3039 "1gw8x7vqj7k18mfpiqinyfwzv9i5r0pb51k7xcfxsjap6m9nks98"))))
3040 (build-system r-build-system)
3041 (propagated-inputs
3042 `(("r-dplyr" ,r-dplyr)
3043 ("r-generics" ,r-generics)
3044 ("r-glue" ,r-glue)
3045 ("r-gower" ,r-gower)
3046 ("r-ipred" ,r-ipred)
3047 ("r-lubridate" ,r-lubridate)
3048 ("r-magrittr" ,r-magrittr)
3049 ("r-matrix" ,r-matrix)
3050 ("r-purrr" ,r-purrr)
3051 ("r-rlang" ,r-rlang)
3052 ("r-tibble" ,r-tibble)
3053 ("r-tidyr" ,r-tidyr)
3054 ("r-tidyselect" ,r-tidyselect)
3055 ("r-timedate" ,r-timedate)
3056 ("r-withr" ,r-withr)))
3057 (home-page "https://github.com/topepo/recipes")
3058 (synopsis "Preprocessing tools to create design matrices")
3059 (description
3060 "Recipes is an extensible framework to create and preprocess design
3061 matrices. Recipes consist of one or more data manipulation and analysis
3062 \"steps\". Statistical parameters for the steps can be estimated from an
3063 initial data set and then applied to other data sets. The resulting design
3064 matrices can then be used as inputs into statistical or machine learning
3065 models.")
3066 (license license:gpl2)))
3067
3068 (define-public r-pdist
3069 (package
3070 (name "r-pdist")
3071 (version "1.2")
3072 (source
3073 (origin
3074 (method url-fetch)
3075 (uri (cran-uri "pdist" version))
3076 (sha256
3077 (base32
3078 "18nd3mgad11f2zmwcp0w3sxlch4a9y6wp8dfdyzvjn7y4b4bq0dd"))))
3079 (build-system r-build-system)
3080 (home-page "https://github.com/jeffwong/pdist")
3081 (synopsis "Partitioned distance function")
3082 (description
3083 "Pdist computes the euclidean distance between rows of a matrix X and
3084 rows of another matrix Y. Previously, this could be done by binding the two
3085 matrices together and calling @code{dist}, but this creates unnecessary
3086 computation by computing the distances between a row of X and another row of
3087 X, and likewise for Y. Pdist strictly computes distances across the two
3088 matrices, not within the same matrix, making computations significantly faster
3089 for certain use cases.")
3090 (license license:gpl3+)))
3091
3092 (define-public r-ggrepel
3093 (package
3094 (name "r-ggrepel")
3095 (version "0.8.1")
3096 (source
3097 (origin
3098 (method url-fetch)
3099 (uri (cran-uri "ggrepel" version))
3100 (sha256
3101 (base32
3102 "10vjrcmx8yknfbx93d9a4y3z8gafri0fhimw6hcq733dmdvkml6m"))))
3103 (build-system r-build-system)
3104 (propagated-inputs
3105 `(("r-ggplot2" ,r-ggplot2)
3106 ("r-rcpp" ,r-rcpp)
3107 ("r-scales" ,r-scales)))
3108 (home-page "http://github.com/slowkow/ggrepel")
3109 (synopsis "Repulsive text and label geometries for ggplot2")
3110 (description
3111 "This package provides text and label geometries for ggplot2 that help to
3112 avoid overlapping text labels. Labels repel away from each other and away
3113 from the data points.")
3114 (license license:gpl3)))
3115
3116 (define-public r-corrplot
3117 (package
3118 (name "r-corrplot")
3119 (version "0.84")
3120 (source
3121 (origin
3122 (method url-fetch)
3123 (uri (cran-uri "corrplot" version))
3124 (sha256
3125 (base32
3126 "1k03qd8db7pwg1v318xapx5mpiypiz2n07qr19c4b45diri5xkhd"))))
3127 (build-system r-build-system)
3128 (home-page "https://github.com/taiyun/corrplot")
3129 (synopsis "Visualization of a correlation matrix")
3130 (description
3131 "This package provides a graphical display of a correlation matrix or
3132 general matrix. It also contains some algorithms to do matrix reordering. In
3133 addition, corrplot is good at details, including choosing color, text labels,
3134 color labels, layout, etc.")
3135 ;; Any version of the GPL
3136 (license license:gpl2+)))
3137
3138 (define-public r-stringdist
3139 (package
3140 (name "r-stringdist")
3141 (version "0.9.5.5")
3142 (source
3143 (origin
3144 (method url-fetch)
3145 (uri (cran-uri "stringdist" version))
3146 (sha256
3147 (base32 "1dqfakclzaf878x7mhwmqrcpcql2h9cv19fz5f3ygpajf3si5kqi"))))
3148 (build-system r-build-system)
3149 (home-page "https://github.com/markvanderloo/stringdist")
3150 (synopsis "Approximate string matching and string distance functions")
3151 (description
3152 "This package implements an approximate string matching version of R's
3153 native @code{match} function. It can calculate various string distances based
3154 on edits (Damerau-Levenshtein, Hamming, Levenshtein, optimal sting alignment),
3155 qgrams (q- gram, cosine, jaccard distance) or heuristic metrics (Jaro,
3156 Jaro-Winkler). An implementation of soundex is provided as well. Distances
3157 can be computed between character vectors while taking proper care of encoding
3158 or between integer vectors representing generic sequences.")
3159 (license license:gpl3+)))
3160
3161 (define-public r-ucminf
3162 (package
3163 (name "r-ucminf")
3164 (version "1.1-4")
3165 (source
3166 (origin
3167 (method url-fetch)
3168 (uri (cran-uri "ucminf" version))
3169 (sha256
3170 (base32
3171 "01vggwg1w71k98qs6fhb0x1843vi322mf4g3hbclks94kcpkisx2"))))
3172 (build-system r-build-system)
3173 (native-inputs `(("gfortran" ,gfortran)))
3174 (home-page "https://cran.r-project.org/web/packages/ucminf/")
3175 (synopsis "General-purpose unconstrained non-linear optimization")
3176 (description
3177 "This package provides an implementation of an algorithm for
3178 general-purpose unconstrained non-linear optimization. The algorithm is of
3179 quasi-Newton type with BFGS updating of the inverse Hessian and soft line
3180 search with a trust region type monitoring of the input to the line search
3181 algorithm. The interface of @code{ucminf} is designed for easy interchange
3182 with the package @code{optim}.")
3183 (license license:gpl2+)))
3184
3185 (define-public r-ordinal
3186 (package
3187 (name "r-ordinal")
3188 (version "2019.4-25")
3189 (source
3190 (origin
3191 (method url-fetch)
3192 (uri (cran-uri "ordinal" version))
3193 (sha256
3194 (base32
3195 "1pvrkly4x12w32n7w1qljdwzqnlkv7rfa7rx0nz5vbiw29xas4i8"))))
3196 (build-system r-build-system)
3197 (propagated-inputs
3198 `(("r-mass" ,r-mass)
3199 ("r-matrix" ,r-matrix)
3200 ("r-numderiv" ,r-numderiv)
3201 ("r-ucminf" ,r-ucminf)))
3202 (home-page "https://github.com/runehaubo/ordinal")
3203 (synopsis "Regression models for ordinal data")
3204 (description
3205 "This package provides an implementation of cumulative link (mixed)
3206 models also known as ordered regression models, proportional odds models,
3207 proportional hazards models for grouped survival times and ordered models.
3208 Estimation is via maximum likelihood and mixed models are fitted with the
3209 Laplace approximation and adaptive Gauss-Hermite quadrature.")
3210 (license license:gpl2+)))
3211
3212 (define-public r-jomo
3213 (package
3214 (name "r-jomo")
3215 (version "2.6-10")
3216 (source
3217 (origin
3218 (method url-fetch)
3219 (uri (cran-uri "jomo" version))
3220 (sha256
3221 (base32
3222 "1k9l4290g350zbw1pjs871q9bxj3j2h1dilxpp06v4wy4n7d8qs0"))))
3223 (build-system r-build-system)
3224 (propagated-inputs
3225 `(("r-lme4" ,r-lme4)
3226 ("r-mass" ,r-mass)
3227 ("r-ordinal" ,r-ordinal)
3228 ("r-survival" ,r-survival)))
3229 (home-page "https://cran.r-project.org/web/packages/jomo/")
3230 (synopsis "Multilevel Joint Modelling Multiple Imputation")
3231 (description
3232 "Similarly to Schafer's package pan, jomo is a package for multilevel
3233 joint modelling multiple imputation @url{Carpenter and Kenward (2013),
3234 http://doi.org/10.1002/9781119942283}. Novel aspects of jomo are the
3235 possibility of handling binary and categorical data through latent normal
3236 variables, the option to use cluster-specific covariance matrices and to
3237 impute compatibly with the substantive model.")
3238 (license license:gpl2)))
3239
3240 (define-public r-pan
3241 (package
3242 (name "r-pan")
3243 (version "1.6")
3244 (source
3245 (origin
3246 (method url-fetch)
3247 (uri (cran-uri "pan" version))
3248 (sha256
3249 (base32
3250 "1dk3jjj826p7xrz10qz04vyc068xnypg7bp0pj4c32z3da0xzh5d"))))
3251 (build-system r-build-system)
3252 (native-inputs `(("gfortran" ,gfortran)))
3253 (home-page "https://cran.r-project.org/web/packages/pan/")
3254 (synopsis "Multiple imputation for multivariate panel or clustered data")
3255 (description
3256 "This package implements multiple imputation for multivariate panel or
3257 clustered data.")
3258 (license license:gpl3)))
3259
3260 (define-public r-mitml
3261 (package
3262 (name "r-mitml")
3263 (version "0.3-7")
3264 (source
3265 (origin
3266 (method url-fetch)
3267 (uri (cran-uri "mitml" version))
3268 (sha256
3269 (base32
3270 "0yqyxkyi1kmv5k63wxj5kkg5g8igk1axk2csb4xhj6wz0p89dxy6"))))
3271 (build-system r-build-system)
3272 (propagated-inputs
3273 `(("r-haven" ,r-haven)
3274 ("r-jomo" ,r-jomo)
3275 ("r-pan" ,r-pan)))
3276 (home-page "https://cran.r-project.org/web/packages/mitml/")
3277 (synopsis "Tools for multiple imputation in multilevel modeling")
3278 (description
3279 "This package provides tools for multiple imputation of missing data in
3280 multilevel modeling. It includes a user-friendly interface to the packages
3281 pan and jomo, and several functions for visualization, data management and the
3282 analysis of multiply imputed data sets.")
3283 (license license:gpl2+)))
3284
3285 (define-public r-mice
3286 (package
3287 (name "r-mice")
3288 (version "3.6.0")
3289 (source
3290 (origin
3291 (method url-fetch)
3292 (uri (cran-uri "mice" version))
3293 (sha256
3294 (base32
3295 "0pgcxdmp77604h6f4x8hhs6j4xdjgf5b9zvnixyzdj8vcgdjpivv"))))
3296 (build-system r-build-system)
3297 (propagated-inputs
3298 `(("r-broom" ,r-broom)
3299 ("r-dplyr" ,r-dplyr)
3300 ("r-lattice" ,r-lattice)
3301 ("r-mass" ,r-mass)
3302 ("r-mitml" ,r-mitml)
3303 ("r-nnet" ,r-nnet)
3304 ("r-rcpp" ,r-rcpp)
3305 ("r-rlang" ,r-rlang)
3306 ("r-rpart" ,r-rpart)
3307 ("r-survival" ,r-survival)))
3308 (home-page "https://cran.r-project.org/web/packages/mice/")
3309 (synopsis "Multivariate imputation by chained equations")
3310 (description
3311 "Multiple imputation using @dfn{Fully Conditional Specification} (FCS)
3312 implemented by the MICE algorithm as described in @url{Van Buuren and
3313 Groothuis-Oudshoorn (2011), http://doi.org/10.18637/jss.v045.i03}. Each
3314 variable has its own imputation model. Built-in imputation models are
3315 provided for continuous data (predictive mean matching, normal), binary
3316 data (logistic regression), unordered categorical data (polytomous logistic
3317 regression) and ordered categorical data (proportional odds). MICE can also
3318 impute continuous two-level data (normal model, pan, second-level variables).
3319 Passive imputation can be used to maintain consistency between variables.
3320 Various diagnostic plots are available to inspect the quality of the
3321 imputations.")
3322 ;; Any of these two versions.
3323 (license (list license:gpl2 license:gpl3))))
3324
3325 (define-public r-truncnorm
3326 (package
3327 (name "r-truncnorm")
3328 (version "1.0-8")
3329 (source
3330 (origin
3331 (method url-fetch)
3332 (uri (cran-uri "truncnorm" version))
3333 (sha256
3334 (base32
3335 "0zn88wdd58223kibk085rhsikl4yhlrwiyq109hzjg06hy6lwmj9"))))
3336 (build-system r-build-system)
3337 (home-page "https://cran.r-project.org/web/packages/truncnorm/")
3338 (synopsis "Truncated normal distribution")
3339 (description "This package provides functions for the truncated normal
3340 distribution with mean equal to @code{mean} and standard deviation equal to
3341 @code{sd}. It includes density, distribution, quantile, and expected value
3342 functions, as well as a random generation function.")
3343 (license license:gpl2)))
3344
3345 (define-public r-rsolnp
3346 (package
3347 (name "r-rsolnp")
3348 (version "1.16")
3349 (source
3350 (origin
3351 (method url-fetch)
3352 (uri (cran-uri "Rsolnp" version))
3353 (sha256
3354 (base32
3355 "0w7nkj6igr0gi7r7jg950lsx7dj6aipgxi6vbjsf5f5yc9h7fhii"))))
3356 (properties `((upstream-name . "Rsolnp")))
3357 (build-system r-build-system)
3358 (propagated-inputs
3359 `(("r-truncnorm" ,r-truncnorm)))
3360 (home-page "https://cran.r-project.org/web/packages/Rsolnp/")
3361 (synopsis "General non-linear optimization")
3362 (description "The Rsolnp package implements a general non-linear augmented
3363 Lagrange multiplier method solver, a @dfn{sequential quadratic
3364 programming} (SQP) based solver).")
3365 ;; Any version of the GPL.
3366 (license license:gpl2+)))
3367
3368 (define-public r-hardyweinberg
3369 (package
3370 (name "r-hardyweinberg")
3371 (version "1.6.3")
3372 (source
3373 (origin
3374 (method url-fetch)
3375 (uri (cran-uri "HardyWeinberg" version))
3376 (sha256
3377 (base32
3378 "1irz44q6nf95h37av868f47aakwv3jgwgw217xfsfw0afkm7s25f"))))
3379 (properties `((upstream-name . "HardyWeinberg")))
3380 (build-system r-build-system)
3381 (propagated-inputs
3382 `(("r-mice" ,r-mice)
3383 ("r-rcpp" ,r-rcpp)
3384 ("r-rsolnp" ,r-rsolnp)))
3385 (home-page "https://cran.r-project.org/package=HardyWeinberg")
3386 (synopsis "Statistical tests and graphics for Hardy-Weinberg equilibrium")
3387 (description
3388 "This package contains tools for exploring Hardy-Weinberg equilibrium for
3389 diallelic genetic marker data. All classical tests (chi-square, exact,
3390 likelihood-ratio and permutation tests) for Hardy-Weinberg equilibrium are
3391 included in the package, as well as functions for power computation and for
3392 the simulation of marker data under equilibrium and disequilibrium. Routines
3393 for dealing with markers on the X-chromosome are included. Functions for
3394 testing equilibrium in the presence of missing data by using multiple
3395 imputation are also provided. Implements several graphics for exploring the
3396 equilibrium status of a large set of diallelic markers: ternary plots with
3397 acceptance regions, log-ratio plots and Q-Q plots.")
3398 (license license:gpl2+)))
3399
3400 (define-public r-sm
3401 (package
3402 (name "r-sm")
3403 (version "2.2-5.6")
3404 (source
3405 (origin
3406 (method url-fetch)
3407 (uri (cran-uri "sm" version))
3408 (sha256
3409 (base32
3410 "0c4whcx879gb4lwvqnzxl5n9xgpcqh2c54ip9ami3mwfprzcv45q"))))
3411 (build-system r-build-system)
3412 (native-inputs `(("gfortran" ,gfortran)))
3413 (home-page "http://www.stats.gla.ac.uk/~adrian/sm/")
3414 (synopsis "Smoothing methods for nonparametric regression and density estimation")
3415 (description
3416 "This is software accompanying the book 'Applied Smoothing Techniques for
3417 Data Analysis---The Kernel Approach with S-Plus Illustrations', Oxford
3418 University Press. It provides smoothing methods for nonparametric regression
3419 and density estimation")
3420 (license license:gpl2+)))
3421
3422 (define-public r-venndiagram
3423 (package
3424 (name "r-venndiagram")
3425 (version "1.6.20")
3426 (source (origin
3427 (method url-fetch)
3428 (uri (cran-uri "VennDiagram" version))
3429 (sha256
3430 (base32
3431 "1ic1jaxzw98si2p4n1fl4n3myhd7fpw0njb634cwhviwybzv6775"))))
3432 (properties `((upstream-name . "VennDiagram")))
3433 (build-system r-build-system)
3434 (propagated-inputs
3435 `(("r-futile-logger" ,r-futile-logger)))
3436 (home-page "https://cran.r-project.org/web/packages/VennDiagram/")
3437 (synopsis "Generate High-Resolution Venn and Euler Plots")
3438 (description
3439 "This package provides a set of functions to generate high-resolution
3440 Venn and Euler plots. It includes handling for several special cases,
3441 including two-case scaling, and extensive customization of plot shape and
3442 structure.")
3443 (license license:gpl2+)))
3444
3445 (define-public r-vioplot
3446 (package
3447 (name "r-vioplot")
3448 (version "0.3.3")
3449 (source
3450 (origin
3451 (method url-fetch)
3452 (uri (cran-uri "vioplot" version))
3453 (sha256
3454 (base32
3455 "1jjrsds7p1jnnr4970h43526b9cdv3azizjbalbfzjjylc53lrca"))))
3456 (build-system r-build-system)
3457 (propagated-inputs
3458 `(("r-sm" ,r-sm)
3459 ("r-zoo" ,r-zoo)))
3460 (home-page "http://wsopuppenkiste.wiso.uni-goettingen.de/~dadler")
3461 (synopsis "Violin plot")
3462 (description
3463 "This package provides a violin plot, which is a combination of a box
3464 plot and a kernel density plot.")
3465 (license license:bsd-3)))
3466
3467 (define-public r-rsofia
3468 (package
3469 (name "r-rsofia")
3470 (version "1.1")
3471 (source (origin
3472 (method url-fetch)
3473 ;; This package has been removed from CRAN, so we can
3474 ;; only fetch it from the archives.
3475 (uri (string-append "https://cran.r-project.org/src/"
3476 "contrib/Archive/RSofia/RSofia_"
3477 version ".tar.gz"))
3478 (sha256
3479 (base32
3480 "0q931y9rcf6slb0s2lsxhgqrzy4yqwh8hb1124nxg0bjbxvjbihn"))))
3481 (properties `((upstream-name . "RSofia")))
3482 (build-system r-build-system)
3483 (propagated-inputs
3484 `(("r-rcpp" ,r-rcpp)))
3485 (home-page "https://cran.r-project.org/src/contrib/Archive/RSofia")
3486 (synopsis "Port of sofia-ml to R")
3487 (description "This package is a port of sofia-ml to R. Sofia-ml is a
3488 suite of fast incremental algorithms for machine learning that can be used for
3489 training models for classification or ranking.")
3490 (license license:asl2.0)))
3491
3492 (define-public r-xts
3493 (package
3494 (name "r-xts")
3495 (version "0.11-2")
3496 (source
3497 (origin
3498 (method url-fetch)
3499 (uri (cran-uri "xts" version))
3500 (sha256
3501 (base32
3502 "1f0kxrvn13py3hk2gh2m56cqm39x3bqp1i350r5viddacrm2yxqj"))))
3503 (build-system r-build-system)
3504 (propagated-inputs `(("r-zoo" ,r-zoo)))
3505 (home-page "https://github.com/joshuaulrich/xts")
3506 (synopsis "Extensible time series")
3507 (description
3508 "This package provides for uniform handling of R's different time-based
3509 data classes by extending @code{zoo}, maximizing native format information
3510 preservation and allowing for user-level customization and extension, while
3511 simplifying cross-class interoperability.")
3512 (license license:gpl2+)))
3513
3514 (define-public r-performanceanalytics
3515 (package
3516 (name "r-performanceanalytics")
3517 (version "1.5.3")
3518 (source
3519 (origin
3520 (method url-fetch)
3521 (uri (cran-uri "PerformanceAnalytics" version))
3522 (sha256
3523 (base32
3524 "0jhjldwyxwq7a47zmk5y1jjck7hvq92p8rlgjvdfy51hx2dmlqqd"))))
3525 (properties
3526 `((upstream-name . "PerformanceAnalytics")))
3527 (build-system r-build-system)
3528 (propagated-inputs
3529 `(("r-quadprog" ,r-quadprog)
3530 ("r-xts" ,r-xts)
3531 ("r-zoo" ,r-zoo)))
3532 (home-page "https://r-forge.r-project.org/projects/returnanalytics/")
3533 (synopsis "Econometric tools for performance and risk analysis")
3534 (description "This is a collection of econometric functions for
3535 performance and risk analysis. This package aims to aid practitioners and
3536 researchers in utilizing the latest research in analysis of non-normal return
3537 streams. In general, it is most tested on return (rather than price) data on
3538 a regular scale, but most functions will work with irregular return data as
3539 well, and increasing numbers of functions will work with P&L or price data
3540 where possible.")
3541 ;; Either version may be picked.
3542 (license (list license:gpl2 license:gpl3))))
3543
3544 (define-public r-laeken
3545 (package
3546 (name "r-laeken")
3547 (version "0.5.0")
3548 (source
3549 (origin
3550 (method url-fetch)
3551 (uri (cran-uri "laeken" version))
3552 (sha256
3553 (base32
3554 "1g9r3y7b0gl91hijk9awa8rjk97mqpkxinzq2cgmx0m38ng9ylpa"))))
3555 (build-system r-build-system)
3556 (propagated-inputs
3557 `(("r-boot" ,r-boot)
3558 ("r-mass" ,r-mass)))
3559 (home-page "https://cran.r-project.org/web/packages/laeken/")
3560 (synopsis "Estimation of indicators on social exclusion and poverty")
3561 (description "This package provides tools for the estimation of indicators
3562 on social exclusion and poverty, as well as an implementation of Pareto tail
3563 modeling for empirical income distributions.")
3564 (license license:gpl2+)))
3565
3566 (define-public r-vcd
3567 (package
3568 (name "r-vcd")
3569 (version "1.4-4")
3570 (source
3571 (origin
3572 (method url-fetch)
3573 (uri (cran-uri "vcd" version))
3574 (sha256
3575 (base32
3576 "1lp99h0wvsc61l1dgcqjxdrcgpgw88ak430cdsv43kmm43qssqd5"))))
3577 (build-system r-build-system)
3578 (propagated-inputs
3579 `(("r-colorspace" ,r-colorspace)
3580 ("r-lmtest" ,r-lmtest)
3581 ("r-mass" ,r-mass)))
3582 (home-page "https://cran.r-project.org/web/packages/vcd/")
3583 (synopsis "Visualizing categorical data")
3584 (description "This package provides visualization techniques, data sets,
3585 summary and inference procedures aimed particularly at categorical data.
3586 Special emphasis is given to highly extensible grid graphics. The package was
3587 originally inspired by the book \"Visualizing Categorical Data\" by Michael
3588 Friendly and is now the main support package for a new book, \"Discrete Data
3589 Analysis with R\" by Michael Friendly and David Meyer (2015).")
3590 (license license:gpl2)))
3591
3592 (define-public r-ica
3593 (package
3594 (name "r-ica")
3595 (version "1.0-2")
3596 (source
3597 (origin
3598 (method url-fetch)
3599 (uri (cran-uri "ica" version))
3600 (sha256
3601 (base32
3602 "0ya1nph1zwhad0bfz4yxs27kl45yk1dhnphdlrq34p8pqrpmj8g7"))))
3603 (build-system r-build-system)
3604 (home-page "https://cran.r-project.org/web/packages/ica/")
3605 (synopsis "Independent component analysis")
3606 (description "This package provides tools for @dfn{Independent Component
3607 Analysis} (ICA) using various algorithms: FastICA,
3608 Information-Maximization (Infomax), and @dfn{Joint Approximate Diagonalization
3609 of Eigenmatrices} (JADE).")
3610 (license license:gpl2+)))
3611
3612 (define-public r-dtw
3613 (package
3614 (name "r-dtw")
3615 (version "1.21-3")
3616 (source
3617 (origin
3618 (method url-fetch)
3619 (uri (cran-uri "dtw" version))
3620 (sha256
3621 (base32
3622 "02hyhx1sy5h3vzh9zixy18a7d47df4k5d0wyflcvlcbsbcl6p90s"))))
3623 (build-system r-build-system)
3624 (propagated-inputs `(("r-proxy" ,r-proxy)))
3625 (home-page "http://dtw.r-forge.r-project.org/")
3626 (synopsis "Dynamic Time Warping Algorithms")
3627 (description "This package provides a comprehensive implementation of
3628 @dfn{dynamic time warping} (DTW) algorithms in R. DTW computes the
3629 optimal (least cumulative distance) alignment between points of two time
3630 series. Common DTW variants covered include local (slope) and global (window)
3631 constraints, subsequence matches, arbitrary distance definitions,
3632 normalizations, minimum variance matching, and so on.")
3633 (license license:gpl2+)))
3634
3635 (define-public r-sdmtools
3636 (package
3637 (name "r-sdmtools")
3638 (version "1.1-221.1")
3639 (source
3640 (origin
3641 (method url-fetch)
3642 (uri (cran-uri "SDMTools" version))
3643 (sha256
3644 (base32
3645 "1fsgnlc7glawimzijp11j53g5bnfp1mdq9wb0754idmxcdi8a99q"))))
3646 (properties `((upstream-name . "SDMTools")))
3647 (build-system r-build-system)
3648 (propagated-inputs `(("r-r-utils" ,r-r-utils)))
3649 (home-page "http://www.rforge.net/SDMTools/")
3650 (synopsis "Species distribution modelling tools")
3651 (description "This package provides a set of tools for post processing
3652 the outcomes of species distribution modeling exercises. It includes novel
3653 methods for comparing models and tracking changes in distributions through
3654 time. It further includes methods for visualizing outcomes, selecting
3655 thresholds, calculating measures of accuracy and landscape fragmentation
3656 statistics, etc.")
3657 (license license:gpl3+)))
3658
3659 (define-public r-scatterplot3d
3660 (package
3661 (name "r-scatterplot3d")
3662 (version "0.3-41")
3663 (source
3664 (origin
3665 (method url-fetch)
3666 (uri (cran-uri "scatterplot3d" version))
3667 (sha256
3668 (base32
3669 "152xqz9c70qab86mpgng049gxsg5f4fpf1m8dh93fb9v1avjd0sc"))))
3670 (build-system r-build-system)
3671 (home-page "https://cran.r-project.org/web/packages/scatterplot3d/")
3672 (synopsis "3D scatter plot")
3673 (description "This package provides an implementation of scatter plots for
3674 plotting. a three dimensional point cloud.")
3675 (license license:gpl2)))
3676
3677 (define-public r-ggridges
3678 (package
3679 (name "r-ggridges")
3680 (version "0.5.1")
3681 (source
3682 (origin
3683 (method url-fetch)
3684 (uri (cran-uri "ggridges" version))
3685 (sha256
3686 (base32
3687 "0dhwcpy785ac2ny5bjp284595nnybi3554wd0yffsli0vzf7ry01"))))
3688 (build-system r-build-system)
3689 (propagated-inputs
3690 `(("r-ggplot2" ,r-ggplot2)
3691 ("r-plyr" ,r-plyr)
3692 ("r-scales" ,r-scales)
3693 ("r-withr" ,r-withr)))
3694 (home-page "https://github.com/clauswilke/ggridges")
3695 (synopsis "Ridgeline plots in ggplot2")
3696 (description
3697 "Ridgeline plots provide a convenient way of visualizing changes in
3698 distributions over time or space. This package enables the creation of such
3699 plots in @code{ggplot2}.")
3700 (license license:gpl2)))
3701
3702 (define-public r-ggjoy
3703 (package
3704 (name "r-ggjoy")
3705 (version "0.4.1")
3706 (source
3707 (origin
3708 (method url-fetch)
3709 (uri (cran-uri "ggjoy" version))
3710 (sha256
3711 (base32
3712 "012md2m0jqfcccb933j423m3ck31v3p0pd41gjxpyg9082y7ixyj"))))
3713 (build-system r-build-system)
3714 (propagated-inputs
3715 `(("r-ggplot2" ,r-ggplot2)
3716 ("r-ggridges" ,r-ggridges)))
3717 (home-page "https://github.com/clauswilke/ggjoy")
3718 (synopsis "Joyplots in ggplot2")
3719 (description "Joyplots provide a convenient way of visualizing changes in
3720 distributions over time or space. This package enables the creation of such
3721 plots in @code{ggplot2}.")
3722 (license license:gpl2)))
3723
3724 (define-public r-cli
3725 (package
3726 (name "r-cli")
3727 (version "1.1.0")
3728 (source
3729 (origin
3730 (method url-fetch)
3731 (uri (cran-uri "cli" version))
3732 (sha256
3733 (base32
3734 "02hdwvdq5nic6dhxj88jbgsc9m8yrz3yibigg6szkggxyk6hzh2g"))))
3735 (build-system r-build-system)
3736 (propagated-inputs
3737 `(("r-assertthat" ,r-assertthat)
3738 ("r-crayon" ,r-crayon)))
3739 (home-page "https://github.com/r-lib/cli#readme")
3740 (synopsis "Helpers for developing command line interfaces")
3741 (description "This package provides a suite of tools designed to build
3742 attractive command line interfaces (CLIs). It includes tools for drawing
3743 rules, boxes, trees, and Unicode symbols with ASCII alternatives.")
3744 (license license:expat)))
3745
3746 (define-public r-argparser
3747 (package
3748 (name "r-argparser")
3749 (version "0.4")
3750 (source
3751 (origin
3752 (method url-fetch)
3753 (uri (cran-uri "argparser" version))
3754 (sha256
3755 (base32
3756 "0s1wxshx4jk69wfxhycx973q6y8cmqrfymyjklhq1i8xrj0kmmx9"))))
3757 (build-system r-build-system)
3758 (home-page "https://bitbucket.org/djhshih/argparser")
3759 (synopsis "Command-line argument parser")
3760 (description
3761 "This package provides a cross-platform command-line argument parser
3762 written purely in R with no external dependencies. It is useful with the
3763 Rscript front-end and facilitates turning an R script into an executable
3764 script.")
3765 (license license:gpl3+)))
3766
3767 (define-public r-debugme
3768 (package
3769 (name "r-debugme")
3770 (version "1.1.0")
3771 (source
3772 (origin
3773 (method url-fetch)
3774 (uri (cran-uri "debugme" version))
3775 (sha256
3776 (base32
3777 "1c9sg55zvf10h8198jdnpamm6f66lzw3c3jnmdp9ls6na0j0xbjd"))))
3778 (build-system r-build-system)
3779 (propagated-inputs `(("r-crayon" ,r-crayon)))
3780 (home-page "https://github.com/r-lib/debugme#readme")
3781 (synopsis "Debug R packages")
3782 (description
3783 "This package allows the user to specify debug messages as special string
3784 constants, and control debugging of packages via environment variables.")
3785 (license license:expat)))
3786
3787 (define-public r-processx
3788 (package
3789 (name "r-processx")
3790 (version "3.4.1")
3791 (source
3792 (origin
3793 (method url-fetch)
3794 (uri (cran-uri "processx" version))
3795 (sha256
3796 (base32
3797 "1g6ipcaxg9y94lyrnbp7kkbqfkcdh1fyrqjjclbjp3x7iysdvazi"))))
3798 (build-system r-build-system)
3799 (propagated-inputs
3800 `(("r-ps" ,r-ps)
3801 ("r-r6" ,r-r6)))
3802 (home-page "https://github.com/r-lib/processx3")
3803 (synopsis "Execute and control system processes")
3804 (description
3805 "This package provides portable tools to run system processes in the
3806 background. It can check if a background process is running; wait on a
3807 background process to finish; get the exit status of finished processes; kill
3808 background processes and their children; restart processes. It can read the
3809 standard output and error of the processes, using non-blocking connections.
3810 @code{processx} can poll a process for standard output or error, with a
3811 timeout. It can also poll several processes at once.")
3812 (license license:expat)))
3813
3814 (define-public r-tsp
3815 (package
3816 (name "r-tsp")
3817 (version "1.1-7")
3818 (source
3819 (origin
3820 (method url-fetch)
3821 (uri (cran-uri "TSP" version))
3822 (sha256
3823 (base32
3824 "0rxxhvqi55869dg2p82hzg5kvgcqf9h60cjcg00k3pv9aw4x07kb"))))
3825 (properties `((upstream-name . "TSP")))
3826 (build-system r-build-system)
3827 (propagated-inputs `(("r-foreach" ,r-foreach)))
3828 (home-page "https://cran.r-project.org/web/packages/TSP/")
3829 (synopsis "Traveling salesperson problem (TSP)")
3830 (description "This package provides basic infrastructure and some
3831 algorithms for the @dfn{traveling salesperson problem}(TSP) (also known as the
3832 traveling salesman problem).")
3833 (license license:gpl3)))
3834
3835 (define-public r-qap
3836 (package
3837 (name "r-qap")
3838 (version "0.1-1")
3839 (source
3840 (origin
3841 (method url-fetch)
3842 (uri (cran-uri "qap" version))
3843 (sha256
3844 (base32
3845 "0d2d1ni1camixyi45lfy00f4pn3p063k7bsi8gj5scp6n15mdgb0"))))
3846 (build-system r-build-system)
3847 (native-inputs `(("gfortran" ,gfortran)))
3848 (home-page "https://cran.r-project.org/web/packages/qap/")
3849 (synopsis "Heuristics for the quadratic assignment problem (QAP)")
3850 (description "This package implements heuristics for the @dfn{quadratic
3851 assignment problem} (QAP). Currently only a simulated annealing heuristic is
3852 available.")
3853 (license license:gpl3)))
3854
3855 (define-public r-gclus
3856 (package
3857 (name "r-gclus")
3858 (version "1.3.2")
3859 (source
3860 (origin
3861 (method url-fetch)
3862 (uri (cran-uri "gclus" version))
3863 (sha256
3864 (base32
3865 "1cz0g0i972955hhaji30rx8448x7f3as7z1sww9i5h86ybgirilw"))))
3866 (build-system r-build-system)
3867 (propagated-inputs `(("r-cluster" ,r-cluster)))
3868 (home-page "https://cran.r-project.org/web/packages/gclus/")
3869 (synopsis "Clustering graphics")
3870 (description "This package orders panels in scatterplot matrices and
3871 parallel coordinate displays by some merit index. It contains various indices
3872 of merit, ordering functions, and enhanced versions of @code{pairs} and
3873 @code{parcoord} which color panels according to their merit level.")
3874 (license license:gpl2+)))
3875
3876 (define-public r-webshot
3877 (package
3878 (name "r-webshot")
3879 (version "0.5.2")
3880 (source
3881 (origin
3882 (method url-fetch)
3883 (uri (cran-uri "webshot" version))
3884 (sha256
3885 (base32
3886 "0gq4h8cw51z95yvsnf38kj5l58wgljkm0dalmi8mn1sp06bxr0zi"))))
3887 (build-system r-build-system)
3888 (propagated-inputs
3889 `(("r-callr" ,r-callr)
3890 ("r-jsonlite" ,r-jsonlite)
3891 ("r-magrittr" ,r-magrittr)))
3892 (home-page "https://github.com/wch/webshot/")
3893 (synopsis "Take screenshots of web pages")
3894 (description
3895 "Webshot makes it easy to take screenshots of web pages from within R.
3896 It can also run Shiny applications locally and take screenshots of the
3897 application; and it can render and screenshot static as well as interactive R
3898 Markdown documents.")
3899 (license license:gpl2)))
3900
3901 (define-public r-seriation
3902 (package
3903 (name "r-seriation")
3904 (version "1.2-8")
3905 (source
3906 (origin
3907 (method url-fetch)
3908 (uri (cran-uri "seriation" version))
3909 (sha256
3910 (base32
3911 "1zbdxq0s5rc5v307b69fw9k52m0654ls7pf22lh35ggirig6lwsk"))))
3912 (build-system r-build-system)
3913 (propagated-inputs
3914 `(("r-cluster" ,r-cluster)
3915 ("r-colorspace" ,r-colorspace)
3916 ("r-dendextend" ,r-dendextend)
3917 ("r-gclus" ,r-gclus)
3918 ("r-gplots" ,r-gplots)
3919 ("r-mass" ,r-mass)
3920 ("r-qap" ,r-qap)
3921 ("r-registry" ,r-registry)
3922 ("r-tsp" ,r-tsp)))
3923 (native-inputs `(("gfortran" ,gfortran)))
3924 (home-page "http://s2.smu.edu/IDA/seriation/")
3925 (synopsis "Infrastructure for ordering objects using seriation")
3926 (description
3927 "This package provides infrastructure for seriation with an
3928 implementation of several seriation/sequencing techniques to reorder matrices,
3929 dissimilarity matrices, and dendrograms. It also provides (optimally)
3930 reordered heatmaps, color images and clustering visualizations like
3931 dissimilarity plots, and visual assessment of cluster tendency plots (VAT and
3932 iVAT).")
3933 (license license:gpl3)))
3934
3935 (define-public r-xfun
3936 (package
3937 (name "r-xfun")
3938 (version "0.11")
3939 (source
3940 (origin
3941 (method url-fetch)
3942 (uri (cran-uri "xfun" version))
3943 (sha256
3944 (base32 "0dncw6bqkal7nyarrrrj9arxy0y3nkdzmrbibcjh84m1cxd4phiw"))))
3945 (build-system r-build-system)
3946 (home-page "https://github.com/yihui/xfun")
3947 (synopsis "Miscellaneous functions")
3948 (description
3949 "This package provides miscellaneous functions commonly used in other
3950 packages maintained by Yihui Xie.")
3951 (license license:expat)))
3952
3953 (define-public r-utf8
3954 (package
3955 (name "r-utf8")
3956 (version "1.1.4")
3957 (source
3958 (origin
3959 (method url-fetch)
3960 (uri (cran-uri "utf8" version))
3961 (sha256
3962 (base32
3963 "0m0ywg8k3blfiahxvh1i4zn9dksrlc937d2lbza5fc38zjnrrnpn"))))
3964 (build-system r-build-system)
3965 (home-page "https://github.com/patperry/r-utf8")
3966 (synopsis "Unicode text processing")
3967 (description
3968 "This package provides tools to process and print UTF-8 encoded
3969 international text (Unicode). Input, validate, normalize, encode, format, and
3970 display.")
3971 (license license:asl2.0)))
3972
3973 (define-public r-zeallot
3974 (package
3975 (name "r-zeallot")
3976 (version "0.1.0")
3977 (source
3978 (origin
3979 (method url-fetch)
3980 (uri (cran-uri "zeallot" version))
3981 (sha256
3982 (base32
3983 "1sd1igcfnv27pa3bqxlbyxchi562h7grnjg1l7wxx3bwr49i57s3"))))
3984 (build-system r-build-system)
3985 (home-page "https://github.com/nteetor/zeallot")
3986 (synopsis "Multiple, unpacking, and destructuring assignment")
3987 (description
3988 "This package provides a @code{%<-%} operator to perform multiple,
3989 unpacking, and destructuring assignment in R. The operator unpacks the
3990 right-hand side of an assignment into multiple values and assigns these values
3991 to variables on the left-hand side of the assignment.")
3992 (license license:expat)))
3993
3994 (define-public r-vctrs
3995 (package
3996 (name "r-vctrs")
3997 (version "0.2.0")
3998 (source
3999 (origin
4000 (method url-fetch)
4001 (uri (cran-uri "vctrs" version))
4002 (sha256
4003 (base32
4004 "05h0y8qzwc899qj84gkhg4jwzscd065as00d4d8smv42h4i8zkjv"))))
4005 (build-system r-build-system)
4006 (propagated-inputs
4007 `(("r-backports" ,r-backports)
4008 ("r-digest" ,r-digest)
4009 ("r-ellipsis" ,r-ellipsis)
4010 ("r-glue" ,r-glue)
4011 ("r-rlang" ,r-rlang)
4012 ("r-zeallot" ,r-zeallot)))
4013 (home-page "https://github.com/r-lib/vctrs")
4014 (synopsis "Vector helpers")
4015 (description
4016 "There are three main goals to the @code{vctrs} package:
4017
4018 @enumerate
4019 @item To propose @code{vec_size()} and @code{vec_type()} as alternatives to
4020 @code{length()} and @code{class()}. These definitions are paired with a
4021 framework for type-coercion and size-recycling.
4022 @item To define type- and size-stability as desirable function properties, use
4023 them to analyse existing base function, and to propose better alternatives.
4024 This work has been particularly motivated by thinking about the ideal
4025 properties of @code{c()}, @code{ifelse()}, and @code{rbind()}.
4026 @item To provide a new @code{vctr} base class that makes it easy to create new
4027 S3 vectors. @code{vctrs} provides methods for many base generics in terms of
4028 a few new @code{vctrs} generics, making implementation considerably simpler
4029 and more robust.
4030 @end enumerate\n")
4031 (license license:gpl3)))
4032
4033 (define-public r-pillar
4034 (package
4035 (name "r-pillar")
4036 (version "1.4.2")
4037 (source
4038 (origin
4039 (method url-fetch)
4040 (uri (cran-uri "pillar" version))
4041 (sha256
4042 (base32
4043 "0988047mf0xdhdkqqmavzx4ifjhndjnxniyrrhrdq1nvnrvbpfms"))))
4044 (build-system r-build-system)
4045 (propagated-inputs
4046 `(("r-cli" ,r-cli)
4047 ("r-crayon" ,r-crayon)
4048 ("r-fansi" ,r-fansi)
4049 ("r-rlang" ,r-rlang)
4050 ("r-utf8" ,r-utf8)
4051 ("r-vctrs" ,r-vctrs)))
4052 (home-page "https://github.com/r-lib/pillar")
4053 (synopsis "Coloured formatting for columns")
4054 (description
4055 "This package provides a @code{pillar} generic designed for formatting
4056 columns of data using the full range of colours provided by modern
4057 terminals.")
4058 (license license:gpl3)))
4059
4060 (define-public r-uuid
4061 (package
4062 (name "r-uuid")
4063 (version "0.1-2")
4064 (source
4065 (origin
4066 (method url-fetch)
4067 (uri (cran-uri "uuid" version))
4068 (sha256
4069 (base32
4070 "1gmisd630fc8ybg845hbg13wmm3pk3npaamrh5wqbc1nqd6p0wfx"))))
4071 (build-system r-build-system)
4072 (home-page "http://www.rforge.net/uuid")
4073 (synopsis "Tools for generating and handling of UUIDs")
4074 (description
4075 "This package provides tools for generating and handling of
4076 @dfn{Universally Unique Identifiers} (UUIDs).")
4077 (license license:expat)))
4078
4079 (define-public r-tinytex
4080 (package
4081 (name "r-tinytex")
4082 (version "0.17")
4083 (source
4084 (origin
4085 (method url-fetch)
4086 (uri (cran-uri "tinytex" version))
4087 (sha256
4088 (base32
4089 "0mgxrbj4gam2gvxfk26nq820vsfjggj81m2l7j9m8vp361k15r0w"))))
4090 (build-system r-build-system)
4091 (propagated-inputs
4092 `(("r-xfun" ,r-xfun)))
4093 (home-page "https://github.com/yihui/tinytex")
4094 (synopsis "Helper functions for TeX Live and compiling LaTeX documents")
4095 (description
4096 "This package provides helper functions to install and maintain the LaTeX
4097 distribution named TinyTeX, a lightweight, cross-platform, portable, and
4098 easy-to-maintain version of TeX Live. This package also contains helper
4099 functions to compile LaTeX documents, and install missing LaTeX packages
4100 automatically.")
4101 (license license:expat)))
4102
4103 (define-public r-metap
4104 (package
4105 (name "r-metap")
4106 (version "1.1")
4107 (source
4108 (origin
4109 (method url-fetch)
4110 (uri (cran-uri "metap" version))
4111 (sha256
4112 (base32
4113 "10kv7z8pik5iy374h399vws0ldf41y2nczlwh8axqf9dcwl084i0"))))
4114 (build-system r-build-system)
4115 (propagated-inputs
4116 `(("r-lattice" ,r-lattice)
4117 ("r-rdpack" ,r-rdpack)))
4118 (home-page "http://www.dewey.myzen.co.uk/meta/meta.html")
4119 (synopsis "Meta-analysis of significance values")
4120 (description
4121 "The canonical way to perform meta-analysis involves using effect sizes.
4122 When they are not available this package provides a number of methods for
4123 meta-analysis of significance values including the methods of Edgington,
4124 Fisher, Stouffer, Tippett, and Wilkinson; a number of data-sets to replicate
4125 published results; and a routine for graphical display.")
4126 (license license:gpl2)))
4127
4128 (define-public r-network
4129 (package
4130 (name "r-network")
4131 (version "1.15")
4132 (source
4133 (origin
4134 (method url-fetch)
4135 (uri (cran-uri "network" version))
4136 (sha256
4137 (base32
4138 "1cscw5978fyixhkicf06c4b2g1yf6gyi8vx86cz3dy75d41mrgjw"))))
4139 (build-system r-build-system)
4140 (propagated-inputs
4141 `(("r-magrittr" ,r-magrittr)
4142 ("r-tibble" ,r-tibble)))
4143 (home-page "https://statnet.org/")
4144 (synopsis "Classes for relational data")
4145 (description
4146 "This package provides tools to create and modify network objects. The
4147 @code{network} class can represent a range of relational data types, and
4148 supports arbitrary vertex/edge/graph attributes.")
4149 (license license:gpl2+)))
4150
4151 (define-public r-statnet-common
4152 (package
4153 (name "r-statnet-common")
4154 (version "4.3.0")
4155 (source
4156 (origin
4157 (method url-fetch)
4158 (uri (cran-uri "statnet.common" version))
4159 (sha256
4160 (base32
4161 "0ng90i0wm9wlyhjbnmnylc1bbqw396p1dr7f402dyry9x9ck6jl3"))))
4162 (properties
4163 `((upstream-name . "statnet.common")))
4164 (build-system r-build-system)
4165 (propagated-inputs
4166 `(("r-coda" ,r-coda)))
4167 (home-page "https://statnet.org")
4168 (synopsis "R scripts and utilities used by the Statnet software")
4169 (description "This package provides non-statistical utilities used by the
4170 software developed by the Statnet Project.")
4171 (license license:gpl3)))
4172
4173 (define-public r-sna
4174 (package
4175 (name "r-sna")
4176 (version "2.4")
4177 (source
4178 (origin
4179 (method url-fetch)
4180 (uri (cran-uri "sna" version))
4181 (sha256
4182 (base32
4183 "1ks8819qvpdfansfqj9p32s1rhvl26frvbi78m4rx1wd1qcv74i2"))))
4184 (build-system r-build-system)
4185 (propagated-inputs
4186 `(("r-network" ,r-network)
4187 ("r-statnet-common" ,r-statnet-common)))
4188 (home-page "https://statnet.org")
4189 (synopsis "Tools for social network analysis")
4190 (description
4191 "This package provides a range of tools for social network analysis,
4192 including node and graph-level indices, structural distance and covariance
4193 methods, structural equivalence detection, network regression, random graph
4194 generation, and 2D/3D network visualization.")
4195 (license license:gpl2+)))
4196
4197 (define-public r-ttr
4198 (package
4199 (name "r-ttr")
4200 (version "0.23-5")
4201 (source
4202 (origin
4203 (method url-fetch)
4204 (uri (cran-uri "TTR" version))
4205 (sha256
4206 (base32
4207 "0fxipnyxaz55n4camrk9cs71x9w4dsmjrihysv8i1s6khf825rg6"))))
4208 (properties `((upstream-name . "TTR")))
4209 (build-system r-build-system)
4210 (propagated-inputs
4211 `(("r-curl" ,r-curl)
4212 ("r-xts" ,r-xts)
4213 ("r-zoo" ,r-zoo)))
4214 (home-page "https://github.com/joshuaulrich/TTR")
4215 (synopsis "Technical trading rules")
4216 (description
4217 "This package provides functions and data to construct technical trading
4218 rules with R.")
4219 (license license:gpl2)))
4220
4221 (define-public r-leaps
4222 (package
4223 (name "r-leaps")
4224 (version "3.0")
4225 (source
4226 (origin
4227 (method url-fetch)
4228 (uri (cran-uri "leaps" version))
4229 (sha256
4230 (base32
4231 "11gjmn1azrjw5xlvdb4gknj9985kck9x8zb9np1rnk2smp6pka2m"))))
4232 (build-system r-build-system)
4233 (native-inputs `(("gfortran" ,gfortran)))
4234 (home-page "https://cran.r-project.org/web/packages/leaps/")
4235 (synopsis "Regression subset selection")
4236 (description
4237 "This package provides tools for regression subset selection, including
4238 exhaustive search.")
4239 (license license:gpl2+)))
4240
4241 (define-public r-splus2r
4242 (package
4243 (name "r-splus2r")
4244 (version "1.2-2")
4245 (source
4246 (origin
4247 (method url-fetch)
4248 (uri (cran-uri "splus2R" version))
4249 (sha256
4250 (base32
4251 "0xrbj8vxy0pc6hl7m8abv71d3hjw47cl51s7j7priadyqczkq6sz"))))
4252 (properties `((upstream-name . "splus2R")))
4253 (build-system r-build-system)
4254 (native-inputs `(("gfortran" ,gfortran)))
4255 (home-page "https://cran.r-project.org/web/packages/splus2R/")
4256 (synopsis "Supplemental S-PLUS functionality in R")
4257 (description
4258 "Currently there are many functions in S-PLUS that are missing in R. To
4259 facilitate the conversion of S-PLUS packages to R packages, this package
4260 provides some missing S-PLUS functionality in R.")
4261 (license license:gpl2)))
4262
4263 (define-public r-ifultools
4264 (package
4265 (name "r-ifultools")
4266 (version "2.0-5")
4267 (source
4268 (origin
4269 (method url-fetch)
4270 (uri (cran-uri "ifultools" version))
4271 (sha256
4272 (base32
4273 "040kvbczcmmbaiaz0k0pdq9af541pjj6iwzh1a3w4szh9w6b5a3j"))))
4274 (build-system r-build-system)
4275 (propagated-inputs
4276 `(("r-mass" ,r-mass)
4277 ("r-splus2r" ,r-splus2r)))
4278 (home-page "https://cran.r-project.org/web/packages/ifultools/")
4279 (synopsis "Insightful research tools")
4280 (description "This package provides C code used by the wmtsa, fractal, and
4281 sapa R packages.")
4282 (license license:gpl2)))
4283
4284 (define-public r-sapa
4285 (package
4286 (name "r-sapa")
4287 (version "2.0-2")
4288 (source
4289 (origin
4290 (method url-fetch)
4291 (uri (cran-uri "sapa" version))
4292 (sha256
4293 (base32
4294 "056xlh14dnzq4x7sbp7ff2k61jxy7110a742b502vz549qfrr5ds"))))
4295 (build-system r-build-system)
4296 (propagated-inputs
4297 `(("r-ifultools" ,r-ifultools)
4298 ("r-splus2r" ,r-splus2r)))
4299 (home-page "https://cran.r-project.org/web/packages/sapa/")
4300 (synopsis "Spectral analysis for physical applications")
4301 (description "This package provides software for the book Spectral
4302 Analysis for Physical Applications, Donald B. Percival and Andrew T. Walden,
4303 Cambridge University Press, 1993.")
4304 (license license:gpl2)))
4305
4306 (define-public r-aggregation
4307 (package
4308 (name "r-aggregation")
4309 (version "1.0.1")
4310 (source
4311 (origin
4312 (method url-fetch)
4313 (uri (cran-uri "aggregation" version))
4314 (sha256
4315 (base32
4316 "0j9g604m2ccc7hcy02539yja9cf3xcbl25gvp838bp4x8w18my46"))))
4317 (build-system r-build-system)
4318 (home-page "https://cran.r-project.org/web/packages/aggregation/")
4319 (synopsis "Methods for p-value aggregation")
4320 (description
4321 "This package contains functionality for performing the following methods
4322 of p-value aggregation: Fisher's method, the Lancaster method (weighted
4323 Fisher's method), and Sidak correction.")
4324 (license license:gpl3)))
4325
4326 (define-public r-quantmod
4327 (package
4328 (name "r-quantmod")
4329 (version "0.4-15")
4330 (source
4331 (origin
4332 (method url-fetch)
4333 (uri (cran-uri "quantmod" version))
4334 (sha256
4335 (base32
4336 "0lyzaf5ypk93v6zj9gdghy05cc7cxgn9yasv1apx5r6qsjcfgwky"))))
4337 (build-system r-build-system)
4338 (propagated-inputs
4339 `(("r-curl" ,r-curl)
4340 ("r-ttr" ,r-ttr)
4341 ("r-xts" ,r-xts)
4342 ("r-zoo" ,r-zoo)))
4343 (home-page "https://cran.r-project.org/web/packages/quantmod/")
4344 (synopsis "Quantitative financial modelling framework")
4345 (description "This package provides a quantitative financial modelling
4346 framework to allow users to specify, build, trade, and analyse quantitative
4347 financial trading strategies.")
4348 (license license:gpl3)))
4349
4350 (define-public r-tseries
4351 (package
4352 (name "r-tseries")
4353 (version "0.10-47")
4354 (source
4355 (origin
4356 (method url-fetch)
4357 (uri (cran-uri "tseries" version))
4358 (sha256
4359 (base32
4360 "0yzvc9djp3angvxdxqi60wi726y76ablsb71q88ycvw0avgpf8r0"))))
4361 (build-system r-build-system)
4362 (propagated-inputs
4363 `(("r-quadprog" ,r-quadprog)
4364 ("r-quantmod" ,r-quantmod)
4365 ("r-zoo" ,r-zoo)))
4366 (native-inputs
4367 `(("gfortran" ,gfortran)))
4368 (home-page "https://cran.r-project.org/web/packages/tseries/")
4369 (synopsis "Time series analysis and computational finance")
4370 (description
4371 "This package provides functions relating to time series analysis and
4372 computational finance.")
4373 (license license:gpl2)))
4374
4375 (define-public r-wmtsa
4376 (package
4377 (name "r-wmtsa")
4378 (version "2.0-3")
4379 (source
4380 (origin
4381 (method url-fetch)
4382 (uri (cran-uri "wmtsa" version))
4383 (sha256
4384 (base32
4385 "1q436krz5p1f4a7a7sya6a9rh9x9mi8zzcgq66gbk9w9w4hcqcj6"))))
4386 (build-system r-build-system)
4387 (propagated-inputs
4388 `(("r-ifultools" ,r-ifultools)
4389 ("r-mass" ,r-mass)
4390 ("r-splus2r" ,r-splus2r)))
4391 (home-page "https://cran.r-project.org/web/packages/wmtsa/")
4392 (synopsis "Wavelet methods for time series analysis")
4393 (description
4394 "This package provides software to accompany the book \"Wavelet Methods
4395 for Time Series Analysis\", Donald B. Percival and Andrew T. Walden, Cambridge
4396 University Press, 2000.")
4397 (license license:gpl2)))
4398
4399 (define-public r-tsa
4400 (package
4401 (name "r-tsa")
4402 (version "1.2")
4403 (source
4404 (origin
4405 (method url-fetch)
4406 (uri (cran-uri "TSA" version))
4407 (sha256
4408 (base32
4409 "0gjfqibwdznz0nka95k4fjm935svxjpnqfywwz403crn2lh30h6q"))))
4410 (properties `((upstream-name . "TSA")))
4411 (build-system r-build-system)
4412 (propagated-inputs
4413 `(("r-leaps" ,r-leaps)
4414 ("r-locfit" ,r-locfit)
4415 ("r-mgcv" ,r-mgcv)))
4416 (home-page "http://www.stat.uiowa.edu/~kchan/TSA.htm")
4417 (synopsis "Time series analysis")
4418 (description
4419 "This package contains R functions and datasets detailed in the book
4420 \"Time Series Analysis with Applications in R (second edition)\" by Jonathan
4421 Cryer and Kung-Sik Chan.")
4422 (license license:gpl2+)))
4423
4424 (define-public r-extradistr
4425 (package
4426 (name "r-extradistr")
4427 (version "1.8.11")
4428 (source
4429 (origin
4430 (method url-fetch)
4431 (uri (cran-uri "extraDistr" version))
4432 (sha256
4433 (base32
4434 "1vvqv1d4hxa025gmm8cbiph63qsqy87l3ri5idd524gyz3chbcl3"))))
4435 (properties `((upstream-name . "extraDistr")))
4436 (build-system r-build-system)
4437 (propagated-inputs
4438 `(("r-rcpp" ,r-rcpp)))
4439 (home-page "https://github.com/twolodzko/extraDistr")
4440 (synopsis "Additional univariate and multivariate distributions")
4441 (description
4442 "This package implements density, distribution functions, quantile
4443 functions and random generation functions for a large number of univariate and
4444 multivariate distributions.")
4445 (license license:gpl2)))
4446
4447 (define-public r-fractal
4448 (package
4449 (name "r-fractal")
4450 (version "2.0-4")
4451 (source
4452 (origin
4453 (method url-fetch)
4454 (uri (cran-uri "fractal" version))
4455 (sha256
4456 (base32
4457 "18lr9z0gslvfc3z8vyj3krqj3bfhg60zv1fzinrwwkc4cpk1w7mp"))))
4458 (build-system r-build-system)
4459 (propagated-inputs
4460 `(("r-ifultools" ,r-ifultools)
4461 ("r-mass" ,r-mass)
4462 ("r-sapa" ,r-sapa)
4463 ("r-scatterplot3d" ,r-scatterplot3d)
4464 ("r-splus2r" ,r-splus2r)
4465 ("r-wmtsa" ,r-wmtsa)))
4466 (home-page "https://cran.r-project.org/web/packages/fractal/")
4467 (synopsis "Fractal time series modeling and analysis")
4468 (description
4469 "This package provides tools for stochastic fractal and deterministic
4470 chaotic time series analysis.")
4471 (license license:gpl2)))
4472
4473 (define-public r-urca
4474 (package
4475 (name "r-urca")
4476 (version "1.3-0")
4477 (source
4478 (origin
4479 (method url-fetch)
4480 (uri (cran-uri "urca" version))
4481 (sha256
4482 (base32
4483 "1akaqwf3fvvvx4sgfn641fd4sj51s0701pvfl6s5hnz2k0iwh732"))))
4484 (build-system r-build-system)
4485 (propagated-inputs `(("r-nlme" ,r-nlme)))
4486 (native-inputs `(("gfortran" ,gfortran)))
4487 (home-page "https://cran.r-project.org/web/packages/urca/")
4488 (synopsis "Unit root and cointegration tests for time series data")
4489 (description
4490 "This package provides unit root and cointegration tests encountered in
4491 applied econometric analysis.")
4492 (license license:gpl2+)))
4493
4494 (define-public r-cubature
4495 (package
4496 (name "r-cubature")
4497 (version "2.0.3")
4498 (source
4499 (origin
4500 (method url-fetch)
4501 (uri (cran-uri "cubature" version))
4502 (sha256
4503 (base32
4504 "0wvs80i4axj7pdcy9gjl08qzjbcjkldha94xy4gdxc34vgmh7gvr"))))
4505 (build-system r-build-system)
4506 (propagated-inputs
4507 `(("r-rcpp" ,r-rcpp)))
4508 (home-page "https://github.com/bnaras/cubature")
4509 (synopsis "Adaptive multivariate integration over hypercubes")
4510 (description
4511 "This package is an R wrapper around the cubature C library for adaptive
4512 multivariate integration over hypercubes. This version provides both
4513 @code{hcubature} and @code{pcubature} routines in addition to a vector
4514 interface.")
4515 ;; The included cubature C library is released under GPLv2+, but the
4516 ;; wrapper declares the license to be GPLv3+.
4517 (license (list license:gpl2+ license:gpl3+))))
4518
4519 (define-public r-trend
4520 (package
4521 (name "r-trend")
4522 (version "1.1.1")
4523 (source
4524 (origin
4525 (method url-fetch)
4526 (uri (cran-uri "trend" version))
4527 (sha256
4528 (base32
4529 "1bd567n15k2vpmgbx02584k5kglrc58mlb5kgd07wdss3knpa48q"))))
4530 (build-system r-build-system)
4531 (propagated-inputs
4532 `(("r-extradistr" ,r-extradistr)))
4533 (native-inputs
4534 `(("gfortran" ,gfortran)))
4535 (home-page "https://cran.r-project.org/web/packages/trend/")
4536 (synopsis "Non-parametric trend tests and change-point detection")
4537 (description
4538 "The analysis of environmental data often requires the detection of
4539 trends and change-points. This package includes tests for trend
4540 detection (Cox-Stuart Trend Test, Mann-Kendall Trend Test, (correlated)
4541 Hirsch-Slack Test, partial Mann-Kendall Trend Test, multivariate (multisite)
4542 Mann-Kendall Trend Test, (Seasonal) Sen's slope, partial Pearson and Spearman
4543 correlation trend test), change-point detection (Lanzante's test procedures,
4544 Pettitt's test, Buishand Range Test, Buishand U Test, Standard Normal
4545 Homogeinity Test), detection of non-randomness (Wallis-Moore Phase Frequency
4546 Test, Bartels rank von Neumann's ratio test, Wald-Wolfowitz Test) and the two
4547 sample Robust Rank-Order Distributional Test.")
4548 (license license:gpl3)))
4549
4550 (define-public r-expm
4551 (package
4552 (name "r-expm")
4553 (version "0.999-4")
4554 (source
4555 (origin
4556 (method url-fetch)
4557 (uri (cran-uri "expm" version))
4558 (sha256
4559 (base32
4560 "15k0acg2aqb2ajhwal6l7vhhp03m4lg579805d34554cl0kn9l2q"))))
4561 (build-system r-build-system)
4562 (propagated-inputs `(("r-matrix" ,r-matrix)))
4563 (native-inputs `(("gfortran" ,gfortran)))
4564 (home-page "https://r-forge.r-project.org/projects/expm/")
4565 (synopsis "Tools for matrix exponentials and related quantities")
4566 (description
4567 "This package provides tools for the computation of the matrix
4568 exponential, logarithm, square root, and related quantities.")
4569 (license license:gpl2+)))
4570
4571 (define-public r-complexplus
4572 (package
4573 (name "r-complexplus")
4574 (version "2.1")
4575 (source
4576 (origin
4577 (method url-fetch)
4578 (uri (cran-uri "complexplus" version))
4579 (sha256
4580 (base32
4581 "16w9v7d1ckavqmr86l34frr37pkvdn0iqnb17ssb8xaggns5lgqx"))))
4582 (build-system r-build-system)
4583 (propagated-inputs
4584 `(("r-expm" ,r-expm)
4585 ("r-matrix" ,r-matrix)))
4586 (home-page "https://cran.r-project.org/web/packages/complexplus/")
4587 (synopsis "Functions of complex or real variables")
4588 (description
4589 "This package extends several functions to the complex domain, including
4590 the matrix exponential and logarithm, and the determinant.")
4591 (license license:gpl2)))
4592
4593 (define-public r-phontools
4594 (package
4595 (name "r-phontools")
4596 (version "0.2-2.1")
4597 (source
4598 (origin
4599 (method url-fetch)
4600 (uri (cran-uri "phonTools" version))
4601 (sha256
4602 (base32
4603 "01i481mhswsys3gpasw9gn6nxkfmi7bz46g5c84m13pg0cv8hxc7"))))
4604 (properties `((upstream-name . "phonTools")))
4605 (build-system r-build-system)
4606 (home-page "http://www.santiagobarreda.com/rscripts.html")
4607 (synopsis "Tools for phonetic and acoustic analyses")
4608 (description
4609 "This package contains tools for the organization, display, and analysis
4610 of the sorts of data frequently encountered in phonetics research and
4611 experimentation, including the easy creation of IPA vowel plots, and the
4612 creation and manipulation of WAVE audio files.")
4613 (license license:bsd-2)))
4614
4615 (define-public r-np
4616 (package
4617 (name "r-np")
4618 (version "0.60-9")
4619 (source
4620 (origin
4621 (method url-fetch)
4622 (uri (cran-uri "np" version))
4623 (sha256
4624 (base32
4625 "1z4jcpx8bbgwslv42wrphfd1qfq965qjn0kmfxm5f6hbbycahcgy"))))
4626 (build-system r-build-system)
4627 (propagated-inputs
4628 `(("r-boot" ,r-boot)
4629 ("r-cubature" ,r-cubature)
4630 ("r-quadprog" ,r-quadprog)
4631 ("r-quantreg" ,r-quantreg)))
4632 (home-page "https://github.com/JeffreyRacine/R-Package-np")
4633 (synopsis "Non-parametric kernel smoothing methods for mixed data types")
4634 (description "This package provides non-parametric (and semi-parametric)
4635 kernel methods that seamlessly handle a mix of continuous, unordered, and
4636 ordered factor data types.")
4637 ;; Any version of the GPL.
4638 (license license:gpl3+)))
4639
4640 (define-public r-powerplus
4641 (package
4642 (name "r-powerplus")
4643 (version "3.1")
4644 (source
4645 (origin
4646 (method url-fetch)
4647 (uri (cran-uri "powerplus" version))
4648 (sha256
4649 (base32
4650 "0ayp6x34hkzgris4j3zbbs0r23n81bhww3wgfyy630ri4sk6brrn"))))
4651 (build-system r-build-system)
4652 (propagated-inputs
4653 `(("r-complexplus" ,r-complexplus)
4654 ("r-expm" ,r-expm)
4655 ("r-mass" ,r-mass)
4656 ("r-matrix" ,r-matrix)
4657 ("r-phontools" ,r-phontools)))
4658 (home-page "https://cran.r-project.org/web/packages/powerplus/")
4659 (synopsis "Exponentiation operations")
4660 (description
4661 "This package provides tools for the computation of matrix and scalar
4662 exponentiation.")
4663 (license license:gpl2)))
4664
4665 (define-public r-heatmaply
4666 (package
4667 (name "r-heatmaply")
4668 (version "0.16.0")
4669 (source
4670 (origin
4671 (method url-fetch)
4672 (uri (cran-uri "heatmaply" version))
4673 (sha256
4674 (base32
4675 "1qhxk48qh61qjxdlhl0qffdh3yh8iiwccid5ssngdv433q0cmyc1"))))
4676 (build-system r-build-system)
4677 (propagated-inputs
4678 `(("r-assertthat" ,r-assertthat)
4679 ("r-colorspace" ,r-colorspace)
4680 ("r-dendextend" ,r-dendextend)
4681 ("r-ggplot2" ,r-ggplot2)
4682 ("r-htmlwidgets" ,r-htmlwidgets)
4683 ("r-magrittr" ,r-magrittr)
4684 ("r-plotly" ,r-plotly)
4685 ("r-rcolorbrewer" ,r-rcolorbrewer)
4686 ("r-reshape2" ,r-reshape2)
4687 ("r-scales" ,r-scales)
4688 ("r-seriation" ,r-seriation)
4689 ("r-viridis" ,r-viridis)
4690 ("r-webshot" ,r-webshot)))
4691 (home-page "https://cran.r-project.org/package=heatmaply")
4692 (synopsis "Interactive cluster heat maps using plotly")
4693 (description
4694 "This package enables you to create interactive cluster heatmaps that can
4695 be saved as a stand-alone HTML file, embedded in R Markdown documents or in a
4696 Shiny app, and made available in the RStudio viewer pane. Hover the mouse
4697 pointer over a cell to show details or drag a rectangle to zoom. A heatmap is
4698 a popular graphical method for visualizing high-dimensional data, in which a
4699 table of numbers is encoded as a grid of colored cells. The rows and columns
4700 of the matrix are ordered to highlight patterns and are often accompanied by
4701 dendrograms.")
4702 ;; Either version of the license.
4703 (license (list license:gpl2 license:gpl3))))
4704
4705 (define-public r-h5
4706 (package
4707 (name "r-h5")
4708 (version "0.9.9")
4709 (source
4710 (origin
4711 (method url-fetch)
4712 (uri (cran-uri "h5" version))
4713 (sha256
4714 (base32
4715 "14p7i1sj24ky87kd7qr3n9fc9l64s0bp0rwbyl6i2x69xn75gpsx"))))
4716 (build-system r-build-system)
4717 (inputs
4718 `(("zlib" ,zlib)
4719 ("hdf5" ,hdf5)))
4720 (native-inputs
4721 `(("which" ,which)))
4722 (propagated-inputs
4723 `(("r-rcpp" ,r-rcpp)))
4724 (home-page "https://github.com/mannau/h5")
4725 (synopsis "Interface to the HDF5 Library")
4726 (description
4727 "This package provides an S4 interface to the HDF5 library supporting
4728 fast storage and retrieval of R-objects like vectors, matrices and arrays to
4729 binary files in a language independent format. The HDF5 format can therefore
4730 be used as an alternative to R's save/load mechanism. Since h5 is able to
4731 access only subsets of stored data it can also handle data sets which do not
4732 fit into memory.")
4733 (license license:bsd-2)))
4734
4735 (define-public r-cgdsr
4736 (package
4737 (name "r-cgdsr")
4738 (version "1.3.0")
4739 (source
4740 (origin
4741 (method url-fetch)
4742 (uri (cran-uri "cgdsr" version))
4743 (sha256
4744 (base32
4745 "07yc819hkabpzzh0g0cbqza6bcfy67b2marrzz1lj97f9iba78ja"))))
4746 (build-system r-build-system)
4747 (propagated-inputs
4748 `(("r-httr" ,r-httr)
4749 ("r-r-methodss3" ,r-r-methodss3)
4750 ("r-r-oo" ,r-r-oo)))
4751 (home-page "https://github.com/cBioPortal/cgdsr")
4752 (synopsis "R-based API for accessing the MSKCC Cancer Genomics Data Server")
4753 (description
4754 "This package provides a basic set of R functions for querying the Cancer
4755 Genomics Data Server (CGDS), hosted by the Computational Biology Center at
4756 Memorial-Sloan-Kettering Cancer Center (MSKCC).")
4757 (license license:lgpl3)))
4758
4759 (define-public r-import
4760 (package
4761 (name "r-import")
4762 (version "1.1.0")
4763 (source
4764 (origin
4765 (method url-fetch)
4766 (uri (cran-uri "import" version))
4767 (sha256
4768 (base32
4769 "0blf9539rbfwcmw8zsb4k58slb4pdnc075v34vmyjw752fznhcji"))))
4770 (build-system r-build-system)
4771 (home-page "https://github.com/smbache/import")
4772 (synopsis "Import mechanism for R")
4773 (description
4774 "This is an alternative mechanism for importing objects from packages.
4775 The syntax allows for importing multiple objects from a package with a single
4776 command in an expressive way. The import package bridges some of the gap
4777 between using @code{library} (or @code{require}) and direct (single-object)
4778 imports. Furthermore the imported objects are not placed in the current
4779 environment. It is also possible to import objects from stand-alone @code{.R}
4780 files.")
4781 (license license:expat)))
4782
4783 (define-public r-shinyace
4784 (package
4785 (name "r-shinyace")
4786 (version "0.4.1")
4787 (source
4788 (origin
4789 (method url-fetch)
4790 (uri (cran-uri "shinyAce" version))
4791 (sha256
4792 (base32
4793 "1m33dfm2kjirvgix7ybv1kbzgjkicdpv411g9c0q3fw6rnyhfxxn"))))
4794 (properties `((upstream-name . "shinyAce")))
4795 (build-system r-build-system)
4796 (propagated-inputs
4797 `(("r-shiny" ,r-shiny)
4798 ("r-jsonlite" ,r-jsonlite)))
4799 (home-page "http://cran.r-project.org/web/packages/shinyAce")
4800 (synopsis "Ace editor bindings for Shiny")
4801 (description
4802 "This package provides Ace editor bindings to enable a rich text editing
4803 environment within Shiny.")
4804 (license license:expat)))
4805
4806 (define-public r-base64url
4807 (package
4808 (name "r-base64url")
4809 (version "1.4")
4810 (source
4811 (origin
4812 (method url-fetch)
4813 (uri (cran-uri "base64url" version))
4814 (sha256
4815 (base32
4816 "0n1c2b68vza1dh7sk38v6biiwm72c4jpl79kpdg1bsb0hq9qy18x"))))
4817 (build-system r-build-system)
4818 (propagated-inputs
4819 `(("r-backports" ,r-backports)))
4820 (home-page "https://github.com/mllg/base64url")
4821 (synopsis "Fast and URL-safe base64 encoder and decoder")
4822 (description
4823 "This package provides a URL-safe base64 encoder and decoder. In
4824 contrast to RFC3548, the 62nd character (@code{+}) is replaced with @code{-},
4825 the 63rd character (@code{/}) is replaced with @code{_}. Furthermore, the
4826 encoder does not fill the string with trailing @code{=}. The resulting
4827 encoded strings comply to the regular expression pattern @code{[A-Za-z0-9_-]}
4828 and thus are safe to use in URLs or for file names. The package also comes
4829 with a simple base32 encoder/decoder suited for case insensitive file
4830 systems.")
4831 (license license:gpl3)))
4832
4833 (define-public r-radiant-data
4834 (package
4835 (name "r-radiant-data")
4836 (version "1.0.6")
4837 (source
4838 (origin
4839 (method url-fetch)
4840 (uri (cran-uri "radiant.data" version))
4841 (sha256
4842 (base32
4843 "08x7zasxf429m021482p86lx3zc6dqz2mih0id8s34isg4gafapg"))
4844 (modules '((guix build utils)))
4845 (snippet
4846 '(begin
4847 ;; Delete files that are under CC-NC-SA.
4848 (delete-file-recursively "inst/app/tools/help")
4849 #t))))
4850 (properties `((upstream-name . "radiant.data")))
4851 (build-system r-build-system)
4852 (propagated-inputs
4853 `(("r-base64enc" ,r-base64enc)
4854 ("r-broom" ,r-broom)
4855 ("r-car" ,r-car)
4856 ("r-curl" ,r-curl)
4857 ("r-dplyr" ,r-dplyr)
4858 ("r-dt" ,r-dt)
4859 ("r-glue" ,r-glue)
4860 ("r-ggplot2" ,r-ggplot2)
4861 ("r-gridextra" ,r-gridextra)
4862 ("r-import" ,r-import)
4863 ("r-jsonlite" ,r-jsonlite)
4864 ("r-knitr" ,r-knitr)
4865 ("r-lubridate" ,r-lubridate)
4866 ("r-magrittr" ,r-magrittr)
4867 ("r-markdown" ,r-markdown)
4868 ("r-plotly" ,r-plotly)
4869 ("r-psych" ,r-psych)
4870 ("r-readr" ,r-readr)
4871 ("r-readxl" ,r-readxl)
4872 ("r-rlang" ,r-rlang)
4873 ("r-rmarkdown" ,r-rmarkdown)
4874 ("r-rstudioapi" ,r-rstudioapi)
4875 ("r-scales" ,r-scales)
4876 ("r-shiny" ,r-shiny)
4877 ("r-shinyfiles" ,r-shinyfiles)
4878 ("r-shinyace" ,r-shinyace)
4879 ("r-stringi" ,r-stringi)
4880 ("r-tibble" ,r-tibble)
4881 ("r-tidyr" ,r-tidyr)
4882 ("r-writexl" ,r-writexl)))
4883 (home-page "https://github.com/radiant-rstats/radiant.data")
4884 (synopsis "Data menu for Radiant: business analytics using R and Shiny")
4885 (description
4886 "The Radiant Data menu includes interfaces for loading, saving, viewing,
4887 visualizing, summarizing, transforming, and combining data. It also contains
4888 functionality to generate reproducible reports of the analyses conducted in
4889 the application.")
4890 (license license:agpl3)))
4891
4892 (define-public r-algdesign
4893 (package
4894 (name "r-algdesign")
4895 (version "1.1-7.3.1")
4896 (source
4897 (origin
4898 (method url-fetch)
4899 (uri (cran-uri "AlgDesign" version))
4900 (sha256
4901 (base32 "1s69yx0wxi9kqj9kyib0yvd363d7g4zrz0cvz1hn97ladr8656bz"))))
4902 (properties `((upstream-name . "AlgDesign")))
4903 (build-system r-build-system)
4904 (home-page "https://github.com/jvbraun/AlgDesign")
4905 (synopsis "Algorithmic experimental design")
4906 (description
4907 "This package provides tools to calculate exact and approximate theory
4908 experimental designs for D, A, and I criteria. Very large designs may be
4909 created. Experimental designs may be blocked or blocked designs created from
4910 a candidate list, using several criteria. The blocking can be done when whole
4911 and within plot factors interact.")
4912 (license license:gpl2+)))
4913
4914 (define-public r-signal
4915 (package
4916 (name "r-signal")
4917 (version "0.7-6")
4918 (source
4919 (origin
4920 (method url-fetch)
4921 (uri (cran-uri "signal" version))
4922 (sha256
4923 (base32
4924 "1vsxramz5qd9q9s3vlqzmfdpmwl2rhlb2n904zw6f0fg0xxjfq3b"))))
4925 (build-system r-build-system)
4926 (propagated-inputs `(("r-mass" ,r-mass)))
4927 (native-inputs `(("gfortran" ,gfortran)))
4928 (home-page "https://cran.r-project.org/web/packages/signal/")
4929 (synopsis "Signal processing")
4930 (description
4931 "This package provides a set of signal processing functions originally
4932 written for Matlab and GNU Octave. It includes filter generation utilities,
4933 filtering functions, resampling routines, and visualization of filter models.
4934 It also includes interpolation functions.")
4935 (license license:gpl2)))
4936
4937 (define-public r-gsubfn
4938 (package
4939 (name "r-gsubfn")
4940 (version "0.7")
4941 (source
4942 (origin
4943 (method url-fetch)
4944 (uri (cran-uri "gsubfn" version))
4945 (sha256
4946 (base32
4947 "00j6b8b6xsx6v370h220x233rpk6asca78165y3d48jpwvwisdc9"))))
4948 (build-system r-build-system)
4949 (propagated-inputs `(("r-proto" ,r-proto)))
4950 (home-page "http://gsubfn.googlecode.com")
4951 (synopsis "Utilities for strings and function arguments.")
4952 (description
4953 "This package provides @code{gsubfn} which is like @code{gsub} but can
4954 take a replacement function or certain other objects instead of the
4955 replacement string. Matches and back references are input to the replacement
4956 function and replaced by the function output. @code{gsubfn} can be used to
4957 split strings based on content rather than delimiters and for quasi-perl-style
4958 string interpolation. The package also has facilities for translating
4959 formulas to functions and allowing such formulas in function calls instead of
4960 functions.")
4961 (license license:gpl2+)))
4962
4963 (define-public r-sqldf
4964 (package
4965 (name "r-sqldf")
4966 (version "0.4-11")
4967 (source
4968 (origin
4969 (method url-fetch)
4970 (uri (cran-uri "sqldf" version))
4971 (sha256
4972 (base32
4973 "0q12vsb53p2wchgp8wfz5bk08wfnm0jxjrakclj4jyy6x3a7ksff"))))
4974 (build-system r-build-system)
4975 (propagated-inputs
4976 `(("r-chron" ,r-chron)
4977 ("r-dbi" ,r-dbi)
4978 ("r-gsubfn" ,r-gsubfn)
4979 ("r-proto" ,r-proto)
4980 ("r-rsqlite" ,r-rsqlite)))
4981 (home-page "https://github.com/ggrothendieck/sqldf")
4982 (synopsis "Manipulate R data frames using SQL")
4983 (description
4984 "The @code{sqldf} function is typically passed a single argument which is
4985 an SQL select statement where the table names are ordinary R data frame names.
4986 @code{sqldf} transparently sets up a database, imports the data frames into
4987 that database, performs the SQL statement and returns the result using a
4988 heuristic to determine which class to assign to each column of the returned
4989 data frame. The @code{sqldf} or @code{read.csv.sql} functions can also be
4990 used to read filtered files into R even if the original files are larger than
4991 R itself can handle.")
4992 (license license:gpl2)))
4993
4994 (define-public r-abind
4995 (package
4996 (name "r-abind")
4997 (version "1.4-5")
4998 (source
4999 (origin
5000 (method url-fetch)
5001 (uri (cran-uri "abind" version))
5002 (sha256
5003 (base32
5004 "0b1zd8jbnl6l292cr9rb50m09fy3ylxvzkpgi5lfb1nbzddcwfis"))))
5005 (build-system r-build-system)
5006 (home-page "https://cran.r-project.org/web/packages/abind/")
5007 (synopsis "Combine multidimensional arrays")
5008 (description
5009 "This package provides tools to combine multidimensional arrays into a
5010 single array. This is a generalization of @code{cbind} and @code{rbind}. It
5011 works with vectors, matrices, and higher-dimensional arrays. It also provides
5012 the functions @code{adrop}, @code{asub}, and @code{afill} for manipulating,
5013 extracting and replacing data in arrays.")
5014 (license license:lgpl2.0+)))
5015
5016 (define-public r-prroc
5017 (package
5018 (name "r-prroc")
5019 (version "1.3.1")
5020 (source
5021 (origin
5022 (method url-fetch)
5023 (uri (cran-uri "PRROC" version))
5024 (sha256
5025 (base32
5026 "1m28h8pcd78049lz2qixhkcr9h5b3jik3maqzfbvq9y58z71i4a7"))))
5027 (properties `((upstream-name . "PRROC")))
5028 (build-system r-build-system)
5029 (home-page "https://cran.r-project.org/web/packages/PRROC/")
5030 (synopsis "Precision-Recall and ROC curves for weighted and unweighted data")
5031 (description
5032 "This package computes the areas under the @dfn{precision-recall} (PR)
5033 and ROC curve for weighted (e.g. soft-labeled) and unweighted data. In
5034 contrast to other implementations, the interpolation between points of the PR
5035 curve is done by a non-linear piecewise function. In addition to the areas
5036 under the curves, the curves themselves can also be computed and plotted by a
5037 specific S3-method.")
5038 (license license:gpl3)))
5039
5040 (define-public r-vim
5041 (package
5042 (name "r-vim")
5043 (version "4.8.0")
5044 (source
5045 (origin
5046 (method url-fetch)
5047 (uri (cran-uri "VIM" version))
5048 (sha256
5049 (base32
5050 "08x4a4yzgp8adgrv7a3666yma4b60n64mcsnvhzmwdy023f4ysrw"))))
5051 (properties `((upstream-name . "VIM")))
5052 (build-system r-build-system)
5053 (propagated-inputs
5054 `(("r-car" ,r-car)
5055 ("r-colorspace" ,r-colorspace)
5056 ("r-data-table" ,r-data-table)
5057 ("r-e1071" ,r-e1071)
5058 ("r-laeken" ,r-laeken)
5059 ("r-mass" ,r-mass)
5060 ("r-nnet" ,r-nnet)
5061 ("r-ranger" ,r-ranger)
5062 ("r-rcpp" ,r-rcpp)
5063 ("r-robustbase" ,r-robustbase)
5064 ("r-sp" ,r-sp)
5065 ("r-vcd" ,r-vcd)))
5066 (home-page "https://github.com/alexkowa/VIM")
5067 (synopsis "Visualization and imputation of missing values")
5068 (description
5069 "This package provides tools for the visualization of missing and/or
5070 imputed values are introduced, which can be used for exploring the data and
5071 the structure of the missing and/or imputed values. Depending on this
5072 structure of the missing values, the corresponding methods may help to
5073 identify the mechanism generating the missing values and allows to explore the
5074 data including missing values. In addition, the quality of imputation can be
5075 visually explored using various univariate, bivariate, multiple and
5076 multivariate plot methods.")
5077 (license license:gpl2+)))
5078
5079 (define-public r-fnn
5080 (package
5081 (name "r-fnn")
5082 (version "1.1.3")
5083 (source
5084 (origin
5085 (method url-fetch)
5086 (uri (cran-uri "FNN" version))
5087 (sha256
5088 (base32
5089 "0cllqlnynm5yaj4r64mqyyfc8phkb38rwssq8k8ikgfgr4jklxny"))))
5090 (properties `((upstream-name . "FNN")))
5091 (build-system r-build-system)
5092 (home-page "https://cran.r-project.org/web/packages/FNN")
5093 (synopsis "Fast nearest neighbor search algorithms and applications")
5094 (description
5095 "This package provides cover-tree and kd-tree fast k-nearest neighbor
5096 search algorithms. Related applications including KNN classification,
5097 regression and information measures are implemented.")
5098 ;; The DESCRIPTION file erroneously states that GPL version 2.1 or
5099 ;; later can be used.
5100 (license license:gpl2+)))
5101
5102 (define-public r-smoother
5103 (package
5104 (name "r-smoother")
5105 (version "1.1")
5106 (source
5107 (origin
5108 (method url-fetch)
5109 (uri (cran-uri "smoother" version))
5110 (sha256
5111 (base32
5112 "0nqr1bvlr5bnasqg74zmknjjl4x28kla9h5cxpga3kq5z215pdci"))))
5113 (build-system r-build-system)
5114 (propagated-inputs
5115 `(("r-ttr" ,r-ttr)))
5116 (home-page "http://cran.r-project.org/web/packages/smoother")
5117 (synopsis "Functions relating to the smoothing of numerical data")
5118 (description
5119 "This package provides a collection of methods for smoothing numerical
5120 data, commencing with a port of the Matlab gaussian window smoothing function.
5121 In addition, several functions typically used in smoothing of financial data
5122 are included.")
5123 (license license:gpl2)))
5124
5125 (define-public r-riverplot
5126 (package
5127 (name "r-riverplot")
5128 (version "0.6")
5129 (source
5130 (origin
5131 (method url-fetch)
5132 (uri (cran-uri "riverplot" version))
5133 (sha256
5134 (base32
5135 "0q1icpny8nkxyjhawyjzwrw8qlz0ayn2xyrsqrm4vkxyv6c9xk8z"))))
5136 (build-system r-build-system)
5137 (home-page "https://logfc.wordpress.com")
5138 (synopsis "Sankey or ribbon plots")
5139 (description
5140 "Sankey plots are a type of diagram that is convenient to illustrate how
5141 flow of information, resources etc. separates and joins, much like observing
5142 how rivers split and merge. For example, they can be used to compare
5143 different clusterings. This package provides an implementation of Sankey
5144 plots for R.")
5145 (license license:gpl2+)))
5146
5147 (define-public r-dyn
5148 (package
5149 (name "r-dyn")
5150 (version "0.2-9.6")
5151 (source
5152 (origin
5153 (method url-fetch)
5154 (uri (cran-uri "dyn" version))
5155 (sha256
5156 (base32
5157 "16fqv9k7yxdgybwzafjkyqm16qpgqz13lcjpi6a1nc8xbzlzh0gb"))))
5158 (build-system r-build-system)
5159 (propagated-inputs
5160 `(("r-zoo" ,r-zoo)))
5161 (home-page "https://cran.r-project.org/web/packages/dyn")
5162 (synopsis "Time series regression")
5163 (description
5164 "This package provides the dyn class interfaces @code{ts}, @code{irts},
5165 @code{zoo} and @code{zooreg} time series classes to @code{lm}, @code{glm},
5166 @code{loess}, @code{quantreg::rq}, @code{MASS::rlm},
5167 @code{MCMCpack::MCMCregress()}, @code{quantreg::rq()},
5168 @code{randomForest::randomForest()} and other regression functions, allowing
5169 those functions to be used with time series including specifications that may
5170 contain lags, diffs and missing values.")
5171 ;; Any GPL version.
5172 (license license:gpl2+)))
5173
5174 (define-public r-catdap
5175 (package
5176 (name "r-catdap")
5177 (version "1.3.4")
5178 (source
5179 (origin
5180 (method url-fetch)
5181 (uri (cran-uri "catdap" version))
5182 (sha256
5183 (base32
5184 "0i877l61f6c75pczi235rzci67w29zv1d7z5zn5p5ymndclvlpl2"))))
5185 (build-system r-build-system)
5186 (native-inputs
5187 `(("gfortran" ,gfortran)))
5188 (home-page "https://cran.r-project.org/web/packages/catdap/")
5189 (synopsis "Tools for categorical data analysis")
5190 (description
5191 "This package provides functions for analyzing multivariate data.
5192 Dependencies of the distribution of the specified variable (response
5193 variable) to other variables (explanatory variables) are derived and
5194 evaluated by the @dfn{Akaike Information Criterion} (AIC).")
5195 (license license:gpl2+)))
5196
5197 (define-public r-arules
5198 (package
5199 (name "r-arules")
5200 (version "1.6-4")
5201 (source
5202 (origin
5203 (method url-fetch)
5204 (uri (cran-uri "arules" version))
5205 (sha256
5206 (base32
5207 "003c5cd3xzq39h7c19px077ygm0n1v7k83icy5zzrnkagyds2p8n"))))
5208 (build-system r-build-system)
5209 (propagated-inputs
5210 `(("r-matrix" ,r-matrix)))
5211 (home-page "https://github.com/mhahsler/arules")
5212 (synopsis "Mining association rules and frequent itemsets")
5213 (description
5214 "This package provides an infrastructure for representing, manipulating
5215 and analyzing transaction data and patterns (frequent itemsets and association rules).
5216 It also provides C implementations of the association mining algorithms Apriori
5217 and Eclat.")
5218 (license license:gpl3)))
5219
5220 (define-public r-parsedate
5221 (package
5222 (name "r-parsedate")
5223 (version "1.2.0")
5224 (source
5225 (origin
5226 (method url-fetch)
5227 (uri (cran-uri "parsedate" version))
5228 (sha256
5229 (base32
5230 "0gb3w6hmwxayhijpf36p5dk4h6bbdps57x3cgikwvvxkgi83rarr"))))
5231 (build-system r-build-system)
5232 (propagated-inputs
5233 `(("r-rematch2" ,r-rematch2)))
5234 (home-page "https://github.com/gaborcsardi/parsedate")
5235 (synopsis
5236 "Recognize and parse dates in various formats")
5237 (description
5238 "This package provides three functions for dealing with dates:
5239 @code{parse_iso_8601} recognizes and parses all valid ISO 8601 date and
5240 time formats, @code{parse_date} parses dates in unspecified formats,
5241 and @code{format_iso_8601} formats a date in ISO 8601 format.")
5242 (license license:gpl2)))
5243
5244 (define-public r-abc-data
5245 (package
5246 (name "r-abc-data")
5247 (version "1.0")
5248 (source
5249 (origin
5250 (method url-fetch)
5251 (uri (cran-uri "abc.data" version))
5252 (sha256
5253 (base32
5254 "1bv1n68ah714ws58cf285n2s2v5vn7382lfjca4jxph57lyg8hmj"))))
5255 (properties `((upstream-name . "abc.data")))
5256 (build-system r-build-system)
5257 (home-page "https://cran.r-project.org/web/packages/abc.data/")
5258 (synopsis "Data for Approximate Bayesian Computation (ABC) package")
5259 (description
5260 "This package contains data which are used by functions of the abc
5261 package which implements several @dfn{Approximate Bayesian Computation} (ABC)
5262 algorithms for performing parameter estimation, model selection, and
5263 goodness-of-fit.")
5264 (license license:gpl3+)))
5265
5266 (define-public r-abc
5267 (package
5268 (name "r-abc")
5269 (version "2.1")
5270 (source
5271 (origin
5272 (method url-fetch)
5273 (uri (cran-uri "abc" version))
5274 (sha256
5275 (base32
5276 "0ngzaaz2y2s03fhngvwipmy4kq38xrmyddaz6a6l858rxvadrlhb"))))
5277 (build-system r-build-system)
5278 (propagated-inputs
5279 `(("r-abc-data" ,r-abc-data)
5280 ("r-locfit" ,r-locfit)
5281 ("r-mass" ,r-mass)
5282 ("r-nnet" ,r-nnet)
5283 ("r-quantreg" ,r-quantreg)))
5284 (home-page "https://cran.r-project.org/web/packages/abc/")
5285 (synopsis "Tools for Approximate Bayesian Computation (ABC)")
5286 (description
5287 "This package implements several @dfn{Approximate Bayesian
5288 Computation} (ABC) algorithms for performing parameter estimation, model
5289 selection, and goodness-of-fit. Cross-validation tools are also available for
5290 measuring the accuracy of ABC estimates, and to calculate the
5291 misclassification probabilities of different models.")
5292 (license license:gpl3+)))
5293
5294 (define-public r-zip
5295 (package
5296 (name "r-zip")
5297 (version "2.0.4")
5298 (source
5299 (origin
5300 (method url-fetch)
5301 (uri (cran-uri "zip" version))
5302 (sha256
5303 (base32
5304 "1c02amk3pl6xir5jnbfiwiv2wvpkpbkkb1w71y6lf2yk7g3d0pdb"))))
5305 (build-system r-build-system)
5306 (home-page "https://github.com/gaborcsardi/zip")
5307 (synopsis "Cross-platform Zip compression")
5308 (description
5309 "This package provides a cross-platform Zip compression library for R.
5310 It is a replacement for the @code{zip} function, that does not require any
5311 additional external tools on any platform.")
5312 (license license:cc0)))
5313
5314 (define-public r-openxlsx
5315 (package
5316 (name "r-openxlsx")
5317 (version "4.1.3")
5318 (source
5319 (origin
5320 (method url-fetch)
5321 (uri (cran-uri "openxlsx" version))
5322 (sha256
5323 (base32
5324 "087zivh9xdh1kk8zci67ys0m2xq0slzwgnf0jl05yy4gsgb6nmyx"))))
5325 (build-system r-build-system)
5326 (propagated-inputs
5327 `(("r-rcpp" ,r-rcpp)
5328 ("r-rlang" ,r-rlang)
5329 ("r-stringi" ,r-stringi)
5330 ("r-zip" ,r-zip)))
5331 (home-page "https://github.com/awalker89/openxlsx")
5332 (synopsis "Read, write and edit XLSX files")
5333 (description
5334 "This package simplifies the creation of Excel @code{.xlsx} files by
5335 providing a high level interface to writing, styling and editing worksheets.
5336 Through the use of Rcpp, read/write times are comparable to the @code{xlsx}
5337 and @code{XLConnect} packages with the added benefit of removing the
5338 dependency on Java.")
5339 (license license:gpl3)))
5340
5341 (define-public r-rio
5342 (package
5343 (name "r-rio")
5344 (version "0.5.16")
5345 (source
5346 (origin
5347 (method url-fetch)
5348 (uri (cran-uri "rio" version))
5349 (sha256
5350 (base32
5351 "0rfl56fdawlhc98451a9lcb6a6m56kw0i7dvd5hx58z025d8vsyk"))))
5352 (build-system r-build-system)
5353 (propagated-inputs
5354 `(("r-curl" ,r-curl)
5355 ("r-data-table" ,r-data-table)
5356 ("r-foreign" ,r-foreign)
5357 ("r-haven" ,r-haven)
5358 ("r-openxlsx" ,r-openxlsx)
5359 ("r-readxl" ,r-readxl)
5360 ("r-tibble" ,r-tibble)))
5361 (home-page "https://github.com/leeper/rio")
5362 (synopsis "Swiss-army knife for data I/O")
5363 (description
5364 "This package provides streamlined data import and export infrastructure
5365 by making assumptions that the user is probably willing to make: @code{import}
5366 and @code{export} determine the data structure from the file extension,
5367 reasonable defaults are used for data import and export (e.g.,
5368 @code{stringsAsFactors=FALSE}), web-based import is natively
5369 supported (including from SSL/HTTPS), compressed files can be read directly
5370 without explicit decompression, and fast import packages are used where
5371 appropriate. An additional convenience function, @code{convert}, provides a
5372 simple method for converting between file types.")
5373 (license license:gpl2)))
5374
5375 (define-public r-maptools
5376 (package
5377 (name "r-maptools")
5378 (version "0.9-8")
5379 (source
5380 (origin
5381 (method url-fetch)
5382 (uri (cran-uri "maptools" version))
5383 (sha256
5384 (base32
5385 "1ix3cg74w0w6cj8nwi0r9n3y5q9ljc21hm8xq6yqqngs57prvn2x"))))
5386 (build-system r-build-system)
5387 (propagated-inputs
5388 `(("r-foreign" ,r-foreign)
5389 ("r-lattice" ,r-lattice)
5390 ("r-sp" ,r-sp)))
5391 (home-page "http://r-forge.r-project.org/projects/maptools/")
5392 (synopsis "Tools for reading and handling spatial objects")
5393 (description
5394 "This package provides a set of tools for manipulating and reading
5395 geographic data, in particular ESRI Shapefiles. It includes binary access to
5396 GSHHG shoreline files. The package also provides interface wrappers for
5397 exchanging spatial objects with other R packages.")
5398 ;; The C source files from shapelib are released under the Expat license.
5399 ;; The R code is released under GPL version 2 or later.
5400 (license (list license:gpl2+
5401 license:expat))))
5402
5403 (define-public r-later
5404 (package
5405 (name "r-later")
5406 (version "1.0.0")
5407 (source
5408 (origin
5409 (method url-fetch)
5410 (uri (cran-uri "later" version))
5411 (sha256
5412 (base32
5413 "11xjavj7siz0xv2ffq1ld4bwl35jyrcfpvvs4p3ilpifxx49hyr7"))))
5414 (build-system r-build-system)
5415 (propagated-inputs
5416 `(("r-bh" ,r-bh)
5417 ("r-rcpp" ,r-rcpp)
5418 ("r-rlang" ,r-rlang)))
5419 (home-page "https://github.com/r-lib/later")
5420 (synopsis "Utilities for delaying function execution")
5421 (description
5422 "This package provides tools to execute arbitrary R or C functions some
5423 time after the current time, after the R execution stack has emptied.")
5424 (license license:gpl2+)))
5425
5426 (define-public r-promises
5427 (package
5428 (name "r-promises")
5429 (version "1.1.0")
5430 (source
5431 (origin
5432 (method url-fetch)
5433 (uri (cran-uri "promises" version))
5434 (sha256
5435 (base32
5436 "01l0ydjvvy6afcg5d6pzvk1ikd3djq8n2flv8c831ksn68z0zsn8"))))
5437 (build-system r-build-system)
5438 (propagated-inputs
5439 `(("r-later" ,r-later)
5440 ("r-magrittr" ,r-magrittr)
5441 ("r-r6" ,r-r6)
5442 ("r-rcpp" ,r-rcpp)
5443 ("r-rlang" ,r-rlang)))
5444 (home-page "https://rstudio.github.io/promises")
5445 (synopsis "Abstractions for promise-based asynchronous programming")
5446 (description
5447 "This package provides fundamental abstractions for doing asynchronous
5448 programming in R using promises. Asynchronous programming is useful for
5449 allowing a single R process to orchestrate multiple tasks in the background
5450 while also attending to something else. Semantics are similar to JavaScript
5451 promises, but with a syntax that is idiomatic R.")
5452 (license license:expat)))
5453
5454 (define-public r-dosnow
5455 (package
5456 (name "r-dosnow")
5457 (version "1.0.18")
5458 (source
5459 (origin
5460 (method url-fetch)
5461 (uri (cran-uri "doSNOW" version))
5462 (sha256
5463 (base32
5464 "0rj72z5505cprh6wykhhiz08l9bmd966srqh2qypwivf321bvrvh"))))
5465 (properties `((upstream-name . "doSNOW")))
5466 (build-system r-build-system)
5467 (propagated-inputs
5468 `(("r-foreach" ,r-foreach)
5469 ("r-iterators" ,r-iterators)
5470 ("r-snow" ,r-snow)))
5471 (home-page "https://cran.r-project.org/web/packages/doSNOW")
5472 (synopsis "Foreach parallel adaptor for the snow package")
5473 (description
5474 "This package provides a parallel backend for the @code{%dopar%} function
5475 using the @code{snow} package.")
5476 (license license:gpl2)))
5477
5478 (define-public r-snowfall
5479 (package
5480 (name "r-snowfall")
5481 (version "1.84-6.1")
5482 (source (origin
5483 (method url-fetch)
5484 (uri (cran-uri "snowfall" version))
5485 (sha256
5486 (base32 "13941rlw1jsdjsndp1plzj1cq5aqravizkrqn6l25r9im7rnsi2w"))))
5487 (build-system r-build-system)
5488 (propagated-inputs
5489 `(("r-snow" ,r-snow)))
5490 (home-page "http://cran.r-project.org/web/packages/snowfall/")
5491 (synopsis "Easier cluster computing")
5492 (description "This package is a usability wrapper around snow for easier
5493 development of parallel R programs. This package offers e.g. extended error
5494 checks, and additional functions. All functions work in sequential mode, too,
5495 if no cluster is present or wished. The package is also designed as connector
5496 to the cluster management tool @code{sfCluster}, but can also used without
5497 it.")
5498 (license license:gpl2+)))
5499
5500 (define-public r-rappdirs
5501 (package
5502 (name "r-rappdirs")
5503 (version "0.3.1")
5504 (source
5505 (origin
5506 (method url-fetch)
5507 (uri (cran-uri "rappdirs" version))
5508 (sha256
5509 (base32
5510 "0ji6sg3bdn5gazkq14xmmcq7jnbsyxw4lzmmbgv6526j2vn93n1g"))))
5511 (build-system r-build-system)
5512 (home-page "https://cran.r-project.org/web/packages/rappdirs/")
5513 (synopsis "Determine where to save data, caches, and logs")
5514 (description
5515 "This package provides an easy way to determine which directories on the
5516 user's computer should be used to save data, caches and logs. It is a port of
5517 Python's @url{https://github.com/ActiveState/appdirs,Appdirs} to R.")
5518 (license license:expat)))
5519
5520 (define-public r-renv
5521 (package
5522 (name "r-renv")
5523 (version "0.8.3")
5524 (source
5525 (origin
5526 (method url-fetch)
5527 (uri (cran-uri "renv" version))
5528 (sha256
5529 (base32
5530 "0034jlaq7z40q3hcpkjlaff37dpn46kvxvzw4scbwlw4x9q8sx9j"))))
5531 (properties `((upstream-name . "renv")))
5532 (build-system r-build-system)
5533 (home-page "https://rstudio.github.io/renv")
5534 (synopsis "Project environments")
5535 (description
5536 "This package provides a dependency management toolkit for R. Using
5537 renv, you can create and manage project-local R libraries, save the state of
5538 these libraries to a lockfile, and later restore your library as required.
5539 Together, these tools can help make your projects more isolated, portable, and
5540 reproducible.")
5541 (license license:expat)))
5542
5543 (define-public r-learnr
5544 (package
5545 (name "r-learnr")
5546 (version "0.10.0")
5547 (source
5548 (origin
5549 (method url-fetch)
5550 (uri (cran-uri "learnr" version))
5551 (sha256
5552 (base32
5553 "0278q9nbkc4nb0rp930kjrwyidf0v7y38d1s187m4f4bs7ha82k6"))))
5554 (build-system r-build-system)
5555 (propagated-inputs
5556 `(("r-checkmate" ,r-checkmate)
5557 ("r-ellipsis" ,r-ellipsis)
5558 ("r-evaluate" ,r-evaluate)
5559 ("r-htmltools" ,r-htmltools)
5560 ("r-htmlwidgets" ,r-htmlwidgets)
5561 ("r-jsonlite" ,r-jsonlite)
5562 ("r-knitr" ,r-knitr)
5563 ("r-markdown" ,r-markdown)
5564 ("r-rappdirs" ,r-rappdirs)
5565 ("r-renv" ,r-renv)
5566 ("r-rmarkdown" ,r-rmarkdown)
5567 ("r-rprojroot" ,r-rprojroot)
5568 ("r-shiny" ,r-shiny)
5569 ("r-withr" ,r-withr)))
5570 (home-page "https://rstudio.github.io/learnr/")
5571 (synopsis "Interactive tutorials for R")
5572 (description
5573 "This package provides tools to create interactive tutorials using R
5574 Markdown. Use a combination of narrative, figures, videos, exercises, and
5575 quizzes to create self-paced tutorials for learning about R and R packages.")
5576 (license license:asl2.0)))
5577
5578 (define-public r-analytics
5579 (package
5580 (name "r-analytics")
5581 (version "3.0")
5582 (source
5583 (origin
5584 (method url-fetch)
5585 (uri (cran-uri "analytics" version))
5586 (sha256
5587 (base32
5588 "0js3c8lwj3knccb55nq03cbjlf4w390p9aid2mi5x80l3ayd9in1"))))
5589 (build-system r-build-system)
5590 (propagated-inputs
5591 `(("r-car" ,r-car)
5592 ("r-cluster" ,r-cluster)
5593 ("r-fractal" ,r-fractal)
5594 ("r-lmtest" ,r-lmtest)
5595 ("r-mass" ,r-mass)
5596 ("r-np" ,r-np)
5597 ("r-powerplus" ,r-powerplus)
5598 ("r-robust" ,r-robust)
5599 ("r-trend" ,r-trend)
5600 ("r-tsa" ,r-tsa)
5601 ("r-urca" ,r-urca)
5602 ("r-vim" ,r-vim)))
5603 (home-page "https://cran.r-project.org/web/packages/analytics/")
5604 (synopsis "Collection of data analysis tools")
5605 (description
5606 "This package is a collection of data analysis tools. It includes tools
5607 for regression outlier detection in a fitted linear model, stationary
5608 bootstrap using a truncated geometric distribution, a comprehensive test for
5609 weak stationarity, column means by group, weighted biplots, and a heuristic to
5610 obtain a better initial configuration in non-metric MDS.")
5611 (license license:gpl2)))
5612
5613 (define-public r-reticulate
5614 (package
5615 (name "r-reticulate")
5616 (version "1.13")
5617 (source
5618 (origin
5619 (method url-fetch)
5620 (uri (cran-uri "reticulate" version))
5621 (sha256
5622 (base32
5623 "1qwxh7zq9igl7dxl5g5qjbvv0mlac3w80djnkm0w8rxnaval3gmd"))))
5624 (build-system r-build-system)
5625 (inputs `(("python" ,python)))
5626 (propagated-inputs
5627 `(("r-jsonlite" ,r-jsonlite)
5628 ("r-matrix" ,r-matrix)
5629 ("r-rcpp" ,r-rcpp)))
5630 (home-page "https://github.com/rstudio/reticulate")
5631 (synopsis "R interface to Python")
5632 (description
5633 "This package provides an interface from R to Python modules, classes,
5634 and functions. When calling into Python, R data types are automatically
5635 converted to their equivalent Python types. When values are returned from
5636 Python to R they are converted back to R types.")
5637 (license license:asl2.0)))
5638
5639 (define-public r-bibtex
5640 (package
5641 (name "r-bibtex")
5642 (version "0.4.2")
5643 (source
5644 (origin
5645 (method url-fetch)
5646 (uri (cran-uri "bibtex" version))
5647 (sha256
5648 (base32
5649 "0wl3925ryd54g1nv3ncwllc493d39dpgy5md61940h69c0van1hz"))))
5650 (build-system r-build-system)
5651 (propagated-inputs `(("r-stringr" ,r-stringr)))
5652 (home-page "https://github.com/romainfrancois/bibtex")
5653 (synopsis "Bibtex parser")
5654 (description "This package provides a utility for R to parse a bibtex
5655 file.")
5656 (license license:gpl2+)))
5657
5658 (define-public r-ggseqlogo
5659 (package
5660 (name "r-ggseqlogo")
5661 (version "0.1")
5662 (source
5663 (origin
5664 (method url-fetch)
5665 (uri (cran-uri "ggseqlogo" version))
5666 (sha256
5667 (base32
5668 "13q6kcpxrqxqbji889fx63p0nsi08lk5yymkchig75r5k1d18ky1"))))
5669 (build-system r-build-system)
5670 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
5671 (home-page "https://github.com/omarwagih/ggseqlogo")
5672 (synopsis "ggplot2 extension for drawing genetic sequence logos")
5673 (description
5674 "The range of functions provided by this package makes it possible to
5675 draw highly versatile genomic sequence logos. Features include, but are not
5676 limited to, modifying colour schemes and fonts used to draw the logo,
5677 generating multiple logo plots, and aiding the visualisation with annotations.
5678 Sequence logos can easily be combined with other ggplot2 plots.")
5679 ;; Unspecified version of the LGPL.
5680 (license license:lgpl3+)))
5681
5682 (define-public r-ggsci
5683 (package
5684 (name "r-ggsci")
5685 (version "2.9")
5686 (source
5687 (origin
5688 (method url-fetch)
5689 (uri (cran-uri "ggsci" version))
5690 (sha256
5691 (base32
5692 "0g73x6grbka7ahjh6z23m3wrcifp5rdfdiasbl8lq4sp6rplxwaa"))))
5693 (build-system r-build-system)
5694 (propagated-inputs
5695 `(("r-ggplot2" ,r-ggplot2)
5696 ("r-scales" ,r-scales)))
5697 (home-page "https://nanx.me/ggsci/")
5698 (synopsis "Scientific journal and sci-fi themed color palettes for ggplot2")
5699 (description
5700 "This package provides a collection of ggplot2 color palettes inspired by
5701 plots in scientific journals, data visualization libraries, science fiction
5702 movies, and TV shows.")
5703 (license license:gpl3)))
5704
5705 (define-public r-ggsignif
5706 (package
5707 (name "r-ggsignif")
5708 (version "0.6.0")
5709 (source
5710 (origin
5711 (method url-fetch)
5712 (uri (cran-uri "ggsignif" version))
5713 (sha256
5714 (base32
5715 "17j9hg967k1wp9xw3x84mqss58jkb8pvlrnlchz4i1hklgykxqbg"))))
5716 (build-system r-build-system)
5717 (propagated-inputs
5718 `(("r-ggplot2" ,r-ggplot2)))
5719 (home-page "https://github.com/const-ae/ggsignif")
5720 (synopsis "Significance brackets for ggplot2")
5721 (description
5722 "Enrich your ggplots with group-wise comparisons. This package provides
5723 an easy way to indicate if two groups are significantly different. Commonly
5724 this is shown by a bracket on top connecting the groups of interest which
5725 itself is annotated with the level of significance. The package provides a
5726 single layer that takes the groups for comparison and the test as arguments
5727 and adds the annotation to the plot.")
5728 (license license:gpl3)))
5729
5730 (define-public r-ggpubr
5731 (package
5732 (name "r-ggpubr")
5733 (version "0.2.4")
5734 (source
5735 (origin
5736 (method url-fetch)
5737 (uri (cran-uri "ggpubr" version))
5738 (sha256
5739 (base32
5740 "0ln1gh3zlfx5s7zqcpvfdiksq74v1pma5kwkhc6r0riqnjjd19pf"))))
5741 (build-system r-build-system)
5742 (propagated-inputs
5743 `(("r-cowplot" ,r-cowplot)
5744 ("r-dplyr" ,r-dplyr)
5745 ("r-ggplot2" ,r-ggplot2)
5746 ("r-ggrepel" ,r-ggrepel)
5747 ("r-ggsci" ,r-ggsci)
5748 ("r-ggsignif" ,r-ggsignif)
5749 ("r-glue" ,r-glue)
5750 ("r-gridextra" ,r-gridextra)
5751 ("r-magrittr" ,r-magrittr)
5752 ("r-polynom" ,r-polynom)
5753 ("r-purrr" ,r-purrr)
5754 ("r-rlang" ,r-rlang)
5755 ("r-scales" ,r-scales)
5756 ("r-tidyr" ,r-tidyr)))
5757 (home-page "http://www.sthda.com/english/rpkgs/ggpubr")
5758 (synopsis "ggplot2-based publication-ready plots")
5759 (description
5760 "The ggplot2 package is an excellent and flexible package for elegant
5761 data visualization in R. However the default generated plots require some
5762 formatting before we can send them for publication. The ggpubr package
5763 provides some easy-to-use functions for creating and customizing ggplot2-based
5764 publication-ready plots.")
5765 (license license:gpl2)))
5766
5767 (define-public r-ellipse
5768 (package
5769 (name "r-ellipse")
5770 (version "0.4.1")
5771 (source
5772 (origin
5773 (method url-fetch)
5774 (uri (cran-uri "ellipse" version))
5775 (sha256
5776 (base32
5777 "0g82vc51m3c1k0hnpp2zla6amxxgk2mmkl8ssnsc49jv3599r6hs"))))
5778 (build-system r-build-system)
5779 (home-page "https://cran.r-project.org/web/packages/ellipse/")
5780 (synopsis "Functions for drawing ellipses and ellipse-like confidence regions")
5781 (description
5782 "This package contains various routines for drawing ellipses and
5783 ellipse-like confidence regions, implementing the plots described in Murdoch
5784 and Chow (1996), A graphical display of large correlation matrices, The
5785 American Statistician 50, 178-180. There are also routines implementing the
5786 profile plots described in Bates and Watts (1988), Nonlinear Regression
5787 Analysis and its Applications.")
5788 (license license:gpl2+)))
5789
5790 (define-public r-flashclust
5791 (package
5792 (name "r-flashclust")
5793 (version "1.01-2")
5794 (source
5795 (origin
5796 (method url-fetch)
5797 (uri (cran-uri "flashClust" version))
5798 (sha256
5799 (base32
5800 "0l4lpz451ll7f7lfxmb7ds24ppzhfg1c3ypvydglcc35p2dq99s8"))))
5801 (properties `((upstream-name . "flashClust")))
5802 (build-system r-build-system)
5803 (native-inputs `(("gfortran" ,gfortran)))
5804 (home-page "https://cran.r-project.org/web/packages/flashClust/")
5805 (synopsis "Implementation of optimal hierarchical clustering")
5806 (description
5807 "This package provides a fast implementation of hierarchical
5808 clustering.")
5809 (license license:gpl2+)))
5810
5811 (define-public r-factominer
5812 (package
5813 (name "r-factominer")
5814 (version "1.42")
5815 (source
5816 (origin
5817 (method url-fetch)
5818 (uri (cran-uri "FactoMineR" version))
5819 (sha256
5820 (base32
5821 "1yl16inb2m89l1czgaf0pgy9655dpr751hyx92yw6rqpd2ryznac"))))
5822 (properties `((upstream-name . "FactoMineR")))
5823 (build-system r-build-system)
5824 (propagated-inputs
5825 `(("r-car" ,r-car)
5826 ("r-cluster" ,r-cluster)
5827 ("r-ellipse" ,r-ellipse)
5828 ("r-flashclust" ,r-flashclust)
5829 ("r-lattice" ,r-lattice)
5830 ("r-leaps" ,r-leaps)
5831 ("r-mass" ,r-mass)
5832 ("r-scatterplot3d" ,r-scatterplot3d)))
5833 (home-page "http://factominer.free.fr")
5834 (synopsis "Multivariate exploratory data analysis and data mining")
5835 (description
5836 "This package provides exploratory data analysis methods to summarize,
5837 visualize and describe datasets. The main principal component methods are
5838 available, those with the largest potential in terms of applications:
5839 principal component analysis (PCA) when variables are quantitative,
5840 correspondence analysis (CA) and multiple correspondence analysis (MCA) when
5841 variables are categorical, Multiple Factor Analysis when variables are
5842 structured in groups, etc. and hierarchical cluster analysis.")
5843 (license license:gpl2+)))
5844
5845 (define-public r-factoextra
5846 (package
5847 (name "r-factoextra")
5848 (version "1.0.5")
5849 (source
5850 (origin
5851 (method url-fetch)
5852 (uri (cran-uri "factoextra" version))
5853 (sha256
5854 (base32
5855 "1l6m8k7qhdw8ndar8nhmym0lfyd1i2iszl1cicjax0vq23ss6xw1"))))
5856 (build-system r-build-system)
5857 (propagated-inputs
5858 `(("r-abind" ,r-abind)
5859 ("r-cluster" ,r-cluster)
5860 ("r-dendextend" ,r-dendextend)
5861 ("r-factominer" ,r-factominer)
5862 ("r-ggplot2" ,r-ggplot2)
5863 ("r-ggpubr" ,r-ggpubr)
5864 ("r-ggrepel" ,r-ggrepel)
5865 ("r-reshape2" ,r-reshape2)
5866 ("r-tidyr" ,r-tidyr)))
5867 (home-page "http://www.sthda.com/english/rpkgs/factoextra")
5868 (synopsis "Extract and visualize the results of multivariate data analyses")
5869 (description
5870 "This package provides some easy-to-use functions to extract and
5871 visualize the output of multivariate data analyses, including
5872 @code{PCA} (Principal Component Analysis), @code{CA} (Correspondence
5873 Analysis), @code{MCA} (Multiple Correspondence Analysis), @code{FAMD} (Factor
5874 Analysis of Mixed Data), @code{MFA} (Multiple Factor Analysis) and
5875 @code{HMFA} (Hierarchical Multiple Factor Analysis) functions from different R
5876 packages. It contains also functions for simplifying some clustering analysis
5877 steps and provides ggplot2-based elegant data visualization.")
5878 (license license:gpl2)))
5879
5880 (define-public r-fansi
5881 (package
5882 (name "r-fansi")
5883 (version "0.4.0")
5884 (source
5885 (origin
5886 (method url-fetch)
5887 (uri (cran-uri "fansi" version))
5888 (sha256
5889 (base32
5890 "02f2rx7v7wz6w97m2slwky2i5y8f9iafycmkyr3siy3z3k8fj171"))))
5891 (build-system r-build-system)
5892 (native-inputs
5893 `(("r-knitr" ,r-knitr))) ; for vignettes
5894 (home-page "https://github.com/brodieG/fansi")
5895 (synopsis "ANSI control sequence aware string functions")
5896 (description
5897 "This package provides counterparts to R string manipulation functions
5898 that account for the effects of ANSI text formatting control sequences.")
5899 (license license:gpl2+)))
5900
5901 (define-public r-nbclust
5902 (package
5903 (name "r-nbclust")
5904 (version "3.0")
5905 (source
5906 (origin
5907 (method url-fetch)
5908 (uri (cran-uri "NbClust" version))
5909 (sha256
5910 (base32
5911 "1vwb48zy6ln1ddpqmfngii1i80n8qmqyxnzdp6gbaq96lakl3w3c"))))
5912 (properties `((upstream-name . "NbClust")))
5913 (build-system r-build-system)
5914 (home-page "https://sites.google.com/site/malikacharrad/research/nbclust-package")
5915 (synopsis "Determine the best number of clusters in a data set")
5916 (description
5917 "NbClust provides 30 indexes for determining the optimal number of
5918 clusters in a data set and offers the best clustering scheme from different
5919 results to the user.")
5920 (license license:gpl2)))
5921
5922 (define-public r-hdf5r
5923 (package
5924 (name "r-hdf5r")
5925 (version "1.3.0")
5926 (source
5927 (origin
5928 (method url-fetch)
5929 (uri (cran-uri "hdf5r" version))
5930 (sha256
5931 (base32
5932 "1pq12vkfqxvcaznwaxvjdg3acimk5a20m8h18sixvxc34vnqxw8f"))))
5933 (build-system r-build-system)
5934 (inputs
5935 `(("hdf5" ,hdf5)
5936 ("zlib" ,zlib)))
5937 (propagated-inputs
5938 `(("r-bit64" ,r-bit64)
5939 ("r-r6" ,r-r6)))
5940 (home-page "https://hhoeflin.github.io/hdf5r")
5941 (synopsis "Interface to the HDF5 binary data format")
5942 (description
5943 "HDF5 is a data model, library and file format for storing and managing
5944 large amounts of data. This package provides a nearly feature complete,
5945 object oriented wrapper for the HDF5 API using R6 classes. Additionally,
5946 functionality is added so that HDF5 objects behave very similar to their
5947 corresponding R counterparts.")
5948 (license license:asl2.0)))
5949
5950 (define-public r-itertools
5951 (package
5952 (name "r-itertools")
5953 (version "0.1-3")
5954 (source
5955 (origin
5956 (method url-fetch)
5957 (uri (cran-uri "itertools" version))
5958 (sha256
5959 (base32
5960 "1ls5biiva10pb1dj3ph4griykb9vam02hkrdmlr5a5wf660hg6xn"))))
5961 (build-system r-build-system)
5962 (propagated-inputs
5963 `(("r-iterators" ,r-iterators)))
5964 (home-page "https://cran.r-project.org/web/packages/itertools/")
5965 (synopsis "Iterator tools")
5966 (description
5967 "This package provides various tools for creating iterators, many
5968 patterned after functions in the Python @code{itertools} module, and others
5969 patterned after functions in the snow package.")
5970 (license license:gpl2)))
5971
5972 (define-public r-polynom
5973 (package
5974 (name "r-polynom")
5975 (version "1.4-0")
5976 (source
5977 (origin
5978 (method url-fetch)
5979 (uri (cran-uri "polynom" version))
5980 (sha256
5981 (base32
5982 "1pflscwc0qzdf0y60j7s0dkglgmz18xajywfbn6s263idyr8idy5"))))
5983 (build-system r-build-system)
5984 (home-page "https://cran.r-project.org/web/packages/polynom/")
5985 (synopsis "Functions for univariate polynomial manipulations")
5986 (description
5987 "This package provides a collection of functions to implement a class for
5988 univariate polynomial manipulations.")
5989 (license license:gpl2)))
5990
5991 (define-public r-gbrd
5992 (package
5993 (name "r-gbrd")
5994 (version "0.4-11")
5995 (source
5996 (origin
5997 (method url-fetch)
5998 (uri (cran-uri "gbRd" version))
5999 (sha256
6000 (base32
6001 "06x97rw5i6v6cgjxkfhxnw4dn7lghn5q6ra7ri5ag1x9dkfzcl82"))))
6002 (properties `((upstream-name . "gbRd")))
6003 (build-system r-build-system)
6004 (home-page "https://cran.r-project.org/web/packages/gbRd/")
6005 (synopsis "Utilities for processing Rd objects and files")
6006 (description
6007 "This package provides utilities for processing Rd objects and files.
6008 Extract argument descriptions and other parts of the help pages of
6009 functions.")
6010 (license license:gpl2+)))
6011
6012 (define-public r-rjags
6013 (package
6014 (name "r-rjags")
6015 (version "4-10")
6016 (source
6017 (origin
6018 (method url-fetch)
6019 (uri (cran-uri "rjags" version))
6020 (sha256
6021 (base32
6022 "1nhaim84ww8fd6m8xlpmngqcnp2qpql29ahc38366fxja3ghngmx"))))
6023 (build-system r-build-system)
6024 (propagated-inputs
6025 `(("r-coda" ,r-coda)))
6026 (inputs
6027 `(("jags" ,jags)))
6028 (native-inputs
6029 `(("pkg-config" ,pkg-config)))
6030 (home-page "http://mcmc-jags.sourceforge.net")
6031 (synopsis "Bayesian graphical models using MCMC")
6032 (description
6033 "This package provides an R interface to the JAGS MCMC library. JAGS is
6034 Just Another Gibbs Sampler. It is a program for analysis of Bayesian
6035 hierarchical models using Markov Chain Monte Carlo (MCMC) simulation.")
6036 (license license:gpl2)))
6037
6038 (define-public r-rdpack
6039 (package
6040 (name "r-rdpack")
6041 (version "0.11-0")
6042 (source
6043 (origin
6044 (method url-fetch)
6045 (uri (cran-uri "Rdpack" version))
6046 (sha256
6047 (base32
6048 "11cd27s6zp5cxnwxcvz6rjf00y0r7aq8ywhzwpf1r4xy1z44kd4g"))))
6049 (properties `((upstream-name . "Rdpack")))
6050 (build-system r-build-system)
6051 (propagated-inputs
6052 `(("r-bibtex" ,r-bibtex)
6053 ("r-gbrd" ,r-gbrd)))
6054 (home-page "https://github.com/GeoBosh/Rdpack")
6055 (synopsis "Update and manipulate Rd documentation objects")
6056 (description
6057 "This package provides functions for manipulation of R documentation
6058 objects, including functions @code{reprompt()} and @code{ereprompt()} for
6059 updating Rd documentation for functions, methods and classes; it also includes
6060 Rd macros for citations and import of references from bibtex files for use in
6061 Rd files and roxygen2 comments, as well as many functions for manipulation of
6062 references and Rd files.")
6063 (license license:gpl2+)))
6064
6065 (define-public r-officer
6066 (package
6067 (name "r-officer")
6068 (version "0.3.6")
6069 (source
6070 (origin
6071 (method url-fetch)
6072 (uri (cran-uri "officer" version))
6073 (sha256
6074 (base32
6075 "1i6jmnbkx7gd0qyf6akhizmxp7y1dh3h7a886mcbmrzka9d60zh4"))))
6076 (build-system r-build-system)
6077 (propagated-inputs
6078 `(("r-base64enc" ,r-base64enc)
6079 ("r-digest" ,r-digest)
6080 ("r-htmltools" ,r-htmltools)
6081 ("r-magrittr" ,r-magrittr)
6082 ("r-r6" ,r-r6)
6083 ("r-rcpp" ,r-rcpp)
6084 ("r-rlang" ,r-rlang)
6085 ("r-uuid" ,r-uuid)
6086 ("r-xml2" ,r-xml2)
6087 ("r-zip" ,r-zip)))
6088 (home-page "https://davidgohel.github.io/officer")
6089 (synopsis "Manipulation of Word and PowerPoint documents")
6090 (description
6091 "This package provides tools to access and manipulate Word and PowerPoint
6092 documents from R. The package focuses on tabular and graphical reporting from
6093 R; it also provides two functions that let users get document content into
6094 data objects. A set of functions lets add and remove images, tables and
6095 paragraphs of text in new or existing documents. When working with PowerPoint
6096 presentations, slides can be added or removed; shapes inside slides can also
6097 be added or removed. When working with Word documents, a cursor can be used
6098 to help insert or delete content at a specific location in the document.")
6099 (license license:gpl3)))
6100
6101 (define-public r-abn
6102 (package
6103 (name "r-abn")
6104 (version "2.2")
6105 (source
6106 (origin
6107 (method url-fetch)
6108 (uri (cran-uri "abn" version))
6109 (sha256
6110 (base32
6111 "19w6bdjyp4zwqs6p0flry4qxqynf9rh8ykdrfrp61wrdf7kysw0d"))))
6112 (build-system r-build-system)
6113 (inputs
6114 `(("gsl" ,gsl)))
6115 (propagated-inputs
6116 `(("r-lme4" ,r-lme4)
6117 ("r-mass" ,r-mass)
6118 ("r-nnet" ,r-nnet)
6119 ("r-rcpp" ,r-rcpp)
6120 ("r-rcpparmadillo" ,r-rcpparmadillo)
6121 ("r-rjags" ,r-rjags)))
6122 (home-page "http://www.r-bayesian-networks.org")
6123 (synopsis "Modelling multivariate data with additive bayesian networks")
6124 (description
6125 "Bayesian network analysis is a form of probabilistic graphical models
6126 which derives from empirical data a directed acyclic graph, DAG, describing
6127 the dependency structure between random variables. An additive Bayesian
6128 network model consists of a form of a DAG where each node comprises a
6129 @dfn{generalized linear model} (GLM). Additive Bayesian network models are
6130 equivalent to Bayesian multivariate regression using graphical modelling, they
6131 generalises the usual multivariable regression, GLM, to multiple dependent
6132 variables. This package provides routines to help determine optimal Bayesian
6133 network models for a given data set, where these models are used to identify
6134 statistical dependencies in messy, complex data.")
6135 (license license:gpl2+)))
6136
6137 (define-public r-acd
6138 (package
6139 (name "r-acd")
6140 (version "1.5.3")
6141 (source
6142 (origin
6143 (method url-fetch)
6144 (uri (cran-uri "ACD" version))
6145 (sha256
6146 (base32
6147 "1a67bi3hklq8nlc50r0qnyr4k7m9kpvijy8sqqpm54by5hsysfd6"))))
6148 (properties `((upstream-name . "ACD")))
6149 (build-system r-build-system)
6150 (home-page "https://cran.r-project.org/web/packages/ACD/")
6151 (synopsis "Categorical data analysis with complete or missing responses")
6152 (description
6153 "This package provides tools for categorical data analysis with complete
6154 or missing responses.")
6155 (license license:gpl2+)))
6156
6157 (define-public r-acdm
6158 (package
6159 (name "r-acdm")
6160 (version "1.0.4")
6161 (source
6162 (origin
6163 (method url-fetch)
6164 (uri (cran-uri "ACDm" version))
6165 (sha256
6166 (base32
6167 "0b4f02ga5ra66mbrm79g0bnlzmii82rks9kmxixxqgf18yhlyjil"))))
6168 (properties `((upstream-name . "ACDm")))
6169 (build-system r-build-system)
6170 (propagated-inputs
6171 `(("r-dplyr" ,r-dplyr)
6172 ("r-ggplot2" ,r-ggplot2)
6173 ("r-plyr" ,r-plyr)
6174 ("r-rsolnp" ,r-rsolnp)
6175 ("r-zoo" ,r-zoo)))
6176 (home-page "https://cran.r-project.org/web/packages/ACDm/")
6177 (synopsis "Tools for Autoregressive Conditional Duration Models")
6178 (description
6179 "ACDm is a package for Autoregressive Conditional Duration (ACD, Engle
6180 and Russell, 1998) models. It creates trade, price or volume durations from
6181 transactions (tic) data, performs diurnal adjustments, fits various ACD models
6182 and tests them.")
6183 (license license:gpl2+)))
6184
6185 (define-public r-overlap
6186 (package
6187 (name "r-overlap")
6188 (version "0.3.2")
6189 (source
6190 (origin
6191 (method url-fetch)
6192 (uri (cran-uri "overlap" version))
6193 (sha256
6194 (base32
6195 "1j3m6ir1chdz0si2fhcw6gs7c9h09bv0chz18rpzxsywww6d4rzy"))))
6196 (build-system r-build-system)
6197 (home-page "https://cran.r-project.org/web/packages/overlap/")
6198 (synopsis "Estimates of coefficient of overlapping for animal activity patterns")
6199 (description
6200 "This package provides functions to fit kernel density functions to data
6201 on temporal activity patterns of animals; estimate coefficients of overlapping
6202 of densities for two species; and calculate bootstrap estimates of confidence
6203 intervals.")
6204 (license license:gpl3+)))
6205
6206 (define-public r-snakecase
6207 (package
6208 (name "r-snakecase")
6209 (version "0.11.0")
6210 (source
6211 (origin
6212 (method url-fetch)
6213 (uri (cran-uri "snakecase" version))
6214 (sha256
6215 (base32
6216 "1ky1x2cp5rd0ffd9m1fji9sq4z4jsrpxzg30brw8bb4ihfjj114r"))))
6217 (build-system r-build-system)
6218 (propagated-inputs
6219 `(("r-stringi" ,r-stringi)
6220 ("r-stringr" ,r-stringr)))
6221 (home-page "https://github.com/Tazinho/snakecase")
6222 (synopsis "Convert strings into any case")
6223 (description
6224 "This package provides a consistent, flexible and easy to use tool to
6225 parse and convert strings into cases like snake or camel among others.")
6226 (license license:gpl3)))
6227
6228 (define-public r-prediction
6229 (package
6230 (name "r-prediction")
6231 (version "0.3.14")
6232 (source
6233 (origin
6234 (method url-fetch)
6235 (uri (cran-uri "prediction" version))
6236 (sha256
6237 (base32
6238 "0awlq5lxfia6m2b91w73rksp93rbwv5gwqb36wbji4rgq41rzbrx"))))
6239 (build-system r-build-system)
6240 (propagated-inputs
6241 `(("r-data-table" ,r-data-table)))
6242 (home-page "https://github.com/leeper/prediction")
6243 (synopsis "Tidy, type-safe prediction methods")
6244 (description
6245 "This package provides the @code{prediction()} function, a type-safe
6246 alternative to @code{predict()} that always returns a data frame. The package
6247 currently supports common model types (e.g., @code{\"lm\"}, @code{\"glm\"})
6248 from the @code{stats} package, as well as numerous other model classes from
6249 other add-on packages.")
6250 (license license:expat)))
6251
6252 (define-public r-insight
6253 (package
6254 (name "r-insight")
6255 (version "0.7.0")
6256 (source
6257 (origin
6258 (method url-fetch)
6259 (uri (cran-uri "insight" version))
6260 (sha256
6261 (base32
6262 "1alxc483r3d1ydp983m2872mxd4nj3j25qv47zzgj10nbi4y32sq"))))
6263 (build-system r-build-system)
6264 (home-page "https://easystats.github.io/insight/")
6265 (synopsis "Easy access to model information for various model objects")
6266 (description
6267 "This package provides a tool to provide an easy, intuitive and
6268 consistent access to information contained in various R models, like model
6269 formulas, model terms, information about random effects, data that was used to
6270 fit the model or data from response variables. The package mainly revolves
6271 around two types of functions: Functions that find (the names of) information,
6272 starting with @code{find_}, and functions that get the underlying data,
6273 starting with @code{get_}. The package has a consistent syntax and works with
6274 many different model objects, where otherwise functions to access these
6275 information are missing.")
6276 (license license:gpl3)))
6277
6278 (define-public r-sjlabelled
6279 (package
6280 (name "r-sjlabelled")
6281 (version "1.1.1")
6282 (source
6283 (origin
6284 (method url-fetch)
6285 (uri (cran-uri "sjlabelled" version))
6286 (sha256
6287 (base32
6288 "0c9wy0gsr2sbkrv2638xbi7qm0gl6jyr6sfricavhkm7l4hljjkz"))))
6289 (build-system r-build-system)
6290 (propagated-inputs
6291 `(("r-haven" ,r-haven)
6292 ("r-insight" ,r-insight)
6293 ("r-magrittr" ,r-magrittr)
6294 ("r-purrr" ,r-purrr)
6295 ("r-rlang" ,r-rlang)
6296 ("r-tidyselect" ,r-tidyselect)))
6297 (home-page "https://github.com/strengejacke/sjlabelled")
6298 (synopsis "Labelled data utility functions")
6299 (description
6300 "This package provides a collection of functions dealing with labelled
6301 data, like reading and writing data between R and other statistical software
6302 packages. This includes easy ways to get, set or change value and variable
6303 label attributes, to convert labelled vectors into factors or numeric (and
6304 vice versa), or to deal with multiple declared missing values.")
6305 (license license:gpl3)))
6306
6307 (define-public r-sjmisc
6308 (package
6309 (name "r-sjmisc")
6310 (version "2.8.2")
6311 (source
6312 (origin
6313 (method url-fetch)
6314 (uri (cran-uri "sjmisc" version))
6315 (sha256
6316 (base32
6317 "0rl0bmk91wc4dxdgy008fl0dwkx3ffvys30vgpnr78lb4pk45nb2"))))
6318 (build-system r-build-system)
6319 (propagated-inputs
6320 `(("r-dplyr" ,r-dplyr)
6321 ("r-insight" ,r-insight)
6322 ("r-magrittr" ,r-magrittr)
6323 ("r-purrr" ,r-purrr)
6324 ("r-rlang" ,r-rlang)
6325 ("r-sjlabelled" ,r-sjlabelled)
6326 ("r-tidyselect" ,r-tidyselect)))
6327 (home-page "https://github.com/strengejacke/sjmisc")
6328 (synopsis "Data and variable transformation functions")
6329 (description
6330 "This package is a collection of miscellaneous utility functions,
6331 supporting data transformation tasks like recoding, dichotomizing or grouping
6332 variables, setting and replacing missing values. The data transformation
6333 functions also support labelled data, and all integrate seamlessly into a
6334 tidyverse workflow.")
6335 (license license:gpl3)))
6336
6337 (define-public r-nortest
6338 (package
6339 (name "r-nortest")
6340 (version "1.0-4")
6341 (source
6342 (origin
6343 (method url-fetch)
6344 (uri (cran-uri "nortest" version))
6345 (sha256
6346 (base32
6347 "17r0wpz72z9312c70nwi1i1kp1v9fm1h6jg7q5cx1mc1h420m1d3"))))
6348 (build-system r-build-system)
6349 (home-page "https://cran.r-project.org/web/packages/nortest/")
6350 (synopsis "Tests for normality")
6351 (description
6352 "This package provides five omnibus tests for testing the composite
6353 hypothesis of normality.")
6354 (license license:gpl2+)))
6355
6356 (define-public r-moonbook
6357 (package
6358 (name "r-moonbook")
6359 (version "0.2.3")
6360 (source
6361 (origin
6362 (method url-fetch)
6363 (uri (cran-uri "moonBook" version))
6364 (sha256
6365 (base32
6366 "0hys56mwbm776ff7dibi8wzyf69qiais9rs1jazv79lk6h56s9s6"))))
6367 (properties `((upstream-name . "moonBook")))
6368 (build-system r-build-system)
6369 (propagated-inputs
6370 `(("r-magrittr" ,r-magrittr)
6371 ("r-nortest" ,r-nortest)
6372 ("r-purrr" ,r-purrr)
6373 ("r-sjmisc" ,r-sjmisc)
6374 ("r-stringr" ,r-stringr)
6375 ("r-survival" ,r-survival)))
6376 (home-page "https://github.com/cardiomoon/moonBook")
6377 (synopsis "Functions and datasets for the book by Keon-Woong Moon")
6378 (description
6379 "This package provides several analysis-related functions for the book
6380 entitled \"R statistics and graph for medical articles\" (written in Korean),
6381 version 1, by Keon-Woong Moon with Korean demographic data with several plot
6382 functions.")
6383 (license license:gpl2)))
6384
6385 (define-public r-flextable
6386 (package
6387 (name "r-flextable")
6388 (version "0.5.6")
6389 (source
6390 (origin
6391 (method url-fetch)
6392 (uri (cran-uri "flextable" version))
6393 (sha256
6394 (base32
6395 "1f869f2dfqkzhf6yix7xcbs8rn1nwq3sg623h74zg6h1pl6px66w"))))
6396 (build-system r-build-system)
6397 (propagated-inputs
6398 `(("r-base64enc" ,r-base64enc)
6399 ("r-data-table" ,r-data-table)
6400 ("r-gdtools" ,r-gdtools)
6401 ("r-htmltools" ,r-htmltools)
6402 ("r-knitr" ,r-knitr)
6403 ("r-officer" ,r-officer)
6404 ("r-rlang" ,r-rlang)
6405 ("r-rmarkdown" ,r-rmarkdown)
6406 ("r-xml2" ,r-xml2)))
6407 (home-page "https://davidgohel.github.io/flextable")
6408 (synopsis "Functions for tabular reporting")
6409 (description
6410 "This package provides tools to create pretty tables for HTML documents
6411 and other formats. Functions are provided to let users create tables, modify
6412 and format their content. It extends the @code{officer} package and can be
6413 used within R markdown documents when rendering to HTML and to Word
6414 documents.")
6415 (license license:gpl3)))
6416
6417 (define-public r-writexl
6418 (package
6419 (name "r-writexl")
6420 (version "1.1")
6421 (source
6422 (origin
6423 (method url-fetch)
6424 (uri (cran-uri "writexl" version))
6425 (sha256
6426 (base32
6427 "0w4wnpl3yhaqp63p32bk60xrbmd7xd11kxifjbzrghi7d4483a46"))))
6428 (build-system r-build-system)
6429 (inputs `(("zlib" ,zlib)))
6430 (home-page "https://github.com/ropensci/writexl")
6431 (synopsis "Export data frames to xlsx format")
6432 (description
6433 "This package provides a data frame to xlsx exporter based on
6434 libxlsxwriter.")
6435 (license license:bsd-2)))
6436
6437 (define-public r-biasedurn
6438 (package
6439 (name "r-biasedurn")
6440 (version "1.07")
6441 (source
6442 (origin
6443 (method url-fetch)
6444 (uri (cran-uri "BiasedUrn" version))
6445 (sha256
6446 (base32
6447 "13i2lgfnjhlbbm2yxfc2l5hswqw6x03pwba5csjmirv8kpjw4xr3"))))
6448 (properties `((upstream-name . "BiasedUrn")))
6449 (build-system r-build-system)
6450 (home-page "https://cran.r-project.org/web/packages/BiasedUrn/")
6451 (synopsis "Biased Urn model distributions")
6452 (description
6453 "This package provides statistical models of biased sampling in the form
6454 of univariate and multivariate noncentral hypergeometric distributions,
6455 including Wallenius' noncentral hypergeometric distribution and Fisher's
6456 noncentral hypergeometric distribution (also called extended hypergeometric
6457 distribution).")
6458 (license license:gpl3)))
6459
6460 (define-public r-goplot
6461 (package
6462 (name "r-goplot")
6463 (version "1.0.2")
6464 (source
6465 (origin
6466 (method url-fetch)
6467 (uri (cran-uri "GOplot" version))
6468 (sha256
6469 (base32
6470 "1y8dv0kbzpr9za91njw0x233vx5d13vqml9hmpddcyi9s6va5nix"))))
6471 (properties `((upstream-name . "GOplot")))
6472 (build-system r-build-system)
6473 (propagated-inputs
6474 `(("r-ggdendro" ,r-ggdendro)
6475 ("r-ggplot2" ,r-ggplot2)
6476 ("r-gridextra" ,r-gridextra)
6477 ("r-rcolorbrewer" ,r-rcolorbrewer)))
6478 (home-page "https://github.com/wencke/wencke.github.io")
6479 (synopsis "Visualization of functional analysis data")
6480 (description
6481 "This package provides an implementation of multilayered visualizations
6482 for enhanced graphical representation of functional analysis data. It
6483 combines and integrates omics data derived from expression and functional
6484 annotation enrichment analyses. Its plotting functions have been developed
6485 with an hierarchical structure in mind: starting from a general overview to
6486 identify the most enriched categories (modified bar plot, bubble plot) to a
6487 more detailed one displaying different types of relevant information for the
6488 molecules in a given set of categories (circle plot, chord plot, cluster plot,
6489 Venn diagram, heatmap).")
6490 (license license:gpl2)))
6491
6492 (define-public r-getopt
6493 (package
6494 (name "r-getopt")
6495 (version "1.20.3")
6496 (source
6497 (origin
6498 (method url-fetch)
6499 (uri (cran-uri "getopt" version))
6500 (sha256
6501 (base32
6502 "0zzmzgwl9a4y3s34600vmih22d6y32294f9bvxrnmffnvkgmy7sk"))))
6503 (build-system r-build-system)
6504 (home-page "https://github.com/trevorld/getopt")
6505 (synopsis "Command-line option processor for R")
6506 (description
6507 "This package is designed to be used with Rscript to write shebang
6508 scripts that accept short and long options. Many users will prefer to
6509 use the packages @code{optparse} or @code{argparse} which add extra
6510 features like automatically generated help options and usage texts,
6511 support for default values, positional argument support, etc.")
6512 (license license:gpl2+)))
6513
6514 (define-public r-findpython
6515 (package
6516 (name "r-findpython")
6517 (version "1.0.5")
6518 (source
6519 (origin
6520 (method url-fetch)
6521 (uri (cran-uri "findpython" version))
6522 (sha256
6523 (base32
6524 "0icifm4z6hhpmcjrg75a875iph0ci890ss02kdv3725pijc236iy"))))
6525 (build-system r-build-system)
6526 (home-page "https://github.com/trevorld/findpython")
6527 (synopsis "Functions to find an acceptable Python binary")
6528 (description
6529 "This package was designed to find an acceptable Python binary that
6530 matches version and feature constraints.")
6531 (license license:expat)))
6532
6533 ;; This in not the same as "r-argparser"
6534 (define-public r-argparse
6535 (package
6536 (name "r-argparse")
6537 (version "2.0.1")
6538 (source
6539 (origin
6540 (method url-fetch)
6541 (uri (cran-uri "argparse" version))
6542 (sha256
6543 (base32
6544 "1as7h6z7kzgv0fqzpnp76qbm96b4jcd37azd58b7rz0l1n94764l"))))
6545 (build-system r-build-system)
6546 (inputs `(("python" ,python)))
6547 (propagated-inputs
6548 `(("r-findpython" ,r-findpython)
6549 ("r-jsonlite" ,r-jsonlite)
6550 ("r-r6" ,r-r6)))
6551 (home-page "https://github.com/trevorld/argparse")
6552 (synopsis "Command line optional and positional argument parser")
6553 (description
6554 "This package provides a command line parser to be used with Rscript to
6555 write shebang scripts that gracefully accept positional and optional arguments
6556 and automatically generate usage notices.")
6557 (license license:gpl2+)))
6558
6559 (define-public r-hash
6560 (package
6561 (name "r-hash")
6562 (version "2.2.6.1")
6563 (source
6564 (origin
6565 (method url-fetch)
6566 (uri (cran-uri "hash" version))
6567 (sha256
6568 (base32
6569 "0b3fl0rvgwb992knl81vm99lsldg5clvaqjh6mamm6zqmb6dz056"))))
6570 (build-system r-build-system)
6571 (home-page "https://cran.r-project.org/web/packages/hash/")
6572 (synopsis "Implementation of hash/associated arrays/dictionaries")
6573 (description
6574 "This package implements a data structure similar to hashes in Perl and
6575 dictionaries in Python but with a purposefully R flavor. For objects of
6576 appreciable size, access using hashes outperforms native named lists and
6577 vectors.")
6578 (license license:gpl2+)))
6579
6580 (define-public r-orddom
6581 (package
6582 (name "r-orddom")
6583 (version "3.1")
6584 (source
6585 (origin
6586 (method url-fetch)
6587 (uri (cran-uri "orddom" version))
6588 (sha256
6589 (base32
6590 "165axs15fvwhrp89xd87l81q3h2qjll1vrwcsap645cwvb85nwsh"))))
6591 (build-system r-build-system)
6592 (propagated-inputs `(("r-psych" ,r-psych)))
6593 (home-page "https://cran.r-project.org/web/packages/orddom/")
6594 (synopsis "Ordinal dominance statistics")
6595 (description
6596 "This package provides tools to compute ordinal, statistics and effect
6597 sizes as an alternative to mean comparison: Cliff's delta or success rate
6598 difference (SRD), Vargha and Delaney's A or the Area Under a Receiver
6599 Operating Characteristic Curve (AUC), the discrete type of McGraw & Wong's
6600 Common Language Effect Size (CLES) or Grissom & Kim's Probability of
6601 Superiority (PS), and the Number needed to treat (NNT) effect size. Moreover,
6602 comparisons to Cohen's d are offered based on Huberty & Lowman's Percentage of
6603 Group (Non-)Overlap considerations.")
6604 (license license:gpl2)))
6605
6606 (define-public r-deriv
6607 (package
6608 (name "r-deriv")
6609 (version "3.9.0")
6610 (source
6611 (origin
6612 (method url-fetch)
6613 (uri (cran-uri "Deriv" version))
6614 (sha256
6615 (base32
6616 "0hlqm216bg3l79gq6m0am0xz6vd3l2hgjnjm6lym3mkmgkka4kxw"))))
6617 (properties `((upstream-name . "Deriv")))
6618 (build-system r-build-system)
6619 (home-page "https://cran.r-project.org/web/packages/Deriv")
6620 (synopsis "Symbolic differentiation")
6621 (description
6622 "This package provides an R-based solution for symbolic differentiation.
6623 It admits user-defined functions as well as function substitution in arguments
6624 of functions to be differentiated. Some symbolic simplification is part of
6625 the work.")
6626 (license license:gpl3+)))
6627
6628 (define-public r-doby
6629 (package
6630 (name "r-doby")
6631 (version "4.6-3")
6632 (source
6633 (origin
6634 (method url-fetch)
6635 (uri (cran-uri "doBy" version))
6636 (sha256
6637 (base32
6638 "1d0d6pwai1g4i5jls0jm9va29ci5hy92n5957608f3fzi1jwy635"))))
6639 (properties `((upstream-name . "doBy")))
6640 (build-system r-build-system)
6641 (propagated-inputs
6642 `(("r-broom" ,r-broom)
6643 ("r-deriv" ,r-deriv)
6644 ("r-dplyr" ,r-dplyr)
6645 ("r-magrittr" ,r-magrittr)
6646 ("r-mass" ,r-mass)
6647 ("r-matrix" ,r-matrix)
6648 ("r-plyr" ,r-plyr)
6649 ("r-pbkrtest" ,r-pbkrtest)
6650 ("r-tibble" ,r-tibble)))
6651 (home-page "http://people.math.aau.dk/~sorenh/software/doBy/")
6652 (synopsis "Groupwise statistics, LSmeans, linear contrasts, and utilities")
6653 (description
6654 "This package contains:
6655
6656 @itemize
6657 @item facilities for working with grouped data: @code{do}
6658 something to data stratified @code{by} some variables.
6659 @item implementations of least-squares means, general linear contrasts, and
6660 @item miscellaneous other utilities.
6661 @end itemize\n")
6662 (license license:gpl2+)))
6663
6664 (define-public r-refgenome
6665 (package
6666 (name "r-refgenome")
6667 (version "1.7.7")
6668 (source
6669 (origin
6670 (method url-fetch)
6671 (uri (cran-uri "refGenome" version))
6672 (sha256
6673 (base32
6674 "1za89bn3am1zgvm641qi1ab6kaqpll4rb9p9f1sjwvcgqq6065g5"))))
6675 (properties `((upstream-name . "refGenome")))
6676 (build-system r-build-system)
6677 (propagated-inputs
6678 `(("r-dbi" ,r-dbi)
6679 ("r-doby" ,r-doby)
6680 ("r-rsqlite" ,r-rsqlite)))
6681 (home-page "https://cran.r-project.org/web/packages/refGenome/")
6682 (synopsis
6683 "Gene and splice site annotation using annotation data from Ensembl and UCSC")
6684 (description
6685 "This package contains functionality for importing and managing of
6686 downloaded genome annotation data from the Ensembl genome browser (European
6687 Bioinformatics Institute) and from the UCSC genome browser (University of
6688 California, Santa Cruz) and annotation routines for genomic positions and
6689 splice site positions.")
6690 (license license:gpl2)))
6691
6692 (define-public r-basix
6693 (package
6694 (name "r-basix")
6695 (version "1.1")
6696 (source
6697 (origin
6698 (method url-fetch)
6699 (uri (cran-uri "BASIX" version))
6700 (sha256
6701 (base32
6702 "18dkvv1iwskfnlpl6xridcgqpalbbpm2616mvc3hfrc0b26v01id"))))
6703 (properties `((upstream-name . "BASIX")))
6704 (build-system r-build-system)
6705 (home-page "https://cran.r-project.org/web/packages/BASIX/")
6706 (synopsis "Efficient C/C++ toolset for R")
6707 (description
6708 "BASIX provides some efficient C/C++ implementations of native R
6709 procedures to speed up calculations in R.")
6710 (license license:gpl2)))
6711
6712 (define-public r-blockfest
6713 (package
6714 (name "r-blockfest")
6715 (version "1.6")
6716 (source
6717 (origin
6718 (method url-fetch)
6719 (uri (cran-uri "BlockFeST" version))
6720 (sha256
6721 (base32
6722 "0hj7a5as7nxbgjac7lbj6qfwffx3g8x8phpf9a55f1c9cdzi73a5"))))
6723 (properties `((upstream-name . "BlockFeST")))
6724 (build-system r-build-system)
6725 (propagated-inputs `(("r-basix" ,r-basix)))
6726 (home-page "https://cran.r-project.org/web/packages/BlockFeST/")
6727 (synopsis "Bayesian calculation of region-specific fixation index")
6728 (description
6729 "This package provides an R implementation of an extension of the
6730 BayeScan software for codominant markers, adding the option to group
6731 individual SNPs into pre-defined blocks. A typical application of this new
6732 approach is the identification of genomic regions, genes, or gene sets
6733 containing one or more SNPs that evolved under directional selection.")
6734 (license license:gpl2)))
6735
6736 (define-public r-proc
6737 (package
6738 (name "r-proc")
6739 (version "1.15.3")
6740 (source
6741 (origin
6742 (method url-fetch)
6743 (uri (cran-uri "pROC" version))
6744 (sha256
6745 (base32
6746 "1jx8af9p6sxbypqvj1cci7q9sbyaw310inbjxibjcr3acj59h45h"))))
6747 (properties `((upstream-name . "pROC")))
6748 (build-system r-build-system)
6749 (propagated-inputs
6750 `(("r-plyr" ,r-plyr)
6751 ("r-rcpp" ,r-rcpp)))
6752 (home-page "http://expasy.org/tools/pROC/")
6753 (synopsis "Display and analyze ROC curves")
6754 (description
6755 "This package provides tools for visualizing, smoothing and comparing
6756 receiver operating characteristic (ROC curves). The area under the
6757 curve (AUC) can be compared with statistical tests based on U-statistics or
6758 bootstrap. Confidence intervals can be computed for (p)AUC or ROC curves.")
6759 (license license:gpl3+)))
6760
6761 (define-public r-rootsolve
6762 (package
6763 (name "r-rootsolve")
6764 (version "1.8.1")
6765 (source
6766 (origin
6767 (method url-fetch)
6768 (uri (cran-uri "rootSolve" version))
6769 (sha256
6770 (base32
6771 "0skrspq7sd7gaq73w91km14v8znc8chncgy64hvjgcng2xw15phx"))))
6772 (properties `((upstream-name . "rootSolve")))
6773 (build-system r-build-system)
6774 (native-inputs `(("gfortran" ,gfortran)))
6775 (home-page "https://cran.r-project.org/web/packages/rootSolve/")
6776 (synopsis "Tools for the analysis of ordinary differential equations")
6777 (description
6778 "This package provides routines to find the root of nonlinear functions,
6779 and to perform steady-state and equilibrium analysis of @dfn{ordinary
6780 differential equations} (ODE). It includes routines that:
6781
6782 @enumerate
6783 @item generate gradient and jacobian matrices (full and banded),
6784 @item find roots of non-linear equations by the Newton-Raphson method,
6785 @item estimate steady-state conditions of a system of (differential) equations
6786 in full, banded or sparse form, using the Newton-Raphson method, or by
6787 dynamically running,
6788 @item solve the steady-state conditions for uni- and multicomponent 1-D, 2-D,
6789 and 3-D partial differential equations, that have been converted to ordinary
6790 differential equations by numerical differencing (using the method-of-lines
6791 approach).
6792 @end enumerate\n")
6793 (license license:gpl2+)))
6794
6795 (define-public r-abcanalysis
6796 (package
6797 (name "r-abcanalysis")
6798 (version "1.2.1")
6799 (source
6800 (origin
6801 (method url-fetch)
6802 (uri (cran-uri "ABCanalysis" version))
6803 (sha256
6804 (base32 "0wac1ksmnxa36v99ca4hv8k0rsh3igwpcllmlv9wf7i9kgqviqwi"))))
6805 (properties `((upstream-name . "ABCanalysis")))
6806 (build-system r-build-system)
6807 (propagated-inputs `(("r-plotrix" ,r-plotrix)))
6808 (home-page "https://www.uni-marburg.de/fb12/arbeitsgruppen/datenbionik/software-en/")
6809 (synopsis "Computed ABC Analysis")
6810 (description
6811 "Multivariate data sets often differ in several factors or derived statistical
6812 parameters, which have to be selected for a valid interpretation. Basing this
6813 selection on traditional statistical limits leads occasionally to the perception
6814 of losing information from a data set. This package provides tools to calculate
6815 these limits on the basis of the mathematical properties of the distribution of
6816 the analyzed items.")
6817 (license license:gpl3)))
6818
6819 (define-public r-slam
6820 (package
6821 (name "r-slam")
6822 (version "0.1-46")
6823 (source
6824 (origin
6825 (method url-fetch)
6826 (uri (cran-uri "slam" version))
6827 (sha256
6828 (base32 "1ihhbx76miwys35gsbhijriadvrw4f51lc3v45pnn6cvcfd9hr0b"))))
6829 (build-system r-build-system)
6830 (home-page "https://cran.r-project.org/web/packages/slam/")
6831 (synopsis "Sparse lightweight arrays and matrices")
6832 (description
6833 "This package contains data structures and algorithms for sparse arrays and matrices,
6834 based on index arrays and simple triplet representations, respectively.")
6835 (license license:gpl2)))
6836
6837 (define-public r-manipulatewidget
6838 (package
6839 (name "r-manipulatewidget")
6840 (version "0.10.0")
6841 (source
6842 (origin
6843 (method url-fetch)
6844 (uri (cran-uri "manipulateWidget" version))
6845 (sha256
6846 (base32 "1zagrbwkn2d50zzw8i2vyb1hsq4cydmfsqiy1a2qlp6zrv8a6q9x"))))
6847 (properties
6848 `((upstream-name . "manipulateWidget")))
6849 (build-system r-build-system)
6850 (propagated-inputs
6851 `(("r-base64enc" ,r-base64enc)
6852 ("r-codetools" ,r-codetools)
6853 ("r-htmltools" ,r-htmltools)
6854 ("r-htmlwidgets" ,r-htmlwidgets)
6855 ("r-knitr" ,r-knitr)
6856 ("r-miniui" ,r-miniui)
6857 ("r-shiny" ,r-shiny)
6858 ("r-webshot" ,r-webshot)))
6859 (home-page "https://github.com/rte-antares-rpackage/manipulateWidget/")
6860 (synopsis "Add even more interactivity to interactive charts")
6861 (description
6862 "This package lets you create in just a few lines of R code a nice user interface to
6863 modify the data or the graphical parameters of one or multiple interactive
6864 charts. It is useful to quickly explore visually some data or for package
6865 developers to generate user interfaces easy to maintain.")
6866 (license license:gpl2+)))
6867
6868 (define-public r-a3
6869 (package
6870 (name "r-a3")
6871 (version "1.0.0")
6872 (source
6873 (origin
6874 (method url-fetch)
6875 (uri (cran-uri "A3" version))
6876 (sha256
6877 (base32 "017hq9pjsv1h9i7cqk5cfx27as54shlhdsdvr6jkhb8jfkpdb6cw"))))
6878 (properties `((upstream-name . "A3")))
6879 (build-system r-build-system)
6880 (propagated-inputs
6881 `(("r-pbapply" ,r-pbapply)
6882 ("r-xtable" ,r-xtable)))
6883 (home-page "https://cran.r-project.org/web/packages/A3/")
6884 (synopsis "Error metrics for predictive models")
6885 (description
6886 "This package supplies tools for tabulating and analyzing the results of predictive
6887 models. The methods employed are applicable to virtually any predictive model
6888 and make comparisons between different methodologies straightforward.")
6889 (license license:gpl2+)))
6890
6891 (define-public r-infotheo
6892 (package
6893 (name "r-infotheo")
6894 (version "1.2.0")
6895 (source
6896 (origin
6897 (method url-fetch)
6898 (uri (cran-uri "infotheo" version))
6899 (sha256
6900 (base32
6901 "18xacczfq3z3xpy434js4nf3l19lczngzd0lq26wh22pvg1yniwv"))))
6902 (build-system r-build-system)
6903 (home-page "http://homepage.meyerp.com/software")
6904 (synopsis "Information-theoretic measures")
6905 (description
6906 "This package implements various measures of information theory based on
6907 several entropy estimators.")
6908 (license license:gpl3+)))
6909
6910 (define-public r-abcoptim
6911 (package
6912 (name "r-abcoptim")
6913 (version "0.15.0")
6914 (source
6915 (origin
6916 (method url-fetch)
6917 (uri (cran-uri "ABCoptim" version))
6918 (sha256
6919 (base32 "1ih0xk88qhsmpvnxf56041wx5sk8as2f4f2gdnpnwdym9mbr9n4b"))))
6920 (properties `((upstream-name . "ABCoptim")))
6921 (build-system r-build-system)
6922 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
6923 (home-page "https://github.com/gvegayon/ABCoptim/")
6924 (synopsis "Optimization of Artificial Bee Colony algorithm")
6925 (description
6926 "Artificial Bee Colony (ABC) is one of the most recently defined algorithms by Dervis
6927 Karaboga in 2005, motivated by the intelligent behavior of honey bees. It is as
6928 simple as Particle Swarm Optimization (PSO) and Differential Evolution (DE)
6929 algorithms, and uses only common control parameters such as colony size and
6930 maximum cycle number. The @code{r-abcoptim} implements the Artificial bee
6931 colony optimization algorithm @url{http://mf.erciyes.edu.tr/abc/pub/tr06_2005.pdf}.
6932 This version is a work-in-progress and is written in R code.")
6933 (license license:expat)))
6934
6935 (define-public r-abcp2
6936 (package
6937 (name "r-abcp2")
6938 (version "1.2")
6939 (source
6940 (origin
6941 (method url-fetch)
6942 (uri (cran-uri "ABCp2" version))
6943 (sha256
6944 (base32 "1s2skkxpzss7c29i8600psgrp0hl46jcrxqrmy2b4db8hc0kcnbx"))))
6945 (properties `((upstream-name . "ABCp2")))
6946 (build-system r-build-system)
6947 (propagated-inputs `(("r-mass" ,r-mass)))
6948 (home-page "https://cran.r-project.org/web/packages/ABCp2/")
6949 (synopsis "Approximate Bayesian Computational Model for Estimating P2")
6950 (description
6951 "This package tests the goodness of fit of a distribution of offspring to the Normal,
6952 Poisson, and Gamma distribution and estimates the proportional paternity of the
6953 second male (P2) based on the best fit distribution.")
6954 (license license:gpl2)))
6955
6956 (define-public r-abcrf
6957 (package
6958 (name "r-abcrf")
6959 (version "1.8.1")
6960 (source
6961 (origin
6962 (method url-fetch)
6963 (uri (cran-uri "abcrf" version))
6964 (sha256
6965 (base32 "1ghbd24yhqy3xhdxas6ccn84nkavqpgldx5ck8kijknc7qjm8k27"))))
6966 (build-system r-build-system)
6967 (propagated-inputs
6968 `(("r-doparallel" ,r-doparallel)
6969 ("r-foreach" ,r-foreach)
6970 ("r-mass" ,r-mass)
6971 ("r-matrixstats" ,r-matrixstats)
6972 ("r-ranger" ,r-ranger)
6973 ("r-rcpp" ,r-rcpp)
6974 ("r-rcpparmadillo" ,r-rcpparmadillo)
6975 ("r-readr" ,r-readr)
6976 ("r-stringr" ,r-stringr)))
6977 (home-page "https://cran.r-project.org/web/packages/abcrf/")
6978 (synopsis "Approximate bayesian computation via random forests")
6979 (description
6980 "This package performs approximate bayesian computation (ABC) model choice and
6981 parameter inference via random forests. This machine learning tool named random
6982 forests (RF) can conduct selection among the highly complex models covered by
6983 ABC algorithms.")
6984 (license license:gpl2+)))
6985
6986 (define-public r-abctools
6987 (package
6988 (name "r-abctools")
6989 (version "1.1.3")
6990 (source
6991 (origin
6992 (method url-fetch)
6993 (uri (cran-uri "abctools" version))
6994 (sha256
6995 (base32 "07s9dg10i8lsxl73b4n2hynca2fjgb0ykb0dz8c3zv6cgw3cyx97"))))
6996 (build-system r-build-system)
6997 (propagated-inputs
6998 `(("r-abc" ,r-abc)
6999 ("r-abind" ,r-abind)
7000 ("r-hmisc" ,r-hmisc)
7001 ("r-plyr" ,r-plyr)))
7002 (home-page "https://github.com/dennisprangle/abctools/")
7003 (synopsis "Tools for ABC analyses")
7004 (description
7005 "This @code{r-abctools} package provides tools for approximate Bayesian computation
7006 including summary statistic selection and assessing coverage. This includes
7007 recent dimension reduction algorithms to tune the choice of summary statistics,
7008 and coverage methods to tune the choice of threshold.")
7009 (license license:gpl2+)))
7010
7011 (define-public r-ggstance
7012 (package
7013 (name "r-ggstance")
7014 (version "0.3.3")
7015 (source
7016 (origin
7017 (method url-fetch)
7018 (uri (cran-uri "ggstance" version))
7019 (sha256
7020 (base32 "0kdksay61hyb6612b07r84chh7a9aibjyclk3qcypvr9aang8hkh"))))
7021 (build-system r-build-system)
7022 (propagated-inputs
7023 `(("r-ggplot2" ,r-ggplot2)
7024 ("r-plyr" ,r-plyr)
7025 ("r-rlang" ,r-rlang)
7026 ("r-withr" ,r-withr)))
7027 (home-page "https://cran.r-project.org/web/packages/ggstance/")
7028 (synopsis "Horizontal and vertical versions of @code{r-ggplot2}")
7029 (description
7030 "This package is a @code{r-ggplot2} extension that provides flipped components:
7031 @enumerate
7032 @item horizontal versions of @code{r-ggplot2} stats and @code{r-ggplot2} geoms;
7033 @item vertical versions of @code{r-ggplot2} positions.
7034 @end enumerate")
7035 (license license:gpl3)))
7036
7037 (define-public r-mosaiccore
7038 (package
7039 (name "r-mosaiccore")
7040 (version "0.6.0")
7041 (source
7042 (origin
7043 (method url-fetch)
7044 (uri (cran-uri "mosaicCore" version))
7045 (sha256
7046 (base32 "1klw97h6lchw1cpcl8s637ikcl428cckmjq0czi7mibh9q9mw72z"))))
7047 (properties `((upstream-name . "mosaicCore")))
7048 (build-system r-build-system)
7049 (propagated-inputs
7050 `(("r-dplyr" ,r-dplyr)
7051 ("r-lazyeval" ,r-lazyeval)
7052 ("r-mass" ,r-mass)
7053 ("r-rlang" ,r-rlang)
7054 ("r-tidyr" ,r-tidyr)))
7055 (home-page "https://github.com/ProjectMOSAIC/mosaicCore/")
7056 (synopsis "Common utilities for mosaic family packages")
7057 (description
7058 "Common utilities used in other Mosaic family packages are collected here.")
7059 (license license:gpl2+)))
7060
7061 (define-public r-ggformula
7062 (package
7063 (name "r-ggformula")
7064 (version "0.9.2")
7065 (source
7066 (origin
7067 (method url-fetch)
7068 (uri (cran-uri "ggformula" version))
7069 (sha256
7070 (base32 "16ycabhnp78fsiv1dc63ccgh9gmpsy2683vbmq0fdzl6w3pd87sr"))))
7071 (build-system r-build-system)
7072 (propagated-inputs
7073 `(("r-ggplot2" ,r-ggplot2)
7074 ("r-ggstance" ,r-ggstance)
7075 ("r-magrittr" ,r-magrittr)
7076 ("r-mosaiccore" ,r-mosaiccore)
7077 ("r-rlang" ,r-rlang)
7078 ("r-stringr" ,r-stringr)
7079 ("r-tibble" ,r-tibble)
7080 ("r-tidyr" ,r-tidyr)))
7081 (home-page "https://github.com/ProjectMOSAIC/ggformula/")
7082 (synopsis "Formula interface for the @code{r-ggplot2}")
7083 (description
7084 "The @code{r-ggformula} introduces a family of graphics functions, gf_point(),
7085 gf_density(), and so on, bring the formula interface to ggplot(). This captures
7086 and extends the excellent simplicity of the lattice-graphics formula interface,
7087 while providing the intuitive capabilities of @code{r-ggplot2}.")
7088 (license license:expat)))
7089
7090 (define-public r-mosaicdata
7091 (package
7092 (name "r-mosaicdata")
7093 (version "0.17.0")
7094 (source
7095 (origin
7096 (method url-fetch)
7097 (uri (cran-uri "mosaicData" version))
7098 (sha256
7099 (base32 "04z0mdm52mykqsxsinhmsihn181zf6cw321gayk2rjp7lj7mwdq9"))))
7100 (properties `((upstream-name . "mosaicData")))
7101 (build-system r-build-system)
7102 (home-page "https://cran.r-project.org/web/packages/mosaicData/")
7103 (synopsis "Data sets for project Mosaic")
7104 (description
7105 "This package provides data sets from project Mosaic @url{http://mosaic-web.org}
7106 used to teach mathematics, statistics, computation and modeling.")
7107 (license license:gpl2+)))
7108
7109 (define-public r-raster
7110 (package
7111 (name "r-raster")
7112 (version "3.0-7")
7113 (source
7114 (origin
7115 (method url-fetch)
7116 (uri (cran-uri "raster" version))
7117 (sha256
7118 (base32
7119 "0faxv71hlxkblvbi3ps1vfzm3wwi0brwzmpsr5114bddcqyiqkvn"))))
7120 (build-system r-build-system)
7121 (propagated-inputs
7122 `(("r-rcpp" ,r-rcpp)
7123 ("r-sp" ,r-sp)))
7124 (home-page "https://www.rspatial.org/")
7125 (synopsis "Geographic data analysis and modeling")
7126 (description
7127 "The package implements basic and high-level functions for reading,
7128 writing, manipulating, analyzing and modeling of gridded spatial data.
7129 Processing of very large files is supported.")
7130 (license license:gpl3+)))
7131
7132 (define-public r-mosaic
7133 (package
7134 (name "r-mosaic")
7135 (version "1.4.0")
7136 (source
7137 (origin
7138 (method url-fetch)
7139 (uri (cran-uri "mosaic" version))
7140 (sha256
7141 (base32 "10jbrg8kli00kfgbh2f67bymm5cnlancc9dplb1j7fl552yjddn2"))))
7142 (build-system r-build-system)
7143 (propagated-inputs
7144 `(("r-broom" ,r-broom)
7145 ("r-dplyr" ,r-dplyr)
7146 ("r-ggdendro" ,r-ggdendro)
7147 ("r-ggformula" ,r-ggformula)
7148 ("r-ggplot2" ,r-ggplot2)
7149 ("r-ggrepel" ,r-ggrepel)
7150 ("r-glue" ,r-glue)
7151 ("r-gridextra" ,r-gridextra)
7152 ("r-lattice" ,r-lattice)
7153 ("r-latticeextra" ,r-latticeextra)
7154 ("r-lazyeval" ,r-lazyeval)
7155 ("r-mass" ,r-mass)
7156 ("r-matrix" ,r-matrix)
7157 ("r-mosaiccore" ,r-mosaiccore)
7158 ("r-mosaicdata" ,r-mosaicdata)
7159 ("r-readr" ,r-readr)
7160 ("r-tidyr" ,r-tidyr)))
7161 (home-page "https://github.com/ProjectMOSAIC/mosaic/")
7162 (synopsis "Mathematics, statistics, and computation teaching utilities")
7163 (description
7164 "This package contain data sets and utilities from
7165 @url{http://mosaic-web.org, Project MOSAIC} used to teach mathematics,
7166 statistics, computation and modeling. Project MOSAIC is a community of
7167 educators working to tie together aspects of quantitative work that students
7168 in science, technology, engineering and mathematics will need in their
7169 professional lives, but which are usually taught in isolation, if at all.")
7170 (license license:gpl2+)))
7171
7172 (define-public r-abd
7173 (package
7174 (name "r-abd")
7175 (version "0.2-8")
7176 (source
7177 (origin
7178 (method url-fetch)
7179 (uri (cran-uri "abd" version))
7180 (sha256
7181 (base32 "191gspqzdv573vaw624ri0f5cm6v4j524bjs74d4a1hn3kn6r9b7"))))
7182 (build-system r-build-system)
7183 (propagated-inputs
7184 `(("r-lattice" ,r-lattice)
7185 ("r-mosaic" ,r-mosaic)
7186 ("r-nlme" ,r-nlme)))
7187 (home-page "https://cran.r-project.org/web/packages/abd/")
7188 (synopsis "Analysis of biological data")
7189 (description
7190 "The @code{r-abd} package contains data sets and sample code for the Analysis of
7191 biological data by Michael Whitlock and Dolph Schluter.")
7192 (license license:gpl2)))
7193
7194 (define-public r-svgui
7195 (package
7196 (name "r-svgui")
7197 (version "1.0.0")
7198 (source
7199 (origin
7200 (method url-fetch)
7201 (uri (cran-uri "svGUI" version))
7202 (sha256
7203 (base32 "1r7ab0p4yr8q03gj02hmj7k1ghksgkg4nx750c0ajfs2q9y1dxfc"))))
7204 (properties `((upstream-name . "svGUI")))
7205 (build-system r-build-system)
7206 (home-page "https://github.com/SciViews/svGUI/")
7207 (synopsis "Functions for managing GUI clients in R")
7208 (description
7209 "The SciViews @code{svGUI} package eases the management of Graphical User
7210 Interfaces (GUI) in R. It is independent from any particular GUI widgets. It
7211 centralizes info about GUI elements currently used, and it dispatches GUI
7212 calls to the particular toolkits in use in function of the context.")
7213 (license license:gpl2)))
7214
7215 (define-public r-svdialogs
7216 (package
7217 (name "r-svdialogs")
7218 (version "1.0.0")
7219 (source
7220 (origin
7221 (method url-fetch)
7222 (uri (cran-uri "svDialogs" version))
7223 (sha256
7224 (base32 "0xqppydfawnwk84kb5qiybwbcmv38vn4imgz01mz2pnq4xb80p97"))))
7225 (properties `((upstream-name . "svDialogs")))
7226 (build-system r-build-system)
7227 (inputs
7228 `(("yad" ,yad)
7229 ("zenity" ,zenity)))
7230 (propagated-inputs
7231 `(("r-rstudioapi" ,r-rstudioapi)
7232 ("r-svgui" ,r-svgui)))
7233 (home-page "https://github.com/SciViews/svDialogs/")
7234 (synopsis "Portable dialog boxes")
7235 (description
7236 "This package helps to construct standard dialog boxes for your GUI, including
7237 message boxes, input boxes, list, file or directory selection, and others. In
7238 case R cannot display GUI dialog boxes, a simpler command line version of these
7239 interactive elements is also provided as a fallback solution.")
7240 (license license:gpl2)))
7241
7242 (define-public r-abe
7243 (package
7244 (name "r-abe")
7245 (version "3.0.1")
7246 (source
7247 (origin
7248 (method url-fetch)
7249 (uri (cran-uri "abe" version))
7250 (sha256
7251 (base32
7252 "1f19h3xzzmjhvwc1rrb8z0rai3ip03y4gdi2gg9bfr5sg2nfklk6"))))
7253 (build-system r-build-system)
7254 (home-page "https://cran.r-project.org/web/packages/abe/")
7255 (synopsis "Augmented backward elimination")
7256 (description
7257 "This package performs augmented backward elimination and checks the
7258 stability of the obtained model. Augmented backward elimination combines
7259 significance or information based criteria with the change in estimate to
7260 either select the optimal model for prediction purposes or to serve as a tool
7261 to obtain a practically sound, highly interpretable model.")
7262 (license license:gpl2+)))
7263
7264 (define-public r-abf2
7265 (package
7266 (name "r-abf2")
7267 (version "0.7-1")
7268 (source
7269 (origin
7270 (method url-fetch)
7271 (uri (cran-uri "abf2" version))
7272 (sha256
7273 (base32 "0d65mc1w4pbiv7xaqzdlw1bfsxf25587rv597hh41vs0j0zlfpxx"))))
7274 (build-system r-build-system)
7275 (home-page "https://cran.r-project.org/web/packages/abf2/")
7276 (synopsis "Load gap-free axon @code{r-abf2} files")
7277 (description
7278 "This package loads electrophysiology data from ABF2 files, as created by
7279 Axon Instruments/Molecular Devices software. Only files recorded in gap-free
7280 mode are currently supported.")
7281 (license license:artistic2.0)))
7282
7283 (define-public r-abhgenotyper
7284 (package
7285 (name "r-abhgenotyper")
7286 (version "1.0.1")
7287 (source
7288 (origin
7289 (method url-fetch)
7290 (uri (cran-uri "ABHgenotypeR" version))
7291 (sha256
7292 (base32 "08cpmnaaxsm5c5bjifnfxdlvg5inrf13biqpcl2yq5zpqjmiki0l"))))
7293 (properties `((upstream-name . "ABHgenotypeR")))
7294 (build-system r-build-system)
7295 (propagated-inputs
7296 `(("r-ggplot2" ,r-ggplot2)
7297 ("r-reshape2" ,r-reshape2)))
7298 (home-page "https://github.com/StefanReuscher/ABHgenotypeR/")
7299 (synopsis "Visualize and manipulate ABH genotypes")
7300 (description
7301 "The @code{r-abhgenotyper} package provides simple imputation,
7302 error-correction and plotting capacities for genotype data. The package is
7303 supposed to serve as an intermediate but independent analysis tool between the
7304 TASSEL GBS pipeline and the @code{r-qtl} package. It provides functionalities
7305 not found in either TASSEL or @code{r-qtl} in addition to visualization of
7306 genotypes as \"graphical genotypes\".")
7307 (license license:gpl3)))
7308
7309 (define-public r-furrr
7310 (package
7311 (name "r-furrr")
7312 (version "0.1.0")
7313 (source
7314 (origin
7315 (method url-fetch)
7316 (uri (cran-uri "furrr" version))
7317 (sha256
7318 (base32
7319 "1ld9aa9hydna94hgm6p91zjbfv1dz1vsgchjlpknkg6irbvkfafx"))))
7320 (build-system r-build-system)
7321 (propagated-inputs
7322 `(("r-future" ,r-future)
7323 ("r-globals" ,r-globals)
7324 ("r-purrr" ,r-purrr)
7325 ("r-rlang" ,r-rlang)))
7326 (home-page "https://github.com/DavisVaughan/furrr")
7327 (synopsis "Apply mapping functions in parallel using futures")
7328 (description
7329 "This package provides implementations of the family of @code{map()}
7330 functions from the @code{purrr} package that can be resolved using any
7331 @code{future}-supported backend, e.g. parallel on the local machine or
7332 distributed on a compute cluster.")
7333 (license license:lgpl2.1+)))
7334
7335 (define-public r-abjutils
7336 (package
7337 (name "r-abjutils")
7338 (version "0.2.3")
7339 (source
7340 (origin
7341 (method url-fetch)
7342 (uri (cran-uri "abjutils" version))
7343 (sha256
7344 (base32 "0n4zps65y3zg0gfzlv97w91si52a9izkncirskbkj5x9hk0nhxcv"))))
7345 (build-system r-build-system)
7346 (propagated-inputs
7347 `(("r-devtools" ,r-devtools)
7348 ("r-dplyr" ,r-dplyr)
7349 ("r-furrr" ,r-furrr)
7350 ("r-future" ,r-future)
7351 ("r-glue" ,r-glue)
7352 ("r-httr" ,r-httr)
7353 ("r-magrittr" ,r-magrittr)
7354 ("r-progress" ,r-progress)
7355 ("r-purrr" ,r-purrr)
7356 ("r-readr" ,r-readr)
7357 ("r-rlang" ,r-rlang)
7358 ("r-rstudioapi" ,r-rstudioapi)
7359 ("r-scales" ,r-scales)
7360 ("r-stringi" ,r-stringi)
7361 ("r-stringr" ,r-stringr)
7362 ("r-tibble" ,r-tibble)
7363 ("r-tidyr" ,r-tidyr)))
7364 (home-page "https://github.com/abjur/abjutils/")
7365 (synopsis "Collection of tools for jurimetrical analysis")
7366 (description
7367 "This package implements general purpose tools, such as functions for
7368 sampling and basic manipulation of Brazilian lawsuits identification number.
7369 It also implements functions for text cleaning, such as accentuation
7370 removal.")
7371 (license license:expat)))
7372
7373 (define-public r-abnormality
7374 (package
7375 (name "r-abnormality")
7376 (version "0.1.0")
7377 (source
7378 (origin
7379 (method url-fetch)
7380 (uri (cran-uri "abnormality" version))
7381 (sha256
7382 (base32 "1fzfskl9akl06nliy8hkv2a0pznpj8pwcypg3gj5r2nzvr3kan9v"))))
7383 (build-system r-build-system)
7384 (propagated-inputs
7385 `(("r-mass" ,r-mass)
7386 ("r-matrix" ,r-matrix)))
7387 (home-page "https://cran.r-project.org/web/packages/abnormality/")
7388 (synopsis "Measure a subject's abnormality with respect to a reference population")
7389 (description
7390 "This package contains functions to implement the methodology and
7391 considerations laid out by Marks et al. in the article \"Measuring abnormality
7392 in high dimensional spaces: applications in biomechanical gait analysis\".
7393 Using high-dimensional datasets to measure a subject's overall level of
7394 abnormality as compared to a reference population is often needed in outcomes
7395 research.")
7396 (license license:expat)))
7397
7398 (define-public r-abodoutlier
7399 (package
7400 (name "r-abodoutlier")
7401 (version "0.1")
7402 (source
7403 (origin
7404 (method url-fetch)
7405 (uri (cran-uri "abodOutlier" version))
7406 (sha256
7407 (base32 "1pvhgxmh23br84r0fbmv7g53z2427birdja96a67vqgz18r3fdvj"))))
7408 (properties `((upstream-name . "abodOutlier")))
7409 (build-system r-build-system)
7410 (propagated-inputs
7411 `(("r-cluster" ,r-cluster)))
7412 (home-page "https://cran.r-project.org/web/packages/abodOutlier/")
7413 (synopsis "Angle-based outlier detection")
7414 (description
7415 "This package performs angle-based outlier detection on a given data
7416 frame. It offers three methods to process data:
7417 @enumerate
7418 @item full but slow implementation using all the data that has cubic
7419 complexity;
7420 @item a fully randomized method;
7421 @item a method using k-nearest neighbours.
7422 @end enumerate
7423 These algorithms are well suited for high dimensional data outlier
7424 detection.")
7425 (license license:expat)))
7426
7427 (define-public r-abps
7428 (package
7429 (name "r-abps")
7430 (version "0.3")
7431 (source
7432 (origin
7433 (method url-fetch)
7434 (uri (cran-uri "ABPS" version))
7435 (sha256
7436 (base32 "0n3f66nmfi5v94il1mxy026mi84w01ph2aljk60vn3mrz8kwf2ll"))))
7437 (properties `((upstream-name . "ABPS")))
7438 (build-system r-build-system)
7439 (propagated-inputs `(("r-kernlab" ,r-kernlab)))
7440 (home-page "https://cran.r-project.org/web/packages/ABPS/")
7441 (synopsis "Abnormal blood profile score to detect blood doping")
7442 (description
7443 "This package offers an implementation of the @dfn{Abnormal blood profile score} (ABPS).
7444 The ABPS is a part of the Athlete biological passport program of the World
7445 anti-doping agency, which combines several blood parameters into a single
7446 score in order to detect blood doping. The package also contains functions to
7447 calculate other scores used in anti-doping programs, such as the ratio of
7448 hemoglobin to reticulocytes (OFF-score), as well as example data.")
7449 (license license:gpl2+)))
7450
7451 (define-public r-parmigene
7452 (package
7453 (name "r-parmigene")
7454 (version "1.0.2")
7455 (source
7456 (origin
7457 (method url-fetch)
7458 (uri (cran-uri "parmigene" version))
7459 (sha256
7460 (base32
7461 "1fsm6pkr17jcbzkj1hbn91jf890fviqk1lq6ls8pihsdgah1zb4d"))))
7462 (build-system r-build-system)
7463 (home-page "https://cran.r-project.org/web/packages/parmigene/")
7464 (synopsis "Mutual information estimation for gene network reconstruction")
7465 (description
7466 "This package provides a parallel estimation of the mutual information
7467 based on entropy estimates from k-nearest neighbors distances and algorithms
7468 for the reconstruction of gene regulatory networks.")
7469 (license license:agpl3+)))
7470
7471 (define-public r-pscl
7472 (package
7473 (name "r-pscl")
7474 (version "1.5.2")
7475 (source
7476 (origin
7477 (method url-fetch)
7478 (uri (cran-uri "pscl" version))
7479 (sha256
7480 (base32 "1phf3awsfr4ncqfqzin5m1pz0g7y1zhbcm2sz7358ssw914fd7rc"))))
7481 (build-system r-build-system)
7482 (propagated-inputs
7483 `(("r-mass" ,r-mass)))
7484 (home-page "https://github.com/atahk/pscl/")
7485 (synopsis "Political science computational laboratory")
7486 (description
7487 "The @code{pscl} is an R package providing classes and methods for:
7488 @enumerate
7489 @item Bayesian analysis of roll call data (item-response models);
7490 @item elementary Bayesian statistics;
7491 @item maximum likelihood estimation of zero-inflated and hurdle models for count
7492 data;
7493 @item utility functions.
7494 @end enumerate")
7495 (license license:gpl2)))
7496
7497 (define-public r-accelmissing
7498 (package
7499 (name "r-accelmissing")
7500 (version "1.4")
7501 (source
7502 (origin
7503 (method url-fetch)
7504 (uri (cran-uri "accelmissing" version))
7505 (sha256
7506 (base32 "1nql9inx6azdzi3z4sfm2vdml2mms6krl8wzlf1dn1c97ahn57fy"))))
7507 (build-system r-build-system)
7508 (propagated-inputs
7509 `(("r-mice" ,r-mice)
7510 ("r-pscl" ,r-pscl)))
7511 (home-page "https://cran.r-project.org/web/packages/accelmissing/")
7512 (synopsis "Missing value imputation for accelerometer data")
7513 (description
7514 "This package provides a statistical method to impute the missing values in
7515 accelerometer data. The methodology includes both parametric and
7516 semi-parametric multiple imputations under the zero-inflated Poisson lognormal
7517 model. It also provides multiple functions to preprocess the accelerometer data
7518 previous to the missing data imputation. These include detecting the wearing
7519 and the non-wearing time, selecting valid days and subjects, and creating plots.")
7520 (license license:gpl2+)))
7521
7522 (define-public r-mhsmm
7523 (package
7524 (name "r-mhsmm")
7525 (version "0.4.16")
7526 (source
7527 (origin
7528 (method url-fetch)
7529 (uri (cran-uri "mhsmm" version))
7530 (sha256
7531 (base32 "009dj0zkj1zry7jr9hf4cknb686z50a2l967if64xm0dvjmp7dgs"))))
7532 (build-system r-build-system)
7533 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
7534 (home-page "https://github.com/jaredo/mhsmm/")
7535 (synopsis "Inference for hidden Markov and semi-Markov models")
7536 (description
7537 "The @code{r-mhsmm} package implements estimation and prediction methods for
7538 hidden Markov and semi-Markov models for multiple observation sequences. Such
7539 techniques are of interest when observed data is thought to be dependent on some
7540 unobserved (or hidden) state. Also, this package is suitable for equidistant
7541 time series data, with multivariate and/or missing data. Allows user defined
7542 emission distributions.")
7543 (license license:gpl2+)))
7544
7545 (define-public r-nleqslv
7546 (package
7547 (name "r-nleqslv")
7548 (version "3.3.2")
7549 (source
7550 (origin
7551 (method url-fetch)
7552 (uri (cran-uri "nleqslv" version))
7553 (sha256
7554 (base32 "1v9znvncyigw9r25wx2ma0b7ib179b488dl0qsrhp5zrcz7mcjgm"))))
7555 (build-system r-build-system)
7556 (native-inputs `(("gfortran" ,gfortran)))
7557 (home-page "https://cran.r-project.org/web/packages/nleqslv/")
7558 (synopsis "Solve systems of nonlinear equations")
7559 (description
7560 "The @code{r-nleqslv} package solves a system of nonlinear equations using a
7561 Broyden or a Newton method with a choice of global strategies such as line
7562 search and trust region. There are options for using a numerical or user
7563 supplied Jacobian, for specifying a banded numerical Jacobian and for allowing a
7564 singular or ill-conditioned Jacobian.")
7565 (license license:gpl2+)))
7566
7567 (define-public r-physicalactivity
7568 (package
7569 (name "r-physicalactivity")
7570 (version "0.2-2")
7571 (source
7572 (origin
7573 (method url-fetch)
7574 (uri (cran-uri "PhysicalActivity" version))
7575 (sha256
7576 (base32 "14z6plgwyr46vs9m997rvlz8sdglfs9g087an8668zqkzzs2w4ln"))))
7577 (properties
7578 `((upstream-name . "PhysicalActivity")))
7579 (build-system r-build-system)
7580 (home-page "https://cran.r-project.org/web/packages/PhysicalActivity/")
7581 (synopsis "Procesing accelerometer data for physical activity measurement")
7582 (description
7583 "This @code{r-physicalactivity} package provides a function @code{wearingMarking}
7584 for classification of monitor wear and nonwear time intervals in accelerometer
7585 data collected to assess physical activity. The package also contains functions
7586 for making plots of accelerometer data and obtaining the summary of various
7587 information including daily monitor wear time and the mean monitor wear time
7588 during valid days. The revised package version 0.2-1 improved the functions
7589 regarding speed, robustness and add better support for time zones and daylight
7590 saving. In addition, several functions were added:
7591 @enumerate
7592 @item the @code{markDelivery} can classify days for ActiGraph delivery by mail;
7593 @item the @code{markPAI} can categorize physical activity intensity level based
7594 on user-defined cut-points of accelerometer counts.
7595 @end enumerate
7596 It also supports importing ActiGraph (AGD) files with @code{readActigraph} and
7597 @code{queryActigraph} functions.")
7598 (license license:gpl3+)))
7599
7600 (define-public r-acc
7601 (package
7602 (name "r-acc")
7603 (version "1.3.3")
7604 (source
7605 (origin
7606 (method url-fetch)
7607 (uri (cran-uri "acc" version))
7608 (sha256
7609 (base32 "1ii2vm47djxbixa75h690q1s2f9m9x6i8nkygik93j6dayr6kr1m"))))
7610 (build-system r-build-system)
7611 (propagated-inputs
7612 `(("r-circlize" ,r-circlize)
7613 ("r-dbi" ,r-dbi)
7614 ("r-ggplot2" ,r-ggplot2)
7615 ("r-iterators" ,r-iterators)
7616 ("r-mhsmm" ,r-mhsmm)
7617 ("r-nleqslv" ,r-nleqslv)
7618 ("r-physicalactivity" ,r-physicalactivity)
7619 ("r-plyr" ,r-plyr)
7620 ("r-r-utils" ,r-r-utils)
7621 ("r-rcpp" ,r-rcpp)
7622 ("r-rcpparmadillo" ,r-rcpparmadillo)
7623 ("r-rsqlite" ,r-rsqlite)
7624 ("r-zoo" ,r-zoo)))
7625 (home-page "https://cran.r-project.org/web/packages/acc/")
7626 (synopsis "Exploring accelerometer data")
7627 (description
7628 "This package processes accelerometer data from uni-axial and tri-axial devices
7629 and generates data summaries. Also, includes functions to plot, analyze, and
7630 simulate accelerometer data.")
7631 (license license:gpl2+)))
7632
7633 (define-public r-rbenchmark
7634 (package
7635 (name "r-rbenchmark")
7636 (version "1.0.0")
7637 (source
7638 (origin
7639 (method url-fetch)
7640 (uri (cran-uri "rbenchmark" version))
7641 (sha256
7642 (base32 "010fn3qwnk2k411cbqyvra1d12c3bhhl3spzm8kxffmirj4p2al9"))))
7643 (build-system r-build-system)
7644 (home-page "https://cran.r-project.org/web/packages/rbenchmark/")
7645 (synopsis "Benchmarking routine for R")
7646 (description
7647 "This @code{r-rbenchmark} package is inspired by the Perl module Benchmark,
7648 and is intended to facilitate benchmarking of arbitrary R code. The library
7649 consists of just one function, benchmark, which is a simple wrapper around
7650 system.time. Given a specification of the benchmarking process (counts of
7651 replications, evaluation environment) and an arbitrary number of expressions,
7652 benchmark evaluates each of the expressions in the specified environment,
7653 replicating the evaluation as many times as specified, and returning the results
7654 conveniently wrapped into a data frame.")
7655 (license license:gpl2+)))
7656
7657 (define-public r-mitools
7658 (package
7659 (name "r-mitools")
7660 (version "2.4")
7661 (source
7662 (origin
7663 (method url-fetch)
7664 (uri (cran-uri "mitools" version))
7665 (sha256
7666 (base32
7667 "0c2x2n1p53lcw0vx4vmy5j7m2f95i7g2iwbryl89imr99rvz617j"))))
7668 (build-system r-build-system)
7669 (propagated-inputs `(("r-dbi" ,r-dbi)))
7670 (home-page "https://cran.r-project.org/web/packages/mitools/")
7671 (synopsis "Tools for multiple imputation of missing data")
7672 (description
7673 "This package provides tools to perform analyses and combine results from
7674 multiple-imputation datasets.")
7675 (license license:gpl2)))
7676
7677 (define-public r-magick
7678 (package
7679 (name "r-magick")
7680 (version "2.2")
7681 (source
7682 (origin
7683 (method url-fetch)
7684 (uri (cran-uri "magick" version))
7685 (sha256
7686 (base32
7687 "1xh5mhaks3wk1iwqs9d3lnbfv121lc1yz5fqdzk5il9ppr831l85"))))
7688 (build-system r-build-system)
7689 (inputs
7690 `(("imagemagick" ,imagemagick)
7691 ("zlib" ,zlib)))
7692 (propagated-inputs
7693 `(("r-curl" ,r-curl)
7694 ("r-magrittr" ,r-magrittr)
7695 ("r-rcpp" ,r-rcpp)))
7696 (native-inputs
7697 `(("pkg-config" ,pkg-config)))
7698 (home-page "https://github.com/ropensci/magick")
7699 (synopsis "Advanced graphics and image-processing in R")
7700 (description
7701 "This package provides bindings to ImageMagick, a comprehensive image
7702 processing library. It supports many common formats (PNG, JPEG, TIFF, PDF,
7703 etc.) and manipulations (rotate, scale, crop, trim, flip, blur, etc). All
7704 operations are vectorized via the Magick++ STL meaning they operate either on
7705 a single frame or a series of frames for working with layers, collages, or
7706 animation. In RStudio, images are automatically previewed when printed to the
7707 console, resulting in an interactive editing environment.")
7708 (license license:expat)))
7709
7710 (define-public r-survey
7711 (package
7712 (name "r-survey")
7713 (version "3.36")
7714 (source
7715 (origin
7716 (method url-fetch)
7717 (uri (cran-uri "survey" version))
7718 (sha256
7719 (base32
7720 "0xclsy4ram4k48vzh5m5bpmknnpwxnss85v73s4czsjj5ffjxwwh"))))
7721 (build-system r-build-system)
7722 (propagated-inputs
7723 `(("r-lattice" ,r-lattice)
7724 ("r-matrix" ,r-matrix)
7725 ("r-minqa" ,r-minqa)
7726 ("r-mitools" ,r-mitools)
7727 ("r-numderiv" ,r-numderiv)
7728 ("r-survival" ,r-survival)))
7729 (home-page "http://r-survey.r-forge.r-project.org/survey/")
7730 (synopsis "Analysis of complex survey samples")
7731 (description
7732 "This package provides tools for the analysis of complex survey samples.
7733 The provided features include: summary statistics, two-sample tests, rank
7734 tests, generalised linear models, cumulative link models, Cox models,
7735 loglinear models, and general maximum pseudolikelihood estimation for
7736 multistage stratified, cluster-sampled, unequally weighted survey samples;
7737 variances by Taylor series linearisation or replicate weights;
7738 post-stratification, calibration, and raking; two-phase subsampling designs;
7739 graphics; PPS sampling without replacement; principal components, and factor
7740 analysis.")
7741 ;; Either version of the GPL.
7742 (license (list license:gpl2 license:gpl3))))
7743
7744 (define-public r-dvmisc
7745 (package
7746 (name "r-dvmisc")
7747 (version "1.1.3")
7748 (source
7749 (origin
7750 (method url-fetch)
7751 (uri (cran-uri "dvmisc" version))
7752 (sha256
7753 (base32 "0x391pxg5mqgp5xxc8qwhwxky8ds7d9gr9iwmsb12c92kxfk00bv"))))
7754 (build-system r-build-system)
7755 (propagated-inputs
7756 `(("r-cubature" ,r-cubature)
7757 ("r-data-table" ,r-data-table)
7758 ("r-dplyr" ,r-dplyr)
7759 ("r-ggplot2" ,r-ggplot2)
7760 ("r-mass" ,r-mass)
7761 ("r-mvtnorm" ,r-mvtnorm)
7762 ("r-pracma" ,r-pracma)
7763 ("r-purrr" ,r-purrr)
7764 ("r-rbenchmark" ,r-rbenchmark)
7765 ("r-rcpp" ,r-rcpp)
7766 ("r-survey" ,r-survey)))
7767 (home-page "https://cran.r-project.org/web/packages/dvmisc/")
7768 (synopsis "Faster computation of common statistics and miscellaneous functions")
7769 (description
7770 "This package implements faster versions of base R functions (e.g. mean, standard
7771 deviation, covariance, weighted mean), mostly written in C++, along with
7772 miscellaneous functions for various purposes (e.g. create the histogram with
7773 fitted probability density function or probability mass function curve, create
7774 the body mass index groups, assess the linearity assumption in logistic
7775 regression).")
7776 (license license:gpl2)))
7777
7778 (define-public r-accelerometry
7779 (package
7780 (name "r-accelerometry")
7781 (version "3.1.2")
7782 (source
7783 (origin
7784 (method url-fetch)
7785 (uri (cran-uri "accelerometry" version))
7786 (sha256
7787 (base32 "13xzrwhr4i1nj9c8vrmfdg2rmrc8n446iihcyxmy99sm99hpzyip"))))
7788 (build-system r-build-system)
7789 (propagated-inputs
7790 `(("r-dvmisc" ,r-dvmisc)
7791 ("r-rcpp" ,r-rcpp)))
7792 (home-page "https://cran.r-project.org/web/packages/accelerometry/")
7793 (synopsis "Functions for processing accelerometer data")
7794 (description
7795 "This package provides a collection of functions that perform operations on
7796 time-series accelerometer data, such as identify the non-wear time, flag minutes
7797 that are part of an activity bout, and find the maximum 10-minute average count
7798 value. The functions are generally very flexible, allowing for a variety of
7799 algorithms to be implemented.")
7800 (license license:gpl3)))
7801
7802 (define-public r-absim
7803 (package
7804 (name "r-absim")
7805 (version "0.2.6")
7806 (source
7807 (origin
7808 (method url-fetch)
7809 (uri (cran-uri "AbSim" version))
7810 (sha256
7811 (base32 "16ddjk8b6xw80ch4jis1y751i9561wdxh0gifbf15qiz3vjckq8m"))))
7812 (properties `((upstream-name . "AbSim")))
7813 (build-system r-build-system)
7814 (propagated-inputs
7815 `(("r-ape" ,r-ape)
7816 ("r-powerlaw" ,r-powerlaw)))
7817 (home-page "https://cran.r-project.org/web/packages/AbSim/")
7818 (synopsis "Time resolved simulations of antibody repertoires")
7819 (description
7820 "This package provides simulation methods for the evolution of antibody repertoires.
7821 The heavy and light chain variable region of both human and C57BL/6 mice can
7822 be simulated in a time-dependent fashion. Both single lineages using one set of
7823 V-, D-, and J-genes or full repertoires can be simulated. The algorithm begins
7824 with an initial V-D-J recombination event, starting the first phylogenetic tree.
7825 Upon completion, the main loop of the algorithm begins, with each iteration
7826 representing one simulated time step. Various mutation events are possible at
7827 each time step, contributing to a diverse final repertoire.")
7828 (license license:gpl2)))
7829
7830 (define-public r-quic
7831 (package
7832 (name "r-quic")
7833 (version "1.1")
7834 (source
7835 (origin
7836 (method url-fetch)
7837 (uri (cran-uri "QUIC" version))
7838 (sha256
7839 (base32 "021bp9xbaih60qmss015ycblbv6d1dvb1z89y93zpqqnc2qhpv3c"))))
7840 (properties `((upstream-name . "QUIC")))
7841 (build-system r-build-system)
7842 (home-page "https://www.cs.utexas.edu/users/sustik/QUIC/")
7843 (synopsis "Regularized sparse inverse covariance matrix estimation")
7844 (description
7845 "This package implements the regularized Gaussian maximum likelihood
7846 estimation of the inverse of a covariance matrix. It uses Newton's method and
7847 coordinate descent to solve the regularized inverse covariance matrix
7848 estimation problem.")
7849 ;; The project home page states that the release is under GPLv3 or later.
7850 ;; The CRAN page only says GPL-3.
7851 (license license:gpl3+)))
7852
7853 (define-public r-abundant
7854 (package
7855 (name "r-abundant")
7856 (version "1.1")
7857 (source
7858 (origin
7859 (method url-fetch)
7860 (uri (cran-uri "abundant" version))
7861 (sha256
7862 (base32 "1m76qdmqvwpgm0sihazi2dna7cgsz9rljal18vgffb5wamwmg9k7"))))
7863 (build-system r-build-system)
7864 (propagated-inputs
7865 `(("r-quic" ,r-quic)))
7866 (home-page "https://cran.r-project.org/web/packages/abundant/")
7867 (synopsis "Abundant regression and high-dimensional principal fitted components")
7868 (description
7869 "This package provides tools to fit and predict with the high-dimensional
7870 principal fitted components model. This model is described by Cook, Forzani,
7871 and Rothman (2012) @url{doi:10.1214/11-AOS962}.")
7872 ;; The DESCRIPTION file states GPL-2, but since it directly depends on a
7873 ;; GPLv3+ package (QUIC) this likely means GPLv2+.
7874 (license license:gpl2+)))
7875
7876 (define-public r-ac3net
7877 (package
7878 (name "r-ac3net")
7879 (version "1.2.2")
7880 (source
7881 (origin
7882 (method url-fetch)
7883 (uri (cran-uri "Ac3net" version))
7884 (sha256
7885 (base32 "1ns4n0xxz6p34c11bj0k7nzgmyqr9mis2b0g5nfz37dbikndyqyz"))))
7886 (properties `((upstream-name . "Ac3net")))
7887 (build-system r-build-system)
7888 (propagated-inputs
7889 `(("r-data-table" ,r-data-table)))
7890 (home-page "https://cran.r-project.org/web/packages/Ac3net/")
7891 (synopsis "Inferring directional conservative causal core gene networks")
7892 (description "This package infers directional Conservative causal core
7893 (gene) networks (C3NET). This is a version of the algorithm C3NET with
7894 directional network.")
7895 (license license:gpl3+)))
7896
7897 (define-public r-aca
7898 (package
7899 (name "r-aca")
7900 (version "1.1")
7901 (source
7902 (origin
7903 (method url-fetch)
7904 (uri (cran-uri "ACA" version))
7905 (sha256
7906 (base32 "1i3hm27nvnkvc39xlh0d1blq8q0q02czmvgi3cazmjx3jvxay0vq"))))
7907 (properties `((upstream-name . "ACA")))
7908 (build-system r-build-system)
7909 (home-page "https://cran.r-project.org/web/packages/ACA/")
7910 (synopsis "Abrupt change-point or aberration detection in point series")
7911 (description
7912 "This package offers an interactive function for the detection of breakpoints in
7913 series.")
7914 ;; Any version of the GPL
7915 (license (list license:gpl2+ license:gpl3+))))
7916
7917 (define-public r-acceptancesampling
7918 (package
7919 (name "r-acceptancesampling")
7920 (version "1.0-6")
7921 (source
7922 (origin
7923 (method url-fetch)
7924 (uri (cran-uri "AcceptanceSampling" version))
7925 (sha256
7926 (base32 "1z3rmln63ki2kik9kinbwr9qhr32ggbmh4mm3xqy6di119n47ca9"))))
7927 (properties
7928 `((upstream-name . "AcceptanceSampling")))
7929 (build-system r-build-system)
7930 (home-page "https://cran.r-project.org/web/packages/AcceptanceSampling/")
7931 (synopsis "Creation and evaluation of acceptance sampling plans")
7932 (description
7933 "This @code{r-acceptancesampling} provides functionality for creating and evaluating
7934 acceptance sampling plans. Acceptance sampling is a methodology commonly used
7935 in quality control and improvement. International standards of acceptance
7936 sampling provide sampling plans for specific circumstances. The aim of this
7937 package is to provide an easy-to-use interface to visualize single, double or
7938 multiple sampling plans. In addition, methods have been provided to enable the
7939 user to assess sampling plans against pre-specified levels of performance, as
7940 measured by the probability of acceptance for a given level of quality in the
7941 lot.")
7942 (license license:gpl3+)))
7943
7944 (define-public r-acclma
7945 (package
7946 (name "r-acclma")
7947 (version "1.0")
7948 (source
7949 (origin
7950 (method url-fetch)
7951 (uri (cran-uri "ACCLMA" version))
7952 (sha256
7953 (base32 "1na27sp18fq12gp6vxgqw1ffsz2yi1d8xvrxbrzx5g1kqxrayy0v"))))
7954 (properties `((upstream-name . "ACCLMA")))
7955 (build-system r-build-system)
7956 (home-page "https://cran.r-project.org/web/packages/ACCLMA/")
7957 (synopsis "ACC & LMA graph plotting")
7958 (description
7959 "This package contains a function that imports data from a @acronym{CSV,
7960 Comma-Separated Values} file, or uses manually entered data from the format (x,
7961 y, weight) and plots the appropriate @acronym{ACC, Absolute Concentration
7962 Curve} vs @acronym{LOI, Line of Independence} graph and
7963 @acronym{LMA, @acronym{LOI} Minus @acronym{ACC}} graph. The main
7964 function is @code{plotLMA} (source file, header) that takes a data set and plots the
7965 appropriate @acronym{LMA} and @acronym{ACC} graphs. If no source file (a
7966 string) was passed, a manual data entry window is opened. The header parameter
7967 indicates by TRUE/FALSE (false by default) if the source @acronym{CSV} file has
7968 a header row or not. The dataset should contain only one independent variable
7969 (x) and one dependent variable (y) and can contain a weight for each
7970 observation.")
7971 (license license:gpl2)))
7972
7973 (define-public r-aspi
7974 (package
7975 (name "r-aspi")
7976 (version "0.2.0")
7977 (source
7978 (origin
7979 (method url-fetch)
7980 (uri (cran-uri "aspi" version))
7981 (sha256
7982 (base32 "0rhvxw243vvdv3hxa6pi343gcjc2cbxq1jzqirl9k1l4i3897l87"))))
7983 (build-system r-build-system)
7984 (home-page
7985 "https://cran.r-project.org/web/packages/aspi/")
7986 (synopsis
7987 "Analysis of symmetry of parasitic infections")
7988 (description
7989 "This package provides tools for the analysis and visualization of bilateral
7990 asymmetry in parasitic infections.")
7991 (license license:gpl3+)))
7992
7993 (define-public r-sandwich
7994 (package
7995 (name "r-sandwich")
7996 (version "2.5-1")
7997 (source
7998 (origin
7999 (method url-fetch)
8000 (uri (cran-uri "sandwich" version))
8001 (sha256
8002 (base32
8003 "1mk685b9wq7k566pbml52rj96i5h6b3vf215k9picgmq296nzvyv"))))
8004 (build-system r-build-system)
8005 (propagated-inputs
8006 `(("r-zoo" ,r-zoo)))
8007 (home-page "https://cran.r-project.org/web/packages/sandwich/")
8008 (synopsis "Robust Covariance Matrix Estimators")
8009 (description
8010 "This package provides model-robust standard error estimators for
8011 cross-sectional, time series, clustered, panel, and longitudinal data.")
8012 ;; Either version of the license.
8013 (license (list license:gpl2 license:gpl3))))
8014
8015 (define-public r-th-data
8016 (package
8017 (name "r-th-data")
8018 (version "1.0-10")
8019 (source
8020 (origin
8021 (method url-fetch)
8022 (uri (cran-uri "TH.data" version))
8023 (sha256
8024 (base32
8025 "0mgz7aj2d9abbmdr65zgmg1ddp3fdbs3mfj83r5xadh5ldkir2k1"))))
8026 (properties `((upstream-name . "TH.data")))
8027 (build-system r-build-system)
8028 (propagated-inputs
8029 `(("r-mass" ,r-mass)
8030 ("r-survival" ,r-survival)))
8031 (home-page "https://cran.r-project.org/web/packages/TH.data/")
8032 (synopsis "Shared data sets")
8033 (description
8034 "This package contains supporting data sets that are used in other
8035 packages maintained by Torsten Hothorn.")
8036 (license license:gpl3)))
8037
8038 (define-public r-multcomp
8039 (package
8040 (name "r-multcomp")
8041 (version "1.4-10")
8042 (source
8043 (origin
8044 (method url-fetch)
8045 (uri (cran-uri "multcomp" version))
8046 (sha256
8047 (base32
8048 "1kzmdn9jmz5bmhf3wsfr12ljbasmwsgcsfdia52k0bi6q0swdg19"))))
8049 (build-system r-build-system)
8050 (propagated-inputs
8051 `(("r-codetools" ,r-codetools)
8052 ("r-mvtnorm" ,r-mvtnorm)
8053 ("r-sandwich" ,r-sandwich)
8054 ("r-survival" ,r-survival)
8055 ("r-th-data" ,r-th-data)))
8056 (home-page "https://cran.r-project.org/web/packages/multcomp/")
8057 (synopsis "Simultaneous inference in general parametric models")
8058 (description
8059 "Simultaneous tests and confidence intervals for general linear
8060 hypotheses in parametric models, including linear, generalized linear, linear
8061 mixed effects, and survival models. The package includes demos reproducing
8062 analyzes presented in the book \"Multiple Comparisons Using R\" (Bretz,
8063 Hothorn, Westfall, 2010, CRC Press).")
8064 (license license:gpl2)))
8065
8066 (define-public r-emmeans
8067 (package
8068 (name "r-emmeans")
8069 (version "1.4.2")
8070 (source
8071 (origin
8072 (method url-fetch)
8073 (uri (cran-uri "emmeans" version))
8074 (sha256
8075 (base32
8076 "1sxwbh6sym2shrj7gva8q96ca2csqz3081q4d84avpxz15dfz1z1"))))
8077 (build-system r-build-system)
8078 (propagated-inputs
8079 `(("r-estimability" ,r-estimability)
8080 ("r-mvtnorm" ,r-mvtnorm)
8081 ("r-numderiv" ,r-numderiv)
8082 ("r-plyr" ,r-plyr)
8083 ("r-xtable" ,r-xtable)))
8084 (home-page "https://github.com/rvlenth/emmeans")
8085 (synopsis "Estimated marginal means, aka least-squares means")
8086 (description
8087 "This package provides tools to obtain @dfn{estimated marginal
8088 means} (EMMs) for many linear, generalized linear, and mixed models. It can
8089 be used to compute contrasts or linear functions of EMMs, trends, and
8090 comparisons of slopes.")
8091 ;; Either version of the license.
8092 (license (list license:gpl2 license:gpl3))))
8093
8094 (define-public r-pwr
8095 (package
8096 (name "r-pwr")
8097 (version "1.2-2")
8098 (source
8099 (origin
8100 (method url-fetch)
8101 (uri (cran-uri "pwr" version))
8102 (sha256
8103 (base32
8104 "0r5g781lr677vp3zyhgmi7r68c87l8gd05l1s3ffnxgn5wf043sm"))))
8105 (build-system r-build-system)
8106 (native-inputs
8107 `(("r-knitr" ,r-knitr)))
8108 (home-page "https://github.com/heliosdrm/pwr")
8109 (synopsis "Basic functions for power analysis")
8110 (description
8111 "This package provides power analysis functions along the lines of
8112 Cohen (1988).")
8113 (license license:gpl3+)))
8114
8115 (define-public r-libcoin
8116 (package
8117 (name "r-libcoin")
8118 (version "1.0-5")
8119 (source
8120 (origin
8121 (method url-fetch)
8122 (uri (cran-uri "libcoin" version))
8123 (sha256
8124 (base32
8125 "1cm9x1dlg9f7fh7n5nw3x4a7rl88c7ylrlc8x3rx4mq5w1j42x0a"))))
8126 (build-system r-build-system)
8127 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
8128 (home-page "https://cran.r-project.org/web/packages/libcoin")
8129 (synopsis "Linear test statistics for permutation inference")
8130 (description
8131 "This package provides basic infrastructure for linear test statistics
8132 and permutation inference in the framework of Strasser and Weber (1999).")
8133 (license license:gpl2)))
8134
8135 (define-public r-coin
8136 (package
8137 (name "r-coin")
8138 (version "1.3-1")
8139 (source
8140 (origin
8141 (method url-fetch)
8142 (uri (cran-uri "coin" version))
8143 (sha256
8144 (base32
8145 "0qi03fyqw42a2vnqcia5l2m1mzyarj2q1iblknx9n19bdsd53qjx"))))
8146 (build-system r-build-system)
8147 (propagated-inputs
8148 `(("r-libcoin" ,r-libcoin)
8149 ("r-matrixstats" ,r-matrixstats)
8150 ("r-modeltools" ,r-modeltools)
8151 ("r-multcomp" ,r-multcomp)
8152 ("r-mvtnorm" ,r-mvtnorm)
8153 ("r-survival" ,r-survival)))
8154 (home-page "http://coin.r-forge.r-project.org")
8155 (synopsis "Conditional inference procedures in a permutation test framework")
8156 (description
8157 "This package provides conditional inference procedures for the general
8158 independence problem including two-sample, K-sample (non-parametric ANOVA),
8159 correlation, censored, ordered and multivariate problems.")
8160 (license license:gpl2)))
8161
8162 (define-public r-bayesplot
8163 (package
8164 (name "r-bayesplot")
8165 (version "1.7.0")
8166 (source
8167 (origin
8168 (method url-fetch)
8169 (uri (cran-uri "bayesplot" version))
8170 (sha256
8171 (base32
8172 "0h23sbfny2hcipvvfhq5aiwdh1vanizn7f8lpb9kffypxhcd7v7w"))))
8173 (build-system r-build-system)
8174 (inputs
8175 `(("pandoc" ,ghc-pandoc)
8176 ("pandoc-citeproc" ,ghc-pandoc-citeproc)))
8177 (propagated-inputs
8178 `(("r-dplyr" ,r-dplyr)
8179 ("r-ggplot2" ,r-ggplot2)
8180 ("r-ggridges" ,r-ggridges)
8181 ("r-glue" ,r-glue)
8182 ("r-reshape2" ,r-reshape2)
8183 ("r-rlang" ,r-rlang)
8184 ("r-tibble" ,r-tibble)
8185 ("r-tidyselect" ,r-tidyselect)))
8186 (home-page "http://mc-stan.org/bayesplot")
8187 (synopsis "Plotting for Bayesian models")
8188 (description
8189 "This package provides plotting functions for posterior analysis, model
8190 checking, and MCMC diagnostics. The package is designed not only to provide
8191 convenient functionality for users, but also a common set of functions that
8192 can be easily used by developers working on a variety of R packages for
8193 Bayesian modeling.")
8194 (license license:gpl3+)))
8195
8196 (define-public r-tmb
8197 (package
8198 (name "r-tmb")
8199 (version "1.7.15")
8200 (source
8201 (origin
8202 (method url-fetch)
8203 (uri (cran-uri "TMB" version))
8204 (sha256
8205 (base32
8206 "1r2d8c5iazihba42sn33yarv0dcfiy989sx64zcf14zr8k6cgjzs"))))
8207 (properties `((upstream-name . "TMB")))
8208 (build-system r-build-system)
8209 (propagated-inputs
8210 `(("r-matrix" ,r-matrix)
8211 ("r-rcppeigen" ,r-rcppeigen)))
8212 (home-page "http://tmb-project.org")
8213 (synopsis "Template model builder: a general random effect tool")
8214 (description
8215 "With this tool, a user should be able to quickly implement complex
8216 random effect models through simple C++ templates. The package combines
8217 @code{CppAD} (C++ automatic differentiation), @code{Eigen} (templated
8218 matrix-vector library) and @code{CHOLMOD} (sparse matrix routines available
8219 from R) to obtain an efficient implementation of the applied Laplace
8220 approximation with exact derivatives. Key features are: Automatic sparseness
8221 detection, parallelism through BLAS and parallel user templates.")
8222 (license license:gpl2)))
8223
8224 (define-public r-sjstats
8225 (package
8226 (name "r-sjstats")
8227 (version "0.17.7")
8228 (source
8229 (origin
8230 (method url-fetch)
8231 (uri (cran-uri "sjstats" version))
8232 (sha256
8233 (base32 "029rl05p88bp01favz300m980r1khcx2a2kn88yqbnbgkjjgqqc6"))))
8234 (build-system r-build-system)
8235 (propagated-inputs
8236 `(("r-bayestestr" ,r-bayestestr)
8237 ("r-broom" ,r-broom)
8238 ("r-dplyr" ,r-dplyr)
8239 ("r-emmeans" ,r-emmeans)
8240 ("r-insight" ,r-insight)
8241 ("r-lme4" ,r-lme4)
8242 ("r-magrittr" ,r-magrittr)
8243 ("r-mass" ,r-mass)
8244 ("r-modelr" ,r-modelr)
8245 ("r-parameters" ,r-parameters)
8246 ("r-performance" ,r-performance)
8247 ("r-purrr" ,r-purrr)
8248 ("r-rlang" ,r-rlang)
8249 ("r-sjlabelled" ,r-sjlabelled)
8250 ("r-sjmisc" ,r-sjmisc)
8251 ("r-tidyr" ,r-tidyr)))
8252 (home-page "https://github.com/strengejacke/sjstats")
8253 (synopsis "Functions for common statistical computations")
8254 (description
8255 "This package provides a collection of convenient functions for common
8256 statistical computations, which are not directly provided by R's @code{base}
8257 or @code{stats} packages. This package aims at providing, first, shortcuts
8258 for statistical measures, which otherwise could only be calculated with
8259 additional effort. Second, these shortcut functions are generic, and can be
8260 applied not only to vectors, but also to other objects as well. The focus of
8261 most functions lies on summary statistics or fit measures for regression
8262 models, including generalized linear models, mixed effects models and Bayesian
8263 models.")
8264 (license license:gpl3)))
8265
8266 (define-public r-glmmtmb
8267 (package
8268 (name "r-glmmtmb")
8269 (version "0.2.3")
8270 (source
8271 (origin
8272 (method url-fetch)
8273 (uri (cran-uri "glmmTMB" version))
8274 (sha256
8275 (base32
8276 "035hkywa37bz555fv6znxd4hfcs5w884365wfnwk4jx5vann4vvb"))))
8277 (properties `((upstream-name . "glmmTMB")))
8278 (build-system r-build-system)
8279 (propagated-inputs
8280 `(("r-lme4" ,r-lme4)
8281 ("r-matrix" ,r-matrix)
8282 ("r-nlme" ,r-nlme)
8283 ("r-rcppeigen" ,r-rcppeigen)
8284 ("r-tmb" ,r-tmb)))
8285 (native-inputs
8286 `(("r-knitr" ,r-knitr))) ; for vignettes
8287 (home-page "https://github.com/glmmTMB")
8288 (synopsis "Generalized linear mixed models")
8289 (description
8290 "Fit linear and generalized linear mixed models with various extensions,
8291 including zero-inflation. The models are fitted using maximum likelihood
8292 estimation via the Template Model Builder. Random effects are assumed to be
8293 Gaussian on the scale of the linear predictor and are integrated out using the
8294 Laplace approximation. Gradients are calculated using automatic
8295 differentiation.")
8296 (license license:agpl3+)))
8297
8298 (define-public r-bayestestr
8299 (package
8300 (name "r-bayestestr")
8301 (version "0.4.0")
8302 (source
8303 (origin
8304 (method url-fetch)
8305 (uri (cran-uri "bayestestR" version))
8306 (sha256
8307 (base32
8308 "1d3f50rzjzgzclwd6j887dssyhv7hdq7pik9nnlr3w775v3f69zc"))))
8309 (properties `((upstream-name . "bayestestR")))
8310 (build-system r-build-system)
8311 (propagated-inputs
8312 `(("r-insight" ,r-insight)))
8313 (home-page "https://github.com/easystats/bayestestR")
8314 (synopsis "Describe Bayesian models and posterior distributions")
8315 (description
8316 "This package provides utilities to understand and describe posterior
8317 distributions and Bayesian models. It includes point-estimates such as
8318 @dfn{Maximum A Posteriori} (MAP), measures of dispersion such as @dfn{Highest
8319 Density Interval} (HDI), and indices used for null-hypothesis testing (such as
8320 ROPE percentage and pd).")
8321 (license license:gpl3)))
8322
8323 (define-public r-performance
8324 (package
8325 (name "r-performance")
8326 (version "0.4.0")
8327 (source
8328 (origin
8329 (method url-fetch)
8330 (uri (cran-uri "performance" version))
8331 (sha256
8332 (base32
8333 "0lxpmp9smn5r3xvfik36nr608wcpmmximjh0v2sckyvjf7hnb4s0"))))
8334 (build-system r-build-system)
8335 (propagated-inputs
8336 `(("r-bayestestr" ,r-bayestestr)
8337 ("r-insight" ,r-insight)))
8338 (home-page "https://easystats.github.io/performance/")
8339 (synopsis "Assessment of regression models performance")
8340 (description
8341 "This package provides utilities for computing measures to assess model
8342 quality, which are not directly provided by R's @code{base} or @code{stats}
8343 packages. These include e.g. measures like r-squared, intraclass correlation
8344 coefficient, root mean squared error or functions to check models for
8345 overdispersion, singularity or zero-inflation and more. Functions apply to a
8346 large variety of regression models, including generalized linear models, mixed
8347 effects models and Bayesian models.")
8348 (license license:gpl3)))
8349
8350 (define-public r-ggeffects
8351 (package
8352 (name "r-ggeffects")
8353 (version "0.13.0")
8354 (source
8355 (origin
8356 (method url-fetch)
8357 (uri (cran-uri "ggeffects" version))
8358 (sha256
8359 (base32
8360 "0ryfbaav0k874kbwmhbiv7fan93dmkpaimm1iw5kryjhhs3917lb"))))
8361 (build-system r-build-system)
8362 (propagated-inputs
8363 `(("r-dplyr" ,r-dplyr)
8364 ("r-insight" ,r-insight)
8365 ("r-magrittr" ,r-magrittr)
8366 ("r-mass" ,r-mass)
8367 ("r-purrr" ,r-purrr)
8368 ("r-rlang" ,r-rlang)
8369 ("r-sjlabelled" ,r-sjlabelled)
8370 ("r-sjmisc" ,r-sjmisc)))
8371 (home-page "https://github.com/strengejacke/ggeffects")
8372 (synopsis "Create tidy data frames of marginal effects for ggplot")
8373 (description
8374 "This package provides tools to compute marginal effects from statistical
8375 models and return the result as tidy data frames. These data frames are ready
8376 to use with the @code{ggplot2} package. Marginal effects can be calculated
8377 for many different models. Interaction terms, splines and polynomial terms
8378 are also supported. The two main functions are @code{ggpredict()} and
8379 @code{ggeffect()}. There is a generic @code{plot()} method to plot the
8380 results using @code{ggplot2}.")
8381 (license license:gpl3)))
8382
8383 (define-public r-effectsize
8384 (package
8385 (name "r-effectsize")
8386 (version "0.0.1")
8387 (source
8388 (origin
8389 (method url-fetch)
8390 (uri (cran-uri "effectsize" version))
8391 (sha256
8392 (base32
8393 "07vgmxdl75798hgdh90zysafjh97rmmj2wjjyr6xff4fbhi8rlkb"))))
8394 (properties `((upstream-name . "effectsize")))
8395 (build-system r-build-system)
8396 (propagated-inputs
8397 `(("r-bayestestr" ,r-bayestestr)
8398 ("r-insight" ,r-insight)
8399 ("r-parameters" ,r-parameters)))
8400 (home-page "https://github.com/easystats/effectsize")
8401 (synopsis "Indices of effect size and standardized parameters")
8402 (description
8403 "This package provides utilities to work with indices of effect size and
8404 standardized parameters for a wide variety of models, allowing computation and
8405 conversion of indices such as Cohen's d, r, odds, etc.")
8406 (license license:gpl3)))
8407
8408 (define-public r-sjplot
8409 (package
8410 (name "r-sjplot")
8411 (version "2.8.0")
8412 (source
8413 (origin
8414 (method url-fetch)
8415 (uri (cran-uri "sjPlot" version))
8416 (sha256
8417 (base32 "0ahz6v6bhvq1537inwakmrafs44hs2m9w0ra8q17fz626nn9rb9b"))))
8418 (properties `((upstream-name . "sjPlot")))
8419 (build-system r-build-system)
8420 (propagated-inputs
8421 `(("r-bayestestr" ,r-bayestestr)
8422 ("r-dplyr" ,r-dplyr)
8423 ("r-effectsize" ,r-effectsize)
8424 ("r-forcats" ,r-forcats)
8425 ("r-ggeffects" ,r-ggeffects)
8426 ("r-ggplot2" ,r-ggplot2)
8427 ("r-ggrepel" ,r-ggrepel)
8428 ("r-glmmtmb" ,r-glmmtmb)
8429 ("r-insight" ,r-insight)
8430 ("r-knitr" ,r-knitr)
8431 ("r-lme4" ,r-lme4)
8432 ("r-magrittr" ,r-magrittr)
8433 ("r-mass" ,r-mass)
8434 ("r-modelr" ,r-modelr)
8435 ("r-parameters" ,r-parameters)
8436 ("r-performance" ,r-performance)
8437 ("r-psych" ,r-psych)
8438 ("r-purrr" ,r-purrr)
8439 ("r-rlang" ,r-rlang)
8440 ("r-scales" ,r-scales)
8441 ("r-sjlabelled" ,r-sjlabelled)
8442 ("r-sjmisc" ,r-sjmisc)
8443 ("r-sjstats" ,r-sjstats)
8444 ("r-tidyr" ,r-tidyr)))
8445 (home-page "https://strengejacke.github.io/sjPlot/")
8446 (synopsis "Data visualization for statistics in social science")
8447 (description
8448 "This package represents a collection of plotting and table output
8449 functions for data visualization. Results of various statistical
8450 analyses (that are commonly used in social sciences) can be visualized using
8451 this package, including simple and cross tabulated frequencies, histograms,
8452 box plots, (generalized) linear models, mixed effects models, principal
8453 component analysis and correlation matrices, cluster analyses, scatter plots,
8454 stacked scales, effects plots of regression models (including interaction
8455 terms) and much more. This package supports labelled data.")
8456 (license license:gpl3)))
8457
8458 (define-public r-ini
8459 (package
8460 (name "r-ini")
8461 (version "0.3.1")
8462 (source
8463 (origin
8464 (method url-fetch)
8465 (uri (cran-uri "ini" version))
8466 (sha256
8467 (base32
8468 "04yqij344dwm0xqgara8xia42mlmij3i8711qbb5534w05a1l6bv"))))
8469 (build-system r-build-system)
8470 (home-page "https://github.com/dvdscripter/ini")
8471 (synopsis "Read and write configuration files")
8472 (description
8473 "This package provides tools to parse simple @code{.ini} configuration
8474 files to an structured list. Users can manipulate this resulting list with
8475 @code{lapply()} functions. This same structured list can be used to write
8476 back to file after modifications.")
8477 (license license:gpl3)))
8478
8479 (define-public r-gh
8480 (package
8481 (name "r-gh")
8482 (version "1.0.1")
8483 (source
8484 (origin
8485 (method url-fetch)
8486 (uri (cran-uri "gh" version))
8487 (sha256
8488 (base32
8489 "1llinfajb0g7006jd2w1hpskxpmkjhnqarcjb71r1qvsccb2ph7k"))))
8490 (build-system r-build-system)
8491 (propagated-inputs
8492 `(("r-httr" ,r-httr)
8493 ("r-ini" ,r-ini)
8494 ("r-jsonlite" ,r-jsonlite)))
8495 (home-page "https://github.com/r-lib/gh#readme")
8496 (synopsis "Access the GitHub API via R")
8497 (description
8498 "This package provides a minimal R client to access the GitHub API.")
8499 (license license:expat)))
8500
8501 (define-public r-fs
8502 (package
8503 (name "r-fs")
8504 (version "1.3.1")
8505 (source
8506 (origin
8507 (method url-fetch)
8508 (uri (cran-uri "fs" version))
8509 (sha256
8510 (base32
8511 "1g26rgx13dzigp2vrlld6h28q33lwbax97zvwdrq2pc3iz54v4yn"))))
8512 (build-system r-build-system)
8513 (propagated-inputs
8514 `(("r-rcpp" ,r-rcpp)))
8515 (native-inputs
8516 `(("pkg-config" ,pkg-config)))
8517 (home-page "http://fs.r-lib.org")
8518 (synopsis "Cross-platform file system operations based on libuv")
8519 (description
8520 "This package provides a cross-platform interface to file system
8521 operations, built on top of the libuv C library.")
8522 (license license:gpl3)))
8523
8524 (define-public r-clisymbols
8525 (package
8526 (name "r-clisymbols")
8527 (version "1.2.0")
8528 (source
8529 (origin
8530 (method url-fetch)
8531 (uri (cran-uri "clisymbols" version))
8532 (sha256
8533 (base32
8534 "1q7gi2zmykhzas9v8fdnbpdq7pzdcpbhim1yxvd2062l777g4j86"))))
8535 (build-system r-build-system)
8536 (home-page "https://github.com/gaborcsardi/clisymbols")
8537 (synopsis "Unicode symbols at the R prompt")
8538 (description
8539 "This package provides a small subset of Unicode symbols, that are useful
8540 when building command line applications. They fall back to alternatives on
8541 terminals that do not support Unicode.")
8542 (license license:expat)))
8543
8544 (define-public r-usethis
8545 (package
8546 (name "r-usethis")
8547 (version "1.5.1")
8548 (source
8549 (origin
8550 (method url-fetch)
8551 (uri (cran-uri "usethis" version))
8552 (sha256
8553 (base32
8554 "07an5wbikilg7cb3q6x5aykw8dfqnjrc3wpfb7gjmy0d9fh20fcy"))))
8555 (build-system r-build-system)
8556 (propagated-inputs
8557 `(("r-clipr" ,r-clipr)
8558 ("r-clisymbols" ,r-clisymbols)
8559 ("r-crayon" ,r-crayon)
8560 ("r-curl" ,r-curl)
8561 ("r-desc" ,r-desc)
8562 ("r-fs" ,r-fs)
8563 ("r-gh" ,r-gh)
8564 ("r-git2r" ,r-git2r)
8565 ("r-glue" ,r-glue)
8566 ("r-purrr" ,r-purrr)
8567 ("r-rlang" ,r-rlang)
8568 ("r-rprojroot" ,r-rprojroot)
8569 ("r-rstudioapi" ,r-rstudioapi)
8570 ("r-whisker" ,r-whisker)
8571 ("r-withr" ,r-withr)
8572 ("r-yaml" ,r-yaml)))
8573 (home-page "https://github.com/r-lib/usethis")
8574 (synopsis "Automate R package and project setup")
8575 (description
8576 "This package helps you to automate R package and project setup tasks
8577 that are otherwise performed manually. This includes setting up unit testing,
8578 test coverage, continuous integration, Git, GitHub integration, licenses,
8579 Rcpp, RStudio projects, and more.")
8580 (license license:gpl3)))
8581
8582 (define-public r-sessioninfo
8583 (package
8584 (name "r-sessioninfo")
8585 (version "1.1.1")
8586 (source
8587 (origin
8588 (method url-fetch)
8589 (uri (cran-uri "sessioninfo" version))
8590 (sha256
8591 (base32
8592 "0j5f3l58fynxx3v0w62vqpii7miabszgljpja36xx9s8hikh8sqn"))))
8593 (build-system r-build-system)
8594 (propagated-inputs
8595 `(("r-cli" ,r-cli)
8596 ("r-withr" ,r-withr)))
8597 (home-page "https://github.com/r-lib/sessioninfo#readme")
8598 (synopsis "R session information")
8599 (description
8600 "This package provides tools to query and print information about the
8601 current R session. It is similar to @code{utils::sessionInfo()}, but includes
8602 more information about packages, and where they were installed from.")
8603 (license license:gpl2)))
8604
8605 (define-public r-remotes
8606 (package
8607 (name "r-remotes")
8608 (version "2.1.0")
8609 (source
8610 (origin
8611 (method url-fetch)
8612 (uri (cran-uri "remotes" version))
8613 (sha256
8614 (base32
8615 "19v8dmnk9l4i9m64p7zgmj7y1vhnnwhi5kyn0k5d034zzkvchi49"))))
8616 (build-system r-build-system)
8617 (home-page "https://github.com/r-lib/remotes#readme")
8618 (synopsis "R package installation from remote repositories")
8619 (description
8620 "Download and install R packages stored in GitHub, BitBucket, or plain
8621 subversion or git repositories. This package is a lightweight replacement of
8622 the @code{install_*} functions in the @code{devtools} package. Indeed most of
8623 the code was copied over from @code{devtools}.")
8624 (license license:gpl2+)))
8625
8626 (define-public r-xopen
8627 (package
8628 (name "r-xopen")
8629 (version "1.0.0")
8630 (source
8631 (origin
8632 (method url-fetch)
8633 (uri (cran-uri "xopen" version))
8634 (sha256
8635 (base32
8636 "1vrvgdika1d63dwygynbv2wmd87ll8dji5dy89hj576n8hw601z2"))))
8637 (build-system r-build-system)
8638 (propagated-inputs
8639 `(("r-processx" ,r-processx)))
8640 (home-page "https://github.com/r-lib/xopen#readme")
8641 (synopsis "Open system files, URLs, anything")
8642 (description
8643 "This package provides a cross-platform solution to open files,
8644 directories or URLs with their associated programs.")
8645 (license license:expat)))
8646
8647 (define-public r-rcmdcheck
8648 (package
8649 (name "r-rcmdcheck")
8650 (version "1.3.3")
8651 (source
8652 (origin
8653 (method url-fetch)
8654 (uri (cran-uri "rcmdcheck" version))
8655 (sha256
8656 (base32
8657 "1d4kzgfqy72r6b7bn1j4znyksrycgypx1jjvpv9lrmvn37mpkdhs"))))
8658 (build-system r-build-system)
8659 (propagated-inputs
8660 `(("r-callr" ,r-callr)
8661 ("r-cli" ,r-cli)
8662 ("r-crayon" ,r-crayon)
8663 ("r-desc" ,r-desc)
8664 ("r-digest" ,r-digest)
8665 ("r-pkgbuild" ,r-pkgbuild)
8666 ("r-prettyunits" ,r-prettyunits)
8667 ("r-r6" ,r-r6)
8668 ("r-rprojroot" ,r-rprojroot)
8669 ("r-sessioninfo" ,r-sessioninfo)
8670 ("r-withr" ,r-withr)
8671 ("r-xopen" ,r-xopen)))
8672 (home-page "https://github.com/r-Lib/rcmdcheck#readme")
8673 (synopsis "Run R CMD check from R and capture results")
8674 (description
8675 "Run @code{R CMD check} from R programmatically, and capture the results
8676 of the individual checks.")
8677 (license license:expat)))
8678
8679 (define-public r-rapportools
8680 (package
8681 (name "r-rapportools")
8682 (version "1.0")
8683 (source
8684 (origin
8685 (method url-fetch)
8686 (uri (cran-uri "rapportools" version))
8687 (sha256
8688 (base32
8689 "1sgv4sc737i12arh5dc3263kjsz3dzg06qihfmrqyax94mv2d01b"))))
8690 (build-system r-build-system)
8691 (propagated-inputs
8692 `(("r-pander" ,r-pander)
8693 ("r-plyr" ,r-plyr)
8694 ("r-reshape" ,r-reshape)))
8695 (home-page "https://cran.r-project.org/web/packages/rapportools/")
8696 (synopsis "Miscellaneous helper functions with sane defaults for reporting")
8697 (description
8698 "This package provides helper functions that act as wrappers to more
8699 advanced statistical methods with the advantage of having sane defaults for
8700 quick reporting.")
8701 (license license:agpl3+)))
8702
8703 (define-public r-pander
8704 (package
8705 (name "r-pander")
8706 (version "0.6.3")
8707 (source
8708 (origin
8709 (method url-fetch)
8710 (uri (cran-uri "pander" version))
8711 (sha256
8712 (base32
8713 "1bd9sdghlsppmff18k5fg3i0visq9f4wc82rlhwq5m82bmgdgnyi"))))
8714 (build-system r-build-system)
8715 (propagated-inputs
8716 `(("r-digest" ,r-digest)
8717 ("r-rcpp" ,r-rcpp)))
8718 (home-page "https://rapporter.github.io/pander")
8719 (synopsis "Render R objects into Pandoc's markdown")
8720 (description
8721 "The main aim of the pander R package is to provide a minimal and easy
8722 tool for rendering R objects into Pandoc's markdown. The package is also
8723 capable of exporting/converting complex Pandoc documents (reports) in various
8724 ways.")
8725 ;; This package is licensed under either the AGPLv3+ or the very rarely
8726 ;; used OSL 3.0.
8727 (license license:agpl3+)))
8728
8729 (define-public r-summarytools
8730 (package
8731 (name "r-summarytools")
8732 (version "0.9.4")
8733 (source
8734 (origin
8735 (method url-fetch)
8736 (uri (cran-uri "summarytools" version))
8737 (sha256
8738 (base32
8739 "1n695baz56mg4f13xjjadfq0xalw5xsn6xicil0yap5hgi8fsr3a"))))
8740 (build-system r-build-system)
8741 (propagated-inputs
8742 `(("r-checkmate" ,r-checkmate)
8743 ("r-dplyr" ,r-dplyr)
8744 ("r-htmltools" ,r-htmltools)
8745 ("r-lubridate" ,r-lubridate)
8746 ("r-magick" ,r-magick)
8747 ("r-matrixstats" ,r-matrixstats)
8748 ("r-pander" ,r-pander)
8749 ("r-pryr" ,r-pryr)
8750 ("r-rapportools" ,r-rapportools)
8751 ("r-rcurl" ,r-rcurl)
8752 ("r-tibble" ,r-tibble)
8753 ("r-tidyr" ,r-tidyr)))
8754 (home-page "https://github.com/dcomtois/summarytools")
8755 (synopsis "Tools to quickly and neatly summarize data")
8756 (description
8757 "This package provides tools for data frame summaries, cross-tabulations,
8758 weight-enabled frequency tables and common univariate statistics in concise
8759 tables available in a variety of formats (plain ASCII, Markdown and HTML). A
8760 good point-of-entry for exploring data, both for experienced and new R
8761 users.")
8762 (license license:gpl2)))
8763
8764 (define-public r-lsei
8765 (package
8766 (name "r-lsei")
8767 (version "1.2-0")
8768 (source
8769 (origin
8770 (method url-fetch)
8771 (uri (cran-uri "lsei" version))
8772 (sha256
8773 (base32
8774 "1xl06fb3is744pxlh42wx5hn1h0ab1k31wnmsmh0524kxzcyp0a7"))))
8775 (build-system r-build-system)
8776 (native-inputs
8777 `(("gfortran" ,gfortran)))
8778 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
8779 (synopsis "Solve regression problems under equality/inequality constraints")
8780 (description
8781 "It contains functions that solve least squares linear regression
8782 problems under linear equality/inequality constraints. Functions for solving
8783 quadratic programming problems are also available, which transform such
8784 problems into least squares ones first.")
8785 (license license:gpl2+)))
8786
8787 (define-public r-npsurv
8788 (package
8789 (name "r-npsurv")
8790 (version "0.4-0")
8791 (source
8792 (origin
8793 (method url-fetch)
8794 (uri (cran-uri "npsurv" version))
8795 (sha256
8796 (base32
8797 "1wq4c9yfha5azjhrn40iiqkshmvh611sa90jp3lh82n4bl9zfk20"))))
8798 (build-system r-build-system)
8799 (propagated-inputs
8800 `(("r-lsei" ,r-lsei)))
8801 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
8802 (synopsis "Nonparametric survival analysis")
8803 (description
8804 "This package contains functions for non-parametric survival analysis of
8805 exact and interval-censored observations.")
8806 (license license:gpl2+)))
8807
8808 (define-public r-clusteval
8809 (package
8810 (name "r-clusteval")
8811 (version "0.1")
8812 (source
8813 (origin
8814 (method url-fetch)
8815 (uri (cran-uri "clusteval" version))
8816 (sha256
8817 (base32
8818 "1ld0bdl4fy8dsfzm3k7a37cyxc6pfc9qs31x4pxd3z5rslghz7rj"))))
8819 (build-system r-build-system)
8820 (propagated-inputs
8821 `(("r-mvtnorm" ,r-mvtnorm)
8822 ("r-rcpp" ,r-rcpp)))
8823 (home-page "https://cran.r-project.org/web/packages/clusteval/")
8824 (synopsis "Evaluation of clustering algorithms")
8825 (description
8826 "This R package provides a suite of tools to evaluate clustering
8827 algorithms, clusterings, and individual clusters.")
8828 (license license:expat)))
8829
8830 (define-public r-tweedie
8831 (package
8832 (name "r-tweedie")
8833 (version "2.3.2")
8834 (source
8835 (origin
8836 (method url-fetch)
8837 (uri (cran-uri "tweedie" version))
8838 (sha256
8839 (base32
8840 "10fv998qjxsyx0h94fi0xbh6xbf24nwgh254n9zfnmix9vk2cqls"))))
8841 (build-system r-build-system)
8842 (native-inputs `(("gfortran" ,gfortran)))
8843 (home-page "https://cran.r-project.org/web/packages/tweedie/")
8844 (synopsis "Evaluation of Tweedie exponential family models")
8845 (description
8846 "Maximum likelihood computations for Tweedie families, including the
8847 series expansion (Dunn and Smyth, 2005; <doi10.1007/s11222-005-4070-y>) and
8848 the Fourier inversion (Dunn and Smyth, 2008; <doi:10.1007/s11222-007-9039-6>),
8849 and related methods.")
8850 (license license:gpl2+)))
8851
8852 (define-public r-rcppgsl
8853 (package
8854 (name "r-rcppgsl")
8855 (version "0.3.7")
8856 (source
8857 (origin
8858 (method url-fetch)
8859 (uri (cran-uri "RcppGSL" version))
8860 (sha256
8861 (base32 "0cnw2k7cfqrm79r6j283aybflxig80x4n4rjkfp2317wf10mrsa5"))))
8862 (properties `((upstream-name . "RcppGSL")))
8863 (build-system r-build-system)
8864 (propagated-inputs
8865 `(("r-rcpp" ,r-rcpp)
8866 ("gsl" ,gsl)))
8867 (native-inputs
8868 `(("r-knitr" ,r-knitr))) ; for vignettes
8869 (home-page "https://cran.r-project.org/web/packages/RcppGSL/")
8870 (synopsis "Rcpp integration for GSL vectors and matrices")
8871 (description
8872 "The GNU Scientific Library (or GSL) is a collection of numerical
8873 routines for scientific computing. It is particularly useful for C and C++
8874 programs as it provides a standard C interface to a wide range of mathematical
8875 routines. There are over 1000 functions in total with an extensive test
8876 suite. The RcppGSL package provides an easy-to-use interface between GSL data
8877 structures and R using concepts from Rcpp which is itself a package that eases
8878 the interfaces between R and C++.")
8879 (license license:gpl2+)))
8880
8881 (define-public r-mvabund
8882 (package
8883 (name "r-mvabund")
8884 (version "4.0.1")
8885 (source
8886 (origin
8887 (method url-fetch)
8888 (uri (cran-uri "mvabund" version))
8889 (sha256
8890 (base32
8891 "0la935gsiryfc0zixxr1dqj0av271x96pqxbi3bp6dksbw5gm68k"))))
8892 (build-system r-build-system)
8893 (propagated-inputs
8894 `(("r-mass" ,r-mass)
8895 ("r-rcpp" ,r-rcpp)
8896 ("r-rcppgsl" ,r-rcppgsl)
8897 ("r-statmod" ,r-statmod)
8898 ("r-tweedie" ,r-tweedie)))
8899 (home-page "https://cran.r-project.org/web/packages/mvabund/")
8900 (synopsis "Statistical methods for analysing multivariate abundance data")
8901 (description
8902 "This package provides a set of tools for displaying, modeling and
8903 analysing multivariate abundance data in community ecology.")
8904 (license license:lgpl2.1+)))
8905
8906 (define-public r-afex
8907 (package
8908 (name "r-afex")
8909 (version "0.25-1")
8910 (source
8911 (origin
8912 (method url-fetch)
8913 (uri (cran-uri "afex" version))
8914 (sha256
8915 (base32
8916 "12n020y7rjm7402940gkqxa5j901p093f381i23p66fa3fyrshkf"))))
8917 (build-system r-build-system)
8918 (propagated-inputs
8919 `(("r-car" ,r-car)
8920 ("r-lme4" ,r-lme4)
8921 ("r-lmertest" ,r-lmertest)
8922 ("r-pbkrtest" ,r-pbkrtest)
8923 ("r-reshape2" ,r-reshape2)))
8924 (home-page "https://afex.singmann.science/")
8925 (synopsis "Analysis of factorial experiments")
8926 (description
8927 "This package provides convenience functions for analyzing factorial
8928 experiments using ANOVA or mixed models.")
8929 (license license:gpl2+)))
8930
8931 (define-public r-lmertest
8932 (package
8933 (name "r-lmertest")
8934 (version "3.1-0")
8935 (source
8936 (origin
8937 (method url-fetch)
8938 (uri (cran-uri "lmerTest" version))
8939 (sha256
8940 (base32
8941 "1nkz8cmxa5yb8q4i65bmhnn5pd4bhwcyjplyscynb24z3f64xp9b"))))
8942 (properties `((upstream-name . "lmerTest")))
8943 (build-system r-build-system)
8944 (propagated-inputs
8945 `(("r-ggplot2" ,r-ggplot2)
8946 ("r-lme4" ,r-lme4)
8947 ("r-mass" ,r-mass)
8948 ("r-numderiv" ,r-numderiv)))
8949 (home-page "https://github.com/runehaubo/lmerTestR")
8950 (synopsis "Tests in linear mixed effects models")
8951 (description
8952 "This package provides p-values in type I, II or III anova and summary
8953 tables for @code{lmer} model fits via Satterthwaite's degrees of freedom
8954 method. A Kenward-Roger method is also available via the @code{pbkrtest}
8955 package. Model selection methods include step, drop1 and anova-like tables
8956 for random effects (ranova). Methods for Least-Square means (LS-means) and
8957 tests of linear contrasts of fixed effects are also available.")
8958 (license license:gpl2+)))
8959
8960 (define-public r-r2glmm
8961 (package
8962 (name "r-r2glmm")
8963 (version "0.1.2")
8964 (source
8965 (origin
8966 (method url-fetch)
8967 (uri (cran-uri "r2glmm" version))
8968 (sha256
8969 (base32
8970 "0iim92blpa59vgz97c2pi05yhbjjmaffdbkbmk5kplfb2vmazgiy"))))
8971 (build-system r-build-system)
8972 (propagated-inputs
8973 `(("r-afex" ,r-afex)
8974 ("r-data-table" ,r-data-table)
8975 ("r-dplyr" ,r-dplyr)
8976 ("r-ggplot2" ,r-ggplot2)
8977 ("r-gridextra" ,r-gridextra)
8978 ("r-lmertest" ,r-lmertest)
8979 ("r-mass" ,r-mass)
8980 ("r-matrix" ,r-matrix)
8981 ("r-mgcv" ,r-mgcv)
8982 ("r-pbkrtest" ,r-pbkrtest)))
8983 (home-page "https://github.com/bcjaeger/r2glmm")
8984 (synopsis "Compute R squared for mixed (multilevel) models")
8985 (description
8986 "This package computes model and semi partial R squared with confidence
8987 limits for the linear and generalized linear mixed model (LMM and GLMM). The
8988 R squared measure from L. J. Edwards et al. (2008) is extended to the GLMM
8989 using @dfn{penalized quasi-likelihood} (PQL) estimation (see Jaeger et
8990 al. (2016)).")
8991 (license license:gpl2)))
8992
8993 (define-public r-weights
8994 (package
8995 (name "r-weights")
8996 (version "1.0")
8997 (source
8998 (origin
8999 (method url-fetch)
9000 (uri (cran-uri "weights" version))
9001 (sha256
9002 (base32
9003 "0186bfpkhxngrshac6bpg37alp6slwhwd43inrm8hqg0vhpfgc4c"))))
9004 (build-system r-build-system)
9005 (propagated-inputs
9006 `(("r-gdata" ,r-gdata)
9007 ("r-hmisc" ,r-hmisc)
9008 ("r-mice" ,r-mice)))
9009 (home-page
9010 "https://cran.r-project.org/web/packages/weights/")
9011 (synopsis "Weighting and weighted statistics")
9012 (description "This package Provides a variety of functions for producing
9013 simple weighted statistics, such as weighted Pearson's correlations, partial
9014 correlations, Chi-Squared statistics, histograms, and t-tests. Also now
9015 includes some software for quickly recoding survey data and plotting point
9016 estimates from interaction terms in regressions (and multiply imputed
9017 regressions). NOTE: Weighted partial correlation calculations pulled to
9018 address a bug.")
9019 (license license:gpl2+)))
9020
9021 (define-public r-rcppannoy
9022 (package
9023 (name "r-rcppannoy")
9024 (version "0.0.14")
9025 (source
9026 (origin
9027 (method url-fetch)
9028 (uri (cran-uri "RcppAnnoy" version))
9029 (sha256
9030 (base32
9031 "1wiigx5g5788j6lyc3f6bs1rsvc4alyc3052g35hxl1giinxmhn4"))))
9032 (properties `((upstream-name . "RcppAnnoy")))
9033 (build-system r-build-system)
9034 (propagated-inputs
9035 `(("r-rcpp" ,r-rcpp)))
9036 (native-inputs
9037 `(("r-knitr" ,r-knitr))) ; for vignettes
9038 (home-page "https://cran.r-project.org/web/packages/RcppAnnoy/")
9039 (synopsis "Rcpp bindings for Annoy, a library for Approximate Nearest Neighbors")
9040 (description
9041 "Annoy is a small C++ library for Approximate Nearest Neighbors written
9042 for efficient memory usage as well an ability to load from and save to disk.
9043 This package provides an R interface.")
9044 ;; Annoy is released under ASL 2.0, but this wrapper is released under
9045 ;; GPLv2+.
9046 (license (list license:gpl2+ license:asl2.0))))
9047
9048 (define-public r-rcpphnsw
9049 (package
9050 (name "r-rcpphnsw")
9051 (version "0.2.0")
9052 (source
9053 (origin
9054 (method url-fetch)
9055 (uri (cran-uri "RcppHNSW" version))
9056 (sha256
9057 (base32
9058 "0gqdkw7vkcm544rz45g0hplg836ygzbfwk9gh9wr0817icvdb3qv"))))
9059 (properties `((upstream-name . "RcppHNSW")))
9060 (build-system r-build-system)
9061 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9062 (home-page "https://cran.r-project.org/web/packages/RcppHNSW/")
9063 (synopsis "Rcpp bindings for hnswlib, a library for approximate nearest neighbors")
9064 (description
9065 "Hnswlib is a C++ library for approximate nearest neighbors. This
9066 package provides a minimal R interface by relying on the Rcpp package.")
9067 ;; hnswlib is released under Version 2.0 of the Apache License.
9068 (license (list license:gpl3 license:asl2.0))))
9069
9070 (define-public r-rcppparallel
9071 (package
9072 (name "r-rcppparallel")
9073 (version "4.4.4")
9074 (source
9075 (origin
9076 (method url-fetch)
9077 (uri (cran-uri "RcppParallel" version))
9078 (sha256
9079 (base32
9080 "0p13f2mywjr7gmskf8ri4y8p5yr1bvr4xrpw2w11vdvafwz1vcia"))))
9081 (properties `((upstream-name . "RcppParallel")))
9082 (build-system r-build-system)
9083 (home-page "http://rcppcore.github.io/RcppParallel")
9084 (synopsis "Parallel programming tools for Rcpp")
9085 (description
9086 "This package provides high level functions for parallel programming with
9087 Rcpp. For example, the @code{parallelFor()} function can be used to convert
9088 the work of a standard serial @code{for} loop into a parallel one and the
9089 @code{parallelReduce()} function can be used for accumulating aggregates or
9090 other values.")
9091 (license license:gpl2)))
9092
9093 (define-public r-ncdf4
9094 (package
9095 (name "r-ncdf4")
9096 (version "1.17")
9097 (source
9098 (origin
9099 (method url-fetch)
9100 (uri (cran-uri "ncdf4" version))
9101 (sha256
9102 (base32
9103 "1xls44ln2zjrrlimxl8v4bk2ni3g45c9j0gxdnjx31rikmrc95fv"))))
9104 (build-system r-build-system)
9105 (inputs
9106 `(("netcdf" ,netcdf)
9107 ("zlib" ,zlib)))
9108 (home-page "https://cran.r-project.org/web/packages/ncdf4/index.html")
9109 (synopsis "R interface to Unidata netCDF format data files")
9110 (description
9111 "This package provides a high-level R interface to data files written
9112 using Unidata's netCDF library (version 4 or earlier), which are binary data
9113 files that are portable across platforms and include metadata information in
9114 addition to the data sets. Using this package, netCDF files can be opened and
9115 data sets read in easily. It is also easy to create new netCDF dimensions,
9116 variables, and files, in either version 3 or 4 format, and manipulate existing
9117 netCDF files.")
9118 (license license:gpl3+)))
9119
9120 (define-public r-biocmanager
9121 (package
9122 (name "r-biocmanager")
9123 (version "1.30.10")
9124 (source
9125 (origin
9126 (method url-fetch)
9127 (uri (cran-uri "BiocManager" version))
9128 (sha256
9129 (base32 "03n9s2vf7vgpgb5alpxwamf9xfkn32cbzngwyn6spq1bnh9a9dzk"))))
9130 (properties `((upstream-name . "BiocManager")))
9131 (build-system r-build-system)
9132 (home-page "https://cran.r-project.org/web/packages/BiocManager/")
9133 (synopsis "Access the Bioconductor project package repository")
9134 (description
9135 "This package provides a convenient tool to install and update
9136 Bioconductor packages.")
9137 (license license:artistic2.0)))
9138
9139 (define-public r-rgl
9140 (package
9141 (name "r-rgl")
9142 (version "0.100.30")
9143 (source
9144 (origin
9145 (method url-fetch)
9146 (uri (cran-uri "rgl" version))
9147 (sha256
9148 (base32
9149 "0rzqzskcwf2ah4yr62x5rjwf7yh90d43h39gk7jmfc5lc08zaxc5"))))
9150 (build-system r-build-system)
9151 (native-inputs
9152 `(("pkg-config" ,pkg-config)))
9153 (inputs
9154 `(("freetype" ,freetype)
9155 ("libpng" ,libpng)
9156 ("glu" ,glu)
9157 ("libx11" ,libx11)
9158 ("ghc-pandoc" ,ghc-pandoc)
9159 ("zlib" ,zlib)))
9160 (propagated-inputs
9161 `(("r-crosstalk" ,r-crosstalk)
9162 ("r-htmltools" ,r-htmltools)
9163 ("r-htmlwidgets" ,r-htmlwidgets)
9164 ("r-jsonlite" ,r-jsonlite)
9165 ("r-knitr" ,r-knitr)
9166 ("r-magrittr" ,r-magrittr)
9167 ("r-manipulatewidget" ,r-manipulatewidget)
9168 ("r-shiny" ,r-shiny)))
9169 (home-page "https://r-forge.r-project.org/projects/rgl/")
9170 (synopsis "3D visualization using OpenGL")
9171 (description
9172 "This package provides medium to high level functions for 3D interactive graphics,
9173 including functions modelled on base graphics (@code{plot3d()}, etc.) as well
9174 as functions for constructing representations of geometric
9175 objects (@code{cube3d()}, etc.). Output may be on screen using OpenGL, or to
9176 various standard 3D file formats including WebGL, PLY, OBJ, STL as well as 2D
9177 image formats, including PNG, Postscript, SVG, PGF.")
9178 ;; Any version of the GPL.
9179 (license (list license:gpl2+ license:gpl3+))))
9180
9181 (define-public r-multicool
9182 (package
9183 (name "r-multicool")
9184 (version "0.1-10")
9185 (source
9186 (origin
9187 (method url-fetch)
9188 (uri (cran-uri "multicool" version))
9189 (sha256
9190 (base32
9191 "1ybg9piya9psqg42w9i3zsnavbxhkfklfwl7cb420i5nkq6wpc2v"))))
9192 (build-system r-build-system)
9193 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9194 (home-page "https://cran.r-project.org/web/packages/multicool/")
9195 (synopsis "Permutations of multisets in cool-lex order")
9196 (description
9197 "This package provides a set of tools to permute multisets without loops
9198 or hash tables and to generate integer partitions. Cool-lex order is similar
9199 to colexicographical order.")
9200 (license license:gpl2)))
9201
9202 (define-public r-misc3d
9203 (package
9204 (name "r-misc3d")
9205 (version "0.8-4")
9206 (source
9207 (origin
9208 (method url-fetch)
9209 (uri (cran-uri "misc3d" version))
9210 (sha256
9211 (base32
9212 "0qjzpw3h09qi2gfz52b7nhzd95p7yyxsd03fldc9wzzn6wi3vpkm"))))
9213 (build-system r-build-system)
9214 (home-page "https://cran.r-project.org/web/packages/misc3d/")
9215 (synopsis "Miscellaneous 3D Plots")
9216 (description
9217 "This package provides a collection of miscellaneous 3d plots, including
9218 isosurfaces.")
9219 ;; Any version of the GPL.
9220 (license (list license:gpl2+ license:gpl3+))))
9221
9222 (define-public r-ks
9223 (package
9224 (name "r-ks")
9225 (version "1.11.6")
9226 (source
9227 (origin
9228 (method url-fetch)
9229 (uri (cran-uri "ks" version))
9230 (sha256
9231 (base32 "0hcccjfqnzdxkmnfzq8c5a7yhc138azwyl7rp29d1vl1jawwrwfq"))))
9232 (build-system r-build-system)
9233 (propagated-inputs
9234 `(("r-fnn" ,r-fnn)
9235 ("r-kernlab" ,r-kernlab)
9236 ("r-kernsmooth" ,r-kernsmooth)
9237 ("r-matrix" ,r-matrix)
9238 ("r-mclust" ,r-mclust)
9239 ("r-mgcv" ,r-mgcv)
9240 ("r-multicool" ,r-multicool)
9241 ("r-mvtnorm" ,r-mvtnorm)))
9242 (home-page "http://www.mvstat.net/tduong/")
9243 (synopsis "Kernel smoothing")
9244 (description
9245 "This package provides kernel smoothers for univariate and multivariate
9246 data, including density functions, density derivatives, cumulative
9247 distributions, modal clustering, discriminant analysis, and two-sample
9248 hypothesis testing.")
9249 ;; Either version of the GPL.
9250 (license (list license:gpl2 license:gpl3))))
9251
9252 (define-public r-feature
9253 (package
9254 (name "r-feature")
9255 (version "1.2.13")
9256 (source
9257 (origin
9258 (method url-fetch)
9259 (uri (cran-uri "feature" version))
9260 (sha256
9261 (base32
9262 "07hkw0bv38naj2hdsx4xxrm2dngi6w3rbvgr7s50bjic8hlgy1ra"))))
9263 (build-system r-build-system)
9264 (propagated-inputs
9265 `(("r-ks" ,r-ks)
9266 ("r-misc3d" ,r-misc3d)
9267 ("r-rgl" ,r-rgl)))
9268 (home-page "http://www.mvstat.net/tduong/")
9269 (synopsis "Inferential feature significance for kernel density estimation")
9270 (description
9271 "The feature package contains functions to display and compute kernel
9272 density estimates, significant gradient and significant curvature regions.
9273 Significant gradient and/or curvature regions often correspond to significant
9274 features (e.g. local modes).")
9275 ;; Either version of the GPL.
9276 (license (list license:gpl2 license:gpl3))))
9277
9278 (define-public r-arm
9279 (package
9280 (name "r-arm")
9281 (version "1.10-1")
9282 (source
9283 (origin
9284 (method url-fetch)
9285 (uri (cran-uri "arm" version))
9286 (sha256
9287 (base32
9288 "0vvp90jygajd6ydky57z66wqjq9msfbl88irj5jbsray574mh4bg"))))
9289 (build-system r-build-system)
9290 (propagated-inputs
9291 `(("r-abind" ,r-abind)
9292 ("r-coda" ,r-coda)
9293 ("r-lme4" ,r-lme4)
9294 ("r-mass" ,r-mass)
9295 ("r-matrix" ,r-matrix)
9296 ("r-nlme" ,r-nlme)))
9297 (home-page "https://cran.r-project.org/web/packages/arm/")
9298 (synopsis "Data analysis using regression and multilevel/hierarchical models")
9299 (description
9300 "This package provides functions to accompany A. Gelman and J. Hill,
9301 Data Analysis Using Regression and Multilevel/Hierarchical Models, Cambridge
9302 University Press, 2007.")
9303 (license license:gpl3+)))
9304
9305 (define-public r-circular
9306 (package
9307 (name "r-circular")
9308 (version "0.4-93")
9309 (source
9310 (origin
9311 (method url-fetch)
9312 (uri (cran-uri "circular" version))
9313 (sha256
9314 (base32
9315 "0hki85rs8wc5950pjaw28q54rly2napfbcrx3pchlfap6wwy5kkn"))))
9316 (build-system r-build-system)
9317 (propagated-inputs
9318 `(("r-boot" ,r-boot)
9319 ("r-mvtnorm" ,r-mvtnorm)))
9320 (native-inputs
9321 `(("gfortran" ,gfortran)))
9322 (home-page "https://cran.r-project.org/web/packages/circular/")
9323 (synopsis "Circular statistics")
9324 (description
9325 "This package provides tools for circular statistics, from \"Topics in
9326 circular Statistics\" (2001) S. Rao Jammalamadaka and A. SenGupta, World
9327 Scientific.")
9328 (license license:gpl2+)))
9329
9330 (define-public r-activity
9331 (package
9332 (name "r-activity")
9333 (version "1.3")
9334 (source
9335 (origin
9336 (method url-fetch)
9337 (uri (cran-uri "activity" version))
9338 (sha256
9339 (base32
9340 "12imqj366dp6pam5gap6ji56p5wf1073xz5g4iikfxf5l8snxw92"))))
9341 (build-system r-build-system)
9342 (propagated-inputs
9343 `(("r-circular" ,r-circular)
9344 ("r-insol" ,r-insol)
9345 ("r-pbapply" ,r-pbapply)))
9346 (home-page "https://cran.r-project.org/web/packages/activity/")
9347 (synopsis "Animal activity statistics")
9348 (description
9349 "This package provides functions to fit kernel density functions to
9350 animal activity time data; plot activity distributions; quantify overall
9351 levels of activity; statistically compare activity metrics through
9352 bootstrapping; and evaluate variation in linear variables with time (or other
9353 circular variables).")
9354 (license license:gpl3)))
9355
9356 (define-public r-ouch
9357 (package
9358 (name "r-ouch")
9359 (version "2.14-1")
9360 (source
9361 (origin
9362 (method url-fetch)
9363 (uri (cran-uri "ouch" version))
9364 (sha256
9365 (base32
9366 "0ddf9bw5lhj8vb0ja78jf99i0smq4rgmm842k4a4ygap41vdyn2b"))))
9367 (build-system r-build-system)
9368 (propagated-inputs `(("r-subplex" ,r-subplex)))
9369 (home-page "http://kingaa.github.io/ouch/")
9370 (synopsis "Ornstein-Uhlenbeck models for phylogenetic comparative hypotheses")
9371 (description
9372 "This package provides tools to fit and compare Ornstein-Uhlenbeck models
9373 for evolution along a phylogenetic tree.")
9374 (license license:gpl2+)))
9375
9376 (define-public r-fmsb
9377 (package
9378 (name "r-fmsb")
9379 (version "0.6.3")
9380 (source
9381 (origin
9382 (method url-fetch)
9383 (uri (cran-uri "fmsb" version))
9384 (sha256
9385 (base32
9386 "1n29bnyp20pvpk2lsa9fblsj5w7amp14snc74pk5w3yr5y6rj0s5"))))
9387 (build-system r-build-system)
9388 (home-page "http://minato.sip21c.org/msb/")
9389 (synopsis "Functions for medical statistics book with demographic data")
9390 (description
9391 "This package provides several utility functions for the book entitled
9392 \"Practices of Medical and Health Data Analysis using R\" (Pearson Education
9393 Japan, 2007) with Japanese demographic data and some demographic analysis
9394 related functions.")
9395 (license license:gpl2+)))
9396
9397 (define-public r-stabledist
9398 (package
9399 (name "r-stabledist")
9400 (version "0.7-1")
9401 (source
9402 (origin
9403 (method url-fetch)
9404 (uri (cran-uri "stabledist" version))
9405 (sha256
9406 (base32
9407 "0scar396wiq6wkbkvwp4qrxqc1m075y56p37i6iry5rw796p1i86"))))
9408 (build-system r-build-system)
9409 (home-page "http://www.rmetrics.org")
9410 (synopsis "Stable distribution functions")
9411 (description
9412 "This package provides density, probability and quantile functions, and
9413 random number generation for (skew) stable distributions, using the
9414 parametrizations of Nolan.")
9415 (license license:gpl2+)))
9416
9417 (define-public r-gsl
9418 (package
9419 (name "r-gsl")
9420 (version "2.1-6")
9421 (source
9422 (origin
9423 (method url-fetch)
9424 (uri (cran-uri "gsl" version))
9425 (sha256
9426 (base32
9427 "0p4rh7npp6qbfc5sxjq86xjn7c9ivf3pd60qf1hldwckjqin7m7m"))))
9428 (build-system r-build-system)
9429 (inputs
9430 `(("gsl" ,gsl)))
9431 (home-page "https://cran.r-project.org/web/packages/gsl")
9432 (synopsis "Wrapper for the GNU Scientific Library")
9433 (description
9434 "This package provides an R wrapper for the special functions and quasi
9435 random number generators of the GNU Scientific Library.")
9436 (license license:gpl2+)))
9437
9438 (define-public r-adgoftest
9439 (package
9440 (name "r-adgoftest")
9441 (version "0.3")
9442 (source
9443 (origin
9444 (method url-fetch)
9445 (uri (cran-uri "ADGofTest" version))
9446 (sha256
9447 (base32
9448 "0ik817qzqp6kfbckjp1z7srlma0w6z2zcwykh0jdiv7nahwk3ncw"))))
9449 (properties `((upstream-name . "ADGofTest")))
9450 (build-system r-build-system)
9451 (home-page "https://cran.r-project.org/web/packages/ADGofTest")
9452 (synopsis "Anderson-Darling GoF test")
9453 (description
9454 "This package provides an implementation of the Anderson-Darling GoF test
9455 with p-value calculation based on Marsaglia's 2004 paper \"Evaluating the
9456 Anderson-Darling Distribution\".")
9457 ;; Any version of the GPL.
9458 (license license:gpl3+)))
9459
9460 (define-public r-softimpute
9461 (package
9462 (name "r-softimpute")
9463 (version "1.4")
9464 (source
9465 (origin
9466 (method url-fetch)
9467 (uri (cran-uri "softImpute" version))
9468 (sha256
9469 (base32
9470 "07cxbzkl08q58m1455i139952rmryjlic4s2f2hscl5zxxmfdxcq"))))
9471 (properties `((upstream-name . "softImpute")))
9472 (build-system r-build-system)
9473 (propagated-inputs
9474 `(("r-matrix" ,r-matrix)))
9475 (native-inputs
9476 `(("gfortran" ,gfortran)))
9477 (home-page "https://cran.r-project.org/web/packages/softImpute")
9478 (synopsis "Matrix completion via iterative soft-thresholded SVD")
9479 (description
9480 "This package provides iterative methods for matrix completion that use
9481 nuclear-norm regularization. The package includes procedures for centering
9482 and scaling rows, columns or both, and for computing low-rank @dfn{single
9483 value decompositions} (SVDs) on large sparse centered matrices (i.e. principal
9484 components).")
9485 (license license:gpl2)))
9486
9487 (define-public r-fftwtools
9488 (package
9489 (name "r-fftwtools")
9490 (version "0.9-8")
9491 (source
9492 (origin
9493 (method url-fetch)
9494 (uri (cran-uri "fftwtools" version))
9495 (sha256
9496 (base32
9497 "1nqvpzda281rxi1cmwajxxsn3sc3gz7scv8bvs5jm34kf36whha6"))))
9498 (build-system r-build-system)
9499 (inputs `(("fftw" ,fftw)))
9500 (home-page "https://github.com/krahim/fftwtools")
9501 (synopsis "Wrapper for FFTW3")
9502 (description
9503 "This package provides a wrapper for several FFTW functions. It provides
9504 access to the two-dimensional FFT, the multivariate FFT, and the
9505 one-dimensional real to complex FFT using the FFTW3 library. The package
9506 includes the functions @code{fftw()} and @code{mvfftw()} which are designed to
9507 mimic the functionality of the R functions @code{fft()} and @code{mvfft()}.
9508 The FFT functions have a parameter that allows them to not return the
9509 redundant complex conjugate when the input is real data.")
9510 (license license:gpl2+)))
9511
9512 (define-public r-tiff
9513 (package
9514 (name "r-tiff")
9515 (version "0.1-5")
9516 (source
9517 (origin
9518 (method url-fetch)
9519 (uri (cran-uri "tiff" version))
9520 (sha256
9521 (base32
9522 "0asf2bws3x3yd3g3ixvk0f86b0mdf882pl8xrqlxrkbgjalyc54m"))))
9523 (build-system r-build-system)
9524 (inputs
9525 `(("libtiff" ,libtiff)
9526 ("libjpeg" ,libjpeg)
9527 ("zlib" ,zlib)))
9528 (home-page "http://www.rforge.net/tiff/")
9529 (synopsis "Read and write TIFF images")
9530 (description
9531 "This package provides an easy and simple way to read, write and display
9532 bitmap images stored in the TIFF format. It can read and write both files and
9533 in-memory raw vectors.")
9534 ;; Either of these two license versions.
9535 (license (list license:gpl2 license:gpl3))))
9536
9537 (define-public r-nlp
9538 (package
9539 (name "r-nlp")
9540 (version "0.2-0")
9541 (source
9542 (origin
9543 (method url-fetch)
9544 (uri (cran-uri "NLP" version))
9545 (sha256
9546 (base32
9547 "0xbhkrnxcbf322jfw31xcn4y2gnk5y7ccq1bz4h3prf44h0whr7w"))))
9548 (properties `((upstream-name . "NLP")))
9549 (build-system r-build-system)
9550 (home-page "https://cran.r-project.org/web/packages/NLP/")
9551 (synopsis "Natural language processing infrastructure")
9552 (description
9553 "This package provides basic classes and methods for Natural Language
9554 Processing.")
9555 (license license:gpl3)))
9556
9557 (define-public r-tm
9558 (package
9559 (name "r-tm")
9560 (version "0.7-6")
9561 (source
9562 (origin
9563 (method url-fetch)
9564 (uri (cran-uri "tm" version))
9565 (sha256
9566 (base32
9567 "0spv43kjbpxq3rdxx8ysgrncjyc35ydiwk7gp8n4sig45iqyz59r"))))
9568 (properties `((upstream-name . "tm")))
9569 (build-system r-build-system)
9570 (propagated-inputs
9571 `(("r-bh" ,r-bh)
9572 ("r-nlp" ,r-nlp)
9573 ("r-rcpp" ,r-rcpp)
9574 ("r-slam" ,r-slam)
9575 ("r-xml2" ,r-xml2)))
9576 (home-page "http://tm.r-forge.r-project.org/")
9577 (synopsis "Text mining package")
9578 (description
9579 "This package provides a framework for text mining applications within R.")
9580 (license license:gpl3)))
9581
9582 (define-public r-waveslim
9583 (package
9584 (name "r-waveslim")
9585 (version "1.7.5.1")
9586 (source
9587 (origin
9588 (method url-fetch)
9589 (uri (cran-uri "waveslim" version))
9590 (sha256
9591 (base32
9592 "0mky0nb4xxp8rybp87mxw2f1q6k400wpxv01zr4injv7ja6028xk"))))
9593 (build-system r-build-system)
9594 (native-inputs
9595 `(("gfortran" ,gfortran)))
9596 (home-page "http://waveslim.blogspot.com")
9597 (synopsis "Basic wavelet routines for signal processing")
9598 (description
9599 "This package provides basic wavelet routines for time series (1D),
9600 image (2D) and array (3D) analysis. The code provided here is based on
9601 wavelet methodology developed in Percival and Walden (2000); Gencay, Selcuk
9602 and Whitcher (2001); the dual-tree complex wavelet transform (DTCWT) from
9603 Kingsbury (1999, 2001) as implemented by Selesnick; and Hilbert wavelet
9604 pairs (Selesnick 2001, 2002).")
9605 (license license:bsd-3)))
9606
9607 (define-public r-wordcloud
9608 (package
9609 (name "r-wordcloud")
9610 (version "2.6")
9611 (source
9612 (origin
9613 (method url-fetch)
9614 (uri (cran-uri "wordcloud" version))
9615 (sha256
9616 (base32
9617 "0j96yyvm6bcrrpbdx4w26piqx44a0vbsr3px9cb4zk8a8da6jwak"))))
9618 (build-system r-build-system)
9619 (propagated-inputs
9620 `(("r-rcolorbrewer" ,r-rcolorbrewer)
9621 ("r-rcpp" ,r-rcpp)
9622 ;; The "tm" package is only "suggested" according to CRAN, but the
9623 ;; wordcloud package cannot be loaded without it.
9624 ("r-tm" ,r-tm)))
9625 (home-page "https://cran.r-project.org/web/packages/wordcloud")
9626 (synopsis "Word clouds")
9627 (description
9628 "This package provides functionality to create pretty word clouds,
9629 visualize differences and similarity between documents, and avoid
9630 over-plotting in scatter plots with text.")
9631 (license license:lgpl2.1)))
9632
9633 (define-public r-colorramps
9634 (package
9635 (name "r-colorramps")
9636 (version "2.3")
9637 (source
9638 (origin
9639 (method url-fetch)
9640 (uri (cran-uri "colorRamps" version))
9641 (sha256
9642 (base32
9643 "0shbjh83x1axv4drm5r3dwgbyv70idih8z4wlzjs4hiac2qfl41z"))))
9644 (properties `((upstream-name . "colorRamps")))
9645 (build-system r-build-system)
9646 (home-page "https://cran.r-project.org/web/packages/colorRamps")
9647 (synopsis "Build color tables")
9648 (description "This package provides features to build gradient color
9649 maps.")
9650 ;; Any version of the GPL
9651 (license license:gpl3+)))
9652
9653 (define-public r-tidytree
9654 (package
9655 (name "r-tidytree")
9656 (version "0.3.0")
9657 (source
9658 (origin
9659 (method url-fetch)
9660 (uri (cran-uri "tidytree" version))
9661 (sha256
9662 (base32 "1sbfwcxf9v1lhpa0392b49b6qfjrq7nlqz2djqzk5aknj9j64zvy"))))
9663 (build-system r-build-system)
9664 (propagated-inputs
9665 `(("r-ape" ,r-ape)
9666 ("r-dplyr" ,r-dplyr)
9667 ("r-lazyeval" ,r-lazyeval)
9668 ("r-magrittr" ,r-magrittr)
9669 ("r-rlang" ,r-rlang)
9670 ("r-tibble" ,r-tibble)))
9671 (home-page "https://github.com/GuangchuangYu/tidytree")
9672 (synopsis "Tidy tool for phylogenetic tree data manipulation")
9673 (description
9674 "Phylogenetic trees generally contain multiple components including nodes,
9675 edges, branches and associated data. This package provides an approach to
9676 convert tree objects to tidy data frames. It also provides tidy interfaces to
9677 manipulate tree data.")
9678 (license license:artistic2.0)))
9679
9680 (define-public r-rvcheck
9681 (package
9682 (name "r-rvcheck")
9683 (version "0.1.6")
9684 (source
9685 (origin
9686 (method url-fetch)
9687 (uri (cran-uri "rvcheck" version))
9688 (sha256
9689 (base32 "11n3qxapxcqsa0771s9q8n95kxmfyflya1d6wz4mm0lz0i6q55ia"))))
9690 (build-system r-build-system)
9691 (propagated-inputs
9692 `(("r-biocmanager" ,r-biocmanager)
9693 ("r-rlang" ,r-rlang)))
9694 (home-page "https://cran.r-project.org/web/packages/rvcheck")
9695 (synopsis "R package version check")
9696 (description
9697 "This package provides tools to check the latest release version of R and
9698 R packages (on CRAN, Bioconductor or Github).")
9699 (license license:artistic2.0)))
9700
9701 (define-public r-docopt
9702 (package
9703 (name "r-docopt")
9704 (version "0.6.1")
9705 (source
9706 (origin
9707 (method url-fetch)
9708 (uri (cran-uri "docopt" version))
9709 (sha256
9710 (base32
9711 "06zknnd0c5s2y0hbddzdlr3m63ib783izpck6pgz7sjbab5pd068"))))
9712 (build-system r-build-system)
9713 (home-page "https://github.com/docopt/docopt.R")
9714 (synopsis "Command-line interface specification language")
9715 (description
9716 "This package enables you to define a command-line interface by just
9717 giving it a description in the specific format.")
9718 (license license:expat)))
9719
9720 (define-public r-sparsesvd
9721 (package
9722 (name "r-sparsesvd")
9723 (version "0.2")
9724 (source
9725 (origin
9726 (method url-fetch)
9727 (uri (cran-uri "sparsesvd" version))
9728 (sha256
9729 (base32
9730 "1xm969fjq3fv1p2sqza2apz8picibj4s2agpwf1sx9nwn3b587qs"))))
9731 (build-system r-build-system)
9732 (propagated-inputs `(("r-matrix" ,r-matrix)))
9733 (home-page "http://tedlab.mit.edu/~dr/SVDLIBC/")
9734 (synopsis "Sparse truncated singular value decomposition")
9735 (description
9736 "This package provides a Wrapper around the SVDLIBC library
9737 for (truncated) singular value decomposition of a sparse matrix. Currently,
9738 only sparse real matrices in Matrix package format are supported.")
9739 ;; SVDLIBC is released under BSD-2. The R interface is released under
9740 ;; BSD-3.
9741 (license (list license:bsd-3 license:bsd-2))))
9742
9743 (define-public r-speedglm
9744 (package
9745 (name "r-speedglm")
9746 (version "0.3-2")
9747 (source
9748 (origin
9749 (method url-fetch)
9750 (uri (cran-uri "speedglm" version))
9751 (sha256
9752 (base32
9753 "1b25zimk0z7ad62yacqdg0zk0qs0jja4i918ym942xfw4j1z3jjz"))))
9754 (build-system r-build-system)
9755 (propagated-inputs
9756 `(("r-mass" ,r-mass)
9757 ("r-matrix" ,r-matrix)))
9758 (home-page "https://cran.r-project.org/web/packages/speedglm")
9759 (synopsis "Fit linear and generalized linear models to large data sets")
9760 (description
9761 "This package provides tools for fitting linear models and generalized
9762 linear models to large data sets by updating algorithms.")
9763 ;; Any version of the GPL
9764 (license license:gpl2+)))
9765
9766 (define-public r-densityclust
9767 (package
9768 (name "r-densityclust")
9769 (version "0.3")
9770 (source
9771 (origin
9772 (method url-fetch)
9773 (uri (cran-uri "densityClust" version))
9774 (sha256
9775 (base32
9776 "1zry0vafajzmr37aylglxfvwplhdygbkb9cvzvh8cy0xgnjrnx13"))))
9777 (properties `((upstream-name . "densityClust")))
9778 (build-system r-build-system)
9779 (propagated-inputs
9780 `(("r-fnn" ,r-fnn)
9781 ("r-ggplot2" ,r-ggplot2)
9782 ("r-ggrepel" ,r-ggrepel)
9783 ("r-gridextra" ,r-gridextra)
9784 ("r-rcolorbrewer" ,r-rcolorbrewer)
9785 ("r-rcpp" ,r-rcpp)
9786 ("r-rtsne" ,r-rtsne)))
9787 (home-page "https://cran.r-project.org/web/packages/densityClust")
9788 (synopsis "Clustering by fast search and find of density peaks")
9789 (description
9790 "This package provides an improved implementation (based on k-nearest
9791 neighbors) of the density peak clustering algorithm, originally described by
9792 Alex Rodriguez and Alessandro Laio (Science, 2014 vol. 344). It can handle
9793 large datasets (> 100,000 samples) very efficiently.")
9794 (license license:gpl2+)))
9795
9796 (define-public r-combinat
9797 (package
9798 (name "r-combinat")
9799 (version "0.0-8")
9800 (source
9801 (origin
9802 (method url-fetch)
9803 (uri (cran-uri "combinat" version))
9804 (sha256
9805 (base32
9806 "1h9hr88gigihc4na7lb5i7rn4az1xa7sb34zvnznaj6pdrmwy4qm"))))
9807 (build-system r-build-system)
9808 (home-page "https://cran.r-project.org/web/packages/combinat")
9809 (synopsis "Combinatorics utilities")
9810 (description "This package provides assorted routines for combinatorics.")
9811 (license license:gpl2)))
9812
9813 (define-public r-qlcmatrix
9814 (package
9815 (name "r-qlcmatrix")
9816 (version "0.9.7")
9817 (source
9818 (origin
9819 (method url-fetch)
9820 (uri (cran-uri "qlcMatrix" version))
9821 (sha256
9822 (base32
9823 "0iqkcvvy8rxlk0s83sjq57dd6fadb18p5z31lzy0gnzv1hsy1x8y"))))
9824 (properties `((upstream-name . "qlcMatrix")))
9825 (build-system r-build-system)
9826 (propagated-inputs
9827 `(("r-docopt" ,r-docopt)
9828 ("r-matrix" ,r-matrix)
9829 ("r-slam" ,r-slam)
9830 ("r-sparsesvd" ,r-sparsesvd)))
9831 (home-page "https://cran.r-project.org/web/packages/qlcMatrix")
9832 (synopsis "Sparse matrix functions for quantitative language comparison")
9833 (description
9834 "This package provides an extension of the functionality of the Matrix
9835 package for using sparse matrices. Some of the functions are very general,
9836 while other are highly specific for the special data format used for
9837 @dfn{quantitative language comparison} (QLC).")
9838 (license license:gpl3)))
9839
9840 (define-public r-ddrtree
9841 (package
9842 (name "r-ddrtree")
9843 (version "0.1.5")
9844 (source
9845 (origin
9846 (method url-fetch)
9847 (uri (cran-uri "DDRTree" version))
9848 (sha256
9849 (base32
9850 "16s5fjw7kwlxhrkzdny62sx32fvmg3rxjc3wrh6krd31jh1fqlfk"))))
9851 (properties `((upstream-name . "DDRTree")))
9852 (build-system r-build-system)
9853 (propagated-inputs
9854 `(("r-bh" ,r-bh)
9855 ("r-irlba" ,r-irlba)
9856 ("r-rcpp" ,r-rcpp)
9857 ("r-rcppeigen" ,r-rcppeigen)))
9858 (home-page "https://cran.r-project.org/web/packages/DDRTree")
9859 (synopsis "Learning principal graphs with DDRTree")
9860 (description
9861 "This package provides an implementation of the framework of
9862 @dfn{reversed graph embedding} (RGE) which projects data into a reduced
9863 dimensional space while constructs a principal tree which passes through the
9864 middle of the data simultaneously. DDRTree shows superiority to
9865 alternatives (Wishbone, DPT) for inferring the ordering as well as the
9866 intrinsic structure of single cell genomics data. In general, it could be
9867 used to reconstruct the temporal progression as well as the bifurcation
9868 structure of any data type.")
9869 (license license:asl2.0)))
9870
9871 (define-public r-corpcor
9872 (package
9873 (name "r-corpcor")
9874 (version "1.6.9")
9875 (source
9876 (origin
9877 (method url-fetch)
9878 (uri (cran-uri "corpcor" version))
9879 (sha256
9880 (base32
9881 "1hi3i9d3841snppq1ks5pd8cliq1b4rm4dpsczmfqvwksg8snkrf"))))
9882 (build-system r-build-system)
9883 (home-page "http://strimmerlab.org/software/corpcor/")
9884 (synopsis "Efficient estimation of covariance and (partial) correlation")
9885 (description
9886 "This package implements a James-Stein-type shrinkage estimator for the
9887 covariance matrix, with separate shrinkage for variances and correlations.
9888 Furthermore, functions are available for fast singular value decomposition,
9889 for computing the pseudoinverse, and for checking the rank and positive
9890 definiteness of a matrix.")
9891 (license license:gpl3+)))
9892
9893 (define-public r-rspectra
9894 (package
9895 (name "r-rspectra")
9896 (version "0.15-0")
9897 (source
9898 (origin
9899 (method url-fetch)
9900 (uri (cran-uri "RSpectra" version))
9901 (sha256
9902 (base32
9903 "1ab975scdqaxdna9sayjl6l14hz991y0pc8c8ah48w000616km8s"))))
9904 (properties `((upstream-name . "RSpectra")))
9905 (build-system r-build-system)
9906 (propagated-inputs
9907 `(("r-matrix" ,r-matrix)
9908 ("r-rcpp" ,r-rcpp)
9909 ("r-rcppeigen" ,r-rcppeigen)))
9910 (home-page "https://github.com/yixuan/RSpectra")
9911 (synopsis "Solvers for large-scale Eigenvalue and SVD problems")
9912 (description
9913 "This package provides an R interface to the Spectra library for
9914 large-scale eigenvalue and SVD problems. It is typically used to compute a
9915 few eigenvalues/vectors of an n by n matrix, e.g., the k largest eigenvalues,
9916 which is usually more efficient than @code{eigen()} if k << n.")
9917 ;; MPL 2 or later.
9918 (license license:mpl2.0)))
9919
9920 (define-public r-vbsr
9921 (package
9922 (name "r-vbsr")
9923 (version "0.0.5")
9924 (source
9925 (origin
9926 (method url-fetch)
9927 (uri (cran-uri "vbsr" version))
9928 (sha256
9929 (base32
9930 "1avskbxxyinjjdga4rnghcfvd4sypv4m39ysfaij5avvmi89bx3b"))))
9931 (build-system r-build-system)
9932 (home-page "https://cran.r-project.org/web/packages/vbsr")
9933 (synopsis "Variational Bayes spike regression regularized linear models")
9934 (description
9935 "This package provides an efficient algorithm for solving ultra-sparse
9936 regularized regression models using a variational Bayes algorithm with a spike
9937 prior. The algorithm is solved on a path, with coordinate updates, and is
9938 capable of generating very sparse models. Very general model
9939 diagnostics for controlling type-1 errors are also provided.")
9940 (license license:gpl2)))
9941
9942 (define-public r-flare
9943 (package
9944 (name "r-flare")
9945 (version "1.6.0.2")
9946 (source
9947 (origin
9948 (method url-fetch)
9949 (uri (cran-uri "flare" version))
9950 (sha256
9951 (base32
9952 "1ybrsx1djqldw0l5l1iz4pfh6xxb8ckkg1ric7wnsr51wm9ljlh5"))))
9953 (build-system r-build-system)
9954 (propagated-inputs
9955 `(("r-igraph" ,r-igraph)
9956 ("r-lattice" ,r-lattice)
9957 ("r-mass" ,r-mass)
9958 ("r-matrix" ,r-matrix)))
9959 (home-page "https://cran.r-project.org/web/packages/flare")
9960 (synopsis "Family of Lasso regression implementations")
9961 (description
9962 "This package provides implementations of a family of Lasso variants
9963 including Dantzig Selector, LAD Lasso, SQRT Lasso, Lq Lasso for estimating
9964 high dimensional sparse linear models.")
9965 (license license:gpl2)))
9966
9967 (define-public r-lassopv
9968 (package
9969 (name "r-lassopv")
9970 (version "0.2.0")
9971 (source
9972 (origin
9973 (method url-fetch)
9974 (uri (cran-uri "lassopv" version))
9975 (sha256
9976 (base32
9977 "0yawnjw063jypk3riy9xab9cmliv6c9dnabi18670khd3gzb2r9z"))))
9978 (build-system r-build-system)
9979 (propagated-inputs `(("r-lars" ,r-lars)))
9980 (home-page "https://github.com/lingfeiwang/lassopv")
9981 (synopsis "Non-parametric p-value estimation for predictors in Lasso")
9982 (description
9983 "This package enables you to estimate the p-values for predictors x
9984 against target variable y in Lasso regression, using the regularization
9985 strength when each predictor enters the active set of regularization path for
9986 the first time as the statistic.")
9987 (license license:gpl3)))
9988
9989 (define-public r-splitstackshape
9990 (package
9991 (name "r-splitstackshape")
9992 (version "1.4.8")
9993 (source
9994 (origin
9995 (method url-fetch)
9996 (uri (cran-uri "splitstackshape" version))
9997 (sha256
9998 (base32
9999 "0mpyf2kkfdl69pdc6brl1r6101vyc6pgr7z17s55ppg3y71k4q35"))))
10000 (build-system r-build-system)
10001 (propagated-inputs
10002 `(("r-data-table" ,r-data-table)))
10003 (home-page "https://github.com/mrdwab/splitstackshape")
10004 (synopsis "Stack and reshape datasets after splitting concatenated values")
10005 (description
10006 "Online data collection tools like Google Forms often export
10007 multiple-response questions with data concatenated in cells. The
10008 @code{concat.split} (cSplit) family of functions provided by this package
10009 splits such data into separate cells. This package also includes functions to
10010 stack groups of columns and to reshape wide data, even when the data are
10011 \"unbalanced\"---something which @code{reshape} (from base R) does not handle,
10012 and which @code{melt} and @code{dcast} from @code{reshape2} do not easily
10013 handle.")
10014 (license license:gpl3)))
10015
10016 (define-public r-tfmpvalue
10017 (package
10018 (name "r-tfmpvalue")
10019 (version "0.0.8")
10020 (source
10021 (origin
10022 (method url-fetch)
10023 (uri (cran-uri "TFMPvalue" version))
10024 (sha256
10025 (base32
10026 "0h9qkl15k8v17v3g9bdnfwvh2s04ywjgg5y0xn2077dmywlja1bd"))))
10027 (properties `((upstream-name . "TFMPvalue")))
10028 (build-system r-build-system)
10029 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
10030 (home-page "https://github.com/ge11232002/TFMPvalue")
10031 (synopsis "P-value computation for position weight matrices")
10032 (description
10033 "In putative @dfn{Transcription Factor Binding Sites} (TFBSs)
10034 identification from sequence/alignments, we are interested in the significance
10035 of certain match scores. TFMPvalue provides the accurate calculation of a
10036 p-value with a score threshold for position weight matrices, or the score with
10037 a given p-value. It is an interface to code originally made available by
10038 Helene Touzet and Jean-Stephane Varre, 2007, Algorithms Mol Biol:2, 15.
10039 Touzet and Varre (2007).")
10040 (license license:gpl2)))
10041
10042 (define-public r-rnifti
10043 (package
10044 (name "r-rnifti")
10045 (version "1.0.0")
10046 (source
10047 (origin
10048 (method url-fetch)
10049 (uri (cran-uri "RNifti" version))
10050 (sha256
10051 (base32
10052 "0l61hjnzv043ibpkgrhc0yngaqmc58lkvii8j1dzh022z5wbqrj8"))))
10053 (properties `((upstream-name . "RNifti")))
10054 (build-system r-build-system)
10055 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
10056 (home-page "https://github.com/jonclayden/RNifti")
10057 (synopsis "Fast R and C++ access to NIfTI images")
10058 (description
10059 "This package provides very fast read and write access to images stored
10060 in the NIfTI-1 and ANALYZE-7.5 formats, with seamless synchronisation between
10061 compiled C and interpreted R code. It also provides a C/C++ API that can be
10062 used by other packages.")
10063 (license license:gpl2)))
10064
10065 (define-public r-shades
10066 (package
10067 (name "r-shades")
10068 (version "1.4.0")
10069 (source
10070 (origin
10071 (method url-fetch)
10072 (uri (cran-uri "shades" version))
10073 (sha256
10074 (base32
10075 "1zg95sjhrfvbdlfc387g9p0vnb8nb6agdk1mb3wq3kwkm2da0bqj"))))
10076 (build-system r-build-system)
10077 (home-page "https://github.com/jonclayden/shades")
10078 (synopsis "Simple color manipulation")
10079 (description
10080 "This package provides functions for easily manipulating colors,
10081 creating color scales and calculating color distances.")
10082 (license license:bsd-3)))
10083
10084 (define-public r-ore
10085 (package
10086 (name "r-ore")
10087 (version "1.6.3")
10088 (source
10089 (origin
10090 (method url-fetch)
10091 (uri (cran-uri "ore" version))
10092 (sha256
10093 (base32 "1vh6w3arrhgkfjjjw7ci91xmz4wpfr3cmwd5zkqch89dgn07skkv"))))
10094 (build-system r-build-system)
10095 (home-page "https://github.com/jonclayden/ore")
10096 (synopsis "R interface to the Onigmo regular expression library")
10097 (description
10098 "This package provides an alternative to R's built-in functionality for
10099 handling regular expressions, based on the Onigmo library. It offers
10100 first-class compiled regex objects, partial matching and function-based
10101 substitutions, amongst other features.")
10102 (license license:bsd-3)))
10103
10104 (define-public r-reportr
10105 (package
10106 (name "r-reportr")
10107 (version "1.3.0")
10108 (source
10109 (origin
10110 (method url-fetch)
10111 (uri (cran-uri "reportr" version))
10112 (sha256
10113 (base32
10114 "0zynplxqvbmf23cm2rsz3wz2jx6mv55z94mn1k44ny3lx625cnpw"))))
10115 (build-system r-build-system)
10116 (propagated-inputs `(("r-ore" ,r-ore)))
10117 (home-page "https://github.com/jonclayden/reportr")
10118 (synopsis "General message and error reporting system")
10119 (description
10120 "This package provides a system for reporting messages, which offers
10121 certain useful features over the standard R system, such as the incorporation
10122 of output consolidation, message filtering, assertions, expression
10123 substitution, automatic generation of stack traces for debugging, and
10124 conditional reporting based on the current \"output level\".")
10125 (license license:gpl2)))
10126
10127 (define-public r-tractor-base
10128 (package
10129 (name "r-tractor-base")
10130 (version "3.3.2")
10131 (source
10132 (origin
10133 (method url-fetch)
10134 (uri (cran-uri "tractor.base" version))
10135 (sha256
10136 (base32
10137 "0y5gm0y4chl30f5qqq8qiiw4j8g32s4i9xrvyp3cwg902kf2p86i"))))
10138 (properties `((upstream-name . "tractor.base")))
10139 (build-system r-build-system)
10140 (propagated-inputs
10141 `(("r-ore" ,r-ore)
10142 ("r-reportr" ,r-reportr)
10143 ("r-rnifti" ,r-rnifti)
10144 ("r-shades" ,r-shades)))
10145 (home-page "http://www.tractor-mri.org.uk")
10146 (synopsis "Read, manipulate and visualize magnetic resonance images")
10147 (description
10148 "This package provides functions for working with magnetic resonance
10149 images. It supports reading and writing of popular file formats (DICOM,
10150 Analyze, NIfTI-1, NIfTI-2, MGH); interactive and non-interactive
10151 visualization; flexible image manipulation; metadata and sparse image
10152 handling.")
10153 (license license:gpl2)))
10154
10155 (define-public r-grimport
10156 (package
10157 (name "r-grimport")
10158 (version "0.9-2")
10159 (source
10160 (origin
10161 (method url-fetch)
10162 (uri (cran-uri "grImport" version))
10163 (sha256
10164 (base32
10165 "0n3y6dzy8s0ifvyrgwbly6cl14lmgd54dyi74s5i984apszpsp16"))))
10166 (properties `((upstream-name . "grImport")))
10167 (build-system r-build-system)
10168 (inputs
10169 `(("ghostscript" ,ghostscript)))
10170 (propagated-inputs
10171 `(("r-xml" ,r-xml)))
10172 (home-page "https://cran.r-project.org/web/packages/grImport")
10173 (synopsis "Convert, import, and draw PostScript pictures")
10174 (description
10175 "This package provides functions for converting, importing, and drawing
10176 PostScript pictures in R plots.")
10177 (license license:gpl2+)))
10178
10179 (define-public r-grimport2
10180 (package
10181 (name "r-grimport2")
10182 (version "0.1-5")
10183 (source
10184 (origin
10185 (method url-fetch)
10186 (uri (cran-uri "grImport2" version))
10187 (sha256
10188 (base32
10189 "0dyb3nrrvxnkk9q5b136bdivcz1jj3ajx1kscm3k0kkpqjif0pls"))))
10190 (properties `((upstream-name . "grImport2")))
10191 (build-system r-build-system)
10192 (propagated-inputs
10193 `(("r-base64enc" ,r-base64enc)
10194 ("r-jpeg" ,r-jpeg)
10195 ("r-png" ,r-png)
10196 ("r-xml" ,r-xml)))
10197 (home-page "https://cran.r-project.org/web/packages/grImport2/")
10198 (synopsis "Import SVG graphics")
10199 (description
10200 "This package provides functions for importing external vector images and
10201 drawing them as part of R plots. This package is different from the
10202 @code{grImport} package because, where that package imports PostScript format
10203 images, this package imports SVG format images. Furthermore, this package
10204 imports a specific subset of SVG, so external images must be preprocessed
10205 using a package like @code{rsvg} to produce SVG that this package can import.
10206 SVG features that are not supported by R graphics, such as gradient fills, can
10207 be imported and then exported via the @code{gridSVG} package.")
10208 (license license:gpl2+)))
10209
10210 (define-public r-kohonen
10211 (package
10212 (name "r-kohonen")
10213 (version "3.0.8")
10214 (source
10215 (origin
10216 (method url-fetch)
10217 (uri (cran-uri "kohonen" version))
10218 (sha256
10219 (base32
10220 "1zbfqa1qdlry8w6xhypkiknc5gn98v1ijhlsfka8zjg8ajhqgn1q"))))
10221 (build-system r-build-system)
10222 (propagated-inputs
10223 `(("r-mass" ,r-mass)
10224 ("r-rcpp" ,r-rcpp)))
10225 (home-page "https://cran.r-project.org/web/packages/kohonen")
10226 (synopsis "Supervised and unsupervised self-organising maps")
10227 (description
10228 "This package provides functions to train @dfn{self-organising
10229 maps} (SOMs). Also interrogation of the maps and prediction using trained
10230 maps are supported. The name of the package refers to Teuvo Kohonen, the
10231 inventor of the SOM.")
10232 (license license:gpl2+)))
10233
10234 (define-public r-nnls
10235 (package
10236 (name "r-nnls")
10237 (version "1.4")
10238 (source
10239 (origin
10240 (method url-fetch)
10241 (uri (cran-uri "nnls" version))
10242 (sha256
10243 (base32
10244 "07vcrrxvswrvfiha6f3ikn640yg0m2b4yd9lkmim1g0jmsmpfp8f"))))
10245 (build-system r-build-system)
10246 (native-inputs `(("gfortran" ,gfortran)))
10247 (home-page "https://cran.r-project.org/web/packages/nnls")
10248 (synopsis "Lawson-Hanson algorithm for non-negative least squares")
10249 (description
10250 "This package provides an R interface to the Lawson-Hanson implementation
10251 of an algorithm for @dfn{non-negative least squares} (NNLS). It also allows
10252 the combination of non-negative and non-positive constraints.")
10253 (license license:gpl2+)))
10254
10255 (define-public r-iso
10256 (package
10257 (name "r-iso")
10258 (version "0.0-18")
10259 (source
10260 (origin
10261 (method url-fetch)
10262 (uri (cran-uri "Iso" version))
10263 (sha256
10264 (base32
10265 "014mm5b1f7i6nwlz3kyg1biph0y542kcx5bd13p68cv5a928qzid"))))
10266 (properties `((upstream-name . "Iso")))
10267 (build-system r-build-system)
10268 (native-inputs `(("gfortran" ,gfortran)))
10269 (home-page "http://www.stat.auckland.ac.nz/~rolf/")
10270 (synopsis "Functions to perform isotonic regression")
10271 (description
10272 "This package provides support for linear order and unimodal
10273 order (univariate) isotonic regression and bivariate isotonic regression with
10274 linear order on both variables.")
10275 (license license:gpl2+)))
10276
10277 (define-public r-chemometricswithr
10278 (package
10279 (name "r-chemometricswithr")
10280 (version "0.1.13")
10281 (source
10282 (origin
10283 (method url-fetch)
10284 (uri (cran-uri "ChemometricsWithR" version))
10285 (sha256
10286 (base32
10287 "166va1g3m1wv21qkmw4wpz0bsrclh3jih8smxphdc13l9pqgclpq"))))
10288 (properties
10289 `((upstream-name . "ChemometricsWithR")))
10290 (build-system r-build-system)
10291 (propagated-inputs
10292 `(("r-devtools" ,r-devtools)
10293 ("r-kohonen" ,r-kohonen)
10294 ("r-mass" ,r-mass)
10295 ("r-pls" ,r-pls)))
10296 (home-page "https://github.com/rwehrens/CWR")
10297 (synopsis "Chemometrics with R")
10298 (description
10299 "This package provides functions and scripts used in the book
10300 \"Chemometrics with R - Multivariate Data Analysis in the Natural Sciences and
10301 Life Sciences\" by Ron Wehrens, Springer (2011).")
10302 (license license:gpl2+)))
10303
10304 (define-public r-als
10305 (package
10306 (name "r-als")
10307 (version "0.0.6")
10308 (source
10309 (origin
10310 (method url-fetch)
10311 (uri (cran-uri "ALS" version))
10312 (sha256
10313 (base32
10314 "1swrn39vy50fazkpf97r7c542gkj6mlvy8gmcxllg7mf2mqx546a"))))
10315 (properties `((upstream-name . "ALS")))
10316 (build-system r-build-system)
10317 (propagated-inputs
10318 `(("r-iso" ,r-iso)
10319 ("r-nnls" ,r-nnls)))
10320 (home-page "https://cran.r-project.org/web/packages/ALS")
10321 (synopsis "Multivariate curve resolution alternating least squares")
10322 (description
10323 "Alternating least squares is often used to resolve components
10324 contributing to data with a bilinear structure; the basic technique may be
10325 extended to alternating constrained least squares. This package provides an
10326 implementation of @dfn{multivariate curve resolution alternating least
10327 squares} (MCR-ALS).
10328
10329 Commonly applied constraints include unimodality, non-negativity, and
10330 normalization of components. Several data matrices may be decomposed
10331 simultaneously by assuming that one of the two matrices in the bilinear
10332 decomposition is shared between datasets.")
10333 (license license:gpl2+)))
10334
10335 (define-public r-strucchange
10336 (package
10337 (name "r-strucchange")
10338 (version "1.5-2")
10339 (source
10340 (origin
10341 (method url-fetch)
10342 (uri (cran-uri "strucchange" version))
10343 (sha256
10344 (base32
10345 "1y022363a4pp0mnji91sjh1qiyspkh09sybqwj03r9pmwrd7q93x"))))
10346 (build-system r-build-system)
10347 (propagated-inputs
10348 `(("r-sandwich" ,r-sandwich)
10349 ("r-zoo" ,r-zoo)))
10350 (home-page "https://cran.r-project.org/web/packages/strucchange")
10351 (synopsis "Testing, monitoring, and dating structural changes")
10352 (description
10353 "This package provides tools for testing, monitoring and dating
10354 structural changes in (linear) regression models. It features tests/methods
10355 from the generalized fluctuation test framework as well as from the F
10356 test (Chow test) framework. This includes methods to fit, plot and test
10357 fluctuation processes (e.g., CUSUM, MOSUM, recursive/moving estimates) and F
10358 statistics, respectively. It is possible to monitor incoming data online
10359 using fluctuation processes. Finally, the breakpoints in regression models
10360 with structural changes can be estimated together with confidence intervals.
10361 Emphasis is always given to methods for visualizing the data.")
10362 ;; Either of these two GPL versions
10363 (license (list license:gpl2 license:gpl3))))
10364
10365 (define-public r-pixmap
10366 (package
10367 (name "r-pixmap")
10368 (version "0.4-11")
10369 (source
10370 (origin
10371 (method url-fetch)
10372 (uri (cran-uri "pixmap" version))
10373 (sha256
10374 (base32
10375 "04klxp6jndw1bp6z40v20fbmdmdpfca2g0czmmmgbkark9s1183g"))))
10376 (build-system r-build-system)
10377 (home-page "https://cran.r-project.org/web/packages/pixmap")
10378 (synopsis "Tools for bitmap images")
10379 (description
10380 "This package provides functions for importing, exporting, plotting and
10381 other manipulations of bitmapped images.")
10382 (license license:gpl2)))
10383
10384 (define-public r-rapidjsonr
10385 (package
10386 (name "r-rapidjsonr")
10387 (version "1.1")
10388 (source
10389 (origin
10390 (method url-fetch)
10391 (uri (cran-uri "rapidjsonr" version))
10392 (sha256
10393 (base32
10394 "0h4phjjhykbb45rg5b1xn48vqxdcvcngbm0416ds8in7j469wbwd"))))
10395 (build-system r-build-system)
10396 (home-page "https://cran.r-project.org/web/packages/rapidjsonr")
10397 (synopsis "JSON parser")
10398 (description
10399 "This package provides JSON parsing capability through the Rapidjson
10400 library.")
10401 (license license:expat)))
10402
10403 (define-public r-ontologyindex
10404 (package
10405 (name "r-ontologyindex")
10406 (version "2.5")
10407 (source
10408 (origin
10409 (method url-fetch)
10410 (uri (cran-uri "ontologyIndex" version))
10411 (sha256
10412 (base32
10413 "127hlf0z5fmbgnq4p9h8nvn6p72d2fpcn846zzb99s213421jnry"))))
10414 (properties `((upstream-name . "ontologyIndex")))
10415 (build-system r-build-system)
10416 (home-page "https://cran.r-project.org/web/packages/ontologyIndex")
10417 (synopsis "Functions for processing ontologies in R")
10418 (description
10419 "This package provides functions for reading ontologies into R as lists
10420 and manipulating sets of ontological terms.")
10421 (license license:gpl2+)))
10422
10423 (define-public r-gargle
10424 (package
10425 (name "r-gargle")
10426 (version "0.4.0")
10427 (source
10428 (origin
10429 (method url-fetch)
10430 (uri (cran-uri "gargle" version))
10431 (sha256
10432 (base32
10433 "08zhfk2sl342w35i5n2c93ayypg3z0kbl0020l3y9adqka1vazgx"))))
10434 (build-system r-build-system)
10435 (propagated-inputs
10436 `(("r-fs" ,r-fs)
10437 ("r-glue" ,r-glue)
10438 ("r-httr" ,r-httr)
10439 ("r-jsonlite" ,r-jsonlite)
10440 ("r-rlang" ,r-rlang)
10441 ("r-withr" ,r-withr)))
10442 (home-page "https://gargle.r-lib.org")
10443 (synopsis "Utilities for working with Google APIs")
10444 (description
10445 "This package provides utilities for working with Google APIs. This
10446 includes functions and classes for handling common credential types and for
10447 preparing, executing, and processing HTTP requests.")
10448 (license license:expat)))
10449
10450 (define-public r-bigrquery
10451 (package
10452 (name "r-bigrquery")
10453 (version "1.2.0")
10454 (source
10455 (origin
10456 (method url-fetch)
10457 (uri (cran-uri "bigrquery" version))
10458 (sha256
10459 (base32
10460 "1ggh2gngr5x0g6y7d55y6kvn94anf7qi1bkc28cjmw61hxjq38fb"))))
10461 (build-system r-build-system)
10462 (propagated-inputs
10463 `(("r-assertthat" ,r-assertthat)
10464 ("r-bit64" ,r-bit64)
10465 ("r-curl" ,r-curl)
10466 ("r-dbi" ,r-dbi)
10467 ("r-gargle" ,r-gargle)
10468 ("r-glue" ,r-glue)
10469 ("r-httr" ,r-httr)
10470 ("r-jsonlite" ,r-jsonlite)
10471 ("r-prettyunits" ,r-prettyunits)
10472 ("r-progress" ,r-progress)
10473 ("r-rapidjsonr" ,r-rapidjsonr)
10474 ("r-rcpp" ,r-rcpp)
10475 ("r-rlang" ,r-rlang)
10476 ("r-tibble" ,r-tibble)))
10477 (home-page "https://github.com/rstats-db/bigrquery")
10478 (synopsis "R interface to Google's BigQuery API")
10479 (description
10480 "This package provides an R interface to Google's BigQuery database.")
10481 (license license:gpl3)))
10482
10483 (define-public r-gmp
10484 (package
10485 (name "r-gmp")
10486 (version "0.5-13.5")
10487 (source
10488 (origin
10489 (method url-fetch)
10490 (uri (cran-uri "gmp" version))
10491 (sha256
10492 (base32
10493 "042mzsl6z6s61fy5m21yf9q83l08vnyqljn4iax7kqyiycpsp0gn"))))
10494 (build-system r-build-system)
10495 (arguments
10496 '(#:phases
10497 (modify-phases %standard-phases
10498 (add-after 'unpack 'set-CC
10499 (lambda _ (setenv "CC" "gcc") #t)))))
10500 (inputs `(("gmp" ,gmp)))
10501 (home-page "https://cran.r-project.org/web/packages/gmp")
10502 (synopsis "Multiple precision arithmetic")
10503 (description
10504 "This package supports multiple precision arithmetic (big integers and
10505 rationals, prime number tests, matrix computation), \"arithmetic without
10506 limitations\" using the GNU Multiple Precision library.")
10507 ;; Any version of the GPL.
10508 (license license:gpl3+)))
10509
10510 (define-public r-rmpfr
10511 (package
10512 (name "r-rmpfr")
10513 (version "0.7-2")
10514 (source
10515 (origin
10516 (method url-fetch)
10517 (uri (cran-uri "Rmpfr" version))
10518 (sha256
10519 (base32
10520 "1zq3as34r27v2yc729731997wdhxb6cs5ilmak4nmsljabnac7gc"))))
10521 (properties `((upstream-name . "Rmpfr")))
10522 (build-system r-build-system)
10523 (inputs
10524 `(("mpfr" ,mpfr)))
10525 (propagated-inputs
10526 `(("r-gmp" ,r-gmp)))
10527 (home-page "http://rmpfr.r-forge.r-project.org/")
10528 (synopsis "R bindings to the MPFR library")
10529 (description
10530 "This package supports arithmetic (via S4 classes and methods) for
10531 arbitrary precision floating point numbers, including transcendental
10532 functions. To this end, the package interfaces with the @dfn{Multiple
10533 Precision Floating-Point Reliable} (MPFR) library.")
10534 (license license:gpl2+)))
10535
10536 (define-public r-assertive-base
10537 (package
10538 (name "r-assertive-base")
10539 (version "0.0-7")
10540 (source
10541 (origin
10542 (method url-fetch)
10543 (uri (cran-uri "assertive.base" version))
10544 (sha256
10545 (base32
10546 "1xs3ysvj0z57c58jw57pckq2rynia6ks4rmjmc02alczhk54wbgh"))))
10547 (properties
10548 `((upstream-name . "assertive.base")))
10549 (build-system r-build-system)
10550 (home-page "https://bitbucket.org/richierocks/assertive.base")
10551 (synopsis "Core of the assertive package")
10552 (description
10553 "This package provides a minimal set of predicates and assertions used by
10554 the assertive package. This is mainly for use by other package developers who
10555 want to include run-time testing features in their own packages.")
10556 (license license:gpl3+)))
10557
10558 (define-public r-assertive-properties
10559 (package
10560 (name "r-assertive-properties")
10561 (version "0.0-4")
10562 (source
10563 (origin
10564 (method url-fetch)
10565 (uri (cran-uri "assertive.properties" version))
10566 (sha256
10567 (base32
10568 "0sqs54acs9qk9kvm32rxzfbzxz1l8mjahpfnw7r30z2brgz661jw"))))
10569 (properties
10570 `((upstream-name . "assertive.properties")))
10571 (build-system r-build-system)
10572 (propagated-inputs
10573 `(("r-assertive-base" ,r-assertive-base)))
10574 (home-page "https://bitbucket.org/richierocks/assertive.properties")
10575 (synopsis "Assertions to check properties of variables")
10576 (description
10577 "This package provides a set of predicates and assertions for checking
10578 the properties of variables, such as length, names and attributes. This is
10579 mainly for use by other package developers who want to include run-time
10580 testing features in their own packages.")
10581 (license license:gpl3+)))
10582
10583 (define-public r-assertive-numbers
10584 (package
10585 (name "r-assertive-numbers")
10586 (version "0.0-2")
10587 (source
10588 (origin
10589 (method url-fetch)
10590 (uri (cran-uri "assertive.numbers" version))
10591 (sha256
10592 (base32
10593 "0jc3ss64j4m7bjydhagwwmka5n7c72vpw4kfcch0m5jvkq5qrqds"))))
10594 (properties
10595 `((upstream-name . "assertive.numbers")))
10596 (build-system r-build-system)
10597 (propagated-inputs
10598 `(("r-assertive-base" ,r-assertive-base)))
10599 (home-page "https://bitbucket.org/richierocks/assertive.numbers")
10600 (synopsis "Assertions to check properties of numbers")
10601 (description
10602 "This package provides a set of predicates and assertions for checking
10603 the properties of numbers. This is mainly for use by other package developers
10604 who want to include run-time testing features in their own packages.")
10605 (license license:gpl3+)))
10606
10607 (define-public r-assertive-sets
10608 (package
10609 (name "r-assertive-sets")
10610 (version "0.0-3")
10611 (source
10612 (origin
10613 (method url-fetch)
10614 (uri (cran-uri "assertive.sets" version))
10615 (sha256
10616 (base32
10617 "1cqvh2syvh5b6d85h601zjmsdbbf3h8q98ids4dfl4frdshpasc7"))))
10618 (properties
10619 `((upstream-name . "assertive.sets")))
10620 (build-system r-build-system)
10621 (propagated-inputs
10622 `(("r-assertive-base" ,r-assertive-base)))
10623 (home-page "https://bitbucket.org/richierocks/assertive.sets")
10624 (synopsis "Assertions to check properties of sets")
10625 (description
10626 "This package provides a set of predicates and assertions for checking
10627 the properties of sets. This is mainly for use by other package developers
10628 who want to include run-time testing features in their own packages.")
10629 (license license:gpl3+)))
10630
10631 (define-public r-assertive-matrices
10632 (package
10633 (name "r-assertive-matrices")
10634 (version "0.0-2")
10635 (source
10636 (origin
10637 (method url-fetch)
10638 (uri (cran-uri "assertive.matrices" version))
10639 (sha256
10640 (base32
10641 "16sykzcndv6y2d43x6v9n7m95kv76364h39kh10w4z0xw6ksfqil"))))
10642 (properties
10643 `((upstream-name . "assertive.matrices")))
10644 (build-system r-build-system)
10645 (propagated-inputs
10646 `(("r-assertive-base" ,r-assertive-base)))
10647 (home-page "https://bitbucket.org/richierocks/assertive.matrices")
10648 (synopsis "Assertions to check properties of matrices")
10649 (description
10650 "This package provides a set of predicates and assertions for checking
10651 the properties of matrices. This is mainly for use by other package
10652 developers who want to include run-time testing features in their own
10653 packages.")
10654 (license license:gpl3+)))
10655
10656 (define-public r-assertive-models
10657 (package
10658 (name "r-assertive-models")
10659 (version "0.0-2")
10660 (source
10661 (origin
10662 (method url-fetch)
10663 (uri (cran-uri "assertive.models" version))
10664 (sha256
10665 (base32
10666 "0bn4j4v5qvb2d672cgri61p8d9v258pmz35y3lvm6b9mdxwdi9mr"))))
10667 (properties
10668 `((upstream-name . "assertive.models")))
10669 (build-system r-build-system)
10670 (propagated-inputs
10671 `(("r-assertive-base" ,r-assertive-base)))
10672 (home-page "https://bitbucket.org/richierocks/assertive.models")
10673 (synopsis "Assertions to check properties of models")
10674 (description
10675 "This package provides a set of predicates and assertions for checking
10676 the properties of models. This is mainly for use by other package developers
10677 who want to include run-time testing features in their own packages.")
10678 (license license:gpl3+)))
10679
10680 (define-public r-assertive-reflection
10681 (package
10682 (name "r-assertive-reflection")
10683 (version "0.0-4")
10684 (source
10685 (origin
10686 (method url-fetch)
10687 (uri (cran-uri "assertive.reflection" version))
10688 (sha256
10689 (base32
10690 "19zmsbn00crfqm0kwd9ys5gv87xs3gi6wmlikrz9xiwzm7hp4dhj"))))
10691 (properties
10692 `((upstream-name . "assertive.reflection")))
10693 (build-system r-build-system)
10694 (propagated-inputs
10695 `(("r-assertive-base" ,r-assertive-base)))
10696 (home-page "https://bitbucket.org/richierocks/assertive.reflection")
10697 (synopsis "Assertions for checking the state of R")
10698 (description
10699 "This package provides a set of predicates and assertions for checking
10700 the state and capabilities of R, the operating system it is running on, and
10701 the IDE being used. This is mainly for use by other package developers who
10702 want to include run-time testing features in their own packages.")
10703 (license license:gpl3+)))
10704
10705 (define-public r-assertive-types
10706 (package
10707 (name "r-assertive-types")
10708 (version "0.0-3")
10709 (source
10710 (origin
10711 (method url-fetch)
10712 (uri (cran-uri "assertive.types" version))
10713 (sha256
10714 (base32
10715 "0zxq1jfrzgw95ll7alvm0xnk7aihjdksngq4ya2whyvfjbmv4vdb"))))
10716 (properties
10717 `((upstream-name . "assertive.types")))
10718 (build-system r-build-system)
10719 (propagated-inputs
10720 `(("r-assertive-base" ,r-assertive-base)
10721 ("r-assertive-properties" ,r-assertive-properties)
10722 ("r-codetools" ,r-codetools)))
10723 (home-page "https://bitbucket.org/richierocks/assertive.types")
10724 (synopsis "Assertions to check types of variables")
10725 (description
10726 "This package provides a set of predicates and assertions for checking
10727 the types of variables. This is mainly for use by other package developers
10728 who want to include run-time testing features in their own packages.")
10729 (license license:gpl3+)))
10730
10731 (define-public r-assertive-files
10732 (package
10733 (name "r-assertive-files")
10734 (version "0.0-2")
10735 (source
10736 (origin
10737 (method url-fetch)
10738 (uri (cran-uri "assertive.files" version))
10739 (sha256
10740 (base32
10741 "02pfz8j5vwcj5kl6zca46894li7lxwnlrr29j922f14ay6kdssmy"))))
10742 (properties
10743 `((upstream-name . "assertive.files")))
10744 (build-system r-build-system)
10745 (propagated-inputs
10746 `(("r-assertive-base" ,r-assertive-base)
10747 ("r-assertive-numbers" ,r-assertive-numbers)))
10748 (home-page "https://bitbucket.org/richierocks/assertive.files")
10749 (synopsis "Assertions to check properties of files")
10750 (description
10751 "This package provides a set of predicates and assertions for checking
10752 the properties of files and connections. This is mainly for use by other
10753 package developers who want to include run-time testing features in their own
10754 packages.")
10755 (license license:gpl3+)))
10756
10757 (define-public r-assertive-code
10758 (package
10759 (name "r-assertive-code")
10760 (version "0.0-3")
10761 (source
10762 (origin
10763 (method url-fetch)
10764 (uri (cran-uri "assertive.code" version))
10765 (sha256
10766 (base32
10767 "1qhbp668zfvhqs8avkhg9amp4zyazz6dsy4fc6kpdmw3sv8yi07g"))))
10768 (properties
10769 `((upstream-name . "assertive.code")))
10770 (build-system r-build-system)
10771 (propagated-inputs
10772 `(("r-assertive-base" ,r-assertive-base)
10773 ("r-assertive-properties" ,r-assertive-properties)
10774 ("r-assertive-types" ,r-assertive-types)))
10775 (home-page "https://bitbucket.org/richierocks/assertive.code")
10776 (synopsis "Assertions to check properties of code")
10777 (description
10778 "This package provides a set of predicates and assertions for checking
10779 the properties of code. This is mainly for use by other package developers
10780 who want to include run-time testing features in their own packages.")
10781 (license license:gpl3+)))
10782
10783 (define-public r-assertive-datetimes
10784 (package
10785 (name "r-assertive-datetimes")
10786 (version "0.0-2")
10787 (source
10788 (origin
10789 (method url-fetch)
10790 (uri (cran-uri "assertive.datetimes" version))
10791 (sha256
10792 (base32
10793 "00a98fx8p3pr3ckayh8wmxmm4rz01s67wah9697m92yci6pv3m78"))))
10794 (properties
10795 `((upstream-name . "assertive.datetimes")))
10796 (build-system r-build-system)
10797 (propagated-inputs
10798 `(("r-assertive-base" ,r-assertive-base)
10799 ("r-assertive-types" ,r-assertive-types)))
10800 (home-page "https://bitbucket.org/richierocks/assertive.datetimes")
10801 (synopsis "Assertions to check properties of dates and times")
10802 (description
10803 "This package provides a set of predicates and assertions for checking
10804 the properties of dates and times. This is mainly for use by other package
10805 developers who want to include run-time testing features in their own
10806 packages.")
10807 (license license:gpl3+)))
10808
10809 (define-public r-assertive-strings
10810 (package
10811 (name "r-assertive-strings")
10812 (version "0.0-3")
10813 (source
10814 (origin
10815 (method url-fetch)
10816 (uri (cran-uri "assertive.strings" version))
10817 (sha256
10818 (base32
10819 "0n6jrk88670g4ym0r8ii40a08a90z1xadj8wcryk8h0nl04dchfm"))))
10820 (properties
10821 `((upstream-name . "assertive.strings")))
10822 (build-system r-build-system)
10823 (propagated-inputs
10824 `(("r-assertive-base" ,r-assertive-base)
10825 ("r-assertive-types" ,r-assertive-types)
10826 ("r-stringi" ,r-stringi)))
10827 (home-page "https://bitbucket.org/richierocks/assertive.strings")
10828 (synopsis "Assertions to check properties of strings")
10829 (description
10830 "This package provides a set of predicates and assertions for checking
10831 the properties of strings. This is mainly for use by other package developers
10832 who want to include run-time testing features in their own packages.")
10833 (license license:gpl3+)))
10834
10835 (define-public r-assertive-data-us
10836 (package
10837 (name "r-assertive-data-us")
10838 (version "0.0-2")
10839 (source
10840 (origin
10841 (method url-fetch)
10842 (uri (cran-uri "assertive.data.us" version))
10843 (sha256
10844 (base32
10845 "1bgspn0sccmp9z7s7djvdvprgxlyc5vrxznp4zfjb79kwvgn83hq"))))
10846 (properties
10847 `((upstream-name . "assertive.data.us")))
10848 (build-system r-build-system)
10849 (propagated-inputs
10850 `(("r-assertive-base" ,r-assertive-base)
10851 ("r-assertive-strings" ,r-assertive-strings)))
10852 (home-page "https://bitbucket.org/richierocks/assertive.data.us")
10853 (synopsis "Assertions to check properties of strings")
10854 (description
10855 "This package provides a set of predicates and assertions for checking
10856 the properties of US-specific complex data types. This is mainly for use by
10857 other package developers who want to include run-time testing features in
10858 their own packages.")
10859 (license license:gpl3+)))
10860
10861 (define-public r-assertive-data-uk
10862 (package
10863 (name "r-assertive-data-uk")
10864 (version "0.0-2")
10865 (source
10866 (origin
10867 (method url-fetch)
10868 (uri (cran-uri "assertive.data.uk" version))
10869 (sha256
10870 (base32
10871 "1fzjvhwp7mwkqqix29khvs6zcrc82n6j4czvzzb473vyjyvdlj5b"))))
10872 (properties
10873 `((upstream-name . "assertive.data.uk")))
10874 (build-system r-build-system)
10875 (propagated-inputs
10876 `(("r-assertive-base" ,r-assertive-base)
10877 ("r-assertive-strings" ,r-assertive-strings)))
10878 (home-page "https://bitbucket.org/richierocks/assertive.data.uk")
10879 (synopsis "Assertions to check properties of strings")
10880 (description
10881 "This package provides a set of predicates and assertions for checking
10882 the properties of UK-specific complex data types. This is mainly for use by
10883 other package developers who want to include run-time testing features in
10884 their own packages.")
10885 (license license:gpl3+)))
10886
10887 (define-public r-assertive-data
10888 (package
10889 (name "r-assertive-data")
10890 (version "0.0-3")
10891 (source
10892 (origin
10893 (method url-fetch)
10894 (uri (cran-uri "assertive.data" version))
10895 (sha256
10896 (base32
10897 "00cvg2g36mdl8plrzx40m63qd55742mddqrchwy9n3c7mm4gn02s"))))
10898 (properties
10899 `((upstream-name . "assertive.data")))
10900 (build-system r-build-system)
10901 (propagated-inputs
10902 `(("r-assertive-base" ,r-assertive-base)
10903 ("r-assertive-strings" ,r-assertive-strings)))
10904 (home-page "https://bitbucket.org/richierocks/assertive.data")
10905 (synopsis "Assertions to check properties of data")
10906 (description
10907 "This package provides a set of predicates and assertions for checking
10908 the properties of (country independent) complex data types. This is mainly
10909 for use by other package developers who want to include run-time testing
10910 features in their own packages.")
10911 (license license:gpl3+)))
10912
10913 (define-public r-assertive
10914 (package
10915 (name "r-assertive")
10916 (version "0.3-5")
10917 (source
10918 (origin
10919 (method url-fetch)
10920 (uri (cran-uri "assertive" version))
10921 (sha256
10922 (base32
10923 "0blbbhlxcb5ffdxqxi62xs33ljiawh6s22a0pyvbbh79jf46rzr3"))))
10924 (build-system r-build-system)
10925 (propagated-inputs
10926 `(("r-assertive-base" ,r-assertive-base)
10927 ("r-assertive-code" ,r-assertive-code)
10928 ("r-assertive-data" ,r-assertive-data)
10929 ("r-assertive-data-uk" ,r-assertive-data-uk)
10930 ("r-assertive-data-us" ,r-assertive-data-us)
10931 ("r-assertive-datetimes" ,r-assertive-datetimes)
10932 ("r-assertive-files" ,r-assertive-files)
10933 ("r-assertive-matrices" ,r-assertive-matrices)
10934 ("r-assertive-models" ,r-assertive-models)
10935 ("r-assertive-numbers" ,r-assertive-numbers)
10936 ("r-assertive-properties" ,r-assertive-properties)
10937 ("r-assertive-reflection" ,r-assertive-reflection)
10938 ("r-assertive-sets" ,r-assertive-sets)
10939 ("r-assertive-strings" ,r-assertive-strings)
10940 ("r-assertive-types" ,r-assertive-types)
10941 ("r-knitr" ,r-knitr)))
10942 (home-page "https://bitbucket.org/richierocks/assertive")
10943 (synopsis "Readable check functions to ensure code integrity")
10944 (description
10945 "This package provides lots of predicates (@code{is_*} functions) to
10946 check the state of your variables, and assertions (@code{assert_*} functions)
10947 to throw errors if they aren't in the right form.")
10948 (license license:gpl3+)))
10949
10950 (define-public r-dotcall64
10951 (package
10952 (name "r-dotcall64")
10953 (version "1.0-0")
10954 (source
10955 (origin
10956 (method url-fetch)
10957 (uri (cran-uri "dotCall64" version))
10958 (sha256
10959 (base32
10960 "1b8p7m3w0m7bp977c6jz74xkd611cxg11j49yza59k5fp338scb9"))))
10961 (properties `((upstream-name . "dotCall64")))
10962 (build-system r-build-system)
10963 (native-inputs `(("gfortran" ,gfortran)))
10964 (home-page "https://git.math.uzh.ch/reinhard.furrer/dotCall64")
10965 (synopsis "Enhanced foreign function interface supporting long vectors")
10966 (description
10967 "This package provides @code{.C64()}, an enhanced version of @code{.C()}
10968 and @code{.Fortran()} from the R foreign function interface. @code{.C64()}
10969 supports long vectors, arguments of type 64-bit integer, and provides a
10970 mechanism to avoid unnecessary copies of read-only and write-only arguments.
10971 This makes it a convenient and fast interface to C/C++ and Fortran code.")
10972 (license license:gpl2+)))
10973
10974 (define-public r-spam
10975 (package
10976 (name "r-spam")
10977 (version "2.4-0")
10978 (source
10979 (origin
10980 (method url-fetch)
10981 (uri (cran-uri "spam" version))
10982 (sha256
10983 (base32 "0xb7a0x1i93kzijr518m9plzmg8s3mxh5anwfx9xrkg5ipldvz10"))))
10984 (build-system r-build-system)
10985 (propagated-inputs
10986 `(("r-dotcall64" ,r-dotcall64)))
10987 (native-inputs `(("gfortran" ,gfortran)))
10988 (home-page "https://www.math.uzh.ch/pages/spam/")
10989 (synopsis "Sparse matrix algebra")
10990 (description
10991 "This package provides a set of functions for sparse matrix algebra.
10992 Differences with other sparse matrix packages are:
10993
10994 @enumerate
10995 @item it only supports (essentially) one sparse matrix format;
10996 @item it is based on transparent and simple structure(s);
10997 @item it is tailored for MCMC calculations within G(M)RF;
10998 @item and it is fast and scalable (with the extension package @code{spam64}).
10999 @end enumerate\n")
11000 ;; Either of these licenses
11001 (license (list license:bsd-3 license:lgpl2.0))))
11002
11003 (define-public r-fields
11004 (package
11005 (name "r-fields")
11006 (version "10.0")
11007 (source
11008 (origin
11009 (method url-fetch)
11010 (uri (cran-uri "fields" version))
11011 (sha256
11012 (base32 "173zm5vr236ydiq0v27qy0l3x7h9fc7jly38iakg77j26i0a01il"))))
11013 (build-system r-build-system)
11014 (propagated-inputs
11015 `(("r-maps" ,r-maps)
11016 ("r-spam" ,r-spam)))
11017 (native-inputs
11018 `(("gfortran" ,gfortran)))
11019 (home-page "https://www.image.ucar.edu/fields")
11020 (synopsis "Tools for spatial data")
11021 (description
11022 "This is a package for curve, surface and function fitting with an
11023 emphasis on splines, spatial data and spatial statistics. The major methods
11024 include cubic, and thin plate splines, Kriging, and compactly supported
11025 covariance functions for large data sets.")
11026 (license license:gpl2+)))
11027
11028 (define-public r-spatialextremes
11029 (package
11030 (name "r-spatialextremes")
11031 (version "2.0-7.2")
11032 (source
11033 (origin
11034 (method url-fetch)
11035 (uri (cran-uri "SpatialExtremes" version))
11036 (sha256
11037 (base32
11038 "0aqq9ryxi4xsdqjhc1lhb7ai8szs7m2vys6nn0ygps1w3pm4xwj8"))))
11039 (properties
11040 `((upstream-name . "SpatialExtremes")))
11041 (build-system r-build-system)
11042 (propagated-inputs
11043 `(("r-fields" ,r-fields)
11044 ("r-maps" ,r-maps)))
11045 (home-page "http://spatialextremes.r-forge.r-project.org/")
11046 (synopsis "Modelling spatial extremes")
11047 (description
11048 "This package provides tools for the statistical modelling of spatial
11049 extremes using max-stable processes, copula or Bayesian hierarchical models.
11050 More precisely, this package allows (conditional) simulations from various
11051 parametric max-stable models, analysis of the extremal spatial dependence, the
11052 fitting of such processes using composite likelihoods or least square (simple
11053 max-stable processes only), model checking and selection and prediction.")
11054 (license license:gpl2+)))
11055
11056 (define-public r-drc
11057 (package
11058 (name "r-drc")
11059 (version "3.0-1")
11060 (source
11061 (origin
11062 (method url-fetch)
11063 (uri (cran-uri "drc" version))
11064 (sha256
11065 (base32
11066 "0c8xn8ripzq270hy8d16fcnx02l02alddznd7fqwk3jyi6113h1y"))))
11067 (build-system r-build-system)
11068 (propagated-inputs
11069 `(("r-car" ,r-car)
11070 ("r-gtools" ,r-gtools)
11071 ("r-mass" ,r-mass)
11072 ("r-multcomp" ,r-multcomp)
11073 ("r-plotrix" ,r-plotrix)
11074 ("r-scales" ,r-scales)))
11075 (home-page "https://cran.r-project.org/web/packages/drc")
11076 (synopsis "Analysis of dose-response curves")
11077 (description
11078 "This package provides a suite of flexible and versatile model fitting
11079 and after-fitting functions for the analysis of dose-response data.")
11080 (license license:gpl2+)))
11081
11082 (define-public r-rmeta
11083 (package
11084 (name "r-rmeta")
11085 (version "3.0")
11086 (source
11087 (origin
11088 (method url-fetch)
11089 (uri (cran-uri "rmeta" version))
11090 (sha256
11091 (base32
11092 "0vkbnxp579v8zmcv1isdbzj5swpr6fq17zwparxcvzswjc2x9ydr"))))
11093 (build-system r-build-system)
11094 (home-page "https://cran.r-project.org/web/packages/rmeta")
11095 (synopsis "Tools for meta-analysis")
11096 (description
11097 "This package provides functions for simple fixed and random effects
11098 meta-analysis for two-sample comparisons and cumulative meta-analyses. It
11099 draws standard summary plots, funnel plots, and computes summaries and tests
11100 for association and heterogeneity.")
11101 (license license:gpl2)))
11102
11103 (define-public r-bootstrap
11104 (package
11105 (name "r-bootstrap")
11106 (version "2019.6")
11107 (source
11108 (origin
11109 (method url-fetch)
11110 (uri (cran-uri "bootstrap" version))
11111 (sha256
11112 (base32
11113 "1546jqhhw5h177ii8jkdikyd26rv6gwkav816np1zks4p7zgsljj"))))
11114 (build-system r-build-system)
11115 (native-inputs `(("gfortran" ,gfortran)))
11116 (home-page "https://cran.r-project.org/web/packages/bootstrap")
11117 (synopsis "Functions for the book \"An Introduction to the Bootstrap\"")
11118 (description
11119 "This package provides software and data for the book \"An Introduction
11120 to the Bootstrap\" by B. Efron and R. Tibshirani, 1993, Chapman and Hall.
11121 This package is primarily provided for projects already based on it, and for
11122 support of the book. New projects should preferentially use the recommended
11123 package \"boot\".")
11124 (license license:bsd-3)))
11125
11126 (define-public r-survivalroc
11127 (package
11128 (name "r-survivalroc")
11129 (version "1.0.3")
11130 (source
11131 (origin
11132 (method url-fetch)
11133 (uri (cran-uri "survivalROC" version))
11134 (sha256
11135 (base32
11136 "0wnd65ff5w679hxa1zrpfrx9qg47q21pjxppsga6m3h4iq1yfj8l"))))
11137 (properties `((upstream-name . "survivalROC")))
11138 (build-system r-build-system)
11139 (home-page "https://cran.r-project.org/web/packages/survivalROC")
11140 (synopsis "Time-dependent ROC curve estimation from censored survival data")
11141 (description
11142 "Compute time-dependent ROC curve from censored survival data using
11143 Kaplan-Meier (KM) or Nearest Neighbor Estimation (NNE) method of Heagerty,
11144 Lumley & Pepe (Biometrics, Vol 56 No 2, 2000, PP 337-344)")
11145 (license license:gpl2+)))
11146
11147 (define-public r-longitudinal
11148 (package
11149 (name "r-longitudinal")
11150 (version "1.1.12")
11151 (source
11152 (origin
11153 (method url-fetch)
11154 (uri (cran-uri "longitudinal" version))
11155 (sha256
11156 (base32
11157 "1d83ws28nxi3kw5lgd5n5y7865djq7ky72fw3ddi1fkkhg1r9y6l"))))
11158 (build-system r-build-system)
11159 (propagated-inputs `(("r-corpcor" ,r-corpcor)))
11160 (home-page "http://strimmerlab.org/software/longitudinal/")
11161 (synopsis "Analysis of multiple time course data")
11162 (description
11163 "This package contains general data structures and functions for
11164 longitudinal data with multiple variables, repeated measurements, and
11165 irregularly spaced time points. It also implements a shrinkage estimator of
11166 dynamical correlation and dynamical covariance.")
11167 (license license:gpl3+)))
11168
11169 (define-public r-genenet
11170 (package
11171 (name "r-genenet")
11172 (version "1.2.13")
11173 (source
11174 (origin
11175 (method url-fetch)
11176 (uri (cran-uri "GeneNet" version))
11177 (sha256
11178 (base32
11179 "0w52apk0nnr8nsskf26ff7ana8xiksr8wqmkjxzwhzgg7fncm61p"))))
11180 (properties `((upstream-name . "GeneNet")))
11181 (build-system r-build-system)
11182 (propagated-inputs
11183 `(("r-corpcor" ,r-corpcor)
11184 ("r-fdrtool" ,r-fdrtool)
11185 ("r-longitudinal" ,r-longitudinal)))
11186 (home-page "http://strimmerlab.org/software/genenet/")
11187 (synopsis "Modeling and inferring gene networks")
11188 (description
11189 "This package analyzes gene expression (time series) data with focus on
11190 the inference of gene networks. In particular, GeneNet implements the methods
11191 of Schaefer and Strimmer (2005a,b,c) and Opgen-Rhein and Strimmer (2006, 2007)
11192 for learning large-scale gene association networks (including assignment of
11193 putative directions).")
11194 (license license:gpl3+)))
11195
11196 (define-public r-rbamtools
11197 (package
11198 (name "r-rbamtools")
11199 (version "2.16.17")
11200 (source
11201 (origin
11202 (method url-fetch)
11203 (uri (cran-uri "rbamtools" version))
11204 (sha256
11205 (base32
11206 "0qj37ljdva3v29s01dkrbg31mcfzy3bl145cp40d54v4h9xhcghc"))))
11207 (build-system r-build-system)
11208 (inputs `(("zlib" ,zlib)))
11209 (propagated-inputs
11210 `(("r-refgenome" ,r-refgenome)))
11211 (home-page "https://cran.r-project.org/web/packages/rbamtools")
11212 (synopsis "Read and write BAM (binary alignment) files")
11213 (description
11214 "This package provides an R interface to functions of the SAMtools
11215 library.")
11216 (license license:artistic2.0)))
11217
11218 (define-public r-protviz
11219 (package
11220 (name "r-protviz")
11221 (version "0.5.1")
11222 (source
11223 (origin
11224 (method url-fetch)
11225 (uri (cran-uri "protViz" version))
11226 (sha256
11227 (base32
11228 "0cznzm1ijlq33yd5wsa61prav77y2vi698w0n2fx1xcv504c4bjv"))))
11229 (properties `((upstream-name . "protViz")))
11230 (build-system r-build-system)
11231 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
11232 (home-page "https://github.com/protViz/protViz/")
11233 (synopsis "Visualizing and analyzing mass spectrometry data in proteomics")
11234 (description
11235 "This package helps with quality checks, visualizations and analysis of
11236 mass spectrometry data, coming from proteomics experiments. The package is
11237 developed, tested and used at the Functional Genomics Center Zurich, where it
11238 is used mainly for prototyping, teaching, and having fun with proteomics data.
11239 But it can also be used to do data analysis for small scale data sets.")
11240 (license license:gpl3)))
11241
11242 (define-public r-cmprsk
11243 (package
11244 (name "r-cmprsk")
11245 (version "2.2-9")
11246 (source
11247 (origin
11248 (method url-fetch)
11249 (uri (cran-uri "cmprsk" version))
11250 (sha256
11251 (base32 "0xhgfg5b4i9skkaxp7gzkafgg5bqs5q1rp4hpw2jjmykg2nifn99"))))
11252 (build-system r-build-system)
11253 (propagated-inputs
11254 `(("r-survival" ,r-survival)))
11255 (native-inputs
11256 `(("gfortran" ,gfortran)))
11257 (home-page "https://cran.r-project.org/web/packages/cmprsk")
11258 (synopsis "Subdistribution analysis of competing risks")
11259 (description
11260 "This package provides tool for estimation, testing and regression
11261 modeling of subdistribution functions in competing risks, as described in
11262 Gray (1988), A class of K-sample tests for comparing the cumulative incidence
11263 of a competing risk, Ann. Stat. 16:1141-1154, and Fine JP and Gray RJ (1999),
11264 A proportional hazards model for the subdistribution of a competing risk,
11265 JASA, 94:496-509.")
11266 (license license:gpl2+)))
11267
11268 (define-public r-etm
11269 (package
11270 (name "r-etm")
11271 (version "1.0.5")
11272 (source
11273 (origin
11274 (method url-fetch)
11275 (uri (cran-uri "etm" version))
11276 (sha256
11277 (base32
11278 "1yivbq8y0ijcl1m4nir4q9hp4pi6iphwxgjprygsdf7vp98wq677"))))
11279 (build-system r-build-system)
11280 (propagated-inputs
11281 `(("r-data-table" ,r-data-table)
11282 ("r-lattice" ,r-lattice)
11283 ("r-rcpp" ,r-rcpp)
11284 ("r-rcpparmadillo" ,r-rcpparmadillo)
11285 ("r-survival" ,r-survival)))
11286 (home-page "https://cran.r-project.org/web/packages/etm")
11287 (synopsis "Empirical transition matrix")
11288 (description
11289 "The @dfn{empirical transition matrix} (etm) package permits to estimate
11290 the matrix of transition probabilities for any time-inhomogeneous multistate
11291 model with finite state space using the Aalen-Johansen estimator.")
11292 (license license:expat)))
11293
11294 (define-public r-epi
11295 (package
11296 (name "r-epi")
11297 (version "2.40")
11298 (source
11299 (origin
11300 (method url-fetch)
11301 (uri (cran-uri "Epi" version))
11302 (sha256
11303 (base32
11304 "046y10vwks5y84pzccmrn6d4pd6qz70imvp1hw5ywp8fnwzfh4g5"))))
11305 (properties `((upstream-name . "Epi")))
11306 (build-system r-build-system)
11307 (propagated-inputs
11308 `(("r-cmprsk" ,r-cmprsk)
11309 ("r-data-table" ,r-data-table)
11310 ("r-etm" ,r-etm)
11311 ("r-mass" ,r-mass)
11312 ("r-matrix" ,r-matrix)
11313 ("r-mgcv" ,r-mgcv)
11314 ("r-numderiv" ,r-numderiv)
11315 ("r-plyr" ,r-plyr)
11316 ("r-survival" ,r-survival)
11317 ("r-zoo" ,r-zoo)))
11318 (home-page "http://BendixCarstensen.com/Epi/")
11319 (synopsis "Statistical analysis in epidemiology")
11320 (description
11321 "This package provides functions for demographic and epidemiological
11322 analysis in the Lexis diagram, i.e. register and cohort follow-up data, in
11323 particular representation, manipulation and simulation of multistate data -
11324 the Lexis suite of functions, which includes interfaces to the @code{mstate},
11325 @code{etm} and @code{cmprsk} packages. It also contains functions for
11326 Age-Period-Cohort and Lee-Carter modeling and a function for interval censored
11327 data and some useful functions for tabulation and plotting, as well as a
11328 number of epidemiological data sets.")
11329 (license license:gpl2)))
11330
11331 (define-public r-ppls
11332 (package
11333 (name "r-ppls")
11334 (version "1.6-1.1")
11335 (source
11336 (origin
11337 (method url-fetch)
11338 (uri (cran-uri "ppls" version))
11339 (sha256
11340 (base32
11341 "1zyrisy3c4cz896j1bjh61sf57wdl9p8ywdq268cl819szfq78mx"))))
11342 (build-system r-build-system)
11343 (propagated-inputs `(("r-mass" ,r-mass)))
11344 (home-page "https://cran.r-project.org/web/packages/ppls")
11345 (synopsis "Penalized partial least squares")
11346 (description
11347 "This package contains linear and nonlinear regression methods based on
11348 partial least squares and penalization techniques. Model parameters are
11349 selected via cross-validation, and confidence intervals ans tests for the
11350 regression coefficients can be conducted via jackknifing.")
11351 (license license:gpl2+)))
11352
11353 (define-public r-huge
11354 (package
11355 (name "r-huge")
11356 (version "1.3.4")
11357 (source
11358 (origin
11359 (method url-fetch)
11360 (uri (cran-uri "huge" version))
11361 (sha256
11362 (base32 "07n3j1va2z4v30rj22cww72khgzbz2xsp0yc0qswlrwyxi4my5i3"))))
11363 (build-system r-build-system)
11364 (propagated-inputs
11365 `(("r-igraph" ,r-igraph)
11366 ("r-mass" ,r-mass)
11367 ("r-matrix" ,r-matrix)
11368 ("r-rcpp" ,r-rcpp)
11369 ("r-rcppeigen" ,r-rcppeigen)))
11370 (home-page "https://cran.r-project.org/web/packages/huge")
11371 (synopsis "High-dimensional undirected graph estimation")
11372 (description
11373 "This package provides a general framework for high-dimensional
11374 undirected graph estimation. It integrates data preprocessing, neighborhood
11375 screening, graph estimation, and model selection techniques into a pipeline.")
11376 (license license:gpl2)))
11377
11378 (define-public r-parcor
11379 (package
11380 (name "r-parcor")
11381 (version "0.2-6")
11382 (source
11383 (origin
11384 (method url-fetch)
11385 (uri (cran-uri "parcor" version))
11386 (sha256
11387 (base32
11388 "0vgs6k92vdr0cmb8cwbv2ff6qavw30agskfd8bfh17hsskrisvx0"))))
11389 (build-system r-build-system)
11390 (propagated-inputs
11391 `(("r-epi" ,r-epi)
11392 ("r-genenet" ,r-genenet)
11393 ("r-glmnet" ,r-glmnet)
11394 ("r-mass" ,r-mass)
11395 ("r-ppls" ,r-ppls)))
11396 (home-page "https://cran.r-project.org/web/packages/parcor")
11397 (synopsis "Regularized estimation of partial correlation matrices")
11398 (description
11399 "This package estimates the matrix of partial correlations based on
11400 different regularized regression methods: lasso, adaptive lasso, PLS, and
11401 Ridge Regression. In addition, the package provides model selection for
11402 lasso, adaptive lasso and Ridge regression based on cross-validation.")
11403 (license license:gpl2+)))
11404
11405 (define-public r-mcmc
11406 (package
11407 (name "r-mcmc")
11408 (version "0.9-6")
11409 (source
11410 (origin
11411 (method url-fetch)
11412 (uri (cran-uri "mcmc" version))
11413 (sha256
11414 (base32
11415 "1fc6a6asn53lx7x7pnlb5mb716nv4pcmbp99f1i30y4hzygihfj4"))))
11416 (build-system r-build-system)
11417 (home-page "http://www.stat.umn.edu/geyer/mcmc/")
11418 (synopsis "Markov chain Monte Carlo")
11419 (description
11420 "This package simulates continuous distributions of random vectors using
11421 @dfn{Markov chain Monte Carlo} (MCMC). Users specify the distribution by an R
11422 function that evaluates the log unnormalized density. Algorithms are random
11423 walk Metropolis algorithm (function @code{metrop}), simulated
11424 tempering (function @code{temper}), and morphometric random walk
11425 Metropolis (function @code{morph.metrop}), which achieves geometric ergodicity
11426 by change of variable.")
11427 (license license:expat)))
11428
11429 (define-public r-listenv
11430 (package
11431 (name "r-listenv")
11432 (version "0.7.0")
11433 (source
11434 (origin
11435 (method url-fetch)
11436 (uri (cran-uri "listenv" version))
11437 (sha256
11438 (base32
11439 "0ma5jsri2zqkrlsm9nqpikl7imbwfy1glsmk13mblw0q245h49k1"))))
11440 (build-system r-build-system)
11441 (native-inputs
11442 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
11443 (home-page "https://github.com/HenrikBengtsson/listenv")
11444 (synopsis "Environments behaving (almost) as lists")
11445 (description
11446 "This package implements list environments. List environments are
11447 environments that have list-like properties. For instance, the elements of a
11448 list environment are ordered and can be accessed and iterated over using index
11449 subsetting.")
11450 (license license:lgpl2.1+)))
11451
11452 (define-public r-globals
11453 (package
11454 (name "r-globals")
11455 (version "0.12.4")
11456 (source
11457 (origin
11458 (method url-fetch)
11459 (uri (cran-uri "globals" version))
11460 (sha256
11461 (base32
11462 "0szyv1ayyk31bh3xqlkj43020w44xq6s4rw2bxwizyjssxm3b1br"))))
11463 (build-system r-build-system)
11464 (propagated-inputs
11465 `(("r-codetools" ,r-codetools)))
11466 (home-page "https://github.com/HenrikBengtsson/globals")
11467 (synopsis "Identify global objects in R expressions")
11468 (description
11469 "This package provides tools to identify global (\"unknown\" or \"free\")
11470 objects in R expressions by code inspection using various strategies, e.g.
11471 conservative or liberal. The objective of this package is to make it as
11472 simple as possible to identify global objects for the purpose of exporting
11473 them in distributed compute environments.")
11474 (license license:lgpl2.1+)))
11475
11476 (define-public r-future
11477 (package
11478 (name "r-future")
11479 (version "1.15.1")
11480 (source
11481 (origin
11482 (method url-fetch)
11483 (uri (cran-uri "future" version))
11484 (sha256
11485 (base32
11486 "101hi8warqa0py9l6c5p98f7i9xjhx01w655z6a35jx1dhspykzd"))))
11487 (build-system r-build-system)
11488 (propagated-inputs
11489 `(("r-digest" ,r-digest)
11490 ("r-globals" ,r-globals)
11491 ("r-listenv" ,r-listenv)))
11492 (native-inputs
11493 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
11494 (home-page "https://github.com/HenrikBengtsson/future")
11495 (synopsis "Unified parallel and distributed processing in R")
11496 (description
11497 "The purpose of this package is to provide a lightweight and unified
11498 Future API for sequential and parallel processing of R expression via futures.
11499 This package implements sequential, multicore, multisession, and cluster
11500 futures. With these, R expressions can be evaluated on the local machine, in
11501 parallel a set of local machines, or distributed on a mix of local and remote
11502 machines. Extensions to this package implement additional backends for
11503 processing futures via compute cluster schedulers etc. Because of its unified
11504 API, there is no need to modify any code in order to switch from sequential on
11505 the local machine to, say, distributed processing on a remote compute cluster.")
11506 (license license:lgpl2.1+)))
11507
11508 (define-public r-future-apply
11509 (package
11510 (name "r-future-apply")
11511 (version "1.3.0")
11512 (source
11513 (origin
11514 (method url-fetch)
11515 (uri (cran-uri "future.apply" version))
11516 (sha256
11517 (base32
11518 "0wd3bh114zkvrqlpn8gqz4ix1igr9hr8x72h2g00a7mqkfjfqx33"))))
11519 (properties `((upstream-name . "future.apply")))
11520 (build-system r-build-system)
11521 (propagated-inputs
11522 `(("r-future" ,r-future)
11523 ("r-globals" ,r-globals)))
11524 (native-inputs
11525 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
11526 (home-page "https://github.com/HenrikBengtsson/future.apply")
11527 (synopsis "Apply function to elements in parallel using futures")
11528 (description
11529 "This package provides implementations of @code{apply()},
11530 @code{eapply()}, @code{lapply()}, @code{Map()}, @code{mapply()},
11531 @code{replicate()}, @code{sapply()}, @code{tapply()}, and @code{vapply()} that
11532 can be resolved using any future-supported backend, e.g. parallel on the local
11533 machine or distributed on a compute cluster.")
11534 (license license:gpl2+)))
11535
11536 (define-public r-rsvd
11537 (package
11538 (name "r-rsvd")
11539 (version "1.0.2")
11540 (source
11541 (origin
11542 (method url-fetch)
11543 (uri (cran-uri "rsvd" version))
11544 (sha256
11545 (base32
11546 "0fia77y5fxnhwkcxlgp98ygb8fdfraky75x80hkf7kvvpwc5rzn8"))))
11547 (build-system r-build-system)
11548 (propagated-inputs
11549 `(("r-matrix" ,r-matrix)))
11550 (home-page "https://github.com/erichson/rSVD")
11551 (synopsis "Randomized singular value decomposition")
11552 (description
11553 "Low-rank matrix decompositions are fundamental tools and widely used for
11554 data analysis, dimension reduction, and data compression. Classically, highly
11555 accurate deterministic matrix algorithms are used for this task. However, the
11556 emergence of large-scale data has severely challenged our computational
11557 ability to analyze big data. The concept of randomness has been demonstrated
11558 as an effective strategy to quickly produce approximate answers to familiar
11559 problems such as the @dfn{singular value decomposition} (SVD). This package
11560 provides several randomized matrix algorithms such as the randomized singular
11561 value decomposition (@code{rsvd}), randomized principal component
11562 analysis (@code{rpca}), randomized robust principal component
11563 analysis (@code{rrpca}), randomized interpolative decomposition (@code{rid}),
11564 and the randomized CUR decomposition (@code{rcur}). In addition several plot
11565 functions are provided.")
11566 (license license:gpl3+)))
11567
11568 (define-public r-sloop
11569 (package
11570 (name "r-sloop")
11571 (version "1.0.1")
11572 (source
11573 (origin
11574 (method url-fetch)
11575 (uri (cran-uri "sloop" version))
11576 (sha256
11577 (base32
11578 "00fk5fr5zsk2qxc1kfhmshhjxgnamm3401089sx8m2l529zd6r8j"))))
11579 (build-system r-build-system)
11580 (propagated-inputs
11581 `(("r-codetools" ,r-codetools)
11582 ("r-crayon" ,r-crayon)
11583 ("r-purrr" ,r-purrr)
11584 ("r-rlang" ,r-rlang)
11585 ("r-tibble" ,r-tibble)))
11586 (home-page "https://github.com/r-lib/sloop")
11587 (synopsis "Helpers for object-oriented programming in R")
11588 (description
11589 "This package provides a collection of helper functions designed to
11590 help you to better understand object oriented programming in R, particularly
11591 using @code{S3}.")
11592 (license license:gpl3)))
11593
11594 (define-public r-capushe
11595 (package
11596 (name "r-capushe")
11597 (version "1.1.1")
11598 (source
11599 (origin
11600 (method url-fetch)
11601 (uri (cran-uri "capushe" version))
11602 (sha256
11603 (base32
11604 "1aa76ir1kp67hiz7dr60azyc71yzslshyc640fjh0fpw0sp5kwbc"))))
11605 (build-system r-build-system)
11606 (propagated-inputs `(("r-mass" ,r-mass)))
11607 (home-page "https://cran.r-project.org/web/packages/capushe/index.html")
11608 (synopsis "Calibrating penalties using slope heuristics")
11609 (description
11610 "This package provides tools for the calibration of penalized criteria
11611 for model selection. The calibration methods available are based on the slope
11612 heuristics.")
11613 (license license:gpl2+)))
11614
11615 (define-public r-dorng
11616 (package
11617 (name "r-dorng")
11618 (version "1.7.1")
11619 (source
11620 (origin
11621 (method url-fetch)
11622 (uri (cran-uri "doRNG" version))
11623 (sha256
11624 (base32
11625 "1sb75aqkliprglfxc4x4wds6alqgzhvl2n812g1d32a88ra3slr7"))))
11626 (properties `((upstream-name . "doRNG")))
11627 (build-system r-build-system)
11628 (propagated-inputs
11629 `(("r-foreach" ,r-foreach)
11630 ("r-iterators" ,r-iterators)
11631 ("r-pkgmaker" ,r-pkgmaker)
11632 ("r-rngtools" ,r-rngtools)))
11633 (home-page "https://renozao.github.io/doRNG/")
11634 (synopsis "Generic reproducible parallel backend for foreach loops")
11635 (description
11636 "This package provides functions to perform reproducible parallel
11637 @code{foreach} loops, using independent random streams as generated by
11638 L'Ecuyer's combined multiple-recursive generator. It enables to easily
11639 convert standard @code{%dopar%} loops into fully reproducible loops,
11640 independently of the number of workers, the task scheduling strategy, or the
11641 chosen parallel environment and associated foreach backend.")
11642 (license license:gpl2+)))
11643
11644 (define-public r-blockmodeling
11645 (package
11646 (name "r-blockmodeling")
11647 (version "0.3.4")
11648 (source
11649 (origin
11650 (method url-fetch)
11651 (uri (cran-uri "blockmodeling" version))
11652 (sha256
11653 (base32
11654 "11v9903y9dwlzaqp8sx0fsibcg82phvappddy37r8lnxd4vchsd2"))))
11655 (build-system r-build-system)
11656 (propagated-inputs
11657 `(("r-doparallel" ,r-doparallel)
11658 ("r-dorng" ,r-dorng)
11659 ("r-foreach" ,r-foreach)
11660 ("r-matrix" ,r-matrix)))
11661 (native-inputs `(("gfortran" ,gfortran)))
11662 (home-page "https://cran.r-project.org/web/packages/blockmodeling")
11663 (synopsis "Generalized and classical blockmodeling of valued networks")
11664 (description
11665 "This package is primarily meant as an implementation of generalized
11666 blockmodeling for valued networks. In addition, measures of similarity or
11667 dissimilarity based on structural equivalence and regular equivalence (REGE
11668 algorithms) can be computed and partitioned matrices can be plotted.")
11669 (license license:gpl2+)))
11670
11671 (define-public r-upsetr
11672 (package
11673 (name "r-upsetr")
11674 (version "1.4.0")
11675 (source
11676 (origin
11677 (method url-fetch)
11678 (uri (cran-uri "UpSetR" version))
11679 (sha256
11680 (base32
11681 "007i0njnjjy7vbrxabwav7a1kk2n0hn2mkvqsdzzfk10ckp5y7im"))))
11682 (properties `((upstream-name . "UpSetR")))
11683 (build-system r-build-system)
11684 (propagated-inputs
11685 `(("r-ggplot2" ,r-ggplot2)
11686 ("r-gridextra" ,r-gridextra)
11687 ("r-plyr" ,r-plyr)
11688 ("r-scales" ,r-scales)))
11689 (home-page "https://github.com/hms-dbmi/UpSetR")
11690 (synopsis "Visualize intersecting sets")
11691 (description
11692 "This package provides a more scalable alternative to Venn and Euler
11693 diagrams for visualizing intersecting sets. Create visualizations of
11694 intersecting sets using a novel matrix design, along with visualizations of
11695 several common set, element and attribute related tasks.")
11696 (license license:expat)))
11697
11698 ;; This package includes a JavaScript file, which is not minified. When
11699 ;; upgrading please check that there are no new minified JavaScript files.
11700 (define-public r-shinybs
11701 (package
11702 (name "r-shinybs")
11703 (version "0.61")
11704 (source
11705 (origin
11706 (method url-fetch)
11707 (uri (cran-uri "shinyBS" version))
11708 (sha256
11709 (base32
11710 "0rhim4mbp4x9vvm7xkmpl7mhb9qd1gr96cr4dv330v863ra2kgji"))))
11711 (properties `((upstream-name . "shinyBS")))
11712 (build-system r-build-system)
11713 ;; The tests spawn Shiny browser apps. They cannot be run
11714 ;; non-interactively.
11715 (arguments '(#:tests? #f))
11716 (propagated-inputs
11717 `(("r-htmltools" ,r-htmltools)
11718 ("r-shiny" ,r-shiny)))
11719 (home-page "https://ebailey78.github.io/shinyBS/")
11720 (synopsis "Twitter Bootstrap components for Shiny")
11721 (description
11722 "This package adds additional Twitter Bootstrap components to Shiny.")
11723 (license license:gpl3)))
11724
11725 (define-public r-outliers
11726 (package
11727 (name "r-outliers")
11728 (version "0.14")
11729 (source
11730 (origin
11731 (method url-fetch)
11732 (uri (cran-uri "outliers" version))
11733 (sha256
11734 (base32
11735 "0vcqfqmmv4yblyp3s6bd25r49pxb7hjzipiic5a82924nqfqzkmn"))))
11736 (build-system r-build-system)
11737 (home-page "https://cran.r-project.org/web/packages/outliers/index.html")
11738 (synopsis "Tests for outliers")
11739 (description
11740 "This package provides a collection of some tests commonly used for
11741 identifying outliers.")
11742 (license license:gpl2+)))
11743
11744 (define-public r-bayesm
11745 (package
11746 (name "r-bayesm")
11747 (version "3.1-4")
11748 (source
11749 (origin
11750 (method url-fetch)
11751 (uri (cran-uri "bayesm" version))
11752 (sha256
11753 (base32 "154glks7rsjkza0sfi1kj7wj727py9sl1ba6sswflwmwc9n226q6"))))
11754 (build-system r-build-system)
11755 (propagated-inputs
11756 `(("r-rcpp" ,r-rcpp)
11757 ("r-rcpparmadillo" ,r-rcpparmadillo)))
11758 (home-page "http://www.perossi.org/home/bsm-1")
11759 (synopsis "Bayesian inference for marketing/micro-econometrics")
11760 (description
11761 "This package covers many important models used in marketing and
11762 micro-econometrics applications, including Bayes Regression (univariate or
11763 multivariate dep var), Bayes Seemingly Unrelated Regression (SUR), Binary and
11764 Ordinal Probit, Multinomial Logit (MNL) and Multinomial Probit (MNP),
11765 Multivariate Probit, Negative Binomial (Poisson) Regression, Multivariate
11766 Mixtures of Normals (including clustering), Dirichlet Process Prior Density
11767 Estimation with normal base, Hierarchical Linear Models with normal prior and
11768 covariates, Hierarchical Linear Models with a mixture of normals prior and
11769 covariates, Hierarchical Multinomial Logits with a mixture of normals prior
11770 and covariates, Hierarchical Multinomial Logits with a Dirichlet Process prior
11771 and covariates, Hierarchical Negative Binomial Regression Models, Bayesian
11772 analysis of choice-based conjoint data, Bayesian treatment of linear
11773 instrumental variables models, Analysis of Multivariate Ordinal survey data
11774 with scale usage heterogeneity, and Bayesian Analysis of Aggregate Random
11775 Coefficient Logit Models.")
11776 (license license:gpl2+)))
11777
11778 (define-public r-tensora
11779 (package
11780 (name "r-tensora")
11781 (version "0.36.1")
11782 (source
11783 (origin
11784 (method url-fetch)
11785 (uri (cran-uri "tensorA" version))
11786 (sha256
11787 (base32
11788 "176hjy3bvg3in62r97wxbhq187sjz6c1gwy9x6spaxl6k4my3zy7"))))
11789 (properties `((upstream-name . "tensorA")))
11790 (build-system r-build-system)
11791 (home-page "http://www.stat.boogaart.de/tensorA")
11792 (synopsis "Advanced tensor arithmetic with named indices")
11793 (description
11794 "This package provides convenience functions for advanced linear algebra
11795 with tensors and computation with datasets of tensors on a higher level
11796 abstraction. It includes Einstein and Riemann summing conventions, dragging,
11797 co- and contravariate indices, and parallel computations on sequences of
11798 tensors.")
11799 (license license:gpl2+)))
11800
11801 (define-public r-rarpack
11802 (package
11803 (name "r-rarpack")
11804 (version "0.11-0")
11805 (source
11806 (origin
11807 (method url-fetch)
11808 (uri (cran-uri "rARPACK" version))
11809 (sha256
11810 (base32
11811 "12h2y46xcfldhjdmm960swgn9b23zvkj5vg2bi42s9qxwgi02d63"))))
11812 (properties `((upstream-name . "rARPACK")))
11813 (build-system r-build-system)
11814 (propagated-inputs `(("r-rspectra" ,r-rspectra)))
11815 (home-page "https://github.com/yixuan/rARPACK")
11816 (synopsis "Solvers for large scale eigenvalue and SVD problems")
11817 (description
11818 "This package was previously an R wrapper of the ARPACK library, and now
11819 a shell of the R package RSpectra, an R interface to the Spectra library for
11820 solving large scale eigenvalue/vector problems. The current version of
11821 rARPACK simply imports and exports the functions provided by RSpectra. New
11822 users of rARPACK are advised to switch to the RSpectra package.")
11823 (license license:bsd-3)))
11824
11825 (define-public r-compositions
11826 (package
11827 (name "r-compositions")
11828 (version "1.40-3")
11829 (source
11830 (origin
11831 (method url-fetch)
11832 (uri (cran-uri "compositions" version))
11833 (sha256
11834 (base32
11835 "103hbmibrf1n333pn4xpll1gqqsv4szms0n5gdq7zak31aar0bg4"))))
11836 (build-system r-build-system)
11837 (propagated-inputs
11838 `(("r-bayesm" ,r-bayesm)
11839 ("r-robustbase" ,r-robustbase)
11840 ("r-tensora" ,r-tensora)))
11841 (home-page "http://www.stat.boogaart.de/compositions")
11842 (synopsis "Compositional data analysis")
11843 (description
11844 "This package provides functions for the consistent analysis of
11845 compositional data (e.g. portions of substances) and positive
11846 numbers (e.g. concentrations).")
11847 (license license:gpl2+)))
11848
11849 (define-public r-cobs
11850 (package
11851 (name "r-cobs")
11852 (version "1.3-3")
11853 (source
11854 (origin
11855 (method url-fetch)
11856 (uri (cran-uri "cobs" version))
11857 (sha256
11858 (base32
11859 "1pqvz7czcchri4x79g78hbwyagb3bqzdqb047zkbdinyz067c7kb"))))
11860 (build-system r-build-system)
11861 (propagated-inputs
11862 `(("r-quantreg" ,r-quantreg)
11863 ("r-sparsem" ,r-sparsem)))
11864 (home-page "https://cran.r-project.org/web/packages/cobs")
11865 (synopsis "Constrained B-Splines (sparse matrix based)")
11866 (description
11867 "This package provides qualitatively constrained (regression) smoothing
11868 splines via linear programming and sparse matrices.")
11869 (license license:gpl2+)))
11870
11871 (define-public r-drimpute
11872 (package
11873 (name "r-drimpute")
11874 (version "1.0")
11875 (source
11876 (origin
11877 (method url-fetch)
11878 (uri (cran-uri "DrImpute" version))
11879 (sha256
11880 (base32
11881 "1adzarrwqb282pqgx2yqswp9rpwd1naxsmar54kddr6qyd6b923b"))))
11882 (properties `((upstream-name . "DrImpute")))
11883 (build-system r-build-system)
11884 (propagated-inputs
11885 `(("r-rcpp" ,r-rcpp)
11886 ("r-rcpparmadillo" ,r-rcpparmadillo)))
11887 (home-page "https://github.com/ikwak2/DrImpute")
11888 (synopsis "Imputing dropout events in single-cell RNA-Seq data")
11889 (description
11890 "This is an R package for imputing dropout events. Many statistical
11891 methods in cell type identification, visualization and lineage reconstruction
11892 do not account for dropout events. DrImpute can improve the performance of
11893 such software by imputing dropout events.")
11894 (license license:gpl3)))
11895
11896 (define-public r-gamlss-dist
11897 (package
11898 (name "r-gamlss-dist")
11899 (version "5.1-5")
11900 (source
11901 (origin
11902 (method url-fetch)
11903 (uri (cran-uri "gamlss.dist" version))
11904 (sha256
11905 (base32 "1rl7hzdg5xpvaq3yyzwxhsaqzzs0qidi3ibv454fisijgv8l4vqw"))))
11906 (properties `((upstream-name . "gamlss.dist")))
11907 (build-system r-build-system)
11908 (propagated-inputs `(("r-mass" ,r-mass)))
11909 (home-page "http://www.gamlss.org/")
11910 (synopsis "Distributions for Generalized Additive Models for location scale and shape")
11911 (description
11912 "This package provides a set of distributions which can be used for
11913 modelling the response variables in Generalized Additive Models for Location
11914 Scale and Shape. The distributions can be continuous, discrete or mixed
11915 distributions. Extra distributions can be created, by transforming, any
11916 continuous distribution defined on the real line, to a distribution defined on
11917 ranges 0 to infinity or 0 to 1, by using a @code{log} or a @code{logit}
11918 transformation, respectively.")
11919 ;; Either version of the GPL.
11920 (license (list license:gpl2 license:gpl3))))
11921
11922 ;; This package includes JavaScript files, which are not minified. When
11923 ;; upgrading please check that there are no new minified JavaScript files.
11924 (define-public r-shinyjs
11925 (package
11926 (name "r-shinyjs")
11927 (version "1.0")
11928 (source
11929 (origin
11930 (method url-fetch)
11931 (uri (cran-uri "shinyjs" version))
11932 (sha256
11933 (base32
11934 "113zpijri0l80rlgrvqn6bxk0sdqgl79h7yhja2p76f9dc9i2sr8"))))
11935 (build-system r-build-system)
11936 (propagated-inputs
11937 `(("r-digest" ,r-digest)
11938 ("r-htmltools" ,r-htmltools)
11939 ("r-jsonlite" ,r-jsonlite)
11940 ("r-shiny" ,r-shiny)))
11941 (home-page "https://deanattali.com/shinyjs")
11942 (synopsis "Improve the user experience of your Shiny apps")
11943 (description
11944 "Perform common useful JavaScript operations in Shiny apps that will
11945 greatly improve your apps without having to know any JavaScript. Examples
11946 include: hiding an element, disabling an input, resetting an input back to its
11947 original value, delaying code execution by a few seconds, and many more useful
11948 functions for both the end user and the developer. Shinyjs can also be used
11949 to easily call your own custom JavaScript functions from R.")
11950 (license license:agpl3+)))
11951
11952 ;; This package includes minified JavaScript files. When upgrading please
11953 ;; check that there are no new minified JavaScript files.
11954 (define-public r-colourpicker
11955 (package
11956 (name "r-colourpicker")
11957 (version "1.0")
11958 (source
11959 (origin
11960 (method url-fetch)
11961 (uri (cran-uri "colourpicker" version))
11962 (sha256
11963 (base32
11964 "0z3v2083g7kwdp21x9s2n1crfh24agpdq3yxkcdzc2awn2pwpnpi"))))
11965 (build-system r-build-system)
11966 (arguments
11967 `(#:modules ((guix build utils)
11968 (guix build r-build-system)
11969 (srfi srfi-1)
11970 (ice-9 popen))
11971 #:phases
11972 (modify-phases %standard-phases
11973 (add-after 'unpack 'process-javascript
11974 (lambda* (#:key inputs #:allow-other-keys)
11975 (with-directory-excursion "inst"
11976 (call-with-values
11977 (lambda ()
11978 (unzip2
11979 `((,(assoc-ref inputs "js-salvattore")
11980 "examples/colourInput/www/salvattore.min.js")
11981 (,(assoc-ref inputs "js-jquery")
11982 "htmlwidgets/lib/jquery/jquery.min.js")
11983 ("www/shared/colourpicker/js/colourpicker.js"
11984 "www/shared/colourpicker/js/colourpicker.min.js"))))
11985 (lambda (sources targets)
11986 (for-each (lambda (source target)
11987 (format #t "Processing ~a --> ~a~%"
11988 source target)
11989 (delete-file target)
11990 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
11991 (call-with-output-file target
11992 (lambda (port)
11993 (dump-port minified port)))))
11994 sources targets))))
11995 #t)))))
11996 (propagated-inputs
11997 `(("r-ggplot2" ,r-ggplot2)
11998 ("r-htmltools" ,r-htmltools)
11999 ("r-htmlwidgets" ,r-htmlwidgets)
12000 ("r-jsonlite" ,r-jsonlite)
12001 ("r-miniui" ,r-miniui)
12002 ("r-shiny" ,r-shiny)
12003 ("r-shinyjs" ,r-shinyjs)))
12004 (native-inputs
12005 `(("uglify-js" ,uglify-js)
12006 ("js-jquery"
12007 ,(origin
12008 (method url-fetch)
12009 (uri "https://code.jquery.com/jquery-3.3.1.js")
12010 (sha256
12011 (base32
12012 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))
12013 ("js-salvattore"
12014 ,(origin
12015 (method url-fetch)
12016 (uri "https://raw.githubusercontent.com/rnmp/salvattore/v1.0.9/dist/salvattore.js")
12017 (sha256
12018 (base32
12019 "0lfrbx7l9w5x89jpc6njmd0pk7h8fpvg537vklai2vf7b1r2nnk5"))))))
12020 (home-page "https://github.com/daattali/colourpicker")
12021 (synopsis "Color picker tool for Shiny and for selecting colors in plots")
12022 (description
12023 "This package provides a color picker that can be used as an input in
12024 Shiny apps or Rmarkdown documents. The color picker supports alpha opacity,
12025 custom color palettes, and many more options. A plot color helper tool is
12026 available as an RStudio Addin, which helps you pick colors to use in your
12027 plots. A more generic color picker RStudio Addin is also provided to let you
12028 select colors to use in your R code.")
12029 (license license:expat)))
12030
12031 (define-public r-ggextra
12032 (package
12033 (name "r-ggextra")
12034 (version "0.9")
12035 (source
12036 (origin
12037 (method url-fetch)
12038 (uri (cran-uri "ggExtra" version))
12039 (sha256
12040 (base32
12041 "18mbi6gblqmrsciad1d2c9ngllk6mayaqj43k40hjq9ydqnvjbgj"))))
12042 (properties `((upstream-name . "ggExtra")))
12043 (build-system r-build-system)
12044 (propagated-inputs
12045 `(("r-colourpicker" ,r-colourpicker)
12046 ("r-ggplot2" ,r-ggplot2)
12047 ("r-gtable" ,r-gtable)
12048 ("r-miniui" ,r-miniui)
12049 ("r-r6" ,r-r6)
12050 ("r-scales" ,r-scales)
12051 ("r-shiny" ,r-shiny)
12052 ("r-shinyjs" ,r-shinyjs)))
12053 (home-page "https://github.com/daattali/ggExtra")
12054 (synopsis "Marginal histograms for ggplot2 and other enhancements")
12055 (description
12056 "This package is a collection of functions and layers to enhance ggplot2.
12057 The flagship function is @code{ggMarginal()}, which can be used to add
12058 marginal histograms/boxplots/density plots to ggplot2 scatterplots.")
12059 (license license:expat)))
12060
12061 (define-public r-minpack-lm
12062 (package
12063 (name "r-minpack-lm")
12064 (version "1.2-1")
12065 (source
12066 (origin
12067 (method url-fetch)
12068 (uri (cran-uri "minpack.lm" version))
12069 (sha256
12070 (base32
12071 "18ym2pdql5vzngc7q5gn66d153hrfrnd8ilv8yh6vd7j7sx7vjql"))))
12072 (properties `((upstream-name . "minpack.lm")))
12073 (build-system r-build-system)
12074 (native-inputs `(("gfortran" ,gfortran)))
12075 (home-page "https://cran.r-project.org/web/packages/minpack.lm")
12076 (synopsis "Levenberg-Marquardt Nonlinear Least-Squares algorithm")
12077 (description
12078 "The @code{nls.lm} function provides an R interface to @code{lmder} and
12079 @code{lmdif} from the MINPACK library, for solving nonlinear least-squares
12080 problems by a modification of the Levenberg-Marquardt algorithm, with support
12081 for lower and upper parameter bounds. The implementation can be used via
12082 @code{nls}-like calls using the @code{nlsLM} function.")
12083 (license license:gpl3)))
12084
12085 (define-public r-moments
12086 (package
12087 (name "r-moments")
12088 (version "0.14")
12089 (source
12090 (origin
12091 (method url-fetch)
12092 (uri (cran-uri "moments" version))
12093 (sha256
12094 (base32
12095 "0f9y58w1hxcz4bqivirx25ywlmc80gbi6dfx5cnhkpdg1pk82fra"))))
12096 (build-system r-build-system)
12097 (home-page "https://cran.r-project.org/web/packages/moments")
12098 (synopsis "Moments, cumulants, skewness, kurtosis and related tests")
12099 (description
12100 "This package provides functions to calculate: moments, Pearson's
12101 kurtosis, Geary's kurtosis and skewness; it also includes tests related to
12102 them (Anscombe-Glynn, D'Agostino, Bonett-Seier).")
12103 (license license:gpl2+)))
12104
12105 (define-public r-msir
12106 (package
12107 (name "r-msir")
12108 (version "1.3.2")
12109 (source
12110 (origin
12111 (method url-fetch)
12112 (uri (cran-uri "msir" version))
12113 (sha256
12114 (base32
12115 "0pvc3q162vqq3k39nni732x05zzfz4y9y2zf56d83185ypszv9kb"))))
12116 (build-system r-build-system)
12117 (propagated-inputs
12118 `(("r-mclust" ,r-mclust)))
12119 (home-page "https://cran.r-project.org/web/packages/msir")
12120 (synopsis "Model-based sliced inverse regression")
12121 (description
12122 "This is an R package for dimension reduction based on finite Gaussian
12123 mixture modeling of inverse regression.")
12124 (license license:gpl2+)))
12125
12126 (define-public r-pbivnorm
12127 (package
12128 (name "r-pbivnorm")
12129 (version "0.6.0")
12130 (source
12131 (origin
12132 (method url-fetch)
12133 (uri (cran-uri "pbivnorm" version))
12134 (sha256
12135 (base32
12136 "05jzrjqxzbcf6z245hlk7sjxiszv9paadaaimvcx5y5qgi87vhq7"))))
12137 (build-system r-build-system)
12138 (native-inputs `(("gfortran" ,gfortran)))
12139 (home-page "https://github.com/brentonk/pbivnorm")
12140 (synopsis "Vectorized bivariate normal CDF")
12141 (description
12142 "This package provides a vectorized R function for calculating
12143 probabilities from a standard bivariate normal CDF.")
12144 (license license:gpl2+)))
12145
12146 (define-public r-lavaan
12147 (package
12148 (name "r-lavaan")
12149 (version "0.6-5")
12150 (source
12151 (origin
12152 (method url-fetch)
12153 (uri (cran-uri "lavaan" version))
12154 (sha256
12155 (base32
12156 "04kvsh2m6mnzlhv83phr3hjzy4sx1ck6f7dgsm7xb8cs84dnxszy"))))
12157 (build-system r-build-system)
12158 (propagated-inputs
12159 `(("r-mass" ,r-mass)
12160 ("r-mnormt" ,r-mnormt)
12161 ("r-numderiv" ,r-numderiv)
12162 ("r-pbivnorm" ,r-pbivnorm)))
12163 (home-page "http://lavaan.ugent.be")
12164 (synopsis "Latent variable analysis")
12165 (description
12166 "This package provides tools to fit a variety of latent variable models,
12167 including confirmatory factor analysis, structural equation modeling and
12168 latent growth curve models.")
12169 (license license:gpl2+)))
12170
12171 (define-public r-nonnest2
12172 (package
12173 (name "r-nonnest2")
12174 (version "0.5-2")
12175 (source
12176 (origin
12177 (method url-fetch)
12178 (uri (cran-uri "nonnest2" version))
12179 (sha256
12180 (base32
12181 "1bq44qqmm59j91m0sny4xnqmxqlga4cm48qdsw8xfs3x19xwmxk6"))))
12182 (build-system r-build-system)
12183 (propagated-inputs
12184 `(("r-compquadform" ,r-compquadform)
12185 ("r-lavaan" ,r-lavaan)
12186 ("r-mvtnorm" ,r-mvtnorm)
12187 ("r-sandwich" ,r-sandwich)))
12188 (home-page "https://cran.r-project.org/web/packages/nonnest2/")
12189 (synopsis "Tests of non-nested models")
12190 (description
12191 "This package allows for testing of non-nested models. It includes tests
12192 of model distinguishability and of model fit that can be applied to both
12193 nested and non-nested models. The package also includes functionality to
12194 obtain confidence intervals associated with AIC and BIC.")
12195 ;; Either version of the GPL.
12196 (license (list license:gpl2 license:gpl3))))
12197
12198 (define-public r-penalized
12199 (package
12200 (name "r-penalized")
12201 (version "0.9-51")
12202 (source
12203 (origin
12204 (method url-fetch)
12205 (uri (cran-uri "penalized" version))
12206 (sha256
12207 (base32
12208 "1zcrwa93mc27qj3g4ayc2k895r6g8q0g6qb2azmvj7wqk750va7a"))))
12209 (build-system r-build-system)
12210 (propagated-inputs
12211 `(("r-rcpp" ,r-rcpp)
12212 ("r-rcpparmadillo" ,r-rcpparmadillo)
12213 ("r-survival" ,r-survival)))
12214 (home-page "https://cran.r-project.org/web/packages/penalized/")
12215 (synopsis "Penalized estimation in GLMs and in the Cox model")
12216 (description
12217 "This package provides tools for fitting possibly high dimensional
12218 penalized regression models. The penalty structure can be any combination of
12219 an L1 penalty (lasso and fused lasso), an L2 penalty (ridge) and a positivity
12220 constraint on the regression coefficients. The supported regression models
12221 are linear, logistic and Poisson regression and the Cox Proportional Hazards
12222 model. Cross-validation routines allow optimization of the tuning
12223 parameters.")
12224 (license license:gpl2+)))
12225
12226 (define-public r-zim
12227 (package
12228 (name "r-zim")
12229 (version "1.1.0")
12230 (source
12231 (origin
12232 (method url-fetch)
12233 (uri (cran-uri "ZIM" version))
12234 (sha256
12235 (base32
12236 "0scyfjn4ilsvha3x41c3b8bcfi31hlhwm77wn2a8hj5dsvnnmzig"))))
12237 (properties `((upstream-name . "ZIM")))
12238 (build-system r-build-system)
12239 (propagated-inputs `(("r-mass" ,r-mass)))
12240 (home-page "https://github.com/biostatstudio/ZIM")
12241 (synopsis "Zero-inflated models (ZIM) for count time series with excess zeros")
12242 (description
12243 "Analyze count time series with excess zeros. Two types of statistical
12244 models are supported: Markov regression and state-space models. They are also
12245 known as observation-driven and parameter-driven models respectively in the
12246 time series literature. The functions used for Markov regression or
12247 observation-driven models can also be used to fit ordinary regression models
12248 with independent data under the zero-inflated Poisson (ZIP) or zero-inflated
12249 negative binomial (ZINB) assumption. The package also contains miscellaneous
12250 functions to compute density, distribution, quantile, and generate random
12251 numbers from ZIP and ZINB distributions.")
12252 (license license:gpl3)))
12253
12254 (define-public r-nor1mix
12255 (package
12256 (name "r-nor1mix")
12257 (version "1.3-0")
12258 (source
12259 (origin
12260 (method url-fetch)
12261 (uri (cran-uri "nor1mix" version))
12262 (sha256
12263 (base32
12264 "1817wcvlmxs70vs4db0jkxd7i037744zz8ay3c2a9949z29fxr4w"))))
12265 (build-system r-build-system)
12266 (home-page "https://cran.r-project.org/web/packages/nor1mix/")
12267 (synopsis "Normal (1-d) mixture models")
12268 (description
12269 "This package provides S3 classes and methods for one-dimensional normal
12270 mixture models, for, e.g., density estimation or clustering algorithms
12271 research and teaching; it provides the widely used Marron-Wand densities. It
12272 also provides tools for efficient random number generation and graphics.")
12273 (license license:gpl2+)))
12274
12275 (define-public r-beanplot
12276 (package
12277 (name "r-beanplot")
12278 (version "1.2")
12279 (source
12280 (origin
12281 (method url-fetch)
12282 (uri (cran-uri "beanplot" version))
12283 (sha256
12284 (base32
12285 "0wmkr704fl8kdxkjwmaxw2a2h5dwzfgsgpncnk2p2wd4768jknj9"))))
12286 (build-system r-build-system)
12287 (home-page "https://cran.r-project.org/web/packages/beanplot/")
12288 (synopsis "Visualization via beanplots")
12289 (description
12290 "This package provides beanplots, an alternative to
12291 boxplot/stripchart/violin plots. It can be used to plot univariate comparison
12292 graphs.")
12293 (license license:gpl2)))
12294
12295 (define-public r-pbdzmq
12296 (package
12297 (name "r-pbdzmq")
12298 (version "0.3-3")
12299 (source
12300 (origin
12301 (method url-fetch)
12302 (uri (cran-uri "pbdZMQ" version))
12303 (sha256
12304 (base32
12305 "1jkfcfhspvqra7vbllrvkz3jx8j7d0ang6zzcdjgpb7200sc29mf"))))
12306 (properties `((upstream-name . "pbdZMQ")))
12307 (build-system r-build-system)
12308 (inputs
12309 `(("zeromq" ,zeromq)
12310 ("zlib" ,zlib)))
12311 (native-inputs
12312 `(("pkg-config" ,pkg-config)))
12313 (home-page "https://pbdr.org/")
12314 (synopsis "R interface to ZeroMQ")
12315 (description
12316 "ZeroMQ is a well-known library for high-performance asynchronous
12317 messaging in scalable, distributed applications. This package provides high
12318 level R wrapper functions to easily utilize ZeroMQ. The main focus is on
12319 interactive client/server programming frameworks. A few wrapper functions
12320 compatible with @code{rzmq} are also provided.")
12321 (license license:gpl3)))
12322
12323 (define-public r-repr
12324 (package
12325 (name "r-repr")
12326 (version "1.0.1")
12327 (source
12328 (origin
12329 (method url-fetch)
12330 (uri (cran-uri "repr" version))
12331 (sha256
12332 (base32
12333 "0jy43g34r38fqprcdys0p9pliahrj5l64a9bbkzy206qgz0j5ppc"))))
12334 (build-system r-build-system)
12335 (propagated-inputs
12336 `(("r-base64enc" ,r-base64enc)
12337 ("r-htmltools" ,r-htmltools)
12338 ("r-jsonlite" ,r-jsonlite)
12339 ("r-pillar" ,r-pillar)))
12340 (home-page "https://cran.r-project.org/web/packages/repr/")
12341 (synopsis "Serializable representations")
12342 (description
12343 "This package provides string and binary representations of objects for
12344 several formats and MIME types.")
12345 (license license:gpl3)))
12346
12347 (define-public r-irdisplay
12348 (package
12349 (name "r-irdisplay")
12350 (version "0.7.0")
12351 (source
12352 (origin
12353 (method url-fetch)
12354 (uri (cran-uri "IRdisplay" version))
12355 (sha256
12356 (base32
12357 "12chk53nf4zckgc4yl7gbvd7m5dvli52inp5b3f0zvcjvfncksli"))))
12358 (properties `((upstream-name . "IRdisplay")))
12359 (build-system r-build-system)
12360 (propagated-inputs
12361 `(("r-repr" ,r-repr)))
12362 (home-page "https://cran.r-project.org/web/packages/IRdisplay/")
12363 (synopsis "Jupyter display machinery")
12364 (description
12365 "This package provides an interface to the rich display capabilities of
12366 Jupyter front-ends (e.g. Jupyter Notebook). It is designed to be used from a
12367 running IRkernel session.")
12368 (license license:expat)))
12369
12370 (define-public r-irkernel
12371 (package
12372 (name "r-irkernel")
12373 (version "1.0.2")
12374 (source
12375 (origin
12376 (method url-fetch)
12377 (uri (cran-uri "IRkernel" version))
12378 (sha256
12379 (base32
12380 "040qig675zaxsf81ranmvk293amrswi5098k69wyq0vgqyin6vwp"))))
12381 (properties `((upstream-name . "IRkernel")))
12382 (build-system r-build-system)
12383 (arguments
12384 `(#:phases
12385 (modify-phases %standard-phases
12386 (add-after 'install 'install-kernelspec
12387 (lambda* (#:key outputs #:allow-other-keys)
12388 (let ((out (assoc-ref outputs "out")))
12389 (setenv "HOME" "/tmp")
12390 (invoke "jupyter" "kernelspec" "install"
12391 "--name" "ir"
12392 "--prefix" out
12393 (string-append out "/site-library/IRkernel/kernelspec"))
12394 #t))))))
12395 (inputs
12396 `(("jupyter" ,jupyter)))
12397 (propagated-inputs
12398 `(("r-crayon" ,r-crayon)
12399 ("r-digest" ,r-digest)
12400 ("r-evaluate" ,r-evaluate)
12401 ("r-irdisplay" ,r-irdisplay)
12402 ("r-jsonlite" ,r-jsonlite)
12403 ("r-pbdzmq" ,r-pbdzmq)
12404 ("r-repr" ,r-repr)
12405 ("r-uuid" ,r-uuid)))
12406 (home-page "https://cran.r-project.org/web/packages/IRkernel/")
12407 (synopsis "Native R kernel for Jupyter")
12408 (description
12409 "The R kernel for the Jupyter environment executes R code which the
12410 front-end (Jupyter Notebook or other front-ends) submits to the kernel via the
12411 network.")
12412 (license license:expat)))
12413
12414 (define-public r-gmodels
12415 (package
12416 (name "r-gmodels")
12417 (version "2.18.1")
12418 (source
12419 (origin
12420 (method url-fetch)
12421 (uri (cran-uri "gmodels" version))
12422 (sha256
12423 (base32
12424 "0s8kd8krqk4kwv2zqxpsfy3w8qdwf5naf4b5l383vidq9sil0qb2"))))
12425 (build-system r-build-system)
12426 (propagated-inputs
12427 `(("r-gdata" ,r-gdata)
12428 ("r-mass" ,r-mass)))
12429 (home-page "https://cran.r-project.org/web/packages/gmodels/")
12430 (synopsis "Various R programming tools for model fitting")
12431 (description
12432 "This package provides various R programming tools for model fitting.")
12433 (license license:gpl2)))
12434
12435 (define-public r-apcluster
12436 (package
12437 (name "r-apcluster")
12438 (version "1.4.8")
12439 (source
12440 (origin
12441 (method url-fetch)
12442 (uri (cran-uri "apcluster" version))
12443 (sha256
12444 (base32
12445 "0lzf2jqm56i74wif6x5sw3j0w2qc4sni49zq2fgbl89b7lwkvchj"))))
12446 (build-system r-build-system)
12447 (propagated-inputs
12448 `(("r-matrix" ,r-matrix)
12449 ("r-rcpp" ,r-rcpp)))
12450 (home-page "https://cran.r-project.org/web/packages/apcluster/")
12451 (synopsis "Affinity propagation clustering")
12452 (description
12453 "This package implements affinity propagation clustering introduced by
12454 Frey and Dueck (2007). The package further provides leveraged affinity
12455 propagation and an algorithm for exemplar-based agglomerative clustering that
12456 can also be used to join clusters obtained from affinity propagation. Various
12457 plotting functions are available for analyzing clustering results.")
12458 (license license:gpl2+)))
12459
12460 (define-public r-valr
12461 (package
12462 (name "r-valr")
12463 (version "0.5.0")
12464 (source
12465 (origin
12466 (method url-fetch)
12467 (uri (cran-uri "valr" version))
12468 (sha256
12469 (base32
12470 "14jhrwkiwmha3vlmm7b50n2xxyizj6ddmy89gb20mpzq7qhz1ika"))))
12471 (build-system r-build-system)
12472 (propagated-inputs
12473 `(("r-broom" ,r-broom)
12474 ("r-dplyr" ,r-dplyr)
12475 ("r-ggplot2" ,r-ggplot2)
12476 ("r-rcpp" ,r-rcpp)
12477 ("r-readr" ,r-readr)
12478 ("r-rlang" ,r-rlang)
12479 ("r-stringr" ,r-stringr)
12480 ("r-tibble" ,r-tibble)))
12481 (home-page "http://github.com/rnabioco/valr")
12482 (synopsis "Genome interval arithmetic in R")
12483 (description
12484 "This package enables you to read and manipulate genome intervals and
12485 signals. It provides functionality similar to command-line tool suites within
12486 R, enabling interactive analysis and visualization of genome-scale data.")
12487 (license license:expat)))
12488
12489 (define-public r-rematch2
12490 (package
12491 (name "r-rematch2")
12492 (version "2.1.0")
12493 (source
12494 (origin
12495 (method url-fetch)
12496 (uri (cran-uri "rematch2" version))
12497 (sha256
12498 (base32
12499 "00cznm6rk33b53w7zybkz7549bnydc66znpi5mb0xd24pmqp0rvq"))))
12500 (build-system r-build-system)
12501 (propagated-inputs
12502 `(("r-tibble" ,r-tibble)))
12503 (home-page "https://github.com/r-lib/rematch2")
12504 (synopsis "Tidy output from regular expression matching")
12505 (description
12506 "This package provides wrappers on @code{regexpr} and @code{gregexpr} to
12507 return the match results in tidy data frames.")
12508 (license license:expat)))
12509
12510 (define-public r-picante
12511 (package
12512 (name "r-picante")
12513 (version "1.8")
12514 (source
12515 (origin
12516 (method url-fetch)
12517 (uri (cran-uri "picante" version))
12518 (sha256
12519 (base32
12520 "1bcq2j7fs89c2jib68qq6la67rxyg9raryf162mwvjakpf6k19l1"))))
12521 (build-system r-build-system)
12522 (propagated-inputs
12523 `(("r-ape" ,r-ape)
12524 ("r-nlme" ,r-nlme)
12525 ("r-vegan" ,r-vegan)))
12526 (home-page "https://cran.r-project.org/web/packages/picante/")
12527 (synopsis "Integrating phylogenies and ecology")
12528 (description
12529 "This package provides functions for phylocom integration, community
12530 analyses, null-models, traits and evolution. It implements numerous
12531 ecophylogenetic approaches including measures of community phylogenetic and
12532 trait diversity, phylogenetic signal, estimation of trait values for
12533 unobserved taxa, null models for community and phylogeny randomizations, and
12534 utility functions for data input/output and phylogeny plotting. A full
12535 description of package functionality and methods are provided by Kembel et
12536 al. (2010).")
12537 (license license:gpl2)))
12538
12539 (define-public r-reinforcelearn
12540 (package
12541 (name "r-reinforcelearn")
12542 (version "0.2.1")
12543 (source
12544 (origin
12545 (method url-fetch)
12546 (uri (cran-uri "reinforcelearn" version))
12547 (sha256
12548 (base32
12549 "176z2q69p24i29a8sh19xxn2zl3h1z2ixdssr5i6m4yvkvdrvv3b"))))
12550 (build-system r-build-system)
12551 (propagated-inputs
12552 `(("r-checkmate" ,r-checkmate)
12553 ("r-nnet" ,r-nnet)
12554 ("r-purrr" ,r-purrr)
12555 ("r-r6" ,r-r6)))
12556 (home-page "https://markusdumke.github.io/reinforcelearn")
12557 (synopsis "Reinforcement learning")
12558 (description
12559 "This package implements reinforcement learning environments and
12560 algorithms as described in Sutton & Barto (1998). The Q-Learning algorithm
12561 can be used with function approximation, eligibility traces (Singh & Sutton,
12562 1996) and experience replay (Mnih et al., 2013).")
12563 (license license:expat)))
12564
12565 (define-public r-lemon
12566 (package
12567 (name "r-lemon")
12568 (version "0.4.3")
12569 (source
12570 (origin
12571 (method url-fetch)
12572 (uri (cran-uri "lemon" version))
12573 (sha256
12574 (base32
12575 "0wsn5bfg10wq4dnrgpyraz2bzx9p19c7hf1pwj3h4zmpqfgsdbpw"))))
12576 (build-system r-build-system)
12577 (propagated-inputs
12578 `(("r-ggplot2" ,r-ggplot2)
12579 ("r-gridextra" ,r-gridextra)
12580 ("r-gtable" ,r-gtable)
12581 ("r-knitr" ,r-knitr)
12582 ("r-lattice" ,r-lattice)
12583 ("r-plyr" ,r-plyr)
12584 ("r-scales" ,r-scales)))
12585 (home-page "https://github.com/stefanedwards/lemon")
12586 (synopsis "Freshen up your ggplot2 plots")
12587 (description
12588 "This package provides functions for working with legends and axis lines
12589 of ggplot2, facets that repeat axis lines on all panels, and some knitr
12590 extensions.")
12591 (license license:gpl3)))
12592
12593 (define-public r-wgaim
12594 (package
12595 (name "r-wgaim")
12596 (version "2.0-1")
12597 (source
12598 (origin
12599 (method url-fetch)
12600 (uri (cran-uri "wgaim" version))
12601 (sha256
12602 (base32 "1qiyfkpsbzjr9xsq5kqq6rlqpndngkn2irdfh3gyi45h6hn118j4"))))
12603 (build-system r-build-system)
12604 (propagated-inputs
12605 `(("r-ggplot2" ,r-ggplot2)
12606 ("r-qtl" ,r-qtl)))
12607 (home-page "https://cran.r-project.org/web/packages/wgaim")
12608 (synopsis "Whole genome average interval mapping for QTL detection")
12609 (description
12610 "This package integrates sophisticated mixed modelling methods with a
12611 whole genome approach to detecting significant QTL in linkage maps.")
12612 (license license:gpl2+)))
12613
12614 (define-public r-bedr
12615 (package
12616 (name "r-bedr")
12617 (version "1.0.7")
12618 (source
12619 (origin
12620 (method url-fetch)
12621 (uri (cran-uri "bedr" version))
12622 (sha256
12623 (base32
12624 "0zpqvyjgwyqawxm8qrhcv8zq2b3yxgcqkkc87br29yrl7sjb8h6j"))))
12625 (build-system r-build-system)
12626 (propagated-inputs
12627 `(("r-data-table" ,r-data-table)
12628 ("r-r-utils" ,r-r-utils)
12629 ("r-testthat" ,r-testthat)
12630 ("r-venndiagram" ,r-venndiagram)
12631 ("r-yaml" ,r-yaml)
12632 ("bedops" ,bedops)
12633 ("bedtools" ,bedtools)
12634 ("htslib" ,htslib))) ; for tabix
12635 (native-inputs
12636 `(("r-knitr" ,r-knitr))) ; for vignettes
12637 (home-page "https://cran.r-project.org/web/packages/bedr")
12638 (synopsis "Genomic region processing")
12639 (description
12640 "This package is for genomic regions processing using command line tools
12641 such as BEDTools, BEDOPS and Tabix. These tools offer scalable and efficient
12642 utilities to perform genome arithmetic e.g indexing, formatting and merging.
12643 The bedr package's API enhances access to these tools as well as offers
12644 additional utilities for genomic regions processing.")
12645 (license license:gpl2)))
12646
12647 (define-public r-sets
12648 (package
12649 (name "r-sets")
12650 (version "1.0-18")
12651 (source
12652 (origin
12653 (method url-fetch)
12654 (uri (cran-uri "sets" version))
12655 (sha256
12656 (base32
12657 "16v7650p47khqrbbw0z98llmwmmhswqmhri0n7nrfhdqwmby1lbl"))))
12658 (properties `((upstream-name . "sets")))
12659 (build-system r-build-system)
12660 (home-page "https://cran.r-project.org/web/packages/sets")
12661 (synopsis "Sets, generalized sets, customizable sets and intervals")
12662 (description
12663 "This package provides data structures and basic operations for ordinary
12664 sets, generalizations such as fuzzy sets, multisets, and fuzzy multisets,
12665 customizable sets, and intervals.")
12666 (license license:gpl2)))
12667
12668 (define-public r-partitions
12669 (package
12670 (name "r-partitions")
12671 (version "1.9-22")
12672 (source
12673 (origin
12674 (method url-fetch)
12675 (uri (cran-uri "partitions" version))
12676 (sha256
12677 (base32
12678 "1qqy4df28wy4q0g572azrj171jlhvrnzbh7x0wr2g7v6gr20y0ns"))))
12679 (build-system r-build-system)
12680 (propagated-inputs
12681 `(("r-gmp" ,r-gmp)
12682 ("r-polynom" ,r-polynom)
12683 ("r-sets" ,r-sets)))
12684 (home-page "https://cran.r-project.org/web/packages/partitions")
12685 (synopsis "Additive partitions of integers")
12686 (description
12687 "This package provides tools to enumerates the partitions, unequal
12688 partitions, and restricted partitions of an integer; the three corresponding
12689 partition functions are also given.")
12690 ;; Any version of the GPL
12691 (license license:gpl2+)))
12692
12693 (define-public r-brobdingnag
12694 (package
12695 (name "r-brobdingnag")
12696 (version "1.2-6")
12697 (source
12698 (origin
12699 (method url-fetch)
12700 (uri (cran-uri "Brobdingnag" version))
12701 (sha256
12702 (base32
12703 "1m3ajvcksqfck5l5hj5xiflj4ry6d896ybv4f0xxks8chgnwmv0r"))))
12704 (properties `((upstream-name . "Brobdingnag")))
12705 (build-system r-build-system)
12706 (home-page "https://github.com/RobinHankin/Brobdingnag.git")
12707 (synopsis "Very large numbers in R")
12708 (description
12709 "This package handles very large numbers in R. Real numbers are held
12710 using their natural logarithms, plus a logical flag indicating sign. The
12711 package includes a vignette that gives a step-by-step introduction to using S4
12712 methods.")
12713 ;; Any version of the GPL
12714 (license license:gpl2+)))
12715
12716 (define-public r-untb
12717 (package
12718 (name "r-untb")
12719 (version "1.7-4")
12720 (source
12721 (origin
12722 (method url-fetch)
12723 (uri (cran-uri "untb" version))
12724 (sha256
12725 (base32
12726 "1i7m4vfslsix98dwx4jlrsldm7fhhfp25gr7aapcxqxms7ryaby6"))))
12727 (build-system r-build-system)
12728 (propagated-inputs
12729 `(("r-brobdingnag" ,r-brobdingnag)
12730 ("r-partitions" ,r-partitions)
12731 ("r-polynom" ,r-polynom)))
12732 (home-page "https://github.com/RobinHankin/untb.git")
12733 (synopsis "Ecological drift under the UNTB")
12734 (description
12735 "This package provides numerical simulations, and visualizations, of
12736 Hubbell's @dfn{Unified Neutral Theory of Biodiversity} (UNTB).")
12737 (license license:gpl2+)))
12738
12739 (define-public r-stepwise
12740 (package
12741 (name "r-stepwise")
12742 (version "0.3")
12743 (source
12744 (origin
12745 (method url-fetch)
12746 (uri (cran-uri "stepwise" version))
12747 (sha256
12748 (base32
12749 "1lbx1bxwkf9dw6q46w40pp7h5nkxgghmx8rkpaymm6iybc7gyir2"))))
12750 (build-system r-build-system)
12751 (home-page "http://stat.sfu.ca/statgen/research/stepwise.html")
12752 (synopsis "Stepwise detection of recombination breakpoints")
12753 (description
12754 "This package provides a stepwise approach to identifying recombination
12755 breakpoints in a genomic sequence alignment.")
12756 (license license:gpl2+)))
12757
12758 (define-public r-snpmaxsel
12759 (package
12760 (name "r-snpmaxsel")
12761 (version "1.0-3")
12762 (source
12763 (origin
12764 (method url-fetch)
12765 (uri (cran-uri "SNPmaxsel" version))
12766 (sha256
12767 (base32
12768 "0pjvixwqzjd3jwccc8yqq9c76afvbmfq0z1w0cwyj8bblrjpx13z"))))
12769 (properties `((upstream-name . "SNPmaxsel")))
12770 (build-system r-build-system)
12771 (propagated-inputs
12772 `(("r-combinat" ,r-combinat)
12773 ("r-mvtnorm" ,r-mvtnorm)))
12774 (home-page "https://cran.r-project.org/web/packages/SNPmaxsel/index.html")
12775 (synopsis "Maximally selected statistics for SNP data")
12776 (description
12777 "This package implements asymptotic methods related to maximally selected
12778 statistics, with applications to @dfn{single-nucleotide polymorphism} (SNP)
12779 data.")
12780 (license license:gpl2+)))
12781
12782 (define-public r-acsnminer
12783 (package
12784 (name "r-acsnminer")
12785 (version "0.16.8.25")
12786 (source (origin
12787 (method url-fetch)
12788 (uri (cran-uri "ACSNMineR" version))
12789 (sha256
12790 (base32
12791 "0gh604s8qall6zfjlwcg2ilxjvz08dplf9k5g47idhv43scm748l"))))
12792 (properties `((upstream-name . "ACSNMineR")))
12793 (build-system r-build-system)
12794 (propagated-inputs
12795 `(("r-ggplot2" ,r-ggplot2)
12796 ("r-gridextra" ,r-gridextra)))
12797 (home-page "https://cran.r-project.org/web/packages/ACSNMineR")
12798 (synopsis "Gene enrichment analysis")
12799 (description
12800 "This package provides tools to compute and represent gene set enrichment
12801 or depletion from your data based on pre-saved maps from the @dfn{Atlas of
12802 Cancer Signalling Networks} (ACSN) or user imported maps. The gene set
12803 enrichment can be run with hypergeometric test or Fisher exact test, and can
12804 use multiple corrections. Visualization of data can be done either by
12805 barplots or heatmaps.")
12806 (license license:gpl2+)))
12807
12808 (define-public r-seqinr
12809 (package
12810 (name "r-seqinr")
12811 (version "3.6-1")
12812 (source
12813 (origin
12814 (method url-fetch)
12815 (uri (cran-uri "seqinr" version))
12816 (sha256
12817 (base32
12818 "0j30za6kji6y3v09cvcydiacnp65pv6ig8aw7cydl47l5s9chky4"))))
12819 (build-system r-build-system)
12820 (propagated-inputs
12821 `(("r-ade4" ,r-ade4)
12822 ("r-segmented" ,r-segmented)))
12823 (inputs
12824 `(("zlib" ,zlib)))
12825 (home-page "http://seqinr.r-forge.r-project.org/")
12826 (synopsis "Biological sequences retrieval and analysis")
12827 (description
12828 "This package provides tools for exploratory data analysis and data
12829 visualization of biological sequence (DNA and protein) data. It also includes
12830 utilities for sequence data management under the ACNUC system.")
12831 (license license:gpl2+)))
12832
12833 (define-public r-units
12834 (package
12835 (name "r-units")
12836 (version "0.6-5")
12837 (source
12838 (origin
12839 (method url-fetch)
12840 (uri (cran-uri "units" version))
12841 (sha256
12842 (base32
12843 "02nls8m0r1r7kljs4x35naz3szq62hyqyd5vracf1xwi1kz5kdsh"))))
12844 (build-system r-build-system)
12845 (inputs
12846 `(("udunits" ,udunits)))
12847 (propagated-inputs
12848 `(("r-rcpp" ,r-rcpp)))
12849 (home-page "https://github.com/r-quantities/units/")
12850 (synopsis "Measurement Units for R Vectors")
12851 (description
12852 "This package provides support for measurement units in R vectors,
12853 matrices and arrays: automatic propagation, conversion, derivation and
12854 simplification of units; raising errors in case of unit incompatibility. It
12855 is compatible with the @code{POSIXct}, @code{Date} and @code{difftime}
12856 classes.")
12857 (license license:gpl2)))
12858
12859 (define-public r-classint
12860 (package
12861 (name "r-classint")
12862 (version "0.4-2")
12863 (source
12864 (origin
12865 (method url-fetch)
12866 (uri (cran-uri "classInt" version))
12867 (sha256
12868 (base32
12869 "0w980hrw8sgfdfyd5dsimalq7gwhvqm7507abk7k363pvgks23dv"))))
12870 (properties `((upstream-name . "classInt")))
12871 (build-system r-build-system)
12872 (propagated-inputs
12873 `(("r-class" ,r-class)
12874 ("r-e1071" ,r-e1071)
12875 ("r-kernsmooth" ,r-kernsmooth)))
12876 (native-inputs `(("gfortran" ,gfortran)))
12877 (home-page "https://github.com/r-spatial/classInt/")
12878 (synopsis "Choose univariate class intervals")
12879 (description
12880 "This package provides selected commonly used methods for choosing
12881 univariate class intervals for mapping or other graphics purposes.")
12882 (license license:gpl2+)))
12883
12884 (define-public r-spdata
12885 (package
12886 (name "r-spdata")
12887 (version "0.3.2")
12888 (source
12889 (origin
12890 (method url-fetch)
12891 (uri (cran-uri "spData" version))
12892 (sha256
12893 (base32
12894 "190msrrpn226x27pcnck4ac34f9k4xcn26cyz2apdri2nzkr6zbw"))))
12895 (properties `((upstream-name . "spData")))
12896 (build-system r-build-system)
12897 (home-page "https://github.com/Nowosad/spData")
12898 (synopsis "Datasets for spatial analysis")
12899 (description
12900 "This a package containing diverse spatial datasets for demonstrating,
12901 benchmarking and teaching spatial data analysis. It includes R data of class
12902 @code{sf}, @code{Spatial}, and @code{nb}. It also contains data stored in a
12903 range of file formats including GeoJSON, ESRI Shapefile and GeoPackage. Some
12904 of the datasets are designed to illustrate specific analysis techniques.
12905 @code{cycle_hire()} and @code{cycle_hire_osm()}, for example, are designed to
12906 illustrate point pattern analysis techniques.")
12907 (license license:cc0)))
12908
12909 (define-public r-learnbayes
12910 (package
12911 (name "r-learnbayes")
12912 (version "2.15.1")
12913 (source
12914 (origin
12915 (method url-fetch)
12916 (uri (cran-uri "LearnBayes" version))
12917 (sha256
12918 (base32
12919 "0ch54v2zz2yyyk0lvn5rfikdmyz1qh9j1wk3585wl8v58mc0h4cv"))))
12920 (properties `((upstream-name . "LearnBayes")))
12921 (build-system r-build-system)
12922 (home-page "https://cran.r-project.org/web/packages/LearnBayes")
12923 (synopsis "Functions for learning Bayesian inference")
12924 (description
12925 "This package provides a collection of functions helpful in learning the
12926 basic tenets of Bayesian statistical inference. It contains functions for
12927 summarizing basic one and two parameter posterior distributions and predictive
12928 distributions. It contains MCMC algorithms for summarizing posterior
12929 distributions defined by the user. It also contains functions for regression
12930 models, hierarchical models, Bayesian tests, and illustrations of Gibbs
12931 sampling.")
12932 (license license:gpl2+)))
12933
12934 (define-public r-deldir
12935 (package
12936 (name "r-deldir")
12937 (version "0.1-23")
12938 (source
12939 (origin
12940 (method url-fetch)
12941 (uri (cran-uri "deldir" version))
12942 (sha256
12943 (base32
12944 "0790dwxb2mz1ffz8gd5vwdr0if2q76dzy3vab5rsykf9kz72n4g0"))))
12945 (build-system r-build-system)
12946 (native-inputs `(("gfortran" ,gfortran)))
12947 (home-page "https://cran.r-project.org/web/packages/deldir")
12948 (synopsis "Delaunay triangulation and Dirichlet (Voronoi) tessellation")
12949 (description
12950 "This package provides tools for calculating the Delaunay triangulation
12951 and the Dirichlet or Voronoi tessellation (with respect to the entire plane)
12952 of a planar point set. It plots triangulations and tessellations in various
12953 ways, clips tessellations to sub-windows, calculates perimeters of
12954 tessellations, and summarizes information about the tiles of the
12955 tessellation.")
12956 (license license:gpl2+)))
12957
12958 (define-public r-sf
12959 (package
12960 (name "r-sf")
12961 (version "0.8-0")
12962 (source
12963 (origin
12964 (method url-fetch)
12965 (uri (cran-uri "sf" version))
12966 (sha256
12967 (base32
12968 "05dyq0vcz2f1fl03hk3v1a4nz4s84yyqw4rc9w9cwfq71gvm9qwf"))))
12969 (build-system r-build-system)
12970 (inputs
12971 `(("gdal" ,gdal)
12972 ("geos" ,geos)
12973 ("proj" ,proj.4)
12974 ("zlib" ,zlib)))
12975 (propagated-inputs
12976 `(("r-classint" ,r-classint)
12977 ("r-dbi" ,r-dbi)
12978 ("r-magrittr" ,r-magrittr)
12979 ("r-rcpp" ,r-rcpp)
12980 ("r-units" ,r-units)))
12981 (native-inputs `(("pkg-config" ,pkg-config)))
12982 (home-page "https://github.com/r-spatial/sf/")
12983 (synopsis "Simple features for R")
12984 (description
12985 "This package provides support for simple features, a standardized way to
12986 encode spatial vector data. It binds to GDAL for reading and writing data, to
12987 GEOS for geometrical operations, and to PROJ for projection conversions and
12988 datum transformations.")
12989 ;; Either of these licenses
12990 (license (list license:gpl2 license:expat))))
12991
12992 (define-public r-spdep
12993 (package
12994 (name "r-spdep")
12995 (version "1.1-3")
12996 (source
12997 (origin
12998 (method url-fetch)
12999 (uri (cran-uri "spdep" version))
13000 (sha256
13001 (base32
13002 "1f8cjffqqc6rnb3n4qym70ca6nz2kvrsd3g587wrqdr79nnbwnrk"))))
13003 (build-system r-build-system)
13004 (propagated-inputs
13005 `(("r-boot" ,r-boot)
13006 ("r-coda" ,r-coda)
13007 ("r-deldir" ,r-deldir)
13008 ("r-expm" ,r-expm)
13009 ("r-gmodels" ,r-gmodels)
13010 ("r-learnbayes" ,r-learnbayes)
13011 ("r-mass" ,r-mass)
13012 ("r-matrix" ,r-matrix)
13013 ("r-nlme" ,r-nlme)
13014 ("r-sf" ,r-sf)
13015 ("r-sp" ,r-sp)
13016 ("r-spdata" ,r-spdata)))
13017 (home-page "https://github.com/r-spatial/spdep/")
13018 (synopsis "Spatial dependence: weighting schemes, statistics and models")
13019 (description
13020 "This package provides a collection of functions to create spatial
13021 weights matrix objects from polygon contiguities, from point patterns by
13022 distance and tessellations, for summarizing these objects, and for permitting
13023 their use in spatial data analysis, including regional aggregation by minimum
13024 spanning tree.")
13025 (license license:gpl2+)))
13026
13027 (define-public r-adegenet
13028 (package
13029 (name "r-adegenet")
13030 (version "2.1.1")
13031 (source
13032 (origin
13033 (method url-fetch)
13034 (uri (cran-uri "adegenet" version))
13035 (sha256
13036 (base32
13037 "0ynfblp0hbd3dp3k86fn1wyhqr28lk6hs2bg4q7gyf0sfdfzwhrh"))))
13038 (build-system r-build-system)
13039 (propagated-inputs
13040 `(("r-ade4" ,r-ade4)
13041 ("r-ape" ,r-ape)
13042 ("r-boot" ,r-boot)
13043 ("r-dplyr" ,r-dplyr)
13044 ("r-ggplot2" ,r-ggplot2)
13045 ("r-igraph" ,r-igraph)
13046 ("r-mass" ,r-mass)
13047 ("r-reshape2" ,r-reshape2)
13048 ("r-seqinr" ,r-seqinr)
13049 ("r-shiny" ,r-shiny)
13050 ("r-spdep" ,r-spdep)
13051 ("r-vegan" ,r-vegan)))
13052 (home-page "https://github.com/thibautjombart/adegenet")
13053 (synopsis "Exploratory analysis of genetic and genomic data")
13054 (description
13055 "This package provides a toolset for the exploration of genetic and
13056 genomic data. Adegenet provides formal (S4) classes for storing and handling
13057 various genetic data, including genetic markers with varying ploidy and
13058 hierarchical population structure (@code{genind} class), alleles counts by
13059 populations (@code{genpop}), and genome-wide SNP data (@code{genlight}). It
13060 also implements original multivariate methods (DAPC, sPCA), graphics,
13061 statistical tests, simulation tools, distance and similarity measures, and
13062 several spatial methods. A range of both empirical and simulated datasets is
13063 also provided to illustrate various methods.")
13064 (license license:gpl2+)))
13065
13066 (define-public r-pegas
13067 (package
13068 (name "r-pegas")
13069 (version "0.12")
13070 (source
13071 (origin
13072 (method url-fetch)
13073 (uri (cran-uri "pegas" version))
13074 (sha256
13075 (base32 "0sb8cmz4d238mcb56hv9fa0cagm00k82r7aj4cj4lxa1flxlpy8p"))))
13076 (build-system r-build-system)
13077 (propagated-inputs
13078 `(("r-adegenet" ,r-adegenet)
13079 ("r-ape" ,r-ape)))
13080 (home-page "http://ape-package.ird.fr/pegas.html")
13081 (synopsis "Population and evolutionary genetics analysis system")
13082 (description
13083 "This package provides functions for reading, writing, plotting,
13084 analysing, and manipulating allelic and haplotypic data, including from VCF
13085 files, and for the analysis of population nucleotide sequences and
13086 micro-satellites including coalescent analyses, linkage disequilibrium,
13087 population structure (Fst, Amova) and equilibrium (HWE), haplotype networks,
13088 minimum spanning tree and network, and median-joining networks.")
13089 (license license:gpl2+)))
13090
13091 (define-public r-rmetasim
13092 (package
13093 (name "r-rmetasim")
13094 (version "3.1.7")
13095 (source
13096 (origin
13097 (method url-fetch)
13098 (uri (cran-uri "rmetasim" version))
13099 (sha256
13100 (base32
13101 "0sz4mdprdi6sgkfwfdvh2hr9nxiwq17sw0vggq3cvs7lzb0i6m9r"))))
13102 (build-system r-build-system)
13103 (propagated-inputs
13104 `(("r-ade4" ,r-ade4)
13105 ("r-adegenet" ,r-adegenet)
13106 ("r-gtools" ,r-gtools)
13107 ("r-pegas" ,r-pegas)))
13108 (home-page "https://cran.r-project.org/web/packages/rmetasim")
13109 (synopsis "Individual-based population genetic simulation environment")
13110 (description
13111 "This package provides an interface between R and the metasim simulation
13112 engine. The simulation environment is documented in: Strand, A.(2002),
13113 Metasim 1.0: an individual-based environment for simulating population
13114 genetics of complex population dynamics.")
13115 ;; Any GPL version
13116 (license license:gpl2+)))
13117
13118 (define-public r-genetics
13119 (package
13120 (name "r-genetics")
13121 (version "1.3.8.1.2")
13122 (source
13123 (origin
13124 (method url-fetch)
13125 (uri (cran-uri "genetics" version))
13126 (sha256
13127 (base32
13128 "1v0ylnia6c44v356dsmnkx6054vcxazpzsrdh3yph5ch5vg6gjrh"))))
13129 (build-system r-build-system)
13130 (propagated-inputs
13131 `(("r-combinat" ,r-combinat)
13132 ("r-gdata" ,r-gdata)
13133 ("r-gtools" ,r-gtools)
13134 ("r-mass" ,r-mass)
13135 ("r-mvtnorm" ,r-mvtnorm)))
13136 (home-page "https://cran.r-project.org/web/packages/genetics/")
13137 (synopsis "Population genetics")
13138 (description
13139 "This package provides classes and methods for handling genetic data.
13140 It includes classes to represent genotypes and haplotypes at single markers up
13141 to multiple markers on multiple chromosomes. Function include allele
13142 frequencies, flagging homo/heterozygotes, flagging carriers of certain
13143 alleles, estimating and testing for Hardy-Weinberg disequilibrium, estimating
13144 and testing for linkage disequilibrium, ...")
13145 ;; Any GPL version.
13146 (license license:gpl2+)))
13147
13148 (define-public r-snp-plotter
13149 (package
13150 (name "r-snp-plotter")
13151 (version "0.5.1")
13152 (source
13153 (origin
13154 (method url-fetch)
13155 (uri (cran-uri "snp.plotter" version))
13156 (sha256
13157 (base32
13158 "16apsqvkah5l0d5qcwp3lq2jspkb6n62wzr0wskmj84jblx483vv"))))
13159 (properties `((upstream-name . "snp.plotter")))
13160 (build-system r-build-system)
13161 (propagated-inputs `(("r-genetics" ,r-genetics)))
13162 (home-page "https://cran.r-project.org/web/packages/snp.plotter/")
13163 (synopsis "Plot p-values using single SNP and/or haplotype data")
13164 (description
13165 "This package helps you create plots of p-values using single SNP and/or
13166 haplotype data. Main features of the package include options to display a
13167 @dfn{linkage disequilibrium} (LD) plot and the ability to plot multiple
13168 datasets simultaneously. Plots can be created using global and/or individual
13169 haplotype p-values along with single SNP p-values. Images are created as
13170 either PDF/EPS files.")
13171 (license license:gpl2+)))
13172
13173 (define-public r-polspline
13174 (package
13175 (name "r-polspline")
13176 (version "1.1.17")
13177 (source
13178 (origin
13179 (method url-fetch)
13180 (uri (cran-uri "polspline" version))
13181 (sha256
13182 (base32 "0c7fnxpqpy3hibiim4yib6l6bq363s97wwvllxp4lp8h06fjcyyn"))))
13183 (build-system r-build-system)
13184 (native-inputs `(("gfortran" ,gfortran)))
13185 (home-page "https://cran.r-project.org/web/packages/polspline/")
13186 (synopsis "Polynomial spline routines")
13187 (description
13188 "This package provides routines for the polynomial spline fitting
13189 routines hazard regression, hazard estimation with flexible tails, logspline,
13190 lspec, polyclass, and polymars.")
13191 (license license:gpl2+)))
13192
13193 (define-public r-rms
13194 (package
13195 (name "r-rms")
13196 (version "5.1-4")
13197 (source
13198 (origin
13199 (method url-fetch)
13200 (uri (cran-uri "rms" version))
13201 (sha256
13202 (base32 "19knh1sw0icw6jh9wfb2hq5jf49i2qfvp9myvqm5paa495689x9q"))))
13203 (build-system r-build-system)
13204 (propagated-inputs
13205 `(("r-ggplot2" ,r-ggplot2)
13206 ("r-hmisc" ,r-hmisc)
13207 ("r-htmltable" ,r-htmltable)
13208 ("r-htmltools" ,r-htmltools)
13209 ("r-lattice" ,r-lattice)
13210 ("r-multcomp" ,r-multcomp)
13211 ("r-nlme" ,r-nlme)
13212 ("r-polspline" ,r-polspline)
13213 ("r-quantreg" ,r-quantreg)
13214 ("r-rpart" ,r-rpart)
13215 ("r-sparsem" ,r-sparsem)
13216 ("r-survival" ,r-survival)))
13217 (native-inputs `(("gfortran" ,gfortran)))
13218 (home-page "http://biostat.mc.vanderbilt.edu/rms")
13219 (synopsis "Regression modeling strategies")
13220 (description
13221 "This is a package for regression modeling, testing, estimation,
13222 validation, graphics, prediction, and typesetting by storing enhanced model
13223 design attributes in the fit. The rms package is a collection of functions
13224 that assist with and streamline modeling. It also contains functions for
13225 binary and ordinal logistic regression models, ordinal models for continuous Y
13226 with a variety of distribution families, and the Buckley-James multiple
13227 regression model for right-censored responses, and implements penalized
13228 maximum likelihood estimation for logistic and ordinary linear models. The
13229 package works with almost any regression model, but it was especially written
13230 to work with binary or ordinal regression models, Cox regression, accelerated
13231 failure time models, ordinary linear models, the Buckley-James model,
13232 generalized least squares for serially or spatially correlated observations,
13233 generalized linear models, and quantile regression.")
13234 (license license:gpl2+)))
13235
13236 (define-public r-haplo-stats
13237 (package
13238 (name "r-haplo-stats")
13239 (version "1.7.9")
13240 (source
13241 (origin
13242 (method url-fetch)
13243 (uri (cran-uri "haplo.stats" version))
13244 (sha256
13245 (base32
13246 "19kxascqq5qz0zdxx0w837ji207y1z2ggxkl4vmlbay03k2dw2mx"))))
13247 (properties `((upstream-name . "haplo.stats")))
13248 (build-system r-build-system)
13249 (propagated-inputs
13250 `(("r-rms" ,r-rms)))
13251 (native-inputs
13252 `(("r-r-rsp" ,r-r-rsp))) ; for vignettes
13253 (home-page "https://www.mayo.edu/research/labs/statistical-genetics-genetic-epidemiology/software")
13254 (synopsis "Analysis of haplotypes when linkage phase is ambiguous")
13255 (description
13256 "This package provides routines for the analysis of indirectly measured
13257 haplotypes. The statistical methods assume that all subjects are unrelated
13258 and that haplotypes are ambiguous (due to unknown linkage phase of the genetic
13259 markers). The main functions are: @code{haplo.em()}, @code{haplo.glm()},
13260 @code{haplo.score()}, and @code{haplo.power()}; all of which have detailed
13261 examples in the vignette.")
13262 (license license:gpl2+)))
13263
13264 (define-public r-bqtl
13265 (package
13266 (name "r-bqtl")
13267 (version "1.0-32")
13268 (source
13269 (origin
13270 (method url-fetch)
13271 (uri (cran-uri "bqtl" version))
13272 (sha256
13273 (base32
13274 "0jjqgsm9fmvz5nkgz608xfljjpmaf4rs4f7kxvpqn4b1l9s5lhci"))))
13275 (build-system r-build-system)
13276 (native-inputs `(("gfortran" ,gfortran)))
13277 (home-page "http://famprevmed.ucsd.edu/faculty/cberry/bqtl/")
13278 (synopsis "Bayesian QTL mapping toolkit")
13279 (description
13280 "This is a QTL mapping toolkit for inbred crosses and recombinant inbred
13281 lines. It includes maximum likelihood and Bayesian tools.")
13282 (license license:gpl2+)))
13283
13284 (define-public r-ibdreg
13285 (package
13286 (name "r-ibdreg")
13287 (version "0.2.5")
13288 (source
13289 (origin
13290 (method url-fetch)
13291 (uri (cran-uri "ibdreg" version))
13292 (sha256
13293 (base32
13294 "1kaa5q1byi30wzr0mw4w2cv1ssxprzcwf91wrpqwkgcsdy7dkh2g"))))
13295 (build-system r-build-system)
13296 (home-page "https://www.mayo.edu/research/labs/\
13297 statistical-genetics-genetic-epidemiology/software")
13298 (synopsis "Regression methods for IBD linkage with covariates")
13299 (description
13300 "This package provides a method to test genetic linkage with covariates
13301 by regression methods with response IBD sharing for relative pairs. Account
13302 for correlations of IBD statistics and covariates for relative pairs within
13303 the same pedigree.")
13304 (license license:gpl2+)))
13305
13306 (define-public r-dlmap
13307 (package
13308 (name "r-dlmap")
13309 (version "1.13")
13310 (source
13311 (origin
13312 (method url-fetch)
13313 (uri (cran-uri "dlmap" version))
13314 (sha256
13315 (base32
13316 "0s6wlkggkm3qndwyvw72xv1n0mcjb7ss3ajbq2ll6rv30splq0db"))))
13317 (build-system r-build-system)
13318 (propagated-inputs
13319 `(("r-ibdreg" ,r-ibdreg)
13320 ("r-mgcv" ,r-mgcv)
13321 ("r-nlme" ,r-nlme)
13322 ("r-qtl" ,r-qtl)
13323 ("r-wgaim" ,r-wgaim)))
13324 (home-page "https://cran.r-project.org/web/packages/dlmap/")
13325 (synopsis "Detection localization mapping for QTL")
13326 (description
13327 "This is package for QTL mapping in a mixed model framework with separate
13328 detection and localization stages. The first stage detects the number of QTL
13329 on each chromosome based on the genetic variation due to grouped markers on
13330 the chromosome; the second stage uses this information to determine the most
13331 likely QTL positions. The mixed model can accommodate general fixed and
13332 random effects, including spatial effects in field trials and pedigree
13333 effects. It is applicable to backcrosses, doubled haploids, recombinant
13334 inbred lines, F2 intercrosses, and association mapping populations.")
13335 (license license:gpl2)))
13336
13337 (define-public r-ldheatmap
13338 (package
13339 (name "r-ldheatmap")
13340 (version "0.99-7")
13341 (source
13342 (origin
13343 (method url-fetch)
13344 (uri (cran-uri "LDheatmap" version))
13345 (sha256
13346 (base32
13347 "1r0j8bihi5z1x0sgaf7dwzpsw9i0nc1vylvipvc0cia2ka1lr9dc"))))
13348 (properties `((upstream-name . "LDheatmap")))
13349 (build-system r-build-system)
13350 (propagated-inputs
13351 `(("r-genetics" ,r-genetics)
13352 ("r-rcpp" ,r-rcpp)
13353 ("r-snpstats" ,r-snpstats)))
13354 (home-page "http://stat.sfu.ca/statgen/research/ldheatmap.html")
13355 (synopsis "Graphical display of pairwise linkage disequilibria between SNPs")
13356 (description
13357 "This package provides tools to produce a graphical display, as a heat
13358 map, of measures of pairwise linkage disequilibria between SNPs. Users may
13359 optionally include the physical locations or genetic map distances of each SNP
13360 on the plot.")
13361 (license license:gpl3)))
13362
13363 (define-public r-hwde
13364 (package
13365 (name "r-hwde")
13366 (version "0.67")
13367 (source
13368 (origin
13369 (method url-fetch)
13370 (uri (cran-uri "hwde" version))
13371 (sha256
13372 (base32
13373 "0wb2f9i5qi7w77ygh8bvydfpr7j5x8dyvnnhdkajaz0wdcpkyaqy"))))
13374 (build-system r-build-system)
13375 (home-page "https://cran.r-project.org/web/packages/hwde/")
13376 (synopsis "Models and tests for departure from Hardy-Weinberg equilibrium")
13377 (description
13378 "This package fits models for genotypic disequilibria, as described in
13379 Huttley and Wilson (2000), Weir (1996) and Weir and Wilson (1986). Contrast
13380 terms are available that account for first order interactions between loci.
13381 It also implements, for a single locus in a single population, a conditional
13382 exact test for Hardy-Weinberg equilibrium.")
13383 (license license:gpl2+)))
13384
13385 (define-public r-tdthap
13386 (package
13387 (name "r-tdthap")
13388 (version "1.1-11")
13389 (source
13390 (origin
13391 (method url-fetch)
13392 (uri (cran-uri "tdthap" version))
13393 (sha256
13394 (base32
13395 "15qlj2bivvz3pizd8dq34wczbkbxhzqh3cqp1ixkdkprlyvcxj5k"))))
13396 (build-system r-build-system)
13397 (home-page "https://cran.r-project.org/web/packages/tdthap/")
13398 (synopsis "TDT tests for extended haplotypes")
13399 (description
13400 "Functions and examples are provided for transmission/disequilibrium
13401 tests for extended marker haplotypes, as in Clayton, D. and Jones, H. (1999)
13402 \"Transmission/disequilibrium tests for extended marker haplotypes\".")
13403 (license license:artistic2.0)))
13404
13405 (define-public r-sparql
13406 (package
13407 (name "r-sparql")
13408 (version "1.16")
13409 (source (origin
13410 (method url-fetch)
13411 (uri (cran-uri "SPARQL" version))
13412 (sha256
13413 (base32
13414 "0gak1q06yyhdmcxb2n3v0h9gr1vqd0viqji52wpw211qp6r6dcrc"))))
13415 (properties `((upstream-name . "SPARQL")))
13416 (build-system r-build-system)
13417 (propagated-inputs
13418 `(("r-rcurl" ,r-rcurl)
13419 ("r-xml" ,r-xml)))
13420 (home-page "https://cran.r-project.org/web/packages/SPARQL")
13421 (synopsis "SPARQL client for R")
13422 (description "This package provides an interface to use SPARQL to pose
13423 SELECT or UPDATE queries to an end-point.")
13424 ;; The only license indication is found in the DESCRIPTION file,
13425 ;; which states GPL-3. So we cannot assume GPLv3+.
13426 (license license:gpl3)))
13427
13428 (define-public r-bookdown
13429 (package
13430 (name "r-bookdown")
13431 (version "0.16")
13432 (source (origin
13433 (method url-fetch)
13434 (uri (cran-uri "bookdown" version))
13435 (sha256
13436 (base32
13437 "1gwgvx1yg6q3wccnhidr3gshdvlgr42i4pvlg4h29kpsa7smjiv1"))))
13438 (build-system r-build-system)
13439 (propagated-inputs
13440 `(("r-htmltools" ,r-htmltools)
13441 ("r-knitr" ,r-knitr)
13442 ("r-rmarkdown" ,r-rmarkdown)
13443 ("r-tinytex" ,r-tinytex)
13444 ("r-xfun" ,r-xfun)
13445 ("pandoc" ,ghc-pandoc)))
13446 (home-page "https://github.com/rstudio/bookdown")
13447 (synopsis "Authoring books and technical documents with R markdown")
13448 (description "This package provides output formats and utilities for
13449 authoring books and technical documents with R Markdown.")
13450 (license license:gpl3)))
13451
13452 (define-public r-optparse
13453 (package
13454 (name "r-optparse")
13455 (version "1.6.4")
13456 (source
13457 (origin
13458 (method url-fetch)
13459 (uri (cran-uri "optparse" version))
13460 (sha256
13461 (base32
13462 "0wyrc42ja3ab5szx46zmz8lm7vzfqxkjca0m0sms8g9hqbmmay6d"))))
13463 (build-system r-build-system)
13464 (propagated-inputs
13465 `(("r-getopt" ,r-getopt)))
13466 (home-page "https://github.com/trevorld/optparse")
13467 (synopsis "Command line option parser")
13468 (description
13469 "This package provides a command line parser inspired by Python's
13470 @code{optparse} library to be used with Rscript to write shebang scripts
13471 that accept short and long options.")
13472 (license license:gpl2+)))
13473
13474 (define-public r-wgcna
13475 (package
13476 (name "r-wgcna")
13477 (version "1.68")
13478 (source
13479 (origin
13480 (method url-fetch)
13481 (uri (cran-uri "WGCNA" version))
13482 (sha256
13483 (base32
13484 "1s7gy5vd7x67hpgli8r7ba2z99w3psiyv5hqmrh94zw141dg210a"))))
13485 (properties `((upstream-name . "WGCNA")))
13486 (build-system r-build-system)
13487 (propagated-inputs
13488 `(("r-annotationdbi" ,r-annotationdbi)
13489 ("r-doparallel" ,r-doparallel)
13490 ("r-dynamictreecut" ,r-dynamictreecut)
13491 ("r-fastcluster" ,r-fastcluster)
13492 ("r-foreach" ,r-foreach)
13493 ("r-go-db" ,r-go-db)
13494 ("r-hmisc" ,r-hmisc)
13495 ("r-impute" ,r-impute)
13496 ("r-rcpp" ,r-rcpp)
13497 ("r-robust" ,r-robust)
13498 ("r-survival" ,r-survival)
13499 ("r-matrixstats" ,r-matrixstats)
13500 ("r-preprocesscore" ,r-preprocesscore)))
13501 (home-page
13502 "http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/Rpackages/WGCNA/")
13503 (synopsis "Weighted correlation network analysis")
13504 (description
13505 "This package provides functions necessary to perform Weighted
13506 Correlation Network Analysis on high-dimensional data. It includes functions
13507 for rudimentary data cleaning, construction and summarization of correlation
13508 networks, module identification and functions for relating both variables and
13509 modules to sample traits. It also includes a number of utility functions for
13510 data manipulation and visualization.")
13511 (license license:gpl2+)))
13512
13513 (define-public r-kernlab
13514 (package
13515 (name "r-kernlab")
13516 (version "0.9-29")
13517 (source
13518 (origin
13519 (method url-fetch)
13520 (uri (cran-uri "kernlab" version))
13521 (sha256
13522 (base32 "0vqhndl4zm7pvkfvq0f6i9cbrm7pij6kmdp7d7w39pa100x6knn3"))))
13523 (build-system r-build-system)
13524 (home-page "https://cran.r-project.org/web/packages/kernlab")
13525 (synopsis "Kernel-based machine learning tools")
13526 (description
13527 "This package provides kernel-based machine learning methods for
13528 classification, regression, clustering, novelty detection, quantile regression
13529 and dimensionality reduction. Among other methods @code{kernlab} includes
13530 Support Vector Machines, Spectral Clustering, Kernel PCA, Gaussian Processes
13531 and a QP solver.")
13532 (license license:gpl2)))
13533
13534 (define-public r-hierfstat
13535 (package
13536 (name "r-hierfstat")
13537 (version "0.04-22")
13538 (source
13539 (origin
13540 (method url-fetch)
13541 (uri (cran-uri "hierfstat" version))
13542 (sha256
13543 (base32
13544 "1fav2v2996v5kb1ffa6v5wxfm921syxg6as034vd3j4jfhdibyfx"))))
13545 (build-system r-build-system)
13546 (propagated-inputs
13547 `(("r-ade4" ,r-ade4)
13548 ("r-adegenet" ,r-adegenet)
13549 ("r-gtools" ,r-gtools)))
13550 (home-page "https://cran.r-project.org/web/packages/hierfstat/")
13551 (synopsis "Estimation and tests of hierarchical F-statistics")
13552 (description
13553 "This package allows the estimation of hierarchical F-statistics from
13554 haploid or diploid genetic data with any numbers of levels in the hierarchy,
13555 following the algorithm of Yang (Evolution, 1998, 52(4):950-956). Functions
13556 are also given to test via randomisations the significance of each F and
13557 variance components, using the likelihood-ratio statistics G.")
13558 (license license:gpl2+)))
13559
13560 (define-public r-hapassoc
13561 (package
13562 (name "r-hapassoc")
13563 (version "1.2-8")
13564 (source
13565 (origin
13566 (method url-fetch)
13567 (uri (cran-uri "hapassoc" version))
13568 (sha256
13569 (base32
13570 "0qs5jl0snzfchgpp6pabncwywxcmi743g91jvjiyyzw0lw85yv4s"))))
13571 (build-system r-build-system)
13572 (home-page "http://stat.sfu.ca/statgen/research/hapassoc.html")
13573 (synopsis "Inference of trait associations with SNP haplotypes")
13574 (description
13575 "Hapassoc performs likelihood inference of trait associations with
13576 haplotypes and other covariates in @dfn{generalized linear models} (GLMs). The
13577 functions are developed primarily for data collected in cohort or
13578 cross-sectional studies. They can accommodate uncertain haplotype phase and
13579 handle missing genotypes at some SNPs.")
13580 (license license:gpl2)))
13581
13582 (define-public r-sampling
13583 (package
13584 (name "r-sampling")
13585 (version "2.8")
13586 (source
13587 (origin
13588 (method url-fetch)
13589 (uri (cran-uri "sampling" version))
13590 (sha256
13591 (base32
13592 "06pj7dan0mknpsblmlnk7am78qrnwgnql5vvx7vmbfvib7rj6s9m"))))
13593 (build-system r-build-system)
13594 (propagated-inputs
13595 `(("r-lpsolve" ,r-lpsolve)
13596 ("r-mass" ,r-mass)))
13597 (home-page "https://cran.r-project.org/web/packages/sampling/")
13598 (synopsis "Survey sampling")
13599 (description
13600 "This package provides functions for drawing and calibrating samples.")
13601 (license license:gpl2+)))
13602
13603 (define-public r-r2html
13604 (package
13605 (name "r-r2html")
13606 (version "2.3.2")
13607 (source
13608 (origin
13609 (method url-fetch)
13610 (uri (cran-uri "R2HTML" version))
13611 (sha256
13612 (base32
13613 "00kxny7hajs9r2kw63qk7d03ggdxx2j1g8vbrmzp806y8aczvik9"))))
13614 (properties `((upstream-name . "R2HTML")))
13615 (build-system r-build-system)
13616 (home-page "https://github.com/nalimilan/R2HTML")
13617 (synopsis "HTML export for R objects")
13618 (description
13619 "This package includes HTML functions and methods to write in an HTML
13620 file. Thus, making HTML reports is easy. It includes a function that allows
13621 redirection on the fly, which appears to be very useful for teaching purposes,
13622 as the student can keep a copy of the produced output to keep all that they
13623 did during the course. The package comes with a vignette describing how to
13624 write HTML reports for statistical analysis. Finally, a driver for Sweave
13625 allows to parse HTML flat files containing R code and to automatically write
13626 the corresponding outputs (tables and graphs).")
13627 (license license:gpl2+)))
13628
13629 (define-public r-rjava
13630 (package
13631 (name "r-rjava")
13632 (version "0.9-11")
13633 (source
13634 (origin
13635 (method url-fetch)
13636 (uri (cran-uri "rJava" version))
13637 (sha256
13638 (base32
13639 "0s9cjy1wh7snmbqwznh8f1r4ipylr7mgda4a979z963a8lqy32n2"))))
13640 (properties `((upstream-name . "rJava")))
13641 (build-system r-build-system)
13642 (arguments
13643 `(#:modules ((guix build utils)
13644 (guix build r-build-system)
13645 (ice-9 match))
13646 #:phases
13647 (modify-phases %standard-phases
13648 (add-after 'unpack 'set-JAVA_HOME
13649 (lambda* (#:key inputs #:allow-other-keys)
13650 (let ((jdk (assoc-ref inputs "jdk")))
13651 (setenv "JAVA_HOME" jdk)
13652 (setenv "JAVA" (which "java"))
13653 (setenv "JAR" (which "jar"))
13654 (setenv "JAVAC" (which "javac"))
13655 (setenv "JAVAH" (which "javah"))
13656 (setenv "JAVA_CPPFLAGS"
13657 (string-append "-I" jdk "/include "
13658 "-I" jdk "/include/linux"))
13659 (match (find-files (string-append jdk "/jre/lib/") "libjvm.so")
13660 ((lib) (setenv "JAVA_LIBS" lib))
13661 (_ (error "Could not find libjvm.so"))))
13662 #t)))))
13663 (inputs
13664 `(("icu4c" ,icu4c)
13665 ("jdk" ,icedtea-8 "jdk")
13666 ("pcre" ,pcre)
13667 ("zlib" ,zlib)))
13668 (home-page "http://www.rforge.net/rJava/")
13669 (synopsis "Low-Level R to Java interface")
13670 (description
13671 "This package provides a low-level interface to the Java VM very much
13672 like .C/.Call and friends. It allows the creation of objects, calling methods
13673 and accessing fields.")
13674 (license license:gpl2)))
13675
13676 (define-public r-svmisc
13677 (package
13678 (name "r-svmisc")
13679 (version "1.1.0")
13680 (source
13681 (origin
13682 (method url-fetch)
13683 (uri (cran-uri "svMisc" version))
13684 (sha256
13685 (base32
13686 "01r2a73wx2sh1njky961fxabx5wgddqqjqba6vjg0f3h8r3abmn2"))))
13687 (properties `((upstream-name . "svMisc")))
13688 (build-system r-build-system)
13689 (home-page "https://github.com/SciViews/svMisc")
13690 (synopsis "Miscellaneous functions for SciViews")
13691 (description
13692 "This package provides miscellaneous functions for SciViews or general
13693 use, including tools to manage a temporary environment attached to the search
13694 path for temporary variables you do not want to @code{save()} or
13695 @code{load()}; test the current platform; showing progress bars, etc.")
13696 (license license:gpl2)))
13697
13698 (define-public r-xyz
13699 (package
13700 (name "r-xyz")
13701 (version "0.2")
13702 (source
13703 (origin
13704 (method url-fetch)
13705 (uri (cran-uri "xyz" version))
13706 (sha256
13707 (base32
13708 "13w4sb4pvgciwr8wsz785dafj2k2kpx7znz46r5d32wx88vkycp4"))))
13709 (build-system r-build-system)
13710 (propagated-inputs
13711 `(("r-rcpp" ,r-rcpp)))
13712 (home-page "https://cran.r-project.org/web/packages/xyz/")
13713 (synopsis "Algorithm for fast interaction search in high-dimensional data")
13714 (description
13715 "High dimensional interaction search by brute force requires a quadratic
13716 computational cost in the number of variables. The xyz algorithm provably
13717 finds strong interactions in almost linear time. For details of the algorithm
13718 see: G. Thanei, N. Meinshausen and R. Shah (2016). The xyz algorithm for fast
13719 interaction search in high-dimensional data.")
13720 ;; Any version of the GPL.
13721 (license license:gpl2+)))
13722
13723 (define-public r-rttf2pt1
13724 (package
13725 (name "r-rttf2pt1")
13726 (version "1.3.7")
13727 (source
13728 (origin
13729 (method url-fetch)
13730 (uri (cran-uri "Rttf2pt1" version))
13731 (sha256
13732 (base32
13733 "12hf9r3mhjr9sawdvf7qhjf1zph2q64f77i81jwvy7awidbm0kja"))))
13734 (properties `((upstream-name . "Rttf2pt1")))
13735 (build-system r-build-system)
13736 (home-page "https://github.com/wch/Rttf2pt1")
13737 (synopsis "Font conversion utility")
13738 (description
13739 "This package contains the program @code{ttf2pt1}, for use with the
13740 @code{extrafont} package.")
13741 ;; Most of the files are covered under the Expat license. Some files are
13742 ;; covered under BSD-3. Deviations for individual files are recorded in
13743 ;; the LICENSE file.
13744 (license (list license:bsd-3 license:expat
13745 (license:non-copyleft "file://LICENSE")))))
13746
13747 (define-public r-extrafontdb
13748 (package
13749 (name "r-extrafontdb")
13750 (version "1.0")
13751 (source
13752 (origin
13753 (method url-fetch)
13754 (uri (cran-uri "extrafontdb" version))
13755 (sha256
13756 (base32
13757 "115n42hfvv5h4nn4cfkfmkmn968py4lpy8zd0d6w5yylwpzbm8gs"))))
13758 (build-system r-build-system)
13759 (home-page "https://github.com/wch/extrafontdb")
13760 (synopsis "Database for the extrafont package")
13761 (description
13762 "This package holds the database for the @code{extrafont} package.")
13763 (license license:gpl2)))
13764
13765 (define-public r-extrafont
13766 (package
13767 (name "r-extrafont")
13768 (version "0.17")
13769 (source
13770 (origin
13771 (method url-fetch)
13772 (uri (cran-uri "extrafont" version))
13773 (sha256
13774 (base32
13775 "0b9k2n9sk23bh45hjgnkxpjyvpdrz1hx7kmxvmb4nhlhm1wpsv9g"))))
13776 (build-system r-build-system)
13777 (propagated-inputs
13778 `(("r-extrafontdb" ,r-extrafontdb)
13779 ("r-rttf2pt1" ,r-rttf2pt1)))
13780 (home-page "https://github.com/wch/extrafont")
13781 (synopsis "Tools for using fonts in R")
13782 (description
13783 "The extrafont package makes it easier to use fonts other than the basic
13784 PostScript fonts that R uses. Fonts that are imported into extrafont can be
13785 used with PDF or PostScript output files. There are two hurdles for using
13786 fonts in PDF (or Postscript) output files:
13787
13788 @enumerate
13789 @item Making R aware of the font and the dimensions of the characters.
13790 @item Embedding the fonts in the PDF file so that the PDF can be displayed
13791 properly on a device that doesn't have the font. This is usually needed if
13792 you want to print the PDF file or share it with others.
13793 @end enumerate
13794
13795 The extrafont package makes both of these things easier.")
13796 (license license:gpl2)))
13797
13798 (define-public r-xkcd
13799 (package
13800 (name "r-xkcd")
13801 (version "0.0.6")
13802 (source
13803 (origin
13804 (method url-fetch)
13805 (uri (cran-uri "xkcd" version))
13806 (sha256
13807 (base32
13808 "1z2y0ihn68ppay7xkglhw7djki5654g6z4bbpyy41if57z9q554f"))))
13809 (build-system r-build-system)
13810 (propagated-inputs
13811 `(("r-extrafont" ,r-extrafont)
13812 ("r-ggplot2" ,r-ggplot2)
13813 ("r-hmisc" ,r-hmisc)))
13814 (home-page "https://cran.r-project.org/web/packages/xkcd/")
13815 (synopsis "Plot ggplot2 graphics in the XKCD style")
13816 (description
13817 "This package provides the means to plot ggplot2 graphs in the style of
13818 the XKCD web comic.")
13819 (license license:gpl3)))
13820
13821 (define-public r-msigdbr
13822 (package
13823 (name "r-msigdbr")
13824 (version "7.0.1")
13825 (source
13826 (origin
13827 (method url-fetch)
13828 (uri (cran-uri "msigdbr" version))
13829 (sha256
13830 (base32
13831 "19p8z617m3my8la7n1qgb1s2msf940r372im3q30qkbcx3qxg3sd"))))
13832 (build-system r-build-system)
13833 (propagated-inputs
13834 `(("r-dplyr" ,r-dplyr)
13835 ("r-magrittr" ,r-magrittr)
13836 ("r-rlang" ,r-rlang)
13837 ("r-tibble" ,r-tibble)))
13838 (home-page "https://github.com/igordot/msigdbr")
13839 (synopsis "MSigDB gene sets for multiple organisms")
13840 (description
13841 "This package provides the @dfn{Molecular Signatures Database} (MSigDB)
13842 gene sets typically used with the @dfn{Gene Set Enrichment Analysis} (GSEA)
13843 software in a standard R data frame with key-value pairs. Included are the
13844 original human gene symbols and Entrez IDs as well as the equivalents for
13845 various frequently studied model organisms such as mouse, rat, pig, fly, and
13846 yeast.")
13847 ;; The package is covered under the Expat license, but the upstream MSigDB
13848 ;; files are made available under the Creative Commons Attribution 4.0
13849 ;; International license.
13850 (license (list license:expat license:cc-by4.0))))
13851
13852 (define-public r-gridgraphics
13853 (package
13854 (name "r-gridgraphics")
13855 (version "0.4-1")
13856 (source
13857 (origin
13858 (method url-fetch)
13859 (uri (cran-uri "gridGraphics" version))
13860 (sha256
13861 (base32
13862 "1kr3p54bkv2q7agxrva30y9bkwkiq1k2cfl5z1kvyjv6f5xi4w5p"))))
13863 (properties `((upstream-name . "gridGraphics")))
13864 (build-system r-build-system)
13865 (home-page "https://github.com/pmur002/gridgraphics")
13866 (synopsis "Redraw base graphics using @code{grid} graphics")
13867 (description
13868 "This package provides functions to convert a page of plots drawn with
13869 the @code{graphics} package into identical output drawn with the @code{grid}
13870 package. The result looks like the original @code{graphics}-based plot, but
13871 consists of @code{grid} grobs and viewports that can then be manipulated with
13872 @code{grid} functions (e.g., edit grobs and revisit viewports).")
13873 (license license:gpl2+)))
13874
13875 (define-public r-farver
13876 (package
13877 (name "r-farver")
13878 (version "2.0.1")
13879 (source
13880 (origin
13881 (method url-fetch)
13882 (uri (cran-uri "farver" version))
13883 (sha256
13884 (base32
13885 "0aq1hk561pz3s3lpay1adwsihha6mxp7zbj4n1m6307g34awlhhn"))))
13886 (build-system r-build-system)
13887 (home-page "https://github.com/thomasp85/farver")
13888 (synopsis "Vectorized color conversion and comparison")
13889 (description
13890 "The encoding of color can be handled in many different ways, using
13891 different color spaces. As different color spaces have different uses,
13892 efficient conversion between these representations are important. This
13893 package provides a set of functions that gives access to very fast color space
13894 conversion and comparisons implemented in C++, and offers 100-fold speed
13895 improvements over the @code{convertColor} function in the @code{grDevices}
13896 package.")
13897 (license license:expat)))
13898
13899 (define-public r-ggplotify
13900 (package
13901 (name "r-ggplotify")
13902 (version "0.0.4")
13903 (source
13904 (origin
13905 (method url-fetch)
13906 (uri (cran-uri "ggplotify" version))
13907 (sha256
13908 (base32
13909 "0nv3wdmxnc5ww9m3xlgnb0jp30j45dg33nqc6gg3y36svg8anjcg"))))
13910 (build-system r-build-system)
13911 (propagated-inputs
13912 `(("r-ggplot2" ,r-ggplot2)
13913 ("r-gridgraphics" ,r-gridgraphics)
13914 ("r-rvcheck" ,r-rvcheck)))
13915 (home-page "https://github.com/GuangchuangYu/ggplotify")
13916 (synopsis "Convert plots to @code{grob} or @code{ggplot} object")
13917 (description
13918 "This package provides tools to convert plot function calls (using
13919 expression or formula) to @code{grob} or @code{ggplot} objects that are
13920 compatible with the @code{grid} and @code{ggplot2} environment. With this
13921 package, we are able to e.g. use @code{cowplot} to align plots produced by
13922 @code{base} graphics, @code{grid}, @code{lattice}, @code{vcd} etc. by
13923 converting them to @code{ggplot} objects.")
13924 (license license:artistic2.0)))
13925
13926 (define-public r-triebeard
13927 (package
13928 (name "r-triebeard")
13929 (version "0.3.0")
13930 (source
13931 (origin
13932 (method url-fetch)
13933 (uri (cran-uri "triebeard" version))
13934 (sha256
13935 (base32
13936 "1hqyz57gph02c9fdc07lxz113bbklif3g18sw8jan6pakhhdc7dz"))))
13937 (build-system r-build-system)
13938 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
13939 (home-page "https://github.com/Ironholds/triebeard/")
13940 (synopsis "Radix trees in Rcpp")
13941 (description
13942 "Radix trees, or tries, are key-value data structures optimized for
13943 efficient lookups, similar in purpose to hash tables. This package provides
13944 an implementation of radix trees for use in R programming and in developing
13945 packages with Rcpp.")
13946 (license license:expat)))
13947
13948 (define-public r-tweenr
13949 (package
13950 (name "r-tweenr")
13951 (version "1.0.1")
13952 (source
13953 (origin
13954 (method url-fetch)
13955 (uri (cran-uri "tweenr" version))
13956 (sha256
13957 (base32
13958 "0sq90pbln6lkc2q3zflhkxxwpqdw5dd7igrxhdnlynkdrmi83mpg"))))
13959 (build-system r-build-system)
13960 (propagated-inputs
13961 `(("r-farver" ,r-farver)
13962 ("r-magrittr" ,r-magrittr)
13963 ("r-rcpp" ,r-rcpp)
13964 ("r-rlang" ,r-rlang)))
13965 (home-page "https://github.com/thomasp85/tweenr")
13966 (synopsis "Interpolate data for smooth animations")
13967 (description
13968 "In order to create smooth animation between states of data, tweening is
13969 necessary. This package provides a range of functions for creating tweened
13970 data that can be used as basis for animation. Furthermore it adds a number of
13971 vectorized interpolaters for common R data types such as numeric, date and
13972 color.")
13973 (license license:expat)))
13974
13975 (define-public r-polyclip
13976 (package
13977 (name "r-polyclip")
13978 (version "1.10-0")
13979 (source
13980 (origin
13981 (method url-fetch)
13982 (uri (cran-uri "polyclip" version))
13983 (sha256
13984 (base32
13985 "0jyk4maqiblvj095jd59dr76kbniyli3v3xvy0a72ljszq6vrnkl"))))
13986 (build-system r-build-system)
13987 (native-inputs `(("pkg-config" ,pkg-config)))
13988 (home-page "http://www.angusj.com/delphi/clipper.php")
13989 (synopsis "Polygon clipping")
13990 (description
13991 "This package provides an R port of the library Clipper. It performs
13992 polygon clipping operations (intersection, union, set minus, set difference)
13993 for polygonal regions of arbitrary complexity, including holes. It computes
13994 offset polygons (spatial buffer zones, morphological dilations, Minkowski
13995 dilations) for polygonal regions and polygonal lines. It computes the
13996 Minkowski Sum of general polygons. There is a function for removing
13997 self-intersections from polygon data.")
13998 (license license:boost1.0)))
13999
14000 (define-public r-urltools
14001 (package
14002 (name "r-urltools")
14003 (version "1.7.3")
14004 (source
14005 (origin
14006 (method url-fetch)
14007 (uri (cran-uri "urltools" version))
14008 (sha256
14009 (base32
14010 "04x3my655dd287cbsszbnf75q0swmjlxxrblcsay7a8n3df3a830"))))
14011 (build-system r-build-system)
14012 (propagated-inputs
14013 `(("r-rcpp" ,r-rcpp)
14014 ("r-triebeard" ,r-triebeard)))
14015 (home-page "https://github.com/Ironholds/urltools/")
14016 (synopsis "Vectorized tools for URL handling and parsing")
14017 (description
14018 "This package provides a toolkit for all URL-handling needs, including
14019 encoding and decoding, parsing, parameter extraction and modification. All
14020 functions are designed to be both fast and entirely vectorized. It is
14021 intended to be useful for people dealing with web-related datasets, such as
14022 server-side logs, although may be useful for other situations involving large
14023 sets of URLs.")
14024 (license license:expat)))
14025
14026 (define-public r-ggforce
14027 (package
14028 (name "r-ggforce")
14029 (version "0.3.1")
14030 (source
14031 (origin
14032 (method url-fetch)
14033 (uri (cran-uri "ggforce" version))
14034 (sha256
14035 (base32
14036 "04926cqrda6psvy2nzkkw4czwyxdp7fnxg76byp14v12kgd72lm0"))))
14037 (build-system r-build-system)
14038 (propagated-inputs
14039 `(("r-ggplot2" ,r-ggplot2)
14040 ("r-gtable" ,r-gtable)
14041 ("r-mass" ,r-mass)
14042 ("r-polyclip" ,r-polyclip)
14043 ("r-rcpp" ,r-rcpp)
14044 ("r-rcppeigen" ,r-rcppeigen)
14045 ("r-rlang" ,r-rlang)
14046 ("r-scales" ,r-scales)
14047 ("r-tidyselect" ,r-tidyselect)
14048 ("r-tweenr" ,r-tweenr)
14049 ("r-withr" ,r-withr)))
14050 (home-page "https://ggforce.data-imaginist.com")
14051 (synopsis "Accelerating ggplot2")
14052 (description
14053 "The aim of the ggplot2 package is to aid in visual data investigations.
14054 This focus has led to a lack of facilities for composing specialized plots.
14055 Thi package aims to be a collection of mainly new statistics and geometries
14056 that fills this gap.")
14057 (license license:expat)))
14058
14059 (define-public r-europepmc
14060 (package
14061 (name "r-europepmc")
14062 (version "0.3")
14063 (source
14064 (origin
14065 (method url-fetch)
14066 (uri (cran-uri "europepmc" version))
14067 (sha256
14068 (base32
14069 "1ngqs1sqzkbwv98dd5z4cxj8bnz41wyd0g060a2vpqi3s99s4i2h"))))
14070 (build-system r-build-system)
14071 (propagated-inputs
14072 `(("r-dplyr" ,r-dplyr)
14073 ("r-httr" ,r-httr)
14074 ("r-jsonlite" ,r-jsonlite)
14075 ("r-plyr" ,r-plyr)
14076 ("r-progress" ,r-progress)
14077 ("r-purrr" ,r-purrr)
14078 ("r-urltools" ,r-urltools)
14079 ("r-xml2" ,r-xml2)))
14080 (home-page "https://github.com/ropensci/europepmc/")
14081 (synopsis "R Interface to the Europe PubMed Central RESTful Web Service")
14082 (description
14083 "This package provides an R Client for the
14084 @url{https://europepmc.org/RestfulWebService,Europe PubMed Central RESTful Web
14085 Service}. It gives access to both metadata on life science literature and
14086 open access full texts. Europe PMC indexes all PubMed content and other
14087 literature sources including Agricola, a bibliographic database of citations
14088 to the agricultural literature, or Biological Patents. In addition to
14089 bibliographic metadata, the client allows users to fetch citations and
14090 reference lists. Links between life-science literature and other EBI
14091 databases, including ENA, PDB or ChEMBL are also accessible.")
14092 (license license:gpl3)))
14093
14094 (define-public r-ggraph
14095 (package
14096 (name "r-ggraph")
14097 (version "2.0.0")
14098 (source
14099 (origin
14100 (method url-fetch)
14101 (uri (cran-uri "ggraph" version))
14102 (sha256
14103 (base32
14104 "0qj7w3af0pgmd9mil6y571jikfkln7b8csvzg6b08spwbglfy1s3"))))
14105 (build-system r-build-system)
14106 (propagated-inputs
14107 `(("r-digest" ,r-digest)
14108 ("r-dplyr" ,r-dplyr)
14109 ("r-ggforce" ,r-ggforce)
14110 ("r-ggplot2" ,r-ggplot2)
14111 ("r-ggrepel" ,r-ggrepel)
14112 ("r-graphlayouts" ,r-graphlayouts)
14113 ("r-gtable" ,r-gtable)
14114 ("r-igraph" ,r-igraph)
14115 ("r-mass" ,r-mass)
14116 ("r-rcpp" ,r-rcpp)
14117 ("r-rlang" ,r-rlang)
14118 ("r-scales" ,r-scales)
14119 ("r-tidygraph" ,r-tidygraph)
14120 ("r-viridis" ,r-viridis)))
14121 (home-page "https://cran.r-project.org/web/packages/ggraph/")
14122 (synopsis "Implementation of grammar of graphics for graphs and networks")
14123 (description
14124 "The grammar of graphics as implemented in ggplot2 is a poor fit for
14125 graph and network visualizations due to its reliance on tabular data input.
14126 The ggraph package is an extension of the ggplot2 API tailored to graph
14127 visualizations and provides the same flexible approach to building up plots
14128 layer by layer.")
14129 (license license:gpl3)))
14130
14131 (define-public r-varselrf
14132 (package
14133 (name "r-varselrf")
14134 (version "0.7-8")
14135 (source
14136 (origin
14137 (method url-fetch)
14138 (uri (cran-uri "varSelRF" version))
14139 (sha256
14140 (base32
14141 "0h49rl1j13yfh97rsfsyh9s2c4wajny4rzms2qw77d0cavxqg53i"))))
14142 (properties `((upstream-name . "varSelRF")))
14143 (build-system r-build-system)
14144 (propagated-inputs
14145 `(("r-randomforest" ,r-randomforest)))
14146 (home-page "http://ligarto.org/rdiaz/Software/Software.html")
14147 (synopsis "Variable selection using random forests")
14148 (description
14149 "This package provides tools for the variable selection from random
14150 forests using both backwards variable elimination (for the selection of small
14151 sets of non-redundant variables) and selection based on the importance
14152 spectrum (somewhat similar to scree plots; for the selection of large,
14153 potentially highly-correlated variables). The main applications are in
14154 high-dimensional data (e.g., microarray data, and other genomics and
14155 proteomics applications).")
14156 (license license:gpl2+)))
14157
14158 (define-public r-pamr
14159 (package
14160 (name "r-pamr")
14161 (version "1.56.1")
14162 (source
14163 (origin
14164 (method url-fetch)
14165 (uri (cran-uri "pamr" version))
14166 (sha256
14167 (base32
14168 "0ycpgkk23y3zzkb42n2skcyl35ps1n7jmyzfj7pbxr3f6gr2grfh"))))
14169 (build-system r-build-system)
14170 (propagated-inputs
14171 `(("r-cluster" ,r-cluster)
14172 ("r-survival" ,r-survival)))
14173 (native-inputs `(("gfortran" ,gfortran)))
14174 (home-page "https://cran.r-project.org/web/packages/pamr/")
14175 (synopsis "Prediction Analysis for Microarrays")
14176 (description
14177 "This package provides some functions for sample classification in
14178 microarrays.")
14179 (license license:gpl2)))
14180
14181 (define-public r-rda
14182 (package
14183 (name "r-rda")
14184 (version "1.0.2-2.1")
14185 (source
14186 (origin
14187 (method url-fetch)
14188 (uri (cran-uri "rda" version))
14189 (sha256
14190 (base32
14191 "1y4fawslr3i6crjaxhsdb47kfsqkyszdx6avq3r5far5a4pvc639"))))
14192 (build-system r-build-system)
14193 (home-page "https://cran.r-project.org/web/packages/rda/")
14194 (synopsis "Shrunken centroids regularized discriminant analysis")
14195 (description
14196 "This package provides tools for shrunken centroids regularized
14197 discriminant analysis for the purpose of classifying high dimensional data.")
14198 (license license:gpl2+)))
14199
14200 (define-public r-ggvis
14201 (package
14202 (name "r-ggvis")
14203 (version "0.4.5")
14204 (source
14205 (origin
14206 (method url-fetch)
14207 (uri (cran-uri "ggvis" version))
14208 (sha256
14209 (base32
14210 "091i9f17912j8qcyxppjgwzjnyqj7769ixs9d2gjg6f2clskqdw2"))))
14211 (build-system r-build-system)
14212 (propagated-inputs
14213 `(("r-assertthat" ,r-assertthat)
14214 ("r-dplyr" ,r-dplyr)
14215 ("r-htmltools" ,r-htmltools)
14216 ("r-jsonlite" ,r-jsonlite)
14217 ("r-lazyeval" ,r-lazyeval)
14218 ("r-magrittr" ,r-magrittr)
14219 ("r-shiny" ,r-shiny)))
14220 (home-page "https://ggvis.rstudio.com/")
14221 (synopsis "Interactive grammar of graphics")
14222 (description
14223 "This package is a data visualization package for R providing an
14224 implementation of an interactive grammar of graphics, taking the best parts of
14225 ggplot2, combining them with the reactive framework of Shiny and drawing web
14226 graphics using Vega.")
14227 (license license:gpl2)))
14228
14229 (define-public r-gbm
14230 (package
14231 (name "r-gbm")
14232 (version "2.1.5")
14233 (source
14234 (origin
14235 (method url-fetch)
14236 (uri (cran-uri "gbm" version))
14237 (sha256
14238 (base32
14239 "0vs6ljaqhwwpgr8wlbhmm4v147rd82kl16rpaijqiylxcc8dxyq6"))))
14240 (build-system r-build-system)
14241 (propagated-inputs
14242 `(("r-gridextra" ,r-gridextra)
14243 ("r-lattice" ,r-lattice)
14244 ("r-survival" ,r-survival)))
14245 (home-page "https://github.com/gbm-developers/gbm")
14246 (synopsis "Generalized boosted regression models")
14247 (description
14248 "This package is an implementation of extensions to Freund and Schapire's
14249 AdaBoost algorithm and Friedman's gradient boosting machine. It includes
14250 regression methods for least squares, absolute loss, t-distribution loss,
14251 quantile regression, logistic, multinomial logistic, Poisson, Cox proportional
14252 hazards partial likelihood, AdaBoost exponential loss, Huberized hinge loss,
14253 and Learning to Rank measures (LambdaMart).")
14254 (license license:gpl2+)))
14255
14256 (define-public r-threejs
14257 (package
14258 (name "r-threejs")
14259 (version "0.3.1")
14260 (source
14261 (origin
14262 (method url-fetch)
14263 (uri (cran-uri "threejs" version))
14264 (sha256
14265 (base32
14266 "1s3rdlzy7man6177ycayg6xsh6k8y1r9rdj9yzn3b93j2rs0nxbi"))))
14267 (build-system r-build-system)
14268 (arguments
14269 `(#:modules ((guix build utils)
14270 (guix build r-build-system)
14271 (srfi srfi-1)
14272 (ice-9 popen))
14273 #:phases
14274 (modify-phases %standard-phases
14275 (add-after 'unpack 'process-javascript
14276 (lambda* (#:key inputs #:allow-other-keys)
14277 (with-directory-excursion "inst"
14278 (call-with-values
14279 (lambda ()
14280 (unzip2
14281 `((,(assoc-ref inputs "js-jquery")
14282 "htmlwidgets/lib/jquery/jquery.min.js")
14283 (,(assoc-ref inputs "js-threejs-85")
14284 "htmlwidgets/lib/threejs-85/three.min.js"))))
14285 (lambda (sources targets)
14286 (for-each (lambda (source target)
14287 (format #t "Processing ~a --> ~a~%"
14288 source target)
14289 (delete-file target)
14290 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
14291 (call-with-output-file target
14292 (lambda (port)
14293 (dump-port minified port)))))
14294 sources targets))))
14295 #t)))))
14296 (propagated-inputs
14297 `(("r-base64enc" ,r-base64enc)
14298 ("r-crosstalk" ,r-crosstalk)
14299 ("r-htmlwidgets" ,r-htmlwidgets)
14300 ("r-igraph" ,r-igraph)))
14301 (native-inputs
14302 `(("uglify-js" ,uglify-js)
14303 ("js-jquery"
14304 ,(origin
14305 (method url-fetch)
14306 (uri "https://code.jquery.com/jquery-3.3.1.js")
14307 (sha256
14308 (base32
14309 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))
14310 ("js-threejs-85"
14311 ,(origin
14312 (method url-fetch)
14313 (uri "https://raw.githubusercontent.com/mrdoob/three.js/r85/build/three.js")
14314 (sha256
14315 (base32
14316 "17khh3dmijdjw4qb9qih1rqhxgrmm3pc6w8lzdx6rf6a3mrc9xnl"))))))
14317 (home-page "https://bwlewis.github.io/rthreejs")
14318 (synopsis "Interactive 3D scatter plots, networks and globes")
14319 (description
14320 "Create interactive 3D scatter plots, network plots, and globes in R
14321 using the three.js visualization library.")
14322 (license license:expat)))
14323
14324 (define-public r-mlbench
14325 (package
14326 (name "r-mlbench")
14327 (version "2.1-1")
14328 (source
14329 (origin
14330 (method url-fetch)
14331 (uri (cran-uri "mlbench" version))
14332 (sha256
14333 (base32
14334 "1rp035qxfgh5ail92zjh9jh57dj0b8babw3wsg29v8ricpal30bl"))))
14335 (build-system r-build-system)
14336 (home-page "https://cran.r-project.org/web/packages/mlbench/")
14337 (synopsis "Machine learning benchmark problems")
14338 (description
14339 "This package provides a collection of artificial and real-world machine
14340 learning benchmark problems, including, e.g., several data sets from the UCI
14341 repository.")
14342 (license license:gpl2)))
14343
14344 (define-public r-mpm
14345 (package
14346 (name "r-mpm")
14347 (version "1.0-22")
14348 (source
14349 (origin
14350 (method url-fetch)
14351 (uri (cran-uri "mpm" version))
14352 (sha256
14353 (base32
14354 "0wijw8v0wmbfrda5564cmnp788qmlkk21yn5cp5qk8aprm9l1fnk"))))
14355 (build-system r-build-system)
14356 (propagated-inputs
14357 `(("r-kernsmooth" ,r-kernsmooth)
14358 ("r-mass" ,r-mass)))
14359 (home-page "http://mpm.r-forge.r-project.org")
14360 (synopsis "Multivariate projection methods")
14361 (description
14362 "This is a package for exploratory graphical analysis of multivariate
14363 data, specifically gene expression data with different projection methods:
14364 principal component analysis, correspondence analysis, spectral map
14365 analysis.")
14366 (license license:gpl2+)))
14367
14368 (define-public r-png
14369 (package
14370 (name "r-png")
14371 (version "0.1-7")
14372 (source (origin
14373 (method url-fetch)
14374 (uri (cran-uri "png" version))
14375 (sha256
14376 (base32
14377 "0g2mcp55lvvpx4kd3mn225mpbxqcq73wy5qx8b4lyf04iybgysg2"))))
14378 (build-system r-build-system)
14379 (inputs
14380 `(("libpng" ,libpng)
14381 ("zlib" ,zlib)))
14382 (home-page "http://www.rforge.net/png/")
14383 (synopsis "Read and write PNG images")
14384 (description
14385 "This package provides an easy and simple way to read, write and display
14386 bitmap images stored in the PNG format. It can read and write both files and
14387 in-memory raw vectors.")
14388 ;; Any of these GPL versions.
14389 (license (list license:gpl2 license:gpl3))))
14390
14391 (define-public r-ggcorrplot
14392 (package
14393 (name "r-ggcorrplot")
14394 (version "0.1.3")
14395 (source
14396 (origin
14397 (method url-fetch)
14398 (uri (cran-uri "ggcorrplot" version))
14399 (sha256
14400 (base32
14401 "0hi9lz121ya1l2lbm7rqlxg6fs6bvxck396dngnidrhl5fvqb41b"))))
14402 (build-system r-build-system)
14403 (propagated-inputs
14404 `(("r-ggplot2" ,r-ggplot2)
14405 ("r-reshape2" ,r-reshape2)))
14406 (home-page "http://www.sthda.com/english/wiki/ggcorrplot")
14407 (synopsis "Visualization of a correlation matrix using ggplot2")
14408 (description
14409 "The ggcorrplot package can be used to visualize easily a correlation
14410 matrix using ggplot2. It provides a solution for reordering the correlation
14411 matrix and displays the significance level on the plot. It also includes a
14412 function for computing a matrix of correlation p-values.")
14413 (license license:gpl2)))
14414
14415 (define-public r-flexdashboard
14416 (package
14417 (name "r-flexdashboard")
14418 (version "0.5.1.1")
14419 (source
14420 (origin
14421 (method url-fetch)
14422 (uri (cran-uri "flexdashboard" version))
14423 (sha256
14424 (base32
14425 "0fy3nbrr67zqgd44r2mc850s5sp0hzfcw3zqs15m8kxzj1aw067x"))))
14426 (build-system r-build-system)
14427 (arguments
14428 `(#:modules ((guix build utils)
14429 (guix build r-build-system)
14430 (srfi srfi-1)
14431 (srfi srfi-26)
14432 (ice-9 popen)
14433 (ice-9 textual-ports))
14434 #:phases
14435 (modify-phases %standard-phases
14436 (add-after 'unpack 'process-javascript
14437 (lambda* (#:key inputs #:allow-other-keys)
14438 (with-directory-excursion "inst"
14439 ;; Concatenate all components of prism.js
14440 (let ((contents (string-join
14441 (map (lambda (name)
14442 (call-with-input-file
14443 (assoc-ref inputs name)
14444 get-string-all))
14445 (list "js-prism"
14446 "js-prism-r"
14447 "js-prism-line-numbers"))
14448 "\n")))
14449 (call-with-output-file "prism-src.js"
14450 (cut display contents <>)))
14451 (call-with-values
14452 (lambda ()
14453 (unzip2
14454 `(("www/stickytableheaders/jquery.stickytableheaders.js"
14455 "www/stickytableheaders/jquery.stickytableheaders.min.js")
14456 ("www/sly/sly.js"
14457 "www/sly/sly.min.js")
14458 ("prism-src.js"
14459 "www/prism/prism.js")
14460 (,(assoc-ref inputs "js-raphael")
14461 "htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
14462 (,(assoc-ref inputs "js-featherlight")
14463 "www/featherlight/featherlight.min.js"))))
14464 (lambda (sources targets)
14465 (for-each (lambda (source target)
14466 (format #t "Processing ~a --> ~a~%"
14467 source target)
14468 (delete-file target)
14469 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
14470 (call-with-output-file target
14471 (lambda (port)
14472 (dump-port minified port)))))
14473 sources targets))))
14474 #t)))))
14475 (propagated-inputs
14476 `(("r-htmltools" ,r-htmltools)
14477 ("r-htmlwidgets" ,r-htmlwidgets)
14478 ("r-jsonlite" ,r-jsonlite)
14479 ("r-knitr" ,r-knitr)
14480 ("r-rmarkdown" ,r-rmarkdown)
14481 ("r-shiny" ,r-shiny)))
14482 (native-inputs
14483 `(("uglify-js" ,uglify-js)
14484 ("js-raphael"
14485 ,(origin
14486 (method url-fetch)
14487 (uri "https://raw.githubusercontent.com/DmitryBaranovskiy/raphael/v2.1.4/raphael.js")
14488 (sha256
14489 (base32
14490 "1h4c4akrgcj7wra9j1z1rv2406j0yf68y9c0wg8v7w9ibw2iwf1x"))))
14491 ("js-prism"
14492 ,(origin
14493 (method url-fetch)
14494 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/prism.js")
14495 (sha256
14496 (base32
14497 "0gqa9irbp9k8p5r3d98cszajzhjnssnl43nrsc5aiy7ki52z500c"))))
14498 ("js-prism-r"
14499 ,(origin
14500 (method url-fetch)
14501 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/components/prism-r.js")
14502 (sha256
14503 (base32
14504 "1x31glci7wdgr2305njy0bm2lncb0jyn0j1s2g72rqi29xid9aki"))))
14505 ("js-prism-line-numbers"
14506 ,(origin
14507 (method url-fetch)
14508 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/plugins/line-numbers/prism-line-numbers.js")
14509 (sha256
14510 (base32
14511 "1543wgf3iynrilyb27jq8px3h5gvfz5xmdib5ik2ki400c1sl991"))))
14512 ("js-featherlight"
14513 ,(origin
14514 (method url-fetch)
14515 (uri "https://raw.githubusercontent.com/noelboss/featherlight/1.3.4/src/featherlight.js")
14516 (sha256
14517 (base32
14518 "14kkhwzvp8rxq2mrck5i0xcm8v5rqwqhwnmncbng8h4qq42zx3sb"))))))
14519 (home-page "https://rmarkdown.rstudio.com/flexdashboard")
14520 (synopsis "R Markdown format for flexible dashboards")
14521 (description
14522 "This package provides an R Markdown format for converting an R Markdown
14523 document to a grid-oriented dashboard. The dashboard flexibly adapts the size
14524 of its components to the containing web page.")
14525 (license license:expat)))
14526
14527 (define-public r-preseqr
14528 (package
14529 (name "r-preseqr")
14530 (version "4.0.0")
14531 (source
14532 (origin
14533 (method url-fetch)
14534 (uri (cran-uri "preseqR" version))
14535 (sha256
14536 (base32
14537 "1g2rnnmi45649vpy6z45v5i3wxm54s138ajqrzwi3a5r7x3xnhq1"))))
14538 (properties `((upstream-name . "preseqR")))
14539 (build-system r-build-system)
14540 (propagated-inputs
14541 `(("r-polynom" ,r-polynom)))
14542 (home-page "https://cran.r-project.org/web/packages/preseqR/")
14543 (synopsis "Predicting species accumulation curves")
14544 (description
14545 "This package can be used to predict the r-species accumulation
14546 curve (r-SAC), which is the number of species represented at least r times as
14547 a function of the sampling effort. When r = 1, the curve is known as the
14548 species accumulation curve, or the library complexity curve in high-throughput
14549 genomic sequencing. The package includes both parametric and nonparametric
14550 methods, as described by Deng C, et al. (2018).")
14551 (license license:gpl3)))
14552
14553 (define-public r-mapplots
14554 (package
14555 (name "r-mapplots")
14556 (version "1.5.1")
14557 (source
14558 (origin
14559 (method url-fetch)
14560 (uri (cran-uri "mapplots" version))
14561 (sha256
14562 (base32
14563 "18s2y66f8vi8g2r8a25zbgp2xm079r8v8qxv0w71h8krycs6vs9p"))))
14564 (build-system r-build-system)
14565 (home-page "https://cran.r-project.org/web/packages/mapplots/")
14566 (synopsis "Data visualization on maps")
14567 (description
14568 "This package helps you create simple maps; add sub-plots like pie plots
14569 to a map or any other plot; format, plot and export gridded data. The package
14570 was developed for displaying fisheries data but most functions can be used for
14571 more generic data visualisation.")
14572 (license license:gpl2+)))
14573
14574 (define-public r-pmcmr
14575 (package
14576 (name "r-pmcmr")
14577 (version "4.3")
14578 (source
14579 (origin
14580 (method url-fetch)
14581 (uri (cran-uri "PMCMR" version))
14582 (sha256
14583 (base32
14584 "09bvdj2h1086r2cgy3myrhlylplxxlliv8nwx09c8kb1vn02i2ij"))))
14585 (properties `((upstream-name . "PMCMR")))
14586 (build-system r-build-system)
14587 (home-page "https://cran.r-project.org/web/packages/PMCMR/")
14588 (synopsis "Calculate pairwise multiple comparisons of mean rank sums")
14589 (description
14590 "This is a deprecated package for calculating pairwise multiple
14591 comparisons of mean rank sums. This package is superseded by the novel
14592 PMCMRplus package. The PMCMR package is no longer maintained, but kept for
14593 compatibility of dependent packages for some time.")
14594 (license license:gpl3+)))
14595
14596 (define-public r-downloader
14597 (package
14598 (name "r-downloader")
14599 (version "0.4")
14600 (source
14601 (origin
14602 (method url-fetch)
14603 (uri (cran-uri "downloader" version))
14604 (sha256
14605 (base32
14606 "1axggnsc27zzgr7snf41j3zd1vp3nfpmq4zj4d01axc709dyg40q"))))
14607 (build-system r-build-system)
14608 (propagated-inputs
14609 `(("r-digest" ,r-digest)))
14610 (home-page "https://github.com/wch/downloader")
14611 (synopsis "Download files over HTTP and HTTPS")
14612 (description
14613 "This package provides a wrapper for the @code{download.file} function,
14614 making it possible to download files over HTTPS across platforms. The
14615 @code{RCurl} package provides this functionality (and much more) but has
14616 external dependencies. This package has is implemented purely in R.")
14617 (license license:gpl2)))
14618
14619 (define-public r-rex
14620 (package
14621 (name "r-rex")
14622 (version "1.1.2")
14623 (source
14624 (origin
14625 (method url-fetch)
14626 (uri (cran-uri "rex" version))
14627 (sha256
14628 (base32
14629 "0alsadgjgass3wr8y5d247j12qqzg454sc84vpskclrkmz778g5x"))))
14630 (build-system r-build-system)
14631 (propagated-inputs
14632 `(("r-lazyeval" ,r-lazyeval)
14633 ("r-magrittr" ,r-magrittr)))
14634 (home-page "https://github.com/kevinushey/rex")
14635 (synopsis "Friendly regular expressions")
14636 (description
14637 "This package provides a friendly interface for the construction of
14638 regular expressions. Regular expressions are a very powerful feature, however
14639 they are often difficult to interpret. Rex allows you to build complex
14640 regular expressions from human readable expressions")
14641 (license license:expat)))
14642
14643 (define-public r-sctransform
14644 (package
14645 (name "r-sctransform")
14646 (version "0.2.0")
14647 (source
14648 (origin
14649 (method url-fetch)
14650 (uri (cran-uri "sctransform" version))
14651 (sha256
14652 (base32
14653 "1r5kiqqs318q59h2i8m7c6nhghp9w6q26ss2y5a390lkhsawgx6p"))))
14654 (build-system r-build-system)
14655 (propagated-inputs
14656 `(("r-future" ,r-future)
14657 ("r-future-apply" ,r-future-apply)
14658 ("r-ggplot2" ,r-ggplot2)
14659 ("r-gridextra" ,r-gridextra)
14660 ("r-mass" ,r-mass)
14661 ("r-matrix" ,r-matrix)
14662 ("r-rcpp" ,r-rcpp)
14663 ("r-rcppeigen" ,r-rcppeigen)
14664 ("r-reshape2" ,r-reshape2)))
14665 (home-page "https://github.com/ChristophH/sctransform")
14666 (synopsis "Variance stabilizing transformations for Single Cell UMI Data")
14667 (description
14668 "This package provides a normalization method for single-cell UMI count
14669 data using a variance stabilizing transformation. The transformation is based
14670 on a negative binomial regression model with regularized parameters. As part
14671 of the same regression framework, this package also provides functions for
14672 batch correction, and data correction.")
14673 (license license:gpl3)))
14674
14675 (define-public r-styler
14676 (package
14677 (name "r-styler")
14678 (version "1.2.0")
14679 (source
14680 (origin
14681 (method url-fetch)
14682 (uri (cran-uri "styler" version))
14683 (sha256
14684 (base32
14685 "0rdbz60x8bymis6r6188ia1y0ip3nhf5y363i4cmakr618irjab9"))))
14686 (build-system r-build-system)
14687 (propagated-inputs
14688 `(("r-backports" ,r-backports)
14689 ("r-cli" ,r-cli)
14690 ("r-magrittr" ,r-magrittr)
14691 ("r-purrr" ,r-purrr)
14692 ("r-rematch2" ,r-rematch2)
14693 ("r-rlang" ,r-rlang)
14694 ("r-rprojroot" ,r-rprojroot)
14695 ("r-tibble" ,r-tibble)
14696 ("r-withr" ,r-withr)
14697 ("r-xfun" ,r-xfun)))
14698 (home-page "https://github.com/r-lib/styler")
14699 (synopsis "Non-invasive pretty printing of R code")
14700 (description
14701 "This is a package for pretty-printing R code without changing the user's
14702 formatting intent.")
14703 (license license:gpl3)))
14704
14705 (define-public r-scrime
14706 (package
14707 (name "r-scrime")
14708 (version "1.3.5")
14709 (source
14710 (origin
14711 (method url-fetch)
14712 (uri (cran-uri "scrime" version))
14713 (sha256
14714 (base32
14715 "0y2mh9fsffjf3i15bafpasa17z99c1s75r8g6h4hgcwfgpjx75sx"))))
14716 (build-system r-build-system)
14717 (home-page "https://cran.r-project.org/web/packages/scrime/")
14718 (synopsis "Analysis of high-dimensional categorical data such as SNP data")
14719 (description
14720 "This package provides tools for the analysis of high-dimensional data
14721 developed/implemented at the group \"Statistical Complexity Reduction In
14722 Molecular Epidemiology\" (SCRIME). The main focus is on SNP data, but most of
14723 the functions can also be applied to other types of categorical data.")
14724 (license license:gpl2)))
14725
14726 (define-public r-pbmcapply
14727 (package
14728 (name "r-pbmcapply")
14729 (version "1.5.0")
14730 (source
14731 (origin
14732 (method url-fetch)
14733 (uri (cran-uri "pbmcapply" version))
14734 (sha256
14735 (base32
14736 "0i58gcqpnbyvc448qfgm45b7rpbmrnagsvk1h1hsqchbbicfslnz"))))
14737 (build-system r-build-system)
14738 (home-page "https://github.com/kvnkuang/pbmcapply")
14739 (synopsis "Track the progress of apply procedures with a progress bar")
14740 (description
14741 "This light-weight package helps you track and visualize the progress of
14742 parallel versions of vectorized R functions of the @code{mc*apply} family.")
14743 (license license:expat)))
14744
14745 (define-public r-blme
14746 (package
14747 (name "r-blme")
14748 (version "1.0-4")
14749 (source
14750 (origin
14751 (method url-fetch)
14752 (uri (cran-uri "blme" version))
14753 (sha256
14754 (base32
14755 "1ca2b0248k0fj3lczn9shfjplz1sl4ay4v6djldizp2ch2vwdgy2"))))
14756 (build-system r-build-system)
14757 (propagated-inputs `(("r-lme4" ,r-lme4)))
14758 (home-page "https://github.com/vdorie/blme")
14759 (synopsis "Bayesian linear mixed-effects models")
14760 (description
14761 "This package provides tools for maximum a posteriori estimation for
14762 linear and generalized linear mixed-effects models in a Bayesian setting. It
14763 extends the lme4 package.")
14764 (license license:gpl2+)))
14765
14766 (define-public r-batchtools
14767 (package
14768 (name "r-batchtools")
14769 (version "0.9.11")
14770 (source
14771 (origin
14772 (method url-fetch)
14773 (uri (cran-uri "batchtools" version))
14774 (sha256
14775 (base32
14776 "02mj21ypcjv5fs7ajf63p6bq0cyvihdl55hlpqx6kmsfjin1cr0v"))))
14777 (build-system r-build-system)
14778 (propagated-inputs
14779 `(("r-backports" ,r-backports)
14780 ("r-base64url" ,r-base64url)
14781 ("r-brew" ,r-brew)
14782 ("r-checkmate" ,r-checkmate)
14783 ("r-data-table" ,r-data-table)
14784 ("r-digest" ,r-digest)
14785 ("r-fs" ,r-fs)
14786 ("r-progress" ,r-progress)
14787 ("r-r6" ,r-r6)
14788 ("r-rappdirs" ,r-rappdirs)
14789 ("r-stringi" ,r-stringi)
14790 ("r-withr" ,r-withr)))
14791 (home-page "https://github.com/mllg/batchtools")
14792 (synopsis "Tools for computation on batch systems")
14793 (description
14794 "As a successor of the packages BatchJobs and BatchExperiments, this
14795 package provides a parallel implementation of the Map function for high
14796 performance computing systems managed by various schedulers. A multicore and
14797 socket mode allow the parallelization on a local machines, and multiple
14798 machines can be hooked up via SSH to create a makeshift cluster. Moreover,
14799 the package provides an abstraction mechanism to define large-scale computer
14800 experiments in a well-organized and reproducible way.")
14801 (license license:lgpl3)))
14802
14803 (define-public r-clue
14804 (package
14805 (name "r-clue")
14806 (version "0.3-57")
14807 (source
14808 (origin
14809 (method url-fetch)
14810 (uri (cran-uri "clue" version))
14811 (sha256
14812 (base32
14813 "05rdcahawxlxci3fjxihjvvh33wqpxw50sx015165ab4nh3rsdkf"))))
14814 (build-system r-build-system)
14815 (propagated-inputs `(("r-cluster" ,r-cluster)))
14816 (home-page "https://cran.r-project.org/web/packages/clue/")
14817 (synopsis "Tools for analyzing cluster ensembles")
14818 (description "Cluster ensembles are collections of individual solutions to
14819 a given clustering problem which are useful or necessary to consider in a wide
14820 range of applications. This R package provides an extensible computational
14821 environment for creating and analyzing cluster ensembles, with basic data
14822 structures for representing partitions and hierarchies, and facilities for
14823 computing on them, including methods for measuring proximity and obtaining
14824 consensus and secondary clusterings.")
14825 (license license:gpl2)))
14826
14827 (define-public r-sitmo
14828 (package
14829 (name "r-sitmo")
14830 (version "2.0.1")
14831 (source
14832 (origin
14833 (method url-fetch)
14834 (uri (cran-uri "sitmo" version))
14835 (sha256
14836 (base32
14837 "0apdhwy3kxs39agsbvx5vn3xsgb22bf3jrwmr2cmqk9kmxbx740c"))))
14838 (build-system r-build-system)
14839 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
14840 (home-page "https://github.com/coatless/sitmo/")
14841 (synopsis "Parallel pseudo random number generator header files")
14842 (description
14843 "This package provides two high quality and fast PPRNGs that may be used
14844 in an OpenMP parallel environment. In addition, there is a generator for one
14845 dimensional low-discrepancy sequence.")
14846 (license license:expat)))
14847
14848 (define-public r-dqrng
14849 (package
14850 (name "r-dqrng")
14851 (version "0.2.1")
14852 (source
14853 (origin
14854 (method url-fetch)
14855 (uri (cran-uri "dqrng" version))
14856 (sha256
14857 (base32
14858 "0rp8q5zijlvaqmpnkwr314w9w40sj4fz7sqsdgsffcfvn42w2jg1"))))
14859 (build-system r-build-system)
14860 (propagated-inputs
14861 `(("r-bh" ,r-bh)
14862 ("r-rcpp" ,r-rcpp)
14863 ("r-sitmo" ,r-sitmo)))
14864 (home-page "https://www.daqana.org/dqrng")
14865 (synopsis "Fast pseudo random number generators")
14866 (description
14867 "Several fast random number generators are provided as C++ header-only
14868 libraries: the PCG family as well as Xoroshiro128+ and Xoshiro256+.
14869 Additionally, fast functions for generating random numbers according to a
14870 uniform, normal and exponential distribution are included. The latter two use
14871 the Ziggurat algorithm originally proposed by Marsaglia and Tsang. These
14872 functions are exported to R and as a C++ interface and are enabled for use
14873 with the default 64 bit generator from the PCG family, Xoroshiro128+ and
14874 Xoshiro256+ as well as the 64 bit version of the 20 rounds Threefry
14875 engine (Salmon et al., 2011) as provided by the package @code{sitmo}.")
14876 ;; This package includes code under CC0 and Apache 2.0 or Expat, but as a
14877 ;; whole is distributed under the terms of the AGPL 3.
14878 (license license:agpl3)))
14879
14880 (define-public r-dalex
14881 (package
14882 (name "r-dalex")
14883 (version "0.4.9")
14884 (source
14885 (origin
14886 (method url-fetch)
14887 (uri (cran-uri "DALEX" version))
14888 (sha256
14889 (base32
14890 "1zviaf7530v8w996lbma0vplabrapgwldi7h70pr0439sxaqd421"))))
14891 (properties `((upstream-name . "DALEX")))
14892 (build-system r-build-system)
14893 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
14894 (home-page "https://pbiecek.github.io/DALEX/")
14895 (synopsis "Descriptive machine learning explanations")
14896 (description
14897 "Machine Learning models are widely used and have various applications in
14898 classification or regression. Models created with boosting, bagging, stacking
14899 or similar techniques are often used due to their high performance, but such
14900 black-box models usually lack interpretability. The DALEX package contains
14901 various explainers that help to understand the link between input variables
14902 and model output.")
14903 ;; Any version of the GPL
14904 (license license:gpl3+)))
14905
14906 (define-public r-enrichr
14907 (package
14908 (name "r-enrichr")
14909 (version "2.1")
14910 (source
14911 (origin
14912 (method url-fetch)
14913 (uri (cran-uri "enrichR" version))
14914 (sha256
14915 (base32
14916 "0ymhzs9d2wl0s9rvbqc1hqb78mlzwhlc7mmijpfqkm5r720pf6m1"))))
14917 (properties `((upstream-name . "enrichR")))
14918 (build-system r-build-system)
14919 (propagated-inputs
14920 `(("r-httr" ,r-httr)
14921 ("r-rjson" ,r-rjson)))
14922 (home-page "https://cran.r-project.org/web/packages/enrichR/")
14923 (synopsis "R Interface to Enrichr database for analyzing gene sets")
14924 (description
14925 "This package provides an R interface to all Enrichr databases, a
14926 web-based tool for analyzing gene sets and returns any enrichment of common
14927 annotated biological functions.")
14928 (license license:gpl2+)))
14929
14930 (define-public r-plot3d
14931 (package
14932 (name "r-plot3d")
14933 (version "1.1.1")
14934 (source
14935 (origin
14936 (method url-fetch)
14937 (uri (cran-uri "plot3D" version))
14938 (sha256
14939 (base32
14940 "0chn70fqwyca8lbnjnpbcj08ni0dfbax2gjmzhk2c4w72c04mzpn"))))
14941 (properties `((upstream-name . "plot3D")))
14942 (build-system r-build-system)
14943 (propagated-inputs `(("r-misc3d" ,r-misc3d)))
14944 (home-page "https://cran.r-project.org/web/packages/plot3D")
14945 (synopsis "Plot multi-dimensional data")
14946 (description
14947 "This package provides functions for viewing 2D and 3D data, including
14948 perspective plots, slice plots, surface plots, scatter plots, etc. It
14949 includes data sets from oceanography.")
14950 (license license:gpl3+)))
14951
14952 (define-public r-ggfortify
14953 (package
14954 (name "r-ggfortify")
14955 (version "0.4.8")
14956 (source
14957 (origin
14958 (method url-fetch)
14959 (uri (cran-uri "ggfortify" version))
14960 (sha256
14961 (base32
14962 "191q2z7w0l4v7swjlxs2hjgbjngw2838688s7ygnj0kigsm310f3"))))
14963 (build-system r-build-system)
14964 (propagated-inputs
14965 `(("r-dplyr" ,r-dplyr)
14966 ("r-ggplot2" ,r-ggplot2)
14967 ("r-gridextra" ,r-gridextra)
14968 ("r-scales" ,r-scales)
14969 ("r-stringr" ,r-stringr)
14970 ("r-tibble" ,r-tibble)
14971 ("r-tidyr" ,r-tidyr)))
14972 (home-page "https://github.com/sinhrks/ggfortify")
14973 (synopsis "Data visualization tools for statistical analysis results")
14974 (description
14975 "This package provides unified plotting tools for statistics commonly
14976 used, such as GLM, time series, PCA families, clustering and survival
14977 analysis. The package offers a single plotting interface for these analysis
14978 results and plots in a unified style using the @code{ggplot2} package.")
14979 (license license:gpl2)))
14980
14981 (define-public r-refmanager
14982 (package
14983 (name "r-refmanager")
14984 (version "1.2.12")
14985 (source
14986 (origin
14987 (method url-fetch)
14988 (uri (cran-uri "RefManageR" version))
14989 (sha256
14990 (base32
14991 "1hfxa1qacfryk36mpaqdhdgws5jwxiyy489ikd3wa18bp1wz8dkp"))))
14992 (properties `((upstream-name . "RefManageR")))
14993 (build-system r-build-system)
14994 (propagated-inputs
14995 `(("r-bibtex" ,r-bibtex)
14996 ("r-httr" ,r-httr)
14997 ("r-jsonlite" ,r-jsonlite)
14998 ("r-lubridate" ,r-lubridate)
14999 ("r-plyr" ,r-plyr)
15000 ("r-stringr" ,r-stringr)
15001 ("r-xml2" ,r-xml2)))
15002 (home-page "https://github.com/ropensci/RefManageR/")
15003 (synopsis "Straightforward BibTeX and BibLaTeX bibliography management")
15004 (description
15005 "This package provides tools for importing and working with bibliographic
15006 references. It greatly enhances the @code{bibentry} class by providing a
15007 class @code{BibEntry} which stores BibTeX and BibLaTeX references, supports
15008 UTF-8 encoding, and can be easily searched by any field, by date ranges, and
15009 by various formats for name lists (author by last names, translator by full
15010 names, etc.). Entries can be updated, combined, sorted, printed in a number
15011 of styles, and exported. BibTeX and BibLaTeX @code{.bib} files can be read
15012 into R and converted to @code{BibEntry} objects.")
15013 ;; Any of these licenses may be picked.
15014 (license (list license:gpl2 license:gpl3 license:bsd-3))))
15015
15016 (define-public r-citr
15017 (package
15018 (name "r-citr")
15019 (version "0.3.2")
15020 (source
15021 (origin
15022 (method url-fetch)
15023 (uri (cran-uri "citr" version))
15024 (sha256
15025 (base32
15026 "1qbarvafjb8jgkrnrhh6jw7mcglmjwf7dpdiibxf39jkmlhf7las"))))
15027 (build-system r-build-system)
15028 (propagated-inputs
15029 `(("r-assertthat" ,r-assertthat)
15030 ("r-curl" ,r-curl)
15031 ("r-httr" ,r-httr)
15032 ("r-miniui" ,r-miniui)
15033 ("r-refmanager" ,r-refmanager)
15034 ("r-rstudioapi" ,r-rstudioapi)
15035 ("r-shiny" ,r-shiny)
15036 ("r-shinyjs" ,r-shinyjs)
15037 ("r-yaml" ,r-yaml)))
15038 (home-page "https://github.com/crsh/citr")
15039 (synopsis "RStudio add-in to insert Markdown citations")
15040 (description
15041 "This package provides functions and an RStudio add-in that search a
15042 BibTeX or BibLaTeX file to create and insert formatted Markdown citations into
15043 the current document.")
15044 (license license:expat)))
15045
15046 (define-public r-xgboost
15047 (package
15048 (name "r-xgboost")
15049 (version "0.90.0.2")
15050 (source
15051 (origin
15052 (method url-fetch)
15053 (uri (cran-uri "xgboost" version))
15054 (sha256
15055 (base32
15056 "1gy9rzg43mjpfis893vf15drmbigfn0481zrzss9ajnmnk0q8194"))))
15057 (build-system r-build-system)
15058 (propagated-inputs
15059 `(("r-data-table" ,r-data-table)
15060 ("r-magrittr" ,r-magrittr)
15061 ("r-matrix" ,r-matrix)
15062 ("r-stringi" ,r-stringi)))
15063 (home-page "https://github.com/dmlc/xgboost")
15064 (synopsis "Extreme gradient boosting")
15065 (description
15066 "This package provides an R interface to Extreme Gradient Boosting, which
15067 is an efficient implementation of the gradient boosting framework from Chen
15068 and Guestrin (2016). The package includes efficient linear model solver and
15069 tree learning algorithms. The package can automatically do parallel
15070 computation on a single machine. It supports various objective functions,
15071 including regression, classification and ranking. The package is made to be
15072 extensible, so that users are also allowed to define their own objectives
15073 easily.")
15074 (license license:asl2.0)))
15075
15076 (define-public r-umap
15077 (package
15078 (name "r-umap")
15079 (version "0.2.3.1")
15080 (source
15081 (origin
15082 (method url-fetch)
15083 (uri (cran-uri "umap" version))
15084 (sha256
15085 (base32
15086 "0rzz1s029cn1w1bf5va2pav2lg9j1mq97ibwcln39drvm67kj76d"))))
15087 (build-system r-build-system)
15088 (propagated-inputs
15089 `(("r-openssl" ,r-openssl)
15090 ("r-rcpp" ,r-rcpp)
15091 ("r-reticulate" ,r-reticulate)
15092 ("r-rspectra" ,r-rspectra)))
15093 (home-page "https://github.com/tkonopka/umap")
15094 (synopsis "Uniform manifold approximation and projection")
15095 (description
15096 "Uniform manifold approximation and projection is a technique for
15097 dimension reduction. This package provides an interface to the UMAP algorithm
15098 in R, including a translation of the original algorithm into R.")
15099 (license license:expat)))
15100
15101 (define-public r-uwot
15102 (package
15103 (name "r-uwot")
15104 (version "0.1.4")
15105 (source
15106 (origin
15107 (method url-fetch)
15108 (uri (cran-uri "uwot" version))
15109 (sha256
15110 (base32
15111 "1y9wpzs92d1fl2x5figfywd48lkyhwx37j542z0rf6ckrl46n89n"))))
15112 (build-system r-build-system)
15113 (propagated-inputs
15114 `(("r-dqrng" ,r-dqrng)
15115 ("r-fnn" ,r-fnn)
15116 ("r-irlba" ,r-irlba)
15117 ("r-matrix" ,r-matrix)
15118 ("r-rcpp" ,r-rcpp)
15119 ("r-rcppannoy" ,r-rcppannoy)
15120 ("r-rcppparallel" ,r-rcppparallel)
15121 ("r-rcppprogress" ,r-rcppprogress)
15122 ("r-rspectra" ,r-rspectra)))
15123 (home-page "https://github.com/jlmelville/uwot")
15124 (synopsis "Uniform manifold approximation and projection")
15125 (description
15126 "This package provides an implementation of the Uniform Manifold
15127 Approximation and Projection dimensionality reduction by McInnes et
15128 al. (2018). It also provides means to transform new data and to carry out
15129 supervised dimensionality reduction. An implementation of the related
15130 LargeVis method of Tang et al. (2016) is also provided.")
15131 (license license:gpl3)))
15132
15133 (define-public r-kableextra
15134 (package
15135 (name "r-kableextra")
15136 (version "1.1.0")
15137 (source
15138 (origin
15139 (method url-fetch)
15140 (uri (cran-uri "kableExtra" version))
15141 (sha256
15142 (base32
15143 "1nicvw06xsf3a1f5c10mih07b76m2v5s5h165vmz0qx6n1a3492i"))))
15144 (properties `((upstream-name . "kableExtra")))
15145 (build-system r-build-system)
15146 (propagated-inputs
15147 `(("r-digest" ,r-digest)
15148 ("r-glue" ,r-glue)
15149 ("r-htmltools" ,r-htmltools)
15150 ("r-knitr" ,r-knitr)
15151 ("r-magrittr" ,r-magrittr)
15152 ("r-readr" ,r-readr)
15153 ("r-rmarkdown" ,r-rmarkdown)
15154 ("r-rstudioapi" ,r-rstudioapi)
15155 ("r-rvest" ,r-rvest)
15156 ("r-scales" ,r-scales)
15157 ("r-stringr" ,r-stringr)
15158 ("r-viridislite" ,r-viridislite)
15159 ("r-webshot" ,r-webshot)
15160 ("r-xml2" ,r-xml2)))
15161 (home-page "https://haozhu233.github.io/kableExtra/")
15162 (synopsis "Construct complex tables with pipe syntax")
15163 (description
15164 "Build complex HTML or LaTeX tables using @code{kable()} from
15165 @code{knitr} and the piping syntax from @code{magrittr}. The function
15166 @code{kable()} is a light weight table generator coming from @code{knitr}.
15167 This package simplifies the way to manipulate the HTML or LaTeX codes
15168 generated by @code{kable()} and allows users to construct complex tables and
15169 customize styles using a readable syntax.")
15170 (license license:expat)))
15171
15172 (define-public r-glasso
15173 (package
15174 (name "r-glasso")
15175 (version "1.11")
15176 (source
15177 (origin
15178 (method url-fetch)
15179 (uri (cran-uri "glasso" version))
15180 (sha256
15181 (base32 "02p3612rpydk195n2qr77lp1j2w8zsw1ckkk98c8angm4r5q8dsc"))))
15182 (build-system r-build-system)
15183 (native-inputs `(("gfortran" ,gfortran)))
15184 (home-page "http://www-stat.stanford.edu/~tibs/glasso")
15185 (synopsis "Graphical Lasso: estimation of Gaussian graphical models")
15186 (description
15187 "This is a package for estimation of a sparse inverse covariance matrix
15188 using a lasso (L1) penalty. Facilities are provided for estimates along a
15189 path of values for the regularization parameter.")
15190 (license license:gpl2)))
15191
15192 (define-public r-rhpcblasctl
15193 (package
15194 (name "r-rhpcblasctl")
15195 (version "0.18-205")
15196 (source
15197 (origin
15198 (method url-fetch)
15199 (uri (cran-uri "RhpcBLASctl" version))
15200 (sha256
15201 (base32
15202 "1ls2286fvrp1g7p8v4l6axznychh3qndranfpzqz806cm9ml1cdp"))))
15203 (properties `((upstream-name . "RhpcBLASctl")))
15204 (build-system r-build-system)
15205 (home-page "http://prs.ism.ac.jp/~nakama/Rhpc/")
15206 (synopsis "Control the number of threads on BLAS")
15207 (description
15208 "This package allows you to control the number of threads the BLAS
15209 library uses. It is also possible to control the number of threads in
15210 OpenMP.")
15211 (license license:agpl3+)))
15212
15213 (define-public r-lda
15214 (package
15215 (name "r-lda")
15216 (version "1.4.2")
15217 (source
15218 (origin
15219 (method url-fetch)
15220 (uri (cran-uri "lda" version))
15221 (sha256
15222 (base32
15223 "03r4h5kgr8mfy44p66mfj5bp4k00g8zh4a1mhn46jw14pkhs21jn"))))
15224 (build-system r-build-system)
15225 (home-page "https://cran.r-project.org/web/packages/lda/")
15226 (synopsis "Collapsed Gibbs sampling methods for topic models")
15227 (description
15228 "This package implements @dfn{latent Dirichlet allocation} (LDA) and
15229 related models. This includes (but is not limited to) sLDA, corrLDA, and the
15230 mixed-membership stochastic blockmodel. Inference for all of these models is
15231 implemented via a fast collapsed Gibbs sampler written in C. Utility
15232 functions for reading/writing data typically used in topic models, as well as
15233 tools for examining posterior distributions are also included.")
15234 ;; Any version of the LGPL
15235 (license license:lgpl3+)))
15236
15237 (define-public r-rann-l1
15238 (package
15239 (name "r-rann-l1")
15240 (version "2.5.2")
15241 (source
15242 (origin
15243 (method url-fetch)
15244 (uri (cran-uri "RANN.L1" version))
15245 (sha256
15246 (base32
15247 "1hanh3my84mdr5wy6b89fawqzfc184vff1y65wy4l5ld9qza1n44"))))
15248 (properties `((upstream-name . "RANN.L1")))
15249 (build-system r-build-system)
15250 (home-page "https://github.com/jefferis/RANN/tree/master-L1")
15251 (synopsis "Fast nearest neighbour search using L1 metric")
15252 (description
15253 "This package provides tools to find the k nearest neighbours for every
15254 point in a given dataset in O(N log N) time using Arya and Mount's ANN
15255 library. There is support for approximate as well as exact searches, fixed
15256 radius searches and @code{bd} as well as @code{kd} trees. The distance is
15257 computed using the L1 (Manhattan, taxicab) metric.")
15258 (license license:gpl3+)))
15259
15260 (define-public r-leiden
15261 (package
15262 (name "r-leiden")
15263 (version "0.3.1")
15264 (source
15265 (origin
15266 (method url-fetch)
15267 (uri (cran-uri "leiden" version))
15268 (sha256
15269 (base32
15270 "19gq27zin4gf4sh7h24gyq3f8jjir20n2l36a7pk1pbzcr4ixyhp"))))
15271 (properties `((upstream-name . "leiden")))
15272 (build-system r-build-system)
15273 (propagated-inputs
15274 `(("r-igraph" ,r-igraph)
15275 ("r-matrix" ,r-matrix)
15276 ("r-reticulate" ,r-reticulate)))
15277 (home-page "https://github.com/TomKellyGenetics/leiden")
15278 (synopsis "R implementation of Leiden clustering algorithm")
15279 (description
15280 "This package implements the Python @code{leidenalg} module to be called
15281 in R. It enables clustering using the Leiden algorithm for partitioning a
15282 graph into communities. See also Traag et al (2018) \"From Louvain to Leiden:
15283 guaranteeing well-connected communities.\" <arXiv:1810.08473>.")
15284 (license license:gpl3)))
15285
15286 (define-public r-patchwork
15287 ;; There has been no public release yet.
15288 (let ((commit "fd7958bae3e7a1e30237c751952e412a0a1d1242")
15289 (revision "1"))
15290 (package
15291 (name "r-patchwork")
15292 (version (git-version "0.0.1" revision commit))
15293 (source
15294 (origin
15295 (method git-fetch)
15296 (uri (git-reference
15297 (url "https://github.com/thomasp85/patchwork.git")
15298 (commit commit)))
15299 (file-name (git-file-name name version))
15300 (sha256
15301 (base32
15302 "00fq520xwy1ysg4k8x48x9b0yy9wyi8y8zj6dvxjg4bwx0yyp6s4"))))
15303 (build-system r-build-system)
15304 (propagated-inputs
15305 `(("r-ggplot2" ,r-ggplot2)
15306 ("r-gtable" ,r-gtable)))
15307 (home-page "https://github.com/thomasp85/patchwork")
15308 (synopsis "Compose ggplot2 plots")
15309 (description
15310 "The @code{ggplot2} package provides a strong API for sequentially
15311 building up a plot, but does not concern itself with composition of multiple
15312 plots. Patchwork is a package that expands the API to allow for arbitrarily
15313 complex composition of plots by providing mathmatical operators for combining
15314 multiple plots.")
15315 (license license:expat))))
15316
15317 (define-public r-liger
15318 (package
15319 (name "r-liger")
15320 (version "0.4.2")
15321 (source
15322 (origin
15323 (method git-fetch)
15324 (uri (git-reference
15325 (url "https://github.com/MacoskoLab/liger.git")
15326 (commit (string-append "v" version))))
15327 (file-name (git-file-name name version))
15328 (sha256
15329 (base32
15330 "16dzwwcpw6n78pxlc5w3kraigki35ix7zhd2cbx5f3y60bbkhlmx"))
15331 (modules '((guix build utils)))
15332 (snippet
15333 '(begin
15334 (delete-file "inst/java/ModularityOptimizer.jar")
15335 #t))))
15336 (build-system r-build-system)
15337 (arguments
15338 `(#:phases
15339 (modify-phases %standard-phases
15340 (add-after 'unpack 'build-java-part
15341 (lambda* (#:key inputs #:allow-other-keys)
15342 (invoke "unzip" (assoc-ref inputs "optimizer-src"))
15343 (for-each (lambda (file) (invoke "javac" file))
15344 (find-files "." "\\.java$"))
15345 (apply invoke "jar" "cf" "inst/java/ModularityOptimizer.jar"
15346 (find-files "." "\\.class$"))
15347 #t)))))
15348 (propagated-inputs
15349 `(("r-cowplot" ,r-cowplot)
15350 ("r-dosnow" ,r-dosnow)
15351 ("r-dplyr" ,r-dplyr)
15352 ("r-fnn" ,r-fnn)
15353 ("r-foreach" ,r-foreach)
15354 ("r-ggplot2" ,r-ggplot2)
15355 ("r-ggrepel" ,r-ggrepel)
15356 ("r-hmisc" ,r-hmisc)
15357 ("r-ica" ,r-ica)
15358 ("r-irlba" ,r-irlba)
15359 ("r-matrix" ,r-matrix)
15360 ("r-mclust" ,r-mclust)
15361 ("r-patchwork" ,r-patchwork)
15362 ("r-plyr" ,r-plyr)
15363 ("r-rann-l1" ,r-rann-l1)
15364 ("r-rcpp" ,r-rcpp)
15365 ("r-rcpparmadillo" ,r-rcpparmadillo)
15366 ("r-riverplot" ,r-riverplot)
15367 ("r-rtsne" ,r-rtsne)
15368 ("r-snow" ,r-snow)))
15369 (native-inputs
15370 `(("jdk" ,icedtea "jdk")
15371 ;; See https://github.com/MacoskoLab/liger/issues/96
15372 ;; The optimizer is released under the Expat license.
15373 ("optimizer-src"
15374 ,(origin
15375 (method url-fetch)
15376 (uri "http://www.ludowaltman.nl/slm/modularity_optimizer_source.zip")
15377 (sha256
15378 (base32
15379 "01hmm6sapcmldvayknqx2w4cav3qv71mwwkdkwj4qgq6dss09g18"))))
15380 ("unzip" ,unzip)
15381 ("r-knitr" ,r-knitr))) ; for vignettes
15382 (home-page "https://github.com/MacoskoLab/liger")
15383 (synopsis "Integrate and analyze multiple single-cell datasets")
15384 (description
15385 "LIGER is a package for integrating and analyzing multiple single-cell
15386 datasets, developed and maintained by the Macosko lab. It relies on
15387 integrative non-negative matrix factorization to identify shared and
15388 dataset-specific factors.")
15389 (license license:gpl3)))
15390
15391 (define-public r-harmony
15392 ;; There are no tagged commits
15393 (let ((commit "4d1653870d4dd70fff1807c182882db1fbf9af5a")
15394 (revision "1"))
15395 (package
15396 (name "r-harmony")
15397 (version (git-version "1.0" revision commit))
15398 (source
15399 (origin
15400 (method git-fetch)
15401 (uri (git-reference
15402 (url "https://github.com/immunogenomics/harmony")
15403 (commit commit)))
15404 (file-name (git-file-name name version))
15405 (sha256
15406 (base32
15407 "1gasdldr4aalr9h2q9kmm3y4i7azkgnhdn4bmvsszs7lg9xacw85"))))
15408 (build-system r-build-system)
15409 (propagated-inputs
15410 `(("r-cowplot" ,r-cowplot)
15411 ("r-dplyr" ,r-dplyr)
15412 ("r-ggplot2" ,r-ggplot2)
15413 ("r-irlba" ,r-irlba)
15414 ("r-matrix" ,r-matrix)
15415 ("r-rcpp" ,r-rcpp)
15416 ("r-rcpparmadillo" ,r-rcpparmadillo)
15417 ("r-rcppprogress" ,r-rcppprogress)
15418 ("r-rlang" ,r-rlang)
15419 ("r-tibble" ,r-tibble)
15420 ("r-tidyr" ,r-tidyr)))
15421 (home-page "https://github.com/immunogenomics/harmony")
15422 (synopsis "Integration of single cell sequencing data")
15423 (description
15424 "This package provides an implementation of the Harmony algorithm for
15425 single cell integration, described in Korsunsky et al
15426 @url{doi.org/10.1101/461954}. The package includes a standalone Harmony
15427 function and interfaces to external frameworks.")
15428 (license license:gpl3))))
15429
15430 (define-public r-covr
15431 (package
15432 (name "r-covr")
15433 (version "3.3.2")
15434 (source
15435 (origin
15436 (method url-fetch)
15437 (uri (cran-uri "covr" version))
15438 (sha256
15439 (base32 "160w0m2d06kdd8dar57lpph39rxx55xwncbpl3b21l7j9drh1s5f"))))
15440 (properties `((upstream-name . "covr")))
15441 (build-system r-build-system)
15442 (propagated-inputs
15443 `(("r-crayon" ,r-crayon)
15444 ("r-digest" ,r-digest)
15445 ("r-httr" ,r-httr)
15446 ("r-jsonlite" ,r-jsonlite)
15447 ("r-rex" ,r-rex)
15448 ("r-withr" ,r-withr)
15449 ("r-yaml" ,r-yaml)))
15450 (home-page "https://github.com/r-lib/covr")
15451 (synopsis "Test coverage for R packages")
15452 (description
15453 "Thisp package enables you to track and report code coverage for your
15454 package and (optionally) upload the results to a coverage service. Code
15455 coverage is a measure of the amount of code being exercised by a set of tests.
15456 It is an indirect measure of test quality and completeness. This package is
15457 compatible with any testing methodology or framework and tracks coverage of
15458 both R code and compiled C/C++/FORTRAN code.")
15459 (license license:gpl3)))
15460
15461 (define-public r-systemfonts
15462 (package
15463 (name "r-systemfonts")
15464 (version "0.1.1")
15465 (source
15466 (origin
15467 (method url-fetch)
15468 (uri (cran-uri "systemfonts" version))
15469 (sha256
15470 (base32
15471 "0m0ljid683xcam2f14x7k2zv1yx4npac38a3gfv11vhxfbnpgp0z"))))
15472 (properties `((upstream-name . "systemfonts")))
15473 (build-system r-build-system)
15474 (inputs
15475 `(("fontconfig" ,fontconfig)
15476 ("freetype" ,freetype)
15477 ("zlib" ,zlib)))
15478 (native-inputs
15479 `(("pkg-config" ,pkg-config)))
15480 (home-page "https://github.com/r-lib/systemfonts")
15481 (synopsis "System native font finding")
15482 (description
15483 "This package provides system native access to the font catalogue. As
15484 font handling varies between systems it is difficult to correctly locate
15485 installed fonts across different operating systems. The 'systemfonts' package
15486 provides bindings to the native libraries for finding font files that can then
15487 be used further by e.g. graphic devices.")
15488 (license license:expat)))
15489
15490 (define-public r-graphlayouts
15491 (package
15492 (name "r-graphlayouts")
15493 (version "0.5.0")
15494 (source
15495 (origin
15496 (method url-fetch)
15497 (uri (cran-uri "graphlayouts" version))
15498 (sha256
15499 (base32
15500 "03dizbhhdhnzbj2i5zvqgs617kwcv4h2pha4f16adic0fph1rxl3"))))
15501 (properties `((upstream-name . "graphlayouts")))
15502 (build-system r-build-system)
15503 (propagated-inputs
15504 `(("r-igraph" ,r-igraph)
15505 ("r-rcpp" ,r-rcpp)
15506 ("r-rcpparmadillo" ,r-rcpparmadillo)))
15507 (home-page "https://github.com/schochastics/graphlayouts")
15508 (synopsis "Additional layout algorithms for network visualizations")
15509 (description
15510 "This package provides several layout algorithms to visualize networks
15511 which are not part of the igraph library. Most are based on the concept of
15512 stress majorization by Gansner et al. (2004)
15513 <doi:10.1007/978-3-540-31843-9_25>. Some more specific algorithms allow to
15514 emphasize hidden group structures in networks or focus on specific nodes.")
15515 (license license:expat)))
15516
15517 (define-public r-tidygraph
15518 (package
15519 (name "r-tidygraph")
15520 (version "1.1.2")
15521 (source
15522 (origin
15523 (method url-fetch)
15524 (uri (cran-uri "tidygraph" version))
15525 (sha256
15526 (base32
15527 "1zpsarm74afbc7p5dlyb0whc09670qdcddw1ckb25cfc9hfh0hjn"))))
15528 (properties `((upstream-name . "tidygraph")))
15529 (build-system r-build-system)
15530 (propagated-inputs
15531 `(("r-dplyr" ,r-dplyr)
15532 ("r-igraph" ,r-igraph)
15533 ("r-magrittr" ,r-magrittr)
15534 ("r-pillar" ,r-pillar)
15535 ("r-r6" ,r-r6)
15536 ("r-rcpp" ,r-rcpp)
15537 ("r-rlang" ,r-rlang)
15538 ("r-tibble" ,r-tibble)
15539 ("r-tidyr" ,r-tidyr)))
15540 (home-page "https://github.com/thomasp85/tidygraph")
15541 (synopsis "Tidy API for graph manipulation")
15542 (description
15543 "This package provides a graph implementation that can be thought of as
15544 two tidy data frames describing node and edge data respectively. It provides
15545 an approach to manipulate these two virtual data frames using the API defined
15546 in the @code{dplyr} package, and it also provides tidy interfaces to a lot of
15547 common graph algorithms.")
15548 (license license:expat)))
15549
15550 (define-public r-soupx
15551 (let ((commit "a3354be76fb52fd795be6ddf163cf056c05c6cb8")
15552 (revision "1"))
15553 (package
15554 (name "r-soupx")
15555 (version (git-version "0.3.1" revision commit))
15556 (source
15557 (origin
15558 (method git-fetch)
15559 (uri (git-reference
15560 (url "https://github.com/constantAmateur/SoupX")
15561 (commit commit)))
15562 (file-name (git-file-name name version))
15563 (sha256
15564 (base32
15565 "1zmlyzrl0fz6l79gn2wswid670p88mm3y292is89sa5p3h7frr99"))))
15566 (properties `((upstream-name . "SoupX")))
15567 (build-system r-build-system)
15568 (propagated-inputs
15569 `(("r-ggplot2" ,r-ggplot2)
15570 ("r-matrix" ,r-matrix)
15571 ("r-seurat" ,r-seurat)))
15572 (home-page "https://github.com/constantAmateur/SoupX")
15573 (synopsis "Single cell mRNA Soup eXterminator")
15574 (description
15575 "This package provides a package for quantifying, profiling and
15576 removing cell free mRNA contamination (the \"soup\") from droplet based single
15577 cell RNA-seq experiments.")
15578 (license license:gpl2))))
15579
15580 (define-public r-assertr
15581 (package
15582 (name "r-assertr")
15583 (version "2.6")
15584 (source
15585 (origin
15586 (method url-fetch)
15587 (uri (cran-uri "assertr" version))
15588 (sha256
15589 (base32
15590 "0g4ii6vhp0155a29ljhs64a09x0nzy5ybvwwchhk4mkcgsvnvfkj"))))
15591 (build-system r-build-system)
15592 (propagated-inputs
15593 `(("r-dplyr" ,r-dplyr)
15594 ("r-mass" ,r-mass)
15595 ("r-rlang" ,r-rlang)))
15596 (native-inputs
15597 `(("r-knitr" ,r-knitr))) ; needed for vignette
15598 (home-page "https://github.com/ropensci/assertr")
15599 (synopsis "Assertive programming for R analysis pipelines")
15600 (description
15601 "This package provides functionality to assert conditions that have to be
15602 met so that errors in data used in analysis pipelines can fail quickly. It is
15603 similar to @code{stopifnot()} but more powerful, friendly, and easier for use
15604 in pipelines.")
15605 (license license:expat)))
15606
15607 (define-public r-parameters
15608 (package
15609 (name "r-parameters")
15610 (version "0.3.0")
15611 (source
15612 (origin
15613 (method url-fetch)
15614 (uri (cran-uri "parameters" version))
15615 (sha256
15616 (base32
15617 "0ifb9g1h8sn661q7jf9d8glk58gxdcym5ywbmx7phwn0y3is5wdv"))))
15618 (properties `((upstream-name . "parameters")))
15619 (build-system r-build-system)
15620 (propagated-inputs
15621 `(("r-bayestestr" ,r-bayestestr)
15622 ("r-insight" ,r-insight)))
15623 (home-page "https://cran.r-project.org/web/packages/parameters")
15624 (synopsis "Processing of model parameters")
15625 (description
15626 "This package provides utilities for processing the parameters of various
15627 statistical models. Beyond computing p values, CIs, and other indices for a
15628 wide variety of models, this package implements features like standardization
15629 or bootstrapping of parameters and models, feature reduction (feature
15630 extraction and variable selection) as well as conversion between indices of
15631 effect size.")
15632 (license license:gpl3)))
15633
15634 (define-public r-rgdal
15635 (package
15636 (name "r-rgdal")
15637 (version "1.4-7")
15638 (source
15639 (origin
15640 (method url-fetch)
15641 (uri (cran-uri "rgdal" version))
15642 (sha256
15643 (base32 "05rvqy8lr2c3phaylmc4g5761208b0xrmgwn9c4a60x7p251dzjs"))))
15644 (properties `((upstream-name . "rgdal")))
15645 (build-system r-build-system)
15646 (inputs
15647 `(("gdal" ,gdal)
15648 ("proj.4" ,proj.4)
15649 ("zlib" ,zlib)))
15650 (propagated-inputs
15651 `(("r-sp" ,r-sp)))
15652 (native-inputs
15653 `(("pkg-config" ,pkg-config)))
15654 (home-page "http://rgdal.r-forge.r-project.org")
15655 (synopsis "Bindings for the Geospatial Data Abstraction Library")
15656 (description
15657 "This package provides bindings to the Geospatial Data Abstraction
15658 Library (GDAL) and access to projection/transformation operations from the
15659 PROJ.4 library.")
15660 (license license:gpl2+)))
15661
15662 (define-public r-insol
15663 (package
15664 (name "r-insol")
15665 (version "1.2")
15666 (source
15667 (origin
15668 (method url-fetch)
15669 (uri (cran-uri "insol" version))
15670 (sha256
15671 (base32
15672 "14ikz05375pjn9hby7kwkhcnykjilbnkdy5i8lsl7c5qdbhmqcm5"))))
15673 (properties `((upstream-name . "insol")))
15674 (build-system r-build-system)
15675 (propagated-inputs
15676 `(("r-raster" ,r-raster)
15677 ("r-rgdal" ,r-rgdal)))
15678 (native-inputs
15679 `(("gfortran" ,gfortran)))
15680 (home-page "https://meteoexploration.com/R/insol/index.html")
15681 (synopsis "Tools for calculating solar radiation")
15682 (description
15683 "This package provides functions to compute insolation on tilted
15684 surfaces, computes atmospheric transmittance and related parameters such as:
15685 Earth radius vector, declination, sunset and sunrise, daylength, equation of
15686 time, vector in the direction of the sun, vector normal to surface, and some
15687 atmospheric physics.")
15688 (license license:gpl2+)))
15689
15690 (define-public r-lifecycle
15691 (package
15692 (name "r-lifecycle")
15693 (version "0.1.0")
15694 (source
15695 (origin
15696 (method url-fetch)
15697 (uri (cran-uri "lifecycle" version))
15698 (sha256
15699 (base32
15700 "11rk7hkw63rfrf4aqmb4xrb88kg95xh8hajpjvjfwjym2v02h74n"))))
15701 (properties `((upstream-name . "lifecycle")))
15702 (build-system r-build-system)
15703 (propagated-inputs
15704 `(("r-glue" ,r-glue)
15705 ("r-rlang" ,r-rlang)))
15706 (home-page "https://github.com/r-lib/lifecycle")
15707 (synopsis "Manage the life cycle of your package functions")
15708 (description
15709 "Manage the life cycle of your exported functions with shared
15710 conventions, documentation badges, and non-invasive deprecation warnings. The
15711 lifecycle package defines four development stages (experimental, maturing,
15712 stable, and questioning) and three deprecation stages (soft-deprecated,
15713 deprecated, and defunct). It makes it easy to insert badges corresponding to
15714 these stages in your documentation. Usage of deprecated functions are
15715 signalled with increasing levels of non-invasive verbosity.")
15716 (license license:gpl3)))
15717
15718 (define-public r-assertable
15719 (package
15720 (name "r-assertable")
15721 (version "0.2.7")
15722 (source
15723 (origin
15724 (method url-fetch)
15725 (uri (cran-uri "assertable" version))
15726 (sha256
15727 (base32
15728 "1npks9rcrnchmd0silq6qrvqkmdkp9fwjkyyvvp1lqjclyxk6vkk"))))
15729 (build-system r-build-system)
15730 (propagated-inputs
15731 `(("r-data-table" ,r-data-table)))
15732 (home-page "https://cran.r-project.org/web/packages/assertable/")
15733 (synopsis "Verbose assertions for tabular data (data.frames and data.tables)")
15734 (description "This package provides simple, flexible assertions on
15735 data.frame or data.table objects with verbose output for vetting. While other
15736 assertion packages apply towards more general use-cases, @code{assertable} is
15737 tailored towards tabular data. It includes functions to check variable names
15738 and values, whether the dataset contains all combinations of a given set of
15739 unique identifiers, and whether it is a certain length. In addition,
15740 @code{assertable} includes utility functions to check the existence of target
15741 files and to efficiently import multiple tabular data files into one
15742 data.table.")
15743 (license license:gpl3)))
15744
15745 (define-public r-quadprog
15746 (package
15747 (name "r-quadprog")
15748 (version "1.5-8")
15749 (source
15750 (origin
15751 (method url-fetch)
15752 (uri (cran-uri "quadprog" version))
15753 (sha256
15754 (base32 "1ka9g8zak8sg4y2xbz93dfrldznlk9qpd4pq9z21cdcdn3b8s4i2"))))
15755 (build-system r-build-system)
15756 (native-inputs
15757 `(("gfortran" ,gfortran)))
15758 (home-page "https://cran.r-project.org/web/packages/quadprog")
15759 (synopsis "Functions to solve quadratic programming problems")
15760 (description
15761 "This package contains routines and documentation for solving quadratic
15762 programming problems.")
15763 (license license:gpl3+)))
15764
15765 (define-public r-desolve
15766 (package
15767 (name "r-desolve")
15768 (version "1.25")
15769 (source
15770 (origin
15771 (method url-fetch)
15772 (uri (cran-uri "deSolve" version))
15773 (sha256
15774 (base32 "0735y3p5glhqx69rzrc8qgmvs7p7w0p98qxmvylb6bgqp6kp0cbp"))))
15775 (properties `((upstream-name . "deSolve")))
15776 (build-system r-build-system)
15777 (native-inputs
15778 `(("gfortran" ,gfortran)))
15779 (home-page "https://desolve.r-forge.r-project.org/")
15780 (synopsis "Solvers for initial value problems of differential equations")
15781 (description "This package provides functions that solve initial
15782 value problems of a system of first-order ordinary differential equations (ODE),
15783 of partial differential equations (PDE), of differential algebraic equations
15784 (DAE), and of delay differential equations. The functions provide an interface
15785 to the FORTRAN functions lsoda, lsodar, lsode, lsodes of the ODEPACK collection,
15786 to the FORTRAN functions dvode and daspk and a C-implementation of solvers of
15787 the Runge-Kutta family with fixed or variable time steps. The package contains
15788 routines designed for solving ODEs resulting from 1-D, 2-D and 3-D partial
15789 differential equations (PDE) that have been converted to ODEs by numerical
15790 differencing.")
15791 (license license:gpl2+)))
15792
15793 (define-public r-pracma
15794 (package
15795 (name "r-pracma")
15796 (version "2.2.5")
15797 (source (origin
15798 (method url-fetch)
15799 (uri (cran-uri "pracma" version))
15800 (sha256
15801 (base32 "0isd3s0i4mzmva8lkh0j76hwjy1w50q7d1n9lhxsnnkgalx3xs1g"))))
15802 (build-system r-build-system)
15803 (home-page "https://cran.r-project.org/web/packages/pracma/")
15804 (synopsis "Practical numerical math functions")
15805 (description "This package provides functions for numerical analysis and
15806 linear algebra, numerical optimization, differential equations, plus some
15807 special functions. It uses Matlab function names where appropriate to simplify
15808 porting.")
15809 (license license:gpl3+)))