gnu: r-sjmisc: Update to 2.8.4.
[jackhill/guix/guix.git] / gnu / packages / cran.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 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, 2020 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, 2020 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 Eric Brown <brown@fastmail.com>
18 ;;; Copyright © 2018, 2019 Brett Gilio <brettg@gnu.org>
19 ;;; Copyright © 2019 Nicolò Balzarotti <anothersms@gmail.com>
20 ;;; Copyright © 2019 Wiktor Żelazny <wzelazny@vurv.cz>
21 ;;; Copyright © 2020 Todor Kondić <tk.code@protonmail.com>
22 ;;; Copyright © 2020 Danjela Lura <danielaluraa@gmail.com>
23 ;;; Copyright © 2020 Naga Malleswari <nagamalli@riseup.net>
24 ;;;
25 ;;; This file is part of GNU Guix.
26 ;;;
27 ;;; GNU Guix is free software; you can redistribute it and/or modify it
28 ;;; under the terms of the GNU General Public License as published by
29 ;;; the Free Software Foundation; either version 3 of the License, or (at
30 ;;; your option) any later version.
31 ;;;
32 ;;; GNU Guix is distributed in the hope that it will be useful, but
33 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
34 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35 ;;; GNU General Public License for more details.
36 ;;;
37 ;;; You should have received a copy of the GNU General Public License
38 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
39
40 (define-module (gnu packages cran)
41 #:use-module ((guix licenses) #:prefix license:)
42 #:use-module (guix packages)
43 #:use-module (guix download)
44 #:use-module (guix git-download)
45 #:use-module (guix utils)
46 #:use-module (guix build-system r)
47 #:use-module (gnu packages algebra)
48 #:use-module (gnu packages autotools)
49 #:use-module (gnu packages base)
50 #:use-module (gnu packages bioinformatics)
51 #:use-module (gnu packages c)
52 #:use-module (gnu packages compression)
53 #:use-module (gnu packages curl)
54 #:use-module (gnu packages databases)
55 #:use-module (gnu packages fontutils)
56 #:use-module (gnu packages gcc)
57 #:use-module (gnu packages geo)
58 #:use-module (gnu packages ghostscript)
59 #:use-module (gnu packages gl)
60 #:use-module (gnu packages gnome)
61 #:use-module (gnu packages graph)
62 #:use-module (gnu packages gtk)
63 #:use-module (gnu packages haskell-xyz)
64 #:use-module (gnu packages icu4c)
65 #:use-module (gnu packages image)
66 #:use-module (gnu packages imagemagick)
67 #:use-module (gnu packages java)
68 #:use-module (gnu packages javascript)
69 #:use-module (gnu packages lisp-xyz)
70 #:use-module (gnu packages machine-learning)
71 #:use-module (gnu packages maths)
72 #:use-module (gnu packages mpi)
73 #:use-module (gnu packages multiprecision)
74 #:use-module (gnu packages networking)
75 #:use-module (gnu packages pcre)
76 #:use-module (gnu packages perl)
77 #:use-module (gnu packages pkg-config)
78 #:use-module (gnu packages python)
79 #:use-module (gnu packages python-xyz)
80 #:use-module (gnu packages statistics)
81 #:use-module (gnu packages tcl)
82 #:use-module (gnu packages tls)
83 #:use-module (gnu packages web)
84 #:use-module (gnu packages xorg))
85
86 (define-public r-clipr
87 (package
88 (name "r-clipr")
89 (version "0.7.0")
90 (source
91 (origin
92 (method url-fetch)
93 (uri (cran-uri "clipr" version))
94 (sha256
95 (base32
96 "1qn2p13d0c1bpqss6mv9hk60980rzhznfqpyaf5x0fy65svy9903"))))
97 (build-system r-build-system)
98 (home-page "https://github.com/mdlincoln/clipr")
99 (synopsis "Read and write from the system clipboard")
100 (description
101 "This package provides simple utility functions to read from and write to
102 the system clipboards.")
103 (license license:gpl3)))
104
105 (define-public r-oenb
106 (package
107 (name "r-oenb")
108 (version "0.0.1")
109 (source
110 (origin
111 (method url-fetch)
112 (uri (cran-uri "oenb" version))
113 (sha256
114 (base32
115 "1x1jlqp6r27c4gb7wafzpmh5rq6yq61a2d395r5lsmv2g5jb4biz"))))
116 (properties `((upstream-name . "oenb")))
117 (build-system r-build-system)
118 (propagated-inputs
119 `(("r-dplyr" ,r-dplyr)
120 ("r-xml" ,r-xml)))
121 (native-inputs `(("r-knitr" ,r-knitr)))
122 (home-page "https://github.com/franzmohr/oenb")
123 (synopsis "Tools for the OeNB Data Web Service")
124 (description
125 "Tools to access data from the data web service of the
126 @acronym{OeNB, Oesterreichische Nationalbank},
127 @url{https://www.oenb.at/en/Statistics/User-Defined-Tables/webservice.html}.")
128 (license license:gpl2+)))
129
130 (define-public r-scales
131 (package
132 (name "r-scales")
133 (version "1.1.0")
134 (source
135 (origin
136 (method url-fetch)
137 (uri (cran-uri "scales" version))
138 (sha256
139 (base32 "00rdbfj5mwc3kr8pskidn3n2zkp4ms6cx36xazz54pxw3pysdr0y"))))
140 (build-system r-build-system)
141 (propagated-inputs
142 `(("r-farver" ,r-farver)
143 ("r-labeling" ,r-labeling)
144 ("r-lifecycle" ,r-lifecycle)
145 ("r-munsell" ,r-munsell)
146 ("r-rcolorbrewer" ,r-rcolorbrewer)
147 ("r-r6" ,r-r6)
148 ("r-viridislite" ,r-viridislite)))
149 (home-page "https://github.com/hadley/scales")
150 (synopsis "Scale functions for visualization")
151 (description
152 "This package provides graphical scales that map data to aesthetics, and
153 provides methods for automatically determining breaks and labels for axes and
154 legends.")
155 (license license:expat)))
156
157 (define-public r-pheatmap
158 (package
159 (name "r-pheatmap")
160 (version "1.0.12")
161 (source
162 (origin
163 (method url-fetch)
164 (uri (cran-uri "pheatmap" version))
165 (sha256
166 (base32
167 "1hdh74az3vyzz6dqa311rhxdm74n46lyr03p862kn80p0kp9d7ap"))))
168 (build-system r-build-system)
169 (propagated-inputs
170 `(("r-gtable" ,r-gtable)
171 ("r-rcolorbrewer" ,r-rcolorbrewer)
172 ("r-scales" ,r-scales)))
173 (home-page "https://cran.r-project.org/web/packages/pheatmap")
174 (synopsis "Pretty heatmaps")
175 (description
176 "This package provides an implementation of heatmaps that offers more
177 control over dimensions and appearance.")
178 (license license:gpl2+)))
179
180 (define-public r-ellipsis
181 (package
182 (name "r-ellipsis")
183 (version "0.3.0")
184 (source
185 (origin
186 (method url-fetch)
187 (uri (cran-uri "ellipsis" version))
188 (sha256
189 (base32
190 "01z9gq311nzwv3a0sa49jhm5ylqd59srip4vjkrf23hzgb5i9y0b"))))
191 (build-system r-build-system)
192 (propagated-inputs
193 `(("r-rlang" ,r-rlang)))
194 (home-page "https://github.com/hadley/ellipsis")
195 (synopsis "Tools for working with additional arguments")
196 (description
197 "In S3 generics, it's useful to take @code{...} so that methods can have
198 additional arguments. But this flexibility comes at a cost: misspelled
199 arguments will be silently ignored. The @code{ellipsis} package is an
200 experiment that allows a generic to warn if any arguments passed in @code{...}
201 are not used.")
202 (license license:gpl3)))
203
204 (define-public r-grr
205 (package
206 (name "r-grr")
207 (version "0.9.5")
208 (source
209 (origin
210 (method url-fetch)
211 (uri (cran-uri "grr" version))
212 (sha256
213 (base32
214 "0arbcgrvhkwb5xk4nry1ffg2qj0v8ivhjghdr505ib4357g0c9i9"))))
215 (build-system r-build-system)
216 (home-page "https://cran.r-project.org/web/packages/grr")
217 (synopsis "Alternative implementations of base R functions")
218 (description
219 "This package provides alternative implementations of some base R
220 functions, including @code{sort}, @code{order}, and @code{match}. The
221 functions are simplified but can be faster or have other advantages.")
222 (license license:gpl3)))
223
224 (define-public r-matrix-utils
225 (package
226 (name "r-matrix-utils")
227 (version "0.9.8")
228 (source
229 (origin
230 (method url-fetch)
231 (uri (cran-uri "Matrix.utils" version))
232 (sha256
233 (base32
234 "0a5fq1scykqk0kc9j051j6fix6j2dqwz5wbgb0amaxsiywz9vigb"))))
235 (properties `((upstream-name . "Matrix.utils")))
236 (build-system r-build-system)
237 (propagated-inputs
238 `(("r-grr" ,r-grr)
239 ("r-matrix" ,r-matrix)))
240 (home-page "https://github.com/cvarrichio/Matrix.utils")
241 (synopsis
242 "Data.frame-Like Operations on Sparse and Dense Matrix Objects")
243 (description
244 "This package implements data manipulation methods such as @code{cast},
245 @code{aggregate}, and @code{merge}/@code{join} for Matrix and Matrix-like
246 objects.")
247 (license license:gpl3)))
248
249 (define-public r-sys
250 (package
251 (name "r-sys")
252 (version "3.3")
253 (source
254 (origin
255 (method url-fetch)
256 (uri (cran-uri "sys" version))
257 (sha256
258 (base32
259 "14wvy46i2iz9jn7lj3cvifmps932s3395wq681hniva0f8m7q8d6"))))
260 (build-system r-build-system)
261 (home-page "https://github.com/jeroen/sys")
262 (synopsis "Powerful and reliable tools for running system commands in R")
263 (description
264 "This package provides drop-in replacements for the base @code{system2()}
265 function with fine control and consistent behavior across platforms. It
266 supports clean interruption, timeout, background tasks, and streaming STDIN /
267 STDOUT / STDERR over binary or text connections. The package also provides
268 functions for evaluating expressions inside a temporary fork. Such
269 evaluations have no side effects on the main R process, and support reliable
270 interrupts and timeouts. This provides the basis for a sandboxing
271 mechanism.")
272 (license license:expat)))
273
274 (define-public r-askpass
275 (package
276 (name "r-askpass")
277 (version "1.1")
278 (source
279 (origin
280 (method url-fetch)
281 (uri (cran-uri "askpass" version))
282 (sha256
283 (base32
284 "07q0ik8jzk44vpwh48rr3fnpd7dzsdhjjsl4l850rffv3dyq4h6v"))))
285 (build-system r-build-system)
286 (propagated-inputs `(("r-sys" ,r-sys)))
287 (home-page "https://github.com/jeroen/askpass")
288 (synopsis "Safe password entry for R")
289 (description
290 "This package provides cross-platform utilities for prompting the user
291 for credentials or a passphrase, for example to authenticate with a server or
292 read a protected key.")
293 (license license:expat)))
294
295 (define-public r-vegan
296 (package
297 (name "r-vegan")
298 (version "2.5-6")
299 (source
300 (origin
301 (method url-fetch)
302 (uri (cran-uri "vegan" version))
303 (sha256
304 (base32
305 "0g60rgn1i7wqf9pf5m1yki1m45gcp7i5hmjic0ci0f6vng70mh5k"))))
306 (build-system r-build-system)
307 (native-inputs
308 `(("gfortran" ,gfortran)))
309 (propagated-inputs
310 `(("r-cluster" ,r-cluster)
311 ("r-knitr" ,r-knitr) ; needed for vignettes
312 ("r-lattice" ,r-lattice)
313 ("r-mass" ,r-mass)
314 ("r-mgcv" ,r-mgcv)
315 ("r-permute" ,r-permute)))
316 (home-page "https://cran.r-project.org/web/packages/vegan")
317 (synopsis "Functions for community ecology")
318 (description
319 "The vegan package provides tools for descriptive community ecology. It
320 has most basic functions of diversity analysis, community ordination and
321 dissimilarity analysis. Most of its multivariate tools can be used for other
322 data types as well.")
323 (license license:gpl2+)))
324
325 (define-public r-tidyverse
326 (package
327 (name "r-tidyverse")
328 (version "1.3.0")
329 (source
330 (origin
331 (method url-fetch)
332 (uri (cran-uri "tidyverse" version))
333 (sha256
334 (base32
335 "02gyys08qv2v4cl2d66gml4d31ipxay0iyfwwksvxyclx60wp2kd"))))
336 (build-system r-build-system)
337 (propagated-inputs
338 `(("r-broom" ,r-broom)
339 ("r-cli" ,r-cli)
340 ("r-crayon" ,r-crayon)
341 ("r-dbplyr" ,r-dbplyr)
342 ("r-dplyr" ,r-dplyr)
343 ("r-forcats" ,r-forcats)
344 ("r-ggplot2" ,r-ggplot2)
345 ("r-haven" ,r-haven)
346 ("r-hms" ,r-hms)
347 ("r-httr" ,r-httr)
348 ("r-jsonlite" ,r-jsonlite)
349 ("r-lubridate" ,r-lubridate)
350 ("r-magrittr" ,r-magrittr)
351 ("r-modelr" ,r-modelr)
352 ("r-pillar" ,r-pillar)
353 ("r-purrr" ,r-purrr)
354 ("r-readr" ,r-readr)
355 ("r-readxl" ,r-readxl)
356 ("r-reprex" ,r-reprex)
357 ("r-rlang" ,r-rlang)
358 ("r-rstudioapi" ,r-rstudioapi)
359 ("r-rvest" ,r-rvest)
360 ("r-stringr" ,r-stringr)
361 ("r-tibble" ,r-tibble)
362 ("r-tidyr" ,r-tidyr)
363 ("r-xml2" ,r-xml2)))
364 (home-page "https://tidyverse.tidyverse.org")
365 (synopsis "Install and load packages from the \"Tidyverse\"")
366 (description
367 "The @code{tidyverse} is a set of packages that work in harmony because
368 they share common data representations and API design. This package is
369 designed to make it easy to install and load multiple tidyverse packages in a
370 single step.")
371 (license license:gpl3)))
372
373 (define-public r-rvest
374 (package
375 (name "r-rvest")
376 (version "0.3.5")
377 (source
378 (origin
379 (method url-fetch)
380 (uri (cran-uri "rvest" version))
381 (sha256
382 (base32 "0r0a5jic09xw5pk0x42pr99r3zab5m9s4x85ymx1sl769jz42zqf"))))
383 (build-system r-build-system)
384 (propagated-inputs
385 `(("r-httr" ,r-httr)
386 ("r-magrittr" ,r-magrittr)
387 ("r-selectr" ,r-selectr)
388 ("r-xml2" ,r-xml2)))
389 (home-page "https://github.com/hadley/rvest")
390 (synopsis "Simple web scraping for R")
391 (description
392 "@code{r-rvest} helps you scrape information from web pages. It is
393 designed to work with @code{magrittr} to make it easy to express common web
394 scraping tasks, inspired by libraries like @code{BeautifulSoup}.")
395 (license license:gpl3)))
396
397 (define-public r-selectr
398 (package
399 (name "r-selectr")
400 (version "0.4-2")
401 (source
402 (origin
403 (method url-fetch)
404 (uri (cran-uri "selectr" version))
405 (sha256
406 (base32 "09y1n3iy297g49xlpl7xrjpwgnm57pskx5991lyfcpizbz8ax22m"))))
407 (build-system r-build-system)
408 (propagated-inputs
409 `(("r-stringr" ,r-stringr)
410 ("r-r6" ,r-r6)))
411 (home-page "https://sjp.co.nz/projects/selectr/")
412 (synopsis "Translate CSS selectors to XPath expressions")
413 (description
414 "@code{r-selectr} translates a CSS3 selector into an equivalent XPath
415 expression. This allows you to use CSS selectors when working with the XML
416 package as it can only evaluate XPath expressions. Also provided are
417 convenience functions useful for using CSS selectors on XML nodes. This
418 package is a port of the Python package @code{cssselect}.")
419 (license license:bsd-3)))
420
421 (define-public r-reprex
422 (package
423 (name "r-reprex")
424 (version "0.3.0")
425 (source
426 (origin
427 (method url-fetch)
428 (uri (cran-uri "reprex" version))
429 (sha256
430 (base32
431 "0v7vxzs8alwz8y1cjicpimp5yimf1g9gb8x5wy3zhvrz6kk2lg10"))))
432 (build-system r-build-system)
433 (propagated-inputs
434 `(("r-callr" ,r-callr)
435 ("r-clipr" ,r-clipr)
436 ("r-fs" ,r-fs)
437 ("r-rlang" ,r-rlang)
438 ("r-rmarkdown" ,r-rmarkdown)
439 ("r-whisker" ,r-whisker)
440 ("r-withr" ,r-withr)))
441 (home-page "https://github.com/tidyverse/reprex")
442 (synopsis "Prepare reproducible R code examples for sharing")
443 (description
444 "This package provides a convenience wrapper that uses the
445 @code{rmarkdown} package to render small snippets of code to target formats
446 that include both code and output. The goal is to encourage the sharing of
447 small, reproducible, and runnable examples on code-oriented websites or email.
448 @code{reprex} also extracts clean, runnable R code from various common formats,
449 such as copy/paste from an R session.")
450 (license license:expat)))
451
452 (define-public r-callr
453 (package
454 (name "r-callr")
455 (version "3.4.3")
456 (source
457 (origin
458 (method url-fetch)
459 (uri (cran-uri "callr" version))
460 (sha256
461 (base32
462 "1dc20gdawy9mhnc452qlshv2p4krs6c2gymvpv365mn141zjgdq1"))))
463 (build-system r-build-system)
464 (propagated-inputs
465 `(("r-r6" ,r-r6)
466 ("r-processx" ,r-processx)))
467 (home-page "https://github.com/r-lib/callr#readme")
468 (synopsis "Call R from R")
469 (description
470 "It is sometimes useful to perform a computation in a separate R process,
471 without affecting the current R process at all. This package does exactly
472 that.")
473 (license license:expat)))
474
475 (define-public r-readxl
476 (package
477 (name "r-readxl")
478 (version "1.3.1")
479 (source
480 (origin
481 (method url-fetch)
482 (uri (cran-uri "readxl" version))
483 (sha256
484 (base32
485 "15mambxr8c7k2ikdfsl1w3vxvm54dsnk0cl1qvks6iig7rql3d14"))))
486 (build-system r-build-system)
487 (propagated-inputs
488 `(("r-cellranger" ,r-cellranger)
489 ("r-progress" ,r-progress)
490 ("r-rcpp" ,r-rcpp)
491 ("r-tibble" ,r-tibble)))
492 (home-page "https://readxl.tidyverse.org")
493 (synopsis "Read Excel files")
494 (description
495 "This package lets you import Excel files into R. It supports
496 @file{.xls} via the embedded @code{libxls} C library and @file{.xlsx} via
497 the embedded @code{RapidXML} C++ library.")
498 ;; XXX: This package bundles a copy of 'libxsl' which is BSD-2 and
499 ;; 'rapidxml' which is Boost.
500 (license (list license:gpl3 license:bsd-2 license:boost1.0))))
501
502 (define-public r-modelr
503 (package
504 (name "r-modelr")
505 (version "0.1.6")
506 (source
507 (origin
508 (method url-fetch)
509 (uri (cran-uri "modelr" version))
510 (sha256
511 (base32
512 "1x2m34m4qirb401krmgc5wg3g7ndbcglfab2l0655rmky3fz7rfp"))))
513 (build-system r-build-system)
514 (propagated-inputs
515 `(("r-broom" ,r-broom)
516 ("r-dplyr" ,r-dplyr)
517 ("r-magrittr" ,r-magrittr)
518 ("r-purrr" ,r-purrr)
519 ("r-rlang" ,r-rlang)
520 ("r-tibble" ,r-tibble)
521 ("r-tidyr" ,r-tidyr)
522 ("r-tidyselect" ,r-tidyselect)))
523 (home-page "https://github.com/tidyverse/modelr")
524 (synopsis "Helper functions for modelling in pipelines")
525 (description
526 "Functions for modelling that help you seamlessly integrate modelling
527 into a pipeline of data manipulation and visualisation.")
528 (license license:gpl3)))
529
530 (define-public r-httpuv
531 (package
532 (name "r-httpuv")
533 (version "1.5.2")
534 (source (origin
535 (method url-fetch)
536 (uri (cran-uri "httpuv" version))
537 (sha256
538 (base32
539 "13ax0hs2lc39ilznh1zarwqdzahcbhb8adilrfik3xg0fkljpcwk"))))
540 (build-system r-build-system)
541 (propagated-inputs
542 `(("r-bh" ,r-bh)
543 ("r-later" ,r-later)
544 ("r-promises" ,r-promises)
545 ("r-r6" ,r-r6)
546 ("r-rcpp" ,r-rcpp)))
547 (home-page "https://github.com/rstudio/httpuv")
548 (synopsis "HTTP and WebSocket server library for R")
549 (description
550 "The httpuv package provides low-level socket and protocol support for
551 handling HTTP and WebSocket requests directly from within R. It is primarily
552 intended as a building block for other packages, rather than making it
553 particularly easy to create complete web applications using httpuv alone.")
554 ;; This package includes third-party code that was originally released
555 ;; under various non-copyleft licenses. Full licensing information can be
556 ;; obtained here: https://github.com/rstudio/httpuv/blob/master/LICENSE
557 (license license:gpl3+)))
558
559 (define-public r-jsonlite
560 (package
561 (name "r-jsonlite")
562 (version "1.6.1")
563 (source (origin
564 (method url-fetch)
565 (uri (cran-uri "jsonlite" version))
566 (sha256
567 (base32
568 "0xrki07wc17bkmhz0h7jay784j1sls2i9bf1mfpj6yl59791v4kl"))))
569 (build-system r-build-system)
570 (home-page "https://arxiv.org/abs/1403.2805")
571 (synopsis "Robust, high performance JSON parser and generator for R")
572 (description
573 "The jsonlite package provides a fast JSON parser and generator optimized
574 for statistical data and the web. It offers flexible, robust, high
575 performance tools for working with JSON in R and is particularly powerful for
576 building pipelines and interacting with a web API. In addition to converting
577 JSON data from/to R objects, jsonlite contains functions to stream, validate,
578 and prettify JSON data. The unit tests included with the package verify that
579 all edge cases are encoded and decoded consistently for use with dynamic data
580 in systems and applications.")
581 (license license:expat)))
582
583 (define-public r-servr
584 (package
585 (name "r-servr")
586 (version "0.16")
587 (source (origin
588 (method url-fetch)
589 (uri (cran-uri "servr" version))
590 (sha256
591 (base32
592 "106skz04iq4dkblr17idxsxfcfqic6rcaz8mahydkwjjppnhp5fc"))))
593 (build-system r-build-system)
594 (propagated-inputs
595 `(("r-httpuv" ,r-httpuv)
596 ("r-jsonlite" ,r-jsonlite)
597 ("r-mime" ,r-mime)
598 ("r-xfun" ,r-xfun)))
599 (home-page "https://github.com/yihui/servr")
600 (synopsis "Simple HTTP server to serve static files or dynamic documents")
601 (description
602 "Servr provides an HTTP server in R to serve static files, or dynamic
603 documents that can be converted to HTML files (e.g., R Markdown) under a given
604 directory.")
605 (license license:expat)))
606
607 (define-public r-htmltools
608 (package
609 (name "r-htmltools")
610 (version "0.4.0")
611 (source (origin
612 (method url-fetch)
613 (uri (cran-uri "htmltools" version))
614 (sha256
615 (base32
616 "06l17d8jkf438yk2mchpsp4j90bynnapz3nabh5vkcc324p5a62v"))))
617 (build-system r-build-system)
618 (propagated-inputs
619 `(("r-digest" ,r-digest)
620 ("r-rcpp" ,r-rcpp)
621 ("r-rlang" ,r-rlang)))
622 (home-page "https://cran.r-project.org/web/packages/htmltools")
623 (synopsis "R tools for HTML")
624 (description
625 "This package provides tools for HTML generation and output in R.")
626 (license license:expat)))
627
628 (define-public r-htmlwidgets
629 (package
630 (name "r-htmlwidgets")
631 (version "1.5.1")
632 (source (origin
633 (method url-fetch)
634 (uri (cran-uri "htmlwidgets" version))
635 (sha256
636 (base32
637 "10fp306l1nybkah6jrlrqwwdb6zvklbddp8i3w9v9naj8la5jbnl"))))
638 (build-system r-build-system)
639 (propagated-inputs
640 `(("r-htmltools" ,r-htmltools)
641 ("r-jsonlite" ,r-jsonlite)
642 ("r-yaml" ,r-yaml)))
643 (home-page "https://github.com/ramnathv/htmlwidgets")
644 (synopsis "HTML Widgets for R")
645 (description
646 "HTML widgets is a framework for creating HTML widgets that render in
647 various contexts including the R console, R Markdown documents, and Shiny web
648 applications.")
649 (license license:expat)))
650
651 (define-public r-htmltable
652 (package
653 (name "r-htmltable")
654 (version "1.13.3")
655 (source
656 (origin
657 (method url-fetch)
658 (uri (cran-uri "htmlTable" version))
659 (sha256
660 (base32
661 "0g9r156k9yl1f092hfw3b9wjx11akf0shbi3x0d0mvpnflvc8nfl"))))
662 (properties `((upstream-name . "htmlTable")))
663 (build-system r-build-system)
664 (propagated-inputs
665 `(("r-checkmate" ,r-checkmate)
666 ("r-htmltools" ,r-htmltools)
667 ("r-htmlwidgets" ,r-htmlwidgets)
668 ("r-knitr" ,r-knitr)
669 ("r-magrittr" ,r-magrittr)
670 ("r-rstudioapi" ,r-rstudioapi)
671 ("r-stringr" ,r-stringr)))
672 (home-page "http://gforge.se/packages/")
673 (synopsis "Advanced tables for Markdown/HTML")
674 (description
675 "This package provides functions to build tables with advanced layout
676 elements such as row spanners, column spanners, table spanners, zebra
677 striping, and more. While allowing advanced layout, the underlying
678 CSS-structure is simple in order to maximize compatibility with word
679 processors such as LibreOffice. The package also contains a few text
680 formatting functions that help outputting text compatible with HTML or
681 LaTeX.")
682 (license license:gpl3+)))
683
684 (define-public r-curl
685 (package
686 (name "r-curl")
687 (version "4.3")
688 (source (origin
689 (method url-fetch)
690 (uri (cran-uri "curl" version))
691 (sha256
692 (base32
693 "1nrf6md41b37j424y6rvifdj9zb3j14f60fj7q71k9jhpf2x81kl"))))
694 (build-system r-build-system)
695 (arguments
696 `(#:phases
697 (modify-phases %standard-phases
698 ;; The environment variable CURL_CA_BUNDLE is only respected when
699 ;; running Windows, so we disable the platform checks.
700 ;; This can be removed once the libcurl has been patched.
701 (add-after 'unpack 'allow-CURL_CA_BUNDLE
702 (lambda _
703 (substitute* "R/onload.R"
704 (("if \\(!grepl\\(\"mingw\".*")
705 "if (FALSE)\n"))
706 (substitute* "src/handle.c"
707 (("/\\* Only set" m)
708 (string-append "\
709 const char *_ca_bundle = getenv(\"CURL_CA_BUNDLE\");
710 if(_ca_bundle != NULL) { curl_easy_setopt(handle, CURLOPT_CAINFO, _ca_bundle); }
711 " m)))
712 #t)))))
713 (inputs
714 `(("libcurl" ,curl)
715 ("zlib" ,zlib)))
716 (native-inputs
717 `(("pkg-config" ,pkg-config)))
718 (home-page "https://github.com/jeroenooms/curl")
719 (synopsis "HTTP client for R")
720 (description
721 "The @code{curl()} and @code{curl_download()} functions provide highly
722 configurable drop-in replacements for base @code{url()} and
723 @code{download.file()} with better performance, support for encryption, gzip
724 compression, authentication, and other @code{libcurl} goodies. The core of
725 the package implements a framework for performing fully customized requests
726 where data can be processed either in memory, on disk, or streaming via the
727 callback or connection interfaces.")
728 (license license:expat)))
729
730 (define-public r-hwriter
731 (package
732 (name "r-hwriter")
733 (version "1.3.2")
734 (source
735 (origin
736 (method url-fetch)
737 (uri (cran-uri "hwriter" version))
738 (sha256
739 (base32
740 "0arjsz854rfkfqhgvpqbm9lfni97dcjs66isdsfvwfd2wz932dbb"))))
741 (build-system r-build-system)
742 (home-page "https://cran.r-project.org/web/packages/hwriter")
743 (synopsis "Output R objects in HTML format")
744 (description
745 "This package provides easy-to-use and versatile functions to output R
746 objects in HTML format.")
747 (license license:lgpl2.1+)))
748
749 (define-public r-rjson
750 (package
751 (name "r-rjson")
752 (version "0.2.20")
753 (source
754 (origin
755 (method url-fetch)
756 (uri (cran-uri "rjson" version))
757 (sha256
758 (base32
759 "0v1zvdd3svnavklh7y5xbwrrkbvx6053r4c5hgnk7hz7bqg7qa1s"))))
760 (build-system r-build-system)
761 (home-page "https://cran.r-project.org/web/packages/rjson")
762 (synopsis "JSON library for R")
763 (description
764 "This package provides functions to convert R objects into JSON objects
765 and vice-versa.")
766 (license license:gpl2+)))
767
768 (define-public r-fastmap
769 (package
770 (name "r-fastmap")
771 (version "1.0.1")
772 (source
773 (origin
774 (method url-fetch)
775 (uri (cran-uri "fastmap" version))
776 (sha256
777 (base32
778 "1v7sp56xiha0bh78g3w92k52p9vkp7ryzpw0z66nyddxzrfv0y27"))))
779 (properties `((upstream-name . "fastmap")))
780 (build-system r-build-system)
781 (home-page "https://r-lib.github.io/fastmap/")
782 (synopsis "Fast implementation of a key-value store")
783 (description
784 "This package provides a fast implementation of a key-value store.
785 Environments are commonly used as key-value stores, but every time a new key
786 is used, it is added to R's global symbol table, causing a small amount of
787 memory leakage. This can be problematic in cases where many different keys
788 are used. Fastmap avoids this memory leak issue by implementing the map using
789 data structures in C++.")
790 (license license:expat)))
791
792 (define-public r-shiny
793 (package
794 (name "r-shiny")
795 (version "1.4.0.2")
796 (source
797 (origin
798 (method git-fetch)
799 (uri (git-reference
800 (url "https://github.com/rstudio/shiny.git")
801 (commit (string-append "v" version))))
802 (file-name (git-file-name name version))
803 (sha256
804 (base32
805 "005wgcxq7f2q9g6wvfk29n2nms262w0abpz93sfvx79yv6qxppzs"))))
806 (build-system r-build-system)
807 (arguments
808 `(#:modules ((guix build r-build-system)
809 (guix build minify-build-system)
810 (guix build utils)
811 (ice-9 match))
812 #:imported-modules (,@%r-build-system-modules
813 (guix build minify-build-system))
814 #:phases
815 (modify-phases (@ (guix build r-build-system) %standard-phases)
816 (add-after 'unpack 'replace-bundled-minified-JavaScript
817 (lambda* (#:key inputs #:allow-other-keys)
818 (let ((replace-file (lambda (old new)
819 (format #t "replacing ~a with ~a\n" old new)
820 (delete-file old)
821 (symlink new old))))
822 ;; NOTE: Files in ./inst/www/shared/datepicker/js/locales/
823 ;; contain just data. They are not minified code, so we don't
824 ;; replace them.
825 (with-directory-excursion "inst/www/shared"
826 (replace-file "bootstrap/shim/respond.min.js"
827 (string-append (assoc-ref inputs "js-respond")
828 "/share/javascript/respond.min.js"))
829 (replace-file "bootstrap/shim/html5shiv.min.js"
830 (string-append (assoc-ref inputs "js-html5shiv")
831 "/share/javascript/html5shiv.min.js"))
832 (replace-file "json2-min.js"
833 (string-append (assoc-ref inputs "js-json2")
834 "/share/javascript/json2-min.js"))
835 (replace-file "strftime/strftime-min.js"
836 (string-append (assoc-ref inputs "js-strftime")
837 "/share/javascript/strftime.min.js"))
838 (replace-file "highlight/highlight.pack.js"
839 (string-append (assoc-ref inputs "js-highlight")
840 "/share/javascript/highlight.min.js"))
841 (replace-file "datatables/js/jquery.dataTables.min.js"
842 (string-append (assoc-ref inputs "js-datatables")
843 "/share/javascript/jquery.dataTables.min.js"))
844 (replace-file "selectize/js/selectize.min.js"
845 (string-append (assoc-ref inputs "js-selectize")
846 "/share/javascript/selectize.min.js"))
847 (replace-file "selectize/js/es5-shim.min.js"
848 (string-append (assoc-ref inputs "js-es5-shim")
849 "/share/javascript/es5-shim.min.js"))
850 (for-each (match-lambda
851 ((source . target)
852 (delete-file target)
853 (minify source #:target target)))
854 '(("jqueryui/jquery-ui.js" .
855 "jqueryui/jquery-ui.min.js")
856 ("datepicker/js/bootstrap-datepicker.js" .
857 "datepicker/js/bootstrap-datepicker.min.js")
858 ("ionrangeslider/js/ion.rangeSlider.js" .
859 "ionrangeslider/js/ion.rangeSlider.min.js")
860 ("bootstrap/js/bootstrap.js" .
861 "bootstrap/js/bootstrap.min.js")
862 ("shiny.js" .
863 "shiny.min.js")
864 ("jquery.js" .
865 "jquery.min.js")
866 ("legacy/jquery.js" .
867 "legacy/jquery.min.js")
868 ("showdown/src/showdown.js" .
869 "showdown/compressed/showdown.js")))))
870 #t)))))
871 (propagated-inputs
872 `(("r-crayon" ,r-crayon)
873 ("r-digest" ,r-digest)
874 ("r-fastmap" ,r-fastmap)
875 ("r-htmltools" ,r-htmltools)
876 ("r-httpuv" ,r-httpuv)
877 ("r-jsonlite" ,r-jsonlite)
878 ("r-later" ,r-later)
879 ("r-mime" ,r-mime)
880 ("r-promises" ,r-promises)
881 ("r-r6" ,r-r6)
882 ("r-rlang" ,r-rlang)
883 ("r-sourcetools" ,r-sourcetools)
884 ("r-withr" ,r-withr)
885 ("r-xtable" ,r-xtable)))
886 (inputs
887 `(("js-datatables" ,js-datatables)
888 ("js-html5shiv" ,js-html5shiv)
889 ("js-json2" ,js-json2)
890 ("js-respond" ,js-respond)
891 ("js-selectize" ,js-selectize)
892 ("js-strftime" ,js-strftime)
893 ("js-highlight" ,js-highlight)
894 ("js-es5-shim" ,js-es5-shim)))
895 (native-inputs
896 `(("uglify-js" ,uglify-js)
897 ("gfortran" ,gfortran)))
898 (home-page "http://shiny.rstudio.com")
899 (synopsis "Easy interactive web applications with R")
900 (description
901 "Makes it incredibly easy to build interactive web applications
902 with R. Automatic \"reactive\" binding between inputs and outputs and
903 extensive prebuilt widgets make it possible to build beautiful,
904 responsive, and powerful applications with minimal effort.")
905 (license license:artistic2.0)))
906
907 ;; This package includes minified JavaScript files. When upgrading please
908 ;; check that there are no new minified JavaScript files.
909 (define-public r-shinytree
910 (package
911 (name "r-shinytree")
912 (version "0.2.7")
913 (source
914 (origin
915 (method url-fetch)
916 (uri (cran-uri "shinyTree" version))
917 (sha256
918 (base32
919 "0jfx2capckv7hf2yx3fn8i4rcmhi222ah91jnmhg497x8wgz31s3"))
920 (modules '((guix build utils)))
921 (snippet
922 '(begin
923 ;; Delete minified JavaScript
924 (for-each delete-file
925 '("inst/www/jsTree-3.3.7/libs/require.js"
926 "inst/www/jsTree-3.3.7/libs/jquery.js"
927 "inst/www/jsTree-3.3.7/jstree.min.js"))
928 #t))))
929 (properties `((upstream-name . "shinyTree")))
930 (build-system r-build-system)
931 (arguments
932 `(#:modules ((guix build utils)
933 (guix build r-build-system)
934 (srfi srfi-1)
935 (ice-9 popen))
936 #:phases
937 (modify-phases %standard-phases
938 (add-after 'unpack 'replace-minified-javascript
939 (lambda* (#:key inputs #:allow-other-keys)
940 (with-directory-excursion "inst/www/jsTree-3.3.7/"
941 (symlink (string-append (assoc-ref inputs "js-requirejs")
942 "/share/javascript/require.min.js")
943 "libs/require.js")
944 (call-with-values
945 (lambda ()
946 (unzip2
947 `((,(assoc-ref inputs "js-jquery")
948 "libs/jquery.js")
949 ("jstree.js"
950 "jstree.min.js"))))
951 (lambda (sources targets)
952 (for-each (lambda (source target)
953 (format #t "Processing ~a --> ~a~%"
954 source target)
955 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
956 (call-with-output-file target
957 (lambda (port)
958 (dump-port minified port)))))
959 sources targets))))
960 #t)))))
961 (propagated-inputs
962 `(("r-htmlwidgets" ,r-htmlwidgets)
963 ("r-jsonlite" ,r-jsonlite)
964 ("r-promises" ,r-promises)
965 ("r-shiny" ,r-shiny)
966 ("r-stringr" ,r-stringr)))
967 (inputs
968 `(("js-requirejs" ,js-requirejs)))
969 (native-inputs
970 `(("uglify-js" ,uglify-js)
971 ("js-jquery"
972 ,(origin
973 (method url-fetch)
974 (uri "https://code.jquery.com/jquery-3.3.1.js")
975 (sha256
976 (base32
977 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))))
978 (home-page "https://cran.r-project.org/web/packages/shinyTree/")
979 (synopsis "jsTree bindings for Shiny")
980 (description
981 "This package exposes R bindings to jsTree, a JavaScript library that
982 supports interactive trees, to enable rich, editable trees in Shiny.")
983 (license license:expat)))
984
985 (define-public r-shinydashboard
986 (package
987 (name "r-shinydashboard")
988 (version "0.7.1")
989 (source (origin
990 (method url-fetch)
991 (uri (cran-uri "shinydashboard" version))
992 (sha256
993 (base32
994 "0khac8b27q3swdw07kl609hm0fjfjsjv591b388q99mqqr2rk92i"))))
995 (build-system r-build-system)
996 ;; The directory inst/AdminLTE/ contains a minified JavaScript file.
997 ;; Regenerate it from the included sources.
998 (arguments
999 `(#:modules ((guix build utils)
1000 (guix build r-build-system)
1001 (ice-9 popen))
1002 #:phases
1003 (modify-phases %standard-phases
1004 (add-after 'unpack 'generate-minified-javascript
1005 (lambda _
1006 (with-directory-excursion "inst/AdminLTE"
1007 (delete-file "app.min.js")
1008 (let ((minified (open-pipe* OPEN_READ "uglify-js" "app.js")))
1009 (call-with-output-file "app.min.js"
1010 (lambda (port)
1011 (dump-port minified port))))))))))
1012 (propagated-inputs
1013 `(("r-htmltools" ,r-htmltools)
1014 ("r-promises" ,r-promises)
1015 ("r-shiny" ,r-shiny)))
1016 (native-inputs
1017 `(("uglify-js" ,uglify-js)))
1018 (home-page "https://rstudio.github.io/shinydashboard/")
1019 (synopsis "Create dashboards with shiny")
1020 (description "This package provides an extension to the Shiny web
1021 application framework for R, making it easy to create attractive dashboards.")
1022 ;; This package includes software that was released under the Expat
1023 ;; license, but the whole package is released under GPL version 2 or
1024 ;; later.
1025 (license license:gpl2+)))
1026
1027 (define-public r-shinyfiles
1028 (package
1029 (name "r-shinyfiles")
1030 (version "0.7.5")
1031 (source
1032 (origin
1033 (method url-fetch)
1034 (uri (cran-uri "shinyFiles" version))
1035 (sha256
1036 (base32 "1143m941hma9hc77c3xcw26c0ygfhn9ii2sbp9wrydxv4gc7mr8a"))))
1037 (properties `((upstream-name . "shinyFiles")))
1038 (build-system r-build-system)
1039 (propagated-inputs
1040 `(("r-fs" ,r-fs)
1041 ("r-htmltools" ,r-htmltools)
1042 ("r-jsonlite" ,r-jsonlite)
1043 ("r-shiny" ,r-shiny)
1044 ("r-tibble" ,r-tibble)))
1045 (home-page "https://github.com/thomasp85/shinyFiles")
1046 (synopsis "Server-side file system viewer for Shiny")
1047 (description
1048 "This package provides functionality for client-side navigation of the
1049 server side file system in shiny apps. In case the app is running locally
1050 this gives the user direct access to the file system without the need to
1051 \"download\" files to a temporary location. Both file and folder selection as
1052 well as file saving is available.")
1053 (license license:gpl2+)))
1054
1055 (define-public r-shinythemes
1056 (package
1057 (name "r-shinythemes")
1058 (version "1.1.2")
1059 (source
1060 (origin
1061 (method url-fetch)
1062 (uri (cran-uri "shinythemes" version))
1063 (sha256
1064 (base32
1065 "12miz44n2zxfswnia7p8dirxj3miw0aqn4pkx2111ikz67ax84rf"))))
1066 (properties `((upstream-name . "shinythemes")))
1067 (build-system r-build-system)
1068 (propagated-inputs `(("r-shiny" ,r-shiny)))
1069 (home-page "https://rstudio.github.io/shinythemes/")
1070 (synopsis "Themes for Shiny")
1071 (description
1072 "This package provides themes for use with Shiny. It includes several
1073 Bootstrap themes, which are packaged for use with Shiny applications.")
1074 ;; The package is released under version 3 of the GPL, but it includes
1075 ;; source files that are covered by the Expat license. It also includes
1076 ;; fonts under SIL or the ASL.
1077 (license (list license:gpl3 license:expat
1078 license:silofl1.1 license:asl2.0))))
1079
1080 ;; The package sources include minified variants of d3.js and non-minified
1081 ;; source code of d3-jetpack.
1082 (define-public r-d3r
1083 (package
1084 (name "r-d3r")
1085 (version "0.8.7")
1086 (source
1087 (origin
1088 (method url-fetch)
1089 (uri (cran-uri "d3r" version))
1090 (sha256
1091 (base32
1092 "0xl3im76lp7pd5lhp8jfyqdm4j4zvjrx5a5fl81xv2cf7x3n4f2a"))))
1093 (build-system r-build-system)
1094 (arguments
1095 `(#:modules ((guix build utils)
1096 (guix build r-build-system)
1097 (srfi srfi-1)
1098 (ice-9 popen))
1099 #:phases
1100 (modify-phases %standard-phases
1101 (add-after 'unpack 'process-javascript
1102 (lambda* (#:key inputs #:allow-other-keys)
1103 (with-directory-excursion "inst/www/d3/"
1104 (call-with-values
1105 (lambda ()
1106 (unzip2
1107 `((,(assoc-ref inputs "d3.v3.js")
1108 "v3/dist/d3.min.js")
1109 (,(assoc-ref inputs "d3.v4.js")
1110 "v4/dist/d3.min.js")
1111 (,(assoc-ref inputs "d3.v5.js")
1112 "v5/dist/d3.min.js"))))
1113 (lambda (sources targets)
1114 (for-each (lambda (source target)
1115 (format #t "Processing ~a --> ~a~%"
1116 source target)
1117 (delete-file target)
1118 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
1119 (call-with-output-file target
1120 (lambda (port)
1121 (dump-port minified port)))))
1122 sources targets))))
1123 #t)))))
1124 (propagated-inputs
1125 `(("r-dplyr" ,r-dplyr)
1126 ("r-htmltools" ,r-htmltools)
1127 ("r-tidyr" ,r-tidyr)))
1128 (native-inputs
1129 `(("uglify-js" ,uglify-js)
1130 ("d3.v3.js"
1131 ,(origin
1132 (method url-fetch)
1133 (uri "https://d3js.org/d3.v3.js")
1134 (sha256
1135 (base32
1136 "1arr7sr08vy7wh0nvip2mi7dpyjw4576vf3bm45rp4g5lc1k1x41"))))
1137 ("d3.v4.js"
1138 ,(origin
1139 (method url-fetch)
1140 (uri "https://d3js.org/d3.v4.js")
1141 (sha256
1142 (base32
1143 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))
1144 ("d3.v5.js"
1145 ,(origin
1146 (method url-fetch)
1147 (uri "https://d3js.org/d3.v5.js")
1148 (sha256
1149 (base32
1150 "0kxvx5pfagxn6nhavdwsdnzyd26g0z5dsfi1pi5dvcmb0c8ipcdn"))))))
1151 (home-page "https://github.com/timelyportfolio/d3r")
1152 (synopsis "d3.js utilities for R")
1153 (description
1154 "This package provides a suite of functions to help ease the use of the
1155 d3.js visualization library in R. These helpers include
1156 @code{htmltools::htmlDependency} functions, hierarchy builders, and conversion
1157 tools for @code{partykit}, @code{igraph}, @code{table}, and @code{data.frame}
1158 R objects into the JSON format that the d3.js library expects.")
1159 (license license:bsd-3)))
1160
1161 ;; We use the latest commit here because the last release was in 2016 while
1162 ;; the latest commit was in 2018.
1163 (define-public r-sankeyd3
1164 (let ((commit "fd50a74e29056e0d67d75b4d04de47afb2f932bc")
1165 (revision "1"))
1166 (package
1167 (name "r-sankeyd3")
1168 (version (git-version "0.3.2" revision commit))
1169 (source
1170 (origin
1171 (method git-fetch)
1172 (uri (git-reference
1173 (url "https://github.com/fbreitwieser/sankeyD3.git")
1174 (commit commit)))
1175 (file-name (git-file-name name version))
1176 (sha256
1177 (base32
1178 "0jrcnfax321pszbpjdifnkbrgbjr43bjzvlzv1p5a8wskksqwiyx"))))
1179 (build-system r-build-system)
1180 (propagated-inputs
1181 `(("r-d3r" ,r-d3r)
1182 ("r-htmlwidgets" ,r-htmlwidgets)
1183 ("r-shiny" ,r-shiny)
1184 ("r-magrittr" ,r-magrittr)))
1185 (home-page "https://github.com/fbreitwieser/sankeyD3")
1186 (synopsis "Sankey network graphs from R")
1187 (description
1188 "This package provides an R library to generate Sankey network graphs
1189 in R and Shiny via the D3 visualization library.")
1190 ;; The R code is licensed under GPLv3+. It includes the non-minified
1191 ;; JavaScript source code of d3-sankey, which is released under the
1192 ;; 3-clause BSD license.
1193 (license (list license:gpl3+ license:bsd-3)))))
1194
1195 (define-public r-crosstalk
1196 (package
1197 (name "r-crosstalk")
1198 (version "1.1.0.1")
1199 (source
1200 (origin
1201 (method url-fetch)
1202 (uri (cran-uri "crosstalk" version))
1203 (sha256
1204 (base32
1205 "03ihj7cimkklrbad9zic78xsrfcisygmgy859hqnx0hiph80p9rn"))))
1206 (build-system r-build-system)
1207 (propagated-inputs
1208 `(("r-htmltools" ,r-htmltools)
1209 ("r-jsonlite" ,r-jsonlite)
1210 ("r-lazyeval" ,r-lazyeval)
1211 ("r-r6" ,r-r6)))
1212 (home-page "https://rstudio.github.io/crosstalk/")
1213 (synopsis "Inter-widget interactivity for HTML widgets")
1214 (description
1215 "This package provides building blocks for allowing HTML widgets to
1216 communicate with each other, with Shiny or without (i.e. static @code{.html}
1217 files). It currently supports linked brushing and filtering.")
1218 (license license:expat)))
1219
1220 (define-public r-rook
1221 (package
1222 (name "r-rook")
1223 (version "1.1-1")
1224 (source
1225 (origin
1226 (method url-fetch)
1227 (uri (cran-uri "Rook" version))
1228 (sha256
1229 (base32
1230 "00s9a0kr9rwxvlq433daxjk4ji8m0w60hjdprf502msw9kxfrx00"))))
1231 (properties `((upstream-name . "Rook")))
1232 (build-system r-build-system)
1233 (propagated-inputs `(("r-brew" ,r-brew)))
1234 (home-page "https://cran.r-project.org/web/packages/Rook")
1235 (synopsis "Web server interface for R")
1236 (description
1237 "This package contains the Rook specification and convenience software
1238 for building and running Rook applications. A Rook application is an R
1239 reference class object that implements a @code{call} method or an R closure
1240 that takes exactly one argument, an environment, and returns a list with three
1241 named elements: the @code{status}, the @code{headers}, and the @code{body}.")
1242 (license license:gpl2)))
1243
1244 (define-public r-miniui
1245 (package
1246 (name "r-miniui")
1247 (version "0.1.1.1")
1248 (source
1249 (origin
1250 (method url-fetch)
1251 (uri (cran-uri "miniUI" version))
1252 (sha256
1253 (base32
1254 "1h5h2sc57h95d6bsgs95l26911g38hvjc1v50bc31xl9689l2as5"))))
1255 (properties `((upstream-name . "miniUI")))
1256 (build-system r-build-system)
1257 (propagated-inputs
1258 `(("r-htmltools" ,r-htmltools)
1259 ("r-shiny" ,r-shiny)))
1260 (home-page "https://cran.r-project.org/web/packages/miniUI/")
1261 (synopsis "Shiny UI widgets for small screens")
1262 (description
1263 "This package provides UI widget and layout functions for writing Shiny apps that
1264 work well on small screens.")
1265 (license license:gpl3)))
1266
1267 (define-public r-feather
1268 (package
1269 (name "r-feather")
1270 (version "0.3.5")
1271 (source
1272 (origin
1273 (method url-fetch)
1274 (uri (cran-uri "feather" version))
1275 (sha256
1276 (base32
1277 "1gxd0h2m56sjjlzn4dry6s13nddxc4l5i11gsvavaf2dwbahdzsh"))))
1278 (build-system r-build-system)
1279 (propagated-inputs
1280 `(("r-hms" ,r-hms)
1281 ("r-rcpp" ,r-rcpp)
1282 ("r-tibble" ,r-tibble)))
1283 (home-page "https://github.com/wesm/feather")
1284 (synopsis "R Bindings to the Feather API")
1285 (description "Read and write feather files, a lightweight binary columnar
1286 data store designed for maximum speed.")
1287 (license license:asl2.0)))
1288
1289 (define-public r-maps
1290 (package
1291 (name "r-maps")
1292 (version "3.3.0")
1293 (source
1294 (origin
1295 (method url-fetch)
1296 (uri (cran-uri "maps" version))
1297 (sha256
1298 (base32
1299 "05i2ppl5z4p8rawgqmy3z4ia05fcblpq1vvrmrkgkkpdlhczx6hr"))))
1300 (build-system r-build-system)
1301 (home-page "https://cran.r-project.org/web/packages/maps")
1302 (synopsis "Draw geographical maps")
1303 (description "This package provides an R module for display of maps.
1304 Projection code and larger maps are in separate packages (@code{mapproj} and
1305 @code{mapdata}).")
1306 (license license:gpl2)))
1307
1308 (define-public r-mapproj
1309 (package
1310 (name "r-mapproj")
1311 (version "1.2.7")
1312 (source
1313 (origin
1314 (method url-fetch)
1315 (uri (cran-uri "mapproj" version))
1316 (sha256
1317 (base32
1318 "0nscsfq8md6ri9258xz57c3dj81wdl6kdwf4a9qcrwwbn20i427h"))))
1319 (build-system r-build-system)
1320 (propagated-inputs `(("r-maps" ,r-maps)))
1321 (home-page "https://cran.r-project.org/web/packages/mapproj")
1322 (synopsis "Map projection in R")
1323 (description "This package converts latitude/longitude into projected
1324 coordinates.")
1325 (license (list license:gpl2 ; The R interface
1326 (license:non-copyleft ; The C code
1327 "https://www.gnu.org/licenses/license-list.en.html#lucent102"
1328 "Lucent Public License Version 1.02")))))
1329
1330 (define-public r-rgooglemaps
1331 (package
1332 (name "r-rgooglemaps")
1333 (version "1.4.5.3")
1334 (source
1335 (origin
1336 (method url-fetch)
1337 (uri (cran-uri "RgoogleMaps" version))
1338 (sha256
1339 (base32
1340 "02v8k0bw70q4qwx4lcdy8p25q7n3ql2ll46lfpqllxa1p26svmfi"))))
1341 (properties `((upstream-name . "RgoogleMaps")))
1342 (build-system r-build-system)
1343 (propagated-inputs
1344 `(("r-png" ,r-png)
1345 ("r-sp" ,r-sp)))
1346 (home-page "https://cran.r-project.org/web/packages/RgoogleMaps")
1347 (synopsis "Use Google Maps in R")
1348 (description "This package serves two purposes:
1349 @enumerate
1350 @item Provide a comfortable R interface to query the Google server for static
1351 maps, and
1352 @item Use the map as a background image to overlay plots within R. This
1353 requires proper coordinate scaling.
1354 @end enumerate\n")
1355 (license license:gpl2+)))
1356
1357 (define-public r-geosphere
1358 (package
1359 (name "r-geosphere")
1360 (version "1.5-10")
1361 (source
1362 (origin
1363 (method url-fetch)
1364 (uri (cran-uri "geosphere" version))
1365 (sha256
1366 (base32
1367 "15xlgsmn0vwky1l13n6acdz6jn2b2na3gf6x367y3qh1f5w4zkan"))))
1368 (build-system r-build-system)
1369 (propagated-inputs `(("r-sp" ,r-sp)))
1370 (home-page "https://cran.r-project.org/web/packages/geosphere")
1371 (synopsis "Spherical trigonometry")
1372 (description "This package computes spherical trigonometry for geographic
1373 applications. That is, compute distances and related measures for angular
1374 (longitude/latitude) locations.")
1375 (license license:gpl3+)))
1376
1377 (define-public r-jpeg
1378 (package
1379 (name "r-jpeg")
1380 (version "0.1-8.1")
1381 (source
1382 (origin
1383 (method url-fetch)
1384 (uri (cran-uri "jpeg" version))
1385 (sha256
1386 (base32
1387 "1a8mi70x79a691r40yiw684jkg1mr9n8agkxlcksxcnrdybs9c0x"))))
1388 (build-system r-build-system)
1389 (inputs `(("libjpeg" ,libjpeg)))
1390 (home-page "https://www.rforge.net/jpeg/")
1391 (synopsis "Read and write JPEG images with R")
1392 (description "This package provides a way to read, write and display
1393 bitmap images stored in the JPEG format with R. It can read and write both
1394 files and in-memory raw vectors.")
1395 (license license:gpl2+)))
1396
1397 (define-public r-ggmap
1398 (package
1399 (name "r-ggmap")
1400 (version "3.0.0")
1401 (source
1402 (origin
1403 (method url-fetch)
1404 (uri (cran-uri "ggmap" version))
1405 (sha256
1406 (base32
1407 "13dmzl6z62pzjiffilarkji46vy0sacxa8a7mhrhc3biq3ylzhln"))))
1408 (build-system r-build-system)
1409 (propagated-inputs
1410 `(("r-bitops" ,r-bitops)
1411 ("r-digest" ,r-digest)
1412 ("r-dplyr" ,r-dplyr)
1413 ("r-ggplot2" ,r-ggplot2)
1414 ("r-glue" ,r-glue)
1415 ("r-httr" ,r-httr)
1416 ("r-jpeg" ,r-jpeg)
1417 ("r-magrittr" ,r-magrittr)
1418 ("r-plyr" ,r-plyr)
1419 ("r-png" ,r-png)
1420 ("r-purrr" ,r-purrr)
1421 ("r-rgooglemaps" ,r-rgooglemaps)
1422 ("r-rjson" ,r-rjson)
1423 ("r-scales" ,r-scales)
1424 ("r-stringr" ,r-stringr)
1425 ("r-tibble" ,r-tibble)
1426 ("r-tidyr" ,r-tidyr)))
1427 (home-page "https://github.com/dkahle/ggmap")
1428 (synopsis "Spatial visualization with ggplot2")
1429 (description "This package provides a collection of functions to visualize
1430 spatial data and models on top of static maps from various online sources (e.g
1431 Google Maps and Stamen Maps). It includes tools common to those tasks,
1432 including functions for geolocation and routing.")
1433 (license license:gpl2)))
1434
1435 (define-public r-haven
1436 (package
1437 (name "r-haven")
1438 (version "2.2.0")
1439 (source
1440 (origin
1441 (method url-fetch)
1442 (uri (cran-uri "haven" version))
1443 (sha256
1444 (base32
1445 "0g9d6mxqmrw2zdms78jpx2sx73pczlyy771v1h5hmxqz9sqyk7hr"))))
1446 (build-system r-build-system)
1447 (inputs
1448 `(("zlib" ,zlib)))
1449 (propagated-inputs
1450 `(("r-forcats" ,r-forcats)
1451 ("r-hms" ,r-hms)
1452 ("r-rcpp" ,r-rcpp)
1453 ("r-rlang" ,r-rlang)
1454 ("r-readr" ,r-readr)
1455 ("r-tibble" ,r-tibble)
1456 ("r-tidyselect" ,r-tidyselect)))
1457 (home-page "https://haven.tidyverse.org")
1458 (synopsis "Import and Export 'SPSS', 'Stata' and 'SAS' Files")
1459 (description
1460 "This package lets you mport foreign statistical formats into R via the
1461 embedded @url{https://github.com/WizardMac/ReadStat,ReadStat} C library.")
1462 (license license:expat)))
1463
1464 (define-public r-amap
1465 (package
1466 (name "r-amap")
1467 (version "0.8-18")
1468 (source (origin
1469 (method url-fetch)
1470 (uri (cran-uri "amap" version))
1471 (sha256
1472 (base32
1473 "0zpcb73w413na23f6giml9311jh0j0y766w2fh9i40d2h7bbvyvs"))))
1474 (build-system r-build-system)
1475 (native-inputs
1476 `(("gfortran" ,gfortran)))
1477 (home-page "http://mulcyber.toulouse.inra.fr/projects/amap/")
1478 (synopsis "Another multidimensional analysis package")
1479 (description "This package provides tools for clustering and principal
1480 component analysis (with robust methods, and parallelized functions).")
1481 (license license:gpl2+)))
1482
1483 (define-public r-ape
1484 (package
1485 (name "r-ape")
1486 (version "5.3")
1487 (source
1488 (origin
1489 (method url-fetch)
1490 (uri (cran-uri "ape" version))
1491 (sha256
1492 (base32
1493 "08wbk1kxhs32bmmvqlqanbdg1w235amd35k8m00fngsj9h9xzc08"))))
1494 (build-system r-build-system)
1495 (propagated-inputs
1496 `(("r-lattice" ,r-lattice)
1497 ("r-nlme" ,r-nlme)
1498 ("r-rcpp" ,r-rcpp)))
1499 (home-page "http://ape-package.ird.fr/")
1500 (synopsis "Analyses of phylogenetics and evolution")
1501 (description
1502 "This package provides functions for reading, writing, plotting, and
1503 manipulating phylogenetic trees, analyses of comparative data in a
1504 phylogenetic framework, ancestral character analyses, analyses of
1505 diversification and macroevolution, computing distances from DNA sequences,
1506 and several other tools.")
1507 (license license:gpl2+)))
1508
1509 (define-public r-abbyyr
1510 (package
1511 (name "r-abbyyr")
1512 (version "0.5.5")
1513 (source
1514 (origin
1515 (method url-fetch)
1516 (uri (cran-uri "abbyyR" version))
1517 (sha256
1518 (base32
1519 "1vldnd3dg89aj6a73nhirirqddbfdrnzhb5m3679i60sark8nk6r"))))
1520 (properties `((upstream-name . "abbyyR")))
1521 (build-system r-build-system)
1522 (propagated-inputs
1523 `(("r-curl" ,r-curl)
1524 ("r-httr" ,r-httr)
1525 ("r-plyr" ,r-plyr)
1526 ("r-progress" ,r-progress)
1527 ("r-readr" ,r-readr)
1528 ("r-xml" ,r-xml)))
1529 (home-page "https://github.com/soodoku/abbyyR")
1530 (synopsis "Access to Abbyy Optical Character Recognition (OCR) API")
1531 (description
1532 "This package provides tools to get text from images of text using Abbyy
1533 Cloud Optical Character Recognition (OCR) API. With abbyyyR, one can easily
1534 OCR images, barcodes, forms, documents with machine readable zones, e.g.
1535 passports and get the results in a variety of formats including plain text and
1536 XML. To learn more about the Abbyy OCR API, see @url{http://ocrsdk.com/}.")
1537 (license license:expat)))
1538
1539 (define-public r-colorspace
1540 (package
1541 (name "r-colorspace")
1542 (version "1.4-1")
1543 (source
1544 (origin
1545 (method url-fetch)
1546 (uri (cran-uri "colorspace" version))
1547 (sha256
1548 (base32 "0wyny3ah2d74hqv80s6imrarpna09gq3j9rjnz6zx2qg0lx72gb9"))))
1549 (build-system r-build-system)
1550 (home-page "https://cran.r-project.org/web/packages/colorspace")
1551 (synopsis "Color space manipulation")
1552 (description
1553 "This package carries out a mapping between assorted color spaces
1554 including RGB, HSV, HLS, CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB and polar
1555 CIELAB. Qualitative, sequential, and diverging color palettes based on HCL
1556 colors are provided.")
1557 (license license:bsd-3)))
1558
1559 (define-public r-glue
1560 (package
1561 (name "r-glue")
1562 (version "1.3.2")
1563 (source
1564 (origin
1565 (method url-fetch)
1566 (uri (cran-uri "glue" version))
1567 (sha256
1568 (base32
1569 "0alklqcf68kmccssp4j7a7fv553pyqyy6mkkfslav83inppm4d3g"))))
1570 (build-system r-build-system)
1571 (home-page "https://github.com/tidyverse/glue")
1572 (synopsis "Interpreted string literals")
1573 (description
1574 "This package provides an implementation of interpreted string literals,
1575 inspired by Python's Literal String Interpolation (PEP-0498) and
1576 Docstrings (PEP-0257) and Julia's Triple-Quoted String Literals.")
1577 (license license:expat)))
1578
1579 (define-public r-pastecs
1580 (package
1581 (name "r-pastecs")
1582 (version "1.3.21")
1583 (source (origin
1584 (method url-fetch)
1585 (uri (cran-uri "pastecs" version))
1586 (sha256
1587 (base32
1588 "0z4dic94ar646w7zc2ggi5hgvf2qnznsani94c5pyql8zspz47lc"))))
1589 (build-system r-build-system)
1590 (propagated-inputs
1591 `(("r-boot" ,r-boot)))
1592 (home-page "http://www.sciviews.org/pastecs")
1593 (synopsis "Analysis of space-time ecological series")
1594 (description
1595 "This package provides functions for regulation, decomposition and analysis
1596 of space-time series. The @code{pastecs} library is a PNEC-Art4 and IFREMER
1597 initiative to bring PASSTEC 2000 functionalities to R.")
1598 (license license:gpl2+)))
1599
1600 (define-public r-plogr
1601 (package
1602 (name "r-plogr")
1603 (version "0.2.0")
1604 (source
1605 (origin
1606 (method url-fetch)
1607 (uri (cran-uri "plogr" version))
1608 (sha256
1609 (base32
1610 "0a8dhzlna79ggyhfr0nncgh15a9n6r0dsz664pz0ah323wpblqqf"))))
1611 (build-system r-build-system)
1612 (home-page "https://github.com/krlmlr/plogr")
1613 (synopsis "R bindings for the plog C++ logging library")
1614 (description
1615 "This package provides the header files for a stripped-down version of
1616 the plog header-only C++ logging library, and a method to log to R's standard
1617 error stream.")
1618 (license license:expat)))
1619
1620 (define-public r-pls
1621 (package
1622 (name "r-pls")
1623 (version "2.7-2")
1624 (source
1625 (origin
1626 (method url-fetch)
1627 (uri (cran-uri "pls" version))
1628 (sha256
1629 (base32 "121byimd6bg7jbrq5wz5fpi0vxq0vh8g724vkhnjzszbvcv1xsb7"))))
1630 (build-system r-build-system)
1631 (home-page "https://mevik.net/work/software/pls.html")
1632 (synopsis "Partial Least Squares and Principal Component Regression")
1633 (description
1634 "The pls package implements multivariate regression methods: Partial Least
1635 Squares Regression (@dfn{PLSR}), Principal Component Regression (@dfn{PCR}), and
1636 Canonical Powered Partial Least Squares (@dfn{CPPLS}). It supports:
1637
1638 @itemize
1639 @item several algorithms: the traditional orthogonal scores (@dfn{NIPALS}) PLS
1640 algorithm, kernel PLS, wide kernel PLS, Simpls, and PCR through @code{svd}
1641 @item multi-response models (or @dfn{PLS2})
1642 @item flexible cross-validation
1643 @item Jackknife variance estimates of regression coefficients
1644 @item extensive and flexible plots: scores, loadings, predictions, coefficients,
1645 (R)MSEP, R², and correlation loadings
1646 @item formula interface, modelled after @code{lm()}, with methods for predict,
1647 print, summary, plot, update, etc.
1648 @item extraction functions for coefficients, scores, and loadings
1649 @item MSEP, RMSEP, and R² estimates
1650 @item multiplicative scatter correction (@dfn{MSC})
1651 @end itemize\n")
1652 (license license:gpl2)))
1653
1654 (define-public r-ps
1655 (package
1656 (name "r-ps")
1657 (version "1.3.2")
1658 (source
1659 (origin
1660 (method url-fetch)
1661 (uri (cran-uri "ps" version))
1662 (sha256
1663 (base32 "0127q6pw9iw8hhcfp231gmdh29nahh2n5jzc38avrzy7yrm4bwl9"))))
1664 (build-system r-build-system)
1665 (home-page "https://ps.r-lib.org")
1666 (synopsis "List, query, and manipulate system processes")
1667 (description
1668 "The ps package implements an API to list, query, and manipulate system
1669 processes. Most of its code is based on the @code{psutil} Python package.")
1670 (license license:bsd-3)))
1671
1672 (define-public r-pkgbuild
1673 (package
1674 (name "r-pkgbuild")
1675 (version "1.0.6")
1676 (source
1677 (origin
1678 (method url-fetch)
1679 (uri (cran-uri "pkgbuild" version))
1680 (sha256
1681 (base32 "0xnlz6ivhkbmncg9hfw5p69lm4rjy3wn5lyxmygxyf4rrfnnqwxx"))))
1682 (build-system r-build-system)
1683 (propagated-inputs
1684 `(("r-callr" ,r-callr)
1685 ("r-cli" ,r-cli)
1686 ("r-crayon" ,r-crayon)
1687 ("r-desc" ,r-desc)
1688 ("r-prettyunits" ,r-prettyunits)
1689 ("r-r6" ,r-r6)
1690 ("r-rprojroot" ,r-rprojroot)
1691 ("r-withr" ,r-withr)))
1692 (home-page "https://github.com/r-pkgs/pkgbuild")
1693 (synopsis "Find tools needed to build R packages")
1694 (description
1695 "This package provides functions used to build R packages. It locates
1696 compilers needed to build R packages on various platforms and ensures the PATH
1697 is configured appropriately so R can use them.")
1698 (license license:gpl3)))
1699
1700 (define-public r-pkgload
1701 (package
1702 (name "r-pkgload")
1703 (version "1.0.2")
1704 (source
1705 (origin
1706 (method url-fetch)
1707 (uri (cran-uri "pkgload" version))
1708 (sha256
1709 (base32
1710 "0z7jvharafahi2gv5547mk1n499isjzw06kfwymmxc0gd575d1ii"))))
1711 (build-system r-build-system)
1712 (propagated-inputs
1713 `(("r-desc" ,r-desc)
1714 ("r-pkgbuild" ,r-pkgbuild)
1715 ("r-rlang" ,r-rlang)
1716 ("r-rprojroot" ,r-rprojroot)
1717 ("r-rstudioapi" ,r-rstudioapi)
1718 ("r-withr" ,r-withr)))
1719 (home-page "https://github.com/r-lib/pkgload")
1720 (synopsis "Simulate package installation and attach")
1721 (description
1722 "This package simulates the process of installing a package and then
1723 attaching it. This is a key part of the @code{devtools} package as it allows
1724 you to rapidly iterate while developing a package.")
1725 (license license:gpl3)))
1726
1727 (define-public r-rcpp
1728 (package
1729 (name "r-rcpp")
1730 (version "1.0.4.6")
1731 (source
1732 (origin
1733 (method url-fetch)
1734 (uri (cran-uri "Rcpp" version))
1735 (sha256
1736 (base32 "00mk23zmrqn1c4mk9d6csjcbnl12wd7yicjk2ikmw5dyvdfngbs5"))))
1737 (build-system r-build-system)
1738 (home-page "http://www.rcpp.org")
1739 (synopsis "Seamless R and C++ integration")
1740 (description
1741 "The Rcpp package provides R functions as well as C++ classes which offer
1742 a seamless integration of R and C++. Many R data types and objects can be
1743 mapped back and forth to C++ equivalents which facilitates both writing of new
1744 code as well as easier integration of third-party libraries. Documentation
1745 about Rcpp is provided by several vignettes included in this package, via the
1746 @code{Rcpp Gallery} site at <http://gallery.rcpp.org>, the paper by Eddelbuettel
1747 and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see
1748 @code{citation(\"Rcpp\")} for details on these last two.")
1749 (license license:gpl2+)))
1750
1751 (define-public r-bindr
1752 (package
1753 (name "r-bindr")
1754 (version "0.1.1")
1755 (source
1756 (origin
1757 (method url-fetch)
1758 (uri (cran-uri "bindr" version))
1759 (sha256
1760 (base32
1761 "1l05fpk2yql3jka321c0bdgx6mqq9pvfrg2844lbjfpbgjkmqy3w"))))
1762 (build-system r-build-system)
1763 (home-page "https://github.com/krlmlr/bindr")
1764 (synopsis "Parametrized active bindings")
1765 (description
1766 "This package provides a simple interface for creating active bindings
1767 where the bound function accepts additional arguments.")
1768 (license license:expat)))
1769
1770 (define-public r-bindrcpp
1771 (package
1772 (name "r-bindrcpp")
1773 (version "0.2.2")
1774 (source
1775 (origin
1776 (method url-fetch)
1777 (uri (cran-uri "bindrcpp" version))
1778 (sha256
1779 (base32
1780 "0rz4ibjdjsxl99ff3ha79z7cnjmilx4rx58fk9kk7ld9xc4hf4s8"))))
1781 (build-system r-build-system)
1782 (propagated-inputs
1783 `(("r-bindr" ,r-bindr)
1784 ("r-plogr" ,r-plogr)
1785 ("r-rcpp" ,r-rcpp)))
1786 (home-page "https://github.com/krlmlr/bindrcpp")
1787 (synopsis "Rcpp interface to active bindings")
1788 (description
1789 "This package provides an easy way to fill an environment with active
1790 bindings that call a C++ function.")
1791 (license license:expat)))
1792
1793 (define-public r-auc
1794 (package
1795 (name "r-auc")
1796 (version "0.3.0")
1797 (source
1798 (origin
1799 (method url-fetch)
1800 (uri (cran-uri "AUC" version))
1801 (sha256
1802 (base32
1803 "0ripcib2qz0m7rgr1kiz68nx8f6p408l1ww7j78ljqik7p3g41g7"))))
1804 (properties `((upstream-name . "AUC")))
1805 (build-system r-build-system)
1806 (home-page "https://cran.r-project.org/web/packages/AUC")
1807 (synopsis "Compute the area under the curve of selected measures")
1808 (description
1809 "This package includes functions to compute the area under the curve of
1810 selected measures: the area under the sensitivity curve (AUSEC), the area
1811 under the specificity curve (AUSPC), the area under the accuracy
1812 curve (AUACC), and the area under the receiver operating characteristic
1813 curve (AUROC). The curves can also be visualized. Support for partial areas
1814 is provided.")
1815 (license license:gpl2+)))
1816
1817 (define-public r-calibrate
1818 (package
1819 (name "r-calibrate")
1820 (version "1.7.5")
1821 (source
1822 (origin
1823 (method url-fetch)
1824 (uri (cran-uri "calibrate" version))
1825 (sha256
1826 (base32 "1s423nr176l2sc66wp7hzgqkv7c2bq8d2bjrrvrrm5qa9y3zdx1k"))))
1827 (build-system r-build-system)
1828 (propagated-inputs
1829 `(("r-mass" ,r-mass)))
1830 (home-page "https://cran.r-project.org/web/packages/calibrate")
1831 (synopsis "Calibration of scatterplot and biplot axes")
1832 (description
1833 "This is a package for drawing calibrated scales with tick marks
1834 on (non-orthogonal) variable vectors in scatterplots and biplots.")
1835 (license license:gpl2)))
1836
1837 (define-public r-shape
1838 (package
1839 (name "r-shape")
1840 (version "1.4.4")
1841 (source
1842 (origin
1843 (method url-fetch)
1844 (uri (cran-uri "shape" version))
1845 (sha256
1846 (base32
1847 "0hadk3mapkhbh8xjkiz52vxdagmmgvm15xwpzb90ikw4giyipjzl"))))
1848 (build-system r-build-system)
1849 (home-page "https://cran.r-project.org/web/packages/shape")
1850 (synopsis "Functions for plotting graphical shapes")
1851 (description
1852 "This package provides functions for plotting graphical shapes such as
1853 ellipses, circles, cylinders, arrows, ...")
1854 (license license:gpl3+)))
1855
1856 (define-public r-globaloptions
1857 (package
1858 (name "r-globaloptions")
1859 (version "0.1.1")
1860 (source
1861 (origin
1862 (method url-fetch)
1863 (uri (cran-uri "GlobalOptions" version))
1864 (sha256
1865 (base32 "0x89hfz80avq4zcskxl71i4zi0mgniqqxfrvz050aa2189wfyja2"))))
1866 (properties `((upstream-name . "GlobalOptions")))
1867 (build-system r-build-system)
1868 (home-page "https://github.com/jokergoo/GlobalOptions")
1869 (synopsis "Generate functions to get or set global options")
1870 (description
1871 "This package provides more controls on the option values such as
1872 validation and filtering on the values, making options invisible or private.")
1873 (license license:gpl2+)))
1874
1875 (define-public r-circlize
1876 (package
1877 (name "r-circlize")
1878 (version "0.4.8")
1879 (source
1880 (origin
1881 (method url-fetch)
1882 (uri (cran-uri "circlize" version))
1883 (sha256
1884 (base32
1885 "0jvr9hmxyhg0zx101iiqkrg8wfaj86kp62xpv42n2j9fkn5r1mi2"))))
1886 (build-system r-build-system)
1887 (propagated-inputs
1888 `(("r-colorspace" ,r-colorspace)
1889 ("r-globaloptions" ,r-globaloptions)
1890 ("r-shape" ,r-shape)))
1891 (home-page "https://github.com/jokergoo/circlize")
1892 (synopsis "Circular visualization")
1893 (description
1894 "Circular layout is an efficient way to visualise huge amounts of
1895 information. This package provides an implementation of circular layout
1896 generation in R as well as an enhancement of available software. Its
1897 flexibility is based on the usage of low-level graphics functions such that
1898 self-defined high-level graphics can be easily implemented by users for
1899 specific purposes. Together with the seamless connection between the powerful
1900 computational and visual environment in R, it gives users more convenience and
1901 freedom to design figures for better understanding complex patterns behind
1902 multi-dimensional data.")
1903 (license license:gpl2+)))
1904
1905 (define-public r-powerlaw
1906 (package
1907 (name "r-powerlaw")
1908 (version "0.70.4")
1909 (source
1910 (origin
1911 (method url-fetch)
1912 (uri (cran-uri "poweRlaw" version))
1913 (sha256
1914 (base32 "19zah9mx93az5lh9vicn3c8q1xb12g0w46dh5p901fbyimc32vwk"))))
1915 (properties `((upstream-name . "poweRlaw")))
1916 (build-system r-build-system)
1917 (propagated-inputs
1918 `(("r-vgam" ,r-vgam)))
1919 (home-page "https://github.com/csgillespie/poweRlaw")
1920 (synopsis "Tools for the analysis of heavy tailed distributions")
1921 (description
1922 "This package provides an implementation of maximum likelihood estimators
1923 for a variety of heavy tailed distributions, including both the discrete and
1924 continuous power law distributions. Additionally, a goodness-of-fit based
1925 approach is used to estimate the lower cut-off for the scaling region.")
1926 ;; Any of these GPL versions.
1927 (license (list license:gpl2 license:gpl3))))
1928
1929 (define-public r-compare
1930 (package
1931 (name "r-compare")
1932 (version "0.2-6")
1933 (source
1934 (origin
1935 (method url-fetch)
1936 (uri (cran-uri "compare" version))
1937 (sha256
1938 (base32
1939 "0k9zms930b5dz9gy8414li21wy0zg9x9vp7301v5cvyfi0g7xzgw"))))
1940 (build-system r-build-system)
1941 (home-page "https://cran.r-project.org/web/packages/compare")
1942 (synopsis "Comparing objects for differences")
1943 (description
1944 "This package provides functions to compare a model object to a
1945 comparison object. If the objects are not identical, the functions can be
1946 instructed to explore various modifications of the objects (e.g., sorting
1947 rows, dropping names) to see if the modified versions are identical.")
1948 (license license:gpl2+)))
1949
1950 (define-public r-dendextend
1951 (package
1952 (name "r-dendextend")
1953 (version "1.13.4")
1954 (source
1955 (origin
1956 (method url-fetch)
1957 (uri (cran-uri "dendextend" version))
1958 (sha256
1959 (base32
1960 "1pjbz6sb4pgh3d5pm53vmf3q8y6lq3hrgjd6547xxs3m63sb8mn4"))))
1961 (build-system r-build-system)
1962 (propagated-inputs
1963 `(("r-ggplot2" ,r-ggplot2)
1964 ("r-magrittr" ,r-magrittr)
1965 ("r-viridis" ,r-viridis)))
1966 (home-page "https://cran.r-project.org/web/packages/dendextend")
1967 (synopsis "Extending 'dendrogram' functionality in R")
1968 (description
1969 "This package offers a set of functions for extending @code{dendrogram}
1970 objects in R, letting you visualize and compare trees of hierarchical
1971 clusterings. You can adjust a tree's graphical parameters (the color, size,
1972 type, etc of its branches, nodes and labels) and visually and statistically
1973 compare different dendrograms to one another.")
1974 ;; Any of these versions
1975 (license (list license:gpl2 license:gpl3))))
1976
1977 (define-public r-getoptlong
1978 (package
1979 (name "r-getoptlong")
1980 (version "0.1.8")
1981 (source
1982 (origin
1983 (method url-fetch)
1984 (uri (cran-uri "GetoptLong" version))
1985 (sha256
1986 (base32
1987 "1l8xkvyl152bsyvxazsvx2sm1vkygn75x0lsg3sbg7xp6drdn3kc"))))
1988 (properties `((upstream-name . "GetoptLong")))
1989 (build-system r-build-system)
1990 (inputs
1991 `(("perl" ,perl)))
1992 (propagated-inputs
1993 `(("r-globaloptions" ,r-globaloptions)
1994 ("r-rjson" ,r-rjson)))
1995 (home-page "https://github.com/jokergoo/GetoptLong")
1996 (synopsis "Parsing command-line arguments and variable interpolation")
1997 (description
1998 "This is yet another command-line argument parser which wraps the
1999 powerful Perl module @code{Getopt::Long} and with some adaptation for easier
2000 use in R. It also provides a simple way for variable interpolation in R.")
2001 (license license:gpl2+)))
2002
2003 (define-public r-fastmatch
2004 (package
2005 (name "r-fastmatch")
2006 (version "1.1-0")
2007 (source
2008 (origin
2009 (method url-fetch)
2010 (uri (cran-uri "fastmatch" version))
2011 (sha256
2012 (base32
2013 "0z80jxkygmzn11sq0c2iz357s9bpki548lg926g85gldhfj1md90"))))
2014 (build-system r-build-system)
2015 (home-page "https://www.rforge.net/fastmatch")
2016 (synopsis "Fast match function")
2017 (description
2018 "This package provides a fast @code{match} replacement for cases that
2019 require repeated look-ups. It is slightly faster that R's built-in
2020 @code{match} function on first match against a table, but extremely fast on
2021 any subsequent lookup as it keeps the hash table in memory.")
2022 (license license:gpl2)))
2023
2024 (define-public r-ff
2025 (package
2026 (name "r-ff")
2027 (version "2.2-14")
2028 (source
2029 (origin
2030 (method url-fetch)
2031 (uri (cran-uri "ff" version))
2032 (sha256
2033 (base32
2034 "1w724q4jpzbvzpilb2ifviaxkjgk9lzwxz9gksnvicbmfa20fqqw"))))
2035 (build-system r-build-system)
2036 (propagated-inputs `(("r-bit" ,r-bit)))
2037 (home-page "http://ff.r-forge.r-project.org/")
2038 (synopsis "Memory-efficient storage of large data on disk and access functions")
2039 (description
2040 "This package provides data structures that are stored on disk but
2041 behave (almost) as if they were in RAM by transparently mapping only a section
2042 in main memory.")
2043 ;; error Architecture not supported.
2044 (supported-systems (delete "aarch64-linux" %supported-systems))
2045 (license license:gpl2)))
2046
2047 (define-public r-ffbase
2048 (package
2049 (name "r-ffbase")
2050 (version "0.12.8")
2051 (source
2052 (origin
2053 (method url-fetch)
2054 (uri (cran-uri "ffbase" version))
2055 (sha256
2056 (base32
2057 "0mjk7dkq1ginqqfvngzny747ggf9a8fd7kblq96n5ys1jrwjyqhq"))))
2058 (build-system r-build-system)
2059 (propagated-inputs
2060 `(("r-bit" ,r-bit)
2061 ("r-fastmatch" ,r-fastmatch)
2062 ("r-ff" ,r-ff)))
2063 (home-page "http://github.com/edwindj/ffbase")
2064 (synopsis "Basic statistical functions for package 'ff'")
2065 (description
2066 "This package extends the out of memory vectors of @code{ff} with
2067 statistical functions and other utilities to ease their usage.")
2068 (license license:gpl3)))
2069
2070 (define-public r-prettyunits
2071 (package
2072 (name "r-prettyunits")
2073 (version "1.1.1")
2074 (source
2075 (origin
2076 (method url-fetch)
2077 (uri (cran-uri "prettyunits" version))
2078 (sha256
2079 (base32
2080 "1ibmzgknw5896q2i6r59jz2izblxwgb29ivvjzx50pkd1jl9l6cs"))))
2081 (build-system r-build-system)
2082 (home-page "https://github.com/gaborcsardi/prettyunits")
2083 (synopsis "Pretty, human readable formatting of quantities")
2084 (description
2085 "This package provides tools for pretty, human readable formatting of
2086 quantities.")
2087 (license license:expat)))
2088
2089 (define-public r-reshape
2090 (package
2091 (name "r-reshape")
2092 (version "0.8.8")
2093 (source
2094 (origin
2095 (method url-fetch)
2096 (uri (cran-uri "reshape" version))
2097 (sha256
2098 (base32
2099 "0s6i0sqxg1vldxs6miv8mi0zydxbqzgpmzfiwkj8y7jix3yrfmad"))))
2100 (build-system r-build-system)
2101 (propagated-inputs
2102 `(("r-plyr" ,r-plyr)
2103 ("r-rcpp" ,r-rcpp)))
2104 (home-page "http://had.co.nz/reshape")
2105 (synopsis "Flexibly reshape data")
2106 (description
2107 "Flexibly restructure and aggregate data using just two functions:
2108 @code{melt} and @code{cast}. This package provides them.")
2109 (license license:expat)))
2110
2111 (define-public r-progress
2112 (package
2113 (name "r-progress")
2114 (version "1.2.2")
2115 (source
2116 (origin
2117 (method url-fetch)
2118 (uri (cran-uri "progress" version))
2119 (sha256
2120 (base32
2121 "0dgzb362641aqm8xd88iqa8jmpdm43xs0aba0d5kk6fvapnxi95l"))))
2122 (build-system r-build-system)
2123 (propagated-inputs
2124 `(("r-crayon" ,r-crayon)
2125 ("r-hms" ,r-hms)
2126 ("r-prettyunits" ,r-prettyunits)
2127 ("r-r6" ,r-r6)))
2128 (home-page "https://github.com/gaborcsardi/progress")
2129 (synopsis "Terminal progress bars")
2130 (description
2131 "This package provides configurable progress bars. They may include
2132 percentage, elapsed time, and/or the estimated completion time. They work in
2133 terminals, in Emacs ESS, RStudio, Windows Rgui, and the macOS R.app. The
2134 package also provides a C++ API, that works with or without Rcpp.")
2135 (license license:expat)))
2136
2137 (define-public r-ggally
2138 (package
2139 (name "r-ggally")
2140 (version "1.5.0")
2141 (source
2142 (origin
2143 (method url-fetch)
2144 (uri (cran-uri "GGally" version))
2145 (sha256
2146 (base32
2147 "082s321zspg5al6acigwrhg4fsrmkkk5caabg662qbcy8v6n34h6"))))
2148 (properties `((upstream-name . "GGally")))
2149 (build-system r-build-system)
2150 (inputs
2151 `(("libressl" ,libressl)))
2152 (propagated-inputs
2153 `(("r-ggplot2" ,r-ggplot2)
2154 ("r-gtable" ,r-gtable)
2155 ("r-plyr" ,r-plyr)
2156 ("r-progress" ,r-progress)
2157 ("r-rcolorbrewer" ,r-rcolorbrewer)
2158 ("r-reshape" ,r-reshape)
2159 ("r-rlang" ,r-rlang)))
2160 (home-page "https://ggobi.github.io/ggally")
2161 (synopsis "Extension to ggplot2")
2162 (description
2163 "The R package ggplot2 is a plotting system based on the grammar of
2164 graphics. GGally extends ggplot2 by adding several functions to reduce the
2165 complexity of combining geometric objects with transformed data. Some of
2166 these functions include a pairwise plot matrix, a two group pairwise plot
2167 matrix, a parallel coordinates plot, a survival plot, and several functions to
2168 plot networks.")
2169 (license license:gpl2+)))
2170
2171 (define-public r-proxy
2172 (package
2173 (name "r-proxy")
2174 (version "0.4-23")
2175 (source
2176 (origin
2177 (method url-fetch)
2178 (uri (cran-uri "proxy" version))
2179 (sha256
2180 (base32
2181 "17b6qfllqrhzrxqgx7dccffgybnkcria5a68ap5ly3plg04ypm4x"))))
2182 (build-system r-build-system)
2183 (home-page "https://cran.r-project.org/web/packages/proxy")
2184 (synopsis "Distance and similarity measures")
2185 (description
2186 "This package provides an extensible framework for the efficient
2187 calculation of auto- and cross-proximities, along with implementations of the
2188 most popular ones.")
2189 (license license:gpl2)))
2190
2191 (define-public r-sp
2192 (package
2193 (name "r-sp")
2194 (version "1.4-1")
2195 (source
2196 (origin
2197 (method url-fetch)
2198 (uri (cran-uri "sp" version))
2199 (sha256
2200 (base32 "0fbh865r4py89g6ln8bslig2vbxxwa642p5k5g02rskyhajg35lg"))))
2201 (build-system r-build-system)
2202 (propagated-inputs
2203 `(("r-lattice" ,r-lattice)))
2204 (home-page "https://cran.r-project.org/web/packages/sp")
2205 (synopsis "Classes and methods for spatial data")
2206 (description
2207 "This package provides classes and methods for spatial data; the classes
2208 document where the spatial location information resides, for 2D or 3D data.
2209 Utility functions are provided, e.g. for plotting data as maps, spatial
2210 selection, as well as methods for retrieving coordinates, for subsetting,
2211 print, summary, etc.")
2212 (license license:gpl2+)))
2213
2214 (define-public r-rmtstat
2215 (package
2216 (name "r-rmtstat")
2217 (version "0.3")
2218 (source
2219 (origin
2220 (method url-fetch)
2221 (uri (cran-uri "RMTstat" version))
2222 (sha256
2223 (base32
2224 "1nn25q4kmh9kj975sxkrpa97vh5irqrlqhwsfinbck6h6ia4rsw1"))))
2225 (properties `((upstream-name . "RMTstat")))
2226 (build-system r-build-system)
2227 (home-page "https://cran.r-project.org/web/packages/RMTstat")
2228 (synopsis "Distributions, statistics and tests derived from random matrix theory")
2229 (description
2230 "This package provides functions for working with the Tracy-Widom laws
2231 and other distributions related to the eigenvalues of large Wishart
2232 matrices.")
2233 (license license:bsd-3)))
2234
2235 (define-public r-rmpi
2236 (package
2237 (name "r-rmpi")
2238 (version "0.6-9")
2239 (source (origin
2240 (method url-fetch)
2241 (uri (cran-uri "Rmpi" version))
2242 (sha256
2243 (base32
2244 "1rhycla98hxgnnxlxxldr1x51djak7c2jjvlrv3jcsvgwp1ymqdj"))))
2245 (properties `((upstream-name . "Rmpi")))
2246 (build-system r-build-system)
2247 (arguments
2248 `(#:configure-flags '("--configure-args=\"--with-Rmpi-type=OPENMPI\"")
2249 #:phases (modify-phases %standard-phases
2250 (add-before 'install 'mpi-setup
2251 ,%openmpi-setup))))
2252 (inputs
2253 `(("openmpi" ,openmpi)))
2254 (native-inputs
2255 `(("pkg-config" ,pkg-config)))
2256 (home-page "http://www.stats.uwo.ca/faculty/yu/Rmpi")
2257 (synopsis "R interface to message-passing interface (MPI)")
2258 (description
2259 "This package provides an interface (wrapper) to MPI APIs. It also
2260 provides an interactive R manager and worker environment.")
2261 (license license:gpl2+)))
2262
2263 (define-public r-lmoments
2264 (package
2265 (name "r-lmoments")
2266 (version "1.3-1")
2267 (source
2268 (origin
2269 (method url-fetch)
2270 (uri (cran-uri "Lmoments" version))
2271 (sha256
2272 (base32
2273 "0pc63bj9a8hzr5m3yssrc4kin39fffwkl8rggs3sagzr12d4i7bw"))))
2274 (properties `((upstream-name . "Lmoments")))
2275 (build-system r-build-system)
2276 (propagated-inputs
2277 `(("r-rcpp" ,r-rcpp)
2278 ("r-rcpparmadillo" ,r-rcpparmadillo)))
2279 (home-page "http://www.tilastotiede.fi/juha_karvanen.html")
2280 (synopsis "L-moments and quantile mixtures")
2281 (description
2282 "This package contains functions to estimate L-moments and trimmed
2283 L-moments from the data. It also contains functions to estimate the
2284 parameters of the normal polynomial quantile mixture and the Cauchy polynomial
2285 quantile mixture from L-moments and trimmed L-moments.")
2286 (license license:gpl2)))
2287
2288 (define-public r-distillery
2289 (package
2290 (name "r-distillery")
2291 (version "1.0-6")
2292 (source
2293 (origin
2294 (method url-fetch)
2295 (uri (cran-uri "distillery" version))
2296 (sha256
2297 (base32
2298 "1mi3ig9jq0kd7yrwc5m37lmrw04p1b4lirnbsxi10z3n5yay4429"))))
2299 (build-system r-build-system)
2300 (home-page "https://ral.ucar.edu/staff/ericg/")
2301 (synopsis "Functions for confidence intervals and object information")
2302 (description
2303 "This package provides some very simple method functions for confidence
2304 interval calculation and to distill pertinent information from a potentially
2305 complex object; primarily used in common with the packages extRemes and
2306 SpatialVx.")
2307 (license license:gpl2+)))
2308
2309 (define-public r-extremes
2310 (package
2311 (name "r-extremes")
2312 (version "2.0-11")
2313 (source
2314 (origin
2315 (method url-fetch)
2316 (uri (cran-uri "extRemes" version))
2317 (sha256
2318 (base32
2319 "0hmgynxhzswqnhwb2sxrkczgam8c17s3vpxqc5bcz0bwczpxxyvm"))))
2320 (properties `((upstream-name . "extRemes")))
2321 (build-system r-build-system)
2322 (propagated-inputs
2323 `(("r-distillery" ,r-distillery)
2324 ("r-lmoments" ,r-lmoments)))
2325 (home-page "https://www.assessment.ucar.edu/toolkit/")
2326 (synopsis "Extreme value analysis")
2327 (description
2328 "ExtRemes is a suite of functions for carrying out analyses on the
2329 extreme values of a process of interest; be they block maxima over long blocks
2330 or excesses over a high threshold.")
2331 (license license:gpl2+)))
2332
2333 (define-public r-lmtest
2334 (package
2335 (name "r-lmtest")
2336 (version "0.9-37")
2337 (source
2338 (origin
2339 (method url-fetch)
2340 (uri (cran-uri "lmtest" version))
2341 (sha256
2342 (base32
2343 "02nasm0j2vwkhz11dxqixs23msy1s3yj0jps6949fmgh9gwjkjfx"))))
2344 (build-system r-build-system)
2345 (propagated-inputs
2346 `(("r-zoo" ,r-zoo)))
2347 (native-inputs
2348 `(("gfortran" ,gfortran)))
2349 (home-page "https://cran.r-project.org/web/packages/lmtest")
2350 (synopsis "Testing linear regression models")
2351 (description
2352 "This package provides a collection of tests, data sets, and examples for
2353 diagnostic checking in linear regression models. Furthermore, some generic
2354 tools for inference in parametric models are provided.")
2355 ;; Either version is okay
2356 (license (list license:gpl2 license:gpl3))))
2357
2358 (define-public r-idr
2359 (package
2360 (name "r-idr")
2361 (version "1.2")
2362 (source (origin
2363 (method url-fetch)
2364 (uri (cran-uri "idr" version))
2365 (sha256
2366 (base32
2367 "05nvgw1xdg670bsjjrxkgd1mrdkciccpw4krn0zcgdf2r21dzgwb"))))
2368 (build-system r-build-system)
2369 (home-page "https://cran.r-project.org/web/packages/idr/")
2370 (synopsis "Irreproducible discovery rate")
2371 (description
2372 "This is a package for estimating the copula mixture model and plotting
2373 correspondence curves in \"Measuring reproducibility of high-throughput
2374 experiments\" (2011), Annals of Applied Statistics, Vol. 5, No. 3, 1752-1779,
2375 by Li, Brown, Huang, and Bickel")
2376 (license license:gpl2+)))
2377
2378 (define-public r-inline
2379 (package
2380 (name "r-inline")
2381 (version "0.3.15")
2382 (source (origin
2383 (method url-fetch)
2384 (uri (cran-uri "inline" version))
2385 (sha256
2386 (base32
2387 "0s4wssvpan189fijahknxq5s22ww9bzmdlmyhnra748r7khky17z"))))
2388 (build-system r-build-system)
2389 (home-page "https://cran.r-project.org/web/packages/inline")
2390 (synopsis "Functions to inline C, C++, Fortran function calls from R")
2391 (description
2392 "This package provides functionality to dynamically define R functions
2393 and S4 methods with inlined C, C++ or Fortran code supporting @code{.C} and
2394 @code{.Call} calling conventions.")
2395 ;; Any version of the LGPL.
2396 (license license:lgpl3+)))
2397
2398 (define-public r-bdsmatrix
2399 (package
2400 (name "r-bdsmatrix")
2401 (version "1.3-4")
2402 (source
2403 (origin
2404 (method url-fetch)
2405 (uri (cran-uri "bdsmatrix" version))
2406 (sha256
2407 (base32
2408 "1sh6pg43rgqvips4fx0k4vmp5i9lmniix0bqwj2yq5m06gs227i5"))))
2409 (properties `((upstream-name . "bdsmatrix")))
2410 (build-system r-build-system)
2411 (home-page "https://cran.r-project.org/web/packages/bdsmatrix/")
2412 (synopsis "Routines for block diagonal symmetric matrices")
2413 (description
2414 "This package provides procedures to work with block diagonal symmetric
2415 matrices, a special case of sparse matrices.")
2416 (license license:lgpl2.0)))
2417
2418 (define-public r-bbmle
2419 (package
2420 (name "r-bbmle")
2421 (version "1.0.23.1")
2422 (source
2423 (origin
2424 (method url-fetch)
2425 (uri (cran-uri "bbmle" version))
2426 (sha256
2427 (base32
2428 "0p3l9shbr2846qmw8n0fyzf4j7gmi08aypl82jml3dwh26q1whk0"))))
2429 (build-system r-build-system)
2430 (propagated-inputs
2431 `(("r-bdsmatrix" ,r-bdsmatrix)
2432 ("r-lattice" ,r-lattice)
2433 ("r-mass" ,r-mass)
2434 ("r-matrix" ,r-matrix)
2435 ("r-mvtnorm" ,r-mvtnorm)
2436 ("r-numderiv" ,r-numderiv)))
2437 (home-page "https://cran.r-project.org/web/packages/bbmle")
2438 (synopsis "Tools for General Maximum Likelihood Estimation")
2439 (description
2440 "This package provides methods and functions for fitting maximum
2441 likelihood models in R. This package modifies and extends the @code{mle}
2442 classes in the @code{stats4} package.")
2443 ;; Any version of the GPL
2444 (license license:gpl2+)))
2445
2446 (define-public r-emdbook
2447 (package
2448 (name "r-emdbook")
2449 (version "1.3.12")
2450 (source
2451 (origin
2452 (method url-fetch)
2453 (uri (cran-uri "emdbook" version))
2454 (sha256
2455 (base32
2456 "0ls3zxxlwmdv7zn1v9i1y9zc2sn0hbgmyjvsj7zn3ajsw7wwlih6"))))
2457 (build-system r-build-system)
2458 (propagated-inputs
2459 `(("r-bbmle" ,r-bbmle)
2460 ("r-coda" ,r-coda)
2461 ("r-lattice" ,r-lattice)
2462 ("r-mass" ,r-mass)
2463 ("r-plyr" ,r-plyr)))
2464 (home-page "http://www.math.mcmaster.ca/bolker/emdbook")
2465 (synopsis "Support functions and data for \"Ecological Models and Data\"")
2466 (description
2467 "This package provides auxiliary functions and data sets for \"Ecological
2468 Models and Data\", a book presenting maximum likelihood estimation and related
2469 topics for ecologists (ISBN 978-0-691-12522-0).")
2470 ;; Any GPL version
2471 (license (list license:gpl2 license:gpl3))))
2472
2473 (define-public r-lpsolve
2474 (package
2475 (name "r-lpsolve")
2476 (version "5.6.15")
2477 (source
2478 (origin
2479 (method url-fetch)
2480 (uri (cran-uri "lpSolve" version))
2481 (sha256
2482 (base32
2483 "1fpkyjyqykwa1dxnhiky01pm09syxg169lm7hpy39bdbg10vw9s6"))))
2484 (properties `((upstream-name . "lpSolve")))
2485 (build-system r-build-system)
2486 (home-page "https://cran.r-project.org/web/packages/lpSolve")
2487 (synopsis "R interface to Lp_solve to solve linear/integer programs")
2488 (description
2489 "Lp_solve is software for solving linear, integer and mixed integer
2490 programs. This implementation supplies a \"wrapper\" function in C and some R
2491 functions that solve general linear/integer problems, assignment problems, and
2492 transportation problems.")
2493 (license license:lgpl2.0)))
2494
2495 (define-public r-limsolve
2496 (package
2497 (name "r-limsolve")
2498 (version "1.5.6")
2499 (source
2500 (origin
2501 (method url-fetch)
2502 (uri (cran-uri "limSolve" version))
2503 (sha256
2504 (base32
2505 "1829rd2cnd8qj80z9a7sgc7gx4sf3kvl5g6d2a0lqqw30f9sjzmr"))))
2506 (properties `((upstream-name . "limSolve")))
2507 (build-system r-build-system)
2508 (propagated-inputs
2509 `(("r-lpsolve" ,r-lpsolve)
2510 ("r-mass" ,r-mass)
2511 ("r-quadprog" ,r-quadprog)))
2512 (native-inputs `(("gfortran" ,gfortran)))
2513 (home-page "https://cran.r-project.org/web/packages/limSolve")
2514 (synopsis "Solving linear inverse models")
2515 (description
2516 "This package provides functions that:
2517
2518 @enumerate
2519 @item find the minimum/maximum of a linear or quadratic function,
2520 @item sample an underdetermined or overdetermined system,
2521 @item solve a linear system Ax=B for the unknown x.
2522 @end enumerate
2523
2524 It includes banded and tridiagonal linear systems. The package calls Fortran
2525 functions from LINPACK.")
2526 ;; Any GPL version.
2527 (license (list license:gpl2+ license:gpl3+))))
2528
2529 (define-public r-fitdistrplus
2530 (package
2531 (name "r-fitdistrplus")
2532 (version "1.0-14")
2533 (source
2534 (origin
2535 (method url-fetch)
2536 (uri (cran-uri "fitdistrplus" version))
2537 (sha256
2538 (base32
2539 "10q08wsv8v3w7797jdvvv60bgrf1bi6438wf0jcqv81ays82a245"))))
2540 (build-system r-build-system)
2541 (propagated-inputs
2542 `(("r-mass" ,r-mass)
2543 ("r-npsurv" ,r-npsurv)
2544 ("r-survival" ,r-survival)))
2545 (home-page "http://riskassessment.r-forge.r-project.org")
2546 (synopsis "Fitting a parametric distribution from data")
2547 (description
2548 "This package extends the @code{fitdistr} function of the MASS package
2549 with several functions to help the fit of a parametric distribution to
2550 non-censored or censored data. Censored data may contain left-censored,
2551 right-censored and interval-censored values, with several lower and upper
2552 bounds. In addition to @dfn{maximum likelihood estimation} (MLE), the package
2553 provides moment matching (MME), quantile matching (QME) and maximum
2554 goodness-of-fit estimation (MGE) methods (available only for non-censored
2555 data). Weighted versions of MLE, MME and QME are available.")
2556 (license license:gpl2+)))
2557
2558 (define-public r-energy
2559 (package
2560 (name "r-energy")
2561 (version "1.7-7")
2562 (source
2563 (origin
2564 (method url-fetch)
2565 (uri (cran-uri "energy" version))
2566 (sha256
2567 (base32
2568 "13wnx5nwk7nsv7vf5sxhz4y0rxrnzm76ldgywk1bxrz67srqzf37"))))
2569 (build-system r-build-system)
2570 (propagated-inputs
2571 `(("r-boot" ,r-boot)
2572 ("r-rcpp" ,r-rcpp)))
2573 (home-page "https://cran.r-project.org/web/packages/energy")
2574 (synopsis "Multivariate inference via the energy of data")
2575 (description
2576 "This package provides e-statistics (energy) tests and statistics for
2577 multivariate and univariate inference, including distance correlation,
2578 one-sample, two-sample, and multi-sample tests for comparing multivariate
2579 distributions, are implemented. Measuring and testing multivariate
2580 independence based on distance correlation, partial distance correlation,
2581 multivariate goodness-of-fit tests, clustering based on energy distance,
2582 testing for multivariate normality, distance components (disco) for
2583 non-parametric analysis of structured data, and other energy
2584 statistics/methods are implemented.")
2585 (license license:gpl2+)))
2586
2587 (define-public r-suppdists
2588 (package
2589 (name "r-suppdists")
2590 (version "1.1-9.5")
2591 (source
2592 (origin
2593 (method url-fetch)
2594 (uri (cran-uri "SuppDists" version))
2595 (sha256
2596 (base32
2597 "01j6p94m1g363nph2158fq2rmd6z3h5dvcv6aidh2d6syw131xak"))))
2598 (properties `((upstream-name . "SuppDists")))
2599 (build-system r-build-system)
2600 (home-page "https://cran.r-project.org/web/packages/SuppDists")
2601 (synopsis "Supplementary distributions")
2602 (description
2603 "This package provides ten distributions supplementing those built into
2604 R. Inverse Gauss, Kruskal-Wallis, Kendall's Tau, Friedman's chi squared,
2605 Spearman's rho, maximum F ratio, the Pearson product moment correlation
2606 coefficient, Johnson distributions, normal scores and generalized
2607 hypergeometric distributions. In addition two random number generators of
2608 George Marsaglia are included.")
2609 (license license:gpl2+)))
2610
2611 (define-public r-ksamples
2612 (package
2613 (name "r-ksamples")
2614 (version "1.2-9")
2615 (source
2616 (origin
2617 (method url-fetch)
2618 (uri (cran-uri "kSamples" version))
2619 (sha256
2620 (base32
2621 "1zs22p68d6320kcylisnk0b5wmpapxkyz15py09czxzw7npw8gms"))))
2622 (properties `((upstream-name . "kSamples")))
2623 (build-system r-build-system)
2624 (propagated-inputs
2625 `(("r-suppdists" ,r-suppdists)))
2626 (home-page "https://cran.r-project.org/web/packages/kSamples")
2627 (synopsis "K-Sample rank tests and their combinations")
2628 (description
2629 "This package provides tools to compares k samples using the
2630 Anderson-Darling test, Kruskal-Wallis type tests with different rank score
2631 criteria, Steel's multiple comparison test, and the Jonckheere-Terpstra (JT)
2632 test. It computes asymptotic, simulated or (limited) exact P-values, all
2633 valid under randomization, with or without ties, or conditionally under random
2634 sampling from populations, given the observed tie pattern. Except for Steel's
2635 test and the JT test it also combines these tests across several blocks of
2636 samples.")
2637 (license license:gpl2+)))
2638
2639 (define-public r-cvst
2640 (package
2641 (name "r-cvst")
2642 (version "0.2-2")
2643 (source
2644 (origin
2645 (method url-fetch)
2646 (uri (cran-uri "CVST" version))
2647 (sha256
2648 (base32
2649 "05l3yzkfrbds09ah9cdwn2sn4ryhq78lz33ryzrgkv176jc8qjw5"))))
2650 (properties `((upstream-name . "CVST")))
2651 (build-system r-build-system)
2652 (propagated-inputs
2653 `(("r-kernlab" ,r-kernlab)
2654 ("r-matrix" ,r-matrix)))
2655 (home-page "https://cran.r-project.org/web/packages/CVST")
2656 (synopsis "Fast cross-validation via sequential testing")
2657 (description
2658 "This package implements the fast cross-validation via sequential
2659 testing (CVST) procedure. CVST is an improved cross-validation procedure
2660 which uses non-parametric testing coupled with sequential analysis to
2661 determine the best parameter set on linearly increasing subsets of the data.
2662 Additionally to the CVST the package contains an implementation of the
2663 ordinary k-fold cross-validation with a flexible and powerful set of helper
2664 objects and methods to handle the overall model selection process. The
2665 implementations of the Cochran's Q test with permutations and the sequential
2666 testing framework of Wald are generic and can therefore also be used in other
2667 contexts.")
2668 (license license:gpl2+)))
2669
2670 (define-public r-squarem
2671 (package
2672 (name "r-squarem")
2673 (version "2020.2")
2674 (source
2675 (origin
2676 (method url-fetch)
2677 (uri (cran-uri "SQUAREM" version))
2678 (sha256
2679 (base32
2680 "1j6sa93xjvynnzx9jx79a3fysbykmbqyknknsqif5bcha6xp6cvf"))))
2681 (properties `((upstream-name . "SQUAREM")))
2682 (build-system r-build-system)
2683 (home-page "https://coah.jhu.edu/people/Faculty_personal_Pages/Varadhan.html")
2684 (synopsis "Squared Extrapolation Methods for Accelerating EM-Like Monotone Algorithms")
2685 (description
2686 "This package provides algorithms for accelerating the convergence of
2687 slow, monotone sequences from smooth, contraction mapping such as the EM
2688 algorithm. It can be used to accelerate any smooth, linearly convergent
2689 acceleration scheme. A tutorial style introduction to this package is
2690 available in a vignette.")
2691 (license license:gpl2+)))
2692
2693 (define-public r-lava
2694 (package
2695 (name "r-lava")
2696 (version "1.6.7")
2697 (source
2698 (origin
2699 (method url-fetch)
2700 (uri (cran-uri "lava" version))
2701 (sha256
2702 (base32
2703 "0ffzxbb8pvfh1m6j61az4ga37snyhylq2941fyc76w7w9i2sixv3"))))
2704 (build-system r-build-system)
2705 (propagated-inputs
2706 `(("r-numderiv" ,r-numderiv)
2707 ("r-squarem" ,r-squarem)
2708 ("r-survival" ,r-survival)))
2709 (home-page "https://github.com/kkholst/lava")
2710 (synopsis "Latent variable models")
2711 (description
2712 "This package provides tools for the estimation and simulation of latent
2713 variable models.")
2714 (license license:gpl3)))
2715
2716 (define-public r-drr
2717 (package
2718 (name "r-drr")
2719 (version "0.0.4")
2720 (source
2721 (origin
2722 (method url-fetch)
2723 (uri (cran-uri "DRR" version))
2724 (sha256
2725 (base32
2726 "1y70si1gig4l7jx5jiqsqliyywfsvimkx53x3zh1lc3yj2j6bqwk"))))
2727 (properties `((upstream-name . "DRR")))
2728 (build-system r-build-system)
2729 (propagated-inputs
2730 `(("r-cvst" ,r-cvst)
2731 ("r-kernlab" ,r-kernlab)
2732 ("r-matrix" ,r-matrix)))
2733 (home-page "https://cran.r-project.org/web/packages/DRR")
2734 (synopsis "Dimensionality reduction via regression")
2735 (description
2736 "This package provides an implementation of dimensionality reduction via
2737 regression using Kernel Ridge Regression.")
2738 (license license:gpl3)))
2739
2740 (define-public r-prodlim
2741 (package
2742 (name "r-prodlim")
2743 (version "2019.11.13")
2744 (source
2745 (origin
2746 (method url-fetch)
2747 (uri (cran-uri "prodlim" version))
2748 (sha256
2749 (base32
2750 "03wvh3kirp1prac5nky6a5whs97rvaf4hc27x0fnh51sa17r42b8"))))
2751 (build-system r-build-system)
2752 (propagated-inputs
2753 `(("r-kernsmooth" ,r-kernsmooth)
2754 ("r-lava" ,r-lava)
2755 ("r-rcpp" ,r-rcpp)
2756 ("r-survival" ,r-survival)))
2757 (home-page "https://cran.r-project.org/web/packages/prodlim")
2758 (synopsis "Product-limit estimation for censored event history analysis")
2759 (description
2760 "This package provides a fast and user-friendly implementation of
2761 nonparametric estimators for censored event history (survival) analysis with
2762 the Kaplan-Meier and Aalen-Johansen methods.")
2763 (license license:gpl2+)))
2764
2765 (define-public r-dimred
2766 (package
2767 (name "r-dimred")
2768 (version "0.2.3")
2769 (source
2770 (origin
2771 (method url-fetch)
2772 (uri (cran-uri "dimRed" version))
2773 (sha256
2774 (base32
2775 "110d6y83ib1nfpxzmvkvb3fn3brskwkdbsk4dqrdrswrd4znxrg6"))))
2776 (properties `((upstream-name . "dimRed")))
2777 (build-system r-build-system)
2778 (propagated-inputs
2779 `(("r-drr" ,r-drr)
2780 ("r-magrittr" ,r-magrittr)))
2781 (home-page "https://github.com/gdkrmr/dimRed")
2782 (synopsis "Framework for dimensionality reduction")
2783 (description
2784 "This package provides a collection of dimensionality reduction
2785 techniques from R packages and provides a common interface for calling the
2786 methods.")
2787 (license license:gpl3)))
2788
2789 (define-public r-timedate
2790 (package
2791 (name "r-timedate")
2792 (version "3043.102")
2793 (source
2794 (origin
2795 (method url-fetch)
2796 (uri (cran-uri "timeDate" version))
2797 (sha256
2798 (base32
2799 "0wvl5pq261rvbgly7vilk3x3m9xk3ly6il1i5scwdf6srl1vlz1p"))))
2800 (properties `((upstream-name . "timeDate")))
2801 (build-system r-build-system)
2802 (home-page "https://www.rmetrics.org")
2803 (synopsis "Chronological and calendar objects")
2804 (description
2805 "This package provides an environment for teaching \"Financial
2806 Engineering and Computational Finance\" and for managing chronological and
2807 calendar objects.")
2808 (license license:gpl2+)))
2809
2810 (define-public r-magic
2811 (package
2812 (name "r-magic")
2813 (version "1.5-9")
2814 (source
2815 (origin
2816 (method url-fetch)
2817 (uri (cran-uri "magic" version))
2818 (sha256
2819 (base32
2820 "0snmdh6vk0p6ar1swsihisinxrx7l8371dri5lk0z24ysgr5w7gs"))))
2821 (build-system r-build-system)
2822 (propagated-inputs
2823 `(("r-abind" ,r-abind)))
2824 (home-page "https://github.com/RobinHankin/magic.git")
2825 (synopsis "Create and investigate magic squares")
2826 (description
2827 "This package provides a collection of efficient, vectorized algorithms
2828 for the creation and investigation of magic squares and hypercubes, including
2829 a variety of functions for the manipulation and analysis of arbitrarily
2830 dimensioned arrays.")
2831 (license license:gpl2)))
2832
2833 (define-public r-rmysql
2834 (package
2835 (name "r-rmysql")
2836 (version "0.10.20")
2837 (source
2838 (origin
2839 (method url-fetch)
2840 (uri (cran-uri "RMySQL" version))
2841 (sha256
2842 (base32
2843 "0lv9m6zpm8dgv7yixr6xhw379vbq45d7n7gkrmjrppdj8vcih77i"))))
2844 (properties `((upstream-name . "RMySQL")))
2845 (build-system r-build-system)
2846 (inputs
2847 `(("mariadb" ,mariadb "lib")
2848 ("mariadb-dev" ,mariadb "dev")
2849 ("zlib" ,zlib)))
2850 (propagated-inputs
2851 `(("r-dbi" ,r-dbi)))
2852 (home-page "https://github.com/r-dbi/RMySQL")
2853 (synopsis "Database interface and MySQL driver for R")
2854 (description
2855 "This package provides a DBI interface to MySQL / MariaDB. The RMySQL
2856 package contains an old implementation based on legacy code from S-PLUS which
2857 is being phased out. A modern MySQL client based on Rcpp is available from
2858 the RMariaDB package.")
2859 (license license:gpl2)))
2860
2861 (define-public r-rpostgresql
2862 (package
2863 (name "r-rpostgresql")
2864 (version "0.6-2")
2865 (source
2866 (origin
2867 (method url-fetch)
2868 (uri (cran-uri "RPostgreSQL" version))
2869 (sha256
2870 (base32
2871 "1mdhw5821v2h7hpa53v10wz53k4i90r0vb6a3dia5gq8f9j1h088"))))
2872 (properties `((upstream-name . "RPostgreSQL")))
2873 (build-system r-build-system)
2874 (inputs
2875 `(("postgresql" ,postgresql)))
2876 (propagated-inputs
2877 `(("r-dbi" ,r-dbi)))
2878 (home-page "https://github.com/tomoakin/RPostgreSQL")
2879 (synopsis "R interface to the PostgreSQL database system")
2880 (description
2881 "This package provides a Database Interface (DBI) compliant driver for R
2882 to access PostgreSQL database systems.")
2883 ;; The whole package is released under GPL version 2. It includes code
2884 ;; under the PostgreSQL license.
2885 (license license:gpl2)))
2886
2887 (define-public r-linprog
2888 (package
2889 (name "r-linprog")
2890 (version "0.9-2")
2891 (source
2892 (origin
2893 (method url-fetch)
2894 (uri (cran-uri "linprog" version))
2895 (sha256
2896 (base32
2897 "1ki14an0pmhs2mnmfjjvdzd76pshiyvi659zf7hqvqwj0viv4dw9"))))
2898 (build-system r-build-system)
2899 (propagated-inputs `(("r-lpsolve" ,r-lpsolve)))
2900 (home-page "http://linprog.r-forge.r-project.org/")
2901 (synopsis "Linear programming and optimization")
2902 (description
2903 "This package can be used to solve Linear Programming / Linear
2904 Optimization problems by using the simplex algorithm.")
2905 (license license:gpl2+)))
2906
2907 (define-public r-geometry
2908 (package
2909 (name "r-geometry")
2910 (version "0.4.5")
2911 (source
2912 (origin
2913 (method url-fetch)
2914 (uri (cran-uri "geometry" version))
2915 (sha256
2916 (base32
2917 "1n10l8ax3783v3lgaacb15qsn8b3f0wpmhg3k39j31s6ciyd3vcg"))))
2918 (build-system r-build-system)
2919 (propagated-inputs
2920 `(("r-magic" ,r-magic)
2921 ("r-linprog" ,r-linprog)
2922 ("r-lpsolve" ,r-lpsolve)
2923 ("r-rcpp" ,r-rcpp)
2924 ("r-rcppprogress" ,r-rcppprogress)))
2925 (home-page "http://geometry.r-forge.r-project.org/")
2926 (synopsis "Mesh generation and surface tesselation")
2927 (description
2928 "This package makes the qhull library available in R, in a similar manner
2929 as in Octave. Qhull computes convex hulls, Delaunay triangulations, halfspace
2930 intersections about a point, Voronoi diagrams, furthest-site Delaunay
2931 triangulations, and furthest-site Voronoi diagrams. It runs in 2-d, 3-d, 4-d,
2932 and higher dimensions. It implements the Quickhull algorithm for computing
2933 the convex hull. Qhull does not support constrained Delaunay triangulations,
2934 or mesh generation of non-convex objects, but the package does include some R
2935 functions that allow for this. Currently the package only gives access to
2936 Delaunay triangulation and convex hull computation.")
2937 ;; The Qhull sources are included and are distributed under a custom
2938 ;; non-copyleft license. The R sources are released under GPL version 2.
2939 (license (list license:gpl2
2940 (license:non-copyleft "http://www.qhull.org/COPYING.txt")))))
2941
2942 (define-public r-ddalpha
2943 (package
2944 (name "r-ddalpha")
2945 (version "1.3.11")
2946 (source
2947 (origin
2948 (method url-fetch)
2949 (uri (cran-uri "ddalpha" version))
2950 (sha256
2951 (base32
2952 "1sdnb47r534nh138zk3a6b2mgi74nvshc7p5m304vjs9jlx4l2y3"))))
2953 (build-system r-build-system)
2954 (propagated-inputs
2955 `(("r-bh" ,r-bh)
2956 ("r-class" ,r-class)
2957 ("r-geometry" ,r-geometry)
2958 ("r-mass" ,r-mass)
2959 ("r-rcpp" ,r-rcpp)
2960 ("r-robustbase" ,r-robustbase)
2961 ("r-sfsmisc" ,r-sfsmisc)))
2962 (native-inputs
2963 `(("gfortran" ,gfortran)))
2964 (home-page "https://cran.r-project.org/web/packages/ddalpha")
2965 (synopsis "Depth-Based classification and calculation of data depth")
2966 (description
2967 "This package contains procedures for depth-based supervised learning,
2968 which are entirely non-parametric, in particular the DDalpha-procedure (Lange,
2969 Mosler and Mozharovskyi, 2014). The training data sample is transformed by a
2970 statistical depth function to a compact low-dimensional space, where the final
2971 classification is done. It also offers an extension to functional data and
2972 routines for calculating certain notions of statistical depth functions. 50
2973 multivariate and 5 functional classification problems are included.")
2974 (license license:gpl2)))
2975
2976 (define-public r-gower
2977 (package
2978 (name "r-gower")
2979 (version "0.2.1")
2980 (source
2981 (origin
2982 (method url-fetch)
2983 (uri (cran-uri "gower" version))
2984 (sha256
2985 (base32
2986 "007ivwn1nagpi26qq8iih1c2l61c53glvv60n90hi341ry8vwgxg"))))
2987 (build-system r-build-system)
2988 (home-page "https://github.com/markvanderloo/gower")
2989 (synopsis "Gower's distance")
2990 (description
2991 "This package provides tools to compute Gower's distance (or similarity)
2992 coefficient between records, and to compute the top-n matches between records.
2993 Core algorithms are executed in parallel on systems supporting OpenMP.")
2994 (license license:gpl3)))
2995
2996 (define-public r-rcpproll
2997 (package
2998 (name "r-rcpproll")
2999 (version "0.3.0")
3000 (source
3001 (origin
3002 (method url-fetch)
3003 (uri (cran-uri "RcppRoll" version))
3004 (sha256
3005 (base32
3006 "0srzfhzkk42kzrdjnhbb37946jp1p688rgysy6k3i2is8jb21zyb"))))
3007 (properties `((upstream-name . "RcppRoll")))
3008 (build-system r-build-system)
3009 (propagated-inputs
3010 `(("r-rcpp" ,r-rcpp)))
3011 (home-page "https://cran.r-project.org/web/packages/RcppRoll")
3012 (synopsis "Efficient rolling and windowed operations")
3013 (description
3014 "This package provides fast and efficient routines for common rolling /
3015 windowed operations. Routines for the efficient computation of windowed mean,
3016 median, sum, product, minimum, maximum, standard deviation and variance are
3017 provided.")
3018 (license license:gpl2+)))
3019
3020 (define-public r-ipred
3021 (package
3022 (name "r-ipred")
3023 (version "0.9-9")
3024 (source
3025 (origin
3026 (method url-fetch)
3027 (uri (cran-uri "ipred" version))
3028 (sha256
3029 (base32
3030 "0vs1hqfx7yd0xdbmfsf2gim7spkni0845cj6gswn0nhdfdq7ma0d"))))
3031 (build-system r-build-system)
3032 (propagated-inputs
3033 `(("r-class" ,r-class)
3034 ("r-mass" ,r-mass)
3035 ("r-nnet" ,r-nnet)
3036 ("r-prodlim" ,r-prodlim)
3037 ("r-rpart" ,r-rpart)
3038 ("r-survival" ,r-survival)))
3039 (home-page "https://cran.r-project.org/web/packages/ipred")
3040 (synopsis "Improved predictors")
3041 (description
3042 "This package provides improved predictive models by indirect
3043 classification and bagging for classification, regression and survival
3044 problems as well as resampling based estimators of prediction error.")
3045 (license license:gpl2+)))
3046
3047 (define-public r-psych
3048 (package
3049 (name "r-psych")
3050 (version "1.9.12.31")
3051 (source
3052 (origin
3053 (method url-fetch)
3054 (uri (cran-uri "psych" version))
3055 (sha256
3056 (base32
3057 "02i9p6appf15hjdsi58g39bzs9as40f9qhy8m7ki30hd1fz1vrr5"))))
3058 (build-system r-build-system)
3059 (propagated-inputs
3060 `(("r-lattice" ,r-lattice)
3061 ("r-mnormt" ,r-mnormt)
3062 ("r-nlme" ,r-nlme)))
3063 (home-page "https://cran.r-project.org/web/packages/psych/")
3064 (synopsis "Procedures for psychological, psychometric, and personality research")
3065 (description
3066 "This package provides a general purpose toolbox for personality,
3067 psychometric theory and experimental psychology. Functions are primarily for
3068 multivariate analysis and scale construction using factor analysis, principal
3069 component analysis, cluster analysis and reliability analysis, although others
3070 provide basic descriptive statistics. Item Response Theory is done using
3071 factor analysis of tetrachoric and polychoric correlations. Functions for
3072 analyzing data at multiple levels include within and between group statistics,
3073 including correlations and factor analysis. Functions for simulating and
3074 testing particular item and test structures are included. Several functions
3075 serve as a useful front end for structural equation modeling. Graphical
3076 displays of path diagrams, factor analysis and structural equation models are
3077 created using basic graphics.")
3078 (license license:gpl2+)))
3079
3080 (define-public r-generics
3081 (package
3082 (name "r-generics")
3083 (version "0.0.2")
3084 (source
3085 (origin
3086 (method url-fetch)
3087 (uri (cran-uri "generics" version))
3088 (sha256
3089 (base32
3090 "0xk1xhpy7gpv3pvaygzhpfdxj72zmb38pb4nscfyg2ff36vx3cvi"))))
3091 (build-system r-build-system)
3092 (home-page "https://github.com/r-lib/generics")
3093 (synopsis "Common S3 generics not provided by base R methods")
3094 (description
3095 "In order to reduce potential package dependencies and conflicts,
3096 generics provides a number of commonly used S3 generics that are not provided
3097 by base R methods related to model fitting.")
3098 (license license:gpl2)))
3099
3100 (define-public r-broom
3101 (package
3102 (name "r-broom")
3103 (version "0.5.5")
3104 (source
3105 (origin
3106 (method url-fetch)
3107 (uri (cran-uri "broom" version))
3108 (sha256
3109 (base32
3110 "0n7zd64263kfavdi28rl2bxrsa00c3m4vjhhjdrfwvvmrcxj39fx"))))
3111 (build-system r-build-system)
3112 (propagated-inputs
3113 `(("r-backports" ,r-backports)
3114 ("r-dplyr" ,r-dplyr)
3115 ("r-generics" ,r-generics)
3116 ("r-nlme" ,r-nlme)
3117 ("r-purrr" ,r-purrr)
3118 ("r-reshape2" ,r-reshape2)
3119 ("r-stringr" ,r-stringr)
3120 ("r-tibble" ,r-tibble)
3121 ("r-tidyr" ,r-tidyr)))
3122 (home-page "https://github.com/tidyverse/broom")
3123 (synopsis "Convert statistical analysis objects into tidy data frames")
3124 (description
3125 "This package provides tools to convert statistical analysis objects from
3126 R into tidy data frames, so that they can more easily be combined, reshaped
3127 and otherwise processed with tools like @code{dplyr}, @code{tidyr} and
3128 @code{ggplot2}. The package provides three S3 generics: @code{tidy}, which
3129 summarizes a model's statistical findings such as coefficients of a
3130 regression; @code{augment}, which adds columns to the original data such as
3131 predictions, residuals and cluster assignments; and @code{glance}, which
3132 provides a one-row summary of model-level statistics.")
3133 (license license:expat)))
3134
3135 (define-public r-recipes
3136 (package
3137 (name "r-recipes")
3138 (version "0.1.10")
3139 (source
3140 (origin
3141 (method url-fetch)
3142 (uri (cran-uri "recipes" version))
3143 (sha256
3144 (base32
3145 "11f96aanrzi2v6cn49fhvf9y4cmhra63wcy6nvpv6hcfaqqmwd2g"))))
3146 (build-system r-build-system)
3147 (propagated-inputs
3148 `(("r-dplyr" ,r-dplyr)
3149 ("r-generics" ,r-generics)
3150 ("r-glue" ,r-glue)
3151 ("r-gower" ,r-gower)
3152 ("r-ipred" ,r-ipred)
3153 ("r-lubridate" ,r-lubridate)
3154 ("r-magrittr" ,r-magrittr)
3155 ("r-matrix" ,r-matrix)
3156 ("r-purrr" ,r-purrr)
3157 ("r-rlang" ,r-rlang)
3158 ("r-tibble" ,r-tibble)
3159 ("r-tidyr" ,r-tidyr)
3160 ("r-tidyselect" ,r-tidyselect)
3161 ("r-timedate" ,r-timedate)
3162 ("r-withr" ,r-withr)))
3163 (native-inputs
3164 `(("r-knitr" ,r-knitr)))
3165 (home-page "https://github.com/topepo/recipes")
3166 (synopsis "Preprocessing tools to create design matrices")
3167 (description
3168 "Recipes is an extensible framework to create and preprocess design
3169 matrices. Recipes consist of one or more data manipulation and analysis
3170 \"steps\". Statistical parameters for the steps can be estimated from an
3171 initial data set and then applied to other data sets. The resulting design
3172 matrices can then be used as inputs into statistical or machine learning
3173 models.")
3174 (license license:gpl2)))
3175
3176 (define-public r-pdist
3177 (package
3178 (name "r-pdist")
3179 (version "1.2")
3180 (source
3181 (origin
3182 (method url-fetch)
3183 (uri (cran-uri "pdist" version))
3184 (sha256
3185 (base32
3186 "18nd3mgad11f2zmwcp0w3sxlch4a9y6wp8dfdyzvjn7y4b4bq0dd"))))
3187 (build-system r-build-system)
3188 (home-page "https://github.com/jeffwong/pdist")
3189 (synopsis "Partitioned distance function")
3190 (description
3191 "Pdist computes the euclidean distance between rows of a matrix X and
3192 rows of another matrix Y. Previously, this could be done by binding the two
3193 matrices together and calling @code{dist}, but this creates unnecessary
3194 computation by computing the distances between a row of X and another row of
3195 X, and likewise for Y. Pdist strictly computes distances across the two
3196 matrices, not within the same matrix, making computations significantly faster
3197 for certain use cases.")
3198 (license license:gpl3+)))
3199
3200 (define-public r-ggrepel
3201 (package
3202 (name "r-ggrepel")
3203 (version "0.8.2")
3204 (source
3205 (origin
3206 (method url-fetch)
3207 (uri (cran-uri "ggrepel" version))
3208 (sha256
3209 (base32
3210 "1qaifn3dazdqbqlii210xhw7yf142iw7g9p2axmmxbz90p0by08d"))))
3211 (build-system r-build-system)
3212 (propagated-inputs
3213 `(("r-ggplot2" ,r-ggplot2)
3214 ("r-rcpp" ,r-rcpp)
3215 ("r-scales" ,r-scales)))
3216 (native-inputs
3217 `(("r-knitr" ,r-knitr))) ; for vignettes
3218 (home-page "http://github.com/slowkow/ggrepel")
3219 (synopsis "Repulsive text and label geometries for ggplot2")
3220 (description
3221 "This package provides text and label geometries for ggplot2 that help to
3222 avoid overlapping text labels. Labels repel away from each other and away
3223 from the data points.")
3224 (license license:gpl3)))
3225
3226 (define-public r-corrplot
3227 (package
3228 (name "r-corrplot")
3229 (version "0.84")
3230 (source
3231 (origin
3232 (method url-fetch)
3233 (uri (cran-uri "corrplot" version))
3234 (sha256
3235 (base32
3236 "1k03qd8db7pwg1v318xapx5mpiypiz2n07qr19c4b45diri5xkhd"))))
3237 (build-system r-build-system)
3238 (home-page "https://github.com/taiyun/corrplot")
3239 (synopsis "Visualization of a correlation matrix")
3240 (description
3241 "This package provides a graphical display of a correlation matrix or
3242 general matrix. It also contains some algorithms to do matrix reordering. In
3243 addition, corrplot is good at details, including choosing color, text labels,
3244 color labels, layout, etc.")
3245 ;; Any version of the GPL
3246 (license license:gpl2+)))
3247
3248 (define-public r-stringdist
3249 (package
3250 (name "r-stringdist")
3251 (version "0.9.5.5")
3252 (source
3253 (origin
3254 (method url-fetch)
3255 (uri (cran-uri "stringdist" version))
3256 (sha256
3257 (base32 "1dqfakclzaf878x7mhwmqrcpcql2h9cv19fz5f3ygpajf3si5kqi"))))
3258 (build-system r-build-system)
3259 (home-page "https://github.com/markvanderloo/stringdist")
3260 (synopsis "Approximate string matching and string distance functions")
3261 (description
3262 "This package implements an approximate string matching version of R's
3263 native @code{match} function. It can calculate various string distances based
3264 on edits (Damerau-Levenshtein, Hamming, Levenshtein, optimal sting alignment),
3265 qgrams (q- gram, cosine, jaccard distance) or heuristic metrics (Jaro,
3266 Jaro-Winkler). An implementation of soundex is provided as well. Distances
3267 can be computed between character vectors while taking proper care of encoding
3268 or between integer vectors representing generic sequences.")
3269 (license license:gpl3+)))
3270
3271 (define-public r-ucminf
3272 (package
3273 (name "r-ucminf")
3274 (version "1.1-4")
3275 (source
3276 (origin
3277 (method url-fetch)
3278 (uri (cran-uri "ucminf" version))
3279 (sha256
3280 (base32
3281 "01vggwg1w71k98qs6fhb0x1843vi322mf4g3hbclks94kcpkisx2"))))
3282 (build-system r-build-system)
3283 (native-inputs `(("gfortran" ,gfortran)))
3284 (home-page "https://cran.r-project.org/web/packages/ucminf/")
3285 (synopsis "General-purpose unconstrained non-linear optimization")
3286 (description
3287 "This package provides an implementation of an algorithm for
3288 general-purpose unconstrained non-linear optimization. The algorithm is of
3289 quasi-Newton type with BFGS updating of the inverse Hessian and soft line
3290 search with a trust region type monitoring of the input to the line search
3291 algorithm. The interface of @code{ucminf} is designed for easy interchange
3292 with the package @code{optim}.")
3293 (license license:gpl2+)))
3294
3295 (define-public r-ordinal
3296 (package
3297 (name "r-ordinal")
3298 (version "2019.12-10")
3299 (source
3300 (origin
3301 (method url-fetch)
3302 (uri (cran-uri "ordinal" version))
3303 (sha256
3304 (base32
3305 "09bpmjmbf4x82kgf6bm4bkncq2apdv9mk20zj4zgma2jx2vyfhbs"))))
3306 (build-system r-build-system)
3307 (propagated-inputs
3308 `(("r-mass" ,r-mass)
3309 ("r-matrix" ,r-matrix)
3310 ("r-numderiv" ,r-numderiv)
3311 ("r-ucminf" ,r-ucminf)))
3312 (home-page "https://github.com/runehaubo/ordinal")
3313 (synopsis "Regression models for ordinal data")
3314 (description
3315 "This package provides an implementation of cumulative link (mixed)
3316 models also known as ordered regression models, proportional odds models,
3317 proportional hazards models for grouped survival times and ordered models.
3318 Estimation is via maximum likelihood and mixed models are fitted with the
3319 Laplace approximation and adaptive Gauss-Hermite quadrature.")
3320 (license license:gpl2+)))
3321
3322 (define-public r-jomo
3323 (package
3324 (name "r-jomo")
3325 (version "2.6-10")
3326 (source
3327 (origin
3328 (method url-fetch)
3329 (uri (cran-uri "jomo" version))
3330 (sha256
3331 (base32
3332 "1k9l4290g350zbw1pjs871q9bxj3j2h1dilxpp06v4wy4n7d8qs0"))))
3333 (build-system r-build-system)
3334 (propagated-inputs
3335 `(("r-lme4" ,r-lme4)
3336 ("r-mass" ,r-mass)
3337 ("r-ordinal" ,r-ordinal)
3338 ("r-survival" ,r-survival)))
3339 (home-page "https://cran.r-project.org/web/packages/jomo/")
3340 (synopsis "Multilevel Joint Modelling Multiple Imputation")
3341 (description
3342 "Similarly to Schafer's package pan, jomo is a package for multilevel
3343 joint modelling multiple imputation @url{Carpenter and Kenward (2013),
3344 http://doi.org/10.1002/9781119942283}. Novel aspects of jomo are the
3345 possibility of handling binary and categorical data through latent normal
3346 variables, the option to use cluster-specific covariance matrices and to
3347 impute compatibly with the substantive model.")
3348 (license license:gpl2)))
3349
3350 (define-public r-pan
3351 (package
3352 (name "r-pan")
3353 (version "1.6")
3354 (source
3355 (origin
3356 (method url-fetch)
3357 (uri (cran-uri "pan" version))
3358 (sha256
3359 (base32
3360 "1dk3jjj826p7xrz10qz04vyc068xnypg7bp0pj4c32z3da0xzh5d"))))
3361 (build-system r-build-system)
3362 (native-inputs `(("gfortran" ,gfortran)))
3363 (home-page "https://cran.r-project.org/web/packages/pan/")
3364 (synopsis "Multiple imputation for multivariate panel or clustered data")
3365 (description
3366 "This package implements multiple imputation for multivariate panel or
3367 clustered data.")
3368 (license license:gpl3)))
3369
3370 (define-public r-mitml
3371 (package
3372 (name "r-mitml")
3373 (version "0.3-7")
3374 (source
3375 (origin
3376 (method url-fetch)
3377 (uri (cran-uri "mitml" version))
3378 (sha256
3379 (base32
3380 "0yqyxkyi1kmv5k63wxj5kkg5g8igk1axk2csb4xhj6wz0p89dxy6"))))
3381 (build-system r-build-system)
3382 (propagated-inputs
3383 `(("r-haven" ,r-haven)
3384 ("r-jomo" ,r-jomo)
3385 ("r-pan" ,r-pan)))
3386 (home-page "https://cran.r-project.org/web/packages/mitml/")
3387 (synopsis "Tools for multiple imputation in multilevel modeling")
3388 (description
3389 "This package provides tools for multiple imputation of missing data in
3390 multilevel modeling. It includes a user-friendly interface to the packages
3391 pan and jomo, and several functions for visualization, data management and the
3392 analysis of multiply imputed data sets.")
3393 (license license:gpl2+)))
3394
3395 (define-public r-mice
3396 (package
3397 (name "r-mice")
3398 (version "3.8.0")
3399 (source
3400 (origin
3401 (method url-fetch)
3402 (uri (cran-uri "mice" version))
3403 (sha256
3404 (base32
3405 "1ibybvigqkkla4xwhqs2w4m6c68alfcdsljx99nn4p92rzb1ig04"))))
3406 (build-system r-build-system)
3407 (propagated-inputs
3408 `(("r-broom" ,r-broom)
3409 ("r-dplyr" ,r-dplyr)
3410 ("r-lattice" ,r-lattice)
3411 ("r-rcpp" ,r-rcpp)
3412 ("r-tidyr" ,r-tidyr)))
3413 (home-page "https://cran.r-project.org/web/packages/mice/")
3414 (synopsis "Multivariate imputation by chained equations")
3415 (description
3416 "Multiple imputation using @dfn{Fully Conditional Specification} (FCS)
3417 implemented by the MICE algorithm as described in @url{Van Buuren and
3418 Groothuis-Oudshoorn (2011), http://doi.org/10.18637/jss.v045.i03}. Each
3419 variable has its own imputation model. Built-in imputation models are
3420 provided for continuous data (predictive mean matching, normal), binary
3421 data (logistic regression), unordered categorical data (polytomous logistic
3422 regression) and ordered categorical data (proportional odds). MICE can also
3423 impute continuous two-level data (normal model, pan, second-level variables).
3424 Passive imputation can be used to maintain consistency between variables.
3425 Various diagnostic plots are available to inspect the quality of the
3426 imputations.")
3427 ;; Any of these two versions.
3428 (license (list license:gpl2 license:gpl3))))
3429
3430 (define-public r-truncnorm
3431 (package
3432 (name "r-truncnorm")
3433 (version "1.0-8")
3434 (source
3435 (origin
3436 (method url-fetch)
3437 (uri (cran-uri "truncnorm" version))
3438 (sha256
3439 (base32
3440 "0zn88wdd58223kibk085rhsikl4yhlrwiyq109hzjg06hy6lwmj9"))))
3441 (build-system r-build-system)
3442 (home-page "https://cran.r-project.org/web/packages/truncnorm/")
3443 (synopsis "Truncated normal distribution")
3444 (description "This package provides functions for the truncated normal
3445 distribution with mean equal to @code{mean} and standard deviation equal to
3446 @code{sd}. It includes density, distribution, quantile, and expected value
3447 functions, as well as a random generation function.")
3448 (license license:gpl2)))
3449
3450 (define-public r-rsolnp
3451 (package
3452 (name "r-rsolnp")
3453 (version "1.16")
3454 (source
3455 (origin
3456 (method url-fetch)
3457 (uri (cran-uri "Rsolnp" version))
3458 (sha256
3459 (base32
3460 "0w7nkj6igr0gi7r7jg950lsx7dj6aipgxi6vbjsf5f5yc9h7fhii"))))
3461 (properties `((upstream-name . "Rsolnp")))
3462 (build-system r-build-system)
3463 (propagated-inputs
3464 `(("r-truncnorm" ,r-truncnorm)))
3465 (home-page "https://cran.r-project.org/web/packages/Rsolnp/")
3466 (synopsis "General non-linear optimization")
3467 (description "The Rsolnp package implements a general non-linear augmented
3468 Lagrange multiplier method solver, a @dfn{sequential quadratic
3469 programming} (SQP) based solver).")
3470 ;; Any version of the GPL.
3471 (license license:gpl2+)))
3472
3473 (define-public r-hardyweinberg
3474 (package
3475 (name "r-hardyweinberg")
3476 (version "1.6.3")
3477 (source
3478 (origin
3479 (method url-fetch)
3480 (uri (cran-uri "HardyWeinberg" version))
3481 (sha256
3482 (base32
3483 "1irz44q6nf95h37av868f47aakwv3jgwgw217xfsfw0afkm7s25f"))))
3484 (properties `((upstream-name . "HardyWeinberg")))
3485 (build-system r-build-system)
3486 (propagated-inputs
3487 `(("r-mice" ,r-mice)
3488 ("r-rcpp" ,r-rcpp)
3489 ("r-rsolnp" ,r-rsolnp)))
3490 (home-page "https://cran.r-project.org/package=HardyWeinberg")
3491 (synopsis "Statistical tests and graphics for Hardy-Weinberg equilibrium")
3492 (description
3493 "This package contains tools for exploring Hardy-Weinberg equilibrium for
3494 diallelic genetic marker data. All classical tests (chi-square, exact,
3495 likelihood-ratio and permutation tests) for Hardy-Weinberg equilibrium are
3496 included in the package, as well as functions for power computation and for
3497 the simulation of marker data under equilibrium and disequilibrium. Routines
3498 for dealing with markers on the X-chromosome are included. Functions for
3499 testing equilibrium in the presence of missing data by using multiple
3500 imputation are also provided. Implements several graphics for exploring the
3501 equilibrium status of a large set of diallelic markers: ternary plots with
3502 acceptance regions, log-ratio plots and Q-Q plots.")
3503 (license license:gpl2+)))
3504
3505 (define-public r-sm
3506 (package
3507 (name "r-sm")
3508 (version "2.2-5.6")
3509 (source
3510 (origin
3511 (method url-fetch)
3512 (uri (cran-uri "sm" version))
3513 (sha256
3514 (base32
3515 "0c4whcx879gb4lwvqnzxl5n9xgpcqh2c54ip9ami3mwfprzcv45q"))))
3516 (build-system r-build-system)
3517 (native-inputs `(("gfortran" ,gfortran)))
3518 (home-page "http://www.stats.gla.ac.uk/~adrian/sm/")
3519 (synopsis "Smoothing methods for nonparametric regression and density estimation")
3520 (description
3521 "This is software accompanying the book 'Applied Smoothing Techniques for
3522 Data Analysis---The Kernel Approach with S-Plus Illustrations', Oxford
3523 University Press. It provides smoothing methods for nonparametric regression
3524 and density estimation")
3525 (license license:gpl2+)))
3526
3527 (define-public r-venndiagram
3528 (package
3529 (name "r-venndiagram")
3530 (version "1.6.20")
3531 (source (origin
3532 (method url-fetch)
3533 (uri (cran-uri "VennDiagram" version))
3534 (sha256
3535 (base32
3536 "1ic1jaxzw98si2p4n1fl4n3myhd7fpw0njb634cwhviwybzv6775"))))
3537 (properties `((upstream-name . "VennDiagram")))
3538 (build-system r-build-system)
3539 (propagated-inputs
3540 `(("r-futile-logger" ,r-futile-logger)))
3541 (home-page "https://cran.r-project.org/web/packages/VennDiagram/")
3542 (synopsis "Generate High-Resolution Venn and Euler Plots")
3543 (description
3544 "This package provides a set of functions to generate high-resolution
3545 Venn and Euler plots. It includes handling for several special cases,
3546 including two-case scaling, and extensive customization of plot shape and
3547 structure.")
3548 (license license:gpl2+)))
3549
3550 (define-public r-vioplot
3551 (package
3552 (name "r-vioplot")
3553 (version "0.3.4")
3554 (source
3555 (origin
3556 (method url-fetch)
3557 (uri (cran-uri "vioplot" version))
3558 (sha256
3559 (base32
3560 "1fsklymilspzz5fzlj7666x09aglaw0v4x0yfjjzy4vr5qpjc529"))))
3561 (build-system r-build-system)
3562 (propagated-inputs
3563 `(("r-sm" ,r-sm)
3564 ("r-zoo" ,r-zoo)))
3565 (home-page "http://wsopuppenkiste.wiso.uni-goettingen.de/~dadler")
3566 (synopsis "Violin plot")
3567 (description
3568 "This package provides a violin plot, which is a combination of a box
3569 plot and a kernel density plot.")
3570 (license license:bsd-3)))
3571
3572 (define-public r-rsofia
3573 (package
3574 (name "r-rsofia")
3575 (version "1.1")
3576 (source (origin
3577 (method url-fetch)
3578 ;; This package has been removed from CRAN, so we can
3579 ;; only fetch it from the archives.
3580 (uri (string-append "https://cran.r-project.org/src/"
3581 "contrib/Archive/RSofia/RSofia_"
3582 version ".tar.gz"))
3583 (sha256
3584 (base32
3585 "0q931y9rcf6slb0s2lsxhgqrzy4yqwh8hb1124nxg0bjbxvjbihn"))))
3586 (properties `((upstream-name . "RSofia")))
3587 (build-system r-build-system)
3588 (propagated-inputs
3589 `(("r-rcpp" ,r-rcpp)))
3590 (home-page "https://cran.r-project.org/src/contrib/Archive/RSofia")
3591 (synopsis "Port of sofia-ml to R")
3592 (description "This package is a port of sofia-ml to R. Sofia-ml is a
3593 suite of fast incremental algorithms for machine learning that can be used for
3594 training models for classification or ranking.")
3595 (license license:asl2.0)))
3596
3597 (define-public r-xts
3598 (package
3599 (name "r-xts")
3600 (version "0.12-0")
3601 (source
3602 (origin
3603 (method url-fetch)
3604 (uri (cran-uri "xts" version))
3605 (sha256
3606 (base32
3607 "0q4cc8ynp7ndmgll1jj3lxyl6wmgg89ad3wq09kjc2ngszdfc4fz"))))
3608 (build-system r-build-system)
3609 (propagated-inputs `(("r-zoo" ,r-zoo)))
3610 (home-page "https://github.com/joshuaulrich/xts")
3611 (synopsis "Extensible time series")
3612 (description
3613 "This package provides for uniform handling of R's different time-based
3614 data classes by extending @code{zoo}, maximizing native format information
3615 preservation and allowing for user-level customization and extension, while
3616 simplifying cross-class interoperability.")
3617 (license license:gpl2+)))
3618
3619 (define-public r-performanceanalytics
3620 (package
3621 (name "r-performanceanalytics")
3622 (version "2.0.4")
3623 (source
3624 (origin
3625 (method url-fetch)
3626 (uri (cran-uri "PerformanceAnalytics" version))
3627 (sha256
3628 (base32
3629 "0ci26hsj4wnw9g0mh4vrn0cg986cpcpx169rvw6v6rbnjxq718bq"))))
3630 (properties
3631 `((upstream-name . "PerformanceAnalytics")))
3632 (build-system r-build-system)
3633 (propagated-inputs
3634 `(("r-quadprog" ,r-quadprog)
3635 ("r-xts" ,r-xts)
3636 ("r-zoo" ,r-zoo)))
3637 (home-page "https://r-forge.r-project.org/projects/returnanalytics/")
3638 (synopsis "Econometric tools for performance and risk analysis")
3639 (description "This is a collection of econometric functions for
3640 performance and risk analysis. This package aims to aid practitioners and
3641 researchers in utilizing the latest research in analysis of non-normal return
3642 streams. In general, it is most tested on return (rather than price) data on
3643 a regular scale, but most functions will work with irregular return data as
3644 well, and increasing numbers of functions will work with P&L or price data
3645 where possible.")
3646 ;; Either version may be picked.
3647 (license (list license:gpl2 license:gpl3))))
3648
3649 (define-public r-laeken
3650 (package
3651 (name "r-laeken")
3652 (version "0.5.1")
3653 (source
3654 (origin
3655 (method url-fetch)
3656 (uri (cran-uri "laeken" version))
3657 (sha256
3658 (base32
3659 "199rjkhjjygpr6cjzab87as46acb5npi44m4yycvk7lnd0blma8s"))))
3660 (build-system r-build-system)
3661 (propagated-inputs
3662 `(("r-boot" ,r-boot)
3663 ("r-mass" ,r-mass)))
3664 (home-page "https://cran.r-project.org/web/packages/laeken/")
3665 (synopsis "Estimation of indicators on social exclusion and poverty")
3666 (description "This package provides tools for the estimation of indicators
3667 on social exclusion and poverty, as well as an implementation of Pareto tail
3668 modeling for empirical income distributions.")
3669 (license license:gpl2+)))
3670
3671 (define-public r-vcd
3672 (package
3673 (name "r-vcd")
3674 (version "1.4-7")
3675 (source
3676 (origin
3677 (method url-fetch)
3678 (uri (cran-uri "vcd" version))
3679 (sha256
3680 (base32
3681 "16aj688nhlcvdxzfsqh4s375v8f8vl8997dl8h1xg29b42nv52gc"))))
3682 (build-system r-build-system)
3683 (propagated-inputs
3684 `(("r-colorspace" ,r-colorspace)
3685 ("r-lmtest" ,r-lmtest)
3686 ("r-mass" ,r-mass)))
3687 (home-page "https://cran.r-project.org/web/packages/vcd/")
3688 (synopsis "Visualizing categorical data")
3689 (description "This package provides visualization techniques, data sets,
3690 summary and inference procedures aimed particularly at categorical data.
3691 Special emphasis is given to highly extensible grid graphics. The package was
3692 originally inspired by the book \"Visualizing Categorical Data\" by Michael
3693 Friendly and is now the main support package for a new book, \"Discrete Data
3694 Analysis with R\" by Michael Friendly and David Meyer (2015).")
3695 (license license:gpl2)))
3696
3697 (define-public r-ica
3698 (package
3699 (name "r-ica")
3700 (version "1.0-2")
3701 (source
3702 (origin
3703 (method url-fetch)
3704 (uri (cran-uri "ica" version))
3705 (sha256
3706 (base32
3707 "0ya1nph1zwhad0bfz4yxs27kl45yk1dhnphdlrq34p8pqrpmj8g7"))))
3708 (build-system r-build-system)
3709 (home-page "https://cran.r-project.org/web/packages/ica/")
3710 (synopsis "Independent component analysis")
3711 (description "This package provides tools for @dfn{Independent Component
3712 Analysis} (ICA) using various algorithms: FastICA,
3713 Information-Maximization (Infomax), and @dfn{Joint Approximate Diagonalization
3714 of Eigenmatrices} (JADE).")
3715 (license license:gpl2+)))
3716
3717 (define-public r-dtw
3718 (package
3719 (name "r-dtw")
3720 (version "1.21-3")
3721 (source
3722 (origin
3723 (method url-fetch)
3724 (uri (cran-uri "dtw" version))
3725 (sha256
3726 (base32
3727 "02hyhx1sy5h3vzh9zixy18a7d47df4k5d0wyflcvlcbsbcl6p90s"))))
3728 (build-system r-build-system)
3729 (propagated-inputs `(("r-proxy" ,r-proxy)))
3730 (home-page "http://dtw.r-forge.r-project.org/")
3731 (synopsis "Dynamic Time Warping Algorithms")
3732 (description "This package provides a comprehensive implementation of
3733 @dfn{dynamic time warping} (DTW) algorithms in R. DTW computes the
3734 optimal (least cumulative distance) alignment between points of two time
3735 series. Common DTW variants covered include local (slope) and global (window)
3736 constraints, subsequence matches, arbitrary distance definitions,
3737 normalizations, minimum variance matching, and so on.")
3738 (license license:gpl2+)))
3739
3740 (define-public r-sdmtools
3741 (package
3742 (name "r-sdmtools")
3743 (version "1.1-221.2")
3744 (source
3745 (origin
3746 (method url-fetch)
3747 (uri (cran-uri "SDMTools" version))
3748 (sha256
3749 (base32
3750 "1xvcd97ikqsfdpk2fddy3k0z1ajqga7nv9bgac9c1wnjk1gqrpgh"))))
3751 (properties `((upstream-name . "SDMTools")))
3752 (build-system r-build-system)
3753 (propagated-inputs `(("r-r-utils" ,r-r-utils)))
3754 (home-page "https://www.rforge.net/SDMTools/")
3755 (synopsis "Species distribution modelling tools")
3756 (description "This package provides a set of tools for post processing
3757 the outcomes of species distribution modeling exercises. It includes novel
3758 methods for comparing models and tracking changes in distributions through
3759 time. It further includes methods for visualizing outcomes, selecting
3760 thresholds, calculating measures of accuracy and landscape fragmentation
3761 statistics, etc.")
3762 (license license:gpl3+)))
3763
3764 (define-public r-scatterplot3d
3765 (package
3766 (name "r-scatterplot3d")
3767 (version "0.3-41")
3768 (source
3769 (origin
3770 (method url-fetch)
3771 (uri (cran-uri "scatterplot3d" version))
3772 (sha256
3773 (base32
3774 "152xqz9c70qab86mpgng049gxsg5f4fpf1m8dh93fb9v1avjd0sc"))))
3775 (build-system r-build-system)
3776 (home-page "https://cran.r-project.org/web/packages/scatterplot3d/")
3777 (synopsis "3D scatter plot")
3778 (description "This package provides an implementation of scatter plots for
3779 plotting. a three dimensional point cloud.")
3780 (license license:gpl2)))
3781
3782 (define-public r-ggridges
3783 (package
3784 (name "r-ggridges")
3785 (version "0.5.2")
3786 (source
3787 (origin
3788 (method url-fetch)
3789 (uri (cran-uri "ggridges" version))
3790 (sha256
3791 (base32
3792 "03pz257aw0mkh5k75rby9givkc1ky3n5scvhjhjiz9vry9fpffmh"))))
3793 (build-system r-build-system)
3794 (propagated-inputs
3795 `(("r-ggplot2" ,r-ggplot2)
3796 ("r-plyr" ,r-plyr)
3797 ("r-scales" ,r-scales)
3798 ("r-withr" ,r-withr)))
3799 (home-page "https://github.com/clauswilke/ggridges")
3800 (synopsis "Ridgeline plots in ggplot2")
3801 (description
3802 "Ridgeline plots provide a convenient way of visualizing changes in
3803 distributions over time or space. This package enables the creation of such
3804 plots in @code{ggplot2}.")
3805 (license license:gpl2)))
3806
3807 (define-public r-ggjoy
3808 (package
3809 (name "r-ggjoy")
3810 (version "0.4.1")
3811 (source
3812 (origin
3813 (method url-fetch)
3814 (uri (cran-uri "ggjoy" version))
3815 (sha256
3816 (base32
3817 "012md2m0jqfcccb933j423m3ck31v3p0pd41gjxpyg9082y7ixyj"))))
3818 (build-system r-build-system)
3819 (propagated-inputs
3820 `(("r-ggplot2" ,r-ggplot2)
3821 ("r-ggridges" ,r-ggridges)))
3822 (home-page "https://github.com/clauswilke/ggjoy")
3823 (synopsis "Joyplots in ggplot2")
3824 (description "Joyplots provide a convenient way of visualizing changes in
3825 distributions over time or space. This package enables the creation of such
3826 plots in @code{ggplot2}.")
3827 (license license:gpl2)))
3828
3829 (define-public r-cli
3830 (package
3831 (name "r-cli")
3832 (version "2.0.2")
3833 (source
3834 (origin
3835 (method url-fetch)
3836 (uri (cran-uri "cli" version))
3837 (sha256
3838 (base32
3839 "1dhkah6jvr96k4h4agcc2rfls75bpjb0j58fzaz3dc0fp3jk8229"))))
3840 (build-system r-build-system)
3841 (propagated-inputs
3842 `(("r-assertthat" ,r-assertthat)
3843 ("r-crayon" ,r-crayon)
3844 ("r-fansi" ,r-fansi)
3845 ("r-glue" ,r-glue)))
3846 (home-page "https://github.com/r-lib/cli#readme")
3847 (synopsis "Helpers for developing command line interfaces")
3848 (description "This package provides a suite of tools designed to build
3849 attractive command line interfaces (CLIs). It includes tools for drawing
3850 rules, boxes, trees, and Unicode symbols with ASCII alternatives.")
3851 (license license:expat)))
3852
3853 (define-public r-argparser
3854 (package
3855 (name "r-argparser")
3856 (version "0.6")
3857 (source
3858 (origin
3859 (method url-fetch)
3860 (uri (cran-uri "argparser" version))
3861 (sha256
3862 (base32
3863 "1pxiz9jlhlnpzqn1lz349r07i7glw708w202x6dlnxp112fg7k4x"))))
3864 (build-system r-build-system)
3865 (home-page "https://bitbucket.org/djhshih/argparser")
3866 (synopsis "Command-line argument parser")
3867 (description
3868 "This package provides a cross-platform command-line argument parser
3869 written purely in R with no external dependencies. It is useful with the
3870 Rscript front-end and facilitates turning an R script into an executable
3871 script.")
3872 (license license:gpl3+)))
3873
3874 (define-public r-debugme
3875 (package
3876 (name "r-debugme")
3877 (version "1.1.0")
3878 (source
3879 (origin
3880 (method url-fetch)
3881 (uri (cran-uri "debugme" version))
3882 (sha256
3883 (base32
3884 "1c9sg55zvf10h8198jdnpamm6f66lzw3c3jnmdp9ls6na0j0xbjd"))))
3885 (build-system r-build-system)
3886 (propagated-inputs `(("r-crayon" ,r-crayon)))
3887 (home-page "https://github.com/r-lib/debugme#readme")
3888 (synopsis "Debug R packages")
3889 (description
3890 "This package allows the user to specify debug messages as special string
3891 constants, and control debugging of packages via environment variables.")
3892 (license license:expat)))
3893
3894 (define-public r-processx
3895 (package
3896 (name "r-processx")
3897 (version "3.4.2")
3898 (source
3899 (origin
3900 (method url-fetch)
3901 (uri (cran-uri "processx" version))
3902 (sha256
3903 (base32
3904 "02awswxq6wh3rl99dncw5n6c1xmd0v81xcdp2dfyi6vm6b3gz84l"))))
3905 (build-system r-build-system)
3906 (propagated-inputs
3907 `(("r-ps" ,r-ps)
3908 ("r-r6" ,r-r6)))
3909 (home-page "https://github.com/r-lib/processx3")
3910 (synopsis "Execute and control system processes")
3911 (description
3912 "This package provides portable tools to run system processes in the
3913 background. It can check if a background process is running; wait on a
3914 background process to finish; get the exit status of finished processes; kill
3915 background processes and their children; restart processes. It can read the
3916 standard output and error of the processes, using non-blocking connections.
3917 @code{processx} can poll a process for standard output or error, with a
3918 timeout. It can also poll several processes at once.")
3919 (license license:expat)))
3920
3921 (define-public r-tsp
3922 (package
3923 (name "r-tsp")
3924 (version "1.1-9")
3925 (source
3926 (origin
3927 (method url-fetch)
3928 (uri (cran-uri "TSP" version))
3929 (sha256
3930 (base32
3931 "183m6crb0dv17llj86059n3hbgsahbhfcqlx0ijdzkssg11i1cy7"))))
3932 (properties `((upstream-name . "TSP")))
3933 (build-system r-build-system)
3934 (propagated-inputs `(("r-foreach" ,r-foreach)))
3935 (home-page "https://cran.r-project.org/web/packages/TSP/")
3936 (synopsis "Traveling salesperson problem (TSP)")
3937 (description "This package provides basic infrastructure and some
3938 algorithms for the @dfn{traveling salesperson problem}(TSP) (also known as the
3939 traveling salesman problem).")
3940 (license license:gpl3)))
3941
3942 (define-public r-qap
3943 (package
3944 (name "r-qap")
3945 (version "0.1-1")
3946 (source
3947 (origin
3948 (method url-fetch)
3949 (uri (cran-uri "qap" version))
3950 (sha256
3951 (base32
3952 "0d2d1ni1camixyi45lfy00f4pn3p063k7bsi8gj5scp6n15mdgb0"))))
3953 (build-system r-build-system)
3954 (native-inputs `(("gfortran" ,gfortran)))
3955 (home-page "https://cran.r-project.org/web/packages/qap/")
3956 (synopsis "Heuristics for the quadratic assignment problem (QAP)")
3957 (description "This package implements heuristics for the @dfn{quadratic
3958 assignment problem} (QAP). Currently only a simulated annealing heuristic is
3959 available.")
3960 (license license:gpl3)))
3961
3962 (define-public r-gclus
3963 (package
3964 (name "r-gclus")
3965 (version "1.3.2")
3966 (source
3967 (origin
3968 (method url-fetch)
3969 (uri (cran-uri "gclus" version))
3970 (sha256
3971 (base32
3972 "1cz0g0i972955hhaji30rx8448x7f3as7z1sww9i5h86ybgirilw"))))
3973 (build-system r-build-system)
3974 (propagated-inputs `(("r-cluster" ,r-cluster)))
3975 (home-page "https://cran.r-project.org/web/packages/gclus/")
3976 (synopsis "Clustering graphics")
3977 (description "This package orders panels in scatterplot matrices and
3978 parallel coordinate displays by some merit index. It contains various indices
3979 of merit, ordering functions, and enhanced versions of @code{pairs} and
3980 @code{parcoord} which color panels according to their merit level.")
3981 (license license:gpl2+)))
3982
3983 (define-public r-webshot
3984 (package
3985 (name "r-webshot")
3986 (version "0.5.2")
3987 (source
3988 (origin
3989 (method url-fetch)
3990 (uri (cran-uri "webshot" version))
3991 (sha256
3992 (base32
3993 "0gq4h8cw51z95yvsnf38kj5l58wgljkm0dalmi8mn1sp06bxr0zi"))))
3994 (build-system r-build-system)
3995 (propagated-inputs
3996 `(("r-callr" ,r-callr)
3997 ("r-jsonlite" ,r-jsonlite)
3998 ("r-magrittr" ,r-magrittr)))
3999 (home-page "https://github.com/wch/webshot/")
4000 (synopsis "Take screenshots of web pages")
4001 (description
4002 "Webshot makes it easy to take screenshots of web pages from within R.
4003 It can also run Shiny applications locally and take screenshots of the
4004 application; and it can render and screenshot static as well as interactive R
4005 Markdown documents.")
4006 (license license:gpl2)))
4007
4008 (define-public r-seriation
4009 (package
4010 (name "r-seriation")
4011 (version "1.2-8")
4012 (source
4013 (origin
4014 (method url-fetch)
4015 (uri (cran-uri "seriation" version))
4016 (sha256
4017 (base32
4018 "1zbdxq0s5rc5v307b69fw9k52m0654ls7pf22lh35ggirig6lwsk"))))
4019 (build-system r-build-system)
4020 (propagated-inputs
4021 `(("r-cluster" ,r-cluster)
4022 ("r-colorspace" ,r-colorspace)
4023 ("r-dendextend" ,r-dendextend)
4024 ("r-gclus" ,r-gclus)
4025 ("r-gplots" ,r-gplots)
4026 ("r-mass" ,r-mass)
4027 ("r-qap" ,r-qap)
4028 ("r-registry" ,r-registry)
4029 ("r-tsp" ,r-tsp)))
4030 (native-inputs `(("gfortran" ,gfortran)))
4031 (home-page "https://s2.smu.edu/IDA/seriation/")
4032 (synopsis "Infrastructure for ordering objects using seriation")
4033 (description
4034 "This package provides infrastructure for seriation with an
4035 implementation of several seriation/sequencing techniques to reorder matrices,
4036 dissimilarity matrices, and dendrograms. It also provides (optimally)
4037 reordered heatmaps, color images and clustering visualizations like
4038 dissimilarity plots, and visual assessment of cluster tendency plots (VAT and
4039 iVAT).")
4040 (license license:gpl3)))
4041
4042 (define-public r-xfun
4043 (package
4044 (name "r-xfun")
4045 (version "0.13")
4046 (source
4047 (origin
4048 (method url-fetch)
4049 (uri (cran-uri "xfun" version))
4050 (sha256
4051 (base32 "03iyqgx9mmdbd3qih70qzijjqcdg7k7ps5r1y6q8praanx9qvnm3"))))
4052 (build-system r-build-system)
4053 ;; knitr itself depends on xfun
4054 #;
4055 (native-inputs
4056 `(("r-knitr" ,r-knitr)))
4057 (home-page "https://github.com/yihui/xfun")
4058 (synopsis "Miscellaneous functions")
4059 (description
4060 "This package provides miscellaneous functions commonly used in other
4061 packages maintained by Yihui Xie.")
4062 (license license:expat)))
4063
4064 (define-public r-utf8
4065 (package
4066 (name "r-utf8")
4067 (version "1.1.4")
4068 (source
4069 (origin
4070 (method url-fetch)
4071 (uri (cran-uri "utf8" version))
4072 (sha256
4073 (base32
4074 "0m0ywg8k3blfiahxvh1i4zn9dksrlc937d2lbza5fc38zjnrrnpn"))))
4075 (build-system r-build-system)
4076 (home-page "https://github.com/patperry/r-utf8")
4077 (synopsis "Unicode text processing")
4078 (description
4079 "This package provides tools to process and print UTF-8 encoded
4080 international text (Unicode). Input, validate, normalize, encode, format, and
4081 display.")
4082 (license license:asl2.0)))
4083
4084 (define-public r-zeallot
4085 (package
4086 (name "r-zeallot")
4087 (version "0.1.0")
4088 (source
4089 (origin
4090 (method url-fetch)
4091 (uri (cran-uri "zeallot" version))
4092 (sha256
4093 (base32
4094 "1sd1igcfnv27pa3bqxlbyxchi562h7grnjg1l7wxx3bwr49i57s3"))))
4095 (build-system r-build-system)
4096 (home-page "https://github.com/nteetor/zeallot")
4097 (synopsis "Multiple, unpacking, and destructuring assignment")
4098 (description
4099 "This package provides a @code{%<-%} operator to perform multiple,
4100 unpacking, and destructuring assignment in R. The operator unpacks the
4101 right-hand side of an assignment into multiple values and assigns these values
4102 to variables on the left-hand side of the assignment.")
4103 (license license:expat)))
4104
4105 (define-public r-vctrs
4106 (package
4107 (name "r-vctrs")
4108 (version "0.2.4")
4109 (source
4110 (origin
4111 (method url-fetch)
4112 (uri (cran-uri "vctrs" version))
4113 (sha256
4114 (base32
4115 "15sgzs6afvmhssk6jcg41rn3bvmzmbm4sgca6f6x8lfrsazvdj6w"))))
4116 (build-system r-build-system)
4117 (propagated-inputs
4118 `(("r-digest" ,r-digest)
4119 ("r-ellipsis" ,r-ellipsis)
4120 ("r-glue" ,r-glue)
4121 ("r-rlang" ,r-rlang)))
4122 (native-inputs
4123 `(("r-knitr" ,r-knitr)))
4124 (home-page "https://github.com/r-lib/vctrs")
4125 (synopsis "Vector helpers")
4126 (description
4127 "There are three main goals to the @code{vctrs} package:
4128
4129 @enumerate
4130 @item To propose @code{vec_size()} and @code{vec_type()} as alternatives to
4131 @code{length()} and @code{class()}. These definitions are paired with a
4132 framework for type-coercion and size-recycling.
4133 @item To define type- and size-stability as desirable function properties, use
4134 them to analyse existing base function, and to propose better alternatives.
4135 This work has been particularly motivated by thinking about the ideal
4136 properties of @code{c()}, @code{ifelse()}, and @code{rbind()}.
4137 @item To provide a new @code{vctr} base class that makes it easy to create new
4138 S3 vectors. @code{vctrs} provides methods for many base generics in terms of
4139 a few new @code{vctrs} generics, making implementation considerably simpler
4140 and more robust.
4141 @end enumerate\n")
4142 (license license:gpl3)))
4143
4144 (define-public r-pillar
4145 (package
4146 (name "r-pillar")
4147 (version "1.4.3")
4148 (source
4149 (origin
4150 (method url-fetch)
4151 (uri (cran-uri "pillar" version))
4152 (sha256
4153 (base32
4154 "02sn7zw80wq33jgxk2i6m5jb83sk7y72dfhgyy0apfinv05w92ss"))))
4155 (build-system r-build-system)
4156 (propagated-inputs
4157 `(("r-cli" ,r-cli)
4158 ("r-crayon" ,r-crayon)
4159 ("r-fansi" ,r-fansi)
4160 ("r-rlang" ,r-rlang)
4161 ("r-utf8" ,r-utf8)
4162 ("r-vctrs" ,r-vctrs)))
4163 (home-page "https://github.com/r-lib/pillar")
4164 (synopsis "Coloured formatting for columns")
4165 (description
4166 "This package provides a @code{pillar} generic designed for formatting
4167 columns of data using the full range of colours provided by modern
4168 terminals.")
4169 (license license:gpl3)))
4170
4171 (define-public r-uuid
4172 (package
4173 (name "r-uuid")
4174 (version "0.1-4")
4175 (source
4176 (origin
4177 (method url-fetch)
4178 (uri (cran-uri "uuid" version))
4179 (sha256
4180 (base32
4181 "0gm9ii7ncvllxbvyk6srsiinjmqyj7lmh84w43x4nhqpvafj9q4q"))))
4182 (build-system r-build-system)
4183 (home-page "https://www.rforge.net/uuid")
4184 (synopsis "Tools for generating and handling of UUIDs")
4185 (description
4186 "This package provides tools for generating and handling of
4187 @dfn{Universally Unique Identifiers} (UUIDs).")
4188 (license license:expat)))
4189
4190 (define-public r-tinytex
4191 (package
4192 (name "r-tinytex")
4193 (version "0.21")
4194 (source
4195 (origin
4196 (method url-fetch)
4197 (uri (cran-uri "tinytex" version))
4198 (sha256
4199 (base32
4200 "088zzc2v0izbcs45p19v547pi78vkr08ibpvvi1g9bkbya4x3mq9"))))
4201 (build-system r-build-system)
4202 (propagated-inputs
4203 `(("r-xfun" ,r-xfun)))
4204 (home-page "https://github.com/yihui/tinytex")
4205 (synopsis "Helper functions for TeX Live and compiling LaTeX documents")
4206 (description
4207 "This package provides helper functions to install and maintain the LaTeX
4208 distribution named TinyTeX, a lightweight, cross-platform, portable, and
4209 easy-to-maintain version of TeX Live. This package also contains helper
4210 functions to compile LaTeX documents, and install missing LaTeX packages
4211 automatically.")
4212 (license license:expat)))
4213
4214 (define-public r-network
4215 (package
4216 (name "r-network")
4217 (version "1.16.0")
4218 (source
4219 (origin
4220 (method url-fetch)
4221 (uri (cran-uri "network" version))
4222 (sha256
4223 (base32
4224 "0dnf1wl3za2lhx2lwd8smhlijl1cfhckgr8zz9piiirrfi2m2kx2"))))
4225 (build-system r-build-system)
4226 (propagated-inputs
4227 `(("r-magrittr" ,r-magrittr)
4228 ("r-tibble" ,r-tibble)))
4229 (home-page "https://statnet.org/")
4230 (synopsis "Classes for relational data")
4231 (description
4232 "This package provides tools to create and modify network objects. The
4233 @code{network} class can represent a range of relational data types, and
4234 supports arbitrary vertex/edge/graph attributes.")
4235 (license license:gpl2+)))
4236
4237 (define-public r-statnet-common
4238 (package
4239 (name "r-statnet-common")
4240 (version "4.3.0")
4241 (source
4242 (origin
4243 (method url-fetch)
4244 (uri (cran-uri "statnet.common" version))
4245 (sha256
4246 (base32
4247 "0ng90i0wm9wlyhjbnmnylc1bbqw396p1dr7f402dyry9x9ck6jl3"))))
4248 (properties
4249 `((upstream-name . "statnet.common")))
4250 (build-system r-build-system)
4251 (propagated-inputs
4252 `(("r-coda" ,r-coda)))
4253 (home-page "https://statnet.org")
4254 (synopsis "R scripts and utilities used by the Statnet software")
4255 (description "This package provides non-statistical utilities used by the
4256 software developed by the Statnet Project.")
4257 (license license:gpl3)))
4258
4259 (define-public r-statcheck
4260 (package
4261 (name "r-statcheck")
4262 (version "1.3.0")
4263 (source
4264 (origin
4265 (method url-fetch)
4266 (uri (cran-uri "statcheck" version))
4267 (sha256
4268 (base32
4269 "0ivybdcrymlsfv6pg6p5bv70qdvgxf2vgp0kf4r0pf2fcvav1mcp"))))
4270 (build-system r-build-system)
4271 (propagated-inputs
4272 `(("r-ggplot2" ,r-ggplot2)
4273 ("r-plyr" ,r-plyr)
4274 ("r-rmarkdown" ,r-rmarkdown)))
4275 (home-page "https://cran.r-project.org/web/packages/statcheck/")
4276 (synopsis "Extract statistics from articles and recompute p-values")
4277 (description "This package can automatically extract statistical
4278 null-hypothesis significant testing (NHST) results from articles and recompute
4279 the p-values based on the reported test statistic and degrees of freedom to
4280 detect possible inconsistencies.")
4281 (license license:gpl2)))
4282
4283 (define-public r-sna
4284 (package
4285 (name "r-sna")
4286 (version "2.5")
4287 (source
4288 (origin
4289 (method url-fetch)
4290 (uri (cran-uri "sna" version))
4291 (sha256
4292 (base32
4293 "1j3i6300m686qqfmyvadim377cd3mplzgj6mandygw8brg50id8k"))))
4294 (build-system r-build-system)
4295 (propagated-inputs
4296 `(("r-network" ,r-network)
4297 ("r-statnet-common" ,r-statnet-common)))
4298 (home-page "https://statnet.org")
4299 (synopsis "Tools for social network analysis")
4300 (description
4301 "This package provides a range of tools for social network analysis,
4302 including node and graph-level indices, structural distance and covariance
4303 methods, structural equivalence detection, network regression, random graph
4304 generation, and 2D/3D network visualization.")
4305 (license license:gpl2+)))
4306
4307 (define-public r-tfisher
4308 (package
4309 (name "r-tfisher")
4310 (version "0.2.0")
4311 (source
4312 (origin
4313 (method url-fetch)
4314 (uri (cran-uri "TFisher" version))
4315 (sha256
4316 (base32
4317 "0vz74ww1lf1prfwz74hfsi3a8nzq8ss7aqjr85c1d87vss2796xx"))))
4318 (properties `((upstream-name . "TFisher")))
4319 (build-system r-build-system)
4320 (propagated-inputs
4321 `(("r-matrix" ,r-matrix)
4322 ("r-mvtnorm" ,r-mvtnorm)
4323 ("r-sn" ,r-sn)))
4324 (home-page "https://cran.r-project.org/web/packages/TFisher/")
4325 (synopsis "Optimal thresholding Fisher's p-value combination method")
4326 (description
4327 "This package provides the @dfn{cumulative distribution function} (CDF),
4328 quantile, and statistical power calculator for a collection of thresholding
4329 Fisher's p-value combination methods, including Fisher's p-value combination
4330 method, truncated product method and, in particular, soft-thresholding
4331 Fisher's p-value combination method which is proven to be optimal in some
4332 context of signal detection. The p-value calculator for the omnibus version
4333 of these tests are also included.")
4334 (license license:gpl2)))
4335
4336 (define-public r-ttr
4337 (package
4338 (name "r-ttr")
4339 (version "0.23-6")
4340 (source
4341 (origin
4342 (method url-fetch)
4343 (uri (cran-uri "TTR" version))
4344 (sha256
4345 (base32
4346 "0rg22ma3x07s9djlxscfw5jcq1gbir05cwhgvwfi53x1sf4hmhdg"))))
4347 (properties `((upstream-name . "TTR")))
4348 (build-system r-build-system)
4349 (propagated-inputs
4350 `(("r-curl" ,r-curl)
4351 ("r-xts" ,r-xts)
4352 ("r-zoo" ,r-zoo)))
4353 (home-page "https://github.com/joshuaulrich/TTR")
4354 (synopsis "Technical trading rules")
4355 (description
4356 "This package provides functions and data to construct technical trading
4357 rules with R.")
4358 (license license:gpl2)))
4359
4360 (define-public r-leaps
4361 (package
4362 (name "r-leaps")
4363 (version "3.1")
4364 (source
4365 (origin
4366 (method url-fetch)
4367 (uri (cran-uri "leaps" version))
4368 (sha256
4369 (base32
4370 "1dn3yl1p03n0iynd1vsdkrr0fhmvgrmfkv37y7n371765h83lz1x"))))
4371 (build-system r-build-system)
4372 (native-inputs `(("gfortran" ,gfortran)))
4373 (home-page "https://cran.r-project.org/web/packages/leaps/")
4374 (synopsis "Regression subset selection")
4375 (description
4376 "This package provides tools for regression subset selection, including
4377 exhaustive search.")
4378 (license license:gpl2+)))
4379
4380 (define-public r-splus2r
4381 (package
4382 (name "r-splus2r")
4383 (version "1.2-2")
4384 (source
4385 (origin
4386 (method url-fetch)
4387 (uri (cran-uri "splus2R" version))
4388 (sha256
4389 (base32
4390 "0xrbj8vxy0pc6hl7m8abv71d3hjw47cl51s7j7priadyqczkq6sz"))))
4391 (properties `((upstream-name . "splus2R")))
4392 (build-system r-build-system)
4393 (native-inputs `(("gfortran" ,gfortran)))
4394 (home-page "https://cran.r-project.org/web/packages/splus2R/")
4395 (synopsis "Supplemental S-PLUS functionality in R")
4396 (description
4397 "Currently there are many functions in S-PLUS that are missing in R. To
4398 facilitate the conversion of S-PLUS packages to R packages, this package
4399 provides some missing S-PLUS functionality in R.")
4400 (license license:gpl2)))
4401
4402 (define-public r-ifultools
4403 (package
4404 (name "r-ifultools")
4405 (version "2.0-5")
4406 (source
4407 (origin
4408 (method url-fetch)
4409 (uri (cran-uri "ifultools" version))
4410 (sha256
4411 (base32
4412 "040kvbczcmmbaiaz0k0pdq9af541pjj6iwzh1a3w4szh9w6b5a3j"))))
4413 (build-system r-build-system)
4414 (propagated-inputs
4415 `(("r-mass" ,r-mass)
4416 ("r-splus2r" ,r-splus2r)))
4417 (home-page "https://cran.r-project.org/web/packages/ifultools/")
4418 (synopsis "Insightful research tools")
4419 (description "This package provides C code used by the wmtsa, fractal, and
4420 sapa R packages.")
4421 (license license:gpl2)))
4422
4423 (define-public r-sapa
4424 (package
4425 (name "r-sapa")
4426 (version "2.0-2")
4427 (source
4428 (origin
4429 (method url-fetch)
4430 (uri (cran-uri "sapa" version))
4431 (sha256
4432 (base32
4433 "056xlh14dnzq4x7sbp7ff2k61jxy7110a742b502vz549qfrr5ds"))))
4434 (build-system r-build-system)
4435 (propagated-inputs
4436 `(("r-ifultools" ,r-ifultools)
4437 ("r-splus2r" ,r-splus2r)))
4438 (home-page "https://cran.r-project.org/web/packages/sapa/")
4439 (synopsis "Spectral analysis for physical applications")
4440 (description "This package provides software for the book Spectral
4441 Analysis for Physical Applications, Donald B. Percival and Andrew T. Walden,
4442 Cambridge University Press, 1993.")
4443 (license license:gpl2)))
4444
4445 (define-public r-aggregation
4446 (package
4447 (name "r-aggregation")
4448 (version "1.0.1")
4449 (source
4450 (origin
4451 (method url-fetch)
4452 (uri (cran-uri "aggregation" version))
4453 (sha256
4454 (base32
4455 "0j9g604m2ccc7hcy02539yja9cf3xcbl25gvp838bp4x8w18my46"))))
4456 (build-system r-build-system)
4457 (home-page "https://cran.r-project.org/web/packages/aggregation/")
4458 (synopsis "Methods for p-value aggregation")
4459 (description
4460 "This package contains functionality for performing the following methods
4461 of p-value aggregation: Fisher's method, the Lancaster method (weighted
4462 Fisher's method), and Sidak correction.")
4463 (license license:gpl3)))
4464
4465 (define-public r-quantmod
4466 (package
4467 (name "r-quantmod")
4468 (version "0.4.17")
4469 (source
4470 (origin
4471 (method url-fetch)
4472 (uri (cran-uri "quantmod" version))
4473 (sha256
4474 (base32
4475 "1ss441rwlr88kz212m0wgx0hwgwi41rhy1jncg2lgqzqfvr5dzqa"))))
4476 (build-system r-build-system)
4477 (propagated-inputs
4478 `(("r-curl" ,r-curl)
4479 ("r-ttr" ,r-ttr)
4480 ("r-xts" ,r-xts)
4481 ("r-zoo" ,r-zoo)))
4482 (home-page "https://cran.r-project.org/web/packages/quantmod/")
4483 (synopsis "Quantitative financial modelling framework")
4484 (description "This package provides a quantitative financial modelling
4485 framework to allow users to specify, build, trade, and analyse quantitative
4486 financial trading strategies.")
4487 (license license:gpl3)))
4488
4489 (define-public r-tseries
4490 (package
4491 (name "r-tseries")
4492 (version "0.10-47")
4493 (source
4494 (origin
4495 (method url-fetch)
4496 (uri (cran-uri "tseries" version))
4497 (sha256
4498 (base32
4499 "0yzvc9djp3angvxdxqi60wi726y76ablsb71q88ycvw0avgpf8r0"))))
4500 (build-system r-build-system)
4501 (propagated-inputs
4502 `(("r-quadprog" ,r-quadprog)
4503 ("r-quantmod" ,r-quantmod)
4504 ("r-zoo" ,r-zoo)))
4505 (native-inputs
4506 `(("gfortran" ,gfortran)))
4507 (home-page "https://cran.r-project.org/web/packages/tseries/")
4508 (synopsis "Time series analysis and computational finance")
4509 (description
4510 "This package provides functions relating to time series analysis and
4511 computational finance.")
4512 (license license:gpl2)))
4513
4514 (define-public r-wmtsa
4515 (package
4516 (name "r-wmtsa")
4517 (version "2.0-3")
4518 (source
4519 (origin
4520 (method url-fetch)
4521 (uri (cran-uri "wmtsa" version))
4522 (sha256
4523 (base32
4524 "1q436krz5p1f4a7a7sya6a9rh9x9mi8zzcgq66gbk9w9w4hcqcj6"))))
4525 (build-system r-build-system)
4526 (propagated-inputs
4527 `(("r-ifultools" ,r-ifultools)
4528 ("r-mass" ,r-mass)
4529 ("r-splus2r" ,r-splus2r)))
4530 (home-page "https://cran.r-project.org/web/packages/wmtsa/")
4531 (synopsis "Wavelet methods for time series analysis")
4532 (description
4533 "This package provides software to accompany the book \"Wavelet Methods
4534 for Time Series Analysis\", Donald B. Percival and Andrew T. Walden, Cambridge
4535 University Press, 2000.")
4536 (license license:gpl2)))
4537
4538 (define-public r-tsa
4539 (package
4540 (name "r-tsa")
4541 (version "1.2")
4542 (source
4543 (origin
4544 (method url-fetch)
4545 (uri (cran-uri "TSA" version))
4546 (sha256
4547 (base32
4548 "0gjfqibwdznz0nka95k4fjm935svxjpnqfywwz403crn2lh30h6q"))))
4549 (properties `((upstream-name . "TSA")))
4550 (build-system r-build-system)
4551 (propagated-inputs
4552 `(("r-leaps" ,r-leaps)
4553 ("r-locfit" ,r-locfit)
4554 ("r-mgcv" ,r-mgcv)))
4555 (home-page "https://homepage.divms.uiowa.edu/~kchan/TSA.htm")
4556 (synopsis "Time series analysis")
4557 (description
4558 "This package contains R functions and datasets detailed in the book
4559 \"Time Series Analysis with Applications in R (second edition)\" by Jonathan
4560 Cryer and Kung-Sik Chan.")
4561 (license license:gpl2+)))
4562
4563 (define-public r-extradistr
4564 (package
4565 (name "r-extradistr")
4566 (version "1.8.11")
4567 (source
4568 (origin
4569 (method url-fetch)
4570 (uri (cran-uri "extraDistr" version))
4571 (sha256
4572 (base32
4573 "1vvqv1d4hxa025gmm8cbiph63qsqy87l3ri5idd524gyz3chbcl3"))))
4574 (properties `((upstream-name . "extraDistr")))
4575 (build-system r-build-system)
4576 (propagated-inputs
4577 `(("r-rcpp" ,r-rcpp)))
4578 (home-page "https://github.com/twolodzko/extraDistr")
4579 (synopsis "Additional univariate and multivariate distributions")
4580 (description
4581 "This package implements density, distribution functions, quantile
4582 functions and random generation functions for a large number of univariate and
4583 multivariate distributions.")
4584 (license license:gpl2)))
4585
4586 (define-public r-fractal
4587 (package
4588 (name "r-fractal")
4589 (version "2.0-4")
4590 (source
4591 (origin
4592 (method url-fetch)
4593 (uri (cran-uri "fractal" version))
4594 (sha256
4595 (base32
4596 "18lr9z0gslvfc3z8vyj3krqj3bfhg60zv1fzinrwwkc4cpk1w7mp"))))
4597 (build-system r-build-system)
4598 (propagated-inputs
4599 `(("r-ifultools" ,r-ifultools)
4600 ("r-mass" ,r-mass)
4601 ("r-sapa" ,r-sapa)
4602 ("r-scatterplot3d" ,r-scatterplot3d)
4603 ("r-splus2r" ,r-splus2r)
4604 ("r-wmtsa" ,r-wmtsa)))
4605 (home-page "https://cran.r-project.org/web/packages/fractal/")
4606 (synopsis "Fractal time series modeling and analysis")
4607 (description
4608 "This package provides tools for stochastic fractal and deterministic
4609 chaotic time series analysis.")
4610 (license license:gpl2)))
4611
4612 (define-public r-urca
4613 (package
4614 (name "r-urca")
4615 (version "1.3-0")
4616 (source
4617 (origin
4618 (method url-fetch)
4619 (uri (cran-uri "urca" version))
4620 (sha256
4621 (base32
4622 "1akaqwf3fvvvx4sgfn641fd4sj51s0701pvfl6s5hnz2k0iwh732"))))
4623 (build-system r-build-system)
4624 (propagated-inputs `(("r-nlme" ,r-nlme)))
4625 (native-inputs `(("gfortran" ,gfortran)))
4626 (home-page "https://cran.r-project.org/web/packages/urca/")
4627 (synopsis "Unit root and cointegration tests for time series data")
4628 (description
4629 "This package provides unit root and cointegration tests encountered in
4630 applied econometric analysis.")
4631 (license license:gpl2+)))
4632
4633 (define-public r-cubature
4634 (package
4635 (name "r-cubature")
4636 (version "2.0.4")
4637 (source
4638 (origin
4639 (method url-fetch)
4640 (uri (cran-uri "cubature" version))
4641 (sha256
4642 (base32
4643 "0jpyq8j7x06dpiz29w48av879ygldzgls9z810192hsymkmfaz6r"))))
4644 (build-system r-build-system)
4645 (propagated-inputs
4646 `(("r-rcpp" ,r-rcpp)))
4647 (home-page "https://github.com/bnaras/cubature")
4648 (synopsis "Adaptive multivariate integration over hypercubes")
4649 (description
4650 "This package is an R wrapper around the cubature C library for adaptive
4651 multivariate integration over hypercubes. This version provides both
4652 @code{hcubature} and @code{pcubature} routines in addition to a vector
4653 interface.")
4654 ;; The included cubature C library is released under GPLv2+, but the
4655 ;; wrapper declares the license to be GPLv3+.
4656 (license (list license:gpl2+ license:gpl3+))))
4657
4658 (define-public r-trend
4659 (package
4660 (name "r-trend")
4661 (version "1.1.2")
4662 (source
4663 (origin
4664 (method url-fetch)
4665 (uri (cran-uri "trend" version))
4666 (sha256
4667 (base32
4668 "09b6ycyfgs4xlhx6kn6qm5rl2acp58hzhv8qclzn3kb1wjjyvxy5"))))
4669 (build-system r-build-system)
4670 (propagated-inputs
4671 `(("r-extradistr" ,r-extradistr)))
4672 (native-inputs
4673 `(("gfortran" ,gfortran)))
4674 (home-page "https://cran.r-project.org/web/packages/trend/")
4675 (synopsis "Non-parametric trend tests and change-point detection")
4676 (description
4677 "The analysis of environmental data often requires the detection of
4678 trends and change-points. This package includes tests for trend
4679 detection (Cox-Stuart Trend Test, Mann-Kendall Trend Test, (correlated)
4680 Hirsch-Slack Test, partial Mann-Kendall Trend Test, multivariate (multisite)
4681 Mann-Kendall Trend Test, (Seasonal) Sen's slope, partial Pearson and Spearman
4682 correlation trend test), change-point detection (Lanzante's test procedures,
4683 Pettitt's test, Buishand Range Test, Buishand U Test, Standard Normal
4684 Homogeinity Test), detection of non-randomness (Wallis-Moore Phase Frequency
4685 Test, Bartels rank von Neumann's ratio test, Wald-Wolfowitz Test) and the two
4686 sample Robust Rank-Order Distributional Test.")
4687 (license license:gpl3)))
4688
4689 (define-public r-expm
4690 (package
4691 (name "r-expm")
4692 (version "0.999-4")
4693 (source
4694 (origin
4695 (method url-fetch)
4696 (uri (cran-uri "expm" version))
4697 (sha256
4698 (base32
4699 "15k0acg2aqb2ajhwal6l7vhhp03m4lg579805d34554cl0kn9l2q"))))
4700 (build-system r-build-system)
4701 (propagated-inputs `(("r-matrix" ,r-matrix)))
4702 (native-inputs `(("gfortran" ,gfortran)))
4703 (home-page "https://r-forge.r-project.org/projects/expm/")
4704 (synopsis "Tools for matrix exponentials and related quantities")
4705 (description
4706 "This package provides tools for the computation of the matrix
4707 exponential, logarithm, square root, and related quantities.")
4708 (license license:gpl2+)))
4709
4710 (define-public r-complexplus
4711 (package
4712 (name "r-complexplus")
4713 (version "2.1")
4714 (source
4715 (origin
4716 (method url-fetch)
4717 (uri (cran-uri "complexplus" version))
4718 (sha256
4719 (base32
4720 "16w9v7d1ckavqmr86l34frr37pkvdn0iqnb17ssb8xaggns5lgqx"))))
4721 (build-system r-build-system)
4722 (propagated-inputs
4723 `(("r-expm" ,r-expm)
4724 ("r-matrix" ,r-matrix)))
4725 (home-page "https://cran.r-project.org/web/packages/complexplus/")
4726 (synopsis "Functions of complex or real variables")
4727 (description
4728 "This package extends several functions to the complex domain, including
4729 the matrix exponential and logarithm, and the determinant.")
4730 (license license:gpl2)))
4731
4732 (define-public r-phontools
4733 (package
4734 (name "r-phontools")
4735 (version "0.2-2.1")
4736 (source
4737 (origin
4738 (method url-fetch)
4739 (uri (cran-uri "phonTools" version))
4740 (sha256
4741 (base32
4742 "01i481mhswsys3gpasw9gn6nxkfmi7bz46g5c84m13pg0cv8hxc7"))))
4743 (properties `((upstream-name . "phonTools")))
4744 (build-system r-build-system)
4745 (home-page "http://www.santiagobarreda.com/rscripts.html")
4746 (synopsis "Tools for phonetic and acoustic analyses")
4747 (description
4748 "This package contains tools for the organization, display, and analysis
4749 of the sorts of data frequently encountered in phonetics research and
4750 experimentation, including the easy creation of IPA vowel plots, and the
4751 creation and manipulation of WAVE audio files.")
4752 (license license:bsd-2)))
4753
4754 (define-public r-np
4755 (package
4756 (name "r-np")
4757 (version "0.60-10")
4758 (source
4759 (origin
4760 (method url-fetch)
4761 (uri (cran-uri "np" version))
4762 (sha256
4763 (base32
4764 "06h8k0kdv5s258jr6s08fabvlycrbs7iq34jk2f2hfmqm2y4nyx2"))))
4765 (build-system r-build-system)
4766 (propagated-inputs
4767 `(("r-boot" ,r-boot)
4768 ("r-cubature" ,r-cubature)
4769 ("r-quadprog" ,r-quadprog)
4770 ("r-quantreg" ,r-quantreg)))
4771 (home-page "https://github.com/JeffreyRacine/R-Package-np")
4772 (synopsis "Non-parametric kernel smoothing methods for mixed data types")
4773 (description "This package provides non-parametric (and semi-parametric)
4774 kernel methods that seamlessly handle a mix of continuous, unordered, and
4775 ordered factor data types.")
4776 ;; Any version of the GPL.
4777 (license license:gpl3+)))
4778
4779 (define-public r-powerplus
4780 (package
4781 (name "r-powerplus")
4782 (version "3.1")
4783 (source
4784 (origin
4785 (method url-fetch)
4786 (uri (cran-uri "powerplus" version))
4787 (sha256
4788 (base32
4789 "0ayp6x34hkzgris4j3zbbs0r23n81bhww3wgfyy630ri4sk6brrn"))))
4790 (build-system r-build-system)
4791 (propagated-inputs
4792 `(("r-complexplus" ,r-complexplus)
4793 ("r-expm" ,r-expm)
4794 ("r-mass" ,r-mass)
4795 ("r-matrix" ,r-matrix)
4796 ("r-phontools" ,r-phontools)))
4797 (home-page "https://cran.r-project.org/web/packages/powerplus/")
4798 (synopsis "Exponentiation operations")
4799 (description
4800 "This package provides tools for the computation of matrix and scalar
4801 exponentiation.")
4802 (license license:gpl2)))
4803
4804 (define-public r-egg
4805 (package
4806 (name "r-egg")
4807 (version "0.4.5")
4808 (source
4809 (origin
4810 (method url-fetch)
4811 (uri (cran-uri "egg" version))
4812 (sha256
4813 (base32
4814 "1fy7srpiavfn8kyrr1m84an7acgwi6ydzrg71m3b0vk7y9ybmj0m"))))
4815 (properties `((upstream-name . "egg")))
4816 (build-system r-build-system)
4817 (propagated-inputs
4818 `(("r-ggplot2" ,r-ggplot2)
4819 ("r-gridextra" ,r-gridextra)
4820 ("r-gtable" ,r-gtable)))
4821 (home-page "https://cran.r-project.org/web/packages/egg")
4822 (synopsis "Extensions for ggplot2")
4823 (description
4824 "This package provides miscellaneous functions to help customize ggplot2
4825 objects. High-level functions are provided to post-process ggplot2 layouts
4826 and allow alignment between plot panels, as well as setting panel sizes to
4827 fixed values. Other functions include a custom @code{geom}, and helper
4828 functions to enforce symmetric scales or add tags to facetted plots.")
4829 (license license:gpl3)))
4830
4831 (define-public r-heatmaply
4832 (package
4833 (name "r-heatmaply")
4834 (version "1.1.0")
4835 (source
4836 (origin
4837 (method url-fetch)
4838 (uri (cran-uri "heatmaply" version))
4839 (sha256
4840 (base32
4841 "133q8ir45vhfxs2lnd96k97g21ihg2arfhp349kmk339pk32fcxz"))))
4842 (build-system r-build-system)
4843 (propagated-inputs
4844 `(("r-assertthat" ,r-assertthat)
4845 ("r-colorspace" ,r-colorspace)
4846 ("r-dendextend" ,r-dendextend)
4847 ("r-egg" ,r-egg)
4848 ("r-ggplot2" ,r-ggplot2)
4849 ("r-htmlwidgets" ,r-htmlwidgets)
4850 ("r-magrittr" ,r-magrittr)
4851 ("r-plotly" ,r-plotly)
4852 ("r-rcolorbrewer" ,r-rcolorbrewer)
4853 ("r-reshape2" ,r-reshape2)
4854 ("r-scales" ,r-scales)
4855 ("r-seriation" ,r-seriation)
4856 ("r-viridis" ,r-viridis)
4857 ("r-webshot" ,r-webshot)))
4858 (native-inputs
4859 `(("r-knitr" ,r-knitr)))
4860 (home-page "https://cran.r-project.org/package=heatmaply")
4861 (synopsis "Interactive cluster heat maps using plotly")
4862 (description
4863 "This package enables you to create interactive cluster heatmaps that can
4864 be saved as a stand-alone HTML file, embedded in R Markdown documents or in a
4865 Shiny app, and made available in the RStudio viewer pane. Hover the mouse
4866 pointer over a cell to show details or drag a rectangle to zoom. A heatmap is
4867 a popular graphical method for visualizing high-dimensional data, in which a
4868 table of numbers is encoded as a grid of colored cells. The rows and columns
4869 of the matrix are ordered to highlight patterns and are often accompanied by
4870 dendrograms.")
4871 ;; Either version of the license.
4872 (license (list license:gpl2 license:gpl3))))
4873
4874 (define-public r-h5
4875 (package
4876 (name "r-h5")
4877 (version "0.9.9")
4878 (source
4879 (origin
4880 (method url-fetch)
4881 (uri (cran-uri "h5" version))
4882 (sha256
4883 (base32
4884 "14p7i1sj24ky87kd7qr3n9fc9l64s0bp0rwbyl6i2x69xn75gpsx"))))
4885 (build-system r-build-system)
4886 (inputs
4887 `(("zlib" ,zlib)
4888 ("hdf5" ,hdf5)))
4889 (native-inputs
4890 `(("which" ,which)))
4891 (propagated-inputs
4892 `(("r-rcpp" ,r-rcpp)))
4893 (home-page "https://github.com/mannau/h5")
4894 (synopsis "Interface to the HDF5 Library")
4895 (description
4896 "This package provides an S4 interface to the HDF5 library supporting
4897 fast storage and retrieval of R-objects like vectors, matrices and arrays to
4898 binary files in a language independent format. The HDF5 format can therefore
4899 be used as an alternative to R's save/load mechanism. Since h5 is able to
4900 access only subsets of stored data it can also handle data sets which do not
4901 fit into memory.")
4902 (license license:bsd-2)))
4903
4904 (define-public r-cgdsr
4905 (package
4906 (name "r-cgdsr")
4907 (version "1.3.0")
4908 (source
4909 (origin
4910 (method url-fetch)
4911 (uri (cran-uri "cgdsr" version))
4912 (sha256
4913 (base32
4914 "07yc819hkabpzzh0g0cbqza6bcfy67b2marrzz1lj97f9iba78ja"))))
4915 (build-system r-build-system)
4916 (propagated-inputs
4917 `(("r-httr" ,r-httr)
4918 ("r-r-methodss3" ,r-r-methodss3)
4919 ("r-r-oo" ,r-r-oo)))
4920 (home-page "https://github.com/cBioPortal/cgdsr")
4921 (synopsis "R-based API for accessing the MSKCC Cancer Genomics Data Server")
4922 (description
4923 "This package provides a basic set of R functions for querying the Cancer
4924 Genomics Data Server (CGDS), hosted by the Computational Biology Center at
4925 Memorial-Sloan-Kettering Cancer Center (MSKCC).")
4926 (license license:lgpl3)))
4927
4928 (define-public r-import
4929 (package
4930 (name "r-import")
4931 (version "1.1.0")
4932 (source
4933 (origin
4934 (method url-fetch)
4935 (uri (cran-uri "import" version))
4936 (sha256
4937 (base32
4938 "0blf9539rbfwcmw8zsb4k58slb4pdnc075v34vmyjw752fznhcji"))))
4939 (build-system r-build-system)
4940 (home-page "https://github.com/smbache/import")
4941 (synopsis "Import mechanism for R")
4942 (description
4943 "This is an alternative mechanism for importing objects from packages.
4944 The syntax allows for importing multiple objects from a package with a single
4945 command in an expressive way. The import package bridges some of the gap
4946 between using @code{library} (or @code{require}) and direct (single-object)
4947 imports. Furthermore the imported objects are not placed in the current
4948 environment. It is also possible to import objects from stand-alone @code{.R}
4949 files.")
4950 (license license:expat)))
4951
4952 (define-public r-shinyace
4953 (package
4954 (name "r-shinyace")
4955 (version "0.4.1")
4956 (source
4957 (origin
4958 (method url-fetch)
4959 (uri (cran-uri "shinyAce" version))
4960 (sha256
4961 (base32
4962 "1m33dfm2kjirvgix7ybv1kbzgjkicdpv411g9c0q3fw6rnyhfxxn"))))
4963 (properties `((upstream-name . "shinyAce")))
4964 (build-system r-build-system)
4965 (propagated-inputs
4966 `(("r-shiny" ,r-shiny)
4967 ("r-jsonlite" ,r-jsonlite)))
4968 (home-page "https://cran.r-project.org/web/packages/shinyAce/")
4969 (synopsis "Ace editor bindings for Shiny")
4970 (description
4971 "This package provides Ace editor bindings to enable a rich text editing
4972 environment within Shiny.")
4973 (license license:expat)))
4974
4975 (define-public r-randomizr
4976 (package
4977 (name "r-randomizr")
4978 (version "0.20.0")
4979 (source
4980 (origin
4981 (method url-fetch)
4982 (uri (cran-uri "randomizr" version))
4983 (sha256
4984 (base32
4985 "0dljyfldnardaps3fq6vi5wcs9x6qfaq5apapa78c51lnaa6fn9h"))))
4986 (properties `((upstream-name . "randomizr")))
4987 (build-system r-build-system)
4988 (native-inputs
4989 `(("r-knitr" ,r-knitr)))
4990 (home-page "https://declaredesign.org/r/randomizr/")
4991 (synopsis "Tools for common forms of random assignment and sampling")
4992 (description
4993 "This package provides tools for generating random assignments for common
4994 experimental designs and random samples for common sampling designs.")
4995 (license license:expat)))
4996
4997 (define-public r-base64url
4998 (package
4999 (name "r-base64url")
5000 (version "1.4")
5001 (source
5002 (origin
5003 (method url-fetch)
5004 (uri (cran-uri "base64url" version))
5005 (sha256
5006 (base32
5007 "0n1c2b68vza1dh7sk38v6biiwm72c4jpl79kpdg1bsb0hq9qy18x"))))
5008 (build-system r-build-system)
5009 (propagated-inputs
5010 `(("r-backports" ,r-backports)))
5011 (home-page "https://github.com/mllg/base64url")
5012 (synopsis "Fast and URL-safe base64 encoder and decoder")
5013 (description
5014 "This package provides a URL-safe base64 encoder and decoder. In
5015 contrast to RFC3548, the 62nd character (@code{+}) is replaced with @code{-},
5016 the 63rd character (@code{/}) is replaced with @code{_}. Furthermore, the
5017 encoder does not fill the string with trailing @code{=}. The resulting
5018 encoded strings comply to the regular expression pattern @code{[A-Za-z0-9_-]}
5019 and thus are safe to use in URLs or for file names. The package also comes
5020 with a simple base32 encoder/decoder suited for case insensitive file
5021 systems.")
5022 (license license:gpl3)))
5023
5024 (define-public r-radiant-data
5025 (package
5026 (name "r-radiant-data")
5027 (version "1.3.4")
5028 (source
5029 (origin
5030 (method url-fetch)
5031 (uri (cran-uri "radiant.data" version))
5032 (sha256
5033 (base32
5034 "19sjjb49inrfl7jzq4zpwhdslni0zrp30bl58pisin29ka3ylpzs"))
5035 (modules '((guix build utils)))
5036 (snippet
5037 '(begin
5038 ;; Delete files that are under CC-NC-SA.
5039 (delete-file-recursively "inst/app/tools/help")
5040 #t))))
5041 (properties `((upstream-name . "radiant.data")))
5042 (build-system r-build-system)
5043 (propagated-inputs
5044 `(("r-base64enc" ,r-base64enc)
5045 ("r-broom" ,r-broom)
5046 ("r-car" ,r-car)
5047 ("r-curl" ,r-curl)
5048 ("r-dplyr" ,r-dplyr)
5049 ("r-dt" ,r-dt)
5050 ("r-glue" ,r-glue)
5051 ("r-ggplot2" ,r-ggplot2)
5052 ("r-import" ,r-import)
5053 ("r-jsonlite" ,r-jsonlite)
5054 ("r-knitr" ,r-knitr)
5055 ("r-lubridate" ,r-lubridate)
5056 ("r-magrittr" ,r-magrittr)
5057 ("r-markdown" ,r-markdown)
5058 ("r-mass" ,r-mass)
5059 ("r-patchwork" ,r-patchwork)
5060 ("r-plotly" ,r-plotly)
5061 ("r-psych" ,r-psych)
5062 ("r-randomizr" ,r-randomizr)
5063 ("r-readr" ,r-readr)
5064 ("r-readxl" ,r-readxl)
5065 ("r-rlang" ,r-rlang)
5066 ("r-rmarkdown" ,r-rmarkdown)
5067 ("r-rstudioapi" ,r-rstudioapi)
5068 ("r-scales" ,r-scales)
5069 ("r-shiny" ,r-shiny)
5070 ("r-shinyfiles" ,r-shinyfiles)
5071 ("r-shinyace" ,r-shinyace)
5072 ("r-stringi" ,r-stringi)
5073 ("r-tibble" ,r-tibble)
5074 ("r-tidyr" ,r-tidyr)
5075 ("r-writexl" ,r-writexl)))
5076 (home-page "https://github.com/radiant-rstats/radiant.data")
5077 (synopsis "Data menu for Radiant: business analytics using R and Shiny")
5078 (description
5079 "The Radiant Data menu includes interfaces for loading, saving, viewing,
5080 visualizing, summarizing, transforming, and combining data. It also contains
5081 functionality to generate reproducible reports of the analyses conducted in
5082 the application.")
5083 (license license:agpl3)))
5084
5085 (define-public r-algdesign
5086 (package
5087 (name "r-algdesign")
5088 (version "1.2.0")
5089 (source
5090 (origin
5091 (method url-fetch)
5092 (uri (cran-uri "AlgDesign" version))
5093 (sha256
5094 (base32 "0ammlg148gk0p24fh700116nd66636np0jb1wwh0axq5jphwk1pz"))))
5095 (properties `((upstream-name . "AlgDesign")))
5096 (build-system r-build-system)
5097 (home-page "https://github.com/jvbraun/AlgDesign")
5098 (synopsis "Algorithmic experimental design")
5099 (description
5100 "This package provides tools to calculate exact and approximate theory
5101 experimental designs for D, A, and I criteria. Very large designs may be
5102 created. Experimental designs may be blocked or blocked designs created from
5103 a candidate list, using several criteria. The blocking can be done when whole
5104 and within plot factors interact.")
5105 (license license:gpl2+)))
5106
5107 (define-public r-signal
5108 (package
5109 (name "r-signal")
5110 (version "0.7-6")
5111 (source
5112 (origin
5113 (method url-fetch)
5114 (uri (cran-uri "signal" version))
5115 (sha256
5116 (base32
5117 "1vsxramz5qd9q9s3vlqzmfdpmwl2rhlb2n904zw6f0fg0xxjfq3b"))))
5118 (build-system r-build-system)
5119 (propagated-inputs `(("r-mass" ,r-mass)))
5120 (native-inputs `(("gfortran" ,gfortran)))
5121 (home-page "https://cran.r-project.org/web/packages/signal/")
5122 (synopsis "Signal processing")
5123 (description
5124 "This package provides a set of signal processing functions originally
5125 written for Matlab and GNU Octave. It includes filter generation utilities,
5126 filtering functions, resampling routines, and visualization of filter models.
5127 It also includes interpolation functions.")
5128 (license license:gpl2)))
5129
5130 (define-public r-gsubfn
5131 (package
5132 (name "r-gsubfn")
5133 (version "0.7")
5134 (source
5135 (origin
5136 (method url-fetch)
5137 (uri (cran-uri "gsubfn" version))
5138 (sha256
5139 (base32
5140 "00j6b8b6xsx6v370h220x233rpk6asca78165y3d48jpwvwisdc9"))))
5141 (build-system r-build-system)
5142 (propagated-inputs `(("r-proto" ,r-proto)))
5143 (home-page "https://code.google.com/archive/p/gsubfn/")
5144 (synopsis "Utilities for strings and function arguments.")
5145 (description
5146 "This package provides @code{gsubfn} which is like @code{gsub} but can
5147 take a replacement function or certain other objects instead of the
5148 replacement string. Matches and back references are input to the replacement
5149 function and replaced by the function output. @code{gsubfn} can be used to
5150 split strings based on content rather than delimiters and for quasi-perl-style
5151 string interpolation. The package also has facilities for translating
5152 formulas to functions and allowing such formulas in function calls instead of
5153 functions.")
5154 (license license:gpl2+)))
5155
5156 (define-public r-sqldf
5157 (package
5158 (name "r-sqldf")
5159 (version "0.4-11")
5160 (source
5161 (origin
5162 (method url-fetch)
5163 (uri (cran-uri "sqldf" version))
5164 (sha256
5165 (base32
5166 "0q12vsb53p2wchgp8wfz5bk08wfnm0jxjrakclj4jyy6x3a7ksff"))))
5167 (build-system r-build-system)
5168 (propagated-inputs
5169 `(("r-chron" ,r-chron)
5170 ("r-dbi" ,r-dbi)
5171 ("r-gsubfn" ,r-gsubfn)
5172 ("r-proto" ,r-proto)
5173 ("r-rsqlite" ,r-rsqlite)))
5174 (home-page "https://github.com/ggrothendieck/sqldf")
5175 (synopsis "Manipulate R data frames using SQL")
5176 (description
5177 "The @code{sqldf} function is typically passed a single argument which is
5178 an SQL select statement where the table names are ordinary R data frame names.
5179 @code{sqldf} transparently sets up a database, imports the data frames into
5180 that database, performs the SQL statement and returns the result using a
5181 heuristic to determine which class to assign to each column of the returned
5182 data frame. The @code{sqldf} or @code{read.csv.sql} functions can also be
5183 used to read filtered files into R even if the original files are larger than
5184 R itself can handle.")
5185 (license license:gpl2)))
5186
5187 (define-public r-abind
5188 (package
5189 (name "r-abind")
5190 (version "1.4-5")
5191 (source
5192 (origin
5193 (method url-fetch)
5194 (uri (cran-uri "abind" version))
5195 (sha256
5196 (base32
5197 "0b1zd8jbnl6l292cr9rb50m09fy3ylxvzkpgi5lfb1nbzddcwfis"))))
5198 (build-system r-build-system)
5199 (home-page "https://cran.r-project.org/web/packages/abind/")
5200 (synopsis "Combine multidimensional arrays")
5201 (description
5202 "This package provides tools to combine multidimensional arrays into a
5203 single array. This is a generalization of @code{cbind} and @code{rbind}. It
5204 works with vectors, matrices, and higher-dimensional arrays. It also provides
5205 the functions @code{adrop}, @code{asub}, and @code{afill} for manipulating,
5206 extracting and replacing data in arrays.")
5207 (license license:lgpl2.0+)))
5208
5209 (define-public r-prroc
5210 (package
5211 (name "r-prroc")
5212 (version "1.3.1")
5213 (source
5214 (origin
5215 (method url-fetch)
5216 (uri (cran-uri "PRROC" version))
5217 (sha256
5218 (base32
5219 "1m28h8pcd78049lz2qixhkcr9h5b3jik3maqzfbvq9y58z71i4a7"))))
5220 (properties `((upstream-name . "PRROC")))
5221 (build-system r-build-system)
5222 (home-page "https://cran.r-project.org/web/packages/PRROC/")
5223 (synopsis "Precision-Recall and ROC curves for weighted and unweighted data")
5224 (description
5225 "This package computes the areas under the @dfn{precision-recall} (PR)
5226 and ROC curve for weighted (e.g. soft-labeled) and unweighted data. In
5227 contrast to other implementations, the interpolation between points of the PR
5228 curve is done by a non-linear piecewise function. In addition to the areas
5229 under the curves, the curves themselves can also be computed and plotted by a
5230 specific S3-method.")
5231 (license license:gpl3)))
5232
5233 (define-public r-vim
5234 (package
5235 (name "r-vim")
5236 (version "5.1.1")
5237 (source
5238 (origin
5239 (method url-fetch)
5240 (uri (cran-uri "VIM" version))
5241 (sha256
5242 (base32
5243 "0w22ir0gvym7gqd6nw2j7w5ivlb3az1dkfxv33imimkb7c83056a"))))
5244 (properties `((upstream-name . "VIM")))
5245 (build-system r-build-system)
5246 (propagated-inputs
5247 `(("r-car" ,r-car)
5248 ("r-colorspace" ,r-colorspace)
5249 ("r-data-table" ,r-data-table)
5250 ("r-e1071" ,r-e1071)
5251 ("r-laeken" ,r-laeken)
5252 ("r-magrittr" ,r-magrittr)
5253 ("r-mass" ,r-mass)
5254 ("r-nnet" ,r-nnet)
5255 ("r-ranger" ,r-ranger)
5256 ("r-rcpp" ,r-rcpp)
5257 ("r-robustbase" ,r-robustbase)
5258 ("r-sp" ,r-sp)
5259 ("r-vcd" ,r-vcd)))
5260 (home-page "https://github.com/alexkowa/VIM")
5261 (synopsis "Visualization and imputation of missing values")
5262 (description
5263 "This package provides tools for the visualization of missing and/or
5264 imputed values are introduced, which can be used for exploring the data and
5265 the structure of the missing and/or imputed values. Depending on this
5266 structure of the missing values, the corresponding methods may help to
5267 identify the mechanism generating the missing values and allows to explore the
5268 data including missing values. In addition, the quality of imputation can be
5269 visually explored using various univariate, bivariate, multiple and
5270 multivariate plot methods.")
5271 (license license:gpl2+)))
5272
5273 (define-public r-fnn
5274 (package
5275 (name "r-fnn")
5276 (version "1.1.3")
5277 (source
5278 (origin
5279 (method url-fetch)
5280 (uri (cran-uri "FNN" version))
5281 (sha256
5282 (base32
5283 "0cllqlnynm5yaj4r64mqyyfc8phkb38rwssq8k8ikgfgr4jklxny"))))
5284 (properties `((upstream-name . "FNN")))
5285 (build-system r-build-system)
5286 (home-page "https://cran.r-project.org/web/packages/FNN")
5287 (synopsis "Fast nearest neighbor search algorithms and applications")
5288 (description
5289 "This package provides cover-tree and kd-tree fast k-nearest neighbor
5290 search algorithms. Related applications including KNN classification,
5291 regression and information measures are implemented.")
5292 ;; The DESCRIPTION file erroneously states that GPL version 2.1 or
5293 ;; later can be used.
5294 (license license:gpl2+)))
5295
5296 (define-public r-smoother
5297 (package
5298 (name "r-smoother")
5299 (version "1.1")
5300 (source
5301 (origin
5302 (method url-fetch)
5303 (uri (cran-uri "smoother" version))
5304 (sha256
5305 (base32
5306 "0nqr1bvlr5bnasqg74zmknjjl4x28kla9h5cxpga3kq5z215pdci"))))
5307 (build-system r-build-system)
5308 (propagated-inputs
5309 `(("r-ttr" ,r-ttr)))
5310 (home-page "https://cran.r-project.org/web/packages/smoother")
5311 (synopsis "Functions relating to the smoothing of numerical data")
5312 (description
5313 "This package provides a collection of methods for smoothing numerical
5314 data, commencing with a port of the Matlab gaussian window smoothing function.
5315 In addition, several functions typically used in smoothing of financial data
5316 are included.")
5317 (license license:gpl2)))
5318
5319 (define-public r-riverplot
5320 (package
5321 (name "r-riverplot")
5322 (version "0.6")
5323 (source
5324 (origin
5325 (method url-fetch)
5326 (uri (cran-uri "riverplot" version))
5327 (sha256
5328 (base32
5329 "0q1icpny8nkxyjhawyjzwrw8qlz0ayn2xyrsqrm4vkxyv6c9xk8z"))))
5330 (build-system r-build-system)
5331 (home-page "https://logfc.wordpress.com")
5332 (synopsis "Sankey or ribbon plots")
5333 (description
5334 "Sankey plots are a type of diagram that is convenient to illustrate how
5335 flow of information, resources etc. separates and joins, much like observing
5336 how rivers split and merge. For example, they can be used to compare
5337 different clusterings. This package provides an implementation of Sankey
5338 plots for R.")
5339 (license license:gpl2+)))
5340
5341 (define-public r-dyn
5342 (package
5343 (name "r-dyn")
5344 (version "0.2-9.6")
5345 (source
5346 (origin
5347 (method url-fetch)
5348 (uri (cran-uri "dyn" version))
5349 (sha256
5350 (base32
5351 "16fqv9k7yxdgybwzafjkyqm16qpgqz13lcjpi6a1nc8xbzlzh0gb"))))
5352 (build-system r-build-system)
5353 (propagated-inputs
5354 `(("r-zoo" ,r-zoo)))
5355 (home-page "https://cran.r-project.org/web/packages/dyn")
5356 (synopsis "Time series regression")
5357 (description
5358 "This package provides the dyn class interfaces @code{ts}, @code{irts},
5359 @code{zoo} and @code{zooreg} time series classes to @code{lm}, @code{glm},
5360 @code{loess}, @code{quantreg::rq}, @code{MASS::rlm},
5361 @code{MCMCpack::MCMCregress()}, @code{quantreg::rq()},
5362 @code{randomForest::randomForest()} and other regression functions, allowing
5363 those functions to be used with time series including specifications that may
5364 contain lags, diffs and missing values.")
5365 ;; Any GPL version.
5366 (license license:gpl2+)))
5367
5368 (define-public r-catdap
5369 (package
5370 (name "r-catdap")
5371 (version "1.3.5")
5372 (source
5373 (origin
5374 (method url-fetch)
5375 (uri (cran-uri "catdap" version))
5376 (sha256
5377 (base32
5378 "0fyhl69z2lznymvpzxra9qvcg85ggzkfjy68c6mzdmf1ja44d2k5"))))
5379 (build-system r-build-system)
5380 (native-inputs
5381 `(("gfortran" ,gfortran)))
5382 (home-page "https://cran.r-project.org/web/packages/catdap/")
5383 (synopsis "Tools for categorical data analysis")
5384 (description
5385 "This package provides functions for analyzing multivariate data.
5386 Dependencies of the distribution of the specified variable (response
5387 variable) to other variables (explanatory variables) are derived and
5388 evaluated by the @dfn{Akaike Information Criterion} (AIC).")
5389 (license license:gpl2+)))
5390
5391 (define-public r-arules
5392 (package
5393 (name "r-arules")
5394 (version "1.6-5")
5395 (source
5396 (origin
5397 (method url-fetch)
5398 (uri (cran-uri "arules" version))
5399 (sha256
5400 (base32
5401 "0bcvfn8lvcv74vv9z3kgg7yq5hm7wjqhmzadi55cbm8zxd76g84v"))))
5402 (build-system r-build-system)
5403 (propagated-inputs
5404 `(("r-matrix" ,r-matrix)))
5405 (home-page "https://github.com/mhahsler/arules")
5406 (synopsis "Mining association rules and frequent itemsets")
5407 (description
5408 "This package provides an infrastructure for representing, manipulating
5409 and analyzing transaction data and patterns (frequent itemsets and association rules).
5410 It also provides C implementations of the association mining algorithms Apriori
5411 and Eclat.")
5412 (license license:gpl3)))
5413
5414 (define-public r-parsedate
5415 (package
5416 (name "r-parsedate")
5417 (version "1.2.0")
5418 (source
5419 (origin
5420 (method url-fetch)
5421 (uri (cran-uri "parsedate" version))
5422 (sha256
5423 (base32
5424 "0gb3w6hmwxayhijpf36p5dk4h6bbdps57x3cgikwvvxkgi83rarr"))))
5425 (build-system r-build-system)
5426 (propagated-inputs
5427 `(("r-rematch2" ,r-rematch2)))
5428 (home-page "https://github.com/gaborcsardi/parsedate")
5429 (synopsis
5430 "Recognize and parse dates in various formats")
5431 (description
5432 "This package provides three functions for dealing with dates:
5433 @code{parse_iso_8601} recognizes and parses all valid ISO 8601 date and
5434 time formats, @code{parse_date} parses dates in unspecified formats,
5435 and @code{format_iso_8601} formats a date in ISO 8601 format.")
5436 (license license:gpl2)))
5437
5438 (define-public r-abc-data
5439 (package
5440 (name "r-abc-data")
5441 (version "1.0")
5442 (source
5443 (origin
5444 (method url-fetch)
5445 (uri (cran-uri "abc.data" version))
5446 (sha256
5447 (base32
5448 "1bv1n68ah714ws58cf285n2s2v5vn7382lfjca4jxph57lyg8hmj"))))
5449 (properties `((upstream-name . "abc.data")))
5450 (build-system r-build-system)
5451 (home-page "https://cran.r-project.org/web/packages/abc.data/")
5452 (synopsis "Data for Approximate Bayesian Computation (ABC) package")
5453 (description
5454 "This package contains data which are used by functions of the abc
5455 package which implements several @dfn{Approximate Bayesian Computation} (ABC)
5456 algorithms for performing parameter estimation, model selection, and
5457 goodness-of-fit.")
5458 (license license:gpl3+)))
5459
5460 (define-public r-abc
5461 (package
5462 (name "r-abc")
5463 (version "2.1")
5464 (source
5465 (origin
5466 (method url-fetch)
5467 (uri (cran-uri "abc" version))
5468 (sha256
5469 (base32
5470 "0ngzaaz2y2s03fhngvwipmy4kq38xrmyddaz6a6l858rxvadrlhb"))))
5471 (build-system r-build-system)
5472 (propagated-inputs
5473 `(("r-abc-data" ,r-abc-data)
5474 ("r-locfit" ,r-locfit)
5475 ("r-mass" ,r-mass)
5476 ("r-nnet" ,r-nnet)
5477 ("r-quantreg" ,r-quantreg)))
5478 (home-page "https://cran.r-project.org/web/packages/abc/")
5479 (synopsis "Tools for Approximate Bayesian Computation (ABC)")
5480 (description
5481 "This package implements several @dfn{Approximate Bayesian
5482 Computation} (ABC) algorithms for performing parameter estimation, model
5483 selection, and goodness-of-fit. Cross-validation tools are also available for
5484 measuring the accuracy of ABC estimates, and to calculate the
5485 misclassification probabilities of different models.")
5486 (license license:gpl3+)))
5487
5488 (define-public r-zip
5489 (package
5490 (name "r-zip")
5491 (version "2.0.4")
5492 (source
5493 (origin
5494 (method url-fetch)
5495 (uri (cran-uri "zip" version))
5496 (sha256
5497 (base32
5498 "1c02amk3pl6xir5jnbfiwiv2wvpkpbkkb1w71y6lf2yk7g3d0pdb"))))
5499 (build-system r-build-system)
5500 (home-page "https://github.com/gaborcsardi/zip")
5501 (synopsis "Cross-platform Zip compression")
5502 (description
5503 "This package provides a cross-platform Zip compression library for R.
5504 It is a replacement for the @code{zip} function, that does not require any
5505 additional external tools on any platform.")
5506 (license license:cc0)))
5507
5508 (define-public r-openxlsx
5509 (package
5510 (name "r-openxlsx")
5511 (version "4.1.4")
5512 (source
5513 (origin
5514 (method url-fetch)
5515 (uri (cran-uri "openxlsx" version))
5516 (sha256
5517 (base32
5518 "1mwxldw9i9nfksx1i6h1kfs7vmsz9fgyllbsipar4vnfyqhqp8q7"))))
5519 (build-system r-build-system)
5520 (propagated-inputs
5521 `(("r-rcpp" ,r-rcpp)
5522 ("r-stringi" ,r-stringi)
5523 ("r-zip" ,r-zip)))
5524 (home-page "https://github.com/awalker89/openxlsx")
5525 (synopsis "Read, write and edit XLSX files")
5526 (description
5527 "This package simplifies the creation of Excel @code{.xlsx} files by
5528 providing a high level interface to writing, styling and editing worksheets.
5529 Through the use of Rcpp, read/write times are comparable to the @code{xlsx}
5530 and @code{XLConnect} packages with the added benefit of removing the
5531 dependency on Java.")
5532 (license license:gpl3)))
5533
5534 (define-public r-rio
5535 (package
5536 (name "r-rio")
5537 (version "0.5.16")
5538 (source
5539 (origin
5540 (method url-fetch)
5541 (uri (cran-uri "rio" version))
5542 (sha256
5543 (base32
5544 "0rfl56fdawlhc98451a9lcb6a6m56kw0i7dvd5hx58z025d8vsyk"))))
5545 (build-system r-build-system)
5546 (propagated-inputs
5547 `(("r-curl" ,r-curl)
5548 ("r-data-table" ,r-data-table)
5549 ("r-foreign" ,r-foreign)
5550 ("r-haven" ,r-haven)
5551 ("r-openxlsx" ,r-openxlsx)
5552 ("r-readxl" ,r-readxl)
5553 ("r-tibble" ,r-tibble)))
5554 (home-page "https://github.com/leeper/rio")
5555 (synopsis "Swiss-army knife for data I/O")
5556 (description
5557 "This package provides streamlined data import and export infrastructure
5558 by making assumptions that the user is probably willing to make: @code{import}
5559 and @code{export} determine the data structure from the file extension,
5560 reasonable defaults are used for data import and export (e.g.,
5561 @code{stringsAsFactors=FALSE}), web-based import is natively
5562 supported (including from SSL/HTTPS), compressed files can be read directly
5563 without explicit decompression, and fast import packages are used where
5564 appropriate. An additional convenience function, @code{convert}, provides a
5565 simple method for converting between file types.")
5566 (license license:gpl2)))
5567
5568 (define-public r-maptools
5569 (package
5570 (name "r-maptools")
5571 (version "0.9-9")
5572 (source
5573 (origin
5574 (method url-fetch)
5575 (uri (cran-uri "maptools" version))
5576 (sha256
5577 (base32
5578 "0v4llkxk8qs61vq4ykvaim4k23aagdaz0p62ns7zfq02sln3pfk9"))))
5579 (build-system r-build-system)
5580 (propagated-inputs
5581 `(("r-foreign" ,r-foreign)
5582 ("r-lattice" ,r-lattice)
5583 ("r-sp" ,r-sp)))
5584 (home-page "https://r-forge.r-project.org/projects/maptools/")
5585 (synopsis "Tools for reading and handling spatial objects")
5586 (description
5587 "This package provides a set of tools for manipulating and reading
5588 geographic data, in particular ESRI Shapefiles. It includes binary access to
5589 GSHHG shoreline files. The package also provides interface wrappers for
5590 exchanging spatial objects with other R packages.")
5591 ;; The C source files from shapelib are released under the Expat license.
5592 ;; The R code is released under GPL version 2 or later.
5593 (license (list license:gpl2+
5594 license:expat))))
5595
5596 (define-public r-later
5597 (package
5598 (name "r-later")
5599 (version "1.0.0")
5600 (source
5601 (origin
5602 (method url-fetch)
5603 (uri (cran-uri "later" version))
5604 (sha256
5605 (base32
5606 "11xjavj7siz0xv2ffq1ld4bwl35jyrcfpvvs4p3ilpifxx49hyr7"))))
5607 (build-system r-build-system)
5608 (propagated-inputs
5609 `(("r-bh" ,r-bh)
5610 ("r-rcpp" ,r-rcpp)
5611 ("r-rlang" ,r-rlang)))
5612 (home-page "https://github.com/r-lib/later")
5613 (synopsis "Utilities for delaying function execution")
5614 (description
5615 "This package provides tools to execute arbitrary R or C functions some
5616 time after the current time, after the R execution stack has emptied.")
5617 (license license:gpl2+)))
5618
5619 (define-public r-promises
5620 (package
5621 (name "r-promises")
5622 (version "1.1.0")
5623 (source
5624 (origin
5625 (method url-fetch)
5626 (uri (cran-uri "promises" version))
5627 (sha256
5628 (base32
5629 "01l0ydjvvy6afcg5d6pzvk1ikd3djq8n2flv8c831ksn68z0zsn8"))))
5630 (build-system r-build-system)
5631 (propagated-inputs
5632 `(("r-later" ,r-later)
5633 ("r-magrittr" ,r-magrittr)
5634 ("r-r6" ,r-r6)
5635 ("r-rcpp" ,r-rcpp)
5636 ("r-rlang" ,r-rlang)))
5637 (home-page "https://rstudio.github.io/promises")
5638 (synopsis "Abstractions for promise-based asynchronous programming")
5639 (description
5640 "This package provides fundamental abstractions for doing asynchronous
5641 programming in R using promises. Asynchronous programming is useful for
5642 allowing a single R process to orchestrate multiple tasks in the background
5643 while also attending to something else. Semantics are similar to JavaScript
5644 promises, but with a syntax that is idiomatic R.")
5645 (license license:expat)))
5646
5647 (define-public r-dosnow
5648 (package
5649 (name "r-dosnow")
5650 (version "1.0.18")
5651 (source
5652 (origin
5653 (method url-fetch)
5654 (uri (cran-uri "doSNOW" version))
5655 (sha256
5656 (base32
5657 "0rj72z5505cprh6wykhhiz08l9bmd966srqh2qypwivf321bvrvh"))))
5658 (properties `((upstream-name . "doSNOW")))
5659 (build-system r-build-system)
5660 (propagated-inputs
5661 `(("r-foreach" ,r-foreach)
5662 ("r-iterators" ,r-iterators)
5663 ("r-snow" ,r-snow)))
5664 (home-page "https://cran.r-project.org/web/packages/doSNOW")
5665 (synopsis "Foreach parallel adaptor for the snow package")
5666 (description
5667 "This package provides a parallel backend for the @code{%dopar%} function
5668 using the @code{snow} package.")
5669 (license license:gpl2)))
5670
5671 (define-public r-snowfall
5672 (package
5673 (name "r-snowfall")
5674 (version "1.84-6.1")
5675 (source (origin
5676 (method url-fetch)
5677 (uri (cran-uri "snowfall" version))
5678 (sha256
5679 (base32 "13941rlw1jsdjsndp1plzj1cq5aqravizkrqn6l25r9im7rnsi2w"))))
5680 (build-system r-build-system)
5681 (propagated-inputs
5682 `(("r-snow" ,r-snow)))
5683 (home-page "https://cran.r-project.org/web/packages/snowfall/")
5684 (synopsis "Easier cluster computing")
5685 (description "This package is a usability wrapper around snow for easier
5686 development of parallel R programs. This package offers e.g. extended error
5687 checks, and additional functions. All functions work in sequential mode, too,
5688 if no cluster is present or wished. The package is also designed as connector
5689 to the cluster management tool @code{sfCluster}, but can also used without
5690 it.")
5691 (license license:gpl2+)))
5692
5693 (define-public r-rappdirs
5694 (package
5695 (name "r-rappdirs")
5696 (version "0.3.1")
5697 (source
5698 (origin
5699 (method url-fetch)
5700 (uri (cran-uri "rappdirs" version))
5701 (sha256
5702 (base32
5703 "0ji6sg3bdn5gazkq14xmmcq7jnbsyxw4lzmmbgv6526j2vn93n1g"))))
5704 (build-system r-build-system)
5705 (home-page "https://cran.r-project.org/web/packages/rappdirs/")
5706 (synopsis "Determine where to save data, caches, and logs")
5707 (description
5708 "This package provides an easy way to determine which directories on the
5709 user's computer should be used to save data, caches and logs. It is a port of
5710 Python's @url{https://github.com/ActiveState/appdirs,Appdirs} to R.")
5711 (license license:expat)))
5712
5713 (define-public r-renv
5714 (package
5715 (name "r-renv")
5716 (version "0.9.3")
5717 (source
5718 (origin
5719 (method url-fetch)
5720 (uri (cran-uri "renv" version))
5721 (sha256
5722 (base32
5723 "02ayfgbpw4b58148dcxz31anaxncwczmxs1zzkskwj0rzhb2x60r"))))
5724 (properties `((upstream-name . "renv")))
5725 (build-system r-build-system)
5726 (home-page "https://rstudio.github.io/renv")
5727 (synopsis "Project environments")
5728 (description
5729 "This package provides a dependency management toolkit for R. Using
5730 renv, you can create and manage project-local R libraries, save the state of
5731 these libraries to a lockfile, and later restore your library as required.
5732 Together, these tools can help make your projects more isolated, portable, and
5733 reproducible.")
5734 (license license:expat)))
5735
5736 (define-public r-learnr
5737 (package
5738 (name "r-learnr")
5739 (version "0.10.1")
5740 (source
5741 (origin
5742 (method url-fetch)
5743 (uri (cran-uri "learnr" version))
5744 (sha256
5745 (base32
5746 "08xwmms6x58y3dsfbl9c6d03145hb4ij97nqr1cc9dxxilmr6x31"))))
5747 (build-system r-build-system)
5748 (propagated-inputs
5749 `(("r-checkmate" ,r-checkmate)
5750 ("r-ellipsis" ,r-ellipsis)
5751 ("r-evaluate" ,r-evaluate)
5752 ("r-htmltools" ,r-htmltools)
5753 ("r-htmlwidgets" ,r-htmlwidgets)
5754 ("r-jsonlite" ,r-jsonlite)
5755 ("r-knitr" ,r-knitr)
5756 ("r-markdown" ,r-markdown)
5757 ("r-rappdirs" ,r-rappdirs)
5758 ("r-renv" ,r-renv)
5759 ("r-rmarkdown" ,r-rmarkdown)
5760 ("r-rprojroot" ,r-rprojroot)
5761 ("r-shiny" ,r-shiny)
5762 ("r-withr" ,r-withr)))
5763 (home-page "https://rstudio.github.io/learnr/")
5764 (synopsis "Interactive tutorials for R")
5765 (description
5766 "This package provides tools to create interactive tutorials using R
5767 Markdown. Use a combination of narrative, figures, videos, exercises, and
5768 quizzes to create self-paced tutorials for learning about R and R packages.")
5769 (license license:asl2.0)))
5770
5771 (define-public r-analytics
5772 (package
5773 (name "r-analytics")
5774 (version "3.0")
5775 (source
5776 (origin
5777 (method url-fetch)
5778 (uri (cran-uri "analytics" version))
5779 (sha256
5780 (base32
5781 "0js3c8lwj3knccb55nq03cbjlf4w390p9aid2mi5x80l3ayd9in1"))))
5782 (build-system r-build-system)
5783 (propagated-inputs
5784 `(("r-car" ,r-car)
5785 ("r-cluster" ,r-cluster)
5786 ("r-fractal" ,r-fractal)
5787 ("r-lmtest" ,r-lmtest)
5788 ("r-mass" ,r-mass)
5789 ("r-np" ,r-np)
5790 ("r-powerplus" ,r-powerplus)
5791 ("r-robust" ,r-robust)
5792 ("r-trend" ,r-trend)
5793 ("r-tsa" ,r-tsa)
5794 ("r-urca" ,r-urca)
5795 ("r-vim" ,r-vim)))
5796 (home-page "https://cran.r-project.org/web/packages/analytics/")
5797 (synopsis "Collection of data analysis tools")
5798 (description
5799 "This package is a collection of data analysis tools. It includes tools
5800 for regression outlier detection in a fitted linear model, stationary
5801 bootstrap using a truncated geometric distribution, a comprehensive test for
5802 weak stationarity, column means by group, weighted biplots, and a heuristic to
5803 obtain a better initial configuration in non-metric MDS.")
5804 (license license:gpl2)))
5805
5806 (define-public r-reticulate
5807 (package
5808 (name "r-reticulate")
5809 (version "1.15")
5810 (source
5811 (origin
5812 (method url-fetch)
5813 (uri (cran-uri "reticulate" version))
5814 (sha256
5815 (base32
5816 "03dmnx9jhxx6vfbv2i5n6sln38kb9zkshz982pg3l9i4jjf3xns7"))))
5817 (build-system r-build-system)
5818 (inputs `(("python" ,python)))
5819 (propagated-inputs
5820 `(("r-rappdirs" ,r-rappdirs)
5821 ("r-jsonlite" ,r-jsonlite)
5822 ("r-matrix" ,r-matrix)
5823 ("r-rcpp" ,r-rcpp)))
5824 (native-inputs
5825 `(("r-knitr" ,r-knitr)))
5826 (home-page "https://github.com/rstudio/reticulate")
5827 (synopsis "R interface to Python")
5828 (description
5829 "This package provides an interface from R to Python modules, classes,
5830 and functions. When calling into Python, R data types are automatically
5831 converted to their equivalent Python types. When values are returned from
5832 Python to R they are converted back to R types.")
5833 (license license:asl2.0)))
5834
5835 (define-public r-bibtex
5836 (package
5837 (name "r-bibtex")
5838 (version "0.4.2.2")
5839 (source
5840 (origin
5841 (method url-fetch)
5842 (uri (cran-uri "bibtex" version))
5843 (sha256
5844 (base32
5845 "140hkjzdp3033cvji861rd06z1ixgpnn4n5amygqsmhnixk8ff07"))))
5846 (build-system r-build-system)
5847 (propagated-inputs `(("r-stringr" ,r-stringr)))
5848 (home-page "https://github.com/romainfrancois/bibtex")
5849 (synopsis "Bibtex parser")
5850 (description "This package provides a utility for R to parse a bibtex
5851 file.")
5852 (license license:gpl2+)))
5853
5854 (define-public r-ggseqlogo
5855 (package
5856 (name "r-ggseqlogo")
5857 (version "0.1")
5858 (source
5859 (origin
5860 (method url-fetch)
5861 (uri (cran-uri "ggseqlogo" version))
5862 (sha256
5863 (base32
5864 "13q6kcpxrqxqbji889fx63p0nsi08lk5yymkchig75r5k1d18ky1"))))
5865 (build-system r-build-system)
5866 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
5867 (home-page "https://github.com/omarwagih/ggseqlogo")
5868 (synopsis "ggplot2 extension for drawing genetic sequence logos")
5869 (description
5870 "The range of functions provided by this package makes it possible to
5871 draw highly versatile genomic sequence logos. Features include, but are not
5872 limited to, modifying colour schemes and fonts used to draw the logo,
5873 generating multiple logo plots, and aiding the visualisation with annotations.
5874 Sequence logos can easily be combined with other ggplot2 plots.")
5875 ;; Unspecified version of the LGPL.
5876 (license license:lgpl3+)))
5877
5878 (define-public r-ggsci
5879 (package
5880 (name "r-ggsci")
5881 (version "2.9")
5882 (source
5883 (origin
5884 (method url-fetch)
5885 (uri (cran-uri "ggsci" version))
5886 (sha256
5887 (base32
5888 "0g73x6grbka7ahjh6z23m3wrcifp5rdfdiasbl8lq4sp6rplxwaa"))))
5889 (build-system r-build-system)
5890 (propagated-inputs
5891 `(("r-ggplot2" ,r-ggplot2)
5892 ("r-scales" ,r-scales)))
5893 (home-page "https://nanx.me/ggsci/")
5894 (synopsis "Scientific journal and sci-fi themed color palettes for ggplot2")
5895 (description
5896 "This package provides a collection of ggplot2 color palettes inspired by
5897 plots in scientific journals, data visualization libraries, science fiction
5898 movies, and TV shows.")
5899 (license license:gpl3)))
5900
5901 (define-public r-ggsignif
5902 (package
5903 (name "r-ggsignif")
5904 (version "0.6.0")
5905 (source
5906 (origin
5907 (method url-fetch)
5908 (uri (cran-uri "ggsignif" version))
5909 (sha256
5910 (base32
5911 "17j9hg967k1wp9xw3x84mqss58jkb8pvlrnlchz4i1hklgykxqbg"))))
5912 (build-system r-build-system)
5913 (native-inputs
5914 `(("r-knitr" ,r-knitr)))
5915 (propagated-inputs
5916 `(("r-ggplot2" ,r-ggplot2)))
5917 (home-page "https://github.com/const-ae/ggsignif")
5918 (synopsis "Significance brackets for ggplot2")
5919 (description
5920 "Enrich your ggplots with group-wise comparisons. This package provides
5921 an easy way to indicate if two groups are significantly different. Commonly
5922 this is shown by a bracket on top connecting the groups of interest which
5923 itself is annotated with the level of significance. The package provides a
5924 single layer that takes the groups for comparison and the test as arguments
5925 and adds the annotation to the plot.")
5926 (license license:gpl3)))
5927
5928 (define-public r-ggpubr
5929 (package
5930 (name "r-ggpubr")
5931 (version "0.2.5")
5932 (source
5933 (origin
5934 (method url-fetch)
5935 (uri (cran-uri "ggpubr" version))
5936 (sha256
5937 (base32
5938 "0kb3hpmnhj4mkbx1kx0kv5y22himr8dijqx7ra0h8hi0pf2l2ha7"))))
5939 (build-system r-build-system)
5940 (propagated-inputs
5941 `(("r-cowplot" ,r-cowplot)
5942 ("r-dplyr" ,r-dplyr)
5943 ("r-ggplot2" ,r-ggplot2)
5944 ("r-ggrepel" ,r-ggrepel)
5945 ("r-ggsci" ,r-ggsci)
5946 ("r-ggsignif" ,r-ggsignif)
5947 ("r-glue" ,r-glue)
5948 ("r-gridextra" ,r-gridextra)
5949 ("r-magrittr" ,r-magrittr)
5950 ("r-polynom" ,r-polynom)
5951 ("r-purrr" ,r-purrr)
5952 ("r-rlang" ,r-rlang)
5953 ("r-scales" ,r-scales)
5954 ("r-tidyr" ,r-tidyr)))
5955 (home-page "http://www.sthda.com/english/rpkgs/ggpubr")
5956 (synopsis "ggplot2-based publication-ready plots")
5957 (description
5958 "The ggplot2 package is an excellent and flexible package for elegant
5959 data visualization in R. However the default generated plots require some
5960 formatting before we can send them for publication. The ggpubr package
5961 provides some easy-to-use functions for creating and customizing ggplot2-based
5962 publication-ready plots.")
5963 (license license:gpl2)))
5964
5965 (define-public r-ellipse
5966 (package
5967 (name "r-ellipse")
5968 (version "0.4.1")
5969 (source
5970 (origin
5971 (method url-fetch)
5972 (uri (cran-uri "ellipse" version))
5973 (sha256
5974 (base32
5975 "0g82vc51m3c1k0hnpp2zla6amxxgk2mmkl8ssnsc49jv3599r6hs"))))
5976 (build-system r-build-system)
5977 (home-page "https://cran.r-project.org/web/packages/ellipse/")
5978 (synopsis "Functions for drawing ellipses and ellipse-like confidence regions")
5979 (description
5980 "This package contains various routines for drawing ellipses and
5981 ellipse-like confidence regions, implementing the plots described in Murdoch
5982 and Chow (1996), A graphical display of large correlation matrices, The
5983 American Statistician 50, 178-180. There are also routines implementing the
5984 profile plots described in Bates and Watts (1988), Nonlinear Regression
5985 Analysis and its Applications.")
5986 (license license:gpl2+)))
5987
5988 (define-public r-flashclust
5989 (package
5990 (name "r-flashclust")
5991 (version "1.01-2")
5992 (source
5993 (origin
5994 (method url-fetch)
5995 (uri (cran-uri "flashClust" version))
5996 (sha256
5997 (base32
5998 "0l4lpz451ll7f7lfxmb7ds24ppzhfg1c3ypvydglcc35p2dq99s8"))))
5999 (properties `((upstream-name . "flashClust")))
6000 (build-system r-build-system)
6001 (native-inputs `(("gfortran" ,gfortran)))
6002 (home-page "https://cran.r-project.org/web/packages/flashClust/")
6003 (synopsis "Implementation of optimal hierarchical clustering")
6004 (description
6005 "This package provides a fast implementation of hierarchical
6006 clustering.")
6007 (license license:gpl2+)))
6008
6009 (define-public r-factominer
6010 (package
6011 (name "r-factominer")
6012 (version "2.3")
6013 (source
6014 (origin
6015 (method url-fetch)
6016 (uri (cran-uri "FactoMineR" version))
6017 (sha256
6018 (base32
6019 "0ldgf3daksh6lpblhqys67m4mxqx3q9s9n5plfam6dwshfik0ky6"))))
6020 (properties `((upstream-name . "FactoMineR")))
6021 (build-system r-build-system)
6022 (propagated-inputs
6023 `(("r-car" ,r-car)
6024 ("r-cluster" ,r-cluster)
6025 ("r-ellipse" ,r-ellipse)
6026 ("r-flashclust" ,r-flashclust)
6027 ("r-ggplot2" ,r-ggplot2)
6028 ("r-ggrepel" ,r-ggrepel)
6029 ("r-lattice" ,r-lattice)
6030 ("r-leaps" ,r-leaps)
6031 ("r-mass" ,r-mass)
6032 ("r-scatterplot3d" ,r-scatterplot3d)))
6033 (home-page "http://factominer.free.fr")
6034 (synopsis "Multivariate exploratory data analysis and data mining")
6035 (description
6036 "This package provides exploratory data analysis methods to summarize,
6037 visualize and describe datasets. The main principal component methods are
6038 available, those with the largest potential in terms of applications:
6039 principal component analysis (PCA) when variables are quantitative,
6040 correspondence analysis (CA) and multiple correspondence analysis (MCA) when
6041 variables are categorical, Multiple Factor Analysis when variables are
6042 structured in groups, etc. and hierarchical cluster analysis.")
6043 (license license:gpl2+)))
6044
6045 (define-public r-factoextra
6046 (package
6047 (name "r-factoextra")
6048 (version "1.0.7")
6049 (source
6050 (origin
6051 (method url-fetch)
6052 (uri (cran-uri "factoextra" version))
6053 (sha256
6054 (base32
6055 "1allvdjhd3pq8xz30b1cymwcik5iaahghrjrlnn54cwkfhfg0kv2"))))
6056 (build-system r-build-system)
6057 (propagated-inputs
6058 `(("r-abind" ,r-abind)
6059 ("r-cluster" ,r-cluster)
6060 ("r-dendextend" ,r-dendextend)
6061 ("r-factominer" ,r-factominer)
6062 ("r-ggplot2" ,r-ggplot2)
6063 ("r-ggpubr" ,r-ggpubr)
6064 ("r-ggrepel" ,r-ggrepel)
6065 ("r-reshape2" ,r-reshape2)
6066 ("r-tidyr" ,r-tidyr)))
6067 (home-page "http://www.sthda.com/english/rpkgs/factoextra")
6068 (synopsis "Extract and visualize the results of multivariate data analyses")
6069 (description
6070 "This package provides some easy-to-use functions to extract and
6071 visualize the output of multivariate data analyses, including
6072 @code{PCA} (Principal Component Analysis), @code{CA} (Correspondence
6073 Analysis), @code{MCA} (Multiple Correspondence Analysis), @code{FAMD} (Factor
6074 Analysis of Mixed Data), @code{MFA} (Multiple Factor Analysis) and
6075 @code{HMFA} (Hierarchical Multiple Factor Analysis) functions from different R
6076 packages. It contains also functions for simplifying some clustering analysis
6077 steps and provides ggplot2-based elegant data visualization.")
6078 (license license:gpl2)))
6079
6080 (define-public r-fansi
6081 (package
6082 (name "r-fansi")
6083 (version "0.4.1")
6084 (source
6085 (origin
6086 (method url-fetch)
6087 (uri (cran-uri "fansi" version))
6088 (sha256
6089 (base32
6090 "028ywjy538psnmdnddvy5jr3idzffr4hikzr4x97x0m30g4fws9w"))))
6091 (build-system r-build-system)
6092 (native-inputs
6093 `(("r-knitr" ,r-knitr))) ; for vignettes
6094 (home-page "https://github.com/brodieG/fansi")
6095 (synopsis "ANSI control sequence aware string functions")
6096 (description
6097 "This package provides counterparts to R string manipulation functions
6098 that account for the effects of ANSI text formatting control sequences.")
6099 (license license:gpl2+)))
6100
6101 (define-public r-nbclust
6102 (package
6103 (name "r-nbclust")
6104 (version "3.0")
6105 (source
6106 (origin
6107 (method url-fetch)
6108 (uri (cran-uri "NbClust" version))
6109 (sha256
6110 (base32
6111 "1vwb48zy6ln1ddpqmfngii1i80n8qmqyxnzdp6gbaq96lakl3w3c"))))
6112 (properties `((upstream-name . "NbClust")))
6113 (build-system r-build-system)
6114 (home-page "https://sites.google.com/site/malikacharrad/research/nbclust-package")
6115 (synopsis "Determine the best number of clusters in a data set")
6116 (description
6117 "NbClust provides 30 indexes for determining the optimal number of
6118 clusters in a data set and offers the best clustering scheme from different
6119 results to the user.")
6120 (license license:gpl2)))
6121
6122 (define-public r-hdf5r
6123 (package
6124 (name "r-hdf5r")
6125 (version "1.3.2")
6126 (source
6127 (origin
6128 (method url-fetch)
6129 (uri (cran-uri "hdf5r" version))
6130 (sha256
6131 (base32
6132 "0c2p06k9bp9rf0fyavnxw5d8jr2bbgx3gjblahz581cpvsfksj9i"))))
6133 (build-system r-build-system)
6134 (inputs
6135 `(("hdf5" ,hdf5)
6136 ("zlib" ,zlib)))
6137 (propagated-inputs
6138 `(("r-bit64" ,r-bit64)
6139 ("r-r6" ,r-r6)))
6140 (native-inputs
6141 `(("r-knitr" ,r-knitr)))
6142 (home-page "https://hhoeflin.github.io/hdf5r")
6143 (synopsis "Interface to the HDF5 binary data format")
6144 (description
6145 "HDF5 is a data model, library and file format for storing and managing
6146 large amounts of data. This package provides a nearly feature complete,
6147 object oriented wrapper for the HDF5 API using R6 classes. Additionally,
6148 functionality is added so that HDF5 objects behave very similar to their
6149 corresponding R counterparts.")
6150 (license license:asl2.0)))
6151
6152 (define-public r-itertools
6153 (package
6154 (name "r-itertools")
6155 (version "0.1-3")
6156 (source
6157 (origin
6158 (method url-fetch)
6159 (uri (cran-uri "itertools" version))
6160 (sha256
6161 (base32
6162 "1ls5biiva10pb1dj3ph4griykb9vam02hkrdmlr5a5wf660hg6xn"))))
6163 (build-system r-build-system)
6164 (propagated-inputs
6165 `(("r-iterators" ,r-iterators)))
6166 (home-page "https://cran.r-project.org/web/packages/itertools/")
6167 (synopsis "Iterator tools")
6168 (description
6169 "This package provides various tools for creating iterators, many
6170 patterned after functions in the Python @code{itertools} module, and others
6171 patterned after functions in the snow package.")
6172 (license license:gpl2)))
6173
6174 (define-public r-polynom
6175 (package
6176 (name "r-polynom")
6177 (version "1.4-0")
6178 (source
6179 (origin
6180 (method url-fetch)
6181 (uri (cran-uri "polynom" version))
6182 (sha256
6183 (base32
6184 "1pflscwc0qzdf0y60j7s0dkglgmz18xajywfbn6s263idyr8idy5"))))
6185 (build-system r-build-system)
6186 (home-page "https://cran.r-project.org/web/packages/polynom/")
6187 (synopsis "Functions for univariate polynomial manipulations")
6188 (description
6189 "This package provides a collection of functions to implement a class for
6190 univariate polynomial manipulations.")
6191 (license license:gpl2)))
6192
6193 (define-public r-gbrd
6194 (package
6195 (name "r-gbrd")
6196 (version "0.4-11")
6197 (source
6198 (origin
6199 (method url-fetch)
6200 (uri (cran-uri "gbRd" version))
6201 (sha256
6202 (base32
6203 "06x97rw5i6v6cgjxkfhxnw4dn7lghn5q6ra7ri5ag1x9dkfzcl82"))))
6204 (properties `((upstream-name . "gbRd")))
6205 (build-system r-build-system)
6206 (home-page "https://cran.r-project.org/web/packages/gbRd/")
6207 (synopsis "Utilities for processing Rd objects and files")
6208 (description
6209 "This package provides utilities for processing Rd objects and files.
6210 Extract argument descriptions and other parts of the help pages of
6211 functions.")
6212 (license license:gpl2+)))
6213
6214 (define-public r-rjags
6215 (package
6216 (name "r-rjags")
6217 (version "4-10")
6218 (source
6219 (origin
6220 (method url-fetch)
6221 (uri (cran-uri "rjags" version))
6222 (sha256
6223 (base32
6224 "1nhaim84ww8fd6m8xlpmngqcnp2qpql29ahc38366fxja3ghngmx"))))
6225 (build-system r-build-system)
6226 (propagated-inputs
6227 `(("r-coda" ,r-coda)))
6228 (inputs
6229 `(("jags" ,jags)))
6230 (native-inputs
6231 `(("pkg-config" ,pkg-config)))
6232 (home-page "http://mcmc-jags.sourceforge.net")
6233 (synopsis "Bayesian graphical models using MCMC")
6234 (description
6235 "This package provides an R interface to the JAGS MCMC library. JAGS is
6236 Just Another Gibbs Sampler. It is a program for analysis of Bayesian
6237 hierarchical models using Markov Chain Monte Carlo (MCMC) simulation.")
6238 (license license:gpl2)))
6239
6240 (define-public r-rdpack
6241 (package
6242 (name "r-rdpack")
6243 (version "0.11-1")
6244 (source
6245 (origin
6246 (method url-fetch)
6247 (uri (cran-uri "Rdpack" version))
6248 (sha256
6249 (base32
6250 "080y15p2hl4jsq91ak2f1y2kx1iqq5c5wzyx3zyhjwp01cahy0jq"))))
6251 (properties `((upstream-name . "Rdpack")))
6252 (build-system r-build-system)
6253 (propagated-inputs
6254 `(("r-bibtex" ,r-bibtex)
6255 ("r-gbrd" ,r-gbrd)))
6256 (home-page "https://github.com/GeoBosh/Rdpack")
6257 (synopsis "Update and manipulate Rd documentation objects")
6258 (description
6259 "This package provides functions for manipulation of R documentation
6260 objects, including functions @code{reprompt()} and @code{ereprompt()} for
6261 updating Rd documentation for functions, methods and classes; it also includes
6262 Rd macros for citations and import of references from bibtex files for use in
6263 Rd files and roxygen2 comments, as well as many functions for manipulation of
6264 references and Rd files.")
6265 (license license:gpl2+)))
6266
6267 (define-public r-officer
6268 (package
6269 (name "r-officer")
6270 (version "0.3.8")
6271 (source
6272 (origin
6273 (method url-fetch)
6274 (uri (cran-uri "officer" version))
6275 (sha256
6276 (base32
6277 "0xhx5n6qksyh2s9hvwhnc8y0hn362asc5y94ld06snad786hz0rw"))))
6278 (build-system r-build-system)
6279 (propagated-inputs
6280 `(("r-magrittr" ,r-magrittr)
6281 ("r-r6" ,r-r6)
6282 ("r-uuid" ,r-uuid)
6283 ("r-xml2" ,r-xml2)
6284 ("r-zip" ,r-zip)))
6285 (native-inputs
6286 `(("r-knitr" ,r-knitr)))
6287 (home-page "https://davidgohel.github.io/officer")
6288 (synopsis "Manipulation of Word and PowerPoint documents")
6289 (description
6290 "This package provides tools to access and manipulate Word and PowerPoint
6291 documents from R. The package focuses on tabular and graphical reporting from
6292 R; it also provides two functions that let users get document content into
6293 data objects. A set of functions lets add and remove images, tables and
6294 paragraphs of text in new or existing documents. When working with PowerPoint
6295 presentations, slides can be added or removed; shapes inside slides can also
6296 be added or removed. When working with Word documents, a cursor can be used
6297 to help insert or delete content at a specific location in the document.")
6298 (license license:gpl3)))
6299
6300 (define-public r-abn
6301 (package
6302 (name "r-abn")
6303 (version "2.2")
6304 (source
6305 (origin
6306 (method url-fetch)
6307 (uri (cran-uri "abn" version))
6308 (sha256
6309 (base32
6310 "19w6bdjyp4zwqs6p0flry4qxqynf9rh8ykdrfrp61wrdf7kysw0d"))))
6311 (build-system r-build-system)
6312 (inputs
6313 `(("gsl" ,gsl)))
6314 (propagated-inputs
6315 `(("r-lme4" ,r-lme4)
6316 ("r-mass" ,r-mass)
6317 ("r-nnet" ,r-nnet)
6318 ("r-rcpp" ,r-rcpp)
6319 ("r-rcpparmadillo" ,r-rcpparmadillo)
6320 ("r-rjags" ,r-rjags)))
6321 (home-page "https://r-bayesian-networks.org/")
6322 (synopsis "Modelling multivariate data with additive bayesian networks")
6323 (description
6324 "Bayesian network analysis is a form of probabilistic graphical models
6325 which derives from empirical data a directed acyclic graph, DAG, describing
6326 the dependency structure between random variables. An additive Bayesian
6327 network model consists of a form of a DAG where each node comprises a
6328 @dfn{generalized linear model} (GLM). Additive Bayesian network models are
6329 equivalent to Bayesian multivariate regression using graphical modelling, they
6330 generalises the usual multivariable regression, GLM, to multiple dependent
6331 variables. This package provides routines to help determine optimal Bayesian
6332 network models for a given data set, where these models are used to identify
6333 statistical dependencies in messy, complex data.")
6334 (license license:gpl2+)))
6335
6336 (define-public r-acd
6337 (package
6338 (name "r-acd")
6339 (version "1.5.3")
6340 (source
6341 (origin
6342 (method url-fetch)
6343 (uri (cran-uri "ACD" version))
6344 (sha256
6345 (base32
6346 "1a67bi3hklq8nlc50r0qnyr4k7m9kpvijy8sqqpm54by5hsysfd6"))))
6347 (properties `((upstream-name . "ACD")))
6348 (build-system r-build-system)
6349 (home-page "https://cran.r-project.org/web/packages/ACD/")
6350 (synopsis "Categorical data analysis with complete or missing responses")
6351 (description
6352 "This package provides tools for categorical data analysis with complete
6353 or missing responses.")
6354 (license license:gpl2+)))
6355
6356 (define-public r-acdm
6357 (package
6358 (name "r-acdm")
6359 (version "1.0.4")
6360 (source
6361 (origin
6362 (method url-fetch)
6363 (uri (cran-uri "ACDm" version))
6364 (sha256
6365 (base32
6366 "0b4f02ga5ra66mbrm79g0bnlzmii82rks9kmxixxqgf18yhlyjil"))))
6367 (properties `((upstream-name . "ACDm")))
6368 (build-system r-build-system)
6369 (propagated-inputs
6370 `(("r-dplyr" ,r-dplyr)
6371 ("r-ggplot2" ,r-ggplot2)
6372 ("r-plyr" ,r-plyr)
6373 ("r-rsolnp" ,r-rsolnp)
6374 ("r-zoo" ,r-zoo)))
6375 (home-page "https://cran.r-project.org/web/packages/ACDm/")
6376 (synopsis "Tools for Autoregressive Conditional Duration Models")
6377 (description
6378 "ACDm is a package for Autoregressive Conditional Duration (ACD, Engle
6379 and Russell, 1998) models. It creates trade, price or volume durations from
6380 transactions (tic) data, performs diurnal adjustments, fits various ACD models
6381 and tests them.")
6382 (license license:gpl2+)))
6383
6384 (define-public r-overlap
6385 (package
6386 (name "r-overlap")
6387 (version "0.3.2")
6388 (source
6389 (origin
6390 (method url-fetch)
6391 (uri (cran-uri "overlap" version))
6392 (sha256
6393 (base32
6394 "1j3m6ir1chdz0si2fhcw6gs7c9h09bv0chz18rpzxsywww6d4rzy"))))
6395 (build-system r-build-system)
6396 (home-page "https://cran.r-project.org/web/packages/overlap/")
6397 (synopsis "Estimates of coefficient of overlapping for animal activity patterns")
6398 (description
6399 "This package provides functions to fit kernel density functions to data
6400 on temporal activity patterns of animals; estimate coefficients of overlapping
6401 of densities for two species; and calculate bootstrap estimates of confidence
6402 intervals.")
6403 (license license:gpl3+)))
6404
6405 (define-public r-snakecase
6406 (package
6407 (name "r-snakecase")
6408 (version "0.11.0")
6409 (source
6410 (origin
6411 (method url-fetch)
6412 (uri (cran-uri "snakecase" version))
6413 (sha256
6414 (base32
6415 "1ky1x2cp5rd0ffd9m1fji9sq4z4jsrpxzg30brw8bb4ihfjj114r"))))
6416 (build-system r-build-system)
6417 (propagated-inputs
6418 `(("r-stringi" ,r-stringi)
6419 ("r-stringr" ,r-stringr)))
6420 (home-page "https://github.com/Tazinho/snakecase")
6421 (synopsis "Convert strings into any case")
6422 (description
6423 "This package provides a consistent, flexible and easy to use tool to
6424 parse and convert strings into cases like snake or camel among others.")
6425 (license license:gpl3)))
6426
6427 (define-public r-prediction
6428 (package
6429 (name "r-prediction")
6430 (version "0.3.14")
6431 (source
6432 (origin
6433 (method url-fetch)
6434 (uri (cran-uri "prediction" version))
6435 (sha256
6436 (base32
6437 "0awlq5lxfia6m2b91w73rksp93rbwv5gwqb36wbji4rgq41rzbrx"))))
6438 (build-system r-build-system)
6439 (propagated-inputs
6440 `(("r-data-table" ,r-data-table)))
6441 (home-page "https://github.com/leeper/prediction")
6442 (synopsis "Tidy, type-safe prediction methods")
6443 (description
6444 "This package provides the @code{prediction()} function, a type-safe
6445 alternative to @code{predict()} that always returns a data frame. The package
6446 currently supports common model types (e.g., @code{\"lm\"}, @code{\"glm\"})
6447 from the @code{stats} package, as well as numerous other model classes from
6448 other add-on packages.")
6449 (license license:expat)))
6450
6451 (define-public r-insight
6452 (package
6453 (name "r-insight")
6454 (version "0.8.2")
6455 (source
6456 (origin
6457 (method url-fetch)
6458 (uri (cran-uri "insight" version))
6459 (sha256
6460 (base32
6461 "0fjf7dwpv1a7qfbzixppg348z1ksq19kdjm08vcb2am7w0k3plcj"))))
6462 (build-system r-build-system)
6463 (native-inputs
6464 `(("r-knitr" ,r-knitr)))
6465 (home-page "https://easystats.github.io/insight/")
6466 (synopsis "Easy access to model information for various model objects")
6467 (description
6468 "This package provides a tool to provide an easy, intuitive and
6469 consistent access to information contained in various R models, like model
6470 formulas, model terms, information about random effects, data that was used to
6471 fit the model or data from response variables. The package mainly revolves
6472 around two types of functions: Functions that find (the names of) information,
6473 starting with @code{find_}, and functions that get the underlying data,
6474 starting with @code{get_}. The package has a consistent syntax and works with
6475 many different model objects, where otherwise functions to access these
6476 information are missing.")
6477 (license license:gpl3)))
6478
6479 (define-public r-sjlabelled
6480 (package
6481 (name "r-sjlabelled")
6482 (version "1.1.3")
6483 (source
6484 (origin
6485 (method url-fetch)
6486 (uri (cran-uri "sjlabelled" version))
6487 (sha256
6488 (base32
6489 "1amq7i9sxf0pkxhskqc53xq5wvc9rdxm7cxyb4b6xh6qsskjnlsj"))))
6490 (build-system r-build-system)
6491 (propagated-inputs
6492 `(("r-haven" ,r-haven)
6493 ("r-insight" ,r-insight)))
6494 (home-page "https://github.com/strengejacke/sjlabelled")
6495 (synopsis "Labelled data utility functions")
6496 (description
6497 "This package provides a collection of functions dealing with labelled
6498 data, like reading and writing data between R and other statistical software
6499 packages. This includes easy ways to get, set or change value and variable
6500 label attributes, to convert labelled vectors into factors or numeric (and
6501 vice versa), or to deal with multiple declared missing values.")
6502 (license license:gpl3)))
6503
6504 (define-public r-sjmisc
6505 (package
6506 (name "r-sjmisc")
6507 (version "2.8.4")
6508 (source
6509 (origin
6510 (method url-fetch)
6511 (uri (cran-uri "sjmisc" version))
6512 (sha256
6513 (base32
6514 "1ad7ca71w0v9ja4wb47aygczc987zz1lnjljhh2n497nzrpzzv64"))))
6515 (build-system r-build-system)
6516 (propagated-inputs
6517 `(("r-dplyr" ,r-dplyr)
6518 ("r-insight" ,r-insight)
6519 ("r-magrittr" ,r-magrittr)
6520 ("r-purrr" ,r-purrr)
6521 ("r-rlang" ,r-rlang)
6522 ("r-sjlabelled" ,r-sjlabelled)
6523 ("r-tidyselect" ,r-tidyselect)))
6524 (native-inputs
6525 `(("r-knitr" ,r-knitr)))
6526 (home-page "https://github.com/strengejacke/sjmisc")
6527 (synopsis "Data and variable transformation functions")
6528 (description
6529 "This package is a collection of miscellaneous utility functions,
6530 supporting data transformation tasks like recoding, dichotomizing or grouping
6531 variables, setting and replacing missing values. The data transformation
6532 functions also support labelled data, and all integrate seamlessly into a
6533 tidyverse workflow.")
6534 (license license:gpl3)))
6535
6536 (define-public r-nortest
6537 (package
6538 (name "r-nortest")
6539 (version "1.0-4")
6540 (source
6541 (origin
6542 (method url-fetch)
6543 (uri (cran-uri "nortest" version))
6544 (sha256
6545 (base32
6546 "17r0wpz72z9312c70nwi1i1kp1v9fm1h6jg7q5cx1mc1h420m1d3"))))
6547 (build-system r-build-system)
6548 (home-page "https://cran.r-project.org/web/packages/nortest/")
6549 (synopsis "Tests for normality")
6550 (description
6551 "This package provides five omnibus tests for testing the composite
6552 hypothesis of normality.")
6553 (license license:gpl2+)))
6554
6555 (define-public r-moonbook
6556 (package
6557 (name "r-moonbook")
6558 (version "0.2.3")
6559 (source
6560 (origin
6561 (method url-fetch)
6562 (uri (cran-uri "moonBook" version))
6563 (sha256
6564 (base32
6565 "0hys56mwbm776ff7dibi8wzyf69qiais9rs1jazv79lk6h56s9s6"))))
6566 (properties `((upstream-name . "moonBook")))
6567 (build-system r-build-system)
6568 (propagated-inputs
6569 `(("r-magrittr" ,r-magrittr)
6570 ("r-nortest" ,r-nortest)
6571 ("r-purrr" ,r-purrr)
6572 ("r-sjmisc" ,r-sjmisc)
6573 ("r-stringr" ,r-stringr)
6574 ("r-survival" ,r-survival)))
6575 (home-page "https://github.com/cardiomoon/moonBook")
6576 (synopsis "Functions and datasets for the book by Keon-Woong Moon")
6577 (description
6578 "This package provides several analysis-related functions for the book
6579 entitled \"R statistics and graph for medical articles\" (written in Korean),
6580 version 1, by Keon-Woong Moon with Korean demographic data with several plot
6581 functions.")
6582 (license license:gpl2)))
6583
6584 (define-public r-flextable
6585 (package
6586 (name "r-flextable")
6587 (version "0.5.9")
6588 (source
6589 (origin
6590 (method url-fetch)
6591 (uri (cran-uri "flextable" version))
6592 (sha256
6593 (base32
6594 "1rkz0nhwjy1l8sb0kmna5v492n2ydnk7gydswnmf88r8vfyjczhw"))))
6595 (build-system r-build-system)
6596 (propagated-inputs
6597 `(("r-base64enc" ,r-base64enc)
6598 ("r-data-table" ,r-data-table)
6599 ("r-gdtools" ,r-gdtools)
6600 ("r-htmltools" ,r-htmltools)
6601 ("r-knitr" ,r-knitr)
6602 ("r-officer" ,r-officer)
6603 ("r-rlang" ,r-rlang)
6604 ("r-rmarkdown" ,r-rmarkdown)
6605 ("r-xml2" ,r-xml2)))
6606 (home-page "https://davidgohel.github.io/flextable")
6607 (synopsis "Functions for tabular reporting")
6608 (description
6609 "This package provides tools to create pretty tables for HTML documents
6610 and other formats. Functions are provided to let users create tables, modify
6611 and format their content. It extends the @code{officer} package and can be
6612 used within R markdown documents when rendering to HTML and to Word
6613 documents.")
6614 (license license:gpl3)))
6615
6616 (define-public r-writexl
6617 (package
6618 (name "r-writexl")
6619 (version "1.2")
6620 (source
6621 (origin
6622 (method url-fetch)
6623 (uri (cran-uri "writexl" version))
6624 (sha256
6625 (base32
6626 "09fhdip6igcg97fjx4c7727cx2lb49l4d74l4i8rg2bag2s5lrj3"))))
6627 (build-system r-build-system)
6628 (inputs `(("zlib" ,zlib)))
6629 (home-page "https://github.com/ropensci/writexl")
6630 (synopsis "Export data frames to xlsx format")
6631 (description
6632 "This package provides a data frame to xlsx exporter based on
6633 libxlsxwriter.")
6634 (license license:bsd-2)))
6635
6636 (define-public r-biasedurn
6637 (package
6638 (name "r-biasedurn")
6639 (version "1.07")
6640 (source
6641 (origin
6642 (method url-fetch)
6643 (uri (cran-uri "BiasedUrn" version))
6644 (sha256
6645 (base32
6646 "13i2lgfnjhlbbm2yxfc2l5hswqw6x03pwba5csjmirv8kpjw4xr3"))))
6647 (properties `((upstream-name . "BiasedUrn")))
6648 (build-system r-build-system)
6649 (home-page "https://cran.r-project.org/web/packages/BiasedUrn/")
6650 (synopsis "Biased Urn model distributions")
6651 (description
6652 "This package provides statistical models of biased sampling in the form
6653 of univariate and multivariate noncentral hypergeometric distributions,
6654 including Wallenius' noncentral hypergeometric distribution and Fisher's
6655 noncentral hypergeometric distribution (also called extended hypergeometric
6656 distribution).")
6657 (license license:gpl3)))
6658
6659 (define-public r-goplot
6660 (package
6661 (name "r-goplot")
6662 (version "1.0.2")
6663 (source
6664 (origin
6665 (method url-fetch)
6666 (uri (cran-uri "GOplot" version))
6667 (sha256
6668 (base32
6669 "1y8dv0kbzpr9za91njw0x233vx5d13vqml9hmpddcyi9s6va5nix"))))
6670 (properties `((upstream-name . "GOplot")))
6671 (build-system r-build-system)
6672 (propagated-inputs
6673 `(("r-ggdendro" ,r-ggdendro)
6674 ("r-ggplot2" ,r-ggplot2)
6675 ("r-gridextra" ,r-gridextra)
6676 ("r-rcolorbrewer" ,r-rcolorbrewer)))
6677 (home-page "https://github.com/wencke/wencke.github.io")
6678 (synopsis "Visualization of functional analysis data")
6679 (description
6680 "This package provides an implementation of multilayered visualizations
6681 for enhanced graphical representation of functional analysis data. It
6682 combines and integrates omics data derived from expression and functional
6683 annotation enrichment analyses. Its plotting functions have been developed
6684 with an hierarchical structure in mind: starting from a general overview to
6685 identify the most enriched categories (modified bar plot, bubble plot) to a
6686 more detailed one displaying different types of relevant information for the
6687 molecules in a given set of categories (circle plot, chord plot, cluster plot,
6688 Venn diagram, heatmap).")
6689 (license license:gpl2)))
6690
6691 (define-public r-getopt
6692 (package
6693 (name "r-getopt")
6694 (version "1.20.3")
6695 (source
6696 (origin
6697 (method url-fetch)
6698 (uri (cran-uri "getopt" version))
6699 (sha256
6700 (base32
6701 "0zzmzgwl9a4y3s34600vmih22d6y32294f9bvxrnmffnvkgmy7sk"))))
6702 (build-system r-build-system)
6703 (home-page "https://github.com/trevorld/getopt")
6704 (synopsis "Command-line option processor for R")
6705 (description
6706 "This package is designed to be used with Rscript to write shebang
6707 scripts that accept short and long options. Many users will prefer to
6708 use the packages @code{optparse} or @code{argparse} which add extra
6709 features like automatically generated help options and usage texts,
6710 support for default values, positional argument support, etc.")
6711 (license license:gpl2+)))
6712
6713 (define-public r-findpython
6714 (package
6715 (name "r-findpython")
6716 (version "1.0.5")
6717 (source
6718 (origin
6719 (method url-fetch)
6720 (uri (cran-uri "findpython" version))
6721 (sha256
6722 (base32
6723 "0icifm4z6hhpmcjrg75a875iph0ci890ss02kdv3725pijc236iy"))))
6724 (build-system r-build-system)
6725 (home-page "https://github.com/trevorld/findpython")
6726 (synopsis "Functions to find an acceptable Python binary")
6727 (description
6728 "This package was designed to find an acceptable Python binary that
6729 matches version and feature constraints.")
6730 (license license:expat)))
6731
6732 ;; This in not the same as "r-argparser"
6733 (define-public r-argparse
6734 (package
6735 (name "r-argparse")
6736 (version "2.0.1")
6737 (source
6738 (origin
6739 (method url-fetch)
6740 (uri (cran-uri "argparse" version))
6741 (sha256
6742 (base32
6743 "1as7h6z7kzgv0fqzpnp76qbm96b4jcd37azd58b7rz0l1n94764l"))))
6744 (build-system r-build-system)
6745 (inputs `(("python" ,python)))
6746 (propagated-inputs
6747 `(("r-findpython" ,r-findpython)
6748 ("r-jsonlite" ,r-jsonlite)
6749 ("r-r6" ,r-r6)))
6750 (home-page "https://github.com/trevorld/argparse")
6751 (synopsis "Command line optional and positional argument parser")
6752 (description
6753 "This package provides a command line parser to be used with Rscript to
6754 write shebang scripts that gracefully accept positional and optional arguments
6755 and automatically generate usage notices.")
6756 (license license:gpl2+)))
6757
6758 (define-public r-hash
6759 (package
6760 (name "r-hash")
6761 (version "2.2.6.1")
6762 (source
6763 (origin
6764 (method url-fetch)
6765 (uri (cran-uri "hash" version))
6766 (sha256
6767 (base32
6768 "0b3fl0rvgwb992knl81vm99lsldg5clvaqjh6mamm6zqmb6dz056"))))
6769 (build-system r-build-system)
6770 (home-page "https://cran.r-project.org/web/packages/hash/")
6771 (synopsis "Implementation of hash/associated arrays/dictionaries")
6772 (description
6773 "This package implements a data structure similar to hashes in Perl and
6774 dictionaries in Python but with a purposefully R flavor. For objects of
6775 appreciable size, access using hashes outperforms native named lists and
6776 vectors.")
6777 (license license:gpl2+)))
6778
6779 (define-public r-orddom
6780 (package
6781 (name "r-orddom")
6782 (version "3.1")
6783 (source
6784 (origin
6785 (method url-fetch)
6786 (uri (cran-uri "orddom" version))
6787 (sha256
6788 (base32
6789 "165axs15fvwhrp89xd87l81q3h2qjll1vrwcsap645cwvb85nwsh"))))
6790 (build-system r-build-system)
6791 (propagated-inputs `(("r-psych" ,r-psych)))
6792 (home-page "https://cran.r-project.org/web/packages/orddom/")
6793 (synopsis "Ordinal dominance statistics")
6794 (description
6795 "This package provides tools to compute ordinal, statistics and effect
6796 sizes as an alternative to mean comparison: Cliff's delta or success rate
6797 difference (SRD), Vargha and Delaney's A or the Area Under a Receiver
6798 Operating Characteristic Curve (AUC), the discrete type of McGraw & Wong's
6799 Common Language Effect Size (CLES) or Grissom & Kim's Probability of
6800 Superiority (PS), and the Number needed to treat (NNT) effect size. Moreover,
6801 comparisons to Cohen's d are offered based on Huberty & Lowman's Percentage of
6802 Group (Non-)Overlap considerations.")
6803 (license license:gpl2)))
6804
6805 (define-public r-deriv
6806 (package
6807 (name "r-deriv")
6808 (version "4.0")
6809 (source
6810 (origin
6811 (method url-fetch)
6812 (uri (cran-uri "Deriv" version))
6813 (sha256
6814 (base32
6815 "03mlfy8jzzzbh2l18gnmw0a71n9savx4cw72yhkxq93v2xj8fy3n"))))
6816 (properties `((upstream-name . "Deriv")))
6817 (build-system r-build-system)
6818 (home-page "https://cran.r-project.org/web/packages/Deriv")
6819 (synopsis "Symbolic differentiation")
6820 (description
6821 "This package provides an R-based solution for symbolic differentiation.
6822 It admits user-defined functions as well as function substitution in arguments
6823 of functions to be differentiated. Some symbolic simplification is part of
6824 the work.")
6825 (license license:gpl3+)))
6826
6827 (define-public r-doby
6828 (package
6829 (name "r-doby")
6830 (version "4.6.5")
6831 (source
6832 (origin
6833 (method url-fetch)
6834 (uri (cran-uri "doBy" version))
6835 (sha256
6836 (base32
6837 "1ckazh701b4ilg8bj17ji903538jmb49d997gm49ah5j5jc1x0g7"))))
6838 (properties `((upstream-name . "doBy")))
6839 (build-system r-build-system)
6840 (propagated-inputs
6841 `(("r-broom" ,r-broom)
6842 ("r-deriv" ,r-deriv)
6843 ("r-dplyr" ,r-dplyr)
6844 ("r-magrittr" ,r-magrittr)
6845 ("r-mass" ,r-mass)
6846 ("r-matrix" ,r-matrix)
6847 ("r-plyr" ,r-plyr)
6848 ("r-pbkrtest" ,r-pbkrtest)
6849 ("r-tibble" ,r-tibble)))
6850 (home-page "http://people.math.aau.dk/~sorenh/software/doBy/")
6851 (synopsis "Groupwise statistics, LSmeans, linear contrasts, and utilities")
6852 (description
6853 "This package contains:
6854
6855 @itemize
6856 @item facilities for working with grouped data: @code{do}
6857 something to data stratified @code{by} some variables.
6858 @item implementations of least-squares means, general linear contrasts, and
6859 @item miscellaneous other utilities.
6860 @end itemize\n")
6861 (license license:gpl2+)))
6862
6863 (define-public r-refgenome
6864 (package
6865 (name "r-refgenome")
6866 (version "1.7.7")
6867 (source
6868 (origin
6869 (method url-fetch)
6870 (uri (cran-uri "refGenome" version))
6871 (sha256
6872 (base32
6873 "1za89bn3am1zgvm641qi1ab6kaqpll4rb9p9f1sjwvcgqq6065g5"))))
6874 (properties `((upstream-name . "refGenome")))
6875 (build-system r-build-system)
6876 (propagated-inputs
6877 `(("r-dbi" ,r-dbi)
6878 ("r-doby" ,r-doby)
6879 ("r-rsqlite" ,r-rsqlite)))
6880 (home-page "https://cran.r-project.org/web/packages/refGenome/")
6881 (synopsis
6882 "Gene and splice site annotation using annotation data from Ensembl and UCSC")
6883 (description
6884 "This package contains functionality for importing and managing of
6885 downloaded genome annotation data from the Ensembl genome browser (European
6886 Bioinformatics Institute) and from the UCSC genome browser (University of
6887 California, Santa Cruz) and annotation routines for genomic positions and
6888 splice site positions.")
6889 (license license:gpl2)))
6890
6891 (define-public r-basix
6892 (package
6893 (name "r-basix")
6894 (version "1.1")
6895 (source
6896 (origin
6897 (method url-fetch)
6898 (uri (cran-uri "BASIX" version))
6899 (sha256
6900 (base32
6901 "18dkvv1iwskfnlpl6xridcgqpalbbpm2616mvc3hfrc0b26v01id"))))
6902 (properties `((upstream-name . "BASIX")))
6903 (build-system r-build-system)
6904 (home-page "https://cran.r-project.org/web/packages/BASIX/")
6905 (synopsis "Efficient C/C++ toolset for R")
6906 (description
6907 "BASIX provides some efficient C/C++ implementations of native R
6908 procedures to speed up calculations in R.")
6909 (license license:gpl2)))
6910
6911 (define-public r-blockfest
6912 (package
6913 (name "r-blockfest")
6914 (version "1.6")
6915 (source
6916 (origin
6917 (method url-fetch)
6918 (uri (cran-uri "BlockFeST" version))
6919 (sha256
6920 (base32
6921 "0hj7a5as7nxbgjac7lbj6qfwffx3g8x8phpf9a55f1c9cdzi73a5"))))
6922 (properties `((upstream-name . "BlockFeST")))
6923 (build-system r-build-system)
6924 (propagated-inputs `(("r-basix" ,r-basix)))
6925 (home-page "https://cran.r-project.org/web/packages/BlockFeST/")
6926 (synopsis "Bayesian calculation of region-specific fixation index")
6927 (description
6928 "This package provides an R implementation of an extension of the
6929 BayeScan software for codominant markers, adding the option to group
6930 individual SNPs into pre-defined blocks. A typical application of this new
6931 approach is the identification of genomic regions, genes, or gene sets
6932 containing one or more SNPs that evolved under directional selection.")
6933 (license license:gpl2)))
6934
6935 (define-public r-proc
6936 (package
6937 (name "r-proc")
6938 (version "1.16.2")
6939 (source
6940 (origin
6941 (method url-fetch)
6942 (uri (cran-uri "pROC" version))
6943 (sha256
6944 (base32
6945 "0apwa5zzqh74pjnvf5a1s5qf6i9r5h44jdllfrwymkd2v479d2xn"))))
6946 (properties `((upstream-name . "pROC")))
6947 (build-system r-build-system)
6948 (propagated-inputs
6949 `(("r-plyr" ,r-plyr)
6950 ("r-rcpp" ,r-rcpp)))
6951 (home-page "https://web.expasy.org/pROC/")
6952 (synopsis "Display and analyze ROC curves")
6953 (description
6954 "This package provides tools for visualizing, smoothing and comparing
6955 receiver operating characteristic (ROC curves). The area under the
6956 curve (AUC) can be compared with statistical tests based on U-statistics or
6957 bootstrap. Confidence intervals can be computed for (p)AUC or ROC curves.")
6958 (license license:gpl3+)))
6959
6960 (define-public r-rootsolve
6961 (package
6962 (name "r-rootsolve")
6963 (version "1.8.2")
6964 (source
6965 (origin
6966 (method url-fetch)
6967 (uri (cran-uri "rootSolve" version))
6968 (sha256
6969 (base32
6970 "0rj7c4zcrzgz7sb0vgvh7swpfafnw4040cxp7ypas3s8fnihn54l"))))
6971 (properties `((upstream-name . "rootSolve")))
6972 (build-system r-build-system)
6973 (native-inputs `(("gfortran" ,gfortran)))
6974 (home-page "https://cran.r-project.org/web/packages/rootSolve/")
6975 (synopsis "Tools for the analysis of ordinary differential equations")
6976 (description
6977 "This package provides routines to find the root of nonlinear functions,
6978 and to perform steady-state and equilibrium analysis of @dfn{ordinary
6979 differential equations} (ODE). It includes routines that:
6980
6981 @enumerate
6982 @item generate gradient and jacobian matrices (full and banded),
6983 @item find roots of non-linear equations by the Newton-Raphson method,
6984 @item estimate steady-state conditions of a system of (differential) equations
6985 in full, banded or sparse form, using the Newton-Raphson method, or by
6986 dynamically running,
6987 @item solve the steady-state conditions for uni- and multicomponent 1-D, 2-D,
6988 and 3-D partial differential equations, that have been converted to ordinary
6989 differential equations by numerical differencing (using the method-of-lines
6990 approach).
6991 @end enumerate\n")
6992 (license license:gpl2+)))
6993
6994 (define-public r-abcanalysis
6995 (package
6996 (name "r-abcanalysis")
6997 (version "1.2.1")
6998 (source
6999 (origin
7000 (method url-fetch)
7001 (uri (cran-uri "ABCanalysis" version))
7002 (sha256
7003 (base32 "0wac1ksmnxa36v99ca4hv8k0rsh3igwpcllmlv9wf7i9kgqviqwi"))))
7004 (properties `((upstream-name . "ABCanalysis")))
7005 (build-system r-build-system)
7006 (propagated-inputs `(("r-plotrix" ,r-plotrix)))
7007 (home-page "https://www.uni-marburg.de/fb12/arbeitsgruppen/datenbionik/software-en/")
7008 (synopsis "Computed ABC Analysis")
7009 (description
7010 "Multivariate data sets often differ in several factors or derived statistical
7011 parameters, which have to be selected for a valid interpretation. Basing this
7012 selection on traditional statistical limits leads occasionally to the perception
7013 of losing information from a data set. This package provides tools to calculate
7014 these limits on the basis of the mathematical properties of the distribution of
7015 the analyzed items.")
7016 (license license:gpl3)))
7017
7018 (define-public r-slam
7019 (package
7020 (name "r-slam")
7021 (version "0.1-47")
7022 (source
7023 (origin
7024 (method url-fetch)
7025 (uri (cran-uri "slam" version))
7026 (sha256
7027 (base32 "12fggw2c7hz3bpvsaqm24g3r6lbpq6jgli24g7x5j859iak5cqv9"))))
7028 (build-system r-build-system)
7029 (home-page "https://cran.r-project.org/web/packages/slam/")
7030 (synopsis "Sparse lightweight arrays and matrices")
7031 (description
7032 "This package contains data structures and algorithms for sparse arrays and matrices,
7033 based on index arrays and simple triplet representations, respectively.")
7034 (license license:gpl2)))
7035
7036 (define-public r-manipulatewidget
7037 (package
7038 (name "r-manipulatewidget")
7039 (version "0.10.1")
7040 (source
7041 (origin
7042 (method url-fetch)
7043 (uri (cran-uri "manipulateWidget" version))
7044 (sha256
7045 (base32 "1vi71sjh7z1a880wffk8qqw7iysvk42q78giqxmm2sqz2a912qlx"))))
7046 (properties
7047 `((upstream-name . "manipulateWidget")))
7048 (build-system r-build-system)
7049 (propagated-inputs
7050 `(("r-base64enc" ,r-base64enc)
7051 ("r-codetools" ,r-codetools)
7052 ("r-htmltools" ,r-htmltools)
7053 ("r-htmlwidgets" ,r-htmlwidgets)
7054 ("r-knitr" ,r-knitr)
7055 ("r-miniui" ,r-miniui)
7056 ("r-shiny" ,r-shiny)
7057 ("r-webshot" ,r-webshot)))
7058 (home-page "https://github.com/rte-antares-rpackage/manipulateWidget/")
7059 (synopsis "Add even more interactivity to interactive charts")
7060 (description
7061 "This package lets you create in just a few lines of R code a nice user interface to
7062 modify the data or the graphical parameters of one or multiple interactive
7063 charts. It is useful to quickly explore visually some data or for package
7064 developers to generate user interfaces easy to maintain.")
7065 (license license:gpl2+)))
7066
7067 (define-public r-a3
7068 (package
7069 (name "r-a3")
7070 (version "1.0.0")
7071 (source
7072 (origin
7073 (method url-fetch)
7074 (uri (cran-uri "A3" version))
7075 (sha256
7076 (base32 "017hq9pjsv1h9i7cqk5cfx27as54shlhdsdvr6jkhb8jfkpdb6cw"))))
7077 (properties `((upstream-name . "A3")))
7078 (build-system r-build-system)
7079 (propagated-inputs
7080 `(("r-pbapply" ,r-pbapply)
7081 ("r-xtable" ,r-xtable)))
7082 (home-page "https://cran.r-project.org/web/packages/A3/")
7083 (synopsis "Error metrics for predictive models")
7084 (description
7085 "This package supplies tools for tabulating and analyzing the results of predictive
7086 models. The methods employed are applicable to virtually any predictive model
7087 and make comparisons between different methodologies straightforward.")
7088 (license license:gpl2+)))
7089
7090 (define-public r-infotheo
7091 (package
7092 (name "r-infotheo")
7093 (version "1.2.0")
7094 (source
7095 (origin
7096 (method url-fetch)
7097 (uri (cran-uri "infotheo" version))
7098 (sha256
7099 (base32
7100 "18xacczfq3z3xpy434js4nf3l19lczngzd0lq26wh22pvg1yniwv"))))
7101 (build-system r-build-system)
7102 (home-page "http://homepage.meyerp.com/software")
7103 (synopsis "Information-theoretic measures")
7104 (description
7105 "This package implements various measures of information theory based on
7106 several entropy estimators.")
7107 (license license:gpl3+)))
7108
7109 (define-public r-abcoptim
7110 (package
7111 (name "r-abcoptim")
7112 (version "0.15.0")
7113 (source
7114 (origin
7115 (method url-fetch)
7116 (uri (cran-uri "ABCoptim" version))
7117 (sha256
7118 (base32 "1ih0xk88qhsmpvnxf56041wx5sk8as2f4f2gdnpnwdym9mbr9n4b"))))
7119 (properties `((upstream-name . "ABCoptim")))
7120 (build-system r-build-system)
7121 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
7122 (home-page "https://github.com/gvegayon/ABCoptim/")
7123 (synopsis "Optimization of Artificial Bee Colony algorithm")
7124 (description
7125 "Artificial Bee Colony (ABC) is one of the most recently defined algorithms by Dervis
7126 Karaboga in 2005, motivated by the intelligent behavior of honey bees. It is as
7127 simple as Particle Swarm Optimization (PSO) and Differential Evolution (DE)
7128 algorithms, and uses only common control parameters such as colony size and
7129 maximum cycle number. The @code{r-abcoptim} implements the Artificial bee
7130 colony optimization algorithm @url{http://mf.erciyes.edu.tr/abc/pub/tr06_2005.pdf}.
7131 This version is a work-in-progress and is written in R code.")
7132 (license license:expat)))
7133
7134 (define-public r-abcp2
7135 (package
7136 (name "r-abcp2")
7137 (version "1.2")
7138 (source
7139 (origin
7140 (method url-fetch)
7141 (uri (cran-uri "ABCp2" version))
7142 (sha256
7143 (base32 "1s2skkxpzss7c29i8600psgrp0hl46jcrxqrmy2b4db8hc0kcnbx"))))
7144 (properties `((upstream-name . "ABCp2")))
7145 (build-system r-build-system)
7146 (propagated-inputs `(("r-mass" ,r-mass)))
7147 (home-page "https://cran.r-project.org/web/packages/ABCp2/")
7148 (synopsis "Approximate Bayesian Computational Model for Estimating P2")
7149 (description
7150 "This package tests the goodness of fit of a distribution of offspring to the Normal,
7151 Poisson, and Gamma distribution and estimates the proportional paternity of the
7152 second male (P2) based on the best fit distribution.")
7153 (license license:gpl2)))
7154
7155 (define-public r-abcrf
7156 (package
7157 (name "r-abcrf")
7158 (version "1.8.1")
7159 (source
7160 (origin
7161 (method url-fetch)
7162 (uri (cran-uri "abcrf" version))
7163 (sha256
7164 (base32 "1ghbd24yhqy3xhdxas6ccn84nkavqpgldx5ck8kijknc7qjm8k27"))))
7165 (build-system r-build-system)
7166 (propagated-inputs
7167 `(("r-doparallel" ,r-doparallel)
7168 ("r-foreach" ,r-foreach)
7169 ("r-mass" ,r-mass)
7170 ("r-matrixstats" ,r-matrixstats)
7171 ("r-ranger" ,r-ranger)
7172 ("r-rcpp" ,r-rcpp)
7173 ("r-rcpparmadillo" ,r-rcpparmadillo)
7174 ("r-readr" ,r-readr)
7175 ("r-stringr" ,r-stringr)))
7176 (home-page "https://cran.r-project.org/web/packages/abcrf/")
7177 (synopsis "Approximate bayesian computation via random forests")
7178 (description
7179 "This package performs approximate bayesian computation (ABC) model choice and
7180 parameter inference via random forests. This machine learning tool named random
7181 forests (RF) can conduct selection among the highly complex models covered by
7182 ABC algorithms.")
7183 (license license:gpl2+)))
7184
7185 (define-public r-abctools
7186 (package
7187 (name "r-abctools")
7188 (version "1.1.3")
7189 (source
7190 (origin
7191 (method url-fetch)
7192 (uri (cran-uri "abctools" version))
7193 (sha256
7194 (base32 "07s9dg10i8lsxl73b4n2hynca2fjgb0ykb0dz8c3zv6cgw3cyx97"))))
7195 (build-system r-build-system)
7196 (propagated-inputs
7197 `(("r-abc" ,r-abc)
7198 ("r-abind" ,r-abind)
7199 ("r-hmisc" ,r-hmisc)
7200 ("r-plyr" ,r-plyr)))
7201 (home-page "https://github.com/dennisprangle/abctools/")
7202 (synopsis "Tools for ABC analyses")
7203 (description
7204 "This @code{r-abctools} package provides tools for approximate Bayesian computation
7205 including summary statistic selection and assessing coverage. This includes
7206 recent dimension reduction algorithms to tune the choice of summary statistics,
7207 and coverage methods to tune the choice of threshold.")
7208 (license license:gpl2+)))
7209
7210 (define-public r-ggstance
7211 (package
7212 (name "r-ggstance")
7213 (version "0.3.4")
7214 (source
7215 (origin
7216 (method url-fetch)
7217 (uri (cran-uri "ggstance" version))
7218 (sha256
7219 (base32 "0aqz3dn02cgij018a4sglqwrwr9dzzj12l8xr1064q7hfd4f64m1"))))
7220 (build-system r-build-system)
7221 (propagated-inputs
7222 `(("r-ggplot2" ,r-ggplot2)
7223 ("r-plyr" ,r-plyr)
7224 ("r-rlang" ,r-rlang)
7225 ("r-withr" ,r-withr)))
7226 (home-page "https://cran.r-project.org/web/packages/ggstance/")
7227 (synopsis "Horizontal and vertical versions of @code{r-ggplot2}")
7228 (description
7229 "This package is a @code{r-ggplot2} extension that provides flipped components:
7230 @enumerate
7231 @item horizontal versions of @code{r-ggplot2} stats and @code{r-ggplot2} geoms;
7232 @item vertical versions of @code{r-ggplot2} positions.
7233 @end enumerate")
7234 (license license:gpl3)))
7235
7236 (define-public r-mosaiccore
7237 (package
7238 (name "r-mosaiccore")
7239 (version "0.6.0")
7240 (source
7241 (origin
7242 (method url-fetch)
7243 (uri (cran-uri "mosaicCore" version))
7244 (sha256
7245 (base32 "1klw97h6lchw1cpcl8s637ikcl428cckmjq0czi7mibh9q9mw72z"))))
7246 (properties `((upstream-name . "mosaicCore")))
7247 (build-system r-build-system)
7248 (propagated-inputs
7249 `(("r-dplyr" ,r-dplyr)
7250 ("r-lazyeval" ,r-lazyeval)
7251 ("r-mass" ,r-mass)
7252 ("r-rlang" ,r-rlang)
7253 ("r-tidyr" ,r-tidyr)))
7254 (home-page "https://github.com/ProjectMOSAIC/mosaicCore/")
7255 (synopsis "Common utilities for mosaic family packages")
7256 (description
7257 "Common utilities used in other Mosaic family packages are collected here.")
7258 (license license:gpl2+)))
7259
7260 (define-public r-ggformula
7261 (package
7262 (name "r-ggformula")
7263 (version "0.9.4")
7264 (source
7265 (origin
7266 (method url-fetch)
7267 (uri (cran-uri "ggformula" version))
7268 (sha256
7269 (base32 "04vdhg1bbc1psrx9ggaphz7cx4fw5xsmhkqpqfcg2w4ba2bjy46f"))))
7270 (build-system r-build-system)
7271 (propagated-inputs
7272 `(("r-ggforce" ,r-ggforce)
7273 ("r-ggplot2" ,r-ggplot2)
7274 ("r-ggstance" ,r-ggstance)
7275 ("r-magrittr" ,r-magrittr)
7276 ("r-mosaiccore" ,r-mosaiccore)
7277 ("r-rlang" ,r-rlang)
7278 ("r-stringr" ,r-stringr)
7279 ("r-tibble" ,r-tibble)))
7280 (home-page "https://github.com/ProjectMOSAIC/ggformula/")
7281 (synopsis "Formula interface for the @code{r-ggplot2}")
7282 (description
7283 "The @code{r-ggformula} introduces a family of graphics functions, gf_point(),
7284 gf_density(), and so on, bring the formula interface to ggplot(). This captures
7285 and extends the excellent simplicity of the lattice-graphics formula interface,
7286 while providing the intuitive capabilities of @code{r-ggplot2}.")
7287 (license license:expat)))
7288
7289 (define-public r-mosaicdata
7290 (package
7291 (name "r-mosaicdata")
7292 (version "0.17.0")
7293 (source
7294 (origin
7295 (method url-fetch)
7296 (uri (cran-uri "mosaicData" version))
7297 (sha256
7298 (base32 "04z0mdm52mykqsxsinhmsihn181zf6cw321gayk2rjp7lj7mwdq9"))))
7299 (properties `((upstream-name . "mosaicData")))
7300 (build-system r-build-system)
7301 (home-page "https://cran.r-project.org/web/packages/mosaicData/")
7302 (synopsis "Data sets for project Mosaic")
7303 (description
7304 "This package provides data sets from project Mosaic @url{http://mosaic-web.org}
7305 used to teach mathematics, statistics, computation and modeling.")
7306 (license license:gpl2+)))
7307
7308 (define-public r-raster
7309 (package
7310 (name "r-raster")
7311 (version "3.0-12")
7312 (source
7313 (origin
7314 (method url-fetch)
7315 (uri (cran-uri "raster" version))
7316 (sha256
7317 (base32
7318 "0rrbsigkqxsdic8fly6nrsc79zsliwvr1x2b4xqpl9d34vr50dvg"))))
7319 (build-system r-build-system)
7320 (propagated-inputs
7321 `(("r-rcpp" ,r-rcpp)
7322 ("r-sp" ,r-sp)))
7323 (home-page "https://www.rspatial.org/")
7324 (synopsis "Geographic data analysis and modeling")
7325 (description
7326 "The package implements basic and high-level functions for reading,
7327 writing, manipulating, analyzing and modeling of gridded spatial data.
7328 Processing of very large files is supported.")
7329 (license license:gpl3+)))
7330
7331 (define-public r-mosaic
7332 (package
7333 (name "r-mosaic")
7334 (version "1.4.0")
7335 (source
7336 (origin
7337 (method url-fetch)
7338 (uri (cran-uri "mosaic" version))
7339 (sha256
7340 (base32 "10jbrg8kli00kfgbh2f67bymm5cnlancc9dplb1j7fl552yjddn2"))))
7341 (build-system r-build-system)
7342 (propagated-inputs
7343 `(("r-broom" ,r-broom)
7344 ("r-dplyr" ,r-dplyr)
7345 ("r-ggdendro" ,r-ggdendro)
7346 ("r-ggformula" ,r-ggformula)
7347 ("r-ggplot2" ,r-ggplot2)
7348 ("r-ggrepel" ,r-ggrepel)
7349 ("r-glue" ,r-glue)
7350 ("r-gridextra" ,r-gridextra)
7351 ("r-lattice" ,r-lattice)
7352 ("r-latticeextra" ,r-latticeextra)
7353 ("r-lazyeval" ,r-lazyeval)
7354 ("r-mass" ,r-mass)
7355 ("r-matrix" ,r-matrix)
7356 ("r-mosaiccore" ,r-mosaiccore)
7357 ("r-mosaicdata" ,r-mosaicdata)
7358 ("r-readr" ,r-readr)
7359 ("r-tidyr" ,r-tidyr)))
7360 (native-inputs
7361 `(("r-knitr" ,r-knitr)))
7362 (home-page "https://github.com/ProjectMOSAIC/mosaic/")
7363 (synopsis "Mathematics, statistics, and computation teaching utilities")
7364 (description
7365 "This package contain data sets and utilities from
7366 @url{http://mosaic-web.org, Project MOSAIC} used to teach mathematics,
7367 statistics, computation and modeling. Project MOSAIC is a community of
7368 educators working to tie together aspects of quantitative work that students
7369 in science, technology, engineering and mathematics will need in their
7370 professional lives, but which are usually taught in isolation, if at all.")
7371 (license license:gpl2+)))
7372
7373 (define-public r-abd
7374 (package
7375 (name "r-abd")
7376 (version "0.2-8")
7377 (source
7378 (origin
7379 (method url-fetch)
7380 (uri (cran-uri "abd" version))
7381 (sha256
7382 (base32 "191gspqzdv573vaw624ri0f5cm6v4j524bjs74d4a1hn3kn6r9b7"))))
7383 (build-system r-build-system)
7384 (propagated-inputs
7385 `(("r-lattice" ,r-lattice)
7386 ("r-mosaic" ,r-mosaic)
7387 ("r-nlme" ,r-nlme)))
7388 (home-page "https://cran.r-project.org/web/packages/abd/")
7389 (synopsis "Analysis of biological data")
7390 (description
7391 "The @code{r-abd} package contains data sets and sample code for the Analysis of
7392 biological data by Michael Whitlock and Dolph Schluter.")
7393 (license license:gpl2)))
7394
7395 (define-public r-svgui
7396 (package
7397 (name "r-svgui")
7398 (version "1.0.0")
7399 (source
7400 (origin
7401 (method url-fetch)
7402 (uri (cran-uri "svGUI" version))
7403 (sha256
7404 (base32 "1r7ab0p4yr8q03gj02hmj7k1ghksgkg4nx750c0ajfs2q9y1dxfc"))))
7405 (properties `((upstream-name . "svGUI")))
7406 (build-system r-build-system)
7407 (home-page "https://github.com/SciViews/svGUI/")
7408 (synopsis "Functions for managing GUI clients in R")
7409 (description
7410 "The SciViews @code{svGUI} package eases the management of Graphical User
7411 Interfaces (GUI) in R. It is independent from any particular GUI widgets. It
7412 centralizes info about GUI elements currently used, and it dispatches GUI
7413 calls to the particular toolkits in use in function of the context.")
7414 (license license:gpl2)))
7415
7416 (define-public r-svdialogs
7417 (package
7418 (name "r-svdialogs")
7419 (version "1.0.0")
7420 (source
7421 (origin
7422 (method url-fetch)
7423 (uri (cran-uri "svDialogs" version))
7424 (sha256
7425 (base32 "0xqppydfawnwk84kb5qiybwbcmv38vn4imgz01mz2pnq4xb80p97"))))
7426 (properties `((upstream-name . "svDialogs")))
7427 (build-system r-build-system)
7428 (inputs
7429 `(("yad" ,yad)
7430 ("zenity" ,zenity)))
7431 (propagated-inputs
7432 `(("r-rstudioapi" ,r-rstudioapi)
7433 ("r-svgui" ,r-svgui)))
7434 (home-page "https://github.com/SciViews/svDialogs/")
7435 (synopsis "Portable dialog boxes")
7436 (description
7437 "This package helps to construct standard dialog boxes for your GUI, including
7438 message boxes, input boxes, list, file or directory selection, and others. In
7439 case R cannot display GUI dialog boxes, a simpler command line version of these
7440 interactive elements is also provided as a fallback solution.")
7441 (license license:gpl2)))
7442
7443 (define-public r-abe
7444 (package
7445 (name "r-abe")
7446 (version "3.0.1")
7447 (source
7448 (origin
7449 (method url-fetch)
7450 (uri (cran-uri "abe" version))
7451 (sha256
7452 (base32
7453 "1f19h3xzzmjhvwc1rrb8z0rai3ip03y4gdi2gg9bfr5sg2nfklk6"))))
7454 (build-system r-build-system)
7455 (home-page "https://cran.r-project.org/web/packages/abe/")
7456 (synopsis "Augmented backward elimination")
7457 (description
7458 "This package performs augmented backward elimination and checks the
7459 stability of the obtained model. Augmented backward elimination combines
7460 significance or information based criteria with the change in estimate to
7461 either select the optimal model for prediction purposes or to serve as a tool
7462 to obtain a practically sound, highly interpretable model.")
7463 (license license:gpl2+)))
7464
7465 (define-public r-abf2
7466 (package
7467 (name "r-abf2")
7468 (version "0.7-1")
7469 (source
7470 (origin
7471 (method url-fetch)
7472 (uri (cran-uri "abf2" version))
7473 (sha256
7474 (base32 "0d65mc1w4pbiv7xaqzdlw1bfsxf25587rv597hh41vs0j0zlfpxx"))))
7475 (build-system r-build-system)
7476 (home-page "https://cran.r-project.org/web/packages/abf2/")
7477 (synopsis "Load gap-free axon @code{r-abf2} files")
7478 (description
7479 "This package loads electrophysiology data from ABF2 files, as created by
7480 Axon Instruments/Molecular Devices software. Only files recorded in gap-free
7481 mode are currently supported.")
7482 (license license:artistic2.0)))
7483
7484 (define-public r-abhgenotyper
7485 (package
7486 (name "r-abhgenotyper")
7487 (version "1.0.1")
7488 (source
7489 (origin
7490 (method url-fetch)
7491 (uri (cran-uri "ABHgenotypeR" version))
7492 (sha256
7493 (base32 "08cpmnaaxsm5c5bjifnfxdlvg5inrf13biqpcl2yq5zpqjmiki0l"))))
7494 (properties `((upstream-name . "ABHgenotypeR")))
7495 (build-system r-build-system)
7496 (propagated-inputs
7497 `(("r-ggplot2" ,r-ggplot2)
7498 ("r-reshape2" ,r-reshape2)))
7499 (home-page "https://github.com/StefanReuscher/ABHgenotypeR/")
7500 (synopsis "Visualize and manipulate ABH genotypes")
7501 (description
7502 "The @code{r-abhgenotyper} package provides simple imputation,
7503 error-correction and plotting capacities for genotype data. The package is
7504 supposed to serve as an intermediate but independent analysis tool between the
7505 TASSEL GBS pipeline and the @code{r-qtl} package. It provides functionalities
7506 not found in either TASSEL or @code{r-qtl} in addition to visualization of
7507 genotypes as \"graphical genotypes\".")
7508 (license license:gpl3)))
7509
7510 (define-public r-furrr
7511 (package
7512 (name "r-furrr")
7513 (version "0.1.0")
7514 (source
7515 (origin
7516 (method url-fetch)
7517 (uri (cran-uri "furrr" version))
7518 (sha256
7519 (base32
7520 "1ld9aa9hydna94hgm6p91zjbfv1dz1vsgchjlpknkg6irbvkfafx"))))
7521 (build-system r-build-system)
7522 (propagated-inputs
7523 `(("r-future" ,r-future)
7524 ("r-globals" ,r-globals)
7525 ("r-purrr" ,r-purrr)
7526 ("r-rlang" ,r-rlang)))
7527 (home-page "https://github.com/DavisVaughan/furrr")
7528 (synopsis "Apply mapping functions in parallel using futures")
7529 (description
7530 "This package provides implementations of the family of @code{map()}
7531 functions from the @code{purrr} package that can be resolved using any
7532 @code{future}-supported backend, e.g. parallel on the local machine or
7533 distributed on a compute cluster.")
7534 (license license:lgpl2.1+)))
7535
7536 (define-public r-abjutils
7537 (package
7538 (name "r-abjutils")
7539 (version "0.2.3")
7540 (source
7541 (origin
7542 (method url-fetch)
7543 (uri (cran-uri "abjutils" version))
7544 (sha256
7545 (base32 "0n4zps65y3zg0gfzlv97w91si52a9izkncirskbkj5x9hk0nhxcv"))))
7546 (build-system r-build-system)
7547 (propagated-inputs
7548 `(("r-devtools" ,r-devtools)
7549 ("r-dplyr" ,r-dplyr)
7550 ("r-furrr" ,r-furrr)
7551 ("r-future" ,r-future)
7552 ("r-glue" ,r-glue)
7553 ("r-httr" ,r-httr)
7554 ("r-magrittr" ,r-magrittr)
7555 ("r-progress" ,r-progress)
7556 ("r-purrr" ,r-purrr)
7557 ("r-readr" ,r-readr)
7558 ("r-rlang" ,r-rlang)
7559 ("r-rstudioapi" ,r-rstudioapi)
7560 ("r-scales" ,r-scales)
7561 ("r-stringi" ,r-stringi)
7562 ("r-stringr" ,r-stringr)
7563 ("r-tibble" ,r-tibble)
7564 ("r-tidyr" ,r-tidyr)))
7565 (home-page "https://github.com/abjur/abjutils/")
7566 (synopsis "Collection of tools for jurimetrical analysis")
7567 (description
7568 "This package implements general purpose tools, such as functions for
7569 sampling and basic manipulation of Brazilian lawsuits identification number.
7570 It also implements functions for text cleaning, such as accentuation
7571 removal.")
7572 (license license:expat)))
7573
7574 (define-public r-abnormality
7575 (package
7576 (name "r-abnormality")
7577 (version "0.1.0")
7578 (source
7579 (origin
7580 (method url-fetch)
7581 (uri (cran-uri "abnormality" version))
7582 (sha256
7583 (base32 "1fzfskl9akl06nliy8hkv2a0pznpj8pwcypg3gj5r2nzvr3kan9v"))))
7584 (build-system r-build-system)
7585 (propagated-inputs
7586 `(("r-mass" ,r-mass)
7587 ("r-matrix" ,r-matrix)))
7588 (home-page "https://cran.r-project.org/web/packages/abnormality/")
7589 (synopsis "Measure a subject's abnormality with respect to a reference population")
7590 (description
7591 "This package contains functions to implement the methodology and
7592 considerations laid out by Marks et al. in the article \"Measuring abnormality
7593 in high dimensional spaces: applications in biomechanical gait analysis\".
7594 Using high-dimensional datasets to measure a subject's overall level of
7595 abnormality as compared to a reference population is often needed in outcomes
7596 research.")
7597 (license license:expat)))
7598
7599 (define-public r-abodoutlier
7600 (package
7601 (name "r-abodoutlier")
7602 (version "0.1")
7603 (source
7604 (origin
7605 (method url-fetch)
7606 (uri (cran-uri "abodOutlier" version))
7607 (sha256
7608 (base32 "1pvhgxmh23br84r0fbmv7g53z2427birdja96a67vqgz18r3fdvj"))))
7609 (properties `((upstream-name . "abodOutlier")))
7610 (build-system r-build-system)
7611 (propagated-inputs
7612 `(("r-cluster" ,r-cluster)))
7613 (home-page "https://cran.r-project.org/web/packages/abodOutlier/")
7614 (synopsis "Angle-based outlier detection")
7615 (description
7616 "This package performs angle-based outlier detection on a given data
7617 frame. It offers three methods to process data:
7618 @enumerate
7619 @item full but slow implementation using all the data that has cubic
7620 complexity;
7621 @item a fully randomized method;
7622 @item a method using k-nearest neighbours.
7623 @end enumerate
7624 These algorithms are well suited for high dimensional data outlier
7625 detection.")
7626 (license license:expat)))
7627
7628 (define-public r-abps
7629 (package
7630 (name "r-abps")
7631 (version "0.3")
7632 (source
7633 (origin
7634 (method url-fetch)
7635 (uri (cran-uri "ABPS" version))
7636 (sha256
7637 (base32 "0n3f66nmfi5v94il1mxy026mi84w01ph2aljk60vn3mrz8kwf2ll"))))
7638 (properties `((upstream-name . "ABPS")))
7639 (build-system r-build-system)
7640 (propagated-inputs `(("r-kernlab" ,r-kernlab)))
7641 (home-page "https://cran.r-project.org/web/packages/ABPS/")
7642 (synopsis "Abnormal blood profile score to detect blood doping")
7643 (description
7644 "This package offers an implementation of the @dfn{Abnormal blood profile score} (ABPS).
7645 The ABPS is a part of the Athlete biological passport program of the World
7646 anti-doping agency, which combines several blood parameters into a single
7647 score in order to detect blood doping. The package also contains functions to
7648 calculate other scores used in anti-doping programs, such as the ratio of
7649 hemoglobin to reticulocytes (OFF-score), as well as example data.")
7650 (license license:gpl2+)))
7651
7652 (define-public r-parmigene
7653 (package
7654 (name "r-parmigene")
7655 (version "1.0.2")
7656 (source
7657 (origin
7658 (method url-fetch)
7659 (uri (cran-uri "parmigene" version))
7660 (sha256
7661 (base32
7662 "1fsm6pkr17jcbzkj1hbn91jf890fviqk1lq6ls8pihsdgah1zb4d"))))
7663 (build-system r-build-system)
7664 (home-page "https://cran.r-project.org/web/packages/parmigene/")
7665 (synopsis "Mutual information estimation for gene network reconstruction")
7666 (description
7667 "This package provides a parallel estimation of the mutual information
7668 based on entropy estimates from k-nearest neighbors distances and algorithms
7669 for the reconstruction of gene regulatory networks.")
7670 (license license:agpl3+)))
7671
7672 (define-public r-pscl
7673 (package
7674 (name "r-pscl")
7675 (version "1.5.5")
7676 (source
7677 (origin
7678 (method url-fetch)
7679 (uri (cran-uri "pscl" version))
7680 (sha256
7681 (base32 "0vzf5wazs92bhqhqd66v3vwmbfmnh67gb2466g1xxawim649nk05"))))
7682 (build-system r-build-system)
7683 (propagated-inputs
7684 `(("r-mass" ,r-mass)))
7685 (home-page "https://github.com/atahk/pscl/")
7686 (synopsis "Political science computational laboratory")
7687 (description
7688 "The @code{pscl} is an R package providing classes and methods for:
7689 @enumerate
7690 @item Bayesian analysis of roll call data (item-response models);
7691 @item elementary Bayesian statistics;
7692 @item maximum likelihood estimation of zero-inflated and hurdle models for count
7693 data;
7694 @item utility functions.
7695 @end enumerate")
7696 (license license:gpl2)))
7697
7698 (define-public r-accelmissing
7699 (package
7700 (name "r-accelmissing")
7701 (version "1.4")
7702 (source
7703 (origin
7704 (method url-fetch)
7705 (uri (cran-uri "accelmissing" version))
7706 (sha256
7707 (base32 "1nql9inx6azdzi3z4sfm2vdml2mms6krl8wzlf1dn1c97ahn57fy"))))
7708 (build-system r-build-system)
7709 (propagated-inputs
7710 `(("r-mice" ,r-mice)
7711 ("r-pscl" ,r-pscl)))
7712 (home-page "https://cran.r-project.org/web/packages/accelmissing/")
7713 (synopsis "Missing value imputation for accelerometer data")
7714 (description
7715 "This package provides a statistical method to impute the missing values in
7716 accelerometer data. The methodology includes both parametric and
7717 semi-parametric multiple imputations under the zero-inflated Poisson lognormal
7718 model. It also provides multiple functions to preprocess the accelerometer data
7719 previous to the missing data imputation. These include detecting the wearing
7720 and the non-wearing time, selecting valid days and subjects, and creating plots.")
7721 (license license:gpl2+)))
7722
7723 (define-public r-mhsmm
7724 (package
7725 (name "r-mhsmm")
7726 (version "0.4.16")
7727 (source
7728 (origin
7729 (method url-fetch)
7730 (uri (cran-uri "mhsmm" version))
7731 (sha256
7732 (base32 "009dj0zkj1zry7jr9hf4cknb686z50a2l967if64xm0dvjmp7dgs"))))
7733 (build-system r-build-system)
7734 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
7735 (home-page "https://github.com/jaredo/mhsmm/")
7736 (synopsis "Inference for hidden Markov and semi-Markov models")
7737 (description
7738 "The @code{r-mhsmm} package implements estimation and prediction methods for
7739 hidden Markov and semi-Markov models for multiple observation sequences. Such
7740 techniques are of interest when observed data is thought to be dependent on some
7741 unobserved (or hidden) state. Also, this package is suitable for equidistant
7742 time series data, with multivariate and/or missing data. Allows user defined
7743 emission distributions.")
7744 (license license:gpl2+)))
7745
7746 (define-public r-nleqslv
7747 (package
7748 (name "r-nleqslv")
7749 (version "3.3.2")
7750 (source
7751 (origin
7752 (method url-fetch)
7753 (uri (cran-uri "nleqslv" version))
7754 (sha256
7755 (base32 "1v9znvncyigw9r25wx2ma0b7ib179b488dl0qsrhp5zrcz7mcjgm"))))
7756 (build-system r-build-system)
7757 (native-inputs `(("gfortran" ,gfortran)))
7758 (home-page "https://cran.r-project.org/web/packages/nleqslv/")
7759 (synopsis "Solve systems of nonlinear equations")
7760 (description
7761 "The @code{r-nleqslv} package solves a system of nonlinear equations using a
7762 Broyden or a Newton method with a choice of global strategies such as line
7763 search and trust region. There are options for using a numerical or user
7764 supplied Jacobian, for specifying a banded numerical Jacobian and for allowing a
7765 singular or ill-conditioned Jacobian.")
7766 (license license:gpl2+)))
7767
7768 (define-public r-physicalactivity
7769 (package
7770 (name "r-physicalactivity")
7771 (version "0.2-2")
7772 (source
7773 (origin
7774 (method url-fetch)
7775 (uri (cran-uri "PhysicalActivity" version))
7776 (sha256
7777 (base32 "14z6plgwyr46vs9m997rvlz8sdglfs9g087an8668zqkzzs2w4ln"))))
7778 (properties
7779 `((upstream-name . "PhysicalActivity")))
7780 (build-system r-build-system)
7781 (home-page "https://cran.r-project.org/web/packages/PhysicalActivity/")
7782 (synopsis "Procesing accelerometer data for physical activity measurement")
7783 (description
7784 "This @code{r-physicalactivity} package provides a function @code{wearingMarking}
7785 for classification of monitor wear and nonwear time intervals in accelerometer
7786 data collected to assess physical activity. The package also contains functions
7787 for making plots of accelerometer data and obtaining the summary of various
7788 information including daily monitor wear time and the mean monitor wear time
7789 during valid days. The revised package version 0.2-1 improved the functions
7790 regarding speed, robustness and add better support for time zones and daylight
7791 saving. In addition, several functions were added:
7792 @enumerate
7793 @item the @code{markDelivery} can classify days for ActiGraph delivery by mail;
7794 @item the @code{markPAI} can categorize physical activity intensity level based
7795 on user-defined cut-points of accelerometer counts.
7796 @end enumerate
7797 It also supports importing ActiGraph (AGD) files with @code{readActigraph} and
7798 @code{queryActigraph} functions.")
7799 (license license:gpl3+)))
7800
7801 (define-public r-acc
7802 (package
7803 (name "r-acc")
7804 (version "1.3.3")
7805 (source
7806 (origin
7807 (method url-fetch)
7808 (uri (cran-uri "acc" version))
7809 (sha256
7810 (base32 "1ii2vm47djxbixa75h690q1s2f9m9x6i8nkygik93j6dayr6kr1m"))))
7811 (build-system r-build-system)
7812 (propagated-inputs
7813 `(("r-circlize" ,r-circlize)
7814 ("r-dbi" ,r-dbi)
7815 ("r-ggplot2" ,r-ggplot2)
7816 ("r-iterators" ,r-iterators)
7817 ("r-mhsmm" ,r-mhsmm)
7818 ("r-nleqslv" ,r-nleqslv)
7819 ("r-physicalactivity" ,r-physicalactivity)
7820 ("r-plyr" ,r-plyr)
7821 ("r-r-utils" ,r-r-utils)
7822 ("r-rcpp" ,r-rcpp)
7823 ("r-rcpparmadillo" ,r-rcpparmadillo)
7824 ("r-rsqlite" ,r-rsqlite)
7825 ("r-zoo" ,r-zoo)))
7826 (home-page "https://cran.r-project.org/web/packages/acc/")
7827 (synopsis "Exploring accelerometer data")
7828 (description
7829 "This package processes accelerometer data from uni-axial and tri-axial devices
7830 and generates data summaries. Also, includes functions to plot, analyze, and
7831 simulate accelerometer data.")
7832 (license license:gpl2+)))
7833
7834 (define-public r-rbenchmark
7835 (package
7836 (name "r-rbenchmark")
7837 (version "1.0.0")
7838 (source
7839 (origin
7840 (method url-fetch)
7841 (uri (cran-uri "rbenchmark" version))
7842 (sha256
7843 (base32 "010fn3qwnk2k411cbqyvra1d12c3bhhl3spzm8kxffmirj4p2al9"))))
7844 (build-system r-build-system)
7845 (home-page "https://cran.r-project.org/web/packages/rbenchmark/")
7846 (synopsis "Benchmarking routine for R")
7847 (description
7848 "This @code{r-rbenchmark} package is inspired by the Perl module Benchmark,
7849 and is intended to facilitate benchmarking of arbitrary R code. The library
7850 consists of just one function, benchmark, which is a simple wrapper around
7851 system.time. Given a specification of the benchmarking process (counts of
7852 replications, evaluation environment) and an arbitrary number of expressions,
7853 benchmark evaluates each of the expressions in the specified environment,
7854 replicating the evaluation as many times as specified, and returning the results
7855 conveniently wrapped into a data frame.")
7856 (license license:gpl2+)))
7857
7858 (define-public r-mitools
7859 (package
7860 (name "r-mitools")
7861 (version "2.4")
7862 (source
7863 (origin
7864 (method url-fetch)
7865 (uri (cran-uri "mitools" version))
7866 (sha256
7867 (base32
7868 "0c2x2n1p53lcw0vx4vmy5j7m2f95i7g2iwbryl89imr99rvz617j"))))
7869 (build-system r-build-system)
7870 (propagated-inputs `(("r-dbi" ,r-dbi)))
7871 (home-page "https://cran.r-project.org/web/packages/mitools/")
7872 (synopsis "Tools for multiple imputation of missing data")
7873 (description
7874 "This package provides tools to perform analyses and combine results from
7875 multiple-imputation datasets.")
7876 (license license:gpl2)))
7877
7878 (define-public r-magick
7879 (package
7880 (name "r-magick")
7881 (version "2.3")
7882 (source
7883 (origin
7884 (method url-fetch)
7885 (uri (cran-uri "magick" version))
7886 (sha256
7887 (base32
7888 "182b4wahkq9q0scn99mql4vm9fp92nja0r5yizc4x9rjl492ahd8"))))
7889 (build-system r-build-system)
7890 (inputs
7891 `(("imagemagick" ,imagemagick)
7892 ("zlib" ,zlib)))
7893 (propagated-inputs
7894 `(("r-curl" ,r-curl)
7895 ("r-magrittr" ,r-magrittr)
7896 ("r-rcpp" ,r-rcpp)))
7897 (native-inputs
7898 `(("pkg-config" ,pkg-config)))
7899 (home-page "https://github.com/ropensci/magick")
7900 (synopsis "Advanced graphics and image-processing in R")
7901 (description
7902 "This package provides bindings to ImageMagick, a comprehensive image
7903 processing library. It supports many common formats (PNG, JPEG, TIFF, PDF,
7904 etc.) and manipulations (rotate, scale, crop, trim, flip, blur, etc). All
7905 operations are vectorized via the Magick++ STL meaning they operate either on
7906 a single frame or a series of frames for working with layers, collages, or
7907 animation. In RStudio, images are automatically previewed when printed to the
7908 console, resulting in an interactive editing environment.")
7909 (license license:expat)))
7910
7911 (define-public r-survey
7912 (package
7913 (name "r-survey")
7914 (version "3.37")
7915 (source
7916 (origin
7917 (method url-fetch)
7918 (uri (cran-uri "survey" version))
7919 (sha256
7920 (base32
7921 "1f31dvh48gzzan13pdrwh84ls35x9116095i7mdrcbrhz809r8dy"))))
7922 (build-system r-build-system)
7923 (propagated-inputs
7924 `(("r-lattice" ,r-lattice)
7925 ("r-matrix" ,r-matrix)
7926 ("r-minqa" ,r-minqa)
7927 ("r-mitools" ,r-mitools)
7928 ("r-numderiv" ,r-numderiv)
7929 ("r-survival" ,r-survival)))
7930 (home-page "http://r-survey.r-forge.r-project.org/survey/")
7931 (synopsis "Analysis of complex survey samples")
7932 (description
7933 "This package provides tools for the analysis of complex survey samples.
7934 The provided features include: summary statistics, two-sample tests, rank
7935 tests, generalised linear models, cumulative link models, Cox models,
7936 loglinear models, and general maximum pseudolikelihood estimation for
7937 multistage stratified, cluster-sampled, unequally weighted survey samples;
7938 variances by Taylor series linearisation or replicate weights;
7939 post-stratification, calibration, and raking; two-phase subsampling designs;
7940 graphics; PPS sampling without replacement; principal components, and factor
7941 analysis.")
7942 ;; Either version of the GPL.
7943 (license (list license:gpl2 license:gpl3))))
7944
7945 (define-public r-gee
7946 (package
7947 (name "r-gee")
7948 (version "4.13-20")
7949 (source
7950 (origin
7951 (method url-fetch)
7952 (uri (cran-uri "gee" version))
7953 (sha256
7954 (base32
7955 "167pzgnmj4cjc41ykps1mfwi6s7y32zxyycn5z17vn4v0pp4q0ak"))))
7956 (properties `((upstream-name . "gee")))
7957 (build-system r-build-system)
7958 (native-inputs
7959 `(("gfortran" ,gfortran)))
7960 (home-page "https://cran.r-project.org/web/packages/gee/")
7961 (synopsis "Generalized estimation equation solver")
7962 (description
7963 "This package provides a solver for generalized estimation equations.")
7964 (license license:gpl2)))
7965
7966 (define-public r-tab
7967 (package
7968 (name "r-tab")
7969 (version "4.1.1")
7970 (source
7971 (origin
7972 (method url-fetch)
7973 (uri (cran-uri "tab" version))
7974 (sha256
7975 (base32
7976 "0ds8n6gncidb66in7hlqkcmil5yfsf7ihqvmls789hrm2iz9xlfm"))))
7977 (properties `((upstream-name . "tab")))
7978 (build-system r-build-system)
7979 (propagated-inputs
7980 `(("r-dplyr" ,r-dplyr)
7981 ("r-gee" ,r-gee)
7982 ("r-knitr" ,r-knitr)
7983 ("r-mass" ,r-mass)
7984 ("r-survey" ,r-survey)
7985 ("r-survival" ,r-survival)
7986 ("r-xtable" ,r-xtable)))
7987 (home-page "https://cran.r-project.org/web/packages/tab/")
7988 (synopsis "Create summary tables for statistical reports")
7989 (description
7990 "This package contains functions for creating various types of summary
7991 tables, e.g. comparing characteristics across levels of a categorical variable
7992 and summarizing fitted generalized linear models, generalized estimating
7993 equations, and Cox proportional hazards models. Functions are available to
7994 handle data from simple random samples as well as complex surveys.")
7995 (license license:gpl3+)))
7996
7997 (define-public r-dvmisc
7998 (package
7999 (name "r-dvmisc")
8000 (version "1.1.4")
8001 (source
8002 (origin
8003 (method url-fetch)
8004 (uri (cran-uri "dvmisc" version))
8005 (sha256
8006 (base32 "01v6sixx0f3nrn6ymfifb3pvd2msfrwm21kmdv38laxq29vc4rsi"))))
8007 (build-system r-build-system)
8008 (propagated-inputs
8009 `(("r-cubature" ,r-cubature)
8010 ("r-data-table" ,r-data-table)
8011 ("r-dplyr" ,r-dplyr)
8012 ("r-ggplot2" ,r-ggplot2)
8013 ("r-mass" ,r-mass)
8014 ("r-mvtnorm" ,r-mvtnorm)
8015 ("r-pracma" ,r-pracma)
8016 ("r-rbenchmark" ,r-rbenchmark)
8017 ("r-rcpp" ,r-rcpp)
8018 ("r-survey" ,r-survey)
8019 ("r-tab" ,r-tab)))
8020 (home-page "https://cran.r-project.org/web/packages/dvmisc/")
8021 (synopsis "Faster computation of common statistics and miscellaneous functions")
8022 (description
8023 "This package implements faster versions of base R functions (e.g. mean, standard
8024 deviation, covariance, weighted mean), mostly written in C++, along with
8025 miscellaneous functions for various purposes (e.g. create the histogram with
8026 fitted probability density function or probability mass function curve, create
8027 the body mass index groups, assess the linearity assumption in logistic
8028 regression).")
8029 (license license:gpl2)))
8030
8031 (define-public r-accelerometry
8032 (package
8033 (name "r-accelerometry")
8034 (version "3.1.2")
8035 (source
8036 (origin
8037 (method url-fetch)
8038 (uri (cran-uri "accelerometry" version))
8039 (sha256
8040 (base32 "13xzrwhr4i1nj9c8vrmfdg2rmrc8n446iihcyxmy99sm99hpzyip"))))
8041 (build-system r-build-system)
8042 (propagated-inputs
8043 `(("r-dvmisc" ,r-dvmisc)
8044 ("r-rcpp" ,r-rcpp)))
8045 (home-page "https://cran.r-project.org/web/packages/accelerometry/")
8046 (synopsis "Functions for processing accelerometer data")
8047 (description
8048 "This package provides a collection of functions that perform operations on
8049 time-series accelerometer data, such as identify the non-wear time, flag minutes
8050 that are part of an activity bout, and find the maximum 10-minute average count
8051 value. The functions are generally very flexible, allowing for a variety of
8052 algorithms to be implemented.")
8053 (license license:gpl3)))
8054
8055 (define-public r-absim
8056 (package
8057 (name "r-absim")
8058 (version "0.2.6")
8059 (source
8060 (origin
8061 (method url-fetch)
8062 (uri (cran-uri "AbSim" version))
8063 (sha256
8064 (base32 "16ddjk8b6xw80ch4jis1y751i9561wdxh0gifbf15qiz3vjckq8m"))))
8065 (properties `((upstream-name . "AbSim")))
8066 (build-system r-build-system)
8067 (propagated-inputs
8068 `(("r-ape" ,r-ape)
8069 ("r-powerlaw" ,r-powerlaw)))
8070 (home-page "https://cran.r-project.org/web/packages/AbSim/")
8071 (synopsis "Time resolved simulations of antibody repertoires")
8072 (description
8073 "This package provides simulation methods for the evolution of antibody repertoires.
8074 The heavy and light chain variable region of both human and C57BL/6 mice can
8075 be simulated in a time-dependent fashion. Both single lineages using one set of
8076 V-, D-, and J-genes or full repertoires can be simulated. The algorithm begins
8077 with an initial V-D-J recombination event, starting the first phylogenetic tree.
8078 Upon completion, the main loop of the algorithm begins, with each iteration
8079 representing one simulated time step. Various mutation events are possible at
8080 each time step, contributing to a diverse final repertoire.")
8081 (license license:gpl2)))
8082
8083 (define-public r-quic
8084 (package
8085 (name "r-quic")
8086 (version "1.1")
8087 (source
8088 (origin
8089 (method url-fetch)
8090 (uri (cran-uri "QUIC" version))
8091 (sha256
8092 (base32 "021bp9xbaih60qmss015ycblbv6d1dvb1z89y93zpqqnc2qhpv3c"))))
8093 (properties `((upstream-name . "QUIC")))
8094 (build-system r-build-system)
8095 (home-page "https://www.cs.utexas.edu/users/sustik/QUIC/")
8096 (synopsis "Regularized sparse inverse covariance matrix estimation")
8097 (description
8098 "This package implements the regularized Gaussian maximum likelihood
8099 estimation of the inverse of a covariance matrix. It uses Newton's method and
8100 coordinate descent to solve the regularized inverse covariance matrix
8101 estimation problem.")
8102 ;; The project home page states that the release is under GPLv3 or later.
8103 ;; The CRAN page only says GPL-3.
8104 (license license:gpl3+)))
8105
8106 (define-public r-abundant
8107 (package
8108 (name "r-abundant")
8109 (version "1.1")
8110 (source
8111 (origin
8112 (method url-fetch)
8113 (uri (cran-uri "abundant" version))
8114 (sha256
8115 (base32 "1m76qdmqvwpgm0sihazi2dna7cgsz9rljal18vgffb5wamwmg9k7"))))
8116 (build-system r-build-system)
8117 (propagated-inputs
8118 `(("r-quic" ,r-quic)))
8119 (home-page "https://cran.r-project.org/web/packages/abundant/")
8120 (synopsis "Abundant regression and high-dimensional principal fitted components")
8121 (description
8122 "This package provides tools to fit and predict with the high-dimensional
8123 principal fitted components model. This model is described by Cook, Forzani,
8124 and Rothman (2012) @url{doi:10.1214/11-AOS962}.")
8125 ;; The DESCRIPTION file states GPL-2, but since it directly depends on a
8126 ;; GPLv3+ package (QUIC) this likely means GPLv2+.
8127 (license license:gpl2+)))
8128
8129 (define-public r-ac3net
8130 (package
8131 (name "r-ac3net")
8132 (version "1.2.2")
8133 (source
8134 (origin
8135 (method url-fetch)
8136 (uri (cran-uri "Ac3net" version))
8137 (sha256
8138 (base32 "1ns4n0xxz6p34c11bj0k7nzgmyqr9mis2b0g5nfz37dbikndyqyz"))))
8139 (properties `((upstream-name . "Ac3net")))
8140 (build-system r-build-system)
8141 (propagated-inputs
8142 `(("r-data-table" ,r-data-table)))
8143 (home-page "https://cran.r-project.org/web/packages/Ac3net/")
8144 (synopsis "Inferring directional conservative causal core gene networks")
8145 (description "This package infers directional Conservative causal core
8146 (gene) networks (C3NET). This is a version of the algorithm C3NET with
8147 directional network.")
8148 (license license:gpl3+)))
8149
8150 (define-public r-aca
8151 (package
8152 (name "r-aca")
8153 (version "1.1")
8154 (source
8155 (origin
8156 (method url-fetch)
8157 (uri (cran-uri "ACA" version))
8158 (sha256
8159 (base32 "1i3hm27nvnkvc39xlh0d1blq8q0q02czmvgi3cazmjx3jvxay0vq"))))
8160 (properties `((upstream-name . "ACA")))
8161 (build-system r-build-system)
8162 (home-page "https://cran.r-project.org/web/packages/ACA/")
8163 (synopsis "Abrupt change-point or aberration detection in point series")
8164 (description
8165 "This package offers an interactive function for the detection of breakpoints in
8166 series.")
8167 ;; Any version of the GPL
8168 (license (list license:gpl2+ license:gpl3+))))
8169
8170 (define-public r-acceptancesampling
8171 (package
8172 (name "r-acceptancesampling")
8173 (version "1.0-6")
8174 (source
8175 (origin
8176 (method url-fetch)
8177 (uri (cran-uri "AcceptanceSampling" version))
8178 (sha256
8179 (base32 "1z3rmln63ki2kik9kinbwr9qhr32ggbmh4mm3xqy6di119n47ca9"))))
8180 (properties
8181 `((upstream-name . "AcceptanceSampling")))
8182 (build-system r-build-system)
8183 (home-page "https://cran.r-project.org/web/packages/AcceptanceSampling/")
8184 (synopsis "Creation and evaluation of acceptance sampling plans")
8185 (description
8186 "This @code{r-acceptancesampling} provides functionality for creating and evaluating
8187 acceptance sampling plans. Acceptance sampling is a methodology commonly used
8188 in quality control and improvement. International standards of acceptance
8189 sampling provide sampling plans for specific circumstances. The aim of this
8190 package is to provide an easy-to-use interface to visualize single, double or
8191 multiple sampling plans. In addition, methods have been provided to enable the
8192 user to assess sampling plans against pre-specified levels of performance, as
8193 measured by the probability of acceptance for a given level of quality in the
8194 lot.")
8195 (license license:gpl3+)))
8196
8197 (define-public r-acclma
8198 (package
8199 (name "r-acclma")
8200 (version "1.0")
8201 (source
8202 (origin
8203 (method url-fetch)
8204 (uri (cran-uri "ACCLMA" version))
8205 (sha256
8206 (base32 "1na27sp18fq12gp6vxgqw1ffsz2yi1d8xvrxbrzx5g1kqxrayy0v"))))
8207 (properties `((upstream-name . "ACCLMA")))
8208 (build-system r-build-system)
8209 (home-page "https://cran.r-project.org/web/packages/ACCLMA/")
8210 (synopsis "ACC & LMA graph plotting")
8211 (description
8212 "This package contains a function that imports data from a @acronym{CSV,
8213 Comma-Separated Values} file, or uses manually entered data from the format (x,
8214 y, weight) and plots the appropriate @acronym{ACC, Absolute Concentration
8215 Curve} vs @acronym{LOI, Line of Independence} graph and
8216 @acronym{LMA, @acronym{LOI} Minus @acronym{ACC}} graph. The main
8217 function is @code{plotLMA} (source file, header) that takes a data set and plots the
8218 appropriate @acronym{LMA} and @acronym{ACC} graphs. If no source file (a
8219 string) was passed, a manual data entry window is opened. The header parameter
8220 indicates by TRUE/FALSE (false by default) if the source @acronym{CSV} file has
8221 a header row or not. The dataset should contain only one independent variable
8222 (x) and one dependent variable (y) and can contain a weight for each
8223 observation.")
8224 (license license:gpl2)))
8225
8226 (define-public r-aspi
8227 (package
8228 (name "r-aspi")
8229 (version "0.2.0")
8230 (source
8231 (origin
8232 (method url-fetch)
8233 (uri (cran-uri "aspi" version))
8234 (sha256
8235 (base32 "0rhvxw243vvdv3hxa6pi343gcjc2cbxq1jzqirl9k1l4i3897l87"))))
8236 (build-system r-build-system)
8237 (home-page
8238 "https://cran.r-project.org/web/packages/aspi/")
8239 (synopsis
8240 "Analysis of symmetry of parasitic infections")
8241 (description
8242 "This package provides tools for the analysis and visualization of bilateral
8243 asymmetry in parasitic infections.")
8244 (license license:gpl3+)))
8245
8246 (define-public r-sandwich
8247 (package
8248 (name "r-sandwich")
8249 (version "2.5-1")
8250 (source
8251 (origin
8252 (method url-fetch)
8253 (uri (cran-uri "sandwich" version))
8254 (sha256
8255 (base32
8256 "1mk685b9wq7k566pbml52rj96i5h6b3vf215k9picgmq296nzvyv"))))
8257 (build-system r-build-system)
8258 (propagated-inputs
8259 `(("r-zoo" ,r-zoo)))
8260 (home-page "https://cran.r-project.org/web/packages/sandwich/")
8261 (synopsis "Robust Covariance Matrix Estimators")
8262 (description
8263 "This package provides model-robust standard error estimators for
8264 cross-sectional, time series, clustered, panel, and longitudinal data.")
8265 ;; Either version of the license.
8266 (license (list license:gpl2 license:gpl3))))
8267
8268 (define-public r-th-data
8269 (package
8270 (name "r-th-data")
8271 (version "1.0-10")
8272 (source
8273 (origin
8274 (method url-fetch)
8275 (uri (cran-uri "TH.data" version))
8276 (sha256
8277 (base32
8278 "0mgz7aj2d9abbmdr65zgmg1ddp3fdbs3mfj83r5xadh5ldkir2k1"))))
8279 (properties `((upstream-name . "TH.data")))
8280 (build-system r-build-system)
8281 (propagated-inputs
8282 `(("r-mass" ,r-mass)
8283 ("r-survival" ,r-survival)))
8284 (home-page "https://cran.r-project.org/web/packages/TH.data/")
8285 (synopsis "Shared data sets")
8286 (description
8287 "This package contains supporting data sets that are used in other
8288 packages maintained by Torsten Hothorn.")
8289 (license license:gpl3)))
8290
8291 (define-public r-multcomp
8292 (package
8293 (name "r-multcomp")
8294 (version "1.4-12")
8295 (source
8296 (origin
8297 (method url-fetch)
8298 (uri (cran-uri "multcomp" version))
8299 (sha256
8300 (base32
8301 "14c2f10rz546w7ly5f4r6wnd07yj5gic38an17gxny1vf2nsff0b"))))
8302 (build-system r-build-system)
8303 (propagated-inputs
8304 `(("r-codetools" ,r-codetools)
8305 ("r-mvtnorm" ,r-mvtnorm)
8306 ("r-sandwich" ,r-sandwich)
8307 ("r-survival" ,r-survival)
8308 ("r-th-data" ,r-th-data)))
8309 (home-page "https://cran.r-project.org/web/packages/multcomp/")
8310 (synopsis "Simultaneous inference in general parametric models")
8311 (description
8312 "Simultaneous tests and confidence intervals for general linear
8313 hypotheses in parametric models, including linear, generalized linear, linear
8314 mixed effects, and survival models. The package includes demos reproducing
8315 analyzes presented in the book \"Multiple Comparisons Using R\" (Bretz,
8316 Hothorn, Westfall, 2010, CRC Press).")
8317 (license license:gpl2)))
8318
8319 (define-public r-emmeans
8320 (package
8321 (name "r-emmeans")
8322 (version "1.4.5")
8323 (source
8324 (origin
8325 (method url-fetch)
8326 (uri (cran-uri "emmeans" version))
8327 (sha256
8328 (base32
8329 "10fmvmd6q4zjr6b18hhc85mwrzv778qzj6lwl9kbs2fsfvsgw7mm"))))
8330 (build-system r-build-system)
8331 (propagated-inputs
8332 `(("r-estimability" ,r-estimability)
8333 ("r-mvtnorm" ,r-mvtnorm)
8334 ("r-numderiv" ,r-numderiv)
8335 ("r-plyr" ,r-plyr)
8336 ("r-xtable" ,r-xtable)))
8337 (home-page "https://github.com/rvlenth/emmeans")
8338 (synopsis "Estimated marginal means, aka least-squares means")
8339 (description
8340 "This package provides tools to obtain @dfn{estimated marginal
8341 means} (EMMs) for many linear, generalized linear, and mixed models. It can
8342 be used to compute contrasts or linear functions of EMMs, trends, and
8343 comparisons of slopes.")
8344 ;; Either version of the license.
8345 (license (list license:gpl2 license:gpl3))))
8346
8347 (define-public r-pwr
8348 (package
8349 (name "r-pwr")
8350 (version "1.3-0")
8351 (source
8352 (origin
8353 (method url-fetch)
8354 (uri (cran-uri "pwr" version))
8355 (sha256
8356 (base32
8357 "1kfzy73v3z6ipc3kdfkcjrp4b4p5k54nwk796gqi36srm93hgc2v"))))
8358 (build-system r-build-system)
8359 (native-inputs
8360 `(("r-knitr" ,r-knitr)))
8361 (home-page "https://github.com/heliosdrm/pwr")
8362 (synopsis "Basic functions for power analysis")
8363 (description
8364 "This package provides power analysis functions along the lines of
8365 Cohen (1988).")
8366 (license license:gpl3+)))
8367
8368 (define-public r-libcoin
8369 (package
8370 (name "r-libcoin")
8371 (version "1.0-5")
8372 (source
8373 (origin
8374 (method url-fetch)
8375 (uri (cran-uri "libcoin" version))
8376 (sha256
8377 (base32
8378 "1cm9x1dlg9f7fh7n5nw3x4a7rl88c7ylrlc8x3rx4mq5w1j42x0a"))))
8379 (build-system r-build-system)
8380 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
8381 (home-page "https://cran.r-project.org/web/packages/libcoin")
8382 (synopsis "Linear test statistics for permutation inference")
8383 (description
8384 "This package provides basic infrastructure for linear test statistics
8385 and permutation inference in the framework of Strasser and Weber (1999).")
8386 (license license:gpl2)))
8387
8388 (define-public r-coin
8389 (package
8390 (name "r-coin")
8391 (version "1.3-1")
8392 (source
8393 (origin
8394 (method url-fetch)
8395 (uri (cran-uri "coin" version))
8396 (sha256
8397 (base32
8398 "0qi03fyqw42a2vnqcia5l2m1mzyarj2q1iblknx9n19bdsd53qjx"))))
8399 (build-system r-build-system)
8400 (propagated-inputs
8401 `(("r-libcoin" ,r-libcoin)
8402 ("r-matrixstats" ,r-matrixstats)
8403 ("r-modeltools" ,r-modeltools)
8404 ("r-multcomp" ,r-multcomp)
8405 ("r-mvtnorm" ,r-mvtnorm)
8406 ("r-survival" ,r-survival)))
8407 (home-page "http://coin.r-forge.r-project.org")
8408 (synopsis "Conditional inference procedures in a permutation test framework")
8409 (description
8410 "This package provides conditional inference procedures for the general
8411 independence problem including two-sample, K-sample (non-parametric ANOVA),
8412 correlation, censored, ordered and multivariate problems.")
8413 (license license:gpl2)))
8414
8415 (define-public r-bayesplot
8416 (package
8417 (name "r-bayesplot")
8418 (version "1.7.1")
8419 (source
8420 (origin
8421 (method url-fetch)
8422 (uri (cran-uri "bayesplot" version))
8423 (sha256
8424 (base32
8425 "0sq0ajnm96hmlqf1cv5n2gshh3qdij4n1zbm7qrniz2q6b5aj342"))))
8426 (build-system r-build-system)
8427 (inputs
8428 `(("pandoc" ,ghc-pandoc)
8429 ("pandoc-citeproc" ,ghc-pandoc-citeproc)))
8430 (propagated-inputs
8431 `(("r-dplyr" ,r-dplyr)
8432 ("r-ggplot2" ,r-ggplot2)
8433 ("r-ggridges" ,r-ggridges)
8434 ("r-glue" ,r-glue)
8435 ("r-reshape2" ,r-reshape2)
8436 ("r-rlang" ,r-rlang)
8437 ("r-tibble" ,r-tibble)
8438 ("r-tidyselect" ,r-tidyselect)))
8439 (home-page "https://mc-stan.org/bayesplot")
8440 (synopsis "Plotting for Bayesian models")
8441 (description
8442 "This package provides plotting functions for posterior analysis, model
8443 checking, and MCMC diagnostics. The package is designed not only to provide
8444 convenient functionality for users, but also a common set of functions that
8445 can be easily used by developers working on a variety of R packages for
8446 Bayesian modeling.")
8447 (license license:gpl3+)))
8448
8449 (define-public r-tmb
8450 (package
8451 (name "r-tmb")
8452 (version "1.7.16")
8453 (source
8454 (origin
8455 (method url-fetch)
8456 (uri (cran-uri "TMB" version))
8457 (sha256
8458 (base32
8459 "0lly12hdi99iklwr0vg9xkyhi038w4gncbf895qcwbndmqp0lx44"))))
8460 (properties `((upstream-name . "TMB")))
8461 (build-system r-build-system)
8462 (propagated-inputs
8463 `(("r-matrix" ,r-matrix)
8464 ("r-rcppeigen" ,r-rcppeigen)))
8465 (home-page "http://tmb-project.org")
8466 (synopsis "Template model builder: a general random effect tool")
8467 (description
8468 "With this tool, a user should be able to quickly implement complex
8469 random effect models through simple C++ templates. The package combines
8470 @code{CppAD} (C++ automatic differentiation), @code{Eigen} (templated
8471 matrix-vector library) and @code{CHOLMOD} (sparse matrix routines available
8472 from R) to obtain an efficient implementation of the applied Laplace
8473 approximation with exact derivatives. Key features are: Automatic sparseness
8474 detection, parallelism through BLAS and parallel user templates.")
8475 (license license:gpl2)))
8476
8477 (define-public r-sjstats
8478 (package
8479 (name "r-sjstats")
8480 (version "0.17.9")
8481 (source
8482 (origin
8483 (method url-fetch)
8484 (uri (cran-uri "sjstats" version))
8485 (sha256
8486 (base32 "0938ac6ixvkif07azd2msa8g3qnn9rabj6jg17almbysl83kg4nm"))))
8487 (build-system r-build-system)
8488 (propagated-inputs
8489 `(("r-bayestestr" ,r-bayestestr)
8490 ("r-broom" ,r-broom)
8491 ("r-dplyr" ,r-dplyr)
8492 ("r-effectsize" ,r-effectsize)
8493 ("r-emmeans" ,r-emmeans)
8494 ("r-insight" ,r-insight)
8495 ("r-lme4" ,r-lme4)
8496 ("r-magrittr" ,r-magrittr)
8497 ("r-mass" ,r-mass)
8498 ("r-modelr" ,r-modelr)
8499 ("r-parameters" ,r-parameters)
8500 ("r-performance" ,r-performance)
8501 ("r-purrr" ,r-purrr)
8502 ("r-rlang" ,r-rlang)
8503 ("r-sjlabelled" ,r-sjlabelled)
8504 ("r-sjmisc" ,r-sjmisc)
8505 ("r-tidyr" ,r-tidyr)))
8506 (home-page "https://github.com/strengejacke/sjstats")
8507 (synopsis "Functions for common statistical computations")
8508 (description
8509 "This package provides a collection of convenient functions for common
8510 statistical computations, which are not directly provided by R's @code{base}
8511 or @code{stats} packages. This package aims at providing, first, shortcuts
8512 for statistical measures, which otherwise could only be calculated with
8513 additional effort. Second, these shortcut functions are generic, and can be
8514 applied not only to vectors, but also to other objects as well. The focus of
8515 most functions lies on summary statistics or fit measures for regression
8516 models, including generalized linear models, mixed effects models and Bayesian
8517 models.")
8518 (license license:gpl3)))
8519
8520 (define-public r-glmmtmb
8521 (package
8522 (name "r-glmmtmb")
8523 (version "1.0.1")
8524 (source
8525 (origin
8526 (method url-fetch)
8527 (uri (cran-uri "glmmTMB" version))
8528 (sha256
8529 (base32
8530 "0sdx1q7wc7895xh8747r4p0wkij0xjgn5ij62ipi9423zd0sr0mm"))))
8531 (properties `((upstream-name . "glmmTMB")))
8532 (build-system r-build-system)
8533 (propagated-inputs
8534 `(("r-lme4" ,r-lme4)
8535 ("r-matrix" ,r-matrix)
8536 ("r-nlme" ,r-nlme)
8537 ("r-rcppeigen" ,r-rcppeigen)
8538 ("r-tmb" ,r-tmb)))
8539 (native-inputs
8540 `(("r-knitr" ,r-knitr))) ; for vignettes
8541 (home-page "https://github.com/glmmTMB")
8542 (synopsis "Generalized linear mixed models")
8543 (description
8544 "Fit linear and generalized linear mixed models with various extensions,
8545 including zero-inflation. The models are fitted using maximum likelihood
8546 estimation via the Template Model Builder. Random effects are assumed to be
8547 Gaussian on the scale of the linear predictor and are integrated out using the
8548 Laplace approximation. Gradients are calculated using automatic
8549 differentiation.")
8550 (license license:agpl3+)))
8551
8552 (define-public r-bayestestr
8553 (package
8554 (name "r-bayestestr")
8555 (version "0.5.3")
8556 (source
8557 (origin
8558 (method url-fetch)
8559 (uri (cran-uri "bayestestR" version))
8560 (sha256
8561 (base32
8562 "1q24qh5p6bz4nbf4546kckh7d518x5pm1yhhbc8fwcnbca4kgqjz"))))
8563 (properties `((upstream-name . "bayestestR")))
8564 (build-system r-build-system)
8565 (propagated-inputs
8566 `(("r-insight" ,r-insight)))
8567 (native-inputs
8568 `(("r-knitr" ,r-knitr)))
8569 (home-page "https://github.com/easystats/bayestestR")
8570 (synopsis "Describe Bayesian models and posterior distributions")
8571 (description
8572 "This package provides utilities to understand and describe posterior
8573 distributions and Bayesian models. It includes point-estimates such as
8574 @dfn{Maximum A Posteriori} (MAP), measures of dispersion such as @dfn{Highest
8575 Density Interval} (HDI), and indices used for null-hypothesis testing (such as
8576 ROPE percentage and pd).")
8577 (license license:gpl3)))
8578
8579 (define-public r-performance
8580 (package
8581 (name "r-performance")
8582 (version "0.4.5")
8583 (source
8584 (origin
8585 (method url-fetch)
8586 (uri (cran-uri "performance" version))
8587 (sha256
8588 (base32
8589 "0j6wmnwhfdd3v1a17qmg491q50579knjzscmyr4yk3xr0jbsbg8x"))))
8590 (build-system r-build-system)
8591 (propagated-inputs
8592 `(("r-bayestestr" ,r-bayestestr)
8593 ("r-insight" ,r-insight)))
8594 (home-page "https://easystats.github.io/performance/")
8595 (synopsis "Assessment of regression models performance")
8596 (description
8597 "This package provides utilities for computing measures to assess model
8598 quality, which are not directly provided by R's @code{base} or @code{stats}
8599 packages. These include e.g. measures like r-squared, intraclass correlation
8600 coefficient, root mean squared error or functions to check models for
8601 overdispersion, singularity or zero-inflation and more. Functions apply to a
8602 large variety of regression models, including generalized linear models, mixed
8603 effects models and Bayesian models.")
8604 (license license:gpl3)))
8605
8606 (define-public r-ggeffects
8607 (package
8608 (name "r-ggeffects")
8609 (version "0.14.2")
8610 (source
8611 (origin
8612 (method url-fetch)
8613 (uri (cran-uri "ggeffects" version))
8614 (sha256
8615 (base32
8616 "1y3yfb07jrr6vkc8hk6rp52l70dj7042jvqgjzllslzy7hx2jhyw"))))
8617 (build-system r-build-system)
8618 (propagated-inputs
8619 `(("r-insight" ,r-insight)
8620 ("r-mass" ,r-mass)
8621 ("r-sjlabelled" ,r-sjlabelled)))
8622 (native-inputs
8623 `(("r-knitr" ,r-knitr)))
8624 (home-page "https://github.com/strengejacke/ggeffects")
8625 (synopsis "Create tidy data frames of marginal effects for ggplot")
8626 (description
8627 "This package provides tools to compute marginal effects from statistical
8628 models and return the result as tidy data frames. These data frames are ready
8629 to use with the @code{ggplot2} package. Marginal effects can be calculated
8630 for many different models. Interaction terms, splines and polynomial terms
8631 are also supported. The two main functions are @code{ggpredict()} and
8632 @code{ggeffect()}. There is a generic @code{plot()} method to plot the
8633 results using @code{ggplot2}.")
8634 (license license:gpl3)))
8635
8636 (define-public r-effectsize
8637 (package
8638 (name "r-effectsize")
8639 (version "0.2.0")
8640 (source
8641 (origin
8642 (method url-fetch)
8643 (uri (cran-uri "effectsize" version))
8644 (sha256
8645 (base32
8646 "1liix8rf8xq3hzi7684bl0s20iflsq6g5mxr5k59wp2qwn1i6aww"))))
8647 (properties `((upstream-name . "effectsize")))
8648 (build-system r-build-system)
8649 (propagated-inputs
8650 `(("r-bayestestr" ,r-bayestestr)
8651 ("r-insight" ,r-insight)
8652 ("r-parameters" ,r-parameters)))
8653 (home-page "https://github.com/easystats/effectsize")
8654 (synopsis "Indices of effect size and standardized parameters")
8655 (description
8656 "This package provides utilities to work with indices of effect size and
8657 standardized parameters for a wide variety of models, allowing computation and
8658 conversion of indices such as Cohen's d, r, odds, etc.")
8659 (license license:gpl3)))
8660
8661 (define-public r-sjplot
8662 (package
8663 (name "r-sjplot")
8664 (version "2.8.3")
8665 (source
8666 (origin
8667 (method url-fetch)
8668 (uri (cran-uri "sjPlot" version))
8669 (sha256
8670 (base32 "0ip1rkjlhyf3axlc8qqss1qq1f0xrda890c1jmcbhm98wwjw264f"))))
8671 (properties `((upstream-name . "sjPlot")))
8672 (build-system r-build-system)
8673 (propagated-inputs
8674 `(("r-bayestestr" ,r-bayestestr)
8675 ("r-dplyr" ,r-dplyr)
8676 ("r-effectsize" ,r-effectsize)
8677 ("r-ggeffects" ,r-ggeffects)
8678 ("r-ggplot2" ,r-ggplot2)
8679 ("r-insight" ,r-insight)
8680 ("r-knitr" ,r-knitr)
8681 ("r-mass" ,r-mass)
8682 ("r-parameters" ,r-parameters)
8683 ("r-performance" ,r-performance)
8684 ("r-purrr" ,r-purrr)
8685 ("r-rlang" ,r-rlang)
8686 ("r-scales" ,r-scales)
8687 ("r-sjlabelled" ,r-sjlabelled)
8688 ("r-sjmisc" ,r-sjmisc)
8689 ("r-sjstats" ,r-sjstats)
8690 ("r-tidyr" ,r-tidyr)))
8691 (native-inputs
8692 `(("r-knitr" ,r-knitr)))
8693 (home-page "https://strengejacke.github.io/sjPlot/")
8694 (synopsis "Data visualization for statistics in social science")
8695 (description
8696 "This package represents a collection of plotting and table output
8697 functions for data visualization. Results of various statistical
8698 analyses (that are commonly used in social sciences) can be visualized using
8699 this package, including simple and cross tabulated frequencies, histograms,
8700 box plots, (generalized) linear models, mixed effects models, principal
8701 component analysis and correlation matrices, cluster analyses, scatter plots,
8702 stacked scales, effects plots of regression models (including interaction
8703 terms) and much more. This package supports labelled data.")
8704 (license license:gpl3)))
8705
8706 (define-public r-ini
8707 (package
8708 (name "r-ini")
8709 (version "0.3.1")
8710 (source
8711 (origin
8712 (method url-fetch)
8713 (uri (cran-uri "ini" version))
8714 (sha256
8715 (base32
8716 "04yqij344dwm0xqgara8xia42mlmij3i8711qbb5534w05a1l6bv"))))
8717 (build-system r-build-system)
8718 (home-page "https://github.com/dvdscripter/ini")
8719 (synopsis "Read and write configuration files")
8720 (description
8721 "This package provides tools to parse simple @code{.ini} configuration
8722 files to an structured list. Users can manipulate this resulting list with
8723 @code{lapply()} functions. This same structured list can be used to write
8724 back to file after modifications.")
8725 (license license:gpl3)))
8726
8727 (define-public r-gh
8728 (package
8729 (name "r-gh")
8730 (version "1.1.0")
8731 (source
8732 (origin
8733 (method url-fetch)
8734 (uri (cran-uri "gh" version))
8735 (sha256
8736 (base32
8737 "1bc9bn1078s664hc806dh0y1ncxif77q479rfmxfir9z7hwaz7yy"))))
8738 (build-system r-build-system)
8739 (propagated-inputs
8740 `(("r-cli" ,r-cli)
8741 ("r-httr" ,r-httr)
8742 ("r-ini" ,r-ini)
8743 ("r-jsonlite" ,r-jsonlite)))
8744 (home-page "https://github.com/r-lib/gh#readme")
8745 (synopsis "Access the GitHub API via R")
8746 (description
8747 "This package provides a minimal R client to access the GitHub API.")
8748 (license license:expat)))
8749
8750 (define-public r-fs
8751 (package
8752 (name "r-fs")
8753 (version "1.4.0")
8754 (source
8755 (origin
8756 (method url-fetch)
8757 (uri (cran-uri "fs" version))
8758 (sha256
8759 (base32
8760 "1ishdxrxy88w1lrn657a573wdra5v7xf1yfa1c4kss07rlynwrj7"))))
8761 (build-system r-build-system)
8762 (native-inputs
8763 `(("pkg-config" ,pkg-config)
8764 ("r-knitr" ,r-knitr)))
8765 (home-page "https://fs.r-lib.org")
8766 (synopsis "Cross-platform file system operations based on libuv")
8767 (description
8768 "This package provides a cross-platform interface to file system
8769 operations, built on top of the libuv C library.")
8770 (license license:gpl3)))
8771
8772 (define-public r-clisymbols
8773 (package
8774 (name "r-clisymbols")
8775 (version "1.2.0")
8776 (source
8777 (origin
8778 (method url-fetch)
8779 (uri (cran-uri "clisymbols" version))
8780 (sha256
8781 (base32
8782 "1q7gi2zmykhzas9v8fdnbpdq7pzdcpbhim1yxvd2062l777g4j86"))))
8783 (build-system r-build-system)
8784 (home-page "https://github.com/gaborcsardi/clisymbols")
8785 (synopsis "Unicode symbols at the R prompt")
8786 (description
8787 "This package provides a small subset of Unicode symbols, that are useful
8788 when building command line applications. They fall back to alternatives on
8789 terminals that do not support Unicode.")
8790 (license license:expat)))
8791
8792 (define-public r-usethis
8793 (package
8794 (name "r-usethis")
8795 (version "1.5.1")
8796 (source
8797 (origin
8798 (method url-fetch)
8799 (uri (cran-uri "usethis" version))
8800 (sha256
8801 (base32
8802 "07an5wbikilg7cb3q6x5aykw8dfqnjrc3wpfb7gjmy0d9fh20fcy"))))
8803 (build-system r-build-system)
8804 (propagated-inputs
8805 `(("r-clipr" ,r-clipr)
8806 ("r-clisymbols" ,r-clisymbols)
8807 ("r-crayon" ,r-crayon)
8808 ("r-curl" ,r-curl)
8809 ("r-desc" ,r-desc)
8810 ("r-fs" ,r-fs)
8811 ("r-gh" ,r-gh)
8812 ("r-git2r" ,r-git2r)
8813 ("r-glue" ,r-glue)
8814 ("r-purrr" ,r-purrr)
8815 ("r-rlang" ,r-rlang)
8816 ("r-rprojroot" ,r-rprojroot)
8817 ("r-rstudioapi" ,r-rstudioapi)
8818 ("r-whisker" ,r-whisker)
8819 ("r-withr" ,r-withr)
8820 ("r-yaml" ,r-yaml)))
8821 (home-page "https://github.com/r-lib/usethis")
8822 (synopsis "Automate R package and project setup")
8823 (description
8824 "This package helps you to automate R package and project setup tasks
8825 that are otherwise performed manually. This includes setting up unit testing,
8826 test coverage, continuous integration, Git, GitHub integration, licenses,
8827 Rcpp, RStudio projects, and more.")
8828 (license license:gpl3)))
8829
8830 (define-public r-sessioninfo
8831 (package
8832 (name "r-sessioninfo")
8833 (version "1.1.1")
8834 (source
8835 (origin
8836 (method url-fetch)
8837 (uri (cran-uri "sessioninfo" version))
8838 (sha256
8839 (base32
8840 "0j5f3l58fynxx3v0w62vqpii7miabszgljpja36xx9s8hikh8sqn"))))
8841 (build-system r-build-system)
8842 (propagated-inputs
8843 `(("r-cli" ,r-cli)
8844 ("r-withr" ,r-withr)))
8845 (home-page "https://github.com/r-lib/sessioninfo#readme")
8846 (synopsis "R session information")
8847 (description
8848 "This package provides tools to query and print information about the
8849 current R session. It is similar to @code{utils::sessionInfo()}, but includes
8850 more information about packages, and where they were installed from.")
8851 (license license:gpl2)))
8852
8853 (define-public r-remotes
8854 (package
8855 (name "r-remotes")
8856 (version "2.1.1")
8857 (source
8858 (origin
8859 (method url-fetch)
8860 (uri (cran-uri "remotes" version))
8861 (sha256
8862 (base32
8863 "12qinl7jv54f2524ri13gcrv6d523rg1harpi500j676zi30fnaf"))))
8864 (build-system r-build-system)
8865 (home-page "https://github.com/r-lib/remotes#readme")
8866 (synopsis "R package installation from remote repositories")
8867 (description
8868 "Download and install R packages stored in GitHub, BitBucket, or plain
8869 subversion or git repositories. This package is a lightweight replacement of
8870 the @code{install_*} functions in the @code{devtools} package. Indeed most of
8871 the code was copied over from @code{devtools}.")
8872 (license license:gpl2+)))
8873
8874 (define-public r-xopen
8875 (package
8876 (name "r-xopen")
8877 (version "1.0.0")
8878 (source
8879 (origin
8880 (method url-fetch)
8881 (uri (cran-uri "xopen" version))
8882 (sha256
8883 (base32
8884 "1vrvgdika1d63dwygynbv2wmd87ll8dji5dy89hj576n8hw601z2"))))
8885 (build-system r-build-system)
8886 (propagated-inputs
8887 `(("r-processx" ,r-processx)))
8888 (home-page "https://github.com/r-lib/xopen#readme")
8889 (synopsis "Open system files, URLs, anything")
8890 (description
8891 "This package provides a cross-platform solution to open files,
8892 directories or URLs with their associated programs.")
8893 (license license:expat)))
8894
8895 (define-public r-rcmdcheck
8896 (package
8897 (name "r-rcmdcheck")
8898 (version "1.3.3")
8899 (source
8900 (origin
8901 (method url-fetch)
8902 (uri (cran-uri "rcmdcheck" version))
8903 (sha256
8904 (base32
8905 "1d4kzgfqy72r6b7bn1j4znyksrycgypx1jjvpv9lrmvn37mpkdhs"))))
8906 (build-system r-build-system)
8907 (propagated-inputs
8908 `(("r-callr" ,r-callr)
8909 ("r-cli" ,r-cli)
8910 ("r-crayon" ,r-crayon)
8911 ("r-desc" ,r-desc)
8912 ("r-digest" ,r-digest)
8913 ("r-pkgbuild" ,r-pkgbuild)
8914 ("r-prettyunits" ,r-prettyunits)
8915 ("r-r6" ,r-r6)
8916 ("r-rprojroot" ,r-rprojroot)
8917 ("r-sessioninfo" ,r-sessioninfo)
8918 ("r-withr" ,r-withr)
8919 ("r-xopen" ,r-xopen)))
8920 (home-page "https://github.com/r-Lib/rcmdcheck#readme")
8921 (synopsis "Run R CMD check from R and capture results")
8922 (description
8923 "Run @code{R CMD check} from R programmatically, and capture the results
8924 of the individual checks.")
8925 (license license:expat)))
8926
8927 (define-public r-rapportools
8928 (package
8929 (name "r-rapportools")
8930 (version "1.0")
8931 (source
8932 (origin
8933 (method url-fetch)
8934 (uri (cran-uri "rapportools" version))
8935 (sha256
8936 (base32
8937 "1sgv4sc737i12arh5dc3263kjsz3dzg06qihfmrqyax94mv2d01b"))))
8938 (build-system r-build-system)
8939 (propagated-inputs
8940 `(("r-pander" ,r-pander)
8941 ("r-plyr" ,r-plyr)
8942 ("r-reshape" ,r-reshape)))
8943 (home-page "https://cran.r-project.org/web/packages/rapportools/")
8944 (synopsis "Miscellaneous helper functions with sane defaults for reporting")
8945 (description
8946 "This package provides helper functions that act as wrappers to more
8947 advanced statistical methods with the advantage of having sane defaults for
8948 quick reporting.")
8949 (license license:agpl3+)))
8950
8951 (define-public r-pander
8952 (package
8953 (name "r-pander")
8954 (version "0.6.3")
8955 (source
8956 (origin
8957 (method url-fetch)
8958 (uri (cran-uri "pander" version))
8959 (sha256
8960 (base32
8961 "1bd9sdghlsppmff18k5fg3i0visq9f4wc82rlhwq5m82bmgdgnyi"))))
8962 (build-system r-build-system)
8963 (propagated-inputs
8964 `(("r-digest" ,r-digest)
8965 ("r-rcpp" ,r-rcpp)))
8966 (home-page "https://rapporter.github.io/pander")
8967 (synopsis "Render R objects into Pandoc's markdown")
8968 (description
8969 "The main aim of the pander R package is to provide a minimal and easy
8970 tool for rendering R objects into Pandoc's markdown. The package is also
8971 capable of exporting/converting complex Pandoc documents (reports) in various
8972 ways.")
8973 ;; This package is licensed under either the AGPLv3+ or the very rarely
8974 ;; used OSL 3.0.
8975 (license license:agpl3+)))
8976
8977 (define-public r-summarytools
8978 (package
8979 (name "r-summarytools")
8980 (version "0.9.6")
8981 (source
8982 (origin
8983 (method url-fetch)
8984 (uri (cran-uri "summarytools" version))
8985 (sha256
8986 (base32
8987 "03pcb2ild1rb9f15yq8b68p9bg10z5wk2x7ahgyzkwdh5f81vbq2"))))
8988 (build-system r-build-system)
8989 (propagated-inputs
8990 `(("r-base64enc" ,r-base64enc)
8991 ("r-checkmate" ,r-checkmate)
8992 ("r-dplyr" ,r-dplyr)
8993 ("r-htmltools" ,r-htmltools)
8994 ("r-lubridate" ,r-lubridate)
8995 ("r-magick" ,r-magick)
8996 ("r-matrixstats" ,r-matrixstats)
8997 ("r-pander" ,r-pander)
8998 ("r-pryr" ,r-pryr)
8999 ("r-rapportools" ,r-rapportools)
9000 ("r-tibble" ,r-tibble)
9001 ("r-tidyr" ,r-tidyr)))
9002 (home-page "https://github.com/dcomtois/summarytools")
9003 (synopsis "Tools to quickly and neatly summarize data")
9004 (description
9005 "This package provides tools for data frame summaries, cross-tabulations,
9006 weight-enabled frequency tables and common univariate statistics in concise
9007 tables available in a variety of formats (plain ASCII, Markdown and HTML). A
9008 good point-of-entry for exploring data, both for experienced and new R
9009 users.")
9010 (license license:gpl2)))
9011
9012 (define-public r-lsei
9013 (package
9014 (name "r-lsei")
9015 (version "1.2-0")
9016 (source
9017 (origin
9018 (method url-fetch)
9019 (uri (cran-uri "lsei" version))
9020 (sha256
9021 (base32
9022 "1xl06fb3is744pxlh42wx5hn1h0ab1k31wnmsmh0524kxzcyp0a7"))))
9023 (build-system r-build-system)
9024 (native-inputs
9025 `(("gfortran" ,gfortran)))
9026 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
9027 (synopsis "Solve regression problems under equality/inequality constraints")
9028 (description
9029 "It contains functions that solve least squares linear regression
9030 problems under linear equality/inequality constraints. Functions for solving
9031 quadratic programming problems are also available, which transform such
9032 problems into least squares ones first.")
9033 (license license:gpl2+)))
9034
9035 (define-public r-npsurv
9036 (package
9037 (name "r-npsurv")
9038 (version "0.4-0")
9039 (source
9040 (origin
9041 (method url-fetch)
9042 (uri (cran-uri "npsurv" version))
9043 (sha256
9044 (base32
9045 "1wq4c9yfha5azjhrn40iiqkshmvh611sa90jp3lh82n4bl9zfk20"))))
9046 (build-system r-build-system)
9047 (propagated-inputs
9048 `(("r-lsei" ,r-lsei)))
9049 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
9050 (synopsis "Nonparametric survival analysis")
9051 (description
9052 "This package contains functions for non-parametric survival analysis of
9053 exact and interval-censored observations.")
9054 (license license:gpl2+)))
9055
9056 (define-public r-clusteval
9057 (package
9058 (name "r-clusteval")
9059 (version "0.1")
9060 (source
9061 (origin
9062 (method url-fetch)
9063 (uri (cran-uri "clusteval" version))
9064 (sha256
9065 (base32
9066 "1ld0bdl4fy8dsfzm3k7a37cyxc6pfc9qs31x4pxd3z5rslghz7rj"))))
9067 (build-system r-build-system)
9068 (propagated-inputs
9069 `(("r-mvtnorm" ,r-mvtnorm)
9070 ("r-rcpp" ,r-rcpp)))
9071 (home-page "https://cran.r-project.org/web/packages/clusteval/")
9072 (synopsis "Evaluation of clustering algorithms")
9073 (description
9074 "This R package provides a suite of tools to evaluate clustering
9075 algorithms, clusterings, and individual clusters.")
9076 (license license:expat)))
9077
9078 (define-public r-tweedie
9079 (package
9080 (name "r-tweedie")
9081 (version "2.3.2")
9082 (source
9083 (origin
9084 (method url-fetch)
9085 (uri (cran-uri "tweedie" version))
9086 (sha256
9087 (base32
9088 "10fv998qjxsyx0h94fi0xbh6xbf24nwgh254n9zfnmix9vk2cqls"))))
9089 (build-system r-build-system)
9090 (native-inputs `(("gfortran" ,gfortran)))
9091 (home-page "https://cran.r-project.org/web/packages/tweedie/")
9092 (synopsis "Evaluation of Tweedie exponential family models")
9093 (description
9094 "Maximum likelihood computations for Tweedie families, including the
9095 series expansion (Dunn and Smyth, 2005; <doi10.1007/s11222-005-4070-y>) and
9096 the Fourier inversion (Dunn and Smyth, 2008; <doi:10.1007/s11222-007-9039-6>),
9097 and related methods.")
9098 (license license:gpl2+)))
9099
9100 (define-public r-rcppgsl
9101 (package
9102 (name "r-rcppgsl")
9103 (version "0.3.7")
9104 (source
9105 (origin
9106 (method url-fetch)
9107 (uri (cran-uri "RcppGSL" version))
9108 (sha256
9109 (base32 "0cnw2k7cfqrm79r6j283aybflxig80x4n4rjkfp2317wf10mrsa5"))))
9110 (properties `((upstream-name . "RcppGSL")))
9111 (build-system r-build-system)
9112 (propagated-inputs
9113 `(("r-rcpp" ,r-rcpp)
9114 ("gsl" ,gsl)))
9115 (native-inputs
9116 `(("r-knitr" ,r-knitr))) ; for vignettes
9117 (home-page "https://cran.r-project.org/web/packages/RcppGSL/")
9118 (synopsis "Rcpp integration for GSL vectors and matrices")
9119 (description
9120 "The GNU Scientific Library (or GSL) is a collection of numerical
9121 routines for scientific computing. It is particularly useful for C and C++
9122 programs as it provides a standard C interface to a wide range of mathematical
9123 routines. There are over 1000 functions in total with an extensive test
9124 suite. The RcppGSL package provides an easy-to-use interface between GSL data
9125 structures and R using concepts from Rcpp which is itself a package that eases
9126 the interfaces between R and C++.")
9127 (license license:gpl2+)))
9128
9129 (define-public r-mvabund
9130 (package
9131 (name "r-mvabund")
9132 (version "4.1.3")
9133 (source
9134 (origin
9135 (method url-fetch)
9136 (uri (cran-uri "mvabund" version))
9137 (sha256
9138 (base32
9139 "1z58h4dk3mc2hfnfvc7pghk471cbp7ah2s1z2ria5igw4s80962b"))))
9140 (build-system r-build-system)
9141 (propagated-inputs
9142 `(("r-mass" ,r-mass)
9143 ("r-rcpp" ,r-rcpp)
9144 ("r-rcppgsl" ,r-rcppgsl)
9145 ("r-statmod" ,r-statmod)
9146 ("r-tweedie" ,r-tweedie)))
9147 (home-page "https://cran.r-project.org/web/packages/mvabund/")
9148 (synopsis "Statistical methods for analysing multivariate abundance data")
9149 (description
9150 "This package provides a set of tools for displaying, modeling and
9151 analysing multivariate abundance data in community ecology.")
9152 (license license:lgpl2.1+)))
9153
9154 (define-public r-afex
9155 (package
9156 (name "r-afex")
9157 (version "0.27-2")
9158 (source
9159 (origin
9160 (method url-fetch)
9161 (uri (cran-uri "afex" version))
9162 (sha256
9163 (base32
9164 "0qsmcddy4449qjj3ajmqvdiqdkhkswmz5dqf150wxwq897p3bvf2"))))
9165 (build-system r-build-system)
9166 (propagated-inputs
9167 `(("r-car" ,r-car)
9168 ("r-lme4" ,r-lme4)
9169 ("r-lmertest" ,r-lmertest)
9170 ("r-pbkrtest" ,r-pbkrtest)
9171 ("r-reshape2" ,r-reshape2)))
9172 (native-inputs
9173 `(("r-knitr" ,r-knitr)))
9174 (home-page "https://afex.singmann.science/")
9175 (synopsis "Analysis of factorial experiments")
9176 (description
9177 "This package provides convenience functions for analyzing factorial
9178 experiments using ANOVA or mixed models.")
9179 (license license:gpl2+)))
9180
9181 (define-public r-lmertest
9182 (package
9183 (name "r-lmertest")
9184 (version "3.1-1")
9185 (source
9186 (origin
9187 (method url-fetch)
9188 (uri (cran-uri "lmerTest" version))
9189 (sha256
9190 (base32
9191 "0r2vvs3nl6p8xla3gd943khb4ixp0alvspqpnz2y6n3wk8zgh3jj"))))
9192 (properties `((upstream-name . "lmerTest")))
9193 (build-system r-build-system)
9194 (propagated-inputs
9195 `(("r-ggplot2" ,r-ggplot2)
9196 ("r-lme4" ,r-lme4)
9197 ("r-mass" ,r-mass)
9198 ("r-numderiv" ,r-numderiv)))
9199 (home-page "https://github.com/runehaubo/lmerTestR")
9200 (synopsis "Tests in linear mixed effects models")
9201 (description
9202 "This package provides p-values in type I, II or III anova and summary
9203 tables for @code{lmer} model fits via Satterthwaite's degrees of freedom
9204 method. A Kenward-Roger method is also available via the @code{pbkrtest}
9205 package. Model selection methods include step, drop1 and anova-like tables
9206 for random effects (ranova). Methods for Least-Square means (LS-means) and
9207 tests of linear contrasts of fixed effects are also available.")
9208 (license license:gpl2+)))
9209
9210 (define-public r-r2glmm
9211 (package
9212 (name "r-r2glmm")
9213 (version "0.1.2")
9214 (source
9215 (origin
9216 (method url-fetch)
9217 (uri (cran-uri "r2glmm" version))
9218 (sha256
9219 (base32
9220 "0iim92blpa59vgz97c2pi05yhbjjmaffdbkbmk5kplfb2vmazgiy"))))
9221 (build-system r-build-system)
9222 (propagated-inputs
9223 `(("r-afex" ,r-afex)
9224 ("r-data-table" ,r-data-table)
9225 ("r-dplyr" ,r-dplyr)
9226 ("r-ggplot2" ,r-ggplot2)
9227 ("r-gridextra" ,r-gridextra)
9228 ("r-lmertest" ,r-lmertest)
9229 ("r-mass" ,r-mass)
9230 ("r-matrix" ,r-matrix)
9231 ("r-mgcv" ,r-mgcv)
9232 ("r-pbkrtest" ,r-pbkrtest)))
9233 (home-page "https://github.com/bcjaeger/r2glmm")
9234 (synopsis "Compute R squared for mixed (multilevel) models")
9235 (description
9236 "This package computes model and semi partial R squared with confidence
9237 limits for the linear and generalized linear mixed model (LMM and GLMM). The
9238 R squared measure from L. J. Edwards et al. (2008) is extended to the GLMM
9239 using @dfn{penalized quasi-likelihood} (PQL) estimation (see Jaeger et
9240 al. (2016)).")
9241 (license license:gpl2)))
9242
9243 (define-public r-weights
9244 (package
9245 (name "r-weights")
9246 (version "1.0.1")
9247 (source
9248 (origin
9249 (method url-fetch)
9250 (uri (cran-uri "weights" version))
9251 (sha256
9252 (base32
9253 "1ka2kvzg464vn80qziqy4mrciy9wwd3jfasgq0d33wbiblhmxkj5"))))
9254 (build-system r-build-system)
9255 (propagated-inputs
9256 `(("r-gdata" ,r-gdata)
9257 ("r-hmisc" ,r-hmisc)
9258 ("r-mice" ,r-mice)))
9259 (home-page
9260 "https://cran.r-project.org/web/packages/weights/")
9261 (synopsis "Weighting and weighted statistics")
9262 (description "This package Provides a variety of functions for producing
9263 simple weighted statistics, such as weighted Pearson's correlations, partial
9264 correlations, Chi-Squared statistics, histograms, and t-tests. Also now
9265 includes some software for quickly recoding survey data and plotting point
9266 estimates from interaction terms in regressions (and multiply imputed
9267 regressions). NOTE: Weighted partial correlation calculations pulled to
9268 address a bug.")
9269 (license license:gpl2+)))
9270
9271 (define-public r-rcppannoy
9272 (package
9273 (name "r-rcppannoy")
9274 (version "0.0.16")
9275 (source
9276 (origin
9277 (method url-fetch)
9278 (uri (cran-uri "RcppAnnoy" version))
9279 (sha256
9280 (base32
9281 "0bfa35lp6vc4b0h3ymvdx50br233q8vvyjml34ngi81rj0imz3fr"))))
9282 (properties `((upstream-name . "RcppAnnoy")))
9283 (build-system r-build-system)
9284 (propagated-inputs
9285 `(("r-rcpp" ,r-rcpp)))
9286 (home-page "https://cran.r-project.org/web/packages/RcppAnnoy/")
9287 (synopsis "Rcpp bindings for Annoy, a library for Approximate Nearest Neighbors")
9288 (description
9289 "Annoy is a small C++ library for Approximate Nearest Neighbors written
9290 for efficient memory usage as well an ability to load from and save to disk.
9291 This package provides an R interface.")
9292 ;; Annoy is released under ASL 2.0, but this wrapper is released under
9293 ;; GPLv2+.
9294 (license (list license:gpl2+ license:asl2.0))))
9295
9296 (define-public r-rcpphnsw
9297 (package
9298 (name "r-rcpphnsw")
9299 (version "0.2.0")
9300 (source
9301 (origin
9302 (method url-fetch)
9303 (uri (cran-uri "RcppHNSW" version))
9304 (sha256
9305 (base32
9306 "0gqdkw7vkcm544rz45g0hplg836ygzbfwk9gh9wr0817icvdb3qv"))))
9307 (properties `((upstream-name . "RcppHNSW")))
9308 (build-system r-build-system)
9309 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9310 (home-page "https://cran.r-project.org/web/packages/RcppHNSW/")
9311 (synopsis "Rcpp bindings for hnswlib, a library for approximate nearest neighbors")
9312 (description
9313 "Hnswlib is a C++ library for approximate nearest neighbors. This
9314 package provides a minimal R interface by relying on the Rcpp package.")
9315 ;; hnswlib is released under Version 2.0 of the Apache License.
9316 (license (list license:gpl3 license:asl2.0))))
9317
9318 (define-public r-rcppparallel
9319 (package
9320 (name "r-rcppparallel")
9321 (version "5.0.0")
9322 (source
9323 (origin
9324 (method url-fetch)
9325 (uri (cran-uri "RcppParallel" version))
9326 (sha256
9327 (base32
9328 "1mhd6vp47xmfw533h0pkvydv96m57fspvd85g8m7iqb5rcxvhhdb"))))
9329 (properties `((upstream-name . "RcppParallel")))
9330 (build-system r-build-system)
9331 (home-page "https://rcppcore.github.io/RcppParallel/")
9332 (synopsis "Parallel programming tools for Rcpp")
9333 (description
9334 "This package provides high level functions for parallel programming with
9335 Rcpp. For example, the @code{parallelFor()} function can be used to convert
9336 the work of a standard serial @code{for} loop into a parallel one and the
9337 @code{parallelReduce()} function can be used for accumulating aggregates or
9338 other values.")
9339 (license license:gpl2)))
9340
9341 (define-public r-ncdf4
9342 (package
9343 (name "r-ncdf4")
9344 (version "1.17")
9345 (source
9346 (origin
9347 (method url-fetch)
9348 (uri (cran-uri "ncdf4" version))
9349 (sha256
9350 (base32
9351 "1xls44ln2zjrrlimxl8v4bk2ni3g45c9j0gxdnjx31rikmrc95fv"))))
9352 (build-system r-build-system)
9353 (inputs
9354 `(("netcdf" ,netcdf)
9355 ("zlib" ,zlib)))
9356 (home-page "https://cran.r-project.org/web/packages/ncdf4/index.html")
9357 (synopsis "R interface to Unidata netCDF format data files")
9358 (description
9359 "This package provides a high-level R interface to data files written
9360 using Unidata's netCDF library (version 4 or earlier), which are binary data
9361 files that are portable across platforms and include metadata information in
9362 addition to the data sets. Using this package, netCDF files can be opened and
9363 data sets read in easily. It is also easy to create new netCDF dimensions,
9364 variables, and files, in either version 3 or 4 format, and manipulate existing
9365 netCDF files.")
9366 (license license:gpl3+)))
9367
9368 (define-public r-biocmanager
9369 (package
9370 (name "r-biocmanager")
9371 (version "1.30.10")
9372 (source
9373 (origin
9374 (method url-fetch)
9375 (uri (cran-uri "BiocManager" version))
9376 (sha256
9377 (base32 "03n9s2vf7vgpgb5alpxwamf9xfkn32cbzngwyn6spq1bnh9a9dzk"))))
9378 (properties `((upstream-name . "BiocManager")))
9379 (build-system r-build-system)
9380 (home-page "https://cran.r-project.org/web/packages/BiocManager/")
9381 (synopsis "Access the Bioconductor project package repository")
9382 (description
9383 "This package provides a convenient tool to install and update
9384 Bioconductor packages.")
9385 (license license:artistic2.0)))
9386
9387 (define-public r-rgl
9388 (package
9389 (name "r-rgl")
9390 (version "0.100.50")
9391 (source
9392 (origin
9393 (method url-fetch)
9394 (uri (cran-uri "rgl" version))
9395 (sha256
9396 (base32
9397 "165p932ml7dpjkm41zc47p5cdxar69il0m5yvg0avi8q01vr17ay"))))
9398 (build-system r-build-system)
9399 (native-inputs
9400 `(("pkg-config" ,pkg-config)))
9401 (inputs
9402 `(("freetype" ,freetype)
9403 ("libpng" ,libpng)
9404 ("glu" ,glu)
9405 ("libx11" ,libx11)
9406 ("ghc-pandoc" ,ghc-pandoc)
9407 ("zlib" ,zlib)))
9408 (propagated-inputs
9409 `(("r-crosstalk" ,r-crosstalk)
9410 ("r-htmltools" ,r-htmltools)
9411 ("r-htmlwidgets" ,r-htmlwidgets)
9412 ("r-jsonlite" ,r-jsonlite)
9413 ("r-knitr" ,r-knitr)
9414 ("r-magrittr" ,r-magrittr)
9415 ("r-manipulatewidget" ,r-manipulatewidget)
9416 ("r-shiny" ,r-shiny)))
9417 (home-page "https://r-forge.r-project.org/projects/rgl/")
9418 (synopsis "3D visualization using OpenGL")
9419 (description
9420 "This package provides medium to high level functions for 3D interactive graphics,
9421 including functions modelled on base graphics (@code{plot3d()}, etc.) as well
9422 as functions for constructing representations of geometric
9423 objects (@code{cube3d()}, etc.). Output may be on screen using OpenGL, or to
9424 various standard 3D file formats including WebGL, PLY, OBJ, STL as well as 2D
9425 image formats, including PNG, Postscript, SVG, PGF.")
9426 ;; Any version of the GPL.
9427 (license (list license:gpl2+ license:gpl3+))))
9428
9429 (define-public r-multicool
9430 (package
9431 (name "r-multicool")
9432 (version "0.1-11")
9433 (source
9434 (origin
9435 (method url-fetch)
9436 (uri (cran-uri "multicool" version))
9437 (sha256
9438 (base32
9439 "0xk408qbz9cxwf51j3pmy55gcjcnws8mc6j3vyn9zhramxj7x40w"))))
9440 (build-system r-build-system)
9441 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9442 (home-page "https://cran.r-project.org/web/packages/multicool/")
9443 (synopsis "Permutations of multisets in cool-lex order")
9444 (description
9445 "This package provides a set of tools to permute multisets without loops
9446 or hash tables and to generate integer partitions. Cool-lex order is similar
9447 to colexicographical order.")
9448 (license license:gpl2)))
9449
9450 (define-public r-misc3d
9451 (package
9452 (name "r-misc3d")
9453 (version "0.8-4")
9454 (source
9455 (origin
9456 (method url-fetch)
9457 (uri (cran-uri "misc3d" version))
9458 (sha256
9459 (base32
9460 "0qjzpw3h09qi2gfz52b7nhzd95p7yyxsd03fldc9wzzn6wi3vpkm"))))
9461 (build-system r-build-system)
9462 (home-page "https://cran.r-project.org/web/packages/misc3d/")
9463 (synopsis "Miscellaneous 3D Plots")
9464 (description
9465 "This package provides a collection of miscellaneous 3d plots, including
9466 isosurfaces.")
9467 ;; Any version of the GPL.
9468 (license (list license:gpl2+ license:gpl3+))))
9469
9470 (define-public r-ks
9471 (package
9472 (name "r-ks")
9473 (version "1.11.7")
9474 (source
9475 (origin
9476 (method url-fetch)
9477 (uri (cran-uri "ks" version))
9478 (sha256
9479 (base32 "1f6jvxy0hmngyvnvrknzbmhl42njk0vqyycvydm4qnp8cqirqvba"))))
9480 (build-system r-build-system)
9481 (propagated-inputs
9482 `(("r-fnn" ,r-fnn)
9483 ("r-kernlab" ,r-kernlab)
9484 ("r-kernsmooth" ,r-kernsmooth)
9485 ("r-matrix" ,r-matrix)
9486 ("r-mclust" ,r-mclust)
9487 ("r-mgcv" ,r-mgcv)
9488 ("r-multicool" ,r-multicool)
9489 ("r-mvtnorm" ,r-mvtnorm)))
9490 (home-page "http://www.mvstat.net/tduong/")
9491 (synopsis "Kernel smoothing")
9492 (description
9493 "This package provides kernel smoothers for univariate and multivariate
9494 data, including density functions, density derivatives, cumulative
9495 distributions, modal clustering, discriminant analysis, and two-sample
9496 hypothesis testing.")
9497 ;; Either version of the GPL.
9498 (license (list license:gpl2 license:gpl3))))
9499
9500 (define-public r-feature
9501 (package
9502 (name "r-feature")
9503 (version "1.2.13")
9504 (source
9505 (origin
9506 (method url-fetch)
9507 (uri (cran-uri "feature" version))
9508 (sha256
9509 (base32
9510 "07hkw0bv38naj2hdsx4xxrm2dngi6w3rbvgr7s50bjic8hlgy1ra"))))
9511 (build-system r-build-system)
9512 (propagated-inputs
9513 `(("r-ks" ,r-ks)
9514 ("r-misc3d" ,r-misc3d)
9515 ("r-rgl" ,r-rgl)))
9516 (home-page "http://www.mvstat.net/tduong/")
9517 (synopsis "Inferential feature significance for kernel density estimation")
9518 (description
9519 "The feature package contains functions to display and compute kernel
9520 density estimates, significant gradient and significant curvature regions.
9521 Significant gradient and/or curvature regions often correspond to significant
9522 features (e.g. local modes).")
9523 ;; Either version of the GPL.
9524 (license (list license:gpl2 license:gpl3))))
9525
9526 (define-public r-arm
9527 (package
9528 (name "r-arm")
9529 (version "1.10-1")
9530 (source
9531 (origin
9532 (method url-fetch)
9533 (uri (cran-uri "arm" version))
9534 (sha256
9535 (base32
9536 "0vvp90jygajd6ydky57z66wqjq9msfbl88irj5jbsray574mh4bg"))))
9537 (build-system r-build-system)
9538 (propagated-inputs
9539 `(("r-abind" ,r-abind)
9540 ("r-coda" ,r-coda)
9541 ("r-lme4" ,r-lme4)
9542 ("r-mass" ,r-mass)
9543 ("r-matrix" ,r-matrix)
9544 ("r-nlme" ,r-nlme)))
9545 (home-page "https://cran.r-project.org/web/packages/arm/")
9546 (synopsis "Data analysis using regression and multilevel/hierarchical models")
9547 (description
9548 "This package provides functions to accompany A. Gelman and J. Hill,
9549 Data Analysis Using Regression and Multilevel/Hierarchical Models, Cambridge
9550 University Press, 2007.")
9551 (license license:gpl3+)))
9552
9553 (define-public r-circular
9554 (package
9555 (name "r-circular")
9556 (version "0.4-93")
9557 (source
9558 (origin
9559 (method url-fetch)
9560 (uri (cran-uri "circular" version))
9561 (sha256
9562 (base32
9563 "0hki85rs8wc5950pjaw28q54rly2napfbcrx3pchlfap6wwy5kkn"))))
9564 (build-system r-build-system)
9565 (propagated-inputs
9566 `(("r-boot" ,r-boot)
9567 ("r-mvtnorm" ,r-mvtnorm)))
9568 (native-inputs
9569 `(("gfortran" ,gfortran)))
9570 (home-page "https://cran.r-project.org/web/packages/circular/")
9571 (synopsis "Circular statistics")
9572 (description
9573 "This package provides tools for circular statistics, from \"Topics in
9574 circular Statistics\" (2001) S. Rao Jammalamadaka and A. SenGupta, World
9575 Scientific.")
9576 (license license:gpl2+)))
9577
9578 (define-public r-activity
9579 (package
9580 (name "r-activity")
9581 (version "1.3")
9582 (source
9583 (origin
9584 (method url-fetch)
9585 (uri (cran-uri "activity" version))
9586 (sha256
9587 (base32
9588 "12imqj366dp6pam5gap6ji56p5wf1073xz5g4iikfxf5l8snxw92"))))
9589 (build-system r-build-system)
9590 (propagated-inputs
9591 `(("r-circular" ,r-circular)
9592 ("r-insol" ,r-insol)
9593 ("r-pbapply" ,r-pbapply)))
9594 (home-page "https://cran.r-project.org/web/packages/activity/")
9595 (synopsis "Animal activity statistics")
9596 (description
9597 "This package provides functions to fit kernel density functions to
9598 animal activity time data; plot activity distributions; quantify overall
9599 levels of activity; statistically compare activity metrics through
9600 bootstrapping; and evaluate variation in linear variables with time (or other
9601 circular variables).")
9602 (license license:gpl3)))
9603
9604 (define-public r-ouch
9605 (package
9606 (name "r-ouch")
9607 (version "2.14-1")
9608 (source
9609 (origin
9610 (method url-fetch)
9611 (uri (cran-uri "ouch" version))
9612 (sha256
9613 (base32
9614 "0ddf9bw5lhj8vb0ja78jf99i0smq4rgmm842k4a4ygap41vdyn2b"))))
9615 (build-system r-build-system)
9616 (propagated-inputs `(("r-subplex" ,r-subplex)))
9617 (home-page "https://kingaa.github.io/ouch/")
9618 (synopsis "Ornstein-Uhlenbeck models for phylogenetic comparative hypotheses")
9619 (description
9620 "This package provides tools to fit and compare Ornstein-Uhlenbeck models
9621 for evolution along a phylogenetic tree.")
9622 (license license:gpl2+)))
9623
9624 (define-public r-fmsb
9625 (package
9626 (name "r-fmsb")
9627 (version "0.7.0")
9628 (source
9629 (origin
9630 (method url-fetch)
9631 (uri (cran-uri "fmsb" version))
9632 (sha256
9633 (base32
9634 "0x1wkzfdvv4s5xmr0whcwjz4aac71gacwymj2c3mzj2bbswwlw45"))))
9635 (build-system r-build-system)
9636 (home-page "http://minato.sip21c.org/msb/")
9637 (synopsis "Functions for medical statistics book with demographic data")
9638 (description
9639 "This package provides several utility functions for the book entitled
9640 \"Practices of Medical and Health Data Analysis using R\" (Pearson Education
9641 Japan, 2007) with Japanese demographic data and some demographic analysis
9642 related functions.")
9643 (license license:gpl2+)))
9644
9645 (define-public r-stabledist
9646 (package
9647 (name "r-stabledist")
9648 (version "0.7-1")
9649 (source
9650 (origin
9651 (method url-fetch)
9652 (uri (cran-uri "stabledist" version))
9653 (sha256
9654 (base32
9655 "0scar396wiq6wkbkvwp4qrxqc1m075y56p37i6iry5rw796p1i86"))))
9656 (build-system r-build-system)
9657 (home-page "https://www.rmetrics.org")
9658 (synopsis "Stable distribution functions")
9659 (description
9660 "This package provides density, probability and quantile functions, and
9661 random number generation for (skew) stable distributions, using the
9662 parametrizations of Nolan.")
9663 (license license:gpl2+)))
9664
9665 (define-public r-gsl
9666 (package
9667 (name "r-gsl")
9668 (version "2.1-6")
9669 (source
9670 (origin
9671 (method url-fetch)
9672 (uri (cran-uri "gsl" version))
9673 (sha256
9674 (base32
9675 "0p4rh7npp6qbfc5sxjq86xjn7c9ivf3pd60qf1hldwckjqin7m7m"))))
9676 (build-system r-build-system)
9677 (inputs
9678 `(("gsl" ,gsl)))
9679 (home-page "https://cran.r-project.org/web/packages/gsl")
9680 (synopsis "Wrapper for the GNU Scientific Library")
9681 (description
9682 "This package provides an R wrapper for the special functions and quasi
9683 random number generators of the GNU Scientific Library.")
9684 (license license:gpl2+)))
9685
9686 (define-public r-adgoftest
9687 (package
9688 (name "r-adgoftest")
9689 (version "0.3")
9690 (source
9691 (origin
9692 (method url-fetch)
9693 (uri (cran-uri "ADGofTest" version))
9694 (sha256
9695 (base32
9696 "0ik817qzqp6kfbckjp1z7srlma0w6z2zcwykh0jdiv7nahwk3ncw"))))
9697 (properties `((upstream-name . "ADGofTest")))
9698 (build-system r-build-system)
9699 (home-page "https://cran.r-project.org/web/packages/ADGofTest")
9700 (synopsis "Anderson-Darling GoF test")
9701 (description
9702 "This package provides an implementation of the Anderson-Darling GoF test
9703 with p-value calculation based on Marsaglia's 2004 paper \"Evaluating the
9704 Anderson-Darling Distribution\".")
9705 ;; Any version of the GPL.
9706 (license license:gpl3+)))
9707
9708 (define-public r-softimpute
9709 (package
9710 (name "r-softimpute")
9711 (version "1.4")
9712 (source
9713 (origin
9714 (method url-fetch)
9715 (uri (cran-uri "softImpute" version))
9716 (sha256
9717 (base32
9718 "07cxbzkl08q58m1455i139952rmryjlic4s2f2hscl5zxxmfdxcq"))))
9719 (properties `((upstream-name . "softImpute")))
9720 (build-system r-build-system)
9721 (propagated-inputs
9722 `(("r-matrix" ,r-matrix)))
9723 (native-inputs
9724 `(("gfortran" ,gfortran)))
9725 (home-page "https://cran.r-project.org/web/packages/softImpute")
9726 (synopsis "Matrix completion via iterative soft-thresholded SVD")
9727 (description
9728 "This package provides iterative methods for matrix completion that use
9729 nuclear-norm regularization. The package includes procedures for centering
9730 and scaling rows, columns or both, and for computing low-rank @dfn{single
9731 value decompositions} (SVDs) on large sparse centered matrices (i.e. principal
9732 components).")
9733 (license license:gpl2)))
9734
9735 (define-public r-fftwtools
9736 (package
9737 (name "r-fftwtools")
9738 (version "0.9-8")
9739 (source
9740 (origin
9741 (method url-fetch)
9742 (uri (cran-uri "fftwtools" version))
9743 (sha256
9744 (base32
9745 "1nqvpzda281rxi1cmwajxxsn3sc3gz7scv8bvs5jm34kf36whha6"))))
9746 (build-system r-build-system)
9747 (inputs `(("fftw" ,fftw)))
9748 (home-page "https://github.com/krahim/fftwtools")
9749 (synopsis "Wrapper for FFTW3")
9750 (description
9751 "This package provides a wrapper for several FFTW functions. It provides
9752 access to the two-dimensional FFT, the multivariate FFT, and the
9753 one-dimensional real to complex FFT using the FFTW3 library. The package
9754 includes the functions @code{fftw()} and @code{mvfftw()} which are designed to
9755 mimic the functionality of the R functions @code{fft()} and @code{mvfft()}.
9756 The FFT functions have a parameter that allows them to not return the
9757 redundant complex conjugate when the input is real data.")
9758 (license license:gpl2+)))
9759
9760 (define-public r-tiff
9761 (package
9762 (name "r-tiff")
9763 (version "0.1-5")
9764 (source
9765 (origin
9766 (method url-fetch)
9767 (uri (cran-uri "tiff" version))
9768 (sha256
9769 (base32
9770 "0asf2bws3x3yd3g3ixvk0f86b0mdf882pl8xrqlxrkbgjalyc54m"))))
9771 (build-system r-build-system)
9772 (inputs
9773 `(("libtiff" ,libtiff)
9774 ("libjpeg" ,libjpeg)
9775 ("zlib" ,zlib)))
9776 (home-page "https://www.rforge.net/tiff/")
9777 (synopsis "Read and write TIFF images")
9778 (description
9779 "This package provides an easy and simple way to read, write and display
9780 bitmap images stored in the TIFF format. It can read and write both files and
9781 in-memory raw vectors.")
9782 ;; Either of these two license versions.
9783 (license (list license:gpl2 license:gpl3))))
9784
9785 (define-public r-nlp
9786 (package
9787 (name "r-nlp")
9788 (version "0.2-0")
9789 (source
9790 (origin
9791 (method url-fetch)
9792 (uri (cran-uri "NLP" version))
9793 (sha256
9794 (base32
9795 "0xbhkrnxcbf322jfw31xcn4y2gnk5y7ccq1bz4h3prf44h0whr7w"))))
9796 (properties `((upstream-name . "NLP")))
9797 (build-system r-build-system)
9798 (home-page "https://cran.r-project.org/web/packages/NLP/")
9799 (synopsis "Natural language processing infrastructure")
9800 (description
9801 "This package provides basic classes and methods for Natural Language
9802 Processing.")
9803 (license license:gpl3)))
9804
9805 (define-public r-tm
9806 (package
9807 (name "r-tm")
9808 (version "0.7-7")
9809 (source
9810 (origin
9811 (method url-fetch)
9812 (uri (cran-uri "tm" version))
9813 (sha256
9814 (base32
9815 "0pyics8j7a4wkh5gzin46l0qars5vgbb1886xqpdqjs1z0gy9nyh"))))
9816 (properties `((upstream-name . "tm")))
9817 (build-system r-build-system)
9818 (propagated-inputs
9819 `(("r-bh" ,r-bh)
9820 ("r-nlp" ,r-nlp)
9821 ("r-rcpp" ,r-rcpp)
9822 ("r-slam" ,r-slam)
9823 ("r-xml2" ,r-xml2)))
9824 (home-page "http://tm.r-forge.r-project.org/")
9825 (synopsis "Text mining package")
9826 (description
9827 "This package provides a framework for text mining applications within R.")
9828 (license license:gpl3)))
9829
9830 (define-public r-waveslim
9831 (package
9832 (name "r-waveslim")
9833 (version "1.8.2")
9834 (source
9835 (origin
9836 (method url-fetch)
9837 (uri (cran-uri "waveslim" version))
9838 (sha256
9839 (base32
9840 "0ibivnhz0l06sss5rrrcvyiwg3qpbyk3qn4vx4pp90kj09x4yg0k"))))
9841 (build-system r-build-system)
9842 (native-inputs
9843 `(("gfortran" ,gfortran)))
9844 (home-page "http://waveslim.blogspot.com")
9845 (synopsis "Basic wavelet routines for signal processing")
9846 (description
9847 "This package provides basic wavelet routines for time series (1D),
9848 image (2D) and array (3D) analysis. The code provided here is based on
9849 wavelet methodology developed in Percival and Walden (2000); Gencay, Selcuk
9850 and Whitcher (2001); the dual-tree complex wavelet transform (DTCWT) from
9851 Kingsbury (1999, 2001) as implemented by Selesnick; and Hilbert wavelet
9852 pairs (Selesnick 2001, 2002).")
9853 (license license:bsd-3)))
9854
9855 (define-public r-wordcloud
9856 (package
9857 (name "r-wordcloud")
9858 (version "2.6")
9859 (source
9860 (origin
9861 (method url-fetch)
9862 (uri (cran-uri "wordcloud" version))
9863 (sha256
9864 (base32
9865 "0j96yyvm6bcrrpbdx4w26piqx44a0vbsr3px9cb4zk8a8da6jwak"))))
9866 (build-system r-build-system)
9867 (propagated-inputs
9868 `(("r-rcolorbrewer" ,r-rcolorbrewer)
9869 ("r-rcpp" ,r-rcpp)
9870 ;; The "tm" package is only "suggested" according to CRAN, but the
9871 ;; wordcloud package cannot be loaded without it.
9872 ("r-tm" ,r-tm)))
9873 (home-page "https://cran.r-project.org/web/packages/wordcloud")
9874 (synopsis "Word clouds")
9875 (description
9876 "This package provides functionality to create pretty word clouds,
9877 visualize differences and similarity between documents, and avoid
9878 over-plotting in scatter plots with text.")
9879 (license license:lgpl2.1)))
9880
9881 (define-public r-colorramps
9882 (package
9883 (name "r-colorramps")
9884 (version "2.3")
9885 (source
9886 (origin
9887 (method url-fetch)
9888 (uri (cran-uri "colorRamps" version))
9889 (sha256
9890 (base32
9891 "0shbjh83x1axv4drm5r3dwgbyv70idih8z4wlzjs4hiac2qfl41z"))))
9892 (properties `((upstream-name . "colorRamps")))
9893 (build-system r-build-system)
9894 (home-page "https://cran.r-project.org/web/packages/colorRamps")
9895 (synopsis "Build color tables")
9896 (description "This package provides features to build gradient color
9897 maps.")
9898 ;; Any version of the GPL
9899 (license license:gpl3+)))
9900
9901 (define-public r-tidytree
9902 (package
9903 (name "r-tidytree")
9904 (version "0.3.3")
9905 (source
9906 (origin
9907 (method url-fetch)
9908 (uri (cran-uri "tidytree" version))
9909 (sha256
9910 (base32 "05b53dap0f784kl6s1wgck6m7brwmy6ifqp7v5l06s1spfspagl6"))))
9911 (build-system r-build-system)
9912 (propagated-inputs
9913 `(("r-ape" ,r-ape)
9914 ("r-dplyr" ,r-dplyr)
9915 ("r-lazyeval" ,r-lazyeval)
9916 ("r-magrittr" ,r-magrittr)
9917 ("r-rlang" ,r-rlang)
9918 ("r-tibble" ,r-tibble)))
9919 (native-inputs
9920 `(("r-knitr" ,r-knitr)))
9921 (home-page "https://github.com/GuangchuangYu/tidytree")
9922 (synopsis "Tidy tool for phylogenetic tree data manipulation")
9923 (description
9924 "Phylogenetic trees generally contain multiple components including nodes,
9925 edges, branches and associated data. This package provides an approach to
9926 convert tree objects to tidy data frames. It also provides tidy interfaces to
9927 manipulate tree data.")
9928 (license license:artistic2.0)))
9929
9930 (define-public r-rvcheck
9931 (package
9932 (name "r-rvcheck")
9933 (version "0.1.8")
9934 (source
9935 (origin
9936 (method url-fetch)
9937 (uri (cran-uri "rvcheck" version))
9938 (sha256
9939 (base32 "0627bc8qmhxmd63yh6f90qni3qw1zwdpxjln2qbychzmzd4am9ac"))))
9940 (build-system r-build-system)
9941 (propagated-inputs
9942 `(("r-biocmanager" ,r-biocmanager)
9943 ("r-rlang" ,r-rlang)))
9944 (home-page "https://cran.r-project.org/web/packages/rvcheck")
9945 (synopsis "R package version check")
9946 (description
9947 "This package provides tools to check the latest release version of R and
9948 R packages (on CRAN, Bioconductor or Github).")
9949 (license license:artistic2.0)))
9950
9951 (define-public r-docopt
9952 (package
9953 (name "r-docopt")
9954 (version "0.6.1")
9955 (source
9956 (origin
9957 (method url-fetch)
9958 (uri (cran-uri "docopt" version))
9959 (sha256
9960 (base32
9961 "06zknnd0c5s2y0hbddzdlr3m63ib783izpck6pgz7sjbab5pd068"))))
9962 (build-system r-build-system)
9963 (home-page "https://github.com/docopt/docopt.R")
9964 (synopsis "Command-line interface specification language")
9965 (description
9966 "This package enables you to define a command-line interface by just
9967 giving it a description in the specific format.")
9968 (license license:expat)))
9969
9970 (define-public r-sparsesvd
9971 (package
9972 (name "r-sparsesvd")
9973 (version "0.2")
9974 (source
9975 (origin
9976 (method url-fetch)
9977 (uri (cran-uri "sparsesvd" version))
9978 (sha256
9979 (base32
9980 "1xm969fjq3fv1p2sqza2apz8picibj4s2agpwf1sx9nwn3b587qs"))))
9981 (build-system r-build-system)
9982 (propagated-inputs `(("r-matrix" ,r-matrix)))
9983 (home-page "http://tedlab.mit.edu/~dr/SVDLIBC/")
9984 (synopsis "Sparse truncated singular value decomposition")
9985 (description
9986 "This package provides a Wrapper around the SVDLIBC library
9987 for (truncated) singular value decomposition of a sparse matrix. Currently,
9988 only sparse real matrices in Matrix package format are supported.")
9989 ;; SVDLIBC is released under BSD-2. The R interface is released under
9990 ;; BSD-3.
9991 (license (list license:bsd-3 license:bsd-2))))
9992
9993 (define-public r-speedglm
9994 (package
9995 (name "r-speedglm")
9996 (version "0.3-2")
9997 (source
9998 (origin
9999 (method url-fetch)
10000 (uri (cran-uri "speedglm" version))
10001 (sha256
10002 (base32
10003 "1b25zimk0z7ad62yacqdg0zk0qs0jja4i918ym942xfw4j1z3jjz"))))
10004 (build-system r-build-system)
10005 (propagated-inputs
10006 `(("r-mass" ,r-mass)
10007 ("r-matrix" ,r-matrix)))
10008 (home-page "https://cran.r-project.org/web/packages/speedglm")
10009 (synopsis "Fit linear and generalized linear models to large data sets")
10010 (description
10011 "This package provides tools for fitting linear models and generalized
10012 linear models to large data sets by updating algorithms.")
10013 ;; Any version of the GPL
10014 (license license:gpl2+)))
10015
10016 (define-public r-densityclust
10017 (package
10018 (name "r-densityclust")
10019 (version "0.3")
10020 (source
10021 (origin
10022 (method url-fetch)
10023 (uri (cran-uri "densityClust" version))
10024 (sha256
10025 (base32
10026 "1zry0vafajzmr37aylglxfvwplhdygbkb9cvzvh8cy0xgnjrnx13"))))
10027 (properties `((upstream-name . "densityClust")))
10028 (build-system r-build-system)
10029 (propagated-inputs
10030 `(("r-fnn" ,r-fnn)
10031 ("r-ggplot2" ,r-ggplot2)
10032 ("r-ggrepel" ,r-ggrepel)
10033 ("r-gridextra" ,r-gridextra)
10034 ("r-rcolorbrewer" ,r-rcolorbrewer)
10035 ("r-rcpp" ,r-rcpp)
10036 ("r-rtsne" ,r-rtsne)))
10037 (home-page "https://cran.r-project.org/web/packages/densityClust")
10038 (synopsis "Clustering by fast search and find of density peaks")
10039 (description
10040 "This package provides an improved implementation (based on k-nearest
10041 neighbors) of the density peak clustering algorithm, originally described by
10042 Alex Rodriguez and Alessandro Laio (Science, 2014 vol. 344). It can handle
10043 large datasets (> 100,000 samples) very efficiently.")
10044 (license license:gpl2+)))
10045
10046 (define-public r-combinat
10047 (package
10048 (name "r-combinat")
10049 (version "0.0-8")
10050 (source
10051 (origin
10052 (method url-fetch)
10053 (uri (cran-uri "combinat" version))
10054 (sha256
10055 (base32
10056 "1h9hr88gigihc4na7lb5i7rn4az1xa7sb34zvnznaj6pdrmwy4qm"))))
10057 (build-system r-build-system)
10058 (home-page "https://cran.r-project.org/web/packages/combinat")
10059 (synopsis "Combinatorics utilities")
10060 (description "This package provides assorted routines for combinatorics.")
10061 (license license:gpl2)))
10062
10063 (define-public r-qlcmatrix
10064 (package
10065 (name "r-qlcmatrix")
10066 (version "0.9.7")
10067 (source
10068 (origin
10069 (method url-fetch)
10070 (uri (cran-uri "qlcMatrix" version))
10071 (sha256
10072 (base32
10073 "0iqkcvvy8rxlk0s83sjq57dd6fadb18p5z31lzy0gnzv1hsy1x8y"))))
10074 (properties `((upstream-name . "qlcMatrix")))
10075 (build-system r-build-system)
10076 (propagated-inputs
10077 `(("r-docopt" ,r-docopt)
10078 ("r-matrix" ,r-matrix)
10079 ("r-slam" ,r-slam)
10080 ("r-sparsesvd" ,r-sparsesvd)))
10081 (home-page "https://cran.r-project.org/web/packages/qlcMatrix")
10082 (synopsis "Sparse matrix functions for quantitative language comparison")
10083 (description
10084 "This package provides an extension of the functionality of the Matrix
10085 package for using sparse matrices. Some of the functions are very general,
10086 while other are highly specific for the special data format used for
10087 @dfn{quantitative language comparison} (QLC).")
10088 (license license:gpl3)))
10089
10090 (define-public r-ddrtree
10091 (package
10092 (name "r-ddrtree")
10093 (version "0.1.5")
10094 (source
10095 (origin
10096 (method url-fetch)
10097 (uri (cran-uri "DDRTree" version))
10098 (sha256
10099 (base32
10100 "16s5fjw7kwlxhrkzdny62sx32fvmg3rxjc3wrh6krd31jh1fqlfk"))))
10101 (properties `((upstream-name . "DDRTree")))
10102 (build-system r-build-system)
10103 (propagated-inputs
10104 `(("r-bh" ,r-bh)
10105 ("r-irlba" ,r-irlba)
10106 ("r-rcpp" ,r-rcpp)
10107 ("r-rcppeigen" ,r-rcppeigen)))
10108 (home-page "https://cran.r-project.org/web/packages/DDRTree")
10109 (synopsis "Learning principal graphs with DDRTree")
10110 (description
10111 "This package provides an implementation of the framework of
10112 @dfn{reversed graph embedding} (RGE) which projects data into a reduced
10113 dimensional space while constructs a principal tree which passes through the
10114 middle of the data simultaneously. DDRTree shows superiority to
10115 alternatives (Wishbone, DPT) for inferring the ordering as well as the
10116 intrinsic structure of single cell genomics data. In general, it could be
10117 used to reconstruct the temporal progression as well as the bifurcation
10118 structure of any data type.")
10119 (license license:asl2.0)))
10120
10121 (define-public r-corpcor
10122 (package
10123 (name "r-corpcor")
10124 (version "1.6.9")
10125 (source
10126 (origin
10127 (method url-fetch)
10128 (uri (cran-uri "corpcor" version))
10129 (sha256
10130 (base32
10131 "1hi3i9d3841snppq1ks5pd8cliq1b4rm4dpsczmfqvwksg8snkrf"))))
10132 (build-system r-build-system)
10133 (home-page "http://strimmerlab.org/software/corpcor/")
10134 (synopsis "Efficient estimation of covariance and (partial) correlation")
10135 (description
10136 "This package implements a James-Stein-type shrinkage estimator for the
10137 covariance matrix, with separate shrinkage for variances and correlations.
10138 Furthermore, functions are available for fast singular value decomposition,
10139 for computing the pseudoinverse, and for checking the rank and positive
10140 definiteness of a matrix.")
10141 (license license:gpl3+)))
10142
10143 (define-public r-rspectra
10144 (package
10145 (name "r-rspectra")
10146 (version "0.16-0")
10147 (source
10148 (origin
10149 (method url-fetch)
10150 (uri (cran-uri "RSpectra" version))
10151 (sha256
10152 (base32
10153 "1ab45as2ysjrvkhvmx7y3nbhd0y1w4j9k2a789lcd973zz4wzwda"))))
10154 (properties `((upstream-name . "RSpectra")))
10155 (build-system r-build-system)
10156 (propagated-inputs
10157 `(("r-matrix" ,r-matrix)
10158 ("r-rcpp" ,r-rcpp)
10159 ("r-rcppeigen" ,r-rcppeigen)))
10160 (home-page "https://github.com/yixuan/RSpectra")
10161 (synopsis "Solvers for large-scale Eigenvalue and SVD problems")
10162 (description
10163 "This package provides an R interface to the Spectra library for
10164 large-scale eigenvalue and SVD problems. It is typically used to compute a
10165 few eigenvalues/vectors of an n by n matrix, e.g., the k largest eigenvalues,
10166 which is usually more efficient than @code{eigen()} if k << n.")
10167 ;; MPL 2 or later.
10168 (license license:mpl2.0)))
10169
10170 (define-public r-vbsr
10171 (package
10172 (name "r-vbsr")
10173 (version "0.0.5")
10174 (source
10175 (origin
10176 (method url-fetch)
10177 (uri (cran-uri "vbsr" version))
10178 (sha256
10179 (base32
10180 "1avskbxxyinjjdga4rnghcfvd4sypv4m39ysfaij5avvmi89bx3b"))))
10181 (build-system r-build-system)
10182 (home-page "https://cran.r-project.org/web/packages/vbsr")
10183 (synopsis "Variational Bayes spike regression regularized linear models")
10184 (description
10185 "This package provides an efficient algorithm for solving ultra-sparse
10186 regularized regression models using a variational Bayes algorithm with a spike
10187 prior. The algorithm is solved on a path, with coordinate updates, and is
10188 capable of generating very sparse models. Very general model
10189 diagnostics for controlling type-1 errors are also provided.")
10190 (license license:gpl2)))
10191
10192 (define-public r-flare
10193 (package
10194 (name "r-flare")
10195 (version "1.6.0.2")
10196 (source
10197 (origin
10198 (method url-fetch)
10199 (uri (cran-uri "flare" version))
10200 (sha256
10201 (base32
10202 "1ybrsx1djqldw0l5l1iz4pfh6xxb8ckkg1ric7wnsr51wm9ljlh5"))))
10203 (build-system r-build-system)
10204 (propagated-inputs
10205 `(("r-igraph" ,r-igraph)
10206 ("r-lattice" ,r-lattice)
10207 ("r-mass" ,r-mass)
10208 ("r-matrix" ,r-matrix)))
10209 (home-page "https://cran.r-project.org/web/packages/flare")
10210 (synopsis "Family of Lasso regression implementations")
10211 (description
10212 "This package provides implementations of a family of Lasso variants
10213 including Dantzig Selector, LAD Lasso, SQRT Lasso, Lq Lasso for estimating
10214 high dimensional sparse linear models.")
10215 (license license:gpl2)))
10216
10217 (define-public r-lassopv
10218 (package
10219 (name "r-lassopv")
10220 (version "0.2.0")
10221 (source
10222 (origin
10223 (method url-fetch)
10224 (uri (cran-uri "lassopv" version))
10225 (sha256
10226 (base32
10227 "0yawnjw063jypk3riy9xab9cmliv6c9dnabi18670khd3gzb2r9z"))))
10228 (build-system r-build-system)
10229 (propagated-inputs `(("r-lars" ,r-lars)))
10230 (home-page "https://github.com/lingfeiwang/lassopv")
10231 (synopsis "Non-parametric p-value estimation for predictors in Lasso")
10232 (description
10233 "This package enables you to estimate the p-values for predictors x
10234 against target variable y in Lasso regression, using the regularization
10235 strength when each predictor enters the active set of regularization path for
10236 the first time as the statistic.")
10237 (license license:gpl3)))
10238
10239 (define-public r-splitstackshape
10240 (package
10241 (name "r-splitstackshape")
10242 (version "1.4.8")
10243 (source
10244 (origin
10245 (method url-fetch)
10246 (uri (cran-uri "splitstackshape" version))
10247 (sha256
10248 (base32
10249 "0mpyf2kkfdl69pdc6brl1r6101vyc6pgr7z17s55ppg3y71k4q35"))))
10250 (build-system r-build-system)
10251 (propagated-inputs
10252 `(("r-data-table" ,r-data-table)))
10253 (home-page "https://github.com/mrdwab/splitstackshape")
10254 (synopsis "Stack and reshape datasets after splitting concatenated values")
10255 (description
10256 "Online data collection tools like Google Forms often export
10257 multiple-response questions with data concatenated in cells. The
10258 @code{concat.split} (cSplit) family of functions provided by this package
10259 splits such data into separate cells. This package also includes functions to
10260 stack groups of columns and to reshape wide data, even when the data are
10261 \"unbalanced\"---something which @code{reshape} (from base R) does not handle,
10262 and which @code{melt} and @code{dcast} from @code{reshape2} do not easily
10263 handle.")
10264 (license license:gpl3)))
10265
10266 (define-public r-tfmpvalue
10267 (package
10268 (name "r-tfmpvalue")
10269 (version "0.0.8")
10270 (source
10271 (origin
10272 (method url-fetch)
10273 (uri (cran-uri "TFMPvalue" version))
10274 (sha256
10275 (base32
10276 "0h9qkl15k8v17v3g9bdnfwvh2s04ywjgg5y0xn2077dmywlja1bd"))))
10277 (properties `((upstream-name . "TFMPvalue")))
10278 (build-system r-build-system)
10279 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
10280 (home-page "https://github.com/ge11232002/TFMPvalue")
10281 (synopsis "P-value computation for position weight matrices")
10282 (description
10283 "In putative @dfn{Transcription Factor Binding Sites} (TFBSs)
10284 identification from sequence/alignments, we are interested in the significance
10285 of certain match scores. TFMPvalue provides the accurate calculation of a
10286 p-value with a score threshold for position weight matrices, or the score with
10287 a given p-value. It is an interface to code originally made available by
10288 Helene Touzet and Jean-Stephane Varre, 2007, Algorithms Mol Biol:2, 15.
10289 Touzet and Varre (2007).")
10290 (license license:gpl2)))
10291
10292 (define-public r-rnifti
10293 (package
10294 (name "r-rnifti")
10295 (version "1.1.0")
10296 (source
10297 (origin
10298 (method url-fetch)
10299 (uri (cran-uri "RNifti" version))
10300 (sha256
10301 (base32
10302 "1z8ninp3aq18w0slcfn8r2fp48cdz8l0k0namsrnvgyp8lzcpqpn"))))
10303 (properties `((upstream-name . "RNifti")))
10304 (build-system r-build-system)
10305 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
10306 (home-page "https://github.com/jonclayden/RNifti")
10307 (synopsis "Fast R and C++ access to NIfTI images")
10308 (description
10309 "This package provides very fast read and write access to images stored
10310 in the NIfTI-1 and ANALYZE-7.5 formats, with seamless synchronisation between
10311 compiled C and interpreted R code. It also provides a C/C++ API that can be
10312 used by other packages.")
10313 (license license:gpl2)))
10314
10315 (define-public r-shades
10316 (package
10317 (name "r-shades")
10318 (version "1.4.0")
10319 (source
10320 (origin
10321 (method url-fetch)
10322 (uri (cran-uri "shades" version))
10323 (sha256
10324 (base32
10325 "1zg95sjhrfvbdlfc387g9p0vnb8nb6agdk1mb3wq3kwkm2da0bqj"))))
10326 (build-system r-build-system)
10327 (home-page "https://github.com/jonclayden/shades")
10328 (synopsis "Simple color manipulation")
10329 (description
10330 "This package provides functions for easily manipulating colors,
10331 creating color scales and calculating color distances.")
10332 (license license:bsd-3)))
10333
10334 (define-public r-ore
10335 (package
10336 (name "r-ore")
10337 (version "1.6.3")
10338 (source
10339 (origin
10340 (method url-fetch)
10341 (uri (cran-uri "ore" version))
10342 (sha256
10343 (base32 "1vh6w3arrhgkfjjjw7ci91xmz4wpfr3cmwd5zkqch89dgn07skkv"))))
10344 (build-system r-build-system)
10345 (home-page "https://github.com/jonclayden/ore")
10346 (synopsis "R interface to the Onigmo regular expression library")
10347 (description
10348 "This package provides an alternative to R's built-in functionality for
10349 handling regular expressions, based on the Onigmo library. It offers
10350 first-class compiled regex objects, partial matching and function-based
10351 substitutions, amongst other features.")
10352 (license license:bsd-3)))
10353
10354 (define-public r-reportr
10355 (package
10356 (name "r-reportr")
10357 (version "1.3.0")
10358 (source
10359 (origin
10360 (method url-fetch)
10361 (uri (cran-uri "reportr" version))
10362 (sha256
10363 (base32
10364 "0zynplxqvbmf23cm2rsz3wz2jx6mv55z94mn1k44ny3lx625cnpw"))))
10365 (build-system r-build-system)
10366 (propagated-inputs `(("r-ore" ,r-ore)))
10367 (home-page "https://github.com/jonclayden/reportr")
10368 (synopsis "General message and error reporting system")
10369 (description
10370 "This package provides a system for reporting messages, which offers
10371 certain useful features over the standard R system, such as the incorporation
10372 of output consolidation, message filtering, assertions, expression
10373 substitution, automatic generation of stack traces for debugging, and
10374 conditional reporting based on the current \"output level\".")
10375 (license license:gpl2)))
10376
10377 (define-public r-tractor-base
10378 (package
10379 (name "r-tractor-base")
10380 (version "3.3.2")
10381 (source
10382 (origin
10383 (method url-fetch)
10384 (uri (cran-uri "tractor.base" version))
10385 (sha256
10386 (base32
10387 "0y5gm0y4chl30f5qqq8qiiw4j8g32s4i9xrvyp3cwg902kf2p86i"))))
10388 (properties `((upstream-name . "tractor.base")))
10389 (build-system r-build-system)
10390 (propagated-inputs
10391 `(("r-ore" ,r-ore)
10392 ("r-reportr" ,r-reportr)
10393 ("r-rnifti" ,r-rnifti)
10394 ("r-shades" ,r-shades)))
10395 (home-page "https://www.tractor-mri.org.uk")
10396 (synopsis "Read, manipulate and visualize magnetic resonance images")
10397 (description
10398 "This package provides functions for working with magnetic resonance
10399 images. It supports reading and writing of popular file formats (DICOM,
10400 Analyze, NIfTI-1, NIfTI-2, MGH); interactive and non-interactive
10401 visualization; flexible image manipulation; metadata and sparse image
10402 handling.")
10403 (license license:gpl2)))
10404
10405 (define-public r-grimport
10406 (package
10407 (name "r-grimport")
10408 (version "0.9-3")
10409 (source
10410 (origin
10411 (method url-fetch)
10412 (uri (cran-uri "grImport" version))
10413 (sha256
10414 (base32
10415 "109mrdvq06xq3zgn9ngz0c7zzgqkv5zbpvsb2i636vmlk6y4dpkd"))))
10416 (properties `((upstream-name . "grImport")))
10417 (build-system r-build-system)
10418 (inputs
10419 `(("ghostscript" ,ghostscript)))
10420 (propagated-inputs
10421 `(("r-xml" ,r-xml)))
10422 (home-page "https://cran.r-project.org/web/packages/grImport")
10423 (synopsis "Convert, import, and draw PostScript pictures")
10424 (description
10425 "This package provides functions for converting, importing, and drawing
10426 PostScript pictures in R plots.")
10427 (license license:gpl2+)))
10428
10429 (define-public r-grimport2
10430 (package
10431 (name "r-grimport2")
10432 (version "0.2-0")
10433 (source
10434 (origin
10435 (method url-fetch)
10436 (uri (cran-uri "grImport2" version))
10437 (sha256
10438 (base32
10439 "19q0dd8fpp1g4xf6sg5f8dxybwxjfw553ra6wgjd8b74fzca40m1"))))
10440 (properties `((upstream-name . "grImport2")))
10441 (build-system r-build-system)
10442 (propagated-inputs
10443 `(("r-base64enc" ,r-base64enc)
10444 ("r-jpeg" ,r-jpeg)
10445 ("r-png" ,r-png)
10446 ("r-xml" ,r-xml)))
10447 (home-page "https://cran.r-project.org/web/packages/grImport2/")
10448 (synopsis "Import SVG graphics")
10449 (description
10450 "This package provides functions for importing external vector images and
10451 drawing them as part of R plots. This package is different from the
10452 @code{grImport} package because, where that package imports PostScript format
10453 images, this package imports SVG format images. Furthermore, this package
10454 imports a specific subset of SVG, so external images must be preprocessed
10455 using a package like @code{rsvg} to produce SVG that this package can import.
10456 SVG features that are not supported by R graphics, such as gradient fills, can
10457 be imported and then exported via the @code{gridSVG} package.")
10458 (license license:gpl2+)))
10459
10460 (define-public r-kohonen
10461 (package
10462 (name "r-kohonen")
10463 (version "3.0.10")
10464 (source
10465 (origin
10466 (method url-fetch)
10467 (uri (cran-uri "kohonen" version))
10468 (sha256
10469 (base32
10470 "1ck7j13x701g67bx81x7plszz804jfhl1yg42krcj9x88vm5cscr"))))
10471 (build-system r-build-system)
10472 (propagated-inputs
10473 `(("r-rcpp" ,r-rcpp)))
10474 (home-page "https://cran.r-project.org/web/packages/kohonen")
10475 (synopsis "Supervised and unsupervised self-organising maps")
10476 (description
10477 "This package provides functions to train @dfn{self-organising
10478 maps} (SOMs). Also interrogation of the maps and prediction using trained
10479 maps are supported. The name of the package refers to Teuvo Kohonen, the
10480 inventor of the SOM.")
10481 (license license:gpl2+)))
10482
10483 (define-public r-nnls
10484 (package
10485 (name "r-nnls")
10486 (version "1.4")
10487 (source
10488 (origin
10489 (method url-fetch)
10490 (uri (cran-uri "nnls" version))
10491 (sha256
10492 (base32
10493 "07vcrrxvswrvfiha6f3ikn640yg0m2b4yd9lkmim1g0jmsmpfp8f"))))
10494 (build-system r-build-system)
10495 (native-inputs `(("gfortran" ,gfortran)))
10496 (home-page "https://cran.r-project.org/web/packages/nnls")
10497 (synopsis "Lawson-Hanson algorithm for non-negative least squares")
10498 (description
10499 "This package provides an R interface to the Lawson-Hanson implementation
10500 of an algorithm for @dfn{non-negative least squares} (NNLS). It also allows
10501 the combination of non-negative and non-positive constraints.")
10502 (license license:gpl2+)))
10503
10504 (define-public r-iso
10505 (package
10506 (name "r-iso")
10507 (version "0.0-18")
10508 (source
10509 (origin
10510 (method url-fetch)
10511 (uri (cran-uri "Iso" version))
10512 (sha256
10513 (base32
10514 "014mm5b1f7i6nwlz3kyg1biph0y542kcx5bd13p68cv5a928qzid"))))
10515 (properties `((upstream-name . "Iso")))
10516 (build-system r-build-system)
10517 (native-inputs `(("gfortran" ,gfortran)))
10518 (home-page "https://www.stat.auckland.ac.nz/~rolf/")
10519 (synopsis "Functions to perform isotonic regression")
10520 (description
10521 "This package provides support for linear order and unimodal
10522 order (univariate) isotonic regression and bivariate isotonic regression with
10523 linear order on both variables.")
10524 (license license:gpl2+)))
10525
10526 (define-public r-chemometricswithr
10527 (package
10528 (name "r-chemometricswithr")
10529 (version "0.1.13")
10530 (source
10531 (origin
10532 (method url-fetch)
10533 (uri (cran-uri "ChemometricsWithR" version))
10534 (sha256
10535 (base32
10536 "166va1g3m1wv21qkmw4wpz0bsrclh3jih8smxphdc13l9pqgclpq"))))
10537 (properties
10538 `((upstream-name . "ChemometricsWithR")))
10539 (build-system r-build-system)
10540 (propagated-inputs
10541 `(("r-devtools" ,r-devtools)
10542 ("r-kohonen" ,r-kohonen)
10543 ("r-mass" ,r-mass)
10544 ("r-pls" ,r-pls)))
10545 (home-page "https://github.com/rwehrens/CWR")
10546 (synopsis "Chemometrics with R")
10547 (description
10548 "This package provides functions and scripts used in the book
10549 \"Chemometrics with R - Multivariate Data Analysis in the Natural Sciences and
10550 Life Sciences\" by Ron Wehrens, Springer (2011).")
10551 (license license:gpl2+)))
10552
10553 (define-public r-als
10554 (package
10555 (name "r-als")
10556 (version "0.0.6")
10557 (source
10558 (origin
10559 (method url-fetch)
10560 (uri (cran-uri "ALS" version))
10561 (sha256
10562 (base32
10563 "1swrn39vy50fazkpf97r7c542gkj6mlvy8gmcxllg7mf2mqx546a"))))
10564 (properties `((upstream-name . "ALS")))
10565 (build-system r-build-system)
10566 (propagated-inputs
10567 `(("r-iso" ,r-iso)
10568 ("r-nnls" ,r-nnls)))
10569 (home-page "https://cran.r-project.org/web/packages/ALS")
10570 (synopsis "Multivariate curve resolution alternating least squares")
10571 (description
10572 "Alternating least squares is often used to resolve components
10573 contributing to data with a bilinear structure; the basic technique may be
10574 extended to alternating constrained least squares. This package provides an
10575 implementation of @dfn{multivariate curve resolution alternating least
10576 squares} (MCR-ALS).
10577
10578 Commonly applied constraints include unimodality, non-negativity, and
10579 normalization of components. Several data matrices may be decomposed
10580 simultaneously by assuming that one of the two matrices in the bilinear
10581 decomposition is shared between datasets.")
10582 (license license:gpl2+)))
10583
10584 (define-public r-strucchange
10585 (package
10586 (name "r-strucchange")
10587 (version "1.5-2")
10588 (source
10589 (origin
10590 (method url-fetch)
10591 (uri (cran-uri "strucchange" version))
10592 (sha256
10593 (base32
10594 "1y022363a4pp0mnji91sjh1qiyspkh09sybqwj03r9pmwrd7q93x"))))
10595 (build-system r-build-system)
10596 (propagated-inputs
10597 `(("r-sandwich" ,r-sandwich)
10598 ("r-zoo" ,r-zoo)))
10599 (home-page "https://cran.r-project.org/web/packages/strucchange")
10600 (synopsis "Testing, monitoring, and dating structural changes")
10601 (description
10602 "This package provides tools for testing, monitoring and dating
10603 structural changes in (linear) regression models. It features tests/methods
10604 from the generalized fluctuation test framework as well as from the F
10605 test (Chow test) framework. This includes methods to fit, plot and test
10606 fluctuation processes (e.g., CUSUM, MOSUM, recursive/moving estimates) and F
10607 statistics, respectively. It is possible to monitor incoming data online
10608 using fluctuation processes. Finally, the breakpoints in regression models
10609 with structural changes can be estimated together with confidence intervals.
10610 Emphasis is always given to methods for visualizing the data.")
10611 ;; Either of these two GPL versions
10612 (license (list license:gpl2 license:gpl3))))
10613
10614 (define-public r-pixmap
10615 (package
10616 (name "r-pixmap")
10617 (version "0.4-11")
10618 (source
10619 (origin
10620 (method url-fetch)
10621 (uri (cran-uri "pixmap" version))
10622 (sha256
10623 (base32
10624 "04klxp6jndw1bp6z40v20fbmdmdpfca2g0czmmmgbkark9s1183g"))))
10625 (build-system r-build-system)
10626 (home-page "https://cran.r-project.org/web/packages/pixmap")
10627 (synopsis "Tools for bitmap images")
10628 (description
10629 "This package provides functions for importing, exporting, plotting and
10630 other manipulations of bitmapped images.")
10631 (license license:gpl2)))
10632
10633 (define-public r-rapidjsonr
10634 (package
10635 (name "r-rapidjsonr")
10636 (version "1.2.0")
10637 (source
10638 (origin
10639 (method url-fetch)
10640 (uri (cran-uri "rapidjsonr" version))
10641 (sha256
10642 (base32
10643 "07zdirhbzmvq3cp4xn8ngk1lgxbbabzays315zxbs3sxrz6lzjb2"))))
10644 (build-system r-build-system)
10645 (home-page "https://cran.r-project.org/web/packages/rapidjsonr")
10646 (synopsis "JSON parser")
10647 (description
10648 "This package provides JSON parsing capability through the Rapidjson
10649 library.")
10650 (license license:expat)))
10651
10652 (define-public r-ontologyindex
10653 (package
10654 (name "r-ontologyindex")
10655 (version "2.5")
10656 (source
10657 (origin
10658 (method url-fetch)
10659 (uri (cran-uri "ontologyIndex" version))
10660 (sha256
10661 (base32
10662 "127hlf0z5fmbgnq4p9h8nvn6p72d2fpcn846zzb99s213421jnry"))))
10663 (properties `((upstream-name . "ontologyIndex")))
10664 (build-system r-build-system)
10665 (home-page "https://cran.r-project.org/web/packages/ontologyIndex")
10666 (synopsis "Functions for processing ontologies in R")
10667 (description
10668 "This package provides functions for reading ontologies into R as lists
10669 and manipulating sets of ontological terms.")
10670 (license license:gpl2+)))
10671
10672 (define-public r-gargle
10673 (package
10674 (name "r-gargle")
10675 (version "0.4.0")
10676 (source
10677 (origin
10678 (method url-fetch)
10679 (uri (cran-uri "gargle" version))
10680 (sha256
10681 (base32
10682 "08zhfk2sl342w35i5n2c93ayypg3z0kbl0020l3y9adqka1vazgx"))))
10683 (build-system r-build-system)
10684 (propagated-inputs
10685 `(("r-fs" ,r-fs)
10686 ("r-glue" ,r-glue)
10687 ("r-httr" ,r-httr)
10688 ("r-jsonlite" ,r-jsonlite)
10689 ("r-rlang" ,r-rlang)
10690 ("r-withr" ,r-withr)))
10691 (home-page "https://gargle.r-lib.org")
10692 (synopsis "Utilities for working with Google APIs")
10693 (description
10694 "This package provides utilities for working with Google APIs. This
10695 includes functions and classes for handling common credential types and for
10696 preparing, executing, and processing HTTP requests.")
10697 (license license:expat)))
10698
10699 (define-public r-bigrquery
10700 (package
10701 (name "r-bigrquery")
10702 (version "1.2.0")
10703 (source
10704 (origin
10705 (method url-fetch)
10706 (uri (cran-uri "bigrquery" version))
10707 (sha256
10708 (base32
10709 "1ggh2gngr5x0g6y7d55y6kvn94anf7qi1bkc28cjmw61hxjq38fb"))))
10710 (build-system r-build-system)
10711 (propagated-inputs
10712 `(("r-assertthat" ,r-assertthat)
10713 ("r-bit64" ,r-bit64)
10714 ("r-curl" ,r-curl)
10715 ("r-dbi" ,r-dbi)
10716 ("r-gargle" ,r-gargle)
10717 ("r-glue" ,r-glue)
10718 ("r-httr" ,r-httr)
10719 ("r-jsonlite" ,r-jsonlite)
10720 ("r-prettyunits" ,r-prettyunits)
10721 ("r-progress" ,r-progress)
10722 ("r-rapidjsonr" ,r-rapidjsonr)
10723 ("r-rcpp" ,r-rcpp)
10724 ("r-rlang" ,r-rlang)
10725 ("r-tibble" ,r-tibble)))
10726 (home-page "https://github.com/rstats-db/bigrquery")
10727 (synopsis "R interface to Google's BigQuery API")
10728 (description
10729 "This package provides an R interface to Google's BigQuery database.")
10730 (license license:gpl3)))
10731
10732 (define-public r-gmp
10733 (package
10734 (name "r-gmp")
10735 (version "0.5-13.6")
10736 (source
10737 (origin
10738 (method url-fetch)
10739 (uri (cran-uri "gmp" version))
10740 (sha256
10741 (base32
10742 "0j2sz2nw41y9306rl1b8hbn0spz7453z5iawcq0bvslyrhc1d9ir"))))
10743 (build-system r-build-system)
10744 (arguments
10745 '(#:phases
10746 (modify-phases %standard-phases
10747 (add-after 'unpack 'set-CC
10748 (lambda _ (setenv "CC" "gcc") #t)))))
10749 (inputs `(("gmp" ,gmp)))
10750 (home-page "https://cran.r-project.org/web/packages/gmp")
10751 (synopsis "Multiple precision arithmetic")
10752 (description
10753 "This package supports multiple precision arithmetic (big integers and
10754 rationals, prime number tests, matrix computation), \"arithmetic without
10755 limitations\" using the GNU Multiple Precision library.")
10756 ;; Any version of the GPL.
10757 (license license:gpl3+)))
10758
10759 (define-public r-rmpfr
10760 (package
10761 (name "r-rmpfr")
10762 (version "0.8-1")
10763 (source
10764 (origin
10765 (method url-fetch)
10766 (uri (cran-uri "Rmpfr" version))
10767 (sha256
10768 (base32
10769 "09kw7hyca8xc09r2d88qj81cclar8acaq5q9q5rw9f49iffda0rr"))))
10770 (properties `((upstream-name . "Rmpfr")))
10771 (build-system r-build-system)
10772 (inputs
10773 `(("mpfr" ,mpfr)
10774 ("gmp" ,gmp)))
10775 (propagated-inputs
10776 `(("r-gmp" ,r-gmp)))
10777 (native-inputs
10778 `(("pkg-config" ,pkg-config)))
10779 (home-page "http://rmpfr.r-forge.r-project.org/")
10780 (synopsis "R bindings to the MPFR library")
10781 (description
10782 "This package supports arithmetic (via S4 classes and methods) for
10783 arbitrary precision floating point numbers, including transcendental
10784 functions. To this end, the package interfaces with the @dfn{Multiple
10785 Precision Floating-Point Reliable} (MPFR) library.")
10786 (license license:gpl2+)))
10787
10788 (define-public r-assertive-base
10789 (package
10790 (name "r-assertive-base")
10791 (version "0.0-7")
10792 (source
10793 (origin
10794 (method url-fetch)
10795 (uri (cran-uri "assertive.base" version))
10796 (sha256
10797 (base32
10798 "1xs3ysvj0z57c58jw57pckq2rynia6ks4rmjmc02alczhk54wbgh"))))
10799 (properties
10800 `((upstream-name . "assertive.base")))
10801 (build-system r-build-system)
10802 (home-page "https://bitbucket.org/richierocks/assertive.base")
10803 (synopsis "Core of the assertive package")
10804 (description
10805 "This package provides a minimal set of predicates and assertions used by
10806 the assertive package. This is mainly for use by other package developers who
10807 want to include run-time testing features in their own packages.")
10808 (license license:gpl3+)))
10809
10810 (define-public r-assertive-properties
10811 (package
10812 (name "r-assertive-properties")
10813 (version "0.0-4")
10814 (source
10815 (origin
10816 (method url-fetch)
10817 (uri (cran-uri "assertive.properties" version))
10818 (sha256
10819 (base32
10820 "0sqs54acs9qk9kvm32rxzfbzxz1l8mjahpfnw7r30z2brgz661jw"))))
10821 (properties
10822 `((upstream-name . "assertive.properties")))
10823 (build-system r-build-system)
10824 (propagated-inputs
10825 `(("r-assertive-base" ,r-assertive-base)))
10826 (home-page "https://bitbucket.org/richierocks/assertive.properties")
10827 (synopsis "Assertions to check properties of variables")
10828 (description
10829 "This package provides a set of predicates and assertions for checking
10830 the properties of variables, such as length, names and attributes. This is
10831 mainly for use by other package developers who want to include run-time
10832 testing features in their own packages.")
10833 (license license:gpl3+)))
10834
10835 (define-public r-assertive-numbers
10836 (package
10837 (name "r-assertive-numbers")
10838 (version "0.0-2")
10839 (source
10840 (origin
10841 (method url-fetch)
10842 (uri (cran-uri "assertive.numbers" version))
10843 (sha256
10844 (base32
10845 "0jc3ss64j4m7bjydhagwwmka5n7c72vpw4kfcch0m5jvkq5qrqds"))))
10846 (properties
10847 `((upstream-name . "assertive.numbers")))
10848 (build-system r-build-system)
10849 (propagated-inputs
10850 `(("r-assertive-base" ,r-assertive-base)))
10851 (home-page "https://bitbucket.org/richierocks/assertive.numbers")
10852 (synopsis "Assertions to check properties of numbers")
10853 (description
10854 "This package provides a set of predicates and assertions for checking
10855 the properties of numbers. This is mainly for use by other package developers
10856 who want to include run-time testing features in their own packages.")
10857 (license license:gpl3+)))
10858
10859 (define-public r-assertive-sets
10860 (package
10861 (name "r-assertive-sets")
10862 (version "0.0-3")
10863 (source
10864 (origin
10865 (method url-fetch)
10866 (uri (cran-uri "assertive.sets" version))
10867 (sha256
10868 (base32
10869 "1cqvh2syvh5b6d85h601zjmsdbbf3h8q98ids4dfl4frdshpasc7"))))
10870 (properties
10871 `((upstream-name . "assertive.sets")))
10872 (build-system r-build-system)
10873 (propagated-inputs
10874 `(("r-assertive-base" ,r-assertive-base)))
10875 (home-page "https://bitbucket.org/richierocks/assertive.sets")
10876 (synopsis "Assertions to check properties of sets")
10877 (description
10878 "This package provides a set of predicates and assertions for checking
10879 the properties of sets. This is mainly for use by other package developers
10880 who want to include run-time testing features in their own packages.")
10881 (license license:gpl3+)))
10882
10883 (define-public r-assertive-matrices
10884 (package
10885 (name "r-assertive-matrices")
10886 (version "0.0-2")
10887 (source
10888 (origin
10889 (method url-fetch)
10890 (uri (cran-uri "assertive.matrices" version))
10891 (sha256
10892 (base32
10893 "16sykzcndv6y2d43x6v9n7m95kv76364h39kh10w4z0xw6ksfqil"))))
10894 (properties
10895 `((upstream-name . "assertive.matrices")))
10896 (build-system r-build-system)
10897 (propagated-inputs
10898 `(("r-assertive-base" ,r-assertive-base)))
10899 (home-page "https://bitbucket.org/richierocks/assertive.matrices")
10900 (synopsis "Assertions to check properties of matrices")
10901 (description
10902 "This package provides a set of predicates and assertions for checking
10903 the properties of matrices. This is mainly for use by other package
10904 developers who want to include run-time testing features in their own
10905 packages.")
10906 (license license:gpl3+)))
10907
10908 (define-public r-assertive-models
10909 (package
10910 (name "r-assertive-models")
10911 (version "0.0-2")
10912 (source
10913 (origin
10914 (method url-fetch)
10915 (uri (cran-uri "assertive.models" version))
10916 (sha256
10917 (base32
10918 "0bn4j4v5qvb2d672cgri61p8d9v258pmz35y3lvm6b9mdxwdi9mr"))))
10919 (properties
10920 `((upstream-name . "assertive.models")))
10921 (build-system r-build-system)
10922 (propagated-inputs
10923 `(("r-assertive-base" ,r-assertive-base)))
10924 (home-page "https://bitbucket.org/richierocks/assertive.models")
10925 (synopsis "Assertions to check properties of models")
10926 (description
10927 "This package provides a set of predicates and assertions for checking
10928 the properties of models. This is mainly for use by other package developers
10929 who want to include run-time testing features in their own packages.")
10930 (license license:gpl3+)))
10931
10932 (define-public r-assertive-reflection
10933 (package
10934 (name "r-assertive-reflection")
10935 (version "0.0-4")
10936 (source
10937 (origin
10938 (method url-fetch)
10939 (uri (cran-uri "assertive.reflection" version))
10940 (sha256
10941 (base32
10942 "19zmsbn00crfqm0kwd9ys5gv87xs3gi6wmlikrz9xiwzm7hp4dhj"))))
10943 (properties
10944 `((upstream-name . "assertive.reflection")))
10945 (build-system r-build-system)
10946 (propagated-inputs
10947 `(("r-assertive-base" ,r-assertive-base)))
10948 (home-page "https://bitbucket.org/richierocks/assertive.reflection")
10949 (synopsis "Assertions for checking the state of R")
10950 (description
10951 "This package provides a set of predicates and assertions for checking
10952 the state and capabilities of R, the operating system it is running on, and
10953 the IDE being used. This is mainly for use by other package developers who
10954 want to include run-time testing features in their own packages.")
10955 (license license:gpl3+)))
10956
10957 (define-public r-assertive-types
10958 (package
10959 (name "r-assertive-types")
10960 (version "0.0-3")
10961 (source
10962 (origin
10963 (method url-fetch)
10964 (uri (cran-uri "assertive.types" version))
10965 (sha256
10966 (base32
10967 "0zxq1jfrzgw95ll7alvm0xnk7aihjdksngq4ya2whyvfjbmv4vdb"))))
10968 (properties
10969 `((upstream-name . "assertive.types")))
10970 (build-system r-build-system)
10971 (propagated-inputs
10972 `(("r-assertive-base" ,r-assertive-base)
10973 ("r-assertive-properties" ,r-assertive-properties)
10974 ("r-codetools" ,r-codetools)))
10975 (home-page "https://bitbucket.org/richierocks/assertive.types")
10976 (synopsis "Assertions to check types of variables")
10977 (description
10978 "This package provides a set of predicates and assertions for checking
10979 the types of variables. This is mainly for use by other package developers
10980 who want to include run-time testing features in their own packages.")
10981 (license license:gpl3+)))
10982
10983 (define-public r-assertive-files
10984 (package
10985 (name "r-assertive-files")
10986 (version "0.0-2")
10987 (source
10988 (origin
10989 (method url-fetch)
10990 (uri (cran-uri "assertive.files" version))
10991 (sha256
10992 (base32
10993 "02pfz8j5vwcj5kl6zca46894li7lxwnlrr29j922f14ay6kdssmy"))))
10994 (properties
10995 `((upstream-name . "assertive.files")))
10996 (build-system r-build-system)
10997 (propagated-inputs
10998 `(("r-assertive-base" ,r-assertive-base)
10999 ("r-assertive-numbers" ,r-assertive-numbers)))
11000 (home-page "https://bitbucket.org/richierocks/assertive.files")
11001 (synopsis "Assertions to check properties of files")
11002 (description
11003 "This package provides a set of predicates and assertions for checking
11004 the properties of files and connections. This is mainly for use by other
11005 package developers who want to include run-time testing features in their own
11006 packages.")
11007 (license license:gpl3+)))
11008
11009 (define-public r-assertive-code
11010 (package
11011 (name "r-assertive-code")
11012 (version "0.0-3")
11013 (source
11014 (origin
11015 (method url-fetch)
11016 (uri (cran-uri "assertive.code" version))
11017 (sha256
11018 (base32
11019 "1qhbp668zfvhqs8avkhg9amp4zyazz6dsy4fc6kpdmw3sv8yi07g"))))
11020 (properties
11021 `((upstream-name . "assertive.code")))
11022 (build-system r-build-system)
11023 (propagated-inputs
11024 `(("r-assertive-base" ,r-assertive-base)
11025 ("r-assertive-properties" ,r-assertive-properties)
11026 ("r-assertive-types" ,r-assertive-types)))
11027 (home-page "https://bitbucket.org/richierocks/assertive.code")
11028 (synopsis "Assertions to check properties of code")
11029 (description
11030 "This package provides a set of predicates and assertions for checking
11031 the properties of code. This is mainly for use by other package developers
11032 who want to include run-time testing features in their own packages.")
11033 (license license:gpl3+)))
11034
11035 (define-public r-assertive-datetimes
11036 (package
11037 (name "r-assertive-datetimes")
11038 (version "0.0-2")
11039 (source
11040 (origin
11041 (method url-fetch)
11042 (uri (cran-uri "assertive.datetimes" version))
11043 (sha256
11044 (base32
11045 "00a98fx8p3pr3ckayh8wmxmm4rz01s67wah9697m92yci6pv3m78"))))
11046 (properties
11047 `((upstream-name . "assertive.datetimes")))
11048 (build-system r-build-system)
11049 (propagated-inputs
11050 `(("r-assertive-base" ,r-assertive-base)
11051 ("r-assertive-types" ,r-assertive-types)))
11052 (home-page "https://bitbucket.org/richierocks/assertive.datetimes")
11053 (synopsis "Assertions to check properties of dates and times")
11054 (description
11055 "This package provides a set of predicates and assertions for checking
11056 the properties of dates and times. This is mainly for use by other package
11057 developers who want to include run-time testing features in their own
11058 packages.")
11059 (license license:gpl3+)))
11060
11061 (define-public r-assertive-strings
11062 (package
11063 (name "r-assertive-strings")
11064 (version "0.0-3")
11065 (source
11066 (origin
11067 (method url-fetch)
11068 (uri (cran-uri "assertive.strings" version))
11069 (sha256
11070 (base32
11071 "0n6jrk88670g4ym0r8ii40a08a90z1xadj8wcryk8h0nl04dchfm"))))
11072 (properties
11073 `((upstream-name . "assertive.strings")))
11074 (build-system r-build-system)
11075 (propagated-inputs
11076 `(("r-assertive-base" ,r-assertive-base)
11077 ("r-assertive-types" ,r-assertive-types)
11078 ("r-stringi" ,r-stringi)))
11079 (home-page "https://bitbucket.org/richierocks/assertive.strings")
11080 (synopsis "Assertions to check properties of strings")
11081 (description
11082 "This package provides a set of predicates and assertions for checking
11083 the properties of strings. This is mainly for use by other package developers
11084 who want to include run-time testing features in their own packages.")
11085 (license license:gpl3+)))
11086
11087 (define-public r-assertive-data-us
11088 (package
11089 (name "r-assertive-data-us")
11090 (version "0.0-2")
11091 (source
11092 (origin
11093 (method url-fetch)
11094 (uri (cran-uri "assertive.data.us" version))
11095 (sha256
11096 (base32
11097 "1bgspn0sccmp9z7s7djvdvprgxlyc5vrxznp4zfjb79kwvgn83hq"))))
11098 (properties
11099 `((upstream-name . "assertive.data.us")))
11100 (build-system r-build-system)
11101 (propagated-inputs
11102 `(("r-assertive-base" ,r-assertive-base)
11103 ("r-assertive-strings" ,r-assertive-strings)))
11104 (home-page "https://bitbucket.org/richierocks/assertive.data.us")
11105 (synopsis "Assertions to check properties of strings")
11106 (description
11107 "This package provides a set of predicates and assertions for checking
11108 the properties of US-specific complex data types. This is mainly for use by
11109 other package developers who want to include run-time testing features in
11110 their own packages.")
11111 (license license:gpl3+)))
11112
11113 (define-public r-assertive-data-uk
11114 (package
11115 (name "r-assertive-data-uk")
11116 (version "0.0-2")
11117 (source
11118 (origin
11119 (method url-fetch)
11120 (uri (cran-uri "assertive.data.uk" version))
11121 (sha256
11122 (base32
11123 "1fzjvhwp7mwkqqix29khvs6zcrc82n6j4czvzzb473vyjyvdlj5b"))))
11124 (properties
11125 `((upstream-name . "assertive.data.uk")))
11126 (build-system r-build-system)
11127 (propagated-inputs
11128 `(("r-assertive-base" ,r-assertive-base)
11129 ("r-assertive-strings" ,r-assertive-strings)))
11130 (home-page "https://bitbucket.org/richierocks/assertive.data.uk")
11131 (synopsis "Assertions to check properties of strings")
11132 (description
11133 "This package provides a set of predicates and assertions for checking
11134 the properties of UK-specific complex data types. This is mainly for use by
11135 other package developers who want to include run-time testing features in
11136 their own packages.")
11137 (license license:gpl3+)))
11138
11139 (define-public r-assertive-data
11140 (package
11141 (name "r-assertive-data")
11142 (version "0.0-3")
11143 (source
11144 (origin
11145 (method url-fetch)
11146 (uri (cran-uri "assertive.data" version))
11147 (sha256
11148 (base32
11149 "00cvg2g36mdl8plrzx40m63qd55742mddqrchwy9n3c7mm4gn02s"))))
11150 (properties
11151 `((upstream-name . "assertive.data")))
11152 (build-system r-build-system)
11153 (propagated-inputs
11154 `(("r-assertive-base" ,r-assertive-base)
11155 ("r-assertive-strings" ,r-assertive-strings)))
11156 (home-page "https://bitbucket.org/richierocks/assertive.data")
11157 (synopsis "Assertions to check properties of data")
11158 (description
11159 "This package provides a set of predicates and assertions for checking
11160 the properties of (country independent) complex data types. This is mainly
11161 for use by other package developers who want to include run-time testing
11162 features in their own packages.")
11163 (license license:gpl3+)))
11164
11165 (define-public r-assertive
11166 (package
11167 (name "r-assertive")
11168 (version "0.3-5")
11169 (source
11170 (origin
11171 (method url-fetch)
11172 (uri (cran-uri "assertive" version))
11173 (sha256
11174 (base32
11175 "0blbbhlxcb5ffdxqxi62xs33ljiawh6s22a0pyvbbh79jf46rzr3"))))
11176 (build-system r-build-system)
11177 (propagated-inputs
11178 `(("r-assertive-base" ,r-assertive-base)
11179 ("r-assertive-code" ,r-assertive-code)
11180 ("r-assertive-data" ,r-assertive-data)
11181 ("r-assertive-data-uk" ,r-assertive-data-uk)
11182 ("r-assertive-data-us" ,r-assertive-data-us)
11183 ("r-assertive-datetimes" ,r-assertive-datetimes)
11184 ("r-assertive-files" ,r-assertive-files)
11185 ("r-assertive-matrices" ,r-assertive-matrices)
11186 ("r-assertive-models" ,r-assertive-models)
11187 ("r-assertive-numbers" ,r-assertive-numbers)
11188 ("r-assertive-properties" ,r-assertive-properties)
11189 ("r-assertive-reflection" ,r-assertive-reflection)
11190 ("r-assertive-sets" ,r-assertive-sets)
11191 ("r-assertive-strings" ,r-assertive-strings)
11192 ("r-assertive-types" ,r-assertive-types)
11193 ("r-knitr" ,r-knitr)))
11194 (home-page "https://bitbucket.org/richierocks/assertive")
11195 (synopsis "Readable check functions to ensure code integrity")
11196 (description
11197 "This package provides lots of predicates (@code{is_*} functions) to
11198 check the state of your variables, and assertions (@code{assert_*} functions)
11199 to throw errors if they aren't in the right form.")
11200 (license license:gpl3+)))
11201
11202 (define-public r-dotcall64
11203 (package
11204 (name "r-dotcall64")
11205 (version "1.0-0")
11206 (source
11207 (origin
11208 (method url-fetch)
11209 (uri (cran-uri "dotCall64" version))
11210 (sha256
11211 (base32
11212 "1b8p7m3w0m7bp977c6jz74xkd611cxg11j49yza59k5fp338scb9"))))
11213 (properties `((upstream-name . "dotCall64")))
11214 (build-system r-build-system)
11215 (native-inputs `(("gfortran" ,gfortran)))
11216 (home-page "https://git.math.uzh.ch/reinhard.furrer/dotCall64")
11217 (synopsis "Enhanced foreign function interface supporting long vectors")
11218 (description
11219 "This package provides @code{.C64()}, an enhanced version of @code{.C()}
11220 and @code{.Fortran()} from the R foreign function interface. @code{.C64()}
11221 supports long vectors, arguments of type 64-bit integer, and provides a
11222 mechanism to avoid unnecessary copies of read-only and write-only arguments.
11223 This makes it a convenient and fast interface to C/C++ and Fortran code.")
11224 (license license:gpl2+)))
11225
11226 (define-public r-spam
11227 (package
11228 (name "r-spam")
11229 (version "2.5-1")
11230 (source
11231 (origin
11232 (method url-fetch)
11233 (uri (cran-uri "spam" version))
11234 (sha256
11235 (base32 "0ry0a76cljlmilrzcriiizcidxyhq1i7i9bqhvl1qda81ld8hifi"))))
11236 (build-system r-build-system)
11237 (propagated-inputs
11238 `(("r-dotcall64" ,r-dotcall64)))
11239 (native-inputs `(("gfortran" ,gfortran)))
11240 (home-page "https://www.math.uzh.ch/pages/spam/")
11241 (synopsis "Sparse matrix algebra")
11242 (description
11243 "This package provides a set of functions for sparse matrix algebra.
11244 Differences with other sparse matrix packages are:
11245
11246 @enumerate
11247 @item it only supports (essentially) one sparse matrix format;
11248 @item it is based on transparent and simple structure(s);
11249 @item it is tailored for MCMC calculations within G(M)RF;
11250 @item and it is fast and scalable (with the extension package @code{spam64}).
11251 @end enumerate\n")
11252 ;; Either of these licenses
11253 (license (list license:bsd-3 license:lgpl2.0))))
11254
11255 (define-public r-fields
11256 (package
11257 (name "r-fields")
11258 (version "10.3")
11259 (source
11260 (origin
11261 (method url-fetch)
11262 (uri (cran-uri "fields" version))
11263 (sha256
11264 (base32 "12k97vfjlz5h8vynirnvik1nyj1iw25n8xl7awmx9mpd6wvgy2s9"))))
11265 (build-system r-build-system)
11266 (propagated-inputs
11267 `(("r-maps" ,r-maps)
11268 ("r-spam" ,r-spam)))
11269 (native-inputs
11270 `(("gfortran" ,gfortran)))
11271 (home-page "https://www.image.ucar.edu/fields")
11272 (synopsis "Tools for spatial data")
11273 (description
11274 "This is a package for curve, surface and function fitting with an
11275 emphasis on splines, spatial data and spatial statistics. The major methods
11276 include cubic, and thin plate splines, Kriging, and compactly supported
11277 covariance functions for large data sets.")
11278 (license license:gpl2+)))
11279
11280 (define-public r-spatialextremes
11281 (package
11282 (name "r-spatialextremes")
11283 (version "2.0-8")
11284 (source
11285 (origin
11286 (method url-fetch)
11287 (uri (cran-uri "SpatialExtremes" version))
11288 (sha256
11289 (base32
11290 "0r2byz5xxc46zqnigdax28q7446ibmzmsmi10lmm2hdks3ml6sl3"))))
11291 (properties
11292 `((upstream-name . "SpatialExtremes")))
11293 (build-system r-build-system)
11294 (propagated-inputs
11295 `(("r-fields" ,r-fields)
11296 ("r-maps" ,r-maps)))
11297 (home-page "http://spatialextremes.r-forge.r-project.org/")
11298 (synopsis "Modelling spatial extremes")
11299 (description
11300 "This package provides tools for the statistical modelling of spatial
11301 extremes using max-stable processes, copula or Bayesian hierarchical models.
11302 More precisely, this package allows (conditional) simulations from various
11303 parametric max-stable models, analysis of the extremal spatial dependence, the
11304 fitting of such processes using composite likelihoods or least square (simple
11305 max-stable processes only), model checking and selection and prediction.")
11306 (license license:gpl2+)))
11307
11308 (define-public r-drc
11309 (package
11310 (name "r-drc")
11311 (version "3.0-1")
11312 (source
11313 (origin
11314 (method url-fetch)
11315 (uri (cran-uri "drc" version))
11316 (sha256
11317 (base32
11318 "0c8xn8ripzq270hy8d16fcnx02l02alddznd7fqwk3jyi6113h1y"))))
11319 (build-system r-build-system)
11320 (propagated-inputs
11321 `(("r-car" ,r-car)
11322 ("r-gtools" ,r-gtools)
11323 ("r-mass" ,r-mass)
11324 ("r-multcomp" ,r-multcomp)
11325 ("r-plotrix" ,r-plotrix)
11326 ("r-scales" ,r-scales)))
11327 (home-page "https://cran.r-project.org/web/packages/drc")
11328 (synopsis "Analysis of dose-response curves")
11329 (description
11330 "This package provides a suite of flexible and versatile model fitting
11331 and after-fitting functions for the analysis of dose-response data.")
11332 (license license:gpl2+)))
11333
11334 (define-public r-rmeta
11335 (package
11336 (name "r-rmeta")
11337 (version "3.0")
11338 (source
11339 (origin
11340 (method url-fetch)
11341 (uri (cran-uri "rmeta" version))
11342 (sha256
11343 (base32
11344 "0vkbnxp579v8zmcv1isdbzj5swpr6fq17zwparxcvzswjc2x9ydr"))))
11345 (build-system r-build-system)
11346 (home-page "https://cran.r-project.org/web/packages/rmeta")
11347 (synopsis "Tools for meta-analysis")
11348 (description
11349 "This package provides functions for simple fixed and random effects
11350 meta-analysis for two-sample comparisons and cumulative meta-analyses. It
11351 draws standard summary plots, funnel plots, and computes summaries and tests
11352 for association and heterogeneity.")
11353 (license license:gpl2)))
11354
11355 (define-public r-bootstrap
11356 (package
11357 (name "r-bootstrap")
11358 (version "2019.6")
11359 (source
11360 (origin
11361 (method url-fetch)
11362 (uri (cran-uri "bootstrap" version))
11363 (sha256
11364 (base32
11365 "1546jqhhw5h177ii8jkdikyd26rv6gwkav816np1zks4p7zgsljj"))))
11366 (build-system r-build-system)
11367 (native-inputs `(("gfortran" ,gfortran)))
11368 (home-page "https://cran.r-project.org/web/packages/bootstrap")
11369 (synopsis "Functions for the book \"An Introduction to the Bootstrap\"")
11370 (description
11371 "This package provides software and data for the book \"An Introduction
11372 to the Bootstrap\" by B. Efron and R. Tibshirani, 1993, Chapman and Hall.
11373 This package is primarily provided for projects already based on it, and for
11374 support of the book. New projects should preferentially use the recommended
11375 package \"boot\".")
11376 (license license:bsd-3)))
11377
11378 (define-public r-survivalroc
11379 (package
11380 (name "r-survivalroc")
11381 (version "1.0.3")
11382 (source
11383 (origin
11384 (method url-fetch)
11385 (uri (cran-uri "survivalROC" version))
11386 (sha256
11387 (base32
11388 "0wnd65ff5w679hxa1zrpfrx9qg47q21pjxppsga6m3h4iq1yfj8l"))))
11389 (properties `((upstream-name . "survivalROC")))
11390 (build-system r-build-system)
11391 (home-page "https://cran.r-project.org/web/packages/survivalROC")
11392 (synopsis "Time-dependent ROC curve estimation from censored survival data")
11393 (description
11394 "Compute time-dependent ROC curve from censored survival data using
11395 Kaplan-Meier (KM) or Nearest Neighbor Estimation (NNE) method of Heagerty,
11396 Lumley & Pepe (Biometrics, Vol 56 No 2, 2000, PP 337-344)")
11397 (license license:gpl2+)))
11398
11399 (define-public r-longitudinal
11400 (package
11401 (name "r-longitudinal")
11402 (version "1.1.12")
11403 (source
11404 (origin
11405 (method url-fetch)
11406 (uri (cran-uri "longitudinal" version))
11407 (sha256
11408 (base32
11409 "1d83ws28nxi3kw5lgd5n5y7865djq7ky72fw3ddi1fkkhg1r9y6l"))))
11410 (build-system r-build-system)
11411 (propagated-inputs `(("r-corpcor" ,r-corpcor)))
11412 (home-page "http://strimmerlab.org/software/longitudinal/")
11413 (synopsis "Analysis of multiple time course data")
11414 (description
11415 "This package contains general data structures and functions for
11416 longitudinal data with multiple variables, repeated measurements, and
11417 irregularly spaced time points. It also implements a shrinkage estimator of
11418 dynamical correlation and dynamical covariance.")
11419 (license license:gpl3+)))
11420
11421 (define-public r-genenet
11422 (package
11423 (name "r-genenet")
11424 (version "1.2.14")
11425 (source
11426 (origin
11427 (method url-fetch)
11428 (uri (cran-uri "GeneNet" version))
11429 (sha256
11430 (base32
11431 "0cdhrj15rz0w0pyw3r8mikrzsdh95y5i1c0pa3cn0c2bjnjx3x3n"))))
11432 (properties `((upstream-name . "GeneNet")))
11433 (build-system r-build-system)
11434 (propagated-inputs
11435 `(("r-corpcor" ,r-corpcor)
11436 ("r-fdrtool" ,r-fdrtool)
11437 ("r-longitudinal" ,r-longitudinal)))
11438 (home-page "http://strimmerlab.org/software/genenet/")
11439 (synopsis "Modeling and inferring gene networks")
11440 (description
11441 "This package analyzes gene expression (time series) data with focus on
11442 the inference of gene networks. In particular, GeneNet implements the methods
11443 of Schaefer and Strimmer (2005a,b,c) and Opgen-Rhein and Strimmer (2006, 2007)
11444 for learning large-scale gene association networks (including assignment of
11445 putative directions).")
11446 (license license:gpl3+)))
11447
11448 (define-public r-rbamtools
11449 (package
11450 (name "r-rbamtools")
11451 (version "2.16.17")
11452 (source
11453 (origin
11454 (method url-fetch)
11455 (uri (cran-uri "rbamtools" version))
11456 (sha256
11457 (base32
11458 "0qj37ljdva3v29s01dkrbg31mcfzy3bl145cp40d54v4h9xhcghc"))))
11459 (build-system r-build-system)
11460 (inputs `(("zlib" ,zlib)))
11461 (propagated-inputs
11462 `(("r-refgenome" ,r-refgenome)))
11463 (home-page "https://cran.r-project.org/web/packages/rbamtools")
11464 (synopsis "Read and write BAM (binary alignment) files")
11465 (description
11466 "This package provides an R interface to functions of the SAMtools
11467 library.")
11468 (license license:artistic2.0)))
11469
11470 (define-public r-protviz
11471 (package
11472 (name "r-protviz")
11473 (version "0.6.3")
11474 (source
11475 (origin
11476 (method url-fetch)
11477 (uri (cran-uri "protViz" version))
11478 (sha256
11479 (base32
11480 "1ldciqh3f43xr9663yyhd9r6qwrg4c4vmkprlcancbnd460wakg7"))))
11481 (properties `((upstream-name . "protViz")))
11482 (build-system r-build-system)
11483 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
11484 (home-page "https://github.com/protViz/protViz/")
11485 (synopsis "Visualizing and analyzing mass spectrometry data in proteomics")
11486 (description
11487 "This package helps with quality checks, visualizations and analysis of
11488 mass spectrometry data, coming from proteomics experiments. The package is
11489 developed, tested and used at the Functional Genomics Center Zurich, where it
11490 is used mainly for prototyping, teaching, and having fun with proteomics data.
11491 But it can also be used to do data analysis for small scale data sets.")
11492 (license license:gpl3)))
11493
11494 (define-public r-cmprsk
11495 (package
11496 (name "r-cmprsk")
11497 (version "2.2-9")
11498 (source
11499 (origin
11500 (method url-fetch)
11501 (uri (cran-uri "cmprsk" version))
11502 (sha256
11503 (base32 "0xhgfg5b4i9skkaxp7gzkafgg5bqs5q1rp4hpw2jjmykg2nifn99"))))
11504 (build-system r-build-system)
11505 (propagated-inputs
11506 `(("r-survival" ,r-survival)))
11507 (native-inputs
11508 `(("gfortran" ,gfortran)))
11509 (home-page "https://cran.r-project.org/web/packages/cmprsk")
11510 (synopsis "Subdistribution analysis of competing risks")
11511 (description
11512 "This package provides tool for estimation, testing and regression
11513 modeling of subdistribution functions in competing risks, as described in
11514 Gray (1988), A class of K-sample tests for comparing the cumulative incidence
11515 of a competing risk, Ann. Stat. 16:1141-1154, and Fine JP and Gray RJ (1999),
11516 A proportional hazards model for the subdistribution of a competing risk,
11517 JASA, 94:496-509.")
11518 (license license:gpl2+)))
11519
11520 (define-public r-etm
11521 (package
11522 (name "r-etm")
11523 (version "1.0.5.1")
11524 (source
11525 (origin
11526 (method url-fetch)
11527 (uri (cran-uri "etm" version))
11528 (sha256
11529 (base32
11530 "0m41pm277sd50pharigcqzr1a2g92wnmdf6fcab6fx16ia2fzrm7"))))
11531 (build-system r-build-system)
11532 (propagated-inputs
11533 `(("r-data-table" ,r-data-table)
11534 ("r-lattice" ,r-lattice)
11535 ("r-rcpp" ,r-rcpp)
11536 ("r-rcpparmadillo" ,r-rcpparmadillo)
11537 ("r-survival" ,r-survival)))
11538 (home-page "https://cran.r-project.org/web/packages/etm")
11539 (synopsis "Empirical transition matrix")
11540 (description
11541 "The @dfn{empirical transition matrix} (etm) package estimates
11542 the matrix of transition probabilities for any time-inhomogeneous multistate
11543 model with finite state space using the Aalen-Johansen estimator.")
11544 (license license:expat)))
11545
11546 (define-public r-epi
11547 (package
11548 (name "r-epi")
11549 (version "2.40")
11550 (source
11551 (origin
11552 (method url-fetch)
11553 (uri (cran-uri "Epi" version))
11554 (sha256
11555 (base32
11556 "046y10vwks5y84pzccmrn6d4pd6qz70imvp1hw5ywp8fnwzfh4g5"))))
11557 (properties `((upstream-name . "Epi")))
11558 (build-system r-build-system)
11559 (propagated-inputs
11560 `(("r-cmprsk" ,r-cmprsk)
11561 ("r-data-table" ,r-data-table)
11562 ("r-etm" ,r-etm)
11563 ("r-mass" ,r-mass)
11564 ("r-matrix" ,r-matrix)
11565 ("r-mgcv" ,r-mgcv)
11566 ("r-numderiv" ,r-numderiv)
11567 ("r-plyr" ,r-plyr)
11568 ("r-survival" ,r-survival)
11569 ("r-zoo" ,r-zoo)))
11570 (home-page "https://BendixCarstensen.com/Epi/")
11571 (synopsis "Statistical analysis in epidemiology")
11572 (description
11573 "This package provides functions for demographic and epidemiological
11574 analysis in the Lexis diagram, i.e. register and cohort follow-up data, in
11575 particular representation, manipulation and simulation of multistate data -
11576 the Lexis suite of functions, which includes interfaces to the @code{mstate},
11577 @code{etm} and @code{cmprsk} packages. It also contains functions for
11578 Age-Period-Cohort and Lee-Carter modeling and a function for interval censored
11579 data and some useful functions for tabulation and plotting, as well as a
11580 number of epidemiological data sets.")
11581 (license license:gpl2)))
11582
11583 (define-public r-ppls
11584 (package
11585 (name "r-ppls")
11586 (version "1.6-1.1")
11587 (source
11588 (origin
11589 (method url-fetch)
11590 (uri (cran-uri "ppls" version))
11591 (sha256
11592 (base32
11593 "1zyrisy3c4cz896j1bjh61sf57wdl9p8ywdq268cl819szfq78mx"))))
11594 (build-system r-build-system)
11595 (propagated-inputs `(("r-mass" ,r-mass)))
11596 (home-page "https://cran.r-project.org/web/packages/ppls")
11597 (synopsis "Penalized partial least squares")
11598 (description
11599 "This package contains linear and nonlinear regression methods based on
11600 partial least squares and penalization techniques. Model parameters are
11601 selected via cross-validation, and confidence intervals ans tests for the
11602 regression coefficients can be conducted via jackknifing.")
11603 (license license:gpl2+)))
11604
11605 (define-public r-huge
11606 (package
11607 (name "r-huge")
11608 (version "1.3.4.1")
11609 (source
11610 (origin
11611 (method url-fetch)
11612 (uri (cran-uri "huge" version))
11613 (sha256
11614 (base32 "11m80dnaxqw5v006q6kvhndl2y5ih5553fcqg4jcaljd8sp9xvvq"))))
11615 (build-system r-build-system)
11616 (propagated-inputs
11617 `(("r-igraph" ,r-igraph)
11618 ("r-mass" ,r-mass)
11619 ("r-matrix" ,r-matrix)
11620 ("r-rcpp" ,r-rcpp)
11621 ("r-rcppeigen" ,r-rcppeigen)))
11622 (home-page "https://cran.r-project.org/web/packages/huge")
11623 (synopsis "High-dimensional undirected graph estimation")
11624 (description
11625 "This package provides a general framework for high-dimensional
11626 undirected graph estimation. It integrates data preprocessing, neighborhood
11627 screening, graph estimation, and model selection techniques into a pipeline.")
11628 (license license:gpl2)))
11629
11630 (define-public r-parcor
11631 (package
11632 (name "r-parcor")
11633 (version "0.2-6")
11634 (source
11635 (origin
11636 (method url-fetch)
11637 (uri (cran-uri "parcor" version))
11638 (sha256
11639 (base32
11640 "0vgs6k92vdr0cmb8cwbv2ff6qavw30agskfd8bfh17hsskrisvx0"))))
11641 (build-system r-build-system)
11642 (propagated-inputs
11643 `(("r-epi" ,r-epi)
11644 ("r-genenet" ,r-genenet)
11645 ("r-glmnet" ,r-glmnet)
11646 ("r-mass" ,r-mass)
11647 ("r-ppls" ,r-ppls)))
11648 (home-page "https://cran.r-project.org/web/packages/parcor")
11649 (synopsis "Regularized estimation of partial correlation matrices")
11650 (description
11651 "This package estimates the matrix of partial correlations based on
11652 different regularized regression methods: lasso, adaptive lasso, PLS, and
11653 Ridge Regression. In addition, the package provides model selection for
11654 lasso, adaptive lasso and Ridge regression based on cross-validation.")
11655 (license license:gpl2+)))
11656
11657 (define-public r-mcmc
11658 (package
11659 (name "r-mcmc")
11660 (version "0.9-7")
11661 (source
11662 (origin
11663 (method url-fetch)
11664 (uri (cran-uri "mcmc" version))
11665 (sha256
11666 (base32
11667 "0q42m8ab7b6bxhns494ksjdss5f3c5m2jjfdlfj6fk1nz7ax7i5p"))))
11668 (build-system r-build-system)
11669 (home-page "https://www.stat.umn.edu/geyer/mcmc/")
11670 (synopsis "Markov chain Monte Carlo")
11671 (description
11672 "This package simulates continuous distributions of random vectors using
11673 @dfn{Markov chain Monte Carlo} (MCMC). Users specify the distribution by an R
11674 function that evaluates the log unnormalized density. Algorithms are random
11675 walk Metropolis algorithm (function @code{metrop}), simulated
11676 tempering (function @code{temper}), and morphometric random walk
11677 Metropolis (function @code{morph.metrop}), which achieves geometric ergodicity
11678 by change of variable.")
11679 (license license:expat)))
11680
11681 (define-public r-listenv
11682 (package
11683 (name "r-listenv")
11684 (version "0.8.0")
11685 (source
11686 (origin
11687 (method url-fetch)
11688 (uri (cran-uri "listenv" version))
11689 (sha256
11690 (base32
11691 "0ps8bk7zlhbviawrw7vw25skjq81hkk3ijyi6g74dmfqy8zsyapx"))))
11692 (build-system r-build-system)
11693 (native-inputs
11694 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
11695 (home-page "https://github.com/HenrikBengtsson/listenv")
11696 (synopsis "Environments behaving (almost) as lists")
11697 (description
11698 "This package implements list environments. List environments are
11699 environments that have list-like properties. For instance, the elements of a
11700 list environment are ordered and can be accessed and iterated over using index
11701 subsetting.")
11702 (license license:lgpl2.1+)))
11703
11704 (define-public r-globals
11705 (package
11706 (name "r-globals")
11707 (version "0.12.5")
11708 (source
11709 (origin
11710 (method url-fetch)
11711 (uri (cran-uri "globals" version))
11712 (sha256
11713 (base32
11714 "1ha8iasgijp4q3v2b0b17y1wh7cd3nvzd9b03w49qm2bidkaf68m"))))
11715 (build-system r-build-system)
11716 (propagated-inputs
11717 `(("r-codetools" ,r-codetools)))
11718 (home-page "https://github.com/HenrikBengtsson/globals")
11719 (synopsis "Identify global objects in R expressions")
11720 (description
11721 "This package provides tools to identify global (\"unknown\" or \"free\")
11722 objects in R expressions by code inspection using various strategies, e.g.
11723 conservative or liberal. The objective of this package is to make it as
11724 simple as possible to identify global objects for the purpose of exporting
11725 them in distributed compute environments.")
11726 (license license:lgpl2.1+)))
11727
11728 (define-public r-future
11729 (package
11730 (name "r-future")
11731 (version "1.16.0")
11732 (source
11733 (origin
11734 (method url-fetch)
11735 (uri (cran-uri "future" version))
11736 (sha256
11737 (base32
11738 "1xaqh0b2knf5bp23mc0kriq0iqhqna31q3b7d960piqjhzrb03dm"))))
11739 (build-system r-build-system)
11740 (propagated-inputs
11741 `(("r-digest" ,r-digest)
11742 ("r-globals" ,r-globals)
11743 ("r-listenv" ,r-listenv)))
11744 (native-inputs
11745 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
11746 (home-page "https://github.com/HenrikBengtsson/future")
11747 (synopsis "Unified parallel and distributed processing in R")
11748 (description
11749 "The purpose of this package is to provide a lightweight and unified
11750 Future API for sequential and parallel processing of R expression via futures.
11751 This package implements sequential, multicore, multisession, and cluster
11752 futures. With these, R expressions can be evaluated on the local machine, in
11753 parallel a set of local machines, or distributed on a mix of local and remote
11754 machines. Extensions to this package implement additional backends for
11755 processing futures via compute cluster schedulers etc. Because of its unified
11756 API, there is no need to modify any code in order to switch from sequential on
11757 the local machine to, say, distributed processing on a remote compute cluster.")
11758 (license license:lgpl2.1+)))
11759
11760 (define-public r-future-apply
11761 (package
11762 (name "r-future-apply")
11763 (version "1.4.0")
11764 (source
11765 (origin
11766 (method url-fetch)
11767 (uri (cran-uri "future.apply" version))
11768 (sha256
11769 (base32
11770 "1kgq6dv96hdy35kysqkn606nj7s9dp4ibgpm6n46gqhc5n75lzkk"))))
11771 (properties `((upstream-name . "future.apply")))
11772 (build-system r-build-system)
11773 (propagated-inputs
11774 `(("r-future" ,r-future)
11775 ("r-globals" ,r-globals)))
11776 (native-inputs
11777 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
11778 (home-page "https://github.com/HenrikBengtsson/future.apply")
11779 (synopsis "Apply function to elements in parallel using futures")
11780 (description
11781 "This package provides implementations of @code{apply()},
11782 @code{eapply()}, @code{lapply()}, @code{Map()}, @code{mapply()},
11783 @code{replicate()}, @code{sapply()}, @code{tapply()}, and @code{vapply()} that
11784 can be resolved using any future-supported backend, e.g. parallel on the local
11785 machine or distributed on a compute cluster.")
11786 (license license:gpl2+)))
11787
11788 (define-public r-rsvd
11789 (package
11790 (name "r-rsvd")
11791 (version "1.0.3")
11792 (source
11793 (origin
11794 (method url-fetch)
11795 (uri (cran-uri "rsvd" version))
11796 (sha256
11797 (base32
11798 "1fvrw46fl5xb2akaa4mp8nja4h7nn4bdhnjdrk22fsdfqc7hwmhk"))))
11799 (build-system r-build-system)
11800 (propagated-inputs
11801 `(("r-matrix" ,r-matrix)))
11802 (home-page "https://github.com/erichson/rSVD")
11803 (synopsis "Randomized singular value decomposition")
11804 (description
11805 "Low-rank matrix decompositions are fundamental tools and widely used for
11806 data analysis, dimension reduction, and data compression. Classically, highly
11807 accurate deterministic matrix algorithms are used for this task. However, the
11808 emergence of large-scale data has severely challenged our computational
11809 ability to analyze big data. The concept of randomness has been demonstrated
11810 as an effective strategy to quickly produce approximate answers to familiar
11811 problems such as the @dfn{singular value decomposition} (SVD). This package
11812 provides several randomized matrix algorithms such as the randomized singular
11813 value decomposition (@code{rsvd}), randomized principal component
11814 analysis (@code{rpca}), randomized robust principal component
11815 analysis (@code{rrpca}), randomized interpolative decomposition (@code{rid}),
11816 and the randomized CUR decomposition (@code{rcur}). In addition several plot
11817 functions are provided.")
11818 (license license:gpl3+)))
11819
11820 (define-public r-sloop
11821 (package
11822 (name "r-sloop")
11823 (version "1.0.1")
11824 (source
11825 (origin
11826 (method url-fetch)
11827 (uri (cran-uri "sloop" version))
11828 (sha256
11829 (base32
11830 "00fk5fr5zsk2qxc1kfhmshhjxgnamm3401089sx8m2l529zd6r8j"))))
11831 (build-system r-build-system)
11832 (propagated-inputs
11833 `(("r-codetools" ,r-codetools)
11834 ("r-crayon" ,r-crayon)
11835 ("r-purrr" ,r-purrr)
11836 ("r-rlang" ,r-rlang)
11837 ("r-tibble" ,r-tibble)))
11838 (home-page "https://github.com/r-lib/sloop")
11839 (synopsis "Helpers for object-oriented programming in R")
11840 (description
11841 "This package provides a collection of helper functions designed to
11842 help you to better understand object oriented programming in R, particularly
11843 using @code{S3}.")
11844 (license license:gpl3)))
11845
11846 (define-public r-capushe
11847 (package
11848 (name "r-capushe")
11849 (version "1.1.1")
11850 (source
11851 (origin
11852 (method url-fetch)
11853 (uri (cran-uri "capushe" version))
11854 (sha256
11855 (base32
11856 "1aa76ir1kp67hiz7dr60azyc71yzslshyc640fjh0fpw0sp5kwbc"))))
11857 (build-system r-build-system)
11858 (propagated-inputs `(("r-mass" ,r-mass)))
11859 (home-page "https://cran.r-project.org/web/packages/capushe/index.html")
11860 (synopsis "Calibrating penalties using slope heuristics")
11861 (description
11862 "This package provides tools for the calibration of penalized criteria
11863 for model selection. The calibration methods available are based on the slope
11864 heuristics.")
11865 (license license:gpl2+)))
11866
11867 (define-public r-dorng
11868 (package
11869 (name "r-dorng")
11870 (version "1.8.2")
11871 (source
11872 (origin
11873 (method url-fetch)
11874 (uri (cran-uri "doRNG" version))
11875 (sha256
11876 (base32
11877 "1jff27zzrvd1fd61x2m9468h8xn3s1c9f6wibviy5zdhj5dx9s9k"))))
11878 (properties `((upstream-name . "doRNG")))
11879 (build-system r-build-system)
11880 (propagated-inputs
11881 `(("r-foreach" ,r-foreach)
11882 ("r-iterators" ,r-iterators)
11883 ("r-rngtools" ,r-rngtools)))
11884 (home-page "https://renozao.github.io/doRNG/")
11885 (synopsis "Generic reproducible parallel backend for foreach loops")
11886 (description
11887 "This package provides functions to perform reproducible parallel
11888 @code{foreach} loops, using independent random streams as generated by
11889 L'Ecuyer's combined multiple-recursive generator. It enables to easily
11890 convert standard @code{%dopar%} loops into fully reproducible loops,
11891 independently of the number of workers, the task scheduling strategy, or the
11892 chosen parallel environment and associated foreach backend.")
11893 (license license:gpl2+)))
11894
11895 (define-public r-blockmodeling
11896 (package
11897 (name "r-blockmodeling")
11898 (version "0.3.6")
11899 (source
11900 (origin
11901 (method url-fetch)
11902 (uri (cran-uri "blockmodeling" version))
11903 (sha256
11904 (base32
11905 "12paf76l3wlxad14bkxn37lw9rg6ka473m86wlcf3yhriw8kbaiz"))))
11906 (build-system r-build-system)
11907 (propagated-inputs
11908 `(("r-matrix" ,r-matrix)))
11909 (native-inputs `(("gfortran" ,gfortran)))
11910 (home-page "https://cran.r-project.org/web/packages/blockmodeling")
11911 (synopsis "Generalized and classical blockmodeling of valued networks")
11912 (description
11913 "This package is primarily meant as an implementation of generalized
11914 blockmodeling for valued networks. In addition, measures of similarity or
11915 dissimilarity based on structural equivalence and regular equivalence (REGE
11916 algorithms) can be computed and partitioned matrices can be plotted.")
11917 (license license:gpl2+)))
11918
11919 (define-public r-upsetr
11920 (package
11921 (name "r-upsetr")
11922 (version "1.4.0")
11923 (source
11924 (origin
11925 (method url-fetch)
11926 (uri (cran-uri "UpSetR" version))
11927 (sha256
11928 (base32
11929 "007i0njnjjy7vbrxabwav7a1kk2n0hn2mkvqsdzzfk10ckp5y7im"))))
11930 (properties `((upstream-name . "UpSetR")))
11931 (build-system r-build-system)
11932 (propagated-inputs
11933 `(("r-ggplot2" ,r-ggplot2)
11934 ("r-gridextra" ,r-gridextra)
11935 ("r-plyr" ,r-plyr)
11936 ("r-scales" ,r-scales)))
11937 (home-page "https://github.com/hms-dbmi/UpSetR")
11938 (synopsis "Visualize intersecting sets")
11939 (description
11940 "This package provides a more scalable alternative to Venn and Euler
11941 diagrams for visualizing intersecting sets. Create visualizations of
11942 intersecting sets using a novel matrix design, along with visualizations of
11943 several common set, element and attribute related tasks.")
11944 (license license:expat)))
11945
11946 ;; This package includes a JavaScript file, which is not minified. When
11947 ;; upgrading please check that there are no new minified JavaScript files.
11948 (define-public r-shinybs
11949 (package
11950 (name "r-shinybs")
11951 (version "0.61")
11952 (source
11953 (origin
11954 (method url-fetch)
11955 (uri (cran-uri "shinyBS" version))
11956 (sha256
11957 (base32
11958 "0rhim4mbp4x9vvm7xkmpl7mhb9qd1gr96cr4dv330v863ra2kgji"))))
11959 (properties `((upstream-name . "shinyBS")))
11960 (build-system r-build-system)
11961 ;; The tests spawn Shiny browser apps. They cannot be run
11962 ;; non-interactively.
11963 (arguments '(#:tests? #f))
11964 (propagated-inputs
11965 `(("r-htmltools" ,r-htmltools)
11966 ("r-shiny" ,r-shiny)))
11967 (home-page "https://ebailey78.github.io/shinyBS/")
11968 (synopsis "Twitter Bootstrap components for Shiny")
11969 (description
11970 "This package adds additional Twitter Bootstrap components to Shiny.")
11971 (license license:gpl3)))
11972
11973 (define-public r-outliers
11974 (package
11975 (name "r-outliers")
11976 (version "0.14")
11977 (source
11978 (origin
11979 (method url-fetch)
11980 (uri (cran-uri "outliers" version))
11981 (sha256
11982 (base32
11983 "0vcqfqmmv4yblyp3s6bd25r49pxb7hjzipiic5a82924nqfqzkmn"))))
11984 (build-system r-build-system)
11985 (home-page "https://cran.r-project.org/web/packages/outliers/index.html")
11986 (synopsis "Tests for outliers")
11987 (description
11988 "This package provides a collection of some tests commonly used for
11989 identifying outliers.")
11990 (license license:gpl2+)))
11991
11992 (define-public r-bayesm
11993 (package
11994 (name "r-bayesm")
11995 (version "3.1-4")
11996 (source
11997 (origin
11998 (method url-fetch)
11999 (uri (cran-uri "bayesm" version))
12000 (sha256
12001 (base32 "154glks7rsjkza0sfi1kj7wj727py9sl1ba6sswflwmwc9n226q6"))))
12002 (build-system r-build-system)
12003 (propagated-inputs
12004 `(("r-rcpp" ,r-rcpp)
12005 ("r-rcpparmadillo" ,r-rcpparmadillo)))
12006 (home-page "http://www.perossi.org/home/bsm-1")
12007 (synopsis "Bayesian inference for marketing/micro-econometrics")
12008 (description
12009 "This package covers many important models used in marketing and
12010 micro-econometrics applications, including Bayes Regression (univariate or
12011 multivariate dep var), Bayes Seemingly Unrelated Regression (SUR), Binary and
12012 Ordinal Probit, Multinomial Logit (MNL) and Multinomial Probit (MNP),
12013 Multivariate Probit, Negative Binomial (Poisson) Regression, Multivariate
12014 Mixtures of Normals (including clustering), Dirichlet Process Prior Density
12015 Estimation with normal base, Hierarchical Linear Models with normal prior and
12016 covariates, Hierarchical Linear Models with a mixture of normals prior and
12017 covariates, Hierarchical Multinomial Logits with a mixture of normals prior
12018 and covariates, Hierarchical Multinomial Logits with a Dirichlet Process prior
12019 and covariates, Hierarchical Negative Binomial Regression Models, Bayesian
12020 analysis of choice-based conjoint data, Bayesian treatment of linear
12021 instrumental variables models, Analysis of Multivariate Ordinal survey data
12022 with scale usage heterogeneity, and Bayesian Analysis of Aggregate Random
12023 Coefficient Logit Models.")
12024 (license license:gpl2+)))
12025
12026 (define-public r-tensora
12027 (package
12028 (name "r-tensora")
12029 (version "0.36.1")
12030 (source
12031 (origin
12032 (method url-fetch)
12033 (uri (cran-uri "tensorA" version))
12034 (sha256
12035 (base32
12036 "176hjy3bvg3in62r97wxbhq187sjz6c1gwy9x6spaxl6k4my3zy7"))))
12037 (properties `((upstream-name . "tensorA")))
12038 (build-system r-build-system)
12039 (home-page "http://www.stat.boogaart.de/tensorA")
12040 (synopsis "Advanced tensor arithmetic with named indices")
12041 (description
12042 "This package provides convenience functions for advanced linear algebra
12043 with tensors and computation with datasets of tensors on a higher level
12044 abstraction. It includes Einstein and Riemann summing conventions, dragging,
12045 co- and contravariate indices, and parallel computations on sequences of
12046 tensors.")
12047 (license license:gpl2+)))
12048
12049 (define-public r-rarpack
12050 (package
12051 (name "r-rarpack")
12052 (version "0.11-0")
12053 (source
12054 (origin
12055 (method url-fetch)
12056 (uri (cran-uri "rARPACK" version))
12057 (sha256
12058 (base32
12059 "12h2y46xcfldhjdmm960swgn9b23zvkj5vg2bi42s9qxwgi02d63"))))
12060 (properties `((upstream-name . "rARPACK")))
12061 (build-system r-build-system)
12062 (propagated-inputs `(("r-rspectra" ,r-rspectra)))
12063 (home-page "https://github.com/yixuan/rARPACK")
12064 (synopsis "Solvers for large scale eigenvalue and SVD problems")
12065 (description
12066 "This package was previously an R wrapper of the ARPACK library, and now
12067 a shell of the R package RSpectra, an R interface to the Spectra library for
12068 solving large scale eigenvalue/vector problems. The current version of
12069 rARPACK simply imports and exports the functions provided by RSpectra. New
12070 users of rARPACK are advised to switch to the RSpectra package.")
12071 (license license:bsd-3)))
12072
12073 (define-public r-compositions
12074 (package
12075 (name "r-compositions")
12076 (version "1.40-4")
12077 (source
12078 (origin
12079 (method url-fetch)
12080 (uri (cran-uri "compositions" version))
12081 (sha256
12082 (base32
12083 "0z40llyij3cc80ac1vzzrpykk6ysp89bn6dyyh40fbnc4anwx69a"))))
12084 (build-system r-build-system)
12085 (propagated-inputs
12086 `(("r-bayesm" ,r-bayesm)
12087 ("r-robustbase" ,r-robustbase)
12088 ("r-tensora" ,r-tensora)))
12089 (home-page "http://www.stat.boogaart.de/compositions")
12090 (synopsis "Compositional data analysis")
12091 (description
12092 "This package provides functions for the consistent analysis of
12093 compositional data (e.g. portions of substances) and positive
12094 numbers (e.g. concentrations).")
12095 (license license:gpl2+)))
12096
12097 (define-public r-cobs
12098 (package
12099 (name "r-cobs")
12100 (version "1.3-4")
12101 (source
12102 (origin
12103 (method url-fetch)
12104 (uri (cran-uri "cobs" version))
12105 (sha256
12106 (base32
12107 "0hiw5smk6kgk0gb9840kcqkhkybl7n30s77xhjc395x09izbgix1"))))
12108 (build-system r-build-system)
12109 (propagated-inputs
12110 `(("r-quantreg" ,r-quantreg)
12111 ("r-sparsem" ,r-sparsem)))
12112 (home-page "https://cran.r-project.org/web/packages/cobs")
12113 (synopsis "Constrained B-Splines (sparse matrix based)")
12114 (description
12115 "This package provides qualitatively constrained (regression) smoothing
12116 splines via linear programming and sparse matrices.")
12117 (license license:gpl2+)))
12118
12119 (define-public r-drimpute
12120 (package
12121 (name "r-drimpute")
12122 (version "1.0")
12123 (source
12124 (origin
12125 (method url-fetch)
12126 (uri (cran-uri "DrImpute" version))
12127 (sha256
12128 (base32
12129 "1adzarrwqb282pqgx2yqswp9rpwd1naxsmar54kddr6qyd6b923b"))))
12130 (properties `((upstream-name . "DrImpute")))
12131 (build-system r-build-system)
12132 (propagated-inputs
12133 `(("r-rcpp" ,r-rcpp)
12134 ("r-rcpparmadillo" ,r-rcpparmadillo)))
12135 (home-page "https://github.com/ikwak2/DrImpute")
12136 (synopsis "Imputing dropout events in single-cell RNA-Seq data")
12137 (description
12138 "This is an R package for imputing dropout events. Many statistical
12139 methods in cell type identification, visualization and lineage reconstruction
12140 do not account for dropout events. DrImpute can improve the performance of
12141 such software by imputing dropout events.")
12142 (license license:gpl3)))
12143
12144 (define-public r-gamlss-dist
12145 (package
12146 (name "r-gamlss-dist")
12147 (version "5.1-6")
12148 (source
12149 (origin
12150 (method url-fetch)
12151 (uri (cran-uri "gamlss.dist" version))
12152 (sha256
12153 (base32 "1p904x0b07z4amaqdn2xhs7qzbq8lisr6lqc844s3pkxzmny7w1z"))))
12154 (properties `((upstream-name . "gamlss.dist")))
12155 (build-system r-build-system)
12156 (propagated-inputs `(("r-mass" ,r-mass)))
12157 (home-page "http://www.gamlss.org/")
12158 (synopsis "Distributions for Generalized Additive Models for location scale and shape")
12159 (description
12160 "This package provides a set of distributions which can be used for
12161 modelling the response variables in Generalized Additive Models for Location
12162 Scale and Shape. The distributions can be continuous, discrete or mixed
12163 distributions. Extra distributions can be created, by transforming, any
12164 continuous distribution defined on the real line, to a distribution defined on
12165 ranges 0 to infinity or 0 to 1, by using a @code{log} or a @code{logit}
12166 transformation, respectively.")
12167 ;; Either version of the GPL.
12168 (license (list license:gpl2 license:gpl3))))
12169
12170 ;; This package includes JavaScript files, which are not minified. When
12171 ;; upgrading please check that there are no new minified JavaScript files.
12172 (define-public r-shinyjs
12173 (package
12174 (name "r-shinyjs")
12175 (version "1.1")
12176 (source
12177 (origin
12178 (method url-fetch)
12179 (uri (cran-uri "shinyjs" version))
12180 (sha256
12181 (base32
12182 "14k8y313ppj23m9rhlk8jc94x6sbn3qrsnx6xrijiyv8m8dii1l9"))))
12183 (build-system r-build-system)
12184 (propagated-inputs
12185 `(("r-digest" ,r-digest)
12186 ("r-htmltools" ,r-htmltools)
12187 ("r-jsonlite" ,r-jsonlite)
12188 ("r-shiny" ,r-shiny)))
12189 (home-page "https://deanattali.com/shinyjs")
12190 (synopsis "Improve the user experience of your Shiny apps")
12191 (description
12192 "Perform common useful JavaScript operations in Shiny apps that will
12193 greatly improve your apps without having to know any JavaScript. Examples
12194 include: hiding an element, disabling an input, resetting an input back to its
12195 original value, delaying code execution by a few seconds, and many more useful
12196 functions for both the end user and the developer. Shinyjs can also be used
12197 to easily call your own custom JavaScript functions from R.")
12198 (license license:agpl3+)))
12199
12200 ;; This package includes minified JavaScript files. When upgrading please
12201 ;; check that there are no new minified JavaScript files.
12202 (define-public r-colourpicker
12203 (package
12204 (name "r-colourpicker")
12205 (version "1.0")
12206 (source
12207 (origin
12208 (method url-fetch)
12209 (uri (cran-uri "colourpicker" version))
12210 (sha256
12211 (base32
12212 "0z3v2083g7kwdp21x9s2n1crfh24agpdq3yxkcdzc2awn2pwpnpi"))))
12213 (build-system r-build-system)
12214 (arguments
12215 `(#:modules ((guix build utils)
12216 (guix build r-build-system)
12217 (srfi srfi-1)
12218 (ice-9 popen))
12219 #:phases
12220 (modify-phases %standard-phases
12221 (add-after 'unpack 'process-javascript
12222 (lambda* (#:key inputs #:allow-other-keys)
12223 (with-directory-excursion "inst"
12224 (call-with-values
12225 (lambda ()
12226 (unzip2
12227 `((,(assoc-ref inputs "js-salvattore")
12228 "examples/colourInput/www/salvattore.min.js")
12229 (,(assoc-ref inputs "js-jquery")
12230 "htmlwidgets/lib/jquery/jquery.min.js")
12231 ("www/shared/colourpicker/js/colourpicker.js"
12232 "www/shared/colourpicker/js/colourpicker.min.js"))))
12233 (lambda (sources targets)
12234 (for-each (lambda (source target)
12235 (format #t "Processing ~a --> ~a~%"
12236 source target)
12237 (delete-file target)
12238 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
12239 (call-with-output-file target
12240 (lambda (port)
12241 (dump-port minified port)))))
12242 sources targets))))
12243 #t)))))
12244 (propagated-inputs
12245 `(("r-ggplot2" ,r-ggplot2)
12246 ("r-htmltools" ,r-htmltools)
12247 ("r-htmlwidgets" ,r-htmlwidgets)
12248 ("r-jsonlite" ,r-jsonlite)
12249 ("r-miniui" ,r-miniui)
12250 ("r-shiny" ,r-shiny)
12251 ("r-shinyjs" ,r-shinyjs)))
12252 (native-inputs
12253 `(("uglify-js" ,uglify-js)
12254 ("js-jquery"
12255 ,(origin
12256 (method url-fetch)
12257 (uri "https://code.jquery.com/jquery-3.3.1.js")
12258 (sha256
12259 (base32
12260 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))
12261 ("js-salvattore"
12262 ,(origin
12263 (method url-fetch)
12264 (uri "https://raw.githubusercontent.com/rnmp/salvattore/v1.0.9/dist/salvattore.js")
12265 (sha256
12266 (base32
12267 "0lfrbx7l9w5x89jpc6njmd0pk7h8fpvg537vklai2vf7b1r2nnk5"))))))
12268 (home-page "https://github.com/daattali/colourpicker")
12269 (synopsis "Color picker tool for Shiny and for selecting colors in plots")
12270 (description
12271 "This package provides a color picker that can be used as an input in
12272 Shiny apps or Rmarkdown documents. The color picker supports alpha opacity,
12273 custom color palettes, and many more options. A plot color helper tool is
12274 available as an RStudio Addin, which helps you pick colors to use in your
12275 plots. A more generic color picker RStudio Addin is also provided to let you
12276 select colors to use in your R code.")
12277 (license license:expat)))
12278
12279 (define-public r-ggextra
12280 (package
12281 (name "r-ggextra")
12282 (version "0.9")
12283 (source
12284 (origin
12285 (method url-fetch)
12286 (uri (cran-uri "ggExtra" version))
12287 (sha256
12288 (base32
12289 "18mbi6gblqmrsciad1d2c9ngllk6mayaqj43k40hjq9ydqnvjbgj"))))
12290 (properties `((upstream-name . "ggExtra")))
12291 (build-system r-build-system)
12292 (propagated-inputs
12293 `(("r-colourpicker" ,r-colourpicker)
12294 ("r-ggplot2" ,r-ggplot2)
12295 ("r-gtable" ,r-gtable)
12296 ("r-miniui" ,r-miniui)
12297 ("r-r6" ,r-r6)
12298 ("r-scales" ,r-scales)
12299 ("r-shiny" ,r-shiny)
12300 ("r-shinyjs" ,r-shinyjs)))
12301 (home-page "https://github.com/daattali/ggExtra")
12302 (synopsis "Marginal histograms for ggplot2 and other enhancements")
12303 (description
12304 "This package is a collection of functions and layers to enhance ggplot2.
12305 The flagship function is @code{ggMarginal()}, which can be used to add
12306 marginal histograms/boxplots/density plots to ggplot2 scatterplots.")
12307 (license license:expat)))
12308
12309 (define-public r-minpack-lm
12310 (package
12311 (name "r-minpack-lm")
12312 (version "1.2-1")
12313 (source
12314 (origin
12315 (method url-fetch)
12316 (uri (cran-uri "minpack.lm" version))
12317 (sha256
12318 (base32
12319 "18ym2pdql5vzngc7q5gn66d153hrfrnd8ilv8yh6vd7j7sx7vjql"))))
12320 (properties `((upstream-name . "minpack.lm")))
12321 (build-system r-build-system)
12322 (native-inputs `(("gfortran" ,gfortran)))
12323 (home-page "https://cran.r-project.org/web/packages/minpack.lm")
12324 (synopsis "Levenberg-Marquardt Nonlinear Least-Squares algorithm")
12325 (description
12326 "The @code{nls.lm} function provides an R interface to @code{lmder} and
12327 @code{lmdif} from the MINPACK library, for solving nonlinear least-squares
12328 problems by a modification of the Levenberg-Marquardt algorithm, with support
12329 for lower and upper parameter bounds. The implementation can be used via
12330 @code{nls}-like calls using the @code{nlsLM} function.")
12331 (license license:gpl3)))
12332
12333 (define-public r-moments
12334 (package
12335 (name "r-moments")
12336 (version "0.14")
12337 (source
12338 (origin
12339 (method url-fetch)
12340 (uri (cran-uri "moments" version))
12341 (sha256
12342 (base32
12343 "0f9y58w1hxcz4bqivirx25ywlmc80gbi6dfx5cnhkpdg1pk82fra"))))
12344 (build-system r-build-system)
12345 (home-page "https://cran.r-project.org/web/packages/moments")
12346 (synopsis "Moments, cumulants, skewness, kurtosis and related tests")
12347 (description
12348 "This package provides functions to calculate: moments, Pearson's
12349 kurtosis, Geary's kurtosis and skewness; it also includes tests related to
12350 them (Anscombe-Glynn, D'Agostino, Bonett-Seier).")
12351 (license license:gpl2+)))
12352
12353 (define-public r-msir
12354 (package
12355 (name "r-msir")
12356 (version "1.3.2")
12357 (source
12358 (origin
12359 (method url-fetch)
12360 (uri (cran-uri "msir" version))
12361 (sha256
12362 (base32
12363 "0pvc3q162vqq3k39nni732x05zzfz4y9y2zf56d83185ypszv9kb"))))
12364 (build-system r-build-system)
12365 (propagated-inputs
12366 `(("r-mclust" ,r-mclust)))
12367 (home-page "https://cran.r-project.org/web/packages/msir")
12368 (synopsis "Model-based sliced inverse regression")
12369 (description
12370 "This is an R package for dimension reduction based on finite Gaussian
12371 mixture modeling of inverse regression.")
12372 (license license:gpl2+)))
12373
12374 (define-public r-pbivnorm
12375 (package
12376 (name "r-pbivnorm")
12377 (version "0.6.0")
12378 (source
12379 (origin
12380 (method url-fetch)
12381 (uri (cran-uri "pbivnorm" version))
12382 (sha256
12383 (base32
12384 "05jzrjqxzbcf6z245hlk7sjxiszv9paadaaimvcx5y5qgi87vhq7"))))
12385 (build-system r-build-system)
12386 (native-inputs `(("gfortran" ,gfortran)))
12387 (home-page "https://github.com/brentonk/pbivnorm")
12388 (synopsis "Vectorized bivariate normal CDF")
12389 (description
12390 "This package provides a vectorized R function for calculating
12391 probabilities from a standard bivariate normal CDF.")
12392 (license license:gpl2+)))
12393
12394 (define-public r-lavaan
12395 (package
12396 (name "r-lavaan")
12397 (version "0.6-5")
12398 (source
12399 (origin
12400 (method url-fetch)
12401 (uri (cran-uri "lavaan" version))
12402 (sha256
12403 (base32
12404 "04kvsh2m6mnzlhv83phr3hjzy4sx1ck6f7dgsm7xb8cs84dnxszy"))))
12405 (build-system r-build-system)
12406 (propagated-inputs
12407 `(("r-mass" ,r-mass)
12408 ("r-mnormt" ,r-mnormt)
12409 ("r-numderiv" ,r-numderiv)
12410 ("r-pbivnorm" ,r-pbivnorm)))
12411 (home-page "http://lavaan.ugent.be")
12412 (synopsis "Latent variable analysis")
12413 (description
12414 "This package provides tools to fit a variety of latent variable models,
12415 including confirmatory factor analysis, structural equation modeling and
12416 latent growth curve models.")
12417 (license license:gpl2+)))
12418
12419 (define-public r-nonnest2
12420 (package
12421 (name "r-nonnest2")
12422 (version "0.5-3")
12423 (source
12424 (origin
12425 (method url-fetch)
12426 (uri (cran-uri "nonnest2" version))
12427 (sha256
12428 (base32
12429 "1mnv4pa583ir9s03h952hk40lwdywr3g88g76sk1zsa54rcmn82c"))))
12430 (build-system r-build-system)
12431 (propagated-inputs
12432 `(("r-compquadform" ,r-compquadform)
12433 ("r-lavaan" ,r-lavaan)
12434 ("r-mvtnorm" ,r-mvtnorm)
12435 ("r-sandwich" ,r-sandwich)))
12436 (native-inputs
12437 `(("r-knitr" ,r-knitr)))
12438 (home-page "https://cran.r-project.org/web/packages/nonnest2/")
12439 (synopsis "Tests of non-nested models")
12440 (description
12441 "This package allows for testing of non-nested models. It includes tests
12442 of model distinguishability and of model fit that can be applied to both
12443 nested and non-nested models. The package also includes functionality to
12444 obtain confidence intervals associated with AIC and BIC.")
12445 ;; Either version of the GPL.
12446 (license (list license:gpl2 license:gpl3))))
12447
12448 (define-public r-penalized
12449 (package
12450 (name "r-penalized")
12451 (version "0.9-51")
12452 (source
12453 (origin
12454 (method url-fetch)
12455 (uri (cran-uri "penalized" version))
12456 (sha256
12457 (base32
12458 "1zcrwa93mc27qj3g4ayc2k895r6g8q0g6qb2azmvj7wqk750va7a"))))
12459 (build-system r-build-system)
12460 (propagated-inputs
12461 `(("r-rcpp" ,r-rcpp)
12462 ("r-rcpparmadillo" ,r-rcpparmadillo)
12463 ("r-survival" ,r-survival)))
12464 (home-page "https://cran.r-project.org/web/packages/penalized/")
12465 (synopsis "Penalized estimation in GLMs and in the Cox model")
12466 (description
12467 "This package provides tools for fitting possibly high dimensional
12468 penalized regression models. The penalty structure can be any combination of
12469 an L1 penalty (lasso and fused lasso), an L2 penalty (ridge) and a positivity
12470 constraint on the regression coefficients. The supported regression models
12471 are linear, logistic and Poisson regression and the Cox Proportional Hazards
12472 model. Cross-validation routines allow optimization of the tuning
12473 parameters.")
12474 (license license:gpl2+)))
12475
12476 (define-public r-zim
12477 (package
12478 (name "r-zim")
12479 (version "1.1.0")
12480 (source
12481 (origin
12482 (method url-fetch)
12483 (uri (cran-uri "ZIM" version))
12484 (sha256
12485 (base32
12486 "0scyfjn4ilsvha3x41c3b8bcfi31hlhwm77wn2a8hj5dsvnnmzig"))))
12487 (properties `((upstream-name . "ZIM")))
12488 (build-system r-build-system)
12489 (propagated-inputs `(("r-mass" ,r-mass)))
12490 (home-page "https://github.com/biostatstudio/ZIM")
12491 (synopsis "Zero-inflated models (ZIM) for count time series with excess zeros")
12492 (description
12493 "Analyze count time series with excess zeros. Two types of statistical
12494 models are supported: Markov regression and state-space models. They are also
12495 known as observation-driven and parameter-driven models respectively in the
12496 time series literature. The functions used for Markov regression or
12497 observation-driven models can also be used to fit ordinary regression models
12498 with independent data under the zero-inflated Poisson (ZIP) or zero-inflated
12499 negative binomial (ZINB) assumption. The package also contains miscellaneous
12500 functions to compute density, distribution, quantile, and generate random
12501 numbers from ZIP and ZINB distributions.")
12502 (license license:gpl3)))
12503
12504 (define-public r-nor1mix
12505 (package
12506 (name "r-nor1mix")
12507 (version "1.3-0")
12508 (source
12509 (origin
12510 (method url-fetch)
12511 (uri (cran-uri "nor1mix" version))
12512 (sha256
12513 (base32
12514 "1817wcvlmxs70vs4db0jkxd7i037744zz8ay3c2a9949z29fxr4w"))))
12515 (build-system r-build-system)
12516 (home-page "https://cran.r-project.org/web/packages/nor1mix/")
12517 (synopsis "Normal (1-d) mixture models")
12518 (description
12519 "This package provides S3 classes and methods for one-dimensional normal
12520 mixture models, for, e.g., density estimation or clustering algorithms
12521 research and teaching; it provides the widely used Marron-Wand densities. It
12522 also provides tools for efficient random number generation and graphics.")
12523 (license license:gpl2+)))
12524
12525 (define-public r-beanplot
12526 (package
12527 (name "r-beanplot")
12528 (version "1.2")
12529 (source
12530 (origin
12531 (method url-fetch)
12532 (uri (cran-uri "beanplot" version))
12533 (sha256
12534 (base32
12535 "0wmkr704fl8kdxkjwmaxw2a2h5dwzfgsgpncnk2p2wd4768jknj9"))))
12536 (build-system r-build-system)
12537 (home-page "https://cran.r-project.org/web/packages/beanplot/")
12538 (synopsis "Visualization via beanplots")
12539 (description
12540 "This package provides beanplots, an alternative to
12541 boxplot/stripchart/violin plots. It can be used to plot univariate comparison
12542 graphs.")
12543 (license license:gpl2)))
12544
12545 (define-public r-pbdzmq
12546 (package
12547 (name "r-pbdzmq")
12548 (version "0.3-3")
12549 (source
12550 (origin
12551 (method url-fetch)
12552 (uri (cran-uri "pbdZMQ" version))
12553 (sha256
12554 (base32
12555 "1jkfcfhspvqra7vbllrvkz3jx8j7d0ang6zzcdjgpb7200sc29mf"))))
12556 (properties `((upstream-name . "pbdZMQ")))
12557 (build-system r-build-system)
12558 (inputs
12559 `(("zeromq" ,zeromq)
12560 ("zlib" ,zlib)))
12561 (native-inputs
12562 `(("pkg-config" ,pkg-config)))
12563 (home-page "https://pbdr.org/")
12564 (synopsis "R interface to ZeroMQ")
12565 (description
12566 "ZeroMQ is a well-known library for high-performance asynchronous
12567 messaging in scalable, distributed applications. This package provides high
12568 level R wrapper functions to easily utilize ZeroMQ. The main focus is on
12569 interactive client/server programming frameworks. A few wrapper functions
12570 compatible with @code{rzmq} are also provided.")
12571 (license license:gpl3)))
12572
12573 (define-public r-repr
12574 (package
12575 (name "r-repr")
12576 (version "1.1.0")
12577 (source
12578 (origin
12579 (method url-fetch)
12580 (uri (cran-uri "repr" version))
12581 (sha256
12582 (base32
12583 "15jz780w4nd9qjd1g3gq8f5lkh60p2v3ig3hm5kl1rg3z4cf0gvl"))))
12584 (build-system r-build-system)
12585 (propagated-inputs
12586 `(("r-base64enc" ,r-base64enc)
12587 ("r-htmltools" ,r-htmltools)
12588 ("r-jsonlite" ,r-jsonlite)
12589 ("r-pillar" ,r-pillar)))
12590 (home-page "https://cran.r-project.org/web/packages/repr/")
12591 (synopsis "Serializable representations")
12592 (description
12593 "This package provides string and binary representations of objects for
12594 several formats and MIME types.")
12595 (license license:gpl3)))
12596
12597 (define-public r-irdisplay
12598 (package
12599 (name "r-irdisplay")
12600 (version "0.7.0")
12601 (source
12602 (origin
12603 (method url-fetch)
12604 (uri (cran-uri "IRdisplay" version))
12605 (sha256
12606 (base32
12607 "12chk53nf4zckgc4yl7gbvd7m5dvli52inp5b3f0zvcjvfncksli"))))
12608 (properties `((upstream-name . "IRdisplay")))
12609 (build-system r-build-system)
12610 (propagated-inputs
12611 `(("r-repr" ,r-repr)))
12612 (home-page "https://cran.r-project.org/web/packages/IRdisplay/")
12613 (synopsis "Jupyter display machinery")
12614 (description
12615 "This package provides an interface to the rich display capabilities of
12616 Jupyter front-ends (e.g. Jupyter Notebook). It is designed to be used from a
12617 running IRkernel session.")
12618 (license license:expat)))
12619
12620 (define-public r-irkernel
12621 (package
12622 (name "r-irkernel")
12623 (version "1.1")
12624 (source
12625 (origin
12626 (method url-fetch)
12627 (uri (cran-uri "IRkernel" version))
12628 (sha256
12629 (base32
12630 "1viqxs91dys1z4cf7gb59rmqvzb8lc7jdp4azrpmhgwa8qf46s94"))))
12631 (properties `((upstream-name . "IRkernel")))
12632 (build-system r-build-system)
12633 (arguments
12634 `(#:phases
12635 (modify-phases %standard-phases
12636 (add-after 'install 'install-kernelspec
12637 (lambda* (#:key outputs #:allow-other-keys)
12638 (let ((out (assoc-ref outputs "out")))
12639 (setenv "HOME" "/tmp")
12640 (invoke "jupyter" "kernelspec" "install"
12641 "--name" "ir"
12642 "--prefix" out
12643 (string-append out "/site-library/IRkernel/kernelspec"))
12644 ;; Record the absolute file name of the 'R' executable in
12645 ;; 'kernel.json'.
12646 (substitute* (string-append out "/share/jupyter"
12647 "/kernels/ir/kernel.json")
12648 (("\\[\"R\",")
12649 (string-append "[\"" (which "R") "\",")))
12650 #t))))))
12651 (inputs
12652 `(("jupyter" ,jupyter)))
12653 (propagated-inputs
12654 `(("r-crayon" ,r-crayon)
12655 ("r-digest" ,r-digest)
12656 ("r-evaluate" ,r-evaluate)
12657 ("r-irdisplay" ,r-irdisplay)
12658 ("r-jsonlite" ,r-jsonlite)
12659 ;; sets R_LIBS_SITE, so R can actually find this package (IRkernel)
12660 ("r-minimal" ,r-minimal)
12661 ("r-pbdzmq" ,r-pbdzmq)
12662 ("r-repr" ,r-repr)
12663 ("r-uuid" ,r-uuid)))
12664 (home-page "https://cran.r-project.org/web/packages/IRkernel/")
12665 (synopsis "Native R kernel for Jupyter")
12666 (description
12667 "The R kernel for the Jupyter environment executes R code which the
12668 front-end (Jupyter Notebook or other front-ends) submits to the kernel via the
12669 network.")
12670 (license license:expat)))
12671
12672 (define-public r-gmodels
12673 (package
12674 (name "r-gmodels")
12675 (version "2.18.1")
12676 (source
12677 (origin
12678 (method url-fetch)
12679 (uri (cran-uri "gmodels" version))
12680 (sha256
12681 (base32
12682 "0s8kd8krqk4kwv2zqxpsfy3w8qdwf5naf4b5l383vidq9sil0qb2"))))
12683 (build-system r-build-system)
12684 (propagated-inputs
12685 `(("r-gdata" ,r-gdata)
12686 ("r-mass" ,r-mass)))
12687 (home-page "https://cran.r-project.org/web/packages/gmodels/")
12688 (synopsis "Various R programming tools for model fitting")
12689 (description
12690 "This package provides various R programming tools for model fitting.")
12691 (license license:gpl2)))
12692
12693 (define-public r-apcluster
12694 (package
12695 (name "r-apcluster")
12696 (version "1.4.8")
12697 (source
12698 (origin
12699 (method url-fetch)
12700 (uri (cran-uri "apcluster" version))
12701 (sha256
12702 (base32
12703 "0lzf2jqm56i74wif6x5sw3j0w2qc4sni49zq2fgbl89b7lwkvchj"))))
12704 (build-system r-build-system)
12705 (propagated-inputs
12706 `(("r-matrix" ,r-matrix)
12707 ("r-rcpp" ,r-rcpp)))
12708 (home-page "https://cran.r-project.org/web/packages/apcluster/")
12709 (synopsis "Affinity propagation clustering")
12710 (description
12711 "This package implements affinity propagation clustering introduced by
12712 Frey and Dueck (2007). The package further provides leveraged affinity
12713 propagation and an algorithm for exemplar-based agglomerative clustering that
12714 can also be used to join clusters obtained from affinity propagation. Various
12715 plotting functions are available for analyzing clustering results.")
12716 (license license:gpl2+)))
12717
12718 (define-public r-valr
12719 (package
12720 (name "r-valr")
12721 (version "0.5.0")
12722 (source
12723 (origin
12724 (method url-fetch)
12725 (uri (cran-uri "valr" version))
12726 (sha256
12727 (base32
12728 "14jhrwkiwmha3vlmm7b50n2xxyizj6ddmy89gb20mpzq7qhz1ika"))))
12729 (build-system r-build-system)
12730 (propagated-inputs
12731 `(("r-broom" ,r-broom)
12732 ("r-dplyr" ,r-dplyr)
12733 ("r-ggplot2" ,r-ggplot2)
12734 ("r-rcpp" ,r-rcpp)
12735 ("r-readr" ,r-readr)
12736 ("r-rlang" ,r-rlang)
12737 ("r-stringr" ,r-stringr)
12738 ("r-tibble" ,r-tibble)))
12739 (home-page "http://github.com/rnabioco/valr")
12740 (synopsis "Genome interval arithmetic in R")
12741 (description
12742 "This package enables you to read and manipulate genome intervals and
12743 signals. It provides functionality similar to command-line tool suites within
12744 R, enabling interactive analysis and visualization of genome-scale data.")
12745 (license license:expat)))
12746
12747 (define-public r-rematch2
12748 (package
12749 (name "r-rematch2")
12750 (version "2.1.1")
12751 (source
12752 (origin
12753 (method url-fetch)
12754 (uri (cran-uri "rematch2" version))
12755 (sha256
12756 (base32
12757 "13siaa8s2ji9q6hykhb2r34ag76335ypmbqr90xaqilbir0klhnh"))))
12758 (build-system r-build-system)
12759 (propagated-inputs
12760 `(("r-tibble" ,r-tibble)))
12761 (home-page "https://github.com/r-lib/rematch2")
12762 (synopsis "Tidy output from regular expression matching")
12763 (description
12764 "This package provides wrappers on @code{regexpr} and @code{gregexpr} to
12765 return the match results in tidy data frames.")
12766 (license license:expat)))
12767
12768 (define-public r-picante
12769 (package
12770 (name "r-picante")
12771 (version "1.8.1")
12772 (source
12773 (origin
12774 (method url-fetch)
12775 (uri (cran-uri "picante" version))
12776 (sha256
12777 (base32
12778 "1b16zm8zjjsl181b8krkdcrbcw347kf772c4w7y5332qmfi7jhz0"))))
12779 (build-system r-build-system)
12780 (propagated-inputs
12781 `(("r-ape" ,r-ape)
12782 ("r-nlme" ,r-nlme)
12783 ("r-vegan" ,r-vegan)))
12784 (home-page "https://cran.r-project.org/web/packages/picante/")
12785 (synopsis "Integrating phylogenies and ecology")
12786 (description
12787 "This package provides functions for phylocom integration, community
12788 analyses, null-models, traits and evolution. It implements numerous
12789 ecophylogenetic approaches including measures of community phylogenetic and
12790 trait diversity, phylogenetic signal, estimation of trait values for
12791 unobserved taxa, null models for community and phylogeny randomizations, and
12792 utility functions for data input/output and phylogeny plotting. A full
12793 description of package functionality and methods are provided by Kembel et
12794 al. (2010).")
12795 (license license:gpl2)))
12796
12797 (define-public r-reinforcelearn
12798 (package
12799 (name "r-reinforcelearn")
12800 (version "0.2.1")
12801 (source
12802 (origin
12803 (method url-fetch)
12804 (uri (cran-uri "reinforcelearn" version))
12805 (sha256
12806 (base32
12807 "176z2q69p24i29a8sh19xxn2zl3h1z2ixdssr5i6m4yvkvdrvv3b"))))
12808 (build-system r-build-system)
12809 (propagated-inputs
12810 `(("r-checkmate" ,r-checkmate)
12811 ("r-nnet" ,r-nnet)
12812 ("r-purrr" ,r-purrr)
12813 ("r-r6" ,r-r6)))
12814 (home-page "https://markusdumke.github.io/reinforcelearn")
12815 (synopsis "Reinforcement learning")
12816 (description
12817 "This package implements reinforcement learning environments and
12818 algorithms as described in Sutton & Barto (1998). The Q-Learning algorithm
12819 can be used with function approximation, eligibility traces (Singh & Sutton,
12820 1996) and experience replay (Mnih et al., 2013).")
12821 (license license:expat)))
12822
12823 (define-public r-lemon
12824 (package
12825 (name "r-lemon")
12826 (version "0.4.3")
12827 (source
12828 (origin
12829 (method url-fetch)
12830 (uri (cran-uri "lemon" version))
12831 (sha256
12832 (base32
12833 "0wsn5bfg10wq4dnrgpyraz2bzx9p19c7hf1pwj3h4zmpqfgsdbpw"))))
12834 (build-system r-build-system)
12835 (propagated-inputs
12836 `(("r-ggplot2" ,r-ggplot2)
12837 ("r-gridextra" ,r-gridextra)
12838 ("r-gtable" ,r-gtable)
12839 ("r-knitr" ,r-knitr)
12840 ("r-lattice" ,r-lattice)
12841 ("r-plyr" ,r-plyr)
12842 ("r-scales" ,r-scales)))
12843 (home-page "https://github.com/stefanedwards/lemon")
12844 (synopsis "Freshen up your ggplot2 plots")
12845 (description
12846 "This package provides functions for working with legends and axis lines
12847 of ggplot2, facets that repeat axis lines on all panels, and some knitr
12848 extensions.")
12849 (license license:gpl3)))
12850
12851 (define-public r-wgaim
12852 (package
12853 (name "r-wgaim")
12854 (version "2.0-1")
12855 (source
12856 (origin
12857 (method url-fetch)
12858 (uri (cran-uri "wgaim" version))
12859 (sha256
12860 (base32 "1qiyfkpsbzjr9xsq5kqq6rlqpndngkn2irdfh3gyi45h6hn118j4"))))
12861 (build-system r-build-system)
12862 (propagated-inputs
12863 `(("r-ggplot2" ,r-ggplot2)
12864 ("r-qtl" ,r-qtl)))
12865 (home-page "https://cran.r-project.org/web/packages/wgaim")
12866 (synopsis "Whole genome average interval mapping for QTL detection")
12867 (description
12868 "This package integrates sophisticated mixed modelling methods with a
12869 whole genome approach to detecting significant QTL in linkage maps.")
12870 (license license:gpl2+)))
12871
12872 (define-public r-bedr
12873 (package
12874 (name "r-bedr")
12875 (version "1.0.7")
12876 (source
12877 (origin
12878 (method url-fetch)
12879 (uri (cran-uri "bedr" version))
12880 (sha256
12881 (base32
12882 "0zpqvyjgwyqawxm8qrhcv8zq2b3yxgcqkkc87br29yrl7sjb8h6j"))))
12883 (build-system r-build-system)
12884 (propagated-inputs
12885 `(("r-data-table" ,r-data-table)
12886 ("r-r-utils" ,r-r-utils)
12887 ("r-testthat" ,r-testthat)
12888 ("r-venndiagram" ,r-venndiagram)
12889 ("r-yaml" ,r-yaml)
12890 ("bedops" ,bedops)
12891 ("bedtools" ,bedtools)
12892 ("htslib" ,htslib))) ; for tabix
12893 (native-inputs
12894 `(("r-knitr" ,r-knitr))) ; for vignettes
12895 (home-page "https://cran.r-project.org/web/packages/bedr")
12896 (synopsis "Genomic region processing")
12897 (description
12898 "This package is for genomic regions processing using command line tools
12899 such as BEDTools, BEDOPS and Tabix. These tools offer scalable and efficient
12900 utilities to perform genome arithmetic e.g indexing, formatting and merging.
12901 The bedr package's API enhances access to these tools as well as offers
12902 additional utilities for genomic regions processing.")
12903 (license license:gpl2)))
12904
12905 (define-public r-sets
12906 (package
12907 (name "r-sets")
12908 (version "1.0-18")
12909 (source
12910 (origin
12911 (method url-fetch)
12912 (uri (cran-uri "sets" version))
12913 (sha256
12914 (base32
12915 "16v7650p47khqrbbw0z98llmwmmhswqmhri0n7nrfhdqwmby1lbl"))))
12916 (properties `((upstream-name . "sets")))
12917 (build-system r-build-system)
12918 (home-page "https://cran.r-project.org/web/packages/sets")
12919 (synopsis "Sets, generalized sets, customizable sets and intervals")
12920 (description
12921 "This package provides data structures and basic operations for ordinary
12922 sets, generalizations such as fuzzy sets, multisets, and fuzzy multisets,
12923 customizable sets, and intervals.")
12924 (license license:gpl2)))
12925
12926 (define-public r-partitions
12927 (package
12928 (name "r-partitions")
12929 (version "1.9-22")
12930 (source
12931 (origin
12932 (method url-fetch)
12933 (uri (cran-uri "partitions" version))
12934 (sha256
12935 (base32
12936 "1qqy4df28wy4q0g572azrj171jlhvrnzbh7x0wr2g7v6gr20y0ns"))))
12937 (build-system r-build-system)
12938 (propagated-inputs
12939 `(("r-gmp" ,r-gmp)
12940 ("r-polynom" ,r-polynom)
12941 ("r-sets" ,r-sets)))
12942 (home-page "https://cran.r-project.org/web/packages/partitions")
12943 (synopsis "Additive partitions of integers")
12944 (description
12945 "This package provides tools to enumerates the partitions, unequal
12946 partitions, and restricted partitions of an integer; the three corresponding
12947 partition functions are also given.")
12948 ;; Any version of the GPL
12949 (license license:gpl2+)))
12950
12951 (define-public r-brobdingnag
12952 (package
12953 (name "r-brobdingnag")
12954 (version "1.2-6")
12955 (source
12956 (origin
12957 (method url-fetch)
12958 (uri (cran-uri "Brobdingnag" version))
12959 (sha256
12960 (base32
12961 "1m3ajvcksqfck5l5hj5xiflj4ry6d896ybv4f0xxks8chgnwmv0r"))))
12962 (properties `((upstream-name . "Brobdingnag")))
12963 (build-system r-build-system)
12964 (home-page "https://github.com/RobinHankin/Brobdingnag.git")
12965 (synopsis "Very large numbers in R")
12966 (description
12967 "This package handles very large numbers in R. Real numbers are held
12968 using their natural logarithms, plus a logical flag indicating sign. The
12969 package includes a vignette that gives a step-by-step introduction to using S4
12970 methods.")
12971 ;; Any version of the GPL
12972 (license license:gpl2+)))
12973
12974 (define-public r-untb
12975 (package
12976 (name "r-untb")
12977 (version "1.7-4")
12978 (source
12979 (origin
12980 (method url-fetch)
12981 (uri (cran-uri "untb" version))
12982 (sha256
12983 (base32
12984 "1i7m4vfslsix98dwx4jlrsldm7fhhfp25gr7aapcxqxms7ryaby6"))))
12985 (build-system r-build-system)
12986 (propagated-inputs
12987 `(("r-brobdingnag" ,r-brobdingnag)
12988 ("r-partitions" ,r-partitions)
12989 ("r-polynom" ,r-polynom)))
12990 (home-page "https://github.com/RobinHankin/untb.git")
12991 (synopsis "Ecological drift under the UNTB")
12992 (description
12993 "This package provides numerical simulations, and visualizations, of
12994 Hubbell's @dfn{Unified Neutral Theory of Biodiversity} (UNTB).")
12995 (license license:gpl2+)))
12996
12997 (define-public r-stepwise
12998 (package
12999 (name "r-stepwise")
13000 (version "0.3")
13001 (source
13002 (origin
13003 (method url-fetch)
13004 (uri (cran-uri "stepwise" version))
13005 (sha256
13006 (base32
13007 "1lbx1bxwkf9dw6q46w40pp7h5nkxgghmx8rkpaymm6iybc7gyir2"))))
13008 (build-system r-build-system)
13009 (home-page "https://stat.sfu.ca/statgen/research/stepwise.html")
13010 (synopsis "Stepwise detection of recombination breakpoints")
13011 (description
13012 "This package provides a stepwise approach to identifying recombination
13013 breakpoints in a genomic sequence alignment.")
13014 (license license:gpl2+)))
13015
13016 (define-public r-snpmaxsel
13017 (package
13018 (name "r-snpmaxsel")
13019 (version "1.0-3")
13020 (source
13021 (origin
13022 (method url-fetch)
13023 (uri (cran-uri "SNPmaxsel" version))
13024 (sha256
13025 (base32
13026 "0pjvixwqzjd3jwccc8yqq9c76afvbmfq0z1w0cwyj8bblrjpx13z"))))
13027 (properties `((upstream-name . "SNPmaxsel")))
13028 (build-system r-build-system)
13029 (propagated-inputs
13030 `(("r-combinat" ,r-combinat)
13031 ("r-mvtnorm" ,r-mvtnorm)))
13032 (home-page "https://cran.r-project.org/web/packages/SNPmaxsel/index.html")
13033 (synopsis "Maximally selected statistics for SNP data")
13034 (description
13035 "This package implements asymptotic methods related to maximally selected
13036 statistics, with applications to @dfn{single-nucleotide polymorphism} (SNP)
13037 data.")
13038 (license license:gpl2+)))
13039
13040 (define-public r-acsnminer
13041 (package
13042 (name "r-acsnminer")
13043 (version "0.16.8.25")
13044 (source (origin
13045 (method url-fetch)
13046 (uri (cran-uri "ACSNMineR" version))
13047 (sha256
13048 (base32
13049 "0gh604s8qall6zfjlwcg2ilxjvz08dplf9k5g47idhv43scm748l"))))
13050 (properties `((upstream-name . "ACSNMineR")))
13051 (build-system r-build-system)
13052 (propagated-inputs
13053 `(("r-ggplot2" ,r-ggplot2)
13054 ("r-gridextra" ,r-gridextra)))
13055 (home-page "https://cran.r-project.org/web/packages/ACSNMineR")
13056 (synopsis "Gene enrichment analysis")
13057 (description
13058 "This package provides tools to compute and represent gene set enrichment
13059 or depletion from your data based on pre-saved maps from the @dfn{Atlas of
13060 Cancer Signalling Networks} (ACSN) or user imported maps. The gene set
13061 enrichment can be run with hypergeometric test or Fisher exact test, and can
13062 use multiple corrections. Visualization of data can be done either by
13063 barplots or heatmaps.")
13064 (license license:gpl2+)))
13065
13066 (define-public r-seqinr
13067 (package
13068 (name "r-seqinr")
13069 (version "3.6-1")
13070 (source
13071 (origin
13072 (method url-fetch)
13073 (uri (cran-uri "seqinr" version))
13074 (sha256
13075 (base32
13076 "0j30za6kji6y3v09cvcydiacnp65pv6ig8aw7cydl47l5s9chky4"))))
13077 (build-system r-build-system)
13078 (propagated-inputs
13079 `(("r-ade4" ,r-ade4)
13080 ("r-segmented" ,r-segmented)))
13081 (inputs
13082 `(("zlib" ,zlib)))
13083 (home-page "http://seqinr.r-forge.r-project.org/")
13084 (synopsis "Biological sequences retrieval and analysis")
13085 (description
13086 "This package provides tools for exploratory data analysis and data
13087 visualization of biological sequence (DNA and protein) data. It also includes
13088 utilities for sequence data management under the ACNUC system.")
13089 (license license:gpl2+)))
13090
13091 (define-public r-units
13092 (package
13093 (name "r-units")
13094 (version "0.6-6")
13095 (source
13096 (origin
13097 (method url-fetch)
13098 (uri (cran-uri "units" version))
13099 (sha256
13100 (base32
13101 "11x6xz1fbml28xmrhgn4sii9vfyj3gyfc1dfxahdg9cszdmcgdnh"))))
13102 (build-system r-build-system)
13103 (inputs
13104 `(("udunits" ,udunits)))
13105 (propagated-inputs
13106 `(("r-rcpp" ,r-rcpp)))
13107 (native-inputs
13108 `(("r-knitr" ,r-knitr)))
13109 (home-page "https://github.com/r-quantities/units/")
13110 (synopsis "Measurement Units for R Vectors")
13111 (description
13112 "This package provides support for measurement units in R vectors,
13113 matrices and arrays: automatic propagation, conversion, derivation and
13114 simplification of units; raising errors in case of unit incompatibility. It
13115 is compatible with the @code{POSIXct}, @code{Date} and @code{difftime}
13116 classes.")
13117 (license license:gpl2)))
13118
13119 (define-public r-classint
13120 (package
13121 (name "r-classint")
13122 (version "0.4-2")
13123 (source
13124 (origin
13125 (method url-fetch)
13126 (uri (cran-uri "classInt" version))
13127 (sha256
13128 (base32
13129 "0w980hrw8sgfdfyd5dsimalq7gwhvqm7507abk7k363pvgks23dv"))))
13130 (properties `((upstream-name . "classInt")))
13131 (build-system r-build-system)
13132 (propagated-inputs
13133 `(("r-class" ,r-class)
13134 ("r-e1071" ,r-e1071)
13135 ("r-kernsmooth" ,r-kernsmooth)))
13136 (native-inputs `(("gfortran" ,gfortran)))
13137 (home-page "https://github.com/r-spatial/classInt/")
13138 (synopsis "Choose univariate class intervals")
13139 (description
13140 "This package provides selected commonly used methods for choosing
13141 univariate class intervals for mapping or other graphics purposes.")
13142 (license license:gpl2+)))
13143
13144 (define-public r-spdata
13145 (package
13146 (name "r-spdata")
13147 (version "0.3.3")
13148 (source
13149 (origin
13150 (method url-fetch)
13151 (uri (cran-uri "spData" version))
13152 (sha256
13153 (base32
13154 "1v66qkvsx77hvv5c78v760yp0hknf7xzcjir2ri3ha456mz79yl5"))))
13155 (properties `((upstream-name . "spData")))
13156 (build-system r-build-system)
13157 (propagated-inputs
13158 `(("r-raster" ,r-raster)
13159 ("r-sp" ,r-sp)))
13160 (home-page "https://github.com/Nowosad/spData")
13161 (synopsis "Datasets for spatial analysis")
13162 (description
13163 "This a package containing diverse spatial datasets for demonstrating,
13164 benchmarking and teaching spatial data analysis. It includes R data of class
13165 @code{sf}, @code{Spatial}, and @code{nb}. It also contains data stored in a
13166 range of file formats including GeoJSON, ESRI Shapefile and GeoPackage. Some
13167 of the datasets are designed to illustrate specific analysis techniques.
13168 @code{cycle_hire()} and @code{cycle_hire_osm()}, for example, are designed to
13169 illustrate point pattern analysis techniques.")
13170 (license license:cc0)))
13171
13172 (define-public r-learnbayes
13173 (package
13174 (name "r-learnbayes")
13175 (version "2.15.1")
13176 (source
13177 (origin
13178 (method url-fetch)
13179 (uri (cran-uri "LearnBayes" version))
13180 (sha256
13181 (base32
13182 "0ch54v2zz2yyyk0lvn5rfikdmyz1qh9j1wk3585wl8v58mc0h4cv"))))
13183 (properties `((upstream-name . "LearnBayes")))
13184 (build-system r-build-system)
13185 (home-page "https://cran.r-project.org/web/packages/LearnBayes")
13186 (synopsis "Functions for learning Bayesian inference")
13187 (description
13188 "This package provides a collection of functions helpful in learning the
13189 basic tenets of Bayesian statistical inference. It contains functions for
13190 summarizing basic one and two parameter posterior distributions and predictive
13191 distributions. It contains MCMC algorithms for summarizing posterior
13192 distributions defined by the user. It also contains functions for regression
13193 models, hierarchical models, Bayesian tests, and illustrations of Gibbs
13194 sampling.")
13195 (license license:gpl2+)))
13196
13197 (define-public r-deldir
13198 (package
13199 (name "r-deldir")
13200 (version "0.1-25")
13201 (source
13202 (origin
13203 (method url-fetch)
13204 (uri (cran-uri "deldir" version))
13205 (sha256
13206 (base32
13207 "0kdglv8rc1pb4ilcid4xc9wpv5kkj2y6x6wg7919k3hya7mz58ph"))))
13208 (build-system r-build-system)
13209 (native-inputs `(("gfortran" ,gfortran)))
13210 (home-page "https://cran.r-project.org/web/packages/deldir")
13211 (synopsis "Delaunay triangulation and Dirichlet (Voronoi) tessellation")
13212 (description
13213 "This package provides tools for calculating the Delaunay triangulation
13214 and the Dirichlet or Voronoi tessellation (with respect to the entire plane)
13215 of a planar point set. It plots triangulations and tessellations in various
13216 ways, clips tessellations to sub-windows, calculates perimeters of
13217 tessellations, and summarizes information about the tiles of the
13218 tessellation.")
13219 (license license:gpl2+)))
13220
13221 (define-public r-sf
13222 (package
13223 (name "r-sf")
13224 (version "0.9-0")
13225 (source
13226 (origin
13227 (method url-fetch)
13228 (uri (cran-uri "sf" version))
13229 (sha256
13230 (base32
13231 "117r9l3v7nkdj9bfy6qr0yz0gd5bv0pwnkc9vk2gv3xqj0h1fpf6"))))
13232 (build-system r-build-system)
13233 (inputs
13234 `(("gdal" ,gdal)
13235 ("geos" ,geos)
13236 ("proj" ,proj.4)
13237 ("zlib" ,zlib)))
13238 (propagated-inputs
13239 `(("r-classint" ,r-classint)
13240 ("r-dbi" ,r-dbi)
13241 ("r-magrittr" ,r-magrittr)
13242 ("r-rcpp" ,r-rcpp)
13243 ("r-units" ,r-units)))
13244 (native-inputs
13245 `(("pkg-config" ,pkg-config)
13246 ("r-knitr" ,r-knitr)))
13247 (home-page "https://github.com/r-spatial/sf/")
13248 (synopsis "Simple features for R")
13249 (description
13250 "This package provides support for simple features, a standardized way to
13251 encode spatial vector data. It binds to GDAL for reading and writing data, to
13252 GEOS for geometrical operations, and to PROJ for projection conversions and
13253 datum transformations.")
13254 ;; Either of these licenses
13255 (license (list license:gpl2 license:expat))))
13256
13257 (define-public r-spdep
13258 (package
13259 (name "r-spdep")
13260 (version "1.1-3")
13261 (source
13262 (origin
13263 (method url-fetch)
13264 (uri (cran-uri "spdep" version))
13265 (sha256
13266 (base32
13267 "1f8cjffqqc6rnb3n4qym70ca6nz2kvrsd3g587wrqdr79nnbwnrk"))))
13268 (build-system r-build-system)
13269 (propagated-inputs
13270 `(("r-boot" ,r-boot)
13271 ("r-coda" ,r-coda)
13272 ("r-deldir" ,r-deldir)
13273 ("r-expm" ,r-expm)
13274 ("r-gmodels" ,r-gmodels)
13275 ("r-learnbayes" ,r-learnbayes)
13276 ("r-mass" ,r-mass)
13277 ("r-matrix" ,r-matrix)
13278 ("r-nlme" ,r-nlme)
13279 ("r-sf" ,r-sf)
13280 ("r-sp" ,r-sp)
13281 ("r-spdata" ,r-spdata)))
13282 (home-page "https://github.com/r-spatial/spdep/")
13283 (synopsis "Spatial dependence: weighting schemes, statistics and models")
13284 (description
13285 "This package provides a collection of functions to create spatial
13286 weights matrix objects from polygon contiguities, from point patterns by
13287 distance and tessellations, for summarizing these objects, and for permitting
13288 their use in spatial data analysis, including regional aggregation by minimum
13289 spanning tree.")
13290 (license license:gpl2+)))
13291
13292 (define-public r-adegenet
13293 (package
13294 (name "r-adegenet")
13295 (version "2.1.2")
13296 (source
13297 (origin
13298 (method url-fetch)
13299 (uri (cran-uri "adegenet" version))
13300 (sha256
13301 (base32
13302 "01fgrgbiddz2q4l3mx637hhwbs7r0c43yw7vpwl8p8pwbm3nykz0"))))
13303 (build-system r-build-system)
13304 (propagated-inputs
13305 `(("r-ade4" ,r-ade4)
13306 ("r-ape" ,r-ape)
13307 ("r-boot" ,r-boot)
13308 ("r-dplyr" ,r-dplyr)
13309 ("r-ggplot2" ,r-ggplot2)
13310 ("r-igraph" ,r-igraph)
13311 ("r-mass" ,r-mass)
13312 ("r-reshape2" ,r-reshape2)
13313 ("r-seqinr" ,r-seqinr)
13314 ("r-shiny" ,r-shiny)
13315 ("r-spdep" ,r-spdep)
13316 ("r-vegan" ,r-vegan)))
13317 (home-page "https://github.com/thibautjombart/adegenet")
13318 (synopsis "Exploratory analysis of genetic and genomic data")
13319 (description
13320 "This package provides a toolset for the exploration of genetic and
13321 genomic data. Adegenet provides formal (S4) classes for storing and handling
13322 various genetic data, including genetic markers with varying ploidy and
13323 hierarchical population structure (@code{genind} class), alleles counts by
13324 populations (@code{genpop}), and genome-wide SNP data (@code{genlight}). It
13325 also implements original multivariate methods (DAPC, sPCA), graphics,
13326 statistical tests, simulation tools, distance and similarity measures, and
13327 several spatial methods. A range of both empirical and simulated datasets is
13328 also provided to illustrate various methods.")
13329 (license license:gpl2+)))
13330
13331 (define-public r-pegas
13332 (package
13333 (name "r-pegas")
13334 (version "0.13")
13335 (source
13336 (origin
13337 (method url-fetch)
13338 (uri (cran-uri "pegas" version))
13339 (sha256
13340 (base32 "002i7s4g0nhnq0v05gs0yssqiyhpq2f7rw2rhn31hsbgxc86frvy"))))
13341 (build-system r-build-system)
13342 (propagated-inputs
13343 `(("r-adegenet" ,r-adegenet)
13344 ("r-ape" ,r-ape)))
13345 (home-page "http://ape-package.ird.fr/pegas.html")
13346 (synopsis "Population and evolutionary genetics analysis system")
13347 (description
13348 "This package provides functions for reading, writing, plotting,
13349 analysing, and manipulating allelic and haplotypic data, including from VCF
13350 files, and for the analysis of population nucleotide sequences and
13351 micro-satellites including coalescent analyses, linkage disequilibrium,
13352 population structure (Fst, Amova) and equilibrium (HWE), haplotype networks,
13353 minimum spanning tree and network, and median-joining networks.")
13354 (license license:gpl2+)))
13355
13356 (define-public r-rmetasim
13357 (package
13358 (name "r-rmetasim")
13359 (version "3.1.14")
13360 (source
13361 (origin
13362 (method url-fetch)
13363 (uri (cran-uri "rmetasim" version))
13364 (sha256
13365 (base32
13366 "0rdkhfgyr97r2d1kd9g8ipb2pn563qxm1y4m9z678q0kqan2ddl0"))))
13367 (build-system r-build-system)
13368 (propagated-inputs
13369 `(("r-ade4" ,r-ade4)
13370 ("r-adegenet" ,r-adegenet)
13371 ("r-gtools" ,r-gtools)
13372 ("r-pegas" ,r-pegas)))
13373 (home-page "https://cran.r-project.org/web/packages/rmetasim")
13374 (synopsis "Individual-based population genetic simulation environment")
13375 (description
13376 "This package provides an interface between R and the metasim simulation
13377 engine. The simulation environment is documented in: Strand, A.(2002),
13378 Metasim 1.0: an individual-based environment for simulating population
13379 genetics of complex population dynamics.")
13380 ;; Any GPL version
13381 (license license:gpl2+)))
13382
13383 (define-public r-genetics
13384 (package
13385 (name "r-genetics")
13386 (version "1.3.8.1.2")
13387 (source
13388 (origin
13389 (method url-fetch)
13390 (uri (cran-uri "genetics" version))
13391 (sha256
13392 (base32
13393 "1v0ylnia6c44v356dsmnkx6054vcxazpzsrdh3yph5ch5vg6gjrh"))))
13394 (build-system r-build-system)
13395 (propagated-inputs
13396 `(("r-combinat" ,r-combinat)
13397 ("r-gdata" ,r-gdata)
13398 ("r-gtools" ,r-gtools)
13399 ("r-mass" ,r-mass)
13400 ("r-mvtnorm" ,r-mvtnorm)))
13401 (home-page "https://cran.r-project.org/web/packages/genetics/")
13402 (synopsis "Population genetics")
13403 (description
13404 "This package provides classes and methods for handling genetic data.
13405 It includes classes to represent genotypes and haplotypes at single markers up
13406 to multiple markers on multiple chromosomes. Function include allele
13407 frequencies, flagging homo/heterozygotes, flagging carriers of certain
13408 alleles, estimating and testing for Hardy-Weinberg disequilibrium, estimating
13409 and testing for linkage disequilibrium, ...")
13410 ;; Any GPL version.
13411 (license license:gpl2+)))
13412
13413 (define-public r-snp-plotter
13414 (package
13415 (name "r-snp-plotter")
13416 (version "0.5.1")
13417 (source
13418 (origin
13419 (method url-fetch)
13420 (uri (cran-uri "snp.plotter" version))
13421 (sha256
13422 (base32
13423 "16apsqvkah5l0d5qcwp3lq2jspkb6n62wzr0wskmj84jblx483vv"))))
13424 (properties `((upstream-name . "snp.plotter")))
13425 (build-system r-build-system)
13426 (propagated-inputs `(("r-genetics" ,r-genetics)))
13427 (home-page "https://cran.r-project.org/web/packages/snp.plotter/")
13428 (synopsis "Plot p-values using single SNP and/or haplotype data")
13429 (description
13430 "This package helps you create plots of p-values using single SNP and/or
13431 haplotype data. Main features of the package include options to display a
13432 @dfn{linkage disequilibrium} (LD) plot and the ability to plot multiple
13433 datasets simultaneously. Plots can be created using global and/or individual
13434 haplotype p-values along with single SNP p-values. Images are created as
13435 either PDF/EPS files.")
13436 (license license:gpl2+)))
13437
13438 (define-public r-polspline
13439 (package
13440 (name "r-polspline")
13441 (version "1.1.17")
13442 (source
13443 (origin
13444 (method url-fetch)
13445 (uri (cran-uri "polspline" version))
13446 (sha256
13447 (base32 "0c7fnxpqpy3hibiim4yib6l6bq363s97wwvllxp4lp8h06fjcyyn"))))
13448 (build-system r-build-system)
13449 (native-inputs `(("gfortran" ,gfortran)))
13450 (home-page "https://cran.r-project.org/web/packages/polspline/")
13451 (synopsis "Polynomial spline routines")
13452 (description
13453 "This package provides routines for the polynomial spline fitting
13454 routines hazard regression, hazard estimation with flexible tails, logspline,
13455 lspec, polyclass, and polymars.")
13456 (license license:gpl2+)))
13457
13458 (define-public r-rms
13459 (package
13460 (name "r-rms")
13461 (version "5.1-4")
13462 (source
13463 (origin
13464 (method url-fetch)
13465 (uri (cran-uri "rms" version))
13466 (sha256
13467 (base32 "19knh1sw0icw6jh9wfb2hq5jf49i2qfvp9myvqm5paa495689x9q"))))
13468 (build-system r-build-system)
13469 (propagated-inputs
13470 `(("r-ggplot2" ,r-ggplot2)
13471 ("r-hmisc" ,r-hmisc)
13472 ("r-htmltable" ,r-htmltable)
13473 ("r-htmltools" ,r-htmltools)
13474 ("r-lattice" ,r-lattice)
13475 ("r-multcomp" ,r-multcomp)
13476 ("r-nlme" ,r-nlme)
13477 ("r-polspline" ,r-polspline)
13478 ("r-quantreg" ,r-quantreg)
13479 ("r-rpart" ,r-rpart)
13480 ("r-sparsem" ,r-sparsem)
13481 ("r-survival" ,r-survival)))
13482 (native-inputs `(("gfortran" ,gfortran)))
13483 (home-page "http://biostat.mc.vanderbilt.edu/rms")
13484 (synopsis "Regression modeling strategies")
13485 (description
13486 "This is a package for regression modeling, testing, estimation,
13487 validation, graphics, prediction, and typesetting by storing enhanced model
13488 design attributes in the fit. The rms package is a collection of functions
13489 that assist with and streamline modeling. It also contains functions for
13490 binary and ordinal logistic regression models, ordinal models for continuous Y
13491 with a variety of distribution families, and the Buckley-James multiple
13492 regression model for right-censored responses, and implements penalized
13493 maximum likelihood estimation for logistic and ordinary linear models. The
13494 package works with almost any regression model, but it was especially written
13495 to work with binary or ordinal regression models, Cox regression, accelerated
13496 failure time models, ordinary linear models, the Buckley-James model,
13497 generalized least squares for serially or spatially correlated observations,
13498 generalized linear models, and quantile regression.")
13499 (license license:gpl2+)))
13500
13501 (define-public r-haplo-stats
13502 (package
13503 (name "r-haplo-stats")
13504 (version "1.7.9")
13505 (source
13506 (origin
13507 (method url-fetch)
13508 (uri (cran-uri "haplo.stats" version))
13509 (sha256
13510 (base32
13511 "19kxascqq5qz0zdxx0w837ji207y1z2ggxkl4vmlbay03k2dw2mx"))))
13512 (properties `((upstream-name . "haplo.stats")))
13513 (build-system r-build-system)
13514 (propagated-inputs
13515 `(("r-rms" ,r-rms)))
13516 (native-inputs
13517 `(("r-r-rsp" ,r-r-rsp))) ; for vignettes
13518 (home-page "https://www.mayo.edu/research/labs/statistical-genetics-genetic-epidemiology/software")
13519 (synopsis "Analysis of haplotypes when linkage phase is ambiguous")
13520 (description
13521 "This package provides routines for the analysis of indirectly measured
13522 haplotypes. The statistical methods assume that all subjects are unrelated
13523 and that haplotypes are ambiguous (due to unknown linkage phase of the genetic
13524 markers). The main functions are: @code{haplo.em()}, @code{haplo.glm()},
13525 @code{haplo.score()}, and @code{haplo.power()}; all of which have detailed
13526 examples in the vignette.")
13527 (license license:gpl2+)))
13528
13529 (define-public r-bqtl
13530 (package
13531 (name "r-bqtl")
13532 (version "1.0-32")
13533 (source
13534 (origin
13535 (method url-fetch)
13536 (uri (cran-uri "bqtl" version))
13537 (sha256
13538 (base32
13539 "0jjqgsm9fmvz5nkgz608xfljjpmaf4rs4f7kxvpqn4b1l9s5lhci"))))
13540 (build-system r-build-system)
13541 (native-inputs `(("gfortran" ,gfortran)))
13542 (home-page "http://famprevmed.ucsd.edu/faculty/cberry/bqtl/")
13543 (synopsis "Bayesian QTL mapping toolkit")
13544 (description
13545 "This is a QTL mapping toolkit for inbred crosses and recombinant inbred
13546 lines. It includes maximum likelihood and Bayesian tools.")
13547 (license license:gpl2+)))
13548
13549 (define-public r-ibdreg
13550 (package
13551 (name "r-ibdreg")
13552 (version "0.2.5")
13553 (source
13554 (origin
13555 (method url-fetch)
13556 (uri (cran-uri "ibdreg" version))
13557 (sha256
13558 (base32
13559 "1kaa5q1byi30wzr0mw4w2cv1ssxprzcwf91wrpqwkgcsdy7dkh2g"))))
13560 (build-system r-build-system)
13561 (home-page "https://www.mayo.edu/research/labs/\
13562 statistical-genetics-genetic-epidemiology/software")
13563 (synopsis "Regression methods for IBD linkage with covariates")
13564 (description
13565 "This package provides a method to test genetic linkage with covariates
13566 by regression methods with response IBD sharing for relative pairs. Account
13567 for correlations of IBD statistics and covariates for relative pairs within
13568 the same pedigree.")
13569 (license license:gpl2+)))
13570
13571 (define-public r-dlmap
13572 (package
13573 (name "r-dlmap")
13574 (version "1.13")
13575 (source
13576 (origin
13577 (method url-fetch)
13578 (uri (cran-uri "dlmap" version))
13579 (sha256
13580 (base32
13581 "0s6wlkggkm3qndwyvw72xv1n0mcjb7ss3ajbq2ll6rv30splq0db"))))
13582 (build-system r-build-system)
13583 (propagated-inputs
13584 `(("r-ibdreg" ,r-ibdreg)
13585 ("r-mgcv" ,r-mgcv)
13586 ("r-nlme" ,r-nlme)
13587 ("r-qtl" ,r-qtl)
13588 ("r-wgaim" ,r-wgaim)))
13589 (home-page "https://cran.r-project.org/web/packages/dlmap/")
13590 (synopsis "Detection localization mapping for QTL")
13591 (description
13592 "This is package for QTL mapping in a mixed model framework with separate
13593 detection and localization stages. The first stage detects the number of QTL
13594 on each chromosome based on the genetic variation due to grouped markers on
13595 the chromosome; the second stage uses this information to determine the most
13596 likely QTL positions. The mixed model can accommodate general fixed and
13597 random effects, including spatial effects in field trials and pedigree
13598 effects. It is applicable to backcrosses, doubled haploids, recombinant
13599 inbred lines, F2 intercrosses, and association mapping populations.")
13600 (license license:gpl2)))
13601
13602 (define-public r-ldheatmap
13603 (package
13604 (name "r-ldheatmap")
13605 (version "0.99-7")
13606 (source
13607 (origin
13608 (method url-fetch)
13609 (uri (cran-uri "LDheatmap" version))
13610 (sha256
13611 (base32
13612 "1r0j8bihi5z1x0sgaf7dwzpsw9i0nc1vylvipvc0cia2ka1lr9dc"))))
13613 (properties `((upstream-name . "LDheatmap")))
13614 (build-system r-build-system)
13615 (propagated-inputs
13616 `(("r-genetics" ,r-genetics)
13617 ("r-rcpp" ,r-rcpp)
13618 ("r-snpstats" ,r-snpstats)))
13619 (home-page "https://stat.sfu.ca/statgen/research/ldheatmap.html")
13620 (synopsis "Graphical display of pairwise linkage disequilibria between SNPs")
13621 (description
13622 "This package provides tools to produce a graphical display, as a heat
13623 map, of measures of pairwise linkage disequilibria between SNPs. Users may
13624 optionally include the physical locations or genetic map distances of each SNP
13625 on the plot.")
13626 (license license:gpl3)))
13627
13628 (define-public r-hwde
13629 (package
13630 (name "r-hwde")
13631 (version "0.67")
13632 (source
13633 (origin
13634 (method url-fetch)
13635 (uri (cran-uri "hwde" version))
13636 (sha256
13637 (base32
13638 "0wb2f9i5qi7w77ygh8bvydfpr7j5x8dyvnnhdkajaz0wdcpkyaqy"))))
13639 (build-system r-build-system)
13640 (home-page "https://cran.r-project.org/web/packages/hwde/")
13641 (synopsis "Models and tests for departure from Hardy-Weinberg equilibrium")
13642 (description
13643 "This package fits models for genotypic disequilibria, as described in
13644 Huttley and Wilson (2000), Weir (1996) and Weir and Wilson (1986). Contrast
13645 terms are available that account for first order interactions between loci.
13646 It also implements, for a single locus in a single population, a conditional
13647 exact test for Hardy-Weinberg equilibrium.")
13648 (license license:gpl2+)))
13649
13650 (define-public r-tdthap
13651 (package
13652 (name "r-tdthap")
13653 (version "1.1-11")
13654 (source
13655 (origin
13656 (method url-fetch)
13657 (uri (cran-uri "tdthap" version))
13658 (sha256
13659 (base32
13660 "15qlj2bivvz3pizd8dq34wczbkbxhzqh3cqp1ixkdkprlyvcxj5k"))))
13661 (build-system r-build-system)
13662 (home-page "https://cran.r-project.org/web/packages/tdthap/")
13663 (synopsis "TDT tests for extended haplotypes")
13664 (description
13665 "Functions and examples are provided for transmission/disequilibrium
13666 tests for extended marker haplotypes, as in Clayton, D. and Jones, H. (1999)
13667 \"Transmission/disequilibrium tests for extended marker haplotypes\".")
13668 (license license:artistic2.0)))
13669
13670 (define-public r-sparql
13671 (package
13672 (name "r-sparql")
13673 (version "1.16")
13674 (source (origin
13675 (method url-fetch)
13676 (uri (cran-uri "SPARQL" version))
13677 (sha256
13678 (base32
13679 "0gak1q06yyhdmcxb2n3v0h9gr1vqd0viqji52wpw211qp6r6dcrc"))))
13680 (properties `((upstream-name . "SPARQL")))
13681 (build-system r-build-system)
13682 (propagated-inputs
13683 `(("r-rcurl" ,r-rcurl)
13684 ("r-xml" ,r-xml)))
13685 (home-page "https://cran.r-project.org/web/packages/SPARQL")
13686 (synopsis "SPARQL client for R")
13687 (description "This package provides an interface to use SPARQL to pose
13688 SELECT or UPDATE queries to an end-point.")
13689 ;; The only license indication is found in the DESCRIPTION file,
13690 ;; which states GPL-3. So we cannot assume GPLv3+.
13691 (license license:gpl3)))
13692
13693 (define-public r-bookdown
13694 (package
13695 (name "r-bookdown")
13696 (version "0.18")
13697 (source (origin
13698 (method url-fetch)
13699 (uri (cran-uri "bookdown" version))
13700 (sha256
13701 (base32
13702 "1my6g16phx21v5cvfqcnjibh3zcv02xkix347aafd6a7r3hnxpq5"))))
13703 (build-system r-build-system)
13704 (propagated-inputs
13705 `(("r-htmltools" ,r-htmltools)
13706 ("r-knitr" ,r-knitr)
13707 ("r-rmarkdown" ,r-rmarkdown)
13708 ("r-tinytex" ,r-tinytex)
13709 ("r-xfun" ,r-xfun)
13710 ("pandoc" ,ghc-pandoc)))
13711 (home-page "https://github.com/rstudio/bookdown")
13712 (synopsis "Authoring books and technical documents with R markdown")
13713 (description "This package provides output formats and utilities for
13714 authoring books and technical documents with R Markdown.")
13715 (license license:gpl3)))
13716
13717 (define-public r-optparse
13718 (package
13719 (name "r-optparse")
13720 (version "1.6.4")
13721 (source
13722 (origin
13723 (method url-fetch)
13724 (uri (cran-uri "optparse" version))
13725 (sha256
13726 (base32
13727 "0wyrc42ja3ab5szx46zmz8lm7vzfqxkjca0m0sms8g9hqbmmay6d"))))
13728 (build-system r-build-system)
13729 (propagated-inputs
13730 `(("r-getopt" ,r-getopt)))
13731 (home-page "https://github.com/trevorld/optparse")
13732 (synopsis "Command line option parser")
13733 (description
13734 "This package provides a command line parser inspired by Python's
13735 @code{optparse} library to be used with Rscript to write shebang scripts
13736 that accept short and long options.")
13737 (license license:gpl2+)))
13738
13739 (define-public r-wgcna
13740 (package
13741 (name "r-wgcna")
13742 (version "1.69")
13743 (source
13744 (origin
13745 (method url-fetch)
13746 (uri (cran-uri "WGCNA" version))
13747 (sha256
13748 (base32
13749 "022hkprnrafvggi8pkjffkvk1qlnibmbbxxrni00wkrdbga5589f"))))
13750 (properties `((upstream-name . "WGCNA")))
13751 (build-system r-build-system)
13752 (propagated-inputs
13753 `(("r-annotationdbi" ,r-annotationdbi)
13754 ("r-doparallel" ,r-doparallel)
13755 ("r-dynamictreecut" ,r-dynamictreecut)
13756 ("r-fastcluster" ,r-fastcluster)
13757 ("r-foreach" ,r-foreach)
13758 ("r-go-db" ,r-go-db)
13759 ("r-hmisc" ,r-hmisc)
13760 ("r-impute" ,r-impute)
13761 ("r-rcpp" ,r-rcpp)
13762 ("r-survival" ,r-survival)
13763 ("r-matrixstats" ,r-matrixstats)
13764 ("r-preprocesscore" ,r-preprocesscore)))
13765 (home-page
13766 "http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/Rpackages/WGCNA/")
13767 (synopsis "Weighted correlation network analysis")
13768 (description
13769 "This package provides functions necessary to perform Weighted
13770 Correlation Network Analysis on high-dimensional data. It includes functions
13771 for rudimentary data cleaning, construction and summarization of correlation
13772 networks, module identification and functions for relating both variables and
13773 modules to sample traits. It also includes a number of utility functions for
13774 data manipulation and visualization.")
13775 (license license:gpl2+)))
13776
13777 (define-public r-kernlab
13778 (package
13779 (name "r-kernlab")
13780 (version "0.9-29")
13781 (source
13782 (origin
13783 (method url-fetch)
13784 (uri (cran-uri "kernlab" version))
13785 (sha256
13786 (base32 "0vqhndl4zm7pvkfvq0f6i9cbrm7pij6kmdp7d7w39pa100x6knn3"))))
13787 (build-system r-build-system)
13788 (home-page "https://cran.r-project.org/web/packages/kernlab")
13789 (synopsis "Kernel-based machine learning tools")
13790 (description
13791 "This package provides kernel-based machine learning methods for
13792 classification, regression, clustering, novelty detection, quantile regression
13793 and dimensionality reduction. Among other methods @code{kernlab} includes
13794 Support Vector Machines, Spectral Clustering, Kernel PCA, Gaussian Processes
13795 and a QP solver.")
13796 (license license:gpl2)))
13797
13798 (define-public r-hierfstat
13799 (package
13800 (name "r-hierfstat")
13801 (version "0.04-22")
13802 (source
13803 (origin
13804 (method url-fetch)
13805 (uri (cran-uri "hierfstat" version))
13806 (sha256
13807 (base32
13808 "1fav2v2996v5kb1ffa6v5wxfm921syxg6as034vd3j4jfhdibyfx"))))
13809 (build-system r-build-system)
13810 (propagated-inputs
13811 `(("r-ade4" ,r-ade4)
13812 ("r-adegenet" ,r-adegenet)
13813 ("r-gtools" ,r-gtools)))
13814 (home-page "https://cran.r-project.org/web/packages/hierfstat/")
13815 (synopsis "Estimation and tests of hierarchical F-statistics")
13816 (description
13817 "This package allows the estimation of hierarchical F-statistics from
13818 haploid or diploid genetic data with any numbers of levels in the hierarchy,
13819 following the algorithm of Yang (Evolution, 1998, 52(4):950-956). Functions
13820 are also given to test via randomisations the significance of each F and
13821 variance components, using the likelihood-ratio statistics G.")
13822 (license license:gpl2+)))
13823
13824 (define-public r-hapassoc
13825 (package
13826 (name "r-hapassoc")
13827 (version "1.2-8")
13828 (source
13829 (origin
13830 (method url-fetch)
13831 (uri (cran-uri "hapassoc" version))
13832 (sha256
13833 (base32
13834 "0qs5jl0snzfchgpp6pabncwywxcmi743g91jvjiyyzw0lw85yv4s"))))
13835 (build-system r-build-system)
13836 (home-page "https://stat.sfu.ca/statgen/research/hapassoc.html")
13837 (synopsis "Inference of trait associations with SNP haplotypes")
13838 (description
13839 "Hapassoc performs likelihood inference of trait associations with
13840 haplotypes and other covariates in @dfn{generalized linear models} (GLMs). The
13841 functions are developed primarily for data collected in cohort or
13842 cross-sectional studies. They can accommodate uncertain haplotype phase and
13843 handle missing genotypes at some SNPs.")
13844 (license license:gpl2)))
13845
13846 (define-public r-sampling
13847 (package
13848 (name "r-sampling")
13849 (version "2.8")
13850 (source
13851 (origin
13852 (method url-fetch)
13853 (uri (cran-uri "sampling" version))
13854 (sha256
13855 (base32
13856 "06pj7dan0mknpsblmlnk7am78qrnwgnql5vvx7vmbfvib7rj6s9m"))))
13857 (build-system r-build-system)
13858 (propagated-inputs
13859 `(("r-lpsolve" ,r-lpsolve)
13860 ("r-mass" ,r-mass)))
13861 (home-page "https://cran.r-project.org/web/packages/sampling/")
13862 (synopsis "Survey sampling")
13863 (description
13864 "This package provides functions for drawing and calibrating samples.")
13865 (license license:gpl2+)))
13866
13867 (define-public r-r2html
13868 (package
13869 (name "r-r2html")
13870 (version "2.3.2")
13871 (source
13872 (origin
13873 (method url-fetch)
13874 (uri (cran-uri "R2HTML" version))
13875 (sha256
13876 (base32
13877 "00kxny7hajs9r2kw63qk7d03ggdxx2j1g8vbrmzp806y8aczvik9"))))
13878 (properties `((upstream-name . "R2HTML")))
13879 (build-system r-build-system)
13880 (home-page "https://github.com/nalimilan/R2HTML")
13881 (synopsis "HTML export for R objects")
13882 (description
13883 "This package includes HTML functions and methods to write in an HTML
13884 file. Thus, making HTML reports is easy. It includes a function that allows
13885 redirection on the fly, which appears to be very useful for teaching purposes,
13886 as the student can keep a copy of the produced output to keep all that they
13887 did during the course. The package comes with a vignette describing how to
13888 write HTML reports for statistical analysis. Finally, a driver for Sweave
13889 parses HTML flat files containing R code and to automatically write
13890 the corresponding outputs (tables and graphs).")
13891 (license license:gpl2+)))
13892
13893 (define-public r-rjava
13894 (package
13895 (name "r-rjava")
13896 (version "0.9-12")
13897 (source
13898 (origin
13899 (method url-fetch)
13900 (uri (cran-uri "rJava" version))
13901 (sha256
13902 (base32
13903 "03vv0pj6san03c51iyqsyb1rwh3097dfpl2s8iswzzmc7k3shj12"))))
13904 (properties `((upstream-name . "rJava")))
13905 (build-system r-build-system)
13906 (arguments
13907 `(#:modules ((guix build utils)
13908 (guix build r-build-system)
13909 (ice-9 match))
13910 #:phases
13911 (modify-phases %standard-phases
13912 (add-after 'unpack 'set-JAVA_HOME
13913 (lambda* (#:key inputs #:allow-other-keys)
13914 (let ((jdk (assoc-ref inputs "jdk")))
13915 (setenv "JAVA_HOME" jdk)
13916 (setenv "JAVA" (which "java"))
13917 (setenv "JAR" (which "jar"))
13918 (setenv "JAVAC" (which "javac"))
13919 (setenv "JAVAH" (which "javah"))
13920 (setenv "JAVA_CPPFLAGS"
13921 (string-append "-I" jdk "/include "
13922 "-I" jdk "/include/linux"))
13923 (match (find-files (string-append jdk "/jre/lib/") "libjvm.so")
13924 ((lib) (setenv "JAVA_LIBS" lib))
13925 (_ (error "Could not find libjvm.so"))))
13926 #t)))))
13927 (inputs
13928 `(("icu4c" ,icu4c)
13929 ("jdk" ,icedtea-8 "jdk")
13930 ("pcre" ,pcre)
13931 ("zlib" ,zlib)))
13932 (home-page "https://www.rforge.net/rJava/")
13933 (synopsis "Low-Level R to Java interface")
13934 (description
13935 "This package provides a low-level interface to the Java VM very much
13936 like .C/.Call and friends. It allows the creation of objects, calling methods
13937 and accessing fields.")
13938 (license license:gpl2)))
13939
13940 (define-public r-svmisc
13941 (package
13942 (name "r-svmisc")
13943 (version "1.1.0")
13944 (source
13945 (origin
13946 (method url-fetch)
13947 (uri (cran-uri "svMisc" version))
13948 (sha256
13949 (base32
13950 "01r2a73wx2sh1njky961fxabx5wgddqqjqba6vjg0f3h8r3abmn2"))))
13951 (properties `((upstream-name . "svMisc")))
13952 (build-system r-build-system)
13953 (home-page "https://github.com/SciViews/svMisc")
13954 (synopsis "Miscellaneous functions for SciViews")
13955 (description
13956 "This package provides miscellaneous functions for SciViews or general
13957 use, including tools to manage a temporary environment attached to the search
13958 path for temporary variables you do not want to @code{save()} or
13959 @code{load()}; test the current platform; showing progress bars, etc.")
13960 (license license:gpl2)))
13961
13962 (define-public r-xyz
13963 (package
13964 (name "r-xyz")
13965 (version "0.2")
13966 (source
13967 (origin
13968 (method url-fetch)
13969 (uri (cran-uri "xyz" version))
13970 (sha256
13971 (base32
13972 "13w4sb4pvgciwr8wsz785dafj2k2kpx7znz46r5d32wx88vkycp4"))))
13973 (build-system r-build-system)
13974 (propagated-inputs
13975 `(("r-rcpp" ,r-rcpp)))
13976 (home-page "https://cran.r-project.org/web/packages/xyz/")
13977 (synopsis "Algorithm for fast interaction search in high-dimensional data")
13978 (description
13979 "High dimensional interaction search by brute force requires a quadratic
13980 computational cost in the number of variables. The xyz algorithm provably
13981 finds strong interactions in almost linear time. For details of the algorithm
13982 see: G. Thanei, N. Meinshausen and R. Shah (2016). The xyz algorithm for fast
13983 interaction search in high-dimensional data.")
13984 ;; Any version of the GPL.
13985 (license license:gpl2+)))
13986
13987 (define-public r-rttf2pt1
13988 (package
13989 (name "r-rttf2pt1")
13990 (version "1.3.8")
13991 (source
13992 (origin
13993 (method url-fetch)
13994 (uri (cran-uri "Rttf2pt1" version))
13995 (sha256
13996 (base32
13997 "0b3f2zkmbyshn19cnaaf042d0zwf43l9jnkqizfhxxwb93a4c1jn"))))
13998 (properties `((upstream-name . "Rttf2pt1")))
13999 (build-system r-build-system)
14000 (home-page "https://github.com/wch/Rttf2pt1")
14001 (synopsis "Font conversion utility")
14002 (description
14003 "This package contains the program @code{ttf2pt1}, for use with the
14004 @code{extrafont} package.")
14005 ;; Most of the files are covered under the Expat license. Some files are
14006 ;; covered under BSD-3. Deviations for individual files are recorded in
14007 ;; the LICENSE file.
14008 (license (list license:bsd-3 license:expat
14009 (license:non-copyleft "file://LICENSE")))))
14010
14011 (define-public r-extrafontdb
14012 (package
14013 (name "r-extrafontdb")
14014 (version "1.0")
14015 (source
14016 (origin
14017 (method url-fetch)
14018 (uri (cran-uri "extrafontdb" version))
14019 (sha256
14020 (base32
14021 "115n42hfvv5h4nn4cfkfmkmn968py4lpy8zd0d6w5yylwpzbm8gs"))))
14022 (build-system r-build-system)
14023 (home-page "https://github.com/wch/extrafontdb")
14024 (synopsis "Database for the extrafont package")
14025 (description
14026 "This package holds the database for the @code{extrafont} package.")
14027 (license license:gpl2)))
14028
14029 (define-public r-extrafont
14030 (package
14031 (name "r-extrafont")
14032 (version "0.17")
14033 (source
14034 (origin
14035 (method url-fetch)
14036 (uri (cran-uri "extrafont" version))
14037 (sha256
14038 (base32
14039 "0b9k2n9sk23bh45hjgnkxpjyvpdrz1hx7kmxvmb4nhlhm1wpsv9g"))))
14040 (build-system r-build-system)
14041 (propagated-inputs
14042 `(("r-extrafontdb" ,r-extrafontdb)
14043 ("r-rttf2pt1" ,r-rttf2pt1)))
14044 (home-page "https://github.com/wch/extrafont")
14045 (synopsis "Tools for using fonts in R")
14046 (description
14047 "The extrafont package makes it easier to use fonts other than the basic
14048 PostScript fonts that R uses. Fonts that are imported into extrafont can be
14049 used with PDF or PostScript output files. There are two hurdles for using
14050 fonts in PDF (or Postscript) output files:
14051
14052 @enumerate
14053 @item Making R aware of the font and the dimensions of the characters.
14054 @item Embedding the fonts in the PDF file so that the PDF can be displayed
14055 properly on a device that doesn't have the font. This is usually needed if
14056 you want to print the PDF file or share it with others.
14057 @end enumerate
14058
14059 The extrafont package makes both of these things easier.")
14060 (license license:gpl2)))
14061
14062 (define-public r-xkcd
14063 (package
14064 (name "r-xkcd")
14065 (version "0.0.6")
14066 (source
14067 (origin
14068 (method url-fetch)
14069 (uri (cran-uri "xkcd" version))
14070 (sha256
14071 (base32
14072 "1z2y0ihn68ppay7xkglhw7djki5654g6z4bbpyy41if57z9q554f"))))
14073 (build-system r-build-system)
14074 (propagated-inputs
14075 `(("r-extrafont" ,r-extrafont)
14076 ("r-ggplot2" ,r-ggplot2)
14077 ("r-hmisc" ,r-hmisc)))
14078 (home-page "https://cran.r-project.org/web/packages/xkcd/")
14079 (synopsis "Plot ggplot2 graphics in the XKCD style")
14080 (description
14081 "This package provides the means to plot ggplot2 graphs in the style of
14082 the XKCD web comic.")
14083 (license license:gpl3)))
14084
14085 (define-public r-msigdbr
14086 (package
14087 (name "r-msigdbr")
14088 (version "7.0.1")
14089 (source
14090 (origin
14091 (method url-fetch)
14092 (uri (cran-uri "msigdbr" version))
14093 (sha256
14094 (base32
14095 "19p8z617m3my8la7n1qgb1s2msf940r372im3q30qkbcx3qxg3sd"))))
14096 (build-system r-build-system)
14097 (propagated-inputs
14098 `(("r-dplyr" ,r-dplyr)
14099 ("r-magrittr" ,r-magrittr)
14100 ("r-rlang" ,r-rlang)
14101 ("r-tibble" ,r-tibble)))
14102 (home-page "https://github.com/igordot/msigdbr")
14103 (synopsis "MSigDB gene sets for multiple organisms")
14104 (description
14105 "This package provides the @dfn{Molecular Signatures Database} (MSigDB)
14106 gene sets typically used with the @dfn{Gene Set Enrichment Analysis} (GSEA)
14107 software in a standard R data frame with key-value pairs. Included are the
14108 original human gene symbols and Entrez IDs as well as the equivalents for
14109 various frequently studied model organisms such as mouse, rat, pig, fly, and
14110 yeast.")
14111 ;; The package is covered under the Expat license, but the upstream MSigDB
14112 ;; files are made available under the Creative Commons Attribution 4.0
14113 ;; International license.
14114 (license (list license:expat license:cc-by4.0))))
14115
14116 (define-public r-gridgraphics
14117 (package
14118 (name "r-gridgraphics")
14119 (version "0.5-0")
14120 (source
14121 (origin
14122 (method url-fetch)
14123 (uri (cran-uri "gridGraphics" version))
14124 (sha256
14125 (base32
14126 "0rlyc3xk8kfrfzbfd8n4javq3yxqd7lsfmi4q5n6s61srnrl6c1r"))))
14127 (properties `((upstream-name . "gridGraphics")))
14128 (build-system r-build-system)
14129 (home-page "https://github.com/pmur002/gridgraphics")
14130 (synopsis "Redraw base graphics using @code{grid} graphics")
14131 (description
14132 "This package provides functions to convert a page of plots drawn with
14133 the @code{graphics} package into identical output drawn with the @code{grid}
14134 package. The result looks like the original @code{graphics}-based plot, but
14135 consists of @code{grid} grobs and viewports that can then be manipulated with
14136 @code{grid} functions (e.g., edit grobs and revisit viewports).")
14137 (license license:gpl2+)))
14138
14139 (define-public r-farver
14140 (package
14141 (name "r-farver")
14142 (version "2.0.3")
14143 (source
14144 (origin
14145 (method url-fetch)
14146 (uri (cran-uri "farver" version))
14147 (sha256
14148 (base32
14149 "1k75v07dsfkjra2gsgxg9s55cw3b46b1nh960kqphq7cg7gr058f"))))
14150 (build-system r-build-system)
14151 (home-page "https://github.com/thomasp85/farver")
14152 (synopsis "Vectorized color conversion and comparison")
14153 (description
14154 "The encoding of color can be handled in many different ways, using
14155 different color spaces. As different color spaces have different uses,
14156 efficient conversion between these representations are important. This
14157 package provides a set of functions that gives access to very fast color space
14158 conversion and comparisons implemented in C++, and offers 100-fold speed
14159 improvements over the @code{convertColor} function in the @code{grDevices}
14160 package.")
14161 (license license:expat)))
14162
14163 (define-public r-ggplotify
14164 (package
14165 (name "r-ggplotify")
14166 (version "0.0.5")
14167 (source
14168 (origin
14169 (method url-fetch)
14170 (uri (cran-uri "ggplotify" version))
14171 (sha256
14172 (base32
14173 "0pfnp4lrissf21z7867kdm6slr979kchyva8iaf83i1302kscph3"))))
14174 (build-system r-build-system)
14175 (propagated-inputs
14176 `(("r-ggplot2" ,r-ggplot2)
14177 ("r-gridgraphics" ,r-gridgraphics)
14178 ("r-rvcheck" ,r-rvcheck)))
14179 (native-inputs
14180 `(("r-knitr" ,r-knitr)))
14181 (home-page "https://github.com/GuangchuangYu/ggplotify")
14182 (synopsis "Convert plots to @code{grob} or @code{ggplot} object")
14183 (description
14184 "This package provides tools to convert plot function calls (using
14185 expression or formula) to @code{grob} or @code{ggplot} objects that are
14186 compatible with the @code{grid} and @code{ggplot2} environment. With this
14187 package, we are able to e.g. use @code{cowplot} to align plots produced by
14188 @code{base} graphics, @code{grid}, @code{lattice}, @code{vcd} etc. by
14189 converting them to @code{ggplot} objects.")
14190 (license license:artistic2.0)))
14191
14192 (define-public r-triebeard
14193 (package
14194 (name "r-triebeard")
14195 (version "0.3.0")
14196 (source
14197 (origin
14198 (method url-fetch)
14199 (uri (cran-uri "triebeard" version))
14200 (sha256
14201 (base32
14202 "1hqyz57gph02c9fdc07lxz113bbklif3g18sw8jan6pakhhdc7dz"))))
14203 (build-system r-build-system)
14204 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
14205 (home-page "https://github.com/Ironholds/triebeard/")
14206 (synopsis "Radix trees in Rcpp")
14207 (description
14208 "Radix trees, or tries, are key-value data structures optimized for
14209 efficient lookups, similar in purpose to hash tables. This package provides
14210 an implementation of radix trees for use in R programming and in developing
14211 packages with Rcpp.")
14212 (license license:expat)))
14213
14214 (define-public r-tweenr
14215 (package
14216 (name "r-tweenr")
14217 (version "1.0.1")
14218 (source
14219 (origin
14220 (method url-fetch)
14221 (uri (cran-uri "tweenr" version))
14222 (sha256
14223 (base32
14224 "0sq90pbln6lkc2q3zflhkxxwpqdw5dd7igrxhdnlynkdrmi83mpg"))))
14225 (build-system r-build-system)
14226 (propagated-inputs
14227 `(("r-farver" ,r-farver)
14228 ("r-magrittr" ,r-magrittr)
14229 ("r-rcpp" ,r-rcpp)
14230 ("r-rlang" ,r-rlang)))
14231 (home-page "https://github.com/thomasp85/tweenr")
14232 (synopsis "Interpolate data for smooth animations")
14233 (description
14234 "In order to create smooth animation between states of data, tweening is
14235 necessary. This package provides a range of functions for creating tweened
14236 data that can be used as basis for animation. Furthermore it adds a number of
14237 vectorized interpolaters for common R data types such as numeric, date and
14238 color.")
14239 (license license:expat)))
14240
14241 (define-public r-polyclip
14242 (package
14243 (name "r-polyclip")
14244 (version "1.10-0")
14245 (source
14246 (origin
14247 (method url-fetch)
14248 (uri (cran-uri "polyclip" version))
14249 (sha256
14250 (base32
14251 "0jyk4maqiblvj095jd59dr76kbniyli3v3xvy0a72ljszq6vrnkl"))))
14252 (build-system r-build-system)
14253 (native-inputs `(("pkg-config" ,pkg-config)))
14254 (home-page "http://www.angusj.com/delphi/clipper.php")
14255 (synopsis "Polygon clipping")
14256 (description
14257 "This package provides an R port of the library Clipper. It performs
14258 polygon clipping operations (intersection, union, set minus, set difference)
14259 for polygonal regions of arbitrary complexity, including holes. It computes
14260 offset polygons (spatial buffer zones, morphological dilations, Minkowski
14261 dilations) for polygonal regions and polygonal lines. It computes the
14262 Minkowski Sum of general polygons. There is a function for removing
14263 self-intersections from polygon data.")
14264 (license license:boost1.0)))
14265
14266 (define-public r-urltools
14267 (package
14268 (name "r-urltools")
14269 (version "1.7.3")
14270 (source
14271 (origin
14272 (method url-fetch)
14273 (uri (cran-uri "urltools" version))
14274 (sha256
14275 (base32
14276 "04x3my655dd287cbsszbnf75q0swmjlxxrblcsay7a8n3df3a830"))))
14277 (build-system r-build-system)
14278 (propagated-inputs
14279 `(("r-rcpp" ,r-rcpp)
14280 ("r-triebeard" ,r-triebeard)))
14281 (home-page "https://github.com/Ironholds/urltools/")
14282 (synopsis "Vectorized tools for URL handling and parsing")
14283 (description
14284 "This package provides a toolkit for all URL-handling needs, including
14285 encoding and decoding, parsing, parameter extraction and modification. All
14286 functions are designed to be both fast and entirely vectorized. It is
14287 intended to be useful for people dealing with web-related datasets, such as
14288 server-side logs, although may be useful for other situations involving large
14289 sets of URLs.")
14290 (license license:expat)))
14291
14292 (define-public r-ggforce
14293 (package
14294 (name "r-ggforce")
14295 (version "0.3.1")
14296 (source
14297 (origin
14298 (method url-fetch)
14299 (uri (cran-uri "ggforce" version))
14300 (sha256
14301 (base32
14302 "04926cqrda6psvy2nzkkw4czwyxdp7fnxg76byp14v12kgd72lm0"))))
14303 (build-system r-build-system)
14304 (propagated-inputs
14305 `(("r-ggplot2" ,r-ggplot2)
14306 ("r-gtable" ,r-gtable)
14307 ("r-mass" ,r-mass)
14308 ("r-polyclip" ,r-polyclip)
14309 ("r-rcpp" ,r-rcpp)
14310 ("r-rcppeigen" ,r-rcppeigen)
14311 ("r-rlang" ,r-rlang)
14312 ("r-scales" ,r-scales)
14313 ("r-tidyselect" ,r-tidyselect)
14314 ("r-tweenr" ,r-tweenr)
14315 ("r-withr" ,r-withr)))
14316 (home-page "https://ggforce.data-imaginist.com")
14317 (synopsis "Accelerating ggplot2")
14318 (description
14319 "The aim of the ggplot2 package is to aid in visual data investigations.
14320 This focus has led to a lack of facilities for composing specialized plots.
14321 Thi package aims to be a collection of mainly new statistics and geometries
14322 that fills this gap.")
14323 (license license:expat)))
14324
14325 (define-public r-europepmc
14326 (package
14327 (name "r-europepmc")
14328 (version "0.3")
14329 (source
14330 (origin
14331 (method url-fetch)
14332 (uri (cran-uri "europepmc" version))
14333 (sha256
14334 (base32
14335 "1ngqs1sqzkbwv98dd5z4cxj8bnz41wyd0g060a2vpqi3s99s4i2h"))))
14336 (build-system r-build-system)
14337 (propagated-inputs
14338 `(("r-dplyr" ,r-dplyr)
14339 ("r-httr" ,r-httr)
14340 ("r-jsonlite" ,r-jsonlite)
14341 ("r-plyr" ,r-plyr)
14342 ("r-progress" ,r-progress)
14343 ("r-purrr" ,r-purrr)
14344 ("r-urltools" ,r-urltools)
14345 ("r-xml2" ,r-xml2)))
14346 (home-page "https://github.com/ropensci/europepmc/")
14347 (synopsis "R Interface to the Europe PubMed Central RESTful Web Service")
14348 (description
14349 "This package provides an R Client for the
14350 @url{https://europepmc.org/RestfulWebService,Europe PubMed Central RESTful Web
14351 Service}. It gives access to both metadata on life science literature and
14352 open access full texts. Europe PMC indexes all PubMed content and other
14353 literature sources including Agricola, a bibliographic database of citations
14354 to the agricultural literature, or Biological Patents. In addition to
14355 bibliographic metadata, the client allows users to fetch citations and
14356 reference lists. Links between life-science literature and other EBI
14357 databases, including ENA, PDB or ChEMBL are also accessible.")
14358 (license license:gpl3)))
14359
14360 (define-public r-ggraph
14361 (package
14362 (name "r-ggraph")
14363 (version "2.0.2")
14364 (source
14365 (origin
14366 (method url-fetch)
14367 (uri (cran-uri "ggraph" version))
14368 (sha256
14369 (base32
14370 "1ckq82hg52vr2wydkqv2wrppgjyvddd6bwqzrngqlm7j71xapjl0"))))
14371 (build-system r-build-system)
14372 (propagated-inputs
14373 `(("r-digest" ,r-digest)
14374 ("r-dplyr" ,r-dplyr)
14375 ("r-ggforce" ,r-ggforce)
14376 ("r-ggplot2" ,r-ggplot2)
14377 ("r-ggrepel" ,r-ggrepel)
14378 ("r-graphlayouts" ,r-graphlayouts)
14379 ("r-gtable" ,r-gtable)
14380 ("r-igraph" ,r-igraph)
14381 ("r-mass" ,r-mass)
14382 ("r-rcpp" ,r-rcpp)
14383 ("r-rlang" ,r-rlang)
14384 ("r-scales" ,r-scales)
14385 ("r-tidygraph" ,r-tidygraph)
14386 ("r-viridis" ,r-viridis)))
14387 (native-inputs
14388 `(("r-knitr" ,r-knitr)))
14389 (home-page "https://cran.r-project.org/web/packages/ggraph/")
14390 (synopsis "Implementation of grammar of graphics for graphs and networks")
14391 (description
14392 "The grammar of graphics as implemented in ggplot2 is a poor fit for
14393 graph and network visualizations due to its reliance on tabular data input.
14394 The ggraph package is an extension of the ggplot2 API tailored to graph
14395 visualizations and provides the same flexible approach to building up plots
14396 layer by layer.")
14397 (license license:gpl3)))
14398
14399 (define-public r-varselrf
14400 (package
14401 (name "r-varselrf")
14402 (version "0.7-8")
14403 (source
14404 (origin
14405 (method url-fetch)
14406 (uri (cran-uri "varSelRF" version))
14407 (sha256
14408 (base32
14409 "0h49rl1j13yfh97rsfsyh9s2c4wajny4rzms2qw77d0cavxqg53i"))))
14410 (properties `((upstream-name . "varSelRF")))
14411 (build-system r-build-system)
14412 (propagated-inputs
14413 `(("r-randomforest" ,r-randomforest)))
14414 (home-page "https://www.ligarto.org/rdiaz/software/software")
14415 (synopsis "Variable selection using random forests")
14416 (description
14417 "This package provides tools for the variable selection from random
14418 forests using both backwards variable elimination (for the selection of small
14419 sets of non-redundant variables) and selection based on the importance
14420 spectrum (somewhat similar to scree plots; for the selection of large,
14421 potentially highly-correlated variables). The main applications are in
14422 high-dimensional data (e.g., microarray data, and other genomics and
14423 proteomics applications).")
14424 (license license:gpl2+)))
14425
14426 (define-public r-pamr
14427 (package
14428 (name "r-pamr")
14429 (version "1.56.1")
14430 (source
14431 (origin
14432 (method url-fetch)
14433 (uri (cran-uri "pamr" version))
14434 (sha256
14435 (base32
14436 "0ycpgkk23y3zzkb42n2skcyl35ps1n7jmyzfj7pbxr3f6gr2grfh"))))
14437 (build-system r-build-system)
14438 (propagated-inputs
14439 `(("r-cluster" ,r-cluster)
14440 ("r-survival" ,r-survival)))
14441 (native-inputs `(("gfortran" ,gfortran)))
14442 (home-page "https://cran.r-project.org/web/packages/pamr/")
14443 (synopsis "Prediction Analysis for Microarrays")
14444 (description
14445 "This package provides some functions for sample classification in
14446 microarrays.")
14447 (license license:gpl2)))
14448
14449 (define-public r-rda
14450 (package
14451 (name "r-rda")
14452 (version "1.0.2-2.1")
14453 (source
14454 (origin
14455 (method url-fetch)
14456 (uri (cran-uri "rda" version))
14457 (sha256
14458 (base32
14459 "1y4fawslr3i6crjaxhsdb47kfsqkyszdx6avq3r5far5a4pvc639"))))
14460 (build-system r-build-system)
14461 (home-page "https://cran.r-project.org/web/packages/rda/")
14462 (synopsis "Shrunken centroids regularized discriminant analysis")
14463 (description
14464 "This package provides tools for shrunken centroids regularized
14465 discriminant analysis for the purpose of classifying high dimensional data.")
14466 (license license:gpl2+)))
14467
14468 (define-public r-ggvis
14469 (package
14470 (name "r-ggvis")
14471 (version "0.4.5")
14472 (source
14473 (origin
14474 (method url-fetch)
14475 (uri (cran-uri "ggvis" version))
14476 (sha256
14477 (base32
14478 "091i9f17912j8qcyxppjgwzjnyqj7769ixs9d2gjg6f2clskqdw2"))))
14479 (build-system r-build-system)
14480 (propagated-inputs
14481 `(("r-assertthat" ,r-assertthat)
14482 ("r-dplyr" ,r-dplyr)
14483 ("r-htmltools" ,r-htmltools)
14484 ("r-jsonlite" ,r-jsonlite)
14485 ("r-lazyeval" ,r-lazyeval)
14486 ("r-magrittr" ,r-magrittr)
14487 ("r-shiny" ,r-shiny)))
14488 (home-page "https://ggvis.rstudio.com/")
14489 (synopsis "Interactive grammar of graphics")
14490 (description
14491 "This package is a data visualization package for R providing an
14492 implementation of an interactive grammar of graphics, taking the best parts of
14493 ggplot2, combining them with the reactive framework of Shiny and drawing web
14494 graphics using Vega.")
14495 (license license:gpl2)))
14496
14497 (define-public r-gbm
14498 (package
14499 (name "r-gbm")
14500 (version "2.1.5")
14501 (source
14502 (origin
14503 (method url-fetch)
14504 (uri (cran-uri "gbm" version))
14505 (sha256
14506 (base32
14507 "0vs6ljaqhwwpgr8wlbhmm4v147rd82kl16rpaijqiylxcc8dxyq6"))))
14508 (build-system r-build-system)
14509 (propagated-inputs
14510 `(("r-gridextra" ,r-gridextra)
14511 ("r-lattice" ,r-lattice)
14512 ("r-survival" ,r-survival)))
14513 (home-page "https://github.com/gbm-developers/gbm")
14514 (synopsis "Generalized boosted regression models")
14515 (description
14516 "This package is an implementation of extensions to Freund and Schapire's
14517 AdaBoost algorithm and Friedman's gradient boosting machine. It includes
14518 regression methods for least squares, absolute loss, t-distribution loss,
14519 quantile regression, logistic, multinomial logistic, Poisson, Cox proportional
14520 hazards partial likelihood, AdaBoost exponential loss, Huberized hinge loss,
14521 and Learning to Rank measures (LambdaMart).")
14522 (license license:gpl2+)))
14523
14524 (define-public r-threejs
14525 (package
14526 (name "r-threejs")
14527 (version "0.3.3")
14528 (source
14529 (origin
14530 (method url-fetch)
14531 (uri (cran-uri "threejs" version))
14532 (sha256
14533 (base32
14534 "1711h351nzxfkbbdwvfzyhciyvi9c6wx3jq1g97lzcqgnb45kivn"))))
14535 (build-system r-build-system)
14536 (arguments
14537 `(#:modules ((guix build utils)
14538 (guix build r-build-system)
14539 (srfi srfi-1)
14540 (ice-9 popen))
14541 #:phases
14542 (modify-phases %standard-phases
14543 (add-after 'unpack 'process-javascript
14544 (lambda* (#:key inputs #:allow-other-keys)
14545 (with-directory-excursion "inst"
14546 (call-with-values
14547 (lambda ()
14548 (unzip2
14549 `((,(assoc-ref inputs "js-jquery")
14550 "htmlwidgets/lib/jquery/jquery.min.js")
14551 (,(assoc-ref inputs "js-threejs-111")
14552 "htmlwidgets/lib/threejs-111/three.min.js"))))
14553 (lambda (sources targets)
14554 (for-each (lambda (source target)
14555 (format #t "Processing ~a --> ~a~%"
14556 source target)
14557 (delete-file target)
14558 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
14559 (call-with-output-file target
14560 (lambda (port)
14561 (dump-port minified port)))))
14562 sources targets))))
14563 #t)))))
14564 (propagated-inputs
14565 `(("r-base64enc" ,r-base64enc)
14566 ("r-crosstalk" ,r-crosstalk)
14567 ("r-htmlwidgets" ,r-htmlwidgets)
14568 ("r-igraph" ,r-igraph)))
14569 (native-inputs
14570 `(("uglify-js" ,uglify-js)
14571 ("js-jquery"
14572 ,(origin
14573 (method url-fetch)
14574 (uri "https://code.jquery.com/jquery-1.12.4.js")
14575 (sha256
14576 (base32
14577 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
14578 ("js-threejs-111"
14579 ,(origin
14580 (method url-fetch)
14581 (uri "https://raw.githubusercontent.com/mrdoob/three.js/r111/build/three.js")
14582 (sha256
14583 (base32
14584 "1cxdkw3plmlw1xvhbx5dm39gqczgzxip2dm887v6whhsxqxl9cky"))))))
14585 (home-page "https://bwlewis.github.io/rthreejs")
14586 (synopsis "Interactive 3D scatter plots, networks and globes")
14587 (description
14588 "Create interactive 3D scatter plots, network plots, and globes in R
14589 using the three.js visualization library.")
14590 (license license:expat)))
14591
14592 (define-public r-mlbench
14593 (package
14594 (name "r-mlbench")
14595 (version "2.1-1")
14596 (source
14597 (origin
14598 (method url-fetch)
14599 (uri (cran-uri "mlbench" version))
14600 (sha256
14601 (base32
14602 "1rp035qxfgh5ail92zjh9jh57dj0b8babw3wsg29v8ricpal30bl"))))
14603 (build-system r-build-system)
14604 (home-page "https://cran.r-project.org/web/packages/mlbench/")
14605 (synopsis "Machine learning benchmark problems")
14606 (description
14607 "This package provides a collection of artificial and real-world machine
14608 learning benchmark problems, including, e.g., several data sets from the UCI
14609 repository.")
14610 (license license:gpl2)))
14611
14612 (define-public r-mpm
14613 (package
14614 (name "r-mpm")
14615 (version "1.0-22")
14616 (source
14617 (origin
14618 (method url-fetch)
14619 (uri (cran-uri "mpm" version))
14620 (sha256
14621 (base32
14622 "0wijw8v0wmbfrda5564cmnp788qmlkk21yn5cp5qk8aprm9l1fnk"))))
14623 (build-system r-build-system)
14624 (propagated-inputs
14625 `(("r-kernsmooth" ,r-kernsmooth)
14626 ("r-mass" ,r-mass)))
14627 (home-page "http://mpm.r-forge.r-project.org")
14628 (synopsis "Multivariate projection methods")
14629 (description
14630 "This is a package for exploratory graphical analysis of multivariate
14631 data, specifically gene expression data with different projection methods:
14632 principal component analysis, correspondence analysis, spectral map
14633 analysis.")
14634 (license license:gpl2+)))
14635
14636 (define-public r-png
14637 (package
14638 (name "r-png")
14639 (version "0.1-7")
14640 (source (origin
14641 (method url-fetch)
14642 (uri (cran-uri "png" version))
14643 (sha256
14644 (base32
14645 "0g2mcp55lvvpx4kd3mn225mpbxqcq73wy5qx8b4lyf04iybgysg2"))))
14646 (build-system r-build-system)
14647 (inputs
14648 `(("libpng" ,libpng)
14649 ("zlib" ,zlib)))
14650 (home-page "https://www.rforge.net/png/")
14651 (synopsis "Read and write PNG images")
14652 (description
14653 "This package provides an easy and simple way to read, write and display
14654 bitmap images stored in the PNG format. It can read and write both files and
14655 in-memory raw vectors.")
14656 ;; Any of these GPL versions.
14657 (license (list license:gpl2 license:gpl3))))
14658
14659 (define-public r-ggcorrplot
14660 (package
14661 (name "r-ggcorrplot")
14662 (version "0.1.3")
14663 (source
14664 (origin
14665 (method url-fetch)
14666 (uri (cran-uri "ggcorrplot" version))
14667 (sha256
14668 (base32
14669 "0hi9lz121ya1l2lbm7rqlxg6fs6bvxck396dngnidrhl5fvqb41b"))))
14670 (build-system r-build-system)
14671 (propagated-inputs
14672 `(("r-ggplot2" ,r-ggplot2)
14673 ("r-reshape2" ,r-reshape2)))
14674 (home-page "http://www.sthda.com/english/wiki/ggcorrplot")
14675 (synopsis "Visualization of a correlation matrix using ggplot2")
14676 (description
14677 "The ggcorrplot package can be used to visualize easily a correlation
14678 matrix using ggplot2. It provides a solution for reordering the correlation
14679 matrix and displays the significance level on the plot. It also includes a
14680 function for computing a matrix of correlation p-values.")
14681 (license license:gpl2)))
14682
14683 (define-public r-flexdashboard
14684 (package
14685 (name "r-flexdashboard")
14686 (version "0.5.1.1")
14687 (source
14688 (origin
14689 (method url-fetch)
14690 (uri (cran-uri "flexdashboard" version))
14691 (sha256
14692 (base32
14693 "0fy3nbrr67zqgd44r2mc850s5sp0hzfcw3zqs15m8kxzj1aw067x"))))
14694 (build-system r-build-system)
14695 (arguments
14696 `(#:modules ((guix build utils)
14697 (guix build r-build-system)
14698 (srfi srfi-1)
14699 (srfi srfi-26)
14700 (ice-9 popen)
14701 (ice-9 textual-ports))
14702 #:phases
14703 (modify-phases %standard-phases
14704 (add-after 'unpack 'process-javascript
14705 (lambda* (#:key inputs #:allow-other-keys)
14706 (with-directory-excursion "inst"
14707 ;; Concatenate all components of prism.js
14708 (let ((contents (string-join
14709 (map (lambda (name)
14710 (call-with-input-file
14711 (assoc-ref inputs name)
14712 get-string-all))
14713 (list "js-prism"
14714 "js-prism-r"
14715 "js-prism-line-numbers"))
14716 "\n")))
14717 (call-with-output-file "prism-src.js"
14718 (cut display contents <>)))
14719 (call-with-values
14720 (lambda ()
14721 (unzip2
14722 `(("www/stickytableheaders/jquery.stickytableheaders.js"
14723 "www/stickytableheaders/jquery.stickytableheaders.min.js")
14724 ("www/sly/sly.js"
14725 "www/sly/sly.min.js")
14726 ("prism-src.js"
14727 "www/prism/prism.js")
14728 (,(assoc-ref inputs "js-raphael")
14729 "htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
14730 (,(assoc-ref inputs "js-featherlight")
14731 "www/featherlight/featherlight.min.js"))))
14732 (lambda (sources targets)
14733 (for-each (lambda (source target)
14734 (format #t "Processing ~a --> ~a~%"
14735 source target)
14736 (delete-file target)
14737 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
14738 (call-with-output-file target
14739 (lambda (port)
14740 (dump-port minified port)))))
14741 sources targets))))
14742 #t)))))
14743 (propagated-inputs
14744 `(("r-htmltools" ,r-htmltools)
14745 ("r-htmlwidgets" ,r-htmlwidgets)
14746 ("r-jsonlite" ,r-jsonlite)
14747 ("r-knitr" ,r-knitr)
14748 ("r-rmarkdown" ,r-rmarkdown)
14749 ("r-shiny" ,r-shiny)))
14750 (native-inputs
14751 `(("uglify-js" ,uglify-js)
14752 ("js-raphael"
14753 ,(origin
14754 (method url-fetch)
14755 (uri "https://raw.githubusercontent.com/DmitryBaranovskiy/raphael/v2.1.4/raphael.js")
14756 (sha256
14757 (base32
14758 "1h4c4akrgcj7wra9j1z1rv2406j0yf68y9c0wg8v7w9ibw2iwf1x"))))
14759 ("js-prism"
14760 ,(origin
14761 (method url-fetch)
14762 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/prism.js")
14763 (sha256
14764 (base32
14765 "0gqa9irbp9k8p5r3d98cszajzhjnssnl43nrsc5aiy7ki52z500c"))))
14766 ("js-prism-r"
14767 ,(origin
14768 (method url-fetch)
14769 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/components/prism-r.js")
14770 (sha256
14771 (base32
14772 "1x31glci7wdgr2305njy0bm2lncb0jyn0j1s2g72rqi29xid9aki"))))
14773 ("js-prism-line-numbers"
14774 ,(origin
14775 (method url-fetch)
14776 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/plugins/line-numbers/prism-line-numbers.js")
14777 (sha256
14778 (base32
14779 "1543wgf3iynrilyb27jq8px3h5gvfz5xmdib5ik2ki400c1sl991"))))
14780 ("js-featherlight"
14781 ,(origin
14782 (method url-fetch)
14783 (uri "https://raw.githubusercontent.com/noelboss/featherlight/1.3.4/src/featherlight.js")
14784 (sha256
14785 (base32
14786 "14kkhwzvp8rxq2mrck5i0xcm8v5rqwqhwnmncbng8h4qq42zx3sb"))))))
14787 (home-page "https://rmarkdown.rstudio.com/flexdashboard")
14788 (synopsis "R Markdown format for flexible dashboards")
14789 (description
14790 "This package provides an R Markdown format for converting an R Markdown
14791 document to a grid-oriented dashboard. The dashboard flexibly adapts the size
14792 of its components to the containing web page.")
14793 (license license:expat)))
14794
14795 (define-public r-preseqr
14796 (package
14797 (name "r-preseqr")
14798 (version "4.0.0")
14799 (source
14800 (origin
14801 (method url-fetch)
14802 (uri (cran-uri "preseqR" version))
14803 (sha256
14804 (base32
14805 "1g2rnnmi45649vpy6z45v5i3wxm54s138ajqrzwi3a5r7x3xnhq1"))))
14806 (properties `((upstream-name . "preseqR")))
14807 (build-system r-build-system)
14808 (propagated-inputs
14809 `(("r-polynom" ,r-polynom)))
14810 (home-page "https://cran.r-project.org/web/packages/preseqR/")
14811 (synopsis "Predicting species accumulation curves")
14812 (description
14813 "This package can be used to predict the r-species accumulation
14814 curve (r-SAC), which is the number of species represented at least r times as
14815 a function of the sampling effort. When r = 1, the curve is known as the
14816 species accumulation curve, or the library complexity curve in high-throughput
14817 genomic sequencing. The package includes both parametric and nonparametric
14818 methods, as described by Deng C, et al. (2018).")
14819 (license license:gpl3)))
14820
14821 (define-public r-mapplots
14822 (package
14823 (name "r-mapplots")
14824 (version "1.5.1")
14825 (source
14826 (origin
14827 (method url-fetch)
14828 (uri (cran-uri "mapplots" version))
14829 (sha256
14830 (base32
14831 "18s2y66f8vi8g2r8a25zbgp2xm079r8v8qxv0w71h8krycs6vs9p"))))
14832 (build-system r-build-system)
14833 (home-page "https://cran.r-project.org/web/packages/mapplots/")
14834 (synopsis "Data visualization on maps")
14835 (description
14836 "This package helps you create simple maps; add sub-plots like pie plots
14837 to a map or any other plot; format, plot and export gridded data. The package
14838 was developed for displaying fisheries data but most functions can be used for
14839 more generic data visualisation.")
14840 (license license:gpl2+)))
14841
14842 (define-public r-pmcmr
14843 (package
14844 (name "r-pmcmr")
14845 (version "4.3")
14846 (source
14847 (origin
14848 (method url-fetch)
14849 (uri (cran-uri "PMCMR" version))
14850 (sha256
14851 (base32
14852 "09bvdj2h1086r2cgy3myrhlylplxxlliv8nwx09c8kb1vn02i2ij"))))
14853 (properties `((upstream-name . "PMCMR")))
14854 (build-system r-build-system)
14855 (home-page "https://cran.r-project.org/web/packages/PMCMR/")
14856 (synopsis "Calculate pairwise multiple comparisons of mean rank sums")
14857 (description
14858 "This is a deprecated package for calculating pairwise multiple
14859 comparisons of mean rank sums. This package is superseded by the novel
14860 PMCMRplus package. The PMCMR package is no longer maintained, but kept for
14861 compatibility of dependent packages for some time.")
14862 (license license:gpl3+)))
14863
14864 (define-public r-downloader
14865 (package
14866 (name "r-downloader")
14867 (version "0.4")
14868 (source
14869 (origin
14870 (method url-fetch)
14871 (uri (cran-uri "downloader" version))
14872 (sha256
14873 (base32
14874 "1axggnsc27zzgr7snf41j3zd1vp3nfpmq4zj4d01axc709dyg40q"))))
14875 (build-system r-build-system)
14876 (propagated-inputs
14877 `(("r-digest" ,r-digest)))
14878 (home-page "https://github.com/wch/downloader")
14879 (synopsis "Download files over HTTP and HTTPS")
14880 (description
14881 "This package provides a wrapper for the @code{download.file} function,
14882 making it possible to download files over HTTPS across platforms. The
14883 @code{RCurl} package provides this functionality (and much more) but has
14884 external dependencies. This package has is implemented purely in R.")
14885 (license license:gpl2)))
14886
14887 (define-public r-rex
14888 (package
14889 (name "r-rex")
14890 (version "1.1.2")
14891 (source
14892 (origin
14893 (method url-fetch)
14894 (uri (cran-uri "rex" version))
14895 (sha256
14896 (base32
14897 "0alsadgjgass3wr8y5d247j12qqzg454sc84vpskclrkmz778g5x"))))
14898 (build-system r-build-system)
14899 (propagated-inputs
14900 `(("r-lazyeval" ,r-lazyeval)
14901 ("r-magrittr" ,r-magrittr)))
14902 (home-page "https://github.com/kevinushey/rex")
14903 (synopsis "Friendly regular expressions")
14904 (description
14905 "This package provides a friendly interface for the construction of
14906 regular expressions. Regular expressions are a very powerful feature, however
14907 they are often difficult to interpret. Rex allows you to build complex
14908 regular expressions from human readable expressions")
14909 (license license:expat)))
14910
14911 (define-public r-xmlparsedata
14912 (package
14913 (name "r-xmlparsedata")
14914 (version "1.0.3")
14915 (source
14916 (origin
14917 (method url-fetch)
14918 (uri (cran-uri "xmlparsedata" version))
14919 (sha256
14920 (base32
14921 "0gjr3l5z5dp276lchr2649as1rkj56d2mlvbr66yg393zzw50lsh"))))
14922 (properties `((upstream-name . "xmlparsedata")))
14923 (build-system r-build-system)
14924 (home-page "https://github.com/r-lib/xmlparsedata#readme")
14925 (synopsis "Parse data of @code{R} code as an @code{XML} tree")
14926 (description
14927 "This package provides tools to convert the output of
14928 @code{utils::getParseData()} to an @code{XML} tree, that one can search via
14929 @code{XPath}, and is easier to manipulate in general.")
14930 (license license:expat)))
14931
14932 (define-public r-cyclocomp
14933 (package
14934 (name "r-cyclocomp")
14935 (version "1.1.0")
14936 (source
14937 (origin
14938 (method url-fetch)
14939 (uri (cran-uri "cyclocomp" version))
14940 (sha256
14941 (base32
14942 "0gky3svk02wiajw7nfjh30684h3qxili4bvsab0m7b6cggw6bgyd"))))
14943 (properties `((upstream-name . "cyclocomp")))
14944 (build-system r-build-system)
14945 (propagated-inputs
14946 `(("r-callr" ,r-callr)
14947 ("r-crayon" ,r-crayon)
14948 ("r-desc" ,r-desc)
14949 ("r-remotes" ,r-remotes)
14950 ("r-withr" ,r-withr)))
14951 (home-page "https://github.com/MangoTheCat/cyclocomp")
14952 (synopsis "Cyclomatic complexity of R code")
14953 (description
14954 "Cyclomatic complexity is a software metric, used to indicate the
14955 complexity of a program. It is a quantitative measure of the number of
14956 linearly independent paths through a program's source code. This package
14957 provides tools to compute this metric.")
14958 (license license:expat)))
14959
14960 (define-public r-lintr
14961 (package
14962 (name "r-lintr")
14963 (version "2.0.1")
14964 (source
14965 (origin
14966 (method url-fetch)
14967 (uri (cran-uri "lintr" version))
14968 (sha256
14969 (base32
14970 "14yfh641afg6griaadbdciyr3k94fl55s055qwzghgk5gdsj61zy"))))
14971 (properties `((upstream-name . "lintr")))
14972 (build-system r-build-system)
14973 (propagated-inputs
14974 `(("r-codetools" ,r-codetools)
14975 ("r-crayon" ,r-crayon)
14976 ("r-cyclocomp" ,r-cyclocomp)
14977 ("r-digest" ,r-digest)
14978 ("r-httr" ,r-httr)
14979 ("r-jsonlite" ,r-jsonlite)
14980 ("r-knitr" ,r-knitr)
14981 ("r-rex" ,r-rex)
14982 ("r-rstudioapi" ,r-rstudioapi)
14983 ("r-testthat" ,r-testthat)
14984 ("r-xml2" ,r-xml2)
14985 ("r-xmlparsedata" ,r-xmlparsedata)))
14986 (home-page "https://github.com/jimhester/lintr")
14987 (synopsis "Linter for R code")
14988 (description "This package checks adherence to a given style, syntax
14989 errors and possible semantic issues. It supports on the fly checking of R
14990 code edited with @code{RStudio IDE}, @code{Emacs} and @code{Vim}.")
14991 (license license:expat)))
14992
14993 (define-public r-sctransform
14994 (package
14995 (name "r-sctransform")
14996 (version "0.2.1")
14997 (source
14998 (origin
14999 (method url-fetch)
15000 (uri (cran-uri "sctransform" version))
15001 (sha256
15002 (base32
15003 "07v3lzccsrkh1glfxd1q20r8f8gl9ls5az0s1dvxm4vcls0hlhyn"))))
15004 (build-system r-build-system)
15005 (propagated-inputs
15006 `(("r-future-apply" ,r-future-apply)
15007 ("r-ggplot2" ,r-ggplot2)
15008 ("r-gridextra" ,r-gridextra)
15009 ("r-mass" ,r-mass)
15010 ("r-matrix" ,r-matrix)
15011 ("r-rcpp" ,r-rcpp)
15012 ("r-rcppeigen" ,r-rcppeigen)
15013 ("r-reshape2" ,r-reshape2)))
15014 (home-page "https://github.com/ChristophH/sctransform")
15015 (synopsis "Variance stabilizing transformations for Single Cell UMI Data")
15016 (description
15017 "This package provides a normalization method for single-cell UMI count
15018 data using a variance stabilizing transformation. The transformation is based
15019 on a negative binomial regression model with regularized parameters. As part
15020 of the same regression framework, this package also provides functions for
15021 batch correction, and data correction.")
15022 (license license:gpl3)))
15023
15024 (define-public r-styler
15025 (package
15026 (name "r-styler")
15027 (version "1.3.2")
15028 (source
15029 (origin
15030 (method url-fetch)
15031 (uri (cran-uri "styler" version))
15032 (sha256
15033 (base32
15034 "1waglhsy2c53qjgd2qhlzda3z0lbzbwx9fkrfhac41y6h91mgkrz"))))
15035 (build-system r-build-system)
15036 (propagated-inputs
15037 `(("r-backports" ,r-backports)
15038 ("r-cli" ,r-cli)
15039 ("r-magrittr" ,r-magrittr)
15040 ("r-purrr" ,r-purrr)
15041 ("r-r-cache" ,r-r-cache)
15042 ("r-rematch2" ,r-rematch2)
15043 ("r-rlang" ,r-rlang)
15044 ("r-rprojroot" ,r-rprojroot)
15045 ("r-tibble" ,r-tibble)
15046 ("r-withr" ,r-withr)
15047 ("r-xfun" ,r-xfun)))
15048 (home-page "https://github.com/r-lib/styler")
15049 (synopsis "Non-invasive pretty printing of R code")
15050 (description
15051 "This is a package for pretty-printing R code without changing the user's
15052 formatting intent.")
15053 (license license:gpl3)))
15054
15055 (define-public r-scrime
15056 (package
15057 (name "r-scrime")
15058 (version "1.3.5")
15059 (source
15060 (origin
15061 (method url-fetch)
15062 (uri (cran-uri "scrime" version))
15063 (sha256
15064 (base32
15065 "0y2mh9fsffjf3i15bafpasa17z99c1s75r8g6h4hgcwfgpjx75sx"))))
15066 (build-system r-build-system)
15067 (home-page "https://cran.r-project.org/web/packages/scrime/")
15068 (synopsis "Analysis of high-dimensional categorical data such as SNP data")
15069 (description
15070 "This package provides tools for the analysis of high-dimensional data
15071 developed/implemented at the group \"Statistical Complexity Reduction In
15072 Molecular Epidemiology\" (SCRIME). The main focus is on SNP data, but most of
15073 the functions can also be applied to other types of categorical data.")
15074 (license license:gpl2)))
15075
15076 (define-public r-pbmcapply
15077 (package
15078 (name "r-pbmcapply")
15079 (version "1.5.0")
15080 (source
15081 (origin
15082 (method url-fetch)
15083 (uri (cran-uri "pbmcapply" version))
15084 (sha256
15085 (base32
15086 "0i58gcqpnbyvc448qfgm45b7rpbmrnagsvk1h1hsqchbbicfslnz"))))
15087 (build-system r-build-system)
15088 (home-page "https://github.com/kvnkuang/pbmcapply")
15089 (synopsis "Track the progress of apply procedures with a progress bar")
15090 (description
15091 "This light-weight package helps you track and visualize the progress of
15092 parallel versions of vectorized R functions of the @code{mc*apply} family.")
15093 (license license:expat)))
15094
15095 (define-public r-blme
15096 (package
15097 (name "r-blme")
15098 (version "1.0-4")
15099 (source
15100 (origin
15101 (method url-fetch)
15102 (uri (cran-uri "blme" version))
15103 (sha256
15104 (base32
15105 "1ca2b0248k0fj3lczn9shfjplz1sl4ay4v6djldizp2ch2vwdgy2"))))
15106 (build-system r-build-system)
15107 (propagated-inputs `(("r-lme4" ,r-lme4)))
15108 (home-page "https://github.com/vdorie/blme")
15109 (synopsis "Bayesian linear mixed-effects models")
15110 (description
15111 "This package provides tools for maximum a posteriori estimation for
15112 linear and generalized linear mixed-effects models in a Bayesian setting. It
15113 extends the lme4 package.")
15114 (license license:gpl2+)))
15115
15116 (define-public r-batchtools
15117 (package
15118 (name "r-batchtools")
15119 (version "0.9.13")
15120 (source
15121 (origin
15122 (method url-fetch)
15123 (uri (cran-uri "batchtools" version))
15124 (sha256
15125 (base32
15126 "02bwfinwgn5nl638997javig61jmr0ci0qybmprz13jnvmam1yns"))))
15127 (build-system r-build-system)
15128 (propagated-inputs
15129 `(("r-backports" ,r-backports)
15130 ("r-base64url" ,r-base64url)
15131 ("r-brew" ,r-brew)
15132 ("r-checkmate" ,r-checkmate)
15133 ("r-data-table" ,r-data-table)
15134 ("r-digest" ,r-digest)
15135 ("r-fs" ,r-fs)
15136 ("r-progress" ,r-progress)
15137 ("r-r6" ,r-r6)
15138 ("r-rappdirs" ,r-rappdirs)
15139 ("r-stringi" ,r-stringi)
15140 ("r-withr" ,r-withr)))
15141 (native-inputs
15142 `(("r-knitr" ,r-knitr)))
15143 (home-page "https://github.com/mllg/batchtools")
15144 (synopsis "Tools for computation on batch systems")
15145 (description
15146 "As a successor of the packages BatchJobs and BatchExperiments, this
15147 package provides a parallel implementation of the Map function for high
15148 performance computing systems managed by various schedulers. A multicore and
15149 socket mode allow the parallelization on a local machines, and multiple
15150 machines can be hooked up via SSH to create a makeshift cluster. Moreover,
15151 the package provides an abstraction mechanism to define large-scale computer
15152 experiments in a well-organized and reproducible way.")
15153 (license license:lgpl3)))
15154
15155 (define-public r-clue
15156 (package
15157 (name "r-clue")
15158 (version "0.3-57")
15159 (source
15160 (origin
15161 (method url-fetch)
15162 (uri (cran-uri "clue" version))
15163 (sha256
15164 (base32
15165 "05rdcahawxlxci3fjxihjvvh33wqpxw50sx015165ab4nh3rsdkf"))))
15166 (build-system r-build-system)
15167 (propagated-inputs `(("r-cluster" ,r-cluster)))
15168 (home-page "https://cran.r-project.org/web/packages/clue/")
15169 (synopsis "Tools for analyzing cluster ensembles")
15170 (description "Cluster ensembles are collections of individual solutions to
15171 a given clustering problem which are useful or necessary to consider in a wide
15172 range of applications. This R package provides an extensible computational
15173 environment for creating and analyzing cluster ensembles, with basic data
15174 structures for representing partitions and hierarchies, and facilities for
15175 computing on them, including methods for measuring proximity and obtaining
15176 consensus and secondary clusterings.")
15177 (license license:gpl2)))
15178
15179 (define-public r-sitmo
15180 (package
15181 (name "r-sitmo")
15182 (version "2.0.1")
15183 (source
15184 (origin
15185 (method url-fetch)
15186 (uri (cran-uri "sitmo" version))
15187 (sha256
15188 (base32
15189 "0apdhwy3kxs39agsbvx5vn3xsgb22bf3jrwmr2cmqk9kmxbx740c"))))
15190 (build-system r-build-system)
15191 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
15192 (home-page "https://github.com/coatless/sitmo/")
15193 (synopsis "Parallel pseudo random number generator header files")
15194 (description
15195 "This package provides two high quality and fast PPRNGs that may be used
15196 in an OpenMP parallel environment. In addition, there is a generator for one
15197 dimensional low-discrepancy sequence.")
15198 (license license:expat)))
15199
15200 (define-public r-dqrng
15201 (package
15202 (name "r-dqrng")
15203 (version "0.2.1")
15204 (source
15205 (origin
15206 (method url-fetch)
15207 (uri (cran-uri "dqrng" version))
15208 (sha256
15209 (base32
15210 "0rp8q5zijlvaqmpnkwr314w9w40sj4fz7sqsdgsffcfvn42w2jg1"))))
15211 (build-system r-build-system)
15212 (propagated-inputs
15213 `(("r-bh" ,r-bh)
15214 ("r-rcpp" ,r-rcpp)
15215 ("r-sitmo" ,r-sitmo)))
15216 (home-page "https://www.daqana.org/dqrng")
15217 (synopsis "Fast pseudo random number generators")
15218 (description
15219 "Several fast random number generators are provided as C++ header-only
15220 libraries: the PCG family as well as Xoroshiro128+ and Xoshiro256+.
15221 Additionally, fast functions for generating random numbers according to a
15222 uniform, normal and exponential distribution are included. The latter two use
15223 the Ziggurat algorithm originally proposed by Marsaglia and Tsang. These
15224 functions are exported to R and as a C++ interface and are enabled for use
15225 with the default 64 bit generator from the PCG family, Xoroshiro128+ and
15226 Xoshiro256+ as well as the 64 bit version of the 20 rounds Threefry
15227 engine (Salmon et al., 2011) as provided by the package @code{sitmo}.")
15228 ;; This package includes code under CC0 and Apache 2.0 or Expat, but as a
15229 ;; whole is distributed under the terms of the AGPL 3.
15230 (license license:agpl3)))
15231
15232 (define-public r-dalex
15233 (package
15234 (name "r-dalex")
15235 (version "1.0.1")
15236 (source
15237 (origin
15238 (method url-fetch)
15239 (uri (cran-uri "DALEX" version))
15240 (sha256
15241 (base32
15242 "1jbyn57vn6d281a5y15h5d8ljin8cdb9lr7lbgggc950blyfv4g0"))))
15243 (properties `((upstream-name . "DALEX")))
15244 (build-system r-build-system)
15245 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
15246 (home-page "https://pbiecek.github.io/DALEX/")
15247 (synopsis "Descriptive machine learning explanations")
15248 (description
15249 "Machine Learning models are widely used and have various applications in
15250 classification or regression. Models created with boosting, bagging, stacking
15251 or similar techniques are often used due to their high performance, but such
15252 black-box models usually lack interpretability. The DALEX package contains
15253 various explainers that help to understand the link between input variables
15254 and model output.")
15255 ;; Any version of the GPL
15256 (license license:gpl3+)))
15257
15258 (define-public r-enrichr
15259 (package
15260 (name "r-enrichr")
15261 (version "2.1")
15262 (source
15263 (origin
15264 (method url-fetch)
15265 (uri (cran-uri "enrichR" version))
15266 (sha256
15267 (base32
15268 "0ymhzs9d2wl0s9rvbqc1hqb78mlzwhlc7mmijpfqkm5r720pf6m1"))))
15269 (properties `((upstream-name . "enrichR")))
15270 (build-system r-build-system)
15271 (propagated-inputs
15272 `(("r-httr" ,r-httr)
15273 ("r-rjson" ,r-rjson)))
15274 (home-page "https://cran.r-project.org/web/packages/enrichR/")
15275 (synopsis "R Interface to Enrichr database for analyzing gene sets")
15276 (description
15277 "This package provides an R interface to all Enrichr databases, a
15278 web-based tool for analyzing gene sets and returns any enrichment of common
15279 annotated biological functions.")
15280 (license license:gpl2+)))
15281
15282 (define-public r-plot3d
15283 (package
15284 (name "r-plot3d")
15285 (version "1.3")
15286 (source
15287 (origin
15288 (method url-fetch)
15289 (uri (cran-uri "plot3D" version))
15290 (sha256
15291 (base32
15292 "1jfzndnlci9a975qbcv66jiy2l46hs3f2049654x4jp3i4kyrr5r"))))
15293 (properties `((upstream-name . "plot3D")))
15294 (build-system r-build-system)
15295 (propagated-inputs `(("r-misc3d" ,r-misc3d)))
15296 (home-page "https://cran.r-project.org/web/packages/plot3D")
15297 (synopsis "Plot multi-dimensional data")
15298 (description
15299 "This package provides functions for viewing 2D and 3D data, including
15300 perspective plots, slice plots, surface plots, scatter plots, etc. It
15301 includes data sets from oceanography.")
15302 (license license:gpl3+)))
15303
15304 (define-public r-ggfortify
15305 (package
15306 (name "r-ggfortify")
15307 (version "0.4.9")
15308 (source
15309 (origin
15310 (method url-fetch)
15311 (uri (cran-uri "ggfortify" version))
15312 (sha256
15313 (base32
15314 "1p6knrbyaynaqwd939w09hpf1zz1gn95cb46sfgppl8l98krb2h5"))))
15315 (build-system r-build-system)
15316 (propagated-inputs
15317 `(("r-dplyr" ,r-dplyr)
15318 ("r-ggplot2" ,r-ggplot2)
15319 ("r-gridextra" ,r-gridextra)
15320 ("r-scales" ,r-scales)
15321 ("r-stringr" ,r-stringr)
15322 ("r-tibble" ,r-tibble)
15323 ("r-tidyr" ,r-tidyr)))
15324 (native-inputs
15325 `(("r-knitr" ,r-knitr)))
15326 (home-page "https://github.com/sinhrks/ggfortify")
15327 (synopsis "Data visualization tools for statistical analysis results")
15328 (description
15329 "This package provides unified plotting tools for statistics commonly
15330 used, such as GLM, time series, PCA families, clustering and survival
15331 analysis. The package offers a single plotting interface for these analysis
15332 results and plots in a unified style using the @code{ggplot2} package.")
15333 (license license:gpl2)))
15334
15335 (define-public r-refmanager
15336 (package
15337 (name "r-refmanager")
15338 (version "1.2.12")
15339 (source
15340 (origin
15341 (method url-fetch)
15342 (uri (cran-uri "RefManageR" version))
15343 (sha256
15344 (base32
15345 "1hfxa1qacfryk36mpaqdhdgws5jwxiyy489ikd3wa18bp1wz8dkp"))))
15346 (properties `((upstream-name . "RefManageR")))
15347 (build-system r-build-system)
15348 (propagated-inputs
15349 `(("r-bibtex" ,r-bibtex)
15350 ("r-httr" ,r-httr)
15351 ("r-jsonlite" ,r-jsonlite)
15352 ("r-lubridate" ,r-lubridate)
15353 ("r-plyr" ,r-plyr)
15354 ("r-stringr" ,r-stringr)
15355 ("r-xml2" ,r-xml2)))
15356 (home-page "https://github.com/ropensci/RefManageR/")
15357 (synopsis "Straightforward BibTeX and BibLaTeX bibliography management")
15358 (description
15359 "This package provides tools for importing and working with bibliographic
15360 references. It greatly enhances the @code{bibentry} class by providing a
15361 class @code{BibEntry} which stores BibTeX and BibLaTeX references, supports
15362 UTF-8 encoding, and can be easily searched by any field, by date ranges, and
15363 by various formats for name lists (author by last names, translator by full
15364 names, etc.). Entries can be updated, combined, sorted, printed in a number
15365 of styles, and exported. BibTeX and BibLaTeX @code{.bib} files can be read
15366 into R and converted to @code{BibEntry} objects.")
15367 ;; Any of these licenses may be picked.
15368 (license (list license:gpl2 license:gpl3 license:bsd-3))))
15369
15370 (define-public r-citr
15371 (package
15372 (name "r-citr")
15373 (version "0.3.2")
15374 (source
15375 (origin
15376 (method url-fetch)
15377 (uri (cran-uri "citr" version))
15378 (sha256
15379 (base32
15380 "1qbarvafjb8jgkrnrhh6jw7mcglmjwf7dpdiibxf39jkmlhf7las"))))
15381 (build-system r-build-system)
15382 (propagated-inputs
15383 `(("r-assertthat" ,r-assertthat)
15384 ("r-curl" ,r-curl)
15385 ("r-httr" ,r-httr)
15386 ("r-miniui" ,r-miniui)
15387 ("r-refmanager" ,r-refmanager)
15388 ("r-rstudioapi" ,r-rstudioapi)
15389 ("r-shiny" ,r-shiny)
15390 ("r-shinyjs" ,r-shinyjs)
15391 ("r-yaml" ,r-yaml)))
15392 (home-page "https://github.com/crsh/citr")
15393 (synopsis "RStudio add-in to insert Markdown citations")
15394 (description
15395 "This package provides functions and an RStudio add-in that search a
15396 BibTeX or BibLaTeX file to create and insert formatted Markdown citations into
15397 the current document.")
15398 (license license:expat)))
15399
15400 (define-public r-xgboost
15401 (package
15402 (name "r-xgboost")
15403 (version "1.0.0.2")
15404 (source
15405 (origin
15406 (method url-fetch)
15407 (uri (cran-uri "xgboost" version))
15408 (sha256
15409 (base32
15410 "1ld2w51c5fy3bl0kvjn1iplffc4lmin9s9zz5xx7xsm44d6j6kzd"))))
15411 (build-system r-build-system)
15412 (propagated-inputs
15413 `(("r-data-table" ,r-data-table)
15414 ("r-magrittr" ,r-magrittr)
15415 ("r-matrix" ,r-matrix)
15416 ("r-stringi" ,r-stringi)))
15417 (native-inputs
15418 `(("r-knitr" ,r-knitr)))
15419 (home-page "https://github.com/dmlc/xgboost")
15420 (synopsis "Extreme gradient boosting")
15421 (description
15422 "This package provides an R interface to Extreme Gradient Boosting, which
15423 is an efficient implementation of the gradient boosting framework from Chen
15424 and Guestrin (2016). The package includes efficient linear model solver and
15425 tree learning algorithms. The package can automatically do parallel
15426 computation on a single machine. It supports various objective functions,
15427 including regression, classification and ranking. The package is made to be
15428 extensible, so that users are also allowed to define their own objectives
15429 easily.")
15430 (license license:asl2.0)))
15431
15432 (define-public r-umap
15433 (package
15434 (name "r-umap")
15435 (version "0.2.5.0")
15436 (source
15437 (origin
15438 (method url-fetch)
15439 (uri (cran-uri "umap" version))
15440 (sha256
15441 (base32
15442 "0qp8zbh6fn8kn6q2h2lyjgmq3pr6gqwsd8ymqx25px13zjhxch9d"))))
15443 (build-system r-build-system)
15444 (propagated-inputs
15445 `(("r-openssl" ,r-openssl)
15446 ("r-rcpp" ,r-rcpp)
15447 ("r-reticulate" ,r-reticulate)
15448 ("r-rspectra" ,r-rspectra)))
15449 (native-inputs
15450 `(("r-knitr" ,r-knitr)))
15451 (home-page "https://github.com/tkonopka/umap")
15452 (synopsis "Uniform manifold approximation and projection")
15453 (description
15454 "Uniform manifold approximation and projection is a technique for
15455 dimension reduction. This package provides an interface to the UMAP algorithm
15456 in R, including a translation of the original algorithm into R.")
15457 (license license:expat)))
15458
15459 (define-public r-uwot
15460 (package
15461 (name "r-uwot")
15462 (version "0.1.8")
15463 (source
15464 (origin
15465 (method url-fetch)
15466 (uri (cran-uri "uwot" version))
15467 (sha256
15468 (base32
15469 "1jzh8r1h6f7pw7pb1fr32vn6ai9g10s56ahkq0vi77iznihy1rpd"))))
15470 (build-system r-build-system)
15471 (propagated-inputs
15472 `(("r-dqrng" ,r-dqrng)
15473 ("r-fnn" ,r-fnn)
15474 ("r-irlba" ,r-irlba)
15475 ("r-matrix" ,r-matrix)
15476 ("r-rcpp" ,r-rcpp)
15477 ("r-rcppannoy" ,r-rcppannoy)
15478 ("r-rcppprogress" ,r-rcppprogress)
15479 ("r-rspectra" ,r-rspectra)))
15480 (home-page "https://github.com/jlmelville/uwot")
15481 (synopsis "Uniform manifold approximation and projection")
15482 (description
15483 "This package provides an implementation of the Uniform Manifold
15484 Approximation and Projection dimensionality reduction by McInnes et
15485 al. (2018). It also provides means to transform new data and to carry out
15486 supervised dimensionality reduction. An implementation of the related
15487 LargeVis method of Tang et al. (2016) is also provided.")
15488 (license license:gpl3)))
15489
15490 (define-public r-kableextra
15491 (package
15492 (name "r-kableextra")
15493 (version "1.1.0")
15494 (source
15495 (origin
15496 (method url-fetch)
15497 (uri (cran-uri "kableExtra" version))
15498 (sha256
15499 (base32
15500 "1nicvw06xsf3a1f5c10mih07b76m2v5s5h165vmz0qx6n1a3492i"))))
15501 (properties `((upstream-name . "kableExtra")))
15502 (build-system r-build-system)
15503 (propagated-inputs
15504 `(("r-digest" ,r-digest)
15505 ("r-glue" ,r-glue)
15506 ("r-htmltools" ,r-htmltools)
15507 ("r-knitr" ,r-knitr)
15508 ("r-magrittr" ,r-magrittr)
15509 ("r-readr" ,r-readr)
15510 ("r-rmarkdown" ,r-rmarkdown)
15511 ("r-rstudioapi" ,r-rstudioapi)
15512 ("r-rvest" ,r-rvest)
15513 ("r-scales" ,r-scales)
15514 ("r-stringr" ,r-stringr)
15515 ("r-viridislite" ,r-viridislite)
15516 ("r-webshot" ,r-webshot)
15517 ("r-xml2" ,r-xml2)))
15518 (home-page "https://haozhu233.github.io/kableExtra/")
15519 (synopsis "Construct complex tables with pipe syntax")
15520 (description
15521 "Build complex HTML or LaTeX tables using @code{kable()} from
15522 @code{knitr} and the piping syntax from @code{magrittr}. The function
15523 @code{kable()} is a light weight table generator coming from @code{knitr}.
15524 This package simplifies the way to manipulate the HTML or LaTeX codes
15525 generated by @code{kable()} and allows users to construct complex tables and
15526 customize styles using a readable syntax.")
15527 (license license:expat)))
15528
15529 (define-public r-glasso
15530 (package
15531 (name "r-glasso")
15532 (version "1.11")
15533 (source
15534 (origin
15535 (method url-fetch)
15536 (uri (cran-uri "glasso" version))
15537 (sha256
15538 (base32 "02p3612rpydk195n2qr77lp1j2w8zsw1ckkk98c8angm4r5q8dsc"))))
15539 (build-system r-build-system)
15540 (native-inputs `(("gfortran" ,gfortran)))
15541 (home-page "https://statweb.stanford.edu/~tibs/glasso/")
15542 (synopsis "Graphical Lasso: estimation of Gaussian graphical models")
15543 (description
15544 "This is a package for estimation of a sparse inverse covariance matrix
15545 using a lasso (L1) penalty. Facilities are provided for estimates along a
15546 path of values for the regularization parameter.")
15547 (license license:gpl2)))
15548
15549 (define-public r-rhpcblasctl
15550 (package
15551 (name "r-rhpcblasctl")
15552 (version "0.20-17")
15553 (source
15554 (origin
15555 (method url-fetch)
15556 (uri (cran-uri "RhpcBLASctl" version))
15557 (sha256
15558 (base32
15559 "0iwc06blr5sx7rylwczi2jrha8sk8qs0jklflwpidl0zj1jxdggp"))))
15560 (properties `((upstream-name . "RhpcBLASctl")))
15561 (build-system r-build-system)
15562 (home-page "https://prs.ism.ac.jp/~nakama/Rhpc/")
15563 (synopsis "Control the number of threads on BLAS")
15564 (description
15565 "This package allows you to control the number of threads the BLAS
15566 library uses. It is also possible to control the number of threads in
15567 OpenMP.")
15568 (license license:agpl3+)))
15569
15570 (define-public r-lda
15571 (package
15572 (name "r-lda")
15573 (version "1.4.2")
15574 (source
15575 (origin
15576 (method url-fetch)
15577 (uri (cran-uri "lda" version))
15578 (sha256
15579 (base32
15580 "03r4h5kgr8mfy44p66mfj5bp4k00g8zh4a1mhn46jw14pkhs21jn"))))
15581 (build-system r-build-system)
15582 (home-page "https://cran.r-project.org/web/packages/lda/")
15583 (synopsis "Collapsed Gibbs sampling methods for topic models")
15584 (description
15585 "This package implements @dfn{latent Dirichlet allocation} (LDA) and
15586 related models. This includes (but is not limited to) sLDA, corrLDA, and the
15587 mixed-membership stochastic blockmodel. Inference for all of these models is
15588 implemented via a fast collapsed Gibbs sampler written in C. Utility
15589 functions for reading/writing data typically used in topic models, as well as
15590 tools for examining posterior distributions are also included.")
15591 ;; Any version of the LGPL
15592 (license license:lgpl3+)))
15593
15594 (define-public r-rann-l1
15595 (package
15596 (name "r-rann-l1")
15597 (version "2.5.2")
15598 (source
15599 (origin
15600 (method url-fetch)
15601 (uri (cran-uri "RANN.L1" version))
15602 (sha256
15603 (base32
15604 "1hanh3my84mdr5wy6b89fawqzfc184vff1y65wy4l5ld9qza1n44"))))
15605 (properties `((upstream-name . "RANN.L1")))
15606 (build-system r-build-system)
15607 (home-page "https://github.com/jefferis/RANN/tree/master-L1")
15608 (synopsis "Fast nearest neighbour search using L1 metric")
15609 (description
15610 "This package provides tools to find the k nearest neighbours for every
15611 point in a given dataset in O(N log N) time using Arya and Mount's ANN
15612 library. There is support for approximate as well as exact searches, fixed
15613 radius searches and @code{bd} as well as @code{kd} trees. The distance is
15614 computed using the L1 (Manhattan, taxicab) metric.")
15615 (license license:gpl3+)))
15616
15617 (define-public r-leiden
15618 (package
15619 (name "r-leiden")
15620 (version "0.3.3")
15621 (source
15622 (origin
15623 (method url-fetch)
15624 (uri (cran-uri "leiden" version))
15625 (sha256
15626 (base32
15627 "1hh6bmbz6cpqwl4i94gxylgv9x92zbqdg81r8r4ymfy8c70f3df2"))))
15628 (properties `((upstream-name . "leiden")))
15629 (build-system r-build-system)
15630 (propagated-inputs
15631 `(("r-igraph" ,r-igraph)
15632 ("r-matrix" ,r-matrix)
15633 ("r-reticulate" ,r-reticulate)))
15634 (home-page "https://github.com/TomKellyGenetics/leiden")
15635 (synopsis "R implementation of Leiden clustering algorithm")
15636 (description
15637 "This package implements the Python @code{leidenalg} module to be called
15638 in R. It enables clustering using the Leiden algorithm for partitioning a
15639 graph into communities. See also Traag et al (2018) \"From Louvain to Leiden:
15640 guaranteeing well-connected communities.\" <arXiv:1810.08473>.")
15641 (license license:gpl3)))
15642
15643 (define-public r-patchwork
15644 (package
15645 (name "r-patchwork")
15646 (version "1.0.0")
15647 (source
15648 (origin
15649 (method url-fetch)
15650 (uri (cran-uri "patchwork" version))
15651 (sha256
15652 (base32
15653 "0qrwbcswh7ylrmghi17k6wk7w51cz6mcmvcyyd41hy3m2ywmkywb"))))
15654 (build-system r-build-system)
15655 (propagated-inputs
15656 `(("r-ggplot2" ,r-ggplot2)
15657 ("r-gtable" ,r-gtable)))
15658 (native-inputs
15659 `(("r-knitr" ,r-knitr)))
15660 (home-page "https://github.com/thomasp85/patchwork")
15661 (synopsis "Compose ggplot2 plots")
15662 (description
15663 "The @code{ggplot2} package provides a strong API for sequentially
15664 building up a plot, but does not concern itself with composition of multiple
15665 plots. Patchwork is a package that expands the API to allow for arbitrarily
15666 complex composition of plots by providing mathmatical operators for combining
15667 multiple plots.")
15668 (license license:expat)))
15669
15670 (define-public r-liger
15671 (package
15672 (name "r-liger")
15673 (version "0.4.2")
15674 (source
15675 (origin
15676 (method git-fetch)
15677 (uri (git-reference
15678 (url "https://github.com/MacoskoLab/liger.git")
15679 (commit (string-append "v" version))))
15680 (file-name (git-file-name name version))
15681 (sha256
15682 (base32
15683 "16dzwwcpw6n78pxlc5w3kraigki35ix7zhd2cbx5f3y60bbkhlmx"))
15684 (modules '((guix build utils)))
15685 (snippet
15686 '(begin
15687 (delete-file "inst/java/ModularityOptimizer.jar")
15688 #t))))
15689 (build-system r-build-system)
15690 (arguments
15691 `(#:phases
15692 (modify-phases %standard-phases
15693 (add-after 'unpack 'build-java-part
15694 (lambda* (#:key inputs #:allow-other-keys)
15695 (invoke "unzip" (assoc-ref inputs "optimizer-src"))
15696 (for-each (lambda (file) (invoke "javac" file))
15697 (find-files "." "\\.java$"))
15698 (apply invoke "jar" "cf" "inst/java/ModularityOptimizer.jar"
15699 (find-files "." "\\.class$"))
15700 #t)))))
15701 (propagated-inputs
15702 `(("r-cowplot" ,r-cowplot)
15703 ("r-dosnow" ,r-dosnow)
15704 ("r-dplyr" ,r-dplyr)
15705 ("r-fnn" ,r-fnn)
15706 ("r-foreach" ,r-foreach)
15707 ("r-ggplot2" ,r-ggplot2)
15708 ("r-ggrepel" ,r-ggrepel)
15709 ("r-hmisc" ,r-hmisc)
15710 ("r-ica" ,r-ica)
15711 ("r-irlba" ,r-irlba)
15712 ("r-matrix" ,r-matrix)
15713 ("r-mclust" ,r-mclust)
15714 ("r-patchwork" ,r-patchwork)
15715 ("r-plyr" ,r-plyr)
15716 ("r-rann-l1" ,r-rann-l1)
15717 ("r-rcpp" ,r-rcpp)
15718 ("r-rcpparmadillo" ,r-rcpparmadillo)
15719 ("r-riverplot" ,r-riverplot)
15720 ("r-rtsne" ,r-rtsne)
15721 ("r-snow" ,r-snow)))
15722 (native-inputs
15723 `(("jdk" ,icedtea "jdk")
15724 ;; See https://github.com/MacoskoLab/liger/issues/96
15725 ;; The optimizer is released under the Expat license.
15726 ("optimizer-src"
15727 ,(origin
15728 (method url-fetch)
15729 (uri "http://www.ludowaltman.nl/slm/modularity_optimizer_source.zip")
15730 (sha256
15731 (base32
15732 "01hmm6sapcmldvayknqx2w4cav3qv71mwwkdkwj4qgq6dss09g18"))))
15733 ("unzip" ,unzip)
15734 ("r-knitr" ,r-knitr))) ; for vignettes
15735 (home-page "https://github.com/MacoskoLab/liger")
15736 (synopsis "Integrate and analyze multiple single-cell datasets")
15737 (description
15738 "LIGER is a package for integrating and analyzing multiple single-cell
15739 datasets, developed and maintained by the Macosko lab. It relies on
15740 integrative non-negative matrix factorization to identify shared and
15741 dataset-specific factors.")
15742 (license license:gpl3)))
15743
15744 (define-public r-harmony
15745 (package
15746 (name "r-harmony")
15747 (version "0.1")
15748 (source
15749 (origin
15750 (method git-fetch)
15751 (uri (git-reference
15752 (url "https://github.com/immunogenomics/harmony")
15753 (commit version)))
15754 (file-name (git-file-name name version))
15755 (sha256
15756 (base32
15757 "05r401q09rbr6fqhb9mbd95082cjdi3nag1cv6zn96xkr0f6imq9"))
15758 (modules '((guix build utils)))
15759 (snippet
15760 '(begin
15761 (for-each delete-file '("config.status" "configure"))
15762 #t))))
15763 (build-system r-build-system)
15764 (propagated-inputs
15765 `(("r-cowplot" ,r-cowplot)
15766 ("r-dplyr" ,r-dplyr)
15767 ("r-ggplot2" ,r-ggplot2)
15768 ("r-irlba" ,r-irlba)
15769 ("r-matrix" ,r-matrix)
15770 ("r-rcpp" ,r-rcpp)
15771 ("r-rcpparmadillo" ,r-rcpparmadillo)
15772 ("r-rcppprogress" ,r-rcppprogress)
15773 ("r-rlang" ,r-rlang)
15774 ("r-tibble" ,r-tibble)
15775 ("r-tidyr" ,r-tidyr)))
15776 (native-inputs
15777 `(("autoconf" ,autoconf)))
15778 (home-page "https://github.com/immunogenomics/harmony")
15779 (synopsis "Integration of single cell sequencing data")
15780 (description
15781 "This package provides an implementation of the Harmony algorithm for
15782 single cell integration, described in Korsunsky et al
15783 @url{doi.org/10.1101/461954}. The package includes a standalone Harmony
15784 function and interfaces to external frameworks.")
15785 (license license:gpl3)))
15786
15787 (define-public r-covr
15788 (package
15789 (name "r-covr")
15790 (version "3.5.0")
15791 (source
15792 (origin
15793 (method url-fetch)
15794 (uri (cran-uri "covr" version))
15795 (sha256
15796 (base32 "1pvr95h7jg9hqq1qq1cccy323pkxldrwafl08151cc410499k4fb"))))
15797 (properties `((upstream-name . "covr")))
15798 (build-system r-build-system)
15799 (propagated-inputs
15800 `(("r-crayon" ,r-crayon)
15801 ("r-digest" ,r-digest)
15802 ("r-httr" ,r-httr)
15803 ("r-jsonlite" ,r-jsonlite)
15804 ("r-rex" ,r-rex)
15805 ("r-withr" ,r-withr)
15806 ("r-yaml" ,r-yaml)))
15807 (native-inputs
15808 `(("r-knitr" ,r-knitr))) ; for vignettes
15809 (home-page "https://github.com/r-lib/covr")
15810 (synopsis "Test coverage for R packages")
15811 (description
15812 "Thisp package enables you to track and report code coverage for your
15813 package and (optionally) upload the results to a coverage service. Code
15814 coverage is a measure of the amount of code being exercised by a set of tests.
15815 It is an indirect measure of test quality and completeness. This package is
15816 compatible with any testing methodology or framework and tracks coverage of
15817 both R code and compiled C/C++/FORTRAN code.")
15818 (license license:gpl3)))
15819
15820 (define-public r-systemfonts
15821 (package
15822 (name "r-systemfonts")
15823 (version "0.1.1")
15824 (source
15825 (origin
15826 (method url-fetch)
15827 (uri (cran-uri "systemfonts" version))
15828 (sha256
15829 (base32
15830 "0m0ljid683xcam2f14x7k2zv1yx4npac38a3gfv11vhxfbnpgp0z"))))
15831 (properties `((upstream-name . "systemfonts")))
15832 (build-system r-build-system)
15833 (inputs
15834 `(("fontconfig" ,fontconfig)
15835 ("freetype" ,freetype)
15836 ("zlib" ,zlib)))
15837 (native-inputs
15838 `(("pkg-config" ,pkg-config)))
15839 (home-page "https://github.com/r-lib/systemfonts")
15840 (synopsis "System native font finding")
15841 (description
15842 "This package provides system native access to the font catalogue. As
15843 font handling varies between systems it is difficult to correctly locate
15844 installed fonts across different operating systems. The 'systemfonts' package
15845 provides bindings to the native libraries for finding font files that can then
15846 be used further by e.g. graphic devices.")
15847 (license license:expat)))
15848
15849 (define-public r-graphlayouts
15850 (package
15851 (name "r-graphlayouts")
15852 (version "0.6.0")
15853 (source
15854 (origin
15855 (method url-fetch)
15856 (uri (cran-uri "graphlayouts" version))
15857 (sha256
15858 (base32
15859 "1la016m37kp79zk8p1yx9kaha8y6d4w52w39h0mzv1mfsi6d75w0"))))
15860 (properties `((upstream-name . "graphlayouts")))
15861 (build-system r-build-system)
15862 (propagated-inputs
15863 `(("r-igraph" ,r-igraph)
15864 ("r-rcpp" ,r-rcpp)
15865 ("r-rcpparmadillo" ,r-rcpparmadillo)))
15866 (home-page "https://github.com/schochastics/graphlayouts")
15867 (synopsis "Additional layout algorithms for network visualizations")
15868 (description
15869 "This package provides several layout algorithms to visualize networks
15870 which are not part of the igraph library. Most are based on the concept of
15871 stress majorization by Gansner et al. (2004)
15872 <doi:10.1007/978-3-540-31843-9_25>. Some more specific algorithms
15873 emphasize hidden group structures in networks or focus on specific nodes.")
15874 (license license:expat)))
15875
15876 (define-public r-tidygraph
15877 (package
15878 (name "r-tidygraph")
15879 (version "1.1.2")
15880 (source
15881 (origin
15882 (method url-fetch)
15883 (uri (cran-uri "tidygraph" version))
15884 (sha256
15885 (base32
15886 "1zpsarm74afbc7p5dlyb0whc09670qdcddw1ckb25cfc9hfh0hjn"))))
15887 (properties `((upstream-name . "tidygraph")))
15888 (build-system r-build-system)
15889 (propagated-inputs
15890 `(("r-dplyr" ,r-dplyr)
15891 ("r-igraph" ,r-igraph)
15892 ("r-magrittr" ,r-magrittr)
15893 ("r-pillar" ,r-pillar)
15894 ("r-r6" ,r-r6)
15895 ("r-rcpp" ,r-rcpp)
15896 ("r-rlang" ,r-rlang)
15897 ("r-tibble" ,r-tibble)
15898 ("r-tidyr" ,r-tidyr)))
15899 (home-page "https://github.com/thomasp85/tidygraph")
15900 (synopsis "Tidy API for graph manipulation")
15901 (description
15902 "This package provides a graph implementation that can be thought of as
15903 two tidy data frames describing node and edge data respectively. It provides
15904 an approach to manipulate these two virtual data frames using the API defined
15905 in the @code{dplyr} package, and it also provides tidy interfaces to a lot of
15906 common graph algorithms.")
15907 (license license:expat)))
15908
15909 (define-public r-soupx
15910 (let ((commit "a3354be76fb52fd795be6ddf163cf056c05c6cb8")
15911 (revision "1"))
15912 (package
15913 (name "r-soupx")
15914 (version (git-version "0.3.1" revision commit))
15915 (source
15916 (origin
15917 (method git-fetch)
15918 (uri (git-reference
15919 (url "https://github.com/constantAmateur/SoupX")
15920 (commit commit)))
15921 (file-name (git-file-name name version))
15922 (sha256
15923 (base32
15924 "1zmlyzrl0fz6l79gn2wswid670p88mm3y292is89sa5p3h7frr99"))))
15925 (properties `((upstream-name . "SoupX")))
15926 (build-system r-build-system)
15927 (propagated-inputs
15928 `(("r-ggplot2" ,r-ggplot2)
15929 ("r-matrix" ,r-matrix)
15930 ("r-seurat" ,r-seurat)))
15931 (home-page "https://github.com/constantAmateur/SoupX")
15932 (synopsis "Single cell mRNA Soup eXterminator")
15933 (description
15934 "This package provides a package for quantifying, profiling and
15935 removing cell free mRNA contamination (the \"soup\") from droplet based single
15936 cell RNA-seq experiments.")
15937 (license license:gpl2))))
15938
15939 (define-public r-assertr
15940 (package
15941 (name "r-assertr")
15942 (version "2.7")
15943 (source
15944 (origin
15945 (method url-fetch)
15946 (uri (cran-uri "assertr" version))
15947 (sha256
15948 (base32
15949 "1x868pd4dac1c7b1q5390wqh2f6s50km8nqcpim3nxcj2l4qkqdb"))))
15950 (build-system r-build-system)
15951 (propagated-inputs
15952 `(("r-dplyr" ,r-dplyr)
15953 ("r-mass" ,r-mass)
15954 ("r-rlang" ,r-rlang)))
15955 (native-inputs
15956 `(("r-knitr" ,r-knitr))) ; needed for vignette
15957 (home-page "https://github.com/ropensci/assertr")
15958 (synopsis "Assertive programming for R analysis pipelines")
15959 (description
15960 "This package provides functionality to assert conditions that have to be
15961 met so that errors in data used in analysis pipelines can fail quickly. It is
15962 similar to @code{stopifnot()} but more powerful, friendly, and easier for use
15963 in pipelines.")
15964 (license license:expat)))
15965
15966 (define-public r-parameters
15967 (package
15968 (name "r-parameters")
15969 (version "0.6.0")
15970 (source
15971 (origin
15972 (method url-fetch)
15973 (uri (cran-uri "parameters" version))
15974 (sha256
15975 (base32
15976 "0zin3ikc013hc713n5zs0dbhc3m4nfw1vhc3924z0mrww8r241xn"))))
15977 (properties `((upstream-name . "parameters")))
15978 (build-system r-build-system)
15979 (propagated-inputs
15980 `(("r-bayestestr" ,r-bayestestr)
15981 ("r-insight" ,r-insight)))
15982 (native-inputs
15983 `(("r-knitr" ,r-knitr)))
15984 (home-page "https://cran.r-project.org/web/packages/parameters")
15985 (synopsis "Processing of model parameters")
15986 (description
15987 "This package provides utilities for processing the parameters of various
15988 statistical models. Beyond computing p values, CIs, and other indices for a
15989 wide variety of models, this package implements features like standardization
15990 or bootstrapping of parameters and models, feature reduction (feature
15991 extraction and variable selection) as well as conversion between indices of
15992 effect size.")
15993 (license license:gpl3)))
15994
15995 (define-public r-rgdal
15996 (package
15997 (name "r-rgdal")
15998 (version "1.4-8")
15999 (source
16000 (origin
16001 (method url-fetch)
16002 (uri (cran-uri "rgdal" version))
16003 (sha256
16004 (base32 "1jd691amf3ghznq5im15gvhl6v6k25klpl75m4ngrqf9xlxaa3as"))))
16005 (properties `((upstream-name . "rgdal")))
16006 (build-system r-build-system)
16007 (inputs
16008 `(("gdal" ,gdal)
16009 ("proj.4" ,proj.4)
16010 ("zlib" ,zlib)))
16011 (propagated-inputs
16012 `(("r-sp" ,r-sp)))
16013 (native-inputs
16014 `(("pkg-config" ,pkg-config)))
16015 (home-page "http://rgdal.r-forge.r-project.org")
16016 (synopsis "Bindings for the Geospatial Data Abstraction Library")
16017 (description
16018 "This package provides bindings to the Geospatial Data Abstraction
16019 Library (GDAL) and access to projection/transformation operations from the
16020 PROJ.4 library.")
16021 (license license:gpl2+)))
16022
16023 (define-public r-insol
16024 (package
16025 (name "r-insol")
16026 (version "1.2.1")
16027 (source
16028 (origin
16029 (method url-fetch)
16030 (uri (cran-uri "insol" version))
16031 (sha256
16032 (base32
16033 "1d2vqmbp94ff80mfkmq4a8y12r6ryym8hh1568ip9qbn7snc64v1"))))
16034 (properties `((upstream-name . "insol")))
16035 (build-system r-build-system)
16036 (propagated-inputs
16037 `(("r-raster" ,r-raster)))
16038 (native-inputs
16039 `(("gfortran" ,gfortran)))
16040 (home-page "https://meteoexploration.com/R/insol/index.html")
16041 (synopsis "Tools for calculating solar radiation")
16042 (description
16043 "This package provides functions to compute insolation on tilted
16044 surfaces, computes atmospheric transmittance and related parameters such as:
16045 Earth radius vector, declination, sunset and sunrise, daylength, equation of
16046 time, vector in the direction of the sun, vector normal to surface, and some
16047 atmospheric physics.")
16048 (license license:gpl2+)))
16049
16050 (define-public r-lifecycle
16051 (package
16052 (name "r-lifecycle")
16053 (version "0.2.0")
16054 (source
16055 (origin
16056 (method url-fetch)
16057 (uri (cran-uri "lifecycle" version))
16058 (sha256
16059 (base32
16060 "0912865c6675fsblrfdk6s568krsj1x8qbk1kipy7m05xs6nwx19"))))
16061 (properties `((upstream-name . "lifecycle")))
16062 (build-system r-build-system)
16063 (propagated-inputs
16064 `(("r-glue" ,r-glue)
16065 ("r-rlang" ,r-rlang)))
16066 (native-inputs
16067 `(("r-knitr" ,r-knitr))) ; for vignettes
16068 (home-page "https://github.com/r-lib/lifecycle")
16069 (synopsis "Manage the life cycle of your package functions")
16070 (description
16071 "Manage the life cycle of your exported functions with shared
16072 conventions, documentation badges, and non-invasive deprecation warnings. The
16073 lifecycle package defines four development stages (experimental, maturing,
16074 stable, and questioning) and three deprecation stages (soft-deprecated,
16075 deprecated, and defunct). It makes it easy to insert badges corresponding to
16076 these stages in your documentation. Usage of deprecated functions are
16077 signalled with increasing levels of non-invasive verbosity.")
16078 (license license:gpl3)))
16079
16080 (define-public r-assertable
16081 (package
16082 (name "r-assertable")
16083 (version "0.2.7")
16084 (source
16085 (origin
16086 (method url-fetch)
16087 (uri (cran-uri "assertable" version))
16088 (sha256
16089 (base32
16090 "1npks9rcrnchmd0silq6qrvqkmdkp9fwjkyyvvp1lqjclyxk6vkk"))))
16091 (build-system r-build-system)
16092 (propagated-inputs
16093 `(("r-data-table" ,r-data-table)))
16094 (home-page "https://cran.r-project.org/web/packages/assertable/")
16095 (synopsis "Verbose assertions for tabular data (data.frames and data.tables)")
16096 (description "This package provides simple, flexible assertions on
16097 data.frame or data.table objects with verbose output for vetting. While other
16098 assertion packages apply towards more general use-cases, @code{assertable} is
16099 tailored towards tabular data. It includes functions to check variable names
16100 and values, whether the dataset contains all combinations of a given set of
16101 unique identifiers, and whether it is a certain length. In addition,
16102 @code{assertable} includes utility functions to check the existence of target
16103 files and to efficiently import multiple tabular data files into one
16104 data.table.")
16105 (license license:gpl3)))
16106
16107 (define-public r-quadprog
16108 (package
16109 (name "r-quadprog")
16110 (version "1.5-8")
16111 (source
16112 (origin
16113 (method url-fetch)
16114 (uri (cran-uri "quadprog" version))
16115 (sha256
16116 (base32 "1ka9g8zak8sg4y2xbz93dfrldznlk9qpd4pq9z21cdcdn3b8s4i2"))))
16117 (build-system r-build-system)
16118 (native-inputs
16119 `(("gfortran" ,gfortran)))
16120 (home-page "https://cran.r-project.org/web/packages/quadprog")
16121 (synopsis "Functions to solve quadratic programming problems")
16122 (description
16123 "This package contains routines and documentation for solving quadratic
16124 programming problems.")
16125 (license license:gpl3+)))
16126
16127 (define-public r-desolve
16128 (package
16129 (name "r-desolve")
16130 (version "1.28")
16131 (source
16132 (origin
16133 (method url-fetch)
16134 (uri (cran-uri "deSolve" version))
16135 (sha256
16136 (base32 "0jasvdzig0pzhzspmy20089az19r91xjfb9q6h8gj7c4mr6fymac"))))
16137 (properties `((upstream-name . "deSolve")))
16138 (build-system r-build-system)
16139 (native-inputs
16140 `(("gfortran" ,gfortran)))
16141 (home-page "https://desolve.r-forge.r-project.org/")
16142 (synopsis "Solvers for initial value problems of differential equations")
16143 (description "This package provides functions that solve initial value
16144 problems of a system of first-order @dfn{ordinary differential
16145 equations} (ODE), of @dfn{partial differential equations} (PDE), of
16146 @dfn{differential algebraic equations} (DAE), and of delay differential
16147 equations. The functions provide an interface to the FORTRAN functions
16148 @code{lsoda}, @code{lsodar}, @code{lsode}, @code{lsodes} of the ODEPACK
16149 collection, to the FORTRAN functions @code{dvode} and @code{daspk} and a
16150 C-implementation of solvers of the Runge-Kutta family with fixed or variable
16151 time steps. The package contains routines designed for solving ODEs resulting
16152 from 1-D, 2-D and 3-D partial differential equations that have been converted
16153 to ODEs by numerical differencing.")
16154 (license license:gpl2+)))
16155
16156 (define-public r-pracma
16157 (package
16158 (name "r-pracma")
16159 (version "2.2.9")
16160 (source (origin
16161 (method url-fetch)
16162 (uri (cran-uri "pracma" version))
16163 (sha256
16164 (base32 "07mzhzz73wsjjw1q05l024gcd13hwnzsxf873q9dyhw6x3shzshc"))))
16165 (build-system r-build-system)
16166 (home-page "https://cran.r-project.org/web/packages/pracma/")
16167 (synopsis "Practical numerical math functions")
16168 (description "This package provides functions for numerical analysis and
16169 linear algebra, numerical optimization, differential equations, plus some
16170 special functions. It uses Matlab function names where appropriate to simplify
16171 porting.")
16172 (license license:gpl3+)))
16173
16174 (define-public r-subplex
16175 (package
16176 (name "r-subplex")
16177 (version "1.6")
16178 (source
16179 (origin
16180 (method url-fetch)
16181 (uri (cran-uri "subplex" version))
16182 (sha256
16183 (base32
16184 "1yfbfjvpbhgky7vihw3f4jl41pxpqb39z4nc045d5z7z48bdl18d"))))
16185 (build-system r-build-system)
16186 (native-inputs
16187 `(("gfortran" ,gfortran)))
16188 (home-page "https://cran.r-project.org/web/packages/subplex")
16189 (synopsis "Unconstrained optimization using the subplex algorithm")
16190 (description
16191 "This package implements the Subplex optimization algorithm.
16192 It solves unconstrained optimization problems using a simplex method on
16193 subspaces. The method is well suited for optimizing objective functions that
16194 are noisy or are discontinuous at the solution.")
16195 (license license:gpl3+)))
16196
16197 (define-public r-txtplot
16198 (package
16199 (name "r-txtplot")
16200 (version "1.0-3")
16201 (source
16202 (origin
16203 (method url-fetch)
16204 (uri (cran-uri "txtplot" version))
16205 (sha256
16206 (base32
16207 "1949ab1bzvysdb79g8x1gaknj0ih3d6g63pv9512h5m5l3a6c31h"))))
16208 (build-system r-build-system)
16209 (home-page "https://cran.r-project.org/web/packages/txtplot/")
16210 (synopsis "Text-based plotting")
16211 (description "This package provides functions to produce rudimentary ASCII
16212 graphics directly in the terminal window. This package provides a basic
16213 plotting function (and equivalents of curve, density, acf and barplot) as well
16214 as a boxplot function.")
16215 (license license:lgpl3+)))
16216
16217 (define-public r-bio3d
16218 (package
16219 (name "r-bio3d")
16220 (version "2.4-1")
16221 (source
16222 (origin
16223 (method url-fetch)
16224 (uri (cran-uri "bio3d" version))
16225 (sha256
16226 (base32
16227 "07rw6c2d95gb5myxh31727j0jrchd0xisa3x89jjmf4zzs3vv7v7"))))
16228 (properties `((upstream-name . "bio3d")))
16229 (build-system r-build-system)
16230 (inputs `(("zlib" ,zlib)))
16231 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
16232 (home-page "http://thegrantlab.org/bio3d/")
16233 (synopsis "Biological structure analysis")
16234 (description
16235 "This package provides utilities to process, organize and explore protein
16236 structure, sequence and dynamics data. Features include the ability to read
16237 and write structure, sequence and dynamic trajectory data, perform sequence
16238 and structure database searches, data summaries, atom selection, alignment,
16239 superposition, rigid core identification, clustering, torsion analysis,
16240 distance matrix analysis, structure and sequence conservation analysis, normal
16241 mode analysis, principal component analysis of heterogeneous structure data,
16242 and correlation network analysis from normal mode and molecular dynamics data.
16243 In addition, various utility functions are provided to enable the statistical
16244 and graphical power of the R environment to work with biological sequence and
16245 structural data.")
16246 (license license:gpl2+)))
16247
16248 (define-public r-bios2cor
16249 (package
16250 (name "r-bios2cor")
16251 (version "2.1")
16252 (source
16253 (origin
16254 (method url-fetch)
16255 (uri (cran-uri "Bios2cor" version))
16256 (sha256
16257 (base32
16258 "04wk1cjrrxhpv1kdhd67r1qvjv268xxi0z0r105wy912110z9m6x"))))
16259 (properties `((upstream-name . "Bios2cor")))
16260 (build-system r-build-system)
16261 (propagated-inputs
16262 `(("r-bigmemory" ,r-bigmemory)
16263 ("r-bio3d" ,r-bio3d)
16264 ("r-circular" ,r-circular)
16265 ("r-igraph" ,r-igraph)))
16266 (home-page "https://cran.r-project.org/web/packages/Bios2cor/")
16267 (synopsis "From biological sequences and simulations to correlation analysis")
16268 (description
16269 "This package provides utilities for computation and analysis of
16270 correlation/covariation in multiple sequence alignments and in side chain
16271 motions during molecular dynamics simulations. Features include the
16272 computation of correlation/covariation scores using a variety of scoring
16273 functions between either sequence positions in alignments or side chain
16274 dihedral angles in molecular dynamics simulations and utilities to analyze the
16275 correlation/covariation matrix through a variety of tools including network
16276 representation and principal components analysis. In addition, several
16277 utility functions are based on the R graphical environment to provide friendly
16278 tools for help in data interpretation.")
16279 (license license:gpl2+)))
16280
16281 ;; This package includes minified JavaScript files. When upgrading please
16282 ;; check that there are no new minified JavaScript files.
16283 (define-public r-networkd3
16284 (package
16285 (name "r-networkd3")
16286 (version "0.4")
16287 (source
16288 (origin
16289 (method url-fetch)
16290 (uri (cran-uri "networkD3" version))
16291 (sha256
16292 (base32
16293 "02wxki67drppgfka1is1ykg1f2rxf0x0657c0crj7ipfy62jbf1k"))
16294 (snippet
16295 '(begin
16296 (delete-file "inst/htmlwidgets/lib/d3-4.5.0/d3.min.js")
16297 #t))))
16298 (properties `((upstream-name . "networkD3")))
16299 (build-system r-build-system)
16300 (arguments
16301 `(#:modules ((guix build utils)
16302 (guix build r-build-system)
16303 (srfi srfi-1)
16304 (ice-9 popen))
16305 #:phases
16306 (modify-phases %standard-phases
16307 (add-after 'unpack 'process-javascript
16308 (lambda* (#:key inputs #:allow-other-keys)
16309 (with-directory-excursion "inst/htmlwidgets/lib/"
16310 (call-with-values
16311 (lambda ()
16312 (unzip2
16313 `((,(assoc-ref inputs "d3.v4.js")
16314 "d3-4.5.0/d3.min.js"))))
16315 (lambda (sources targets)
16316 (for-each (lambda (source target)
16317 (format #t "Processing ~a --> ~a~%"
16318 source target)
16319 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
16320 (call-with-output-file target
16321 (lambda (port)
16322 (dump-port minified port)))))
16323 sources targets))))
16324 #t)))))
16325 (native-inputs
16326 `(("uglify-js" ,uglify-js)
16327 ;; NOTE: Make sure that this version of d3 is still valid when
16328 ;; upgrading the package.
16329 ("d3.v4.js"
16330 ,(origin
16331 (method url-fetch)
16332 (uri "https://d3js.org/d3.v4.js")
16333 (sha256
16334 (base32
16335 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))))
16336 (propagated-inputs
16337 `(("r-htmlwidgets" ,r-htmlwidgets)
16338 ("r-igraph" ,r-igraph)
16339 ("r-magrittr" ,r-magrittr)))
16340 (home-page "https://cran.r-project.org/package=networkD3")
16341 (synopsis "D3 JavaScript network graphs from R")
16342 (description
16343 "This package creates D3 JavaScript network, tree, dendrogram, and Sankey
16344 graphs from R.")
16345 (license license:gpl3+)))
16346
16347 (define-public r-aasea
16348 (package
16349 (name "r-aasea")
16350 (version "1.1.0")
16351 (source
16352 (origin
16353 (method url-fetch)
16354 (uri (cran-uri "aaSEA" version))
16355 (sha256
16356 (base32
16357 "0him4r8qyp0xssgrmdxjs45yn4d28h5anv4jyxxbbs9phb0m6j3h"))))
16358 (properties `((upstream-name . "aaSEA")))
16359 (build-system r-build-system)
16360 (propagated-inputs
16361 `(("r-bios2cor" ,r-bios2cor)
16362 ("r-dt" ,r-dt)
16363 ("r-hmisc" ,r-hmisc)
16364 ("r-magrittr" ,r-magrittr)
16365 ("r-networkd3" ,r-networkd3)
16366 ("r-plotly" ,r-plotly)
16367 ("r-seqinr" ,r-seqinr)
16368 ("r-shiny" ,r-shiny)
16369 ("r-shinydashboard" ,r-shinydashboard)))
16370 (home-page "https://cran.r-project.org/web/packages/aaSEA/")
16371 (synopsis "Amino acid substitution effect analyzer")
16372 (description
16373 "Given a protein multiple sequence alignment, it is a daunting task to
16374 assess the effects of substitutions along sequence length. The aaSEA package
16375 is intended to help researchers to rapidly analyze property changes caused by
16376 single, multiple and correlated amino acid substitutions in proteins.")
16377 (license license:gpl3)))
16378
16379 (define-public r-abacus
16380 (package
16381 (name "r-abacus")
16382 (version "1.0.0")
16383 (source
16384 (origin
16385 (method url-fetch)
16386 (uri (cran-uri "ABACUS" version))
16387 (sha256
16388 (base32
16389 "0m1dnkwjr1522l9ddbzzx7ayxvli17sbmk6s28adpmzzjwh2kd1i"))))
16390 (properties `((upstream-name . "ABACUS")))
16391 (build-system r-build-system)
16392 (propagated-inputs
16393 `(("r-ggplot2" ,r-ggplot2)
16394 ("r-shiny" ,r-shiny)))
16395 (home-page "https://shiny.abdn.ac.uk/Stats/apps/")
16396 (synopsis "Apps-based activities for communicating and understanding statistics")
16397 (description
16398 "This package provides a set of Shiny apps for effective communication
16399 and understanding in statistics. The current version includes properties of
16400 normal distribution, properties of sampling distribution, one-sample z and t
16401 tests, two samples independent (unpaired) t test and analysis of variance.")
16402 (license license:gpl3)))
16403
16404 (define-public r-abc-rap
16405 (package
16406 (name "r-abc-rap")
16407 (version "0.9.0")
16408 (source
16409 (origin
16410 (method url-fetch)
16411 (uri (cran-uri "ABC.RAP" version))
16412 (sha256
16413 (base32
16414 "1kdspln17v0krvahcd55vib4dv5azp60b3r1zf489x10qqbp1mxk"))))
16415 (properties `((upstream-name . "ABC.RAP")))
16416 (build-system r-build-system)
16417 (home-page "https://cran.r-project.org/web/packages/ABC.RAP/")
16418 (synopsis "Array-based CpG region analysis pipeline")
16419 (description
16420 "This package aims to identify candidate genes that are differentially
16421 methylated between cases and controls. It applies Student's t-test and delta
16422 beta analysis to identify candidate genes containing multiple CpG sites.")
16423 (license license:gpl3)))
16424
16425 (define-public r-abcadm
16426 (package
16427 (name "r-abcadm")
16428 (version "1.0")
16429 (source
16430 (origin
16431 (method url-fetch)
16432 (uri (cran-uri "abcADM" version))
16433 (sha256
16434 (base32
16435 "0vcabnnnwc0psv9v3rda5aap9s8cq1pjh02zva3ki64hlavf2a10"))))
16436 (properties `((upstream-name . "abcADM")))
16437 (build-system r-build-system)
16438 (propagated-inputs
16439 `(("r-bh" ,r-bh)
16440 ("r-rcpp" ,r-rcpp)))
16441 (home-page "https://cran.r-project.org/web/packages/abcADM/")
16442 (synopsis "Fit accumulated damage models and estimate reliability using ABC")
16443 (description
16444 "This package provides tools to estimate parameters of accumulated
16445 damage (load duration) models based on failure time data under a Bayesian
16446 framework, using @dfn{Approximate Bayesian Computation} (ABC), and to assess
16447 long-term reliability under stochastic load profiles.")
16448 (license license:gpl3)))
16449
16450 (define-public r-rglpk
16451 (package
16452 (name "r-rglpk")
16453 (version "0.6-4")
16454 (source
16455 (origin
16456 (method url-fetch)
16457 (uri (cran-uri "Rglpk" version))
16458 (sha256
16459 (base32
16460 "19mzpyimzq9zqnbi05j79b2di3nzaln8swggs9p8sqdr60qvr3d2"))))
16461 (properties `((upstream-name . "Rglpk")))
16462 (build-system r-build-system)
16463 (propagated-inputs
16464 `(("r-slam" ,r-slam)))
16465 (inputs
16466 `(("glpk" ,glpk)))
16467 (home-page "https://r-forge.r-project.org/projects/rglp/")
16468 (synopsis "R interface to the GNU Linear Programming Kit")
16469 (description
16470 "This package provides an R interface to the GNU Linear Programming Kit,
16471 software for solving large-scale @dfn{linear programming} (LP), @dfn{mixed
16472 integer linear programming} (MILP) and other related problems.")
16473 ;; Either license
16474 (license (list license:gpl2 license:gpl3))))
16475
16476 (define-public r-abcdefba
16477 (package
16478 (name "r-abcdefba")
16479 (version "0.4")
16480 (source
16481 (origin
16482 (method url-fetch)
16483 (uri (cran-uri "abcdeFBA" version))
16484 (sha256
16485 (base32
16486 "1rxjripy8v6bxi25vdfjnbk24zkmf752qbl73cin6nvnqflwxkx4"))))
16487 (properties `((upstream-name . "abcdeFBA")))
16488 (build-system r-build-system)
16489 (propagated-inputs
16490 `(("r-corrplot" ,r-corrplot)
16491 ("r-lattice" ,r-lattice)
16492 ("r-rgl" ,r-rgl)
16493 ("r-rglpk" ,r-rglpk)))
16494 (home-page "https://cran.r-project.org/web/packages/abcdeFBA/")
16495 (synopsis "A-Biologist-Can-Do-Everything of Flux Balance Analysis with this package")
16496 (description
16497 "This package provides functions for Constraint Based Simulation using
16498 Flux Balance Analysis and informative analysis of the data generated during
16499 simulation.")
16500 (license license:gpl2)))
16501
16502 (define-public r-abcrlda
16503 (package
16504 (name "r-abcrlda")
16505 (version "1.0.2")
16506 (source
16507 (origin
16508 (method url-fetch)
16509 (uri (cran-uri "abcrlda" version))
16510 (sha256
16511 (base32
16512 "0zjdrbg3zx0znqnh0dvmifs9c12b8vjhbaf3nbwab9xh25nsmg75"))))
16513 (properties `((upstream-name . "abcrlda")))
16514 (build-system r-build-system)
16515 (home-page "https://ieeexplore.ieee.org/document/8720003/")
16516 (synopsis "Asymptotically bias-corrected regularized linear discriminant analysis")
16517 (description
16518 "This package offers methods to perform @dfn{asymptotically
16519 bias-corrected regularized linear discriminant analysis} (ABC_RLDA) for
16520 cost-sensitive binary classification. The bias-correction is an estimate of
16521 the bias term added to regularized discriminant analysis that minimizes the
16522 overall risk.")
16523 (license license:gpl3)))
16524
16525 (define-public r-abemus
16526 (package
16527 (name "r-abemus")
16528 (version "1.0.1")
16529 (source
16530 (origin
16531 (method url-fetch)
16532 (uri (cran-uri "abemus" version))
16533 (sha256
16534 (base32
16535 "1dhllb184byp1yl15rg2w02zgw3iajag7cxshirg47mnmm7n70bb"))))
16536 (properties `((upstream-name . "abemus")))
16537 (build-system r-build-system)
16538 (propagated-inputs
16539 `(("r-data-table" ,r-data-table)))
16540 (home-page "https://cran.r-project.org/web/packages/abemus/")
16541 (synopsis "Adaptive base error model in ultra-deep sequencing data")
16542 (description
16543 "This package provides an implementation of @dfn{Adaptive Base Error
16544 Model in Ultra-deep Sequencing data} (ABEMUS), which combines
16545 platform-specific genetic knowledge and empirical signal to readily detect and
16546 quantify somatic @dfn{single nucleotide variants} (SNVs) in @dfn{circulating
16547 cell free DNA} (cfDNA).")
16548 (license license:gpl3)))
16549
16550 ;; This package includes minified JavaScript files. When upgrading please
16551 ;; check that there are no new minified JavaScript files.
16552 (define-public r-rintrojs
16553 (package
16554 (name "r-rintrojs")
16555 (version "0.2.2")
16556 (source
16557 (origin
16558 (method url-fetch)
16559 (uri (cran-uri "rintrojs" version))
16560 (sha256
16561 (base32
16562 "0vyqb3pyrh12saddar71ac9csn2vkd2j8ln6ygpqys8ky1lc3427"))))
16563 (properties `((upstream-name . "rintrojs")))
16564 (build-system r-build-system)
16565 (arguments
16566 `(#:modules ((guix build utils)
16567 (guix build r-build-system)
16568 (srfi srfi-1)
16569 (ice-9 popen))
16570 #:phases
16571 (modify-phases %standard-phases
16572 (add-after 'unpack 'process-javascript
16573 (lambda* (#:key inputs #:allow-other-keys)
16574 (with-directory-excursion "inst/javascript/introjs/"
16575 (call-with-values
16576 (lambda ()
16577 (unzip2
16578 `((,(assoc-ref inputs "intro.js")
16579 "intro.min.js"))))
16580 (lambda (sources targets)
16581 (for-each (lambda (source target)
16582 (format #t "Processing ~a --> ~a~%"
16583 source target)
16584 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
16585 (call-with-output-file target
16586 (lambda (port)
16587 (dump-port minified port)))))
16588 sources targets))))
16589 #t)))))
16590 (native-inputs
16591 `(("uglify-js" ,uglify-js)
16592 ("intro.js"
16593 ,(origin
16594 (method url-fetch)
16595 (uri "https://raw.githubusercontent.com/usablica/intro.js/v2.9.3/intro.js")
16596 (sha256
16597 (base32
16598 "1qf8n1sfy9qkiqqnfgg0xbhmfgh0g3mqsjas8qhz230h3zzlzxj8"))))))
16599 (propagated-inputs
16600 `(("r-jsonlite" ,r-jsonlite)
16601 ("r-shiny" ,r-shiny)))
16602 (home-page "https://github.com/carlganz/rintrojs")
16603 (synopsis "Wrapper for the Intro.js library")
16604 (description
16605 "This package provides a wrapper for the @url{http://www.introjs.com,
16606 Intro.js} library. This package makes it easy to include step-by-step
16607 introductions, and clickable hints in a Shiny application. It supports both
16608 static introductions in the UI, and programmatic introductions from the
16609 server-side.")
16610 (license license:agpl3+)))
16611
16612 (define-public r-sysfonts
16613 (package
16614 (name "r-sysfonts")
16615 (version "0.8")
16616 (source
16617 (origin
16618 (method url-fetch)
16619 (uri (cran-uri "sysfonts" version))
16620 (sha256
16621 (base32
16622 "0wng902plryf2d8fc7k7m3jx11acz51kb2d91cqbyhq7xpk06z43"))))
16623 (properties `((upstream-name . "sysfonts")))
16624 (build-system r-build-system)
16625 (inputs
16626 `(("freetype" ,freetype)
16627 ("libpng" ,libpng)
16628 ("zlib" ,zlib)))
16629 (native-inputs
16630 `(("pkg-config" ,pkg-config)))
16631 (home-page "https://github.com/yixuan/sysfonts")
16632 (synopsis "Loading fonts into R")
16633 (description
16634 "This is a package to simplify loading of system fonts and Google Fonts
16635 into R, in order to support other packages.")
16636 (license license:gpl2)))
16637
16638 (define-public r-showtextdb
16639 (package
16640 (name "r-showtextdb")
16641 (version "2.0")
16642 (source
16643 (origin
16644 (method url-fetch)
16645 (uri (cran-uri "showtextdb" version))
16646 (sha256
16647 (base32
16648 "1qwwj9x2jvadvwn60h75k99c9xi7yhqjsgaakahz5paxgj583bsh"))))
16649 (properties `((upstream-name . "showtextdb")))
16650 (build-system r-build-system)
16651 (propagated-inputs
16652 `(("r-sysfonts" ,r-sysfonts)))
16653 (home-page "https://cran.r-project.org/web/packages/showtextdb/")
16654 (synopsis "Font files for the 'showtext' package")
16655 (description
16656 "This package provides font files that can be used by the @code{showtext}
16657 package.")
16658 (license license:asl2.0)))
16659
16660 (define-public r-showtext
16661 (package
16662 (name "r-showtext")
16663 (version "0.7-1")
16664 (source
16665 (origin
16666 (method url-fetch)
16667 (uri (cran-uri "showtext" version))
16668 (sha256
16669 (base32
16670 "0a5gg72bfrc7wm0phj1aflj1wc08kfi81ac32na6ya9s2ivyimw5"))))
16671 (properties `((upstream-name . "showtext")))
16672 (build-system r-build-system)
16673 (inputs
16674 `(("freetype" ,freetype)
16675 ("libpng" ,libpng)
16676 ("zlib" ,zlib)))
16677 (propagated-inputs
16678 `(("r-showtextdb" ,r-showtextdb)
16679 ("r-sysfonts" ,r-sysfonts)))
16680 (native-inputs `(("pkg-config" ,pkg-config)))
16681 (home-page "https://github.com/yixuan/showtext")
16682 (synopsis "Using fonts more easily in R graphs")
16683 (description
16684 "This package aims to make it easy to use various types of
16685 fonts (TrueType, OpenType, Type 1, web fonts, etc.) in R graphs, and supports
16686 most output formats of R graphics including PNG, PDF and SVG. Text glyphs
16687 will be converted into polygons or raster images, hence after the plot has
16688 been created, it no longer relies on the font files. No external software
16689 such as Ghostscript is needed to use this package.")
16690 (license license:asl2.0)))
16691
16692 (define-public r-emojifont
16693 (package
16694 (name "r-emojifont")
16695 (version "0.5.3")
16696 (source
16697 (origin
16698 (method url-fetch)
16699 (uri (cran-uri "emojifont" version))
16700 (sha256
16701 (base32
16702 "1cdrrl3hvrs8rskyy6zgr7q2mmg8yb9k8sld1m64zsp7y009g19k"))))
16703 (properties `((upstream-name . "emojifont")))
16704 (build-system r-build-system)
16705 (propagated-inputs
16706 `(("r-ggplot2" ,r-ggplot2)
16707 ("r-proto" ,r-proto)
16708 ("r-showtext" ,r-showtext)
16709 ("r-sysfonts" ,r-sysfonts)))
16710 (home-page "https://guangchuangyu.github.io/emojifont")
16711 (synopsis "Emoji and Font Awesome in R graphics")
16712 (description
16713 "This package enables the use of emoji and the Font Awesome glyphs in
16714 both base and ggplot2 graphics.")
16715 (license license:artistic2.0)))
16716
16717 (define-public r-abstractr
16718 (package
16719 (name "r-abstractr")
16720 (version "0.1.0")
16721 (source
16722 (origin
16723 (method url-fetch)
16724 (uri (cran-uri "abstractr" version))
16725 (sha256
16726 (base32
16727 "1ymwp7syrynwd4i8aj2x5n8jdi9d96fjzl6jb09n0bnr5fgl7vig"))))
16728 (properties `((upstream-name . "abstractr")))
16729 (build-system r-build-system)
16730 (propagated-inputs
16731 `(("r-colourpicker" ,r-colourpicker)
16732 ("r-emojifont" ,r-emojifont)
16733 ("r-ggplot2" ,r-ggplot2)
16734 ("r-gridextra" ,r-gridextra)
16735 ("r-rintrojs" ,r-rintrojs)
16736 ("r-shiny" ,r-shiny)
16737 ("r-shinythemes" ,r-shinythemes)))
16738 (home-page "https://matt-kumar.shinyapps.io/portfolio")
16739 (synopsis "R-Shiny application for creating visual abstracts")
16740 (description
16741 "This package provides an R Shiny application to create visual abstracts
16742 for original research. A variety of user defined options and formatting are
16743 included.")
16744 (license license:gpl3)))
16745
16746 (define-public r-abtest
16747 (package
16748 (name "r-abtest")
16749 (version "0.2.0")
16750 (source
16751 (origin
16752 (method url-fetch)
16753 (uri (cran-uri "abtest" version))
16754 (sha256
16755 (base32
16756 "1ky3cf827kj24bhcpk00v5zl5jdkii1gca0x81ay1cjkzfispgws"))))
16757 (properties `((upstream-name . "abtest")))
16758 (build-system r-build-system)
16759 (propagated-inputs
16760 `(("r-matrix" ,r-matrix)
16761 ("r-mvtnorm" ,r-mvtnorm)
16762 ("r-plotrix" ,r-plotrix)
16763 ("r-rcolorbrewer" ,r-rcolorbrewer)
16764 ("r-rcpp" ,r-rcpp)
16765 ("r-sn" ,r-sn)
16766 ("r-truncnorm" ,r-truncnorm)
16767 ("r-vgam" ,r-vgam)))
16768 (home-page "https://cran.r-project.org/web/packages/abtest/")
16769 (synopsis "Bayesian A/B testing")
16770 (description
16771 "This package provides functions for Bayesian A/B testing including prior
16772 elicitation options based on Kass and Vaidyanathan (1992)
16773 @url{doi:10.1111/j.2517-6161.1992.tb01868.x}.")
16774 (license license:gpl2+)))
16775
16776 (define-public r-accept
16777 (package
16778 (name "r-accept")
16779 (version "0.7.1")
16780 (source
16781 (origin
16782 (method url-fetch)
16783 (uri (cran-uri "accept" version))
16784 (sha256
16785 (base32
16786 "0pn8q0jsi0nb2mm2kv6sjczflflshhy55y7nqqnk70yx9f6wm83y"))))
16787 (properties `((upstream-name . "accept")))
16788 (build-system r-build-system)
16789 (propagated-inputs
16790 `(("r-dplyr" ,r-dplyr)
16791 ("r-extrafont" ,r-extrafont)
16792 ("r-mass" ,r-mass)
16793 ("r-plotly" ,r-plotly)
16794 ("r-stringr" ,r-stringr)
16795 ("r-viridis" ,r-viridis)))
16796 (home-page "https://cran.r-project.org/web/packages/accept/")
16797 (synopsis "Acute COPD Exacerbation Prediction Tool (ACCEPT)")
16798 (description
16799 "This package allows clinicians to predict the rate and severity of
16800 future acute exacerbation in @dfn{Chronic Obstructive Pulmonary
16801 Disease} (COPD) patients, based on the clinical prediction model published in
16802 Adibi et al. (2019) @url{doi:10.1101/651901}.")
16803 (license license:gpl3)))
16804
16805 (define-public r-smpracticals
16806 (package
16807 (name "r-smpracticals")
16808 (version "1.4-3")
16809 (source
16810 (origin
16811 (method url-fetch)
16812 (uri (cran-uri "SMPracticals" version))
16813 (sha256
16814 (base32
16815 "0zxq84f9i3b86xx6msb25b61gyj9k09iab2b7wg4d93yas9qzayf"))))
16816 (properties `((upstream-name . "SMPracticals")))
16817 (build-system r-build-system)
16818 (propagated-inputs
16819 `(("r-ellipse" ,r-ellipse)
16820 ("r-mass" ,r-mass)
16821 ("r-nlme" ,r-nlme)
16822 ("r-survival" ,r-survival)))
16823 (home-page "http://statwww.epfl.ch/davison/SM/")
16824 (synopsis "Practicals for use with Davison (2003) Statistical Models")
16825 (description
16826 "This package contains the datasets and a few functions for use with the
16827 practicals outlined in Appendix A of the book Statistical Models (Davison,
16828 2003, Cambridge University Press). The practicals themselves can be found at
16829 @url{http://statwww.epfl.ch/davison/SM/}.")
16830 (license license:gpl2+)))
16831
16832 (define-public r-fgui
16833 (package
16834 (name "r-fgui")
16835 (version "1.0-8")
16836 (source
16837 (origin
16838 (method url-fetch)
16839 (uri (cran-uri "fgui" version))
16840 (sha256
16841 (base32
16842 "024fzd1c7iwqprn26hwjb9l2qlvvyzl449d7iixy0x69djwsrysv"))))
16843 (properties `((upstream-name . "fgui")))
16844 (build-system r-build-system)
16845 (home-page
16846 "https://sites.google.com/site/thomashoffmannproject/software/fgui")
16847 (synopsis "Create GUI for R functions")
16848 (description
16849 "Rapidly create a GUI for a function you created by automatically
16850 creating widgets for arguments of the function. This package automatically
16851 parses help routines for context-sensitive help to these arguments. The
16852 interface is essentially a wrapper to some Tcl/Tk routines to both simplify
16853 and facilitate GUI creation. More advanced Tcl/Tk routines/GUI objects can be
16854 incorporated into the interface for greater customization for the more
16855 experienced.")
16856 ;; Any version of the GPL.
16857 (license (list license:gpl2+ license:gpl3+))))
16858
16859 (define-public r-tcltk2
16860 (package
16861 (name "r-tcltk2")
16862 (version "1.2-11")
16863 (source
16864 (origin
16865 (method url-fetch)
16866 (uri (cran-uri "tcltk2" version))
16867 (sha256
16868 (base32
16869 "1ibxld379600xx7kiqq3fck083s8psry12859980218rnzikl65d"))))
16870 (properties `((upstream-name . "tcltk2")))
16871 (build-system r-build-system)
16872 (inputs
16873 `(("tcl" ,tcl)
16874 ("tk" ,tk)))
16875 (home-page "https://www.sciviews.org/SciViews-R")
16876 (synopsis "Tcl/Tk additions")
16877 (description
16878 "This package provides a series of additional Tcl commands and Tk widgets
16879 with style and various functions to supplement the tcltk package")
16880 (license license:lgpl3)))
16881
16882 (define-public r-accrual
16883 (package
16884 (name "r-accrual")
16885 (version "1.3")
16886 (source
16887 (origin
16888 (method url-fetch)
16889 (uri (cran-uri "accrual" version))
16890 (sha256
16891 (base32
16892 "11clm9s5c5518nmp6hd6pjnp0s28y92b2i2x0xgj4j5g816p4j3z"))))
16893 (properties `((upstream-name . "accrual")))
16894 (build-system r-build-system)
16895 (propagated-inputs
16896 `(("r-fgui" ,r-fgui)
16897 ("r-smpracticals" ,r-smpracticals)
16898 ("r-tcltk2" ,r-tcltk2)))
16899 (home-page "https://cran.r-project.org/web/packages/accrual/")
16900 (synopsis "Bayesian accrual prediction")
16901 (description
16902 "Subject recruitment for medical research is challenging. Slow patient
16903 accrual leads to delay in research. Accrual monitoring during the process of
16904 recruitment is critical. Researchers need reliable tools to manage the
16905 accrual rate. This package provides an implementation of a Bayesian method
16906 that integrates researcher's experience on previous trials and data from the
16907 current study, providing reliable prediction on accrual rate for clinical
16908 studies. It provides functions for Bayesian accrual prediction which can be
16909 easily used by statisticians and clinical researchers.")
16910 (license license:gpl2)))
16911
16912 (define-public r-accrued
16913 (package
16914 (name "r-accrued")
16915 (version "1.4.1")
16916 (source
16917 (origin
16918 (method url-fetch)
16919 (uri (cran-uri "accrued" version))
16920 (sha256
16921 (base32
16922 "05g1jb5914z18rcai1ahn7nihn27vr2rnadwv94gc1j7ivvikvs5"))))
16923 (properties `((upstream-name . "accrued")))
16924 (build-system r-build-system)
16925 (home-page "https://cran.r-project.org/web/packages/accrued/")
16926 (synopsis "Data quality visualization tools for partially accruing data")
16927 (description
16928 "This is a package for visualizing data quality of partially accruing
16929 data.")
16930 (license license:gpl3)))
16931
16932 (define-public r-mda
16933 (package
16934 (name "r-mda")
16935 (version "0.4-10")
16936 (source
16937 (origin
16938 (method url-fetch)
16939 (uri (cran-uri "mda" version))
16940 (sha256
16941 (base32
16942 "19g6kn6g0shidrjfffklbmzc5w7mcimrxhagx4nmpslg59ibqdkh"))))
16943 (properties `((upstream-name . "mda")))
16944 (build-system r-build-system)
16945 (propagated-inputs `(("r-class" ,r-class)))
16946 (native-inputs `(("gfortran" ,gfortran)))
16947 (home-page "https://cran.r-project.org/web/packages/mda/")
16948 (synopsis "Mixture and flexible discriminant analysis")
16949 (description
16950 "This is a package for mixture and flexible discriminant analysis,
16951 @dfn{multivariate adaptive regression splines} (MARS), BRUTO, and so on.")
16952 (license license:gpl2)))
16953
16954 (define-public r-elasticnet
16955 (package
16956 (name "r-elasticnet")
16957 (version "1.1.1")
16958 (source
16959 (origin
16960 (method url-fetch)
16961 (uri (cran-uri "elasticnet" version))
16962 (sha256
16963 (base32
16964 "0p9dplnsp28z4s2fl6afbwrgd0aj339fak8mmndicmrh7bb7rpmb"))))
16965 (properties `((upstream-name . "elasticnet")))
16966 (build-system r-build-system)
16967 (propagated-inputs
16968 `(("r-lars" ,r-lars)))
16969 (home-page "http://users.stat.umn.edu/~zouxx019/")
16970 (synopsis "Elastic-Net for sparse estimation and sparse PCA")
16971 (description
16972 "This package provides functions for fitting the entire solution path of
16973 the Elastic-Net and also provides functions for estimating sparse Principal
16974 Components. The Lasso solution paths can be computed by the same function.")
16975 (license license:gpl2+)))
16976
16977 (define-public r-sparselda
16978 (package
16979 (name "r-sparselda")
16980 (version "0.1-9")
16981 (source
16982 (origin
16983 (method url-fetch)
16984 (uri (cran-uri "sparseLDA" version))
16985 (sha256
16986 (base32
16987 "1k3sw9kc40yxnfss4vrsx34qxmv8ssddyhbfjhxrdldvblhbwchb"))))
16988 (properties `((upstream-name . "sparseLDA")))
16989 (build-system r-build-system)
16990 (propagated-inputs
16991 `(("r-elasticnet" ,r-elasticnet)
16992 ("r-mass" ,r-mass)
16993 ("r-mda" ,r-mda)))
16994 (home-page "https://www.imm.dtu.dk/~lkhc/")
16995 (synopsis "Sparse discriminant analysis")
16996 (description
16997 "This package performs sparse linear discriminant analysis for Gaussians
16998 and mixture of Gaussian models.")
16999 (license license:gpl2+)))
17000
17001 (define-public r-accsda
17002 (package
17003 (name "r-accsda")
17004 (version "1.0.0")
17005 (source
17006 (origin
17007 (method url-fetch)
17008 (uri (cran-uri "accSDA" version))
17009 (sha256
17010 (base32
17011 "0sgxy5y8kkc1n35657kifwfjsba7y5m1vbr7rkk5lmbpkzahqm61"))))
17012 (properties `((upstream-name . "accSDA")))
17013 (build-system r-build-system)
17014 (propagated-inputs
17015 `(("r-ggplot2" ,r-ggplot2)
17016 ("r-ggthemes" ,r-ggthemes)
17017 ("r-gridextra" ,r-gridextra)
17018 ("r-mass" ,r-mass)
17019 ("r-rarpack" ,r-rarpack)
17020 ("r-sparselda" ,r-sparselda)))
17021 (home-page "https://github.com/gumeo/accSDA/wiki")
17022 (synopsis "Accelerated sparse discriminant analysis")
17023 (description
17024 "This package provides an implementation of sparse linear discriminant
17025 analysis, which is a supervised classification method for multiple classes.
17026 Various novel optimization approaches to this problem are implemented
17027 including @dfn{alternating direction method of multipliers} (ADMM),
17028 @dfn{proximal gradient} (PG) and @dfn{accelerated proximal gradient} (APG).
17029 Functions for performing cross validation are also supplied along with basic
17030 prediction and plotting functions. @dfn{Sparse zero variance
17031 discriminant} (SZVD) analysis is also included in the package.")
17032 (license license:gpl2+)))
17033
17034 (define-public r-ace2fastq
17035 (package
17036 (name "r-ace2fastq")
17037 (version "0.6.0")
17038 (source
17039 (origin
17040 (method url-fetch)
17041 (uri (cran-uri "ace2fastq" version))
17042 (sha256
17043 (base32
17044 "09kk3yyqnr2xp820g0p3aai9a21figigjr9lxkr3zjq2d8gzwfic"))))
17045 (properties `((upstream-name . "ace2fastq")))
17046 (build-system r-build-system)
17047 (propagated-inputs
17048 `(("r-stringr" ,r-stringr)))
17049 (home-page "https://github.com/c5sire/ace2fastq")
17050 (synopsis "ACE file to FASTQ converter")
17051 (description
17052 "The ACE file format is used in genomics to store contigs from sequencing
17053 machines. This tools converts it into FASTQ format. Both formats contain the
17054 sequence characters and their corresponding quality information. Unlike the
17055 FASTQ file, the ACE file stores the quality values numerically. The
17056 conversion algorithm uses the standard Sanger formula. The package
17057 facilitates insertion into pipelines, and content inspection.")
17058 (license license:gpl3)))
17059
17060 (define-public r-rngwell
17061 (package
17062 (name "r-rngwell")
17063 (version "0.10-6")
17064 (source
17065 (origin
17066 (method url-fetch)
17067 (uri (cran-uri "rngWELL" version))
17068 (sha256
17069 (base32
17070 "0pjjcs9pqj7mf0mhb2cwd0aanqpwnm65bm86hk6mi2vw8rgnj2vv"))))
17071 (properties `((upstream-name . "rngWELL")))
17072 (build-system r-build-system)
17073 (home-page "https://cran.r-project.org/web/packages/rngWELL/")
17074 (synopsis "Toolbox for WELL random number generators")
17075 (description
17076 "This is a dedicated package to WELL pseudo random generators, which were
17077 introduced in Panneton et al. (2006), ``Improved Long-Period Generators Based
17078 on Linear Recurrences Modulo 2'', ACM Transactions on Mathematical Software.")
17079 (license license:bsd-3)))
17080
17081 (define-public r-randtoolbox
17082 (package
17083 (name "r-randtoolbox")
17084 (version "1.30.1")
17085 (source
17086 (origin
17087 (method url-fetch)
17088 (uri (cran-uri "randtoolbox" version))
17089 (sha256
17090 (base32
17091 "0qg20ar6qns858jdzqhmfq7yji81czhr6cim257958gqpj66sn95"))))
17092 (properties `((upstream-name . "randtoolbox")))
17093 (build-system r-build-system)
17094 (propagated-inputs
17095 `(("r-rngwell" ,r-rngwell)))
17096 (native-inputs
17097 `(("gfortran" ,gfortran)))
17098 (home-page "https://cran.r-project.org/web/packages/randtoolbox/")
17099 (synopsis "Toolbox for pseudo and quasi random number generation")
17100 (description
17101 "This package provides
17102
17103 @enumerate
17104 @item pseudo random generators, such as general linear
17105 congruential generators, multiple recursive generators and generalized
17106 feedback shift register (SF-Mersenne Twister algorithm and WELL
17107 generators)
17108
17109 @item quasi random generators, such as the Torus algorithm, the Sobol
17110 sequence, the Halton sequence (including the Van der Corput sequence), and
17111
17112 @item some generator tests: the gap test, the serial test, the poker test.
17113 @end enumerate
17114
17115 See e.g. Gentle (2003) @url{doi:10.1007/b97336}.")
17116 (license license:bsd-3)))
17117
17118 (define-public r-lhs
17119 (package
17120 (name "r-lhs")
17121 (version "1.0.1")
17122 (source
17123 (origin
17124 (method url-fetch)
17125 (uri (cran-uri "lhs" version))
17126 (sha256
17127 (base32
17128 "0lzaqr7xi3ckln5nglv5xf5njm359slpz1jc6s02hpsqdw6armd4"))))
17129 (properties `((upstream-name . "lhs")))
17130 (build-system r-build-system)
17131 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
17132 (home-page "https://github.com/bertcarnell/lhs")
17133 (synopsis "Latin Hypercube Samples")
17134 (description
17135 "This package provides a number of methods for creating and augmenting
17136 Latin Hypercube Samples.")
17137 (license license:gpl3)))
17138
17139 (define-public r-acebayes
17140 (package
17141 (name "r-acebayes")
17142 (version "1.9")
17143 (source
17144 (origin
17145 (method url-fetch)
17146 (uri (cran-uri "acebayes" version))
17147 (sha256
17148 (base32
17149 "1imfwm1vpbb24vfmfn1nljhmaz8429mwjihw34892p387s8h7xz2"))))
17150 (properties `((upstream-name . "acebayes")))
17151 (build-system r-build-system)
17152 (propagated-inputs
17153 `(("r-compare" ,r-compare)
17154 ("r-lhs" ,r-lhs)
17155 ("r-randtoolbox" ,r-randtoolbox)
17156 ("r-rcpp" ,r-rcpp)
17157 ("r-rcpparmadillo" ,r-rcpparmadillo)))
17158 (home-page "https://cran.r-project.org/web/packages/acebayes/")
17159 (synopsis "Optimal Bayesian experimental design using the ACE algorithm")
17160 (description
17161 "Finding an optimal Bayesian experimental design involves maximizing an
17162 objective function given by the expectation of some appropriately chosen
17163 utility function with respect to the joint distribution of unknown
17164 quantities (including responses). This objective function is usually not
17165 available in closed form and the design space can be continuous and of high
17166 dimensionality. This package uses @dfn{Approximate Coordinate Exchange} (ACE)
17167 to maximise an approximation to the expectation of the utility function.")
17168 (license license:gpl2)))
17169
17170 (define-public r-acet
17171 (package
17172 (name "r-acet")
17173 (version "1.8.0")
17174 (source
17175 (origin
17176 (method url-fetch)
17177 (uri (cran-uri "ACEt" version))
17178 (sha256
17179 (base32
17180 "0626d6kg485xjya164wagrr5z223jvi93ywbwpdns7fkm03c0dlq"))))
17181 (properties `((upstream-name . "ACEt")))
17182 (build-system r-build-system)
17183 (propagated-inputs
17184 `(("r-bh" ,r-bh)
17185 ("r-mass" ,r-mass)
17186 ("r-rcpp" ,r-rcpp)
17187 ("r-rcpparmadillo" ,r-rcpparmadillo)))
17188 (home-page "https://cran.r-project.org/web/packages/ACEt/")
17189 (synopsis "Estimating dynamic heritability and twin model comparison")
17190 (description
17191 "This package supports twin models that are able to estimate the dynamic
17192 behaviour of the variance components in the classical twin models with respect
17193 to age using B-splines and P-splines.")
17194 (license license:gpl2+)))
17195
17196 (define-public r-acfmperiod
17197 (package
17198 (name "r-acfmperiod")
17199 (version "1.0.0")
17200 (source
17201 (origin
17202 (method url-fetch)
17203 (uri (cran-uri "acfMPeriod" version))
17204 (sha256
17205 (base32
17206 "1yww8isfrbs2v9s94hx7p2imyszcgadwafdgpj438n2ik0q6p9d5"))))
17207 (properties `((upstream-name . "acfMPeriod")))
17208 (build-system r-build-system)
17209 (propagated-inputs
17210 `(("r-mass" ,r-mass)))
17211 (home-page "https://cran.r-project.org/web/packages/acfMPeriod/")
17212 (synopsis "Estimation of the ACF from the M-periodogram")
17213 (description
17214 "This package support non-robust and robust computations of the sample
17215 autocovariance (ACOVF) and sample autocorrelation functions (ACF) of
17216 univariate and multivariate processes. The methodology consists in reversing
17217 the diagonalization procedure involving the periodogram or the
17218 cross-periodogram and the Fourier transform vectors, and, thus, obtaining the
17219 ACOVF or the ACF as discussed in Fuller (1995)
17220 @url{doi:10.1002/9780470316917}. The robust version is obtained by fitting
17221 robust M-regressors to obtain the M-periodogram or M-cross-periodogram as
17222 discussed in Reisen et al. (2017) @url{doi:10.1016/j.jspi.2017.02.008}.")
17223 (license license:gpl2+)))
17224
17225 (define-public r-gamlss-data
17226 (package
17227 (name "r-gamlss-data")
17228 (version "5.1-4")
17229 (source
17230 (origin
17231 (method url-fetch)
17232 (uri (cran-uri "gamlss.data" version))
17233 (sha256
17234 (base32
17235 "1dgfspbmps6ipzcmw681wjdp320nm50dwsxafgrcwxndqgc7fdqd"))))
17236 (properties `((upstream-name . "gamlss.data")))
17237 (build-system r-build-system)
17238 (home-page "http://www.gamlss.org/")
17239 (synopsis "GAMLSS data")
17240 (description
17241 "This package provides data used as examples to demonstrate GAMLSS
17242 models.")
17243 ;; Either version of the license
17244 (license (list license:gpl2 license:gpl3))))
17245
17246 (define-public r-gamlss
17247 (package
17248 (name "r-gamlss")
17249 (version "5.1-6")
17250 (source
17251 (origin
17252 (method url-fetch)
17253 (uri (cran-uri "gamlss" version))
17254 (sha256
17255 (base32
17256 "16b7ick1khvldbvfmmpw9cjs1vznnrisvifq7717fxzd8c9s5jdr"))))
17257 (properties `((upstream-name . "gamlss")))
17258 (build-system r-build-system)
17259 (propagated-inputs
17260 `(("r-gamlss-data" ,r-gamlss-data)
17261 ("r-gamlss-dist" ,r-gamlss-dist)
17262 ("r-mass" ,r-mass)
17263 ("r-nlme" ,r-nlme)
17264 ("r-survival" ,r-survival)))
17265 (home-page "http://www.gamlss.org/")
17266 (synopsis "Generalized additive models for location scale and shape")
17267 (description
17268 "This package provides functions for fitting the generalized additive
17269 models for location scale and shape introduced by Rigby and
17270 Stasinopoulos (2005), @url{doi:10.1111/j.1467-9876.2005.00510.x}. The models
17271 use a distributional regression approach where all the parameters of the
17272 conditional distribution of the response variable are modelled using
17273 explanatory variables.")
17274 ;; Either version of the license
17275 (license (list license:gpl2 license:gpl3))))
17276
17277 (define-public r-acid
17278 (package
17279 (name "r-acid")
17280 (version "1.1")
17281 (source
17282 (origin
17283 (method url-fetch)
17284 (uri (cran-uri "acid" version))
17285 (sha256
17286 (base32
17287 "030i0y8s283ivbsmjccpbv9v7mgbcg2jk9df7vgcbbns74swf9hd"))))
17288 (properties `((upstream-name . "acid")))
17289 (build-system r-build-system)
17290 (propagated-inputs
17291 `(("r-gamlss" ,r-gamlss)
17292 ("r-gamlss-dist" ,r-gamlss-dist)
17293 ("r-hmisc" ,r-hmisc)))
17294 (home-page "https://cran.r-project.org/web/packages/acid/")
17295 (synopsis "Analysing conditional income distributions")
17296 (description
17297 "This package provides functions for the analysis of income distributions
17298 for subgroups of the population as defined by a set of variables like age,
17299 gender, region, etc. This entails a Kolmogorov-Smirnov test for a mixture
17300 distribution as well as functions for moments, inequality measures, entropy
17301 measures and polarisation measures of income distributions. This package thus
17302 aides the analysis of income inequality by offering tools for the exploratory
17303 analysis of income distributions at the disaggregated level.")
17304 (license license:gpl3)))
17305
17306 (define-public r-acm4r
17307 (package
17308 (name "r-acm4r")
17309 (version "1.0")
17310 (source
17311 (origin
17312 (method url-fetch)
17313 (uri (cran-uri "acm4r" version))
17314 (sha256
17315 (base32
17316 "1wqzc35i1rshx0zlmas8y4qkkvy6h9r4i4apscjjv1xg2wjflzxa"))))
17317 (properties `((upstream-name . "acm4r")))
17318 (build-system r-build-system)
17319 (propagated-inputs `(("r-mass" ,r-mass)))
17320 (home-page "https://cran.r-project.org/web/packages/acm4r/")
17321 (synopsis "Align-and-count method comparisons of RFLP data")
17322 (description
17323 "This is a package to compare sequence fragment lengths or molecular
17324 weights from pairs of lanes. The number of matching bands in the
17325 @dfn{Restriction Fragment Length Polymorphism} (RFLP) data is calculated using
17326 the align-and-count method.")
17327 ;; Any version of the GPL
17328 (license (list license:gpl2+ license:gpl3+))))
17329
17330 (define-public r-filematrix
17331 (package
17332 (name "r-filematrix")
17333 (version "1.3")
17334 (source
17335 (origin
17336 (method url-fetch)
17337 (uri (cran-uri "filematrix" version))
17338 (sha256
17339 (base32
17340 "1v3aj1ng742msb0sfdnjsbqb508mqjf8jlq2v33vxldhradw5w0b"))))
17341 (properties `((upstream-name . "filematrix")))
17342 (build-system r-build-system)
17343 ;; These inputs are needed for vignettes
17344 (native-inputs
17345 `(("r-knitr" ,r-knitr)
17346 ("r-rmarkdown" ,r-rmarkdown)
17347 ("pandoc-citeproc" ,ghc-pandoc-citeproc)))
17348 (home-page "https://github.com/andreyshabalin/filematrix")
17349 (synopsis "File-backed matrix class with convenient read and write access")
17350 (description
17351 "This package provides an interface for working with large matrices
17352 stored in files, not in computer memory. It supports multiple non-character
17353 data types (double, integer, logical and raw) of various sizes (e.g. 8 and 4
17354 byte real values). Access to parts of the matrix is done by indexing, exactly
17355 as with usual R matrices. It supports very large matrices; the package has
17356 been tested on multi-terabyte matrices. It allows for more than 2^32 rows or
17357 columns, ad allows for quick addition of extra columns to a filematrix.")
17358 (license license:lgpl3)))
17359
17360 (define-public r-acmeeqtl
17361 (package
17362 (name "r-acmeeqtl")
17363 (version "1.6")
17364 (source
17365 (origin
17366 (method url-fetch)
17367 (uri (cran-uri "ACMEeqtl" version))
17368 (sha256
17369 (base32
17370 "049xjv2ym35bbn43zwi68cq27fwdh404vp0r2ca5gxgmmx8kj1cz"))))
17371 (properties `((upstream-name . "ACMEeqtl")))
17372 (build-system r-build-system)
17373 (propagated-inputs
17374 `(("r-filematrix" ,r-filematrix)))
17375 (home-page "https://github.com/andreyshabalin/ACMEeqtl")
17376 (synopsis "Estimation of interpretable eQTL effect sizes")
17377 (description
17378 "This package provides a non-linear model, termed ACME, that reflects a
17379 parsimonious biological model for allelic contributions of cis-acting eQTLs.
17380 With non-linear least-squares algorithm the maximum likelihood parameters can
17381 be estimated. The ACME model provides interpretable effect size estimates and
17382 p-values with well controlled Type-I error.")
17383 (license license:lgpl3)))
17384
17385 (define-public r-acmer
17386 (package
17387 (name "r-acmer")
17388 (version "1.1.0")
17389 (source
17390 (origin
17391 (method url-fetch)
17392 (uri (cran-uri "acmeR" version))
17393 (sha256
17394 (base32
17395 "000b2hqlhj93958nddw0fqb15ahigs08najv2miivym046x04mf7"))))
17396 (properties `((upstream-name . "acmeR")))
17397 (build-system r-build-system)
17398 (propagated-inputs `(("r-foreign" ,r-foreign)))
17399 (home-page "https://cran.r-project.org/web/packages/acmeR/")
17400 (synopsis "ACME estimator of bird and bat mortality by wind turbines")
17401 (description
17402 "This package provides an implementation of the ACME estimator, described
17403 in Wolpert (2015), ACME: A Partially Periodic Estimator of Avian & Chiropteran
17404 Mortality at Wind Turbines. Unlike most other models, this estimator supports
17405 decreasing-hazard Weibull model for persistence; decreasing search proficiency
17406 as carcasses age; variable bleed-through at successive searches; and interval
17407 mortality estimates. The package provides, based on search data, functions
17408 for estimating the mortality inflation factor in Frequentist and Bayesian
17409 settings.")
17410 (license license:expat)))
17411
17412 (define-public r-r-huge
17413 (package
17414 (name "r-r-huge")
17415 (version "0.9.0")
17416 (source
17417 (origin
17418 (method url-fetch)
17419 (uri (cran-uri "R.huge" version))
17420 (sha256
17421 (base32
17422 "13p558qalv60pgr24nsm6mi92ryj65rsbqa6pgdwy0snjqx12bgi"))))
17423 (properties `((upstream-name . "R.huge")))
17424 (build-system r-build-system)
17425 (propagated-inputs
17426 `(("r-r-methodss3" ,r-r-methodss3)
17427 ("r-r-oo" ,r-r-oo)
17428 ("r-r-utils" ,r-r-utils)))
17429 (home-page "https://github.com/HenrikBengtsson/R.huge")
17430 (synopsis "Methods for accessing huge amounts of data")
17431 (description
17432 "This is a deprecated package for accessing huge amounts of data.
17433 Cross-platform alternatives are the following packages: bigmemory (CRAN),
17434 ff (CRAN), or BufferedMatrix (Bioconductor). The main usage of it was inside
17435 the @code{aroma.affymetrix} package.")
17436 (license license:lgpl2.1+)))
17437
17438 (define-public r-r-filesets
17439 (package
17440 (name "r-r-filesets")
17441 (version "2.13.0")
17442 (source
17443 (origin
17444 (method url-fetch)
17445 (uri (cran-uri "R.filesets" version))
17446 (sha256
17447 (base32
17448 "124rygq0bl9n4akxcm868nl30cyk3rz0iprb98zlpk62gci9f5fg"))))
17449 (properties `((upstream-name . "R.filesets")))
17450 (build-system r-build-system)
17451 (propagated-inputs
17452 `(("r-digest" ,r-digest)
17453 ("r-r-cache" ,r-r-cache)
17454 ("r-r-methodss3" ,r-r-methodss3)
17455 ("r-r-oo" ,r-r-oo)
17456 ("r-r-utils" ,r-r-utils)))
17457 (home-page "https://github.com/HenrikBengtsson/R.filesets")
17458 (synopsis "Easy handling of and access to files")
17459 (description
17460 "This package provides classes and methods to locate, setup, subset,
17461 navigate and iterate file sets, i.e. sets of files located in one or more
17462 directories on the file system. The API is designed such that these classes
17463 can be extended via inheritance to provide a richer API for special file
17464 formats. Moreover, a specific name format is defined such that filenames and
17465 directories can be considered to have full names which consists of a name
17466 followed by comma-separated tags. This adds additional flexibility to
17467 identify file sets and individual files.")
17468 (license license:lgpl2.1+)))
17469
17470 (define-public r-r-devices
17471 (package
17472 (name "r-r-devices")
17473 (version "2.16.1")
17474 (source
17475 (origin
17476 (method url-fetch)
17477 (uri (cran-uri "R.devices" version))
17478 (sha256
17479 (base32
17480 "15zlnq3g27whq26fbcy5zfl5hiddm256h4rga4frblg6wqlbkvdd"))))
17481 (properties `((upstream-name . "R.devices")))
17482 (build-system r-build-system)
17483 (propagated-inputs
17484 `(("r-base64enc" ,r-base64enc)
17485 ("r-r-methodss3" ,r-r-methodss3)
17486 ("r-r-oo" ,r-r-oo)
17487 ("r-r-utils" ,r-r-utils)))
17488 (home-page "https://github.com/HenrikBengtsson/R.devices")
17489 (synopsis "Unified handling of graphics devices")
17490 (description
17491 "This package provides functions for creating plots and image files in a
17492 unified way regardless of output format (EPS, PDF, PNG, SVG, TIFF, WMF, etc.).
17493 Default device options as well as scales and aspect ratios are controlled in a
17494 uniform way across all device types. Switching output format requires minimal
17495 changes in code. This package is ideal for large-scale batch processing,
17496 because it will never leave open graphics devices or incomplete image files
17497 behind, even on errors or user interrupts.")
17498 (license license:lgpl2.1+)))
17499
17500 (define-public r-acnr
17501 (package
17502 (name "r-acnr")
17503 (version "1.0.0")
17504 (source
17505 (origin
17506 (method url-fetch)
17507 (uri (cran-uri "acnr" version))
17508 (sha256
17509 (base32
17510 "087hq4i7jp67ba2finzsqjfnqbiprl33na6ryjv9zqzsdawj9cym"))))
17511 (properties `((upstream-name . "acnr")))
17512 (build-system r-build-system)
17513 (home-page "https://github.com/mpierrejean/acnr")
17514 (synopsis "Annotated copy-number regions")
17515 (description
17516 "This package provides SNP array data from different types of copy-number
17517 regions. These regions were identified manually by the authors of the package
17518 and may be used to generate realistic data sets with known truth.")
17519 (license license:lgpl2.1+)))
17520
17521 (define-public r-acopula
17522 (package
17523 (name "r-acopula")
17524 (version "0.9.3")
17525 (source
17526 (origin
17527 (method url-fetch)
17528 (uri (cran-uri "acopula" version))
17529 (sha256
17530 (base32
17531 "0vvbbw8pfs9jwfz5c57lw48pr0qj661r0ys007q6zf9jmlrhx1ln"))))
17532 (properties `((upstream-name . "acopula")))
17533 (build-system r-build-system)
17534 (home-page "https://cran.r-project.org/web/packages/acopula/")
17535 (synopsis "Modelling dependence with multivariate Archimax copulas")
17536 (description
17537 "Archimax copulas are a mixture of Archimedean and EV copulas. This
17538 package provides definitions of several parametric families of generator and
17539 dependence function, computes CDF and PDF, estimates parameters, tests for
17540 goodness of fit, generates random sample and checks copula properties for
17541 custom constructs. In the 2-dimensional case explicit formulas for density
17542 are used, contrary to higher dimensions when all derivatives are linearly
17543 approximated. Several non-archimax families (normal, FGM, Plackett) are
17544 provided as well.")
17545 (license license:gpl2)))
17546
17547 (define-public r-tuner
17548 (package
17549 (name "r-tuner")
17550 (version "1.3.3")
17551 (source
17552 (origin
17553 (method url-fetch)
17554 (uri (cran-uri "tuneR" version))
17555 (sha256
17556 (base32
17557 "0av978m4h2iqazyfq6n2cgkh4wpllihh7s29lah2nb8ngc0w5hxx"))))
17558 (properties `((upstream-name . "tuneR")))
17559 (build-system r-build-system)
17560 (propagated-inputs `(("r-signal" ,r-signal)))
17561 (home-page "https://cran.r-project.org/web/packages/tuneR/")
17562 (synopsis "Analysis of music and speech")
17563 (description
17564 "This is a package for the analysis of music and speech. Analyze music
17565 and speech, extract features like MFCCs, handle wave files and their
17566 representation in various ways, read MP3, read MIDI, perform steps of a
17567 transcription, ...")
17568 ;; Either of these versions.
17569 (license (list license:gpl2 license:gpl3))))
17570
17571 (define-public r-seewave
17572 (package
17573 (name "r-seewave")
17574 (version "2.1.5")
17575 (source
17576 (origin
17577 (method url-fetch)
17578 (uri (cran-uri "seewave" version))
17579 (sha256
17580 (base32
17581 "1qg8f5gik9pw6f9mcxqmrc9x3003s8vdm6g01pjjpyc9qaqiz2vi"))))
17582 (properties `((upstream-name . "seewave")))
17583 (build-system r-build-system)
17584 (propagated-inputs
17585 `(("r-tuner" ,r-tuner)))
17586 (home-page "http://rug.mnhn.fr/seewave")
17587 (synopsis "Sound analysis and synthesis")
17588 (description
17589 "This package provides functions for analysing, manipulating, displaying,
17590 editing and synthesizing time waves (particularly sound). This package
17591 processes time analysis (oscillograms and envelopes), spectral content,
17592 resonance quality factor, entropy, cross correlation and autocorrelation,
17593 zero-crossing, dominant frequency, analytic signal, frequency coherence, 2D
17594 and 3D spectrograms and many other analyses.")
17595 (license license:gpl2+)))
17596
17597 (define-public r-acousticndlcoder
17598 (package
17599 (name "r-acousticndlcoder")
17600 (version "1.0.2")
17601 (source
17602 (origin
17603 (method url-fetch)
17604 (uri (cran-uri "AcousticNDLCodeR" version))
17605 (sha256
17606 (base32
17607 "1fgzgwanpv2pzy74xdk3hamc44p8qch467wh163dxby8jr9ik0sb"))))
17608 (properties
17609 `((upstream-name . "AcousticNDLCodeR")))
17610 (build-system r-build-system)
17611 (propagated-inputs
17612 `(("r-seewave" ,r-seewave)
17613 ("r-tuner" ,r-tuner)
17614 ("r-zoo" ,r-zoo)))
17615 (home-page "https://cran.r-project.org/web/packages/AcousticNDLCodeR/")
17616 (synopsis "Coding sound files for use with NDL")
17617 (description
17618 "Make acoustic cues to use with the R package @code{ndl}.
17619 The package implements functions used in the PLoS ONE paper \"Words from
17620 spontaneous conversational speech can be recognized with human-like accuracy
17621 by an error-driven learning algorithm that discriminates between meanings
17622 straight from smart acoustic features, bypassing the phoneme as recognition
17623 unit.\" @url{doi:10.1371/journal.pone.0174623}")
17624 (license license:gpl2+)))
17625
17626 (define-public r-acp
17627 (package
17628 (name "r-acp")
17629 (version "2.1")
17630 (source
17631 (origin
17632 (method url-fetch)
17633 (uri (cran-uri "acp" version))
17634 (sha256
17635 (base32
17636 "0lcwbjcyyr32m6qjmjqh25qjwrbyqj1n092xhgbhxzd8fslppnmn"))))
17637 (properties `((upstream-name . "acp")))
17638 (build-system r-build-system)
17639 (propagated-inputs
17640 `(("r-quantmod" ,r-quantmod)
17641 ("r-tseries" ,r-tseries)))
17642 (home-page "https://cran.r-project.org/web/packages/acp/")
17643 (synopsis "Autoregressive conditional Poisson")
17644 (description
17645 "This package supports the analysis of count data exhibiting
17646 autoregressive properties, using the @dfn{Autoregressive Conditional Poisson}
17647 model (ACP(p,q)) proposed by Heinen (2003).")
17648 (license license:gpl2)))
17649
17650 (define-public r-ada
17651 (package
17652 (name "r-ada")
17653 (version "2.0-5")
17654 (source
17655 (origin
17656 (method url-fetch)
17657 (uri (cran-uri "ada" version))
17658 (sha256
17659 (base32
17660 "1h3a07czp0w3hrhjcg1fz721y8vsfclzqi3rq8qfzgpfb4h1f06r"))))
17661 (properties `((upstream-name . "ada")))
17662 (build-system r-build-system)
17663 (propagated-inputs `(("r-rpart" ,r-rpart)))
17664 (home-page "https://cran.r-project.org/web/packages/ada/")
17665 (synopsis "Stochastic boosting")
17666 (description
17667 "This package provides a straightforward, well-documented, and broad
17668 boosting routine for classification, ideally suited for small to
17669 moderate-sized data sets. It performs discrete, real, and gentle boost under
17670 both exponential and logistic loss on a given data set.")
17671 ;; Any version of the GPL.
17672 (license (list license:gpl2+ license:gpl3+))))
17673
17674 (define-public r-genalg
17675 (package
17676 (name "r-genalg")
17677 (version "0.2.0")
17678 (source
17679 (origin
17680 (method url-fetch)
17681 (uri (cran-uri "genalg" version))
17682 (sha256
17683 (base32
17684 "1wzfamq8k5yhwbdx0wy1w5bks93brj0p890xxc4yqrja4w38ja3s"))))
17685 (properties `((upstream-name . "genalg")))
17686 (build-system r-build-system)
17687 (home-page "https://github.com/egonw/genalg")
17688 (synopsis "R based genetic algorithm")
17689 (description
17690 "This package provides an R based genetic algorithm for binary and
17691 floating point chromosomes.")
17692 (license license:gpl2)))
17693
17694 (define-public r-kernelfactory
17695 (package
17696 (name "r-kernelfactory")
17697 (version "0.3.0")
17698 (source
17699 (origin
17700 (method url-fetch)
17701 (uri (cran-uri "kernelFactory" version))
17702 (sha256
17703 (base32
17704 "001kw9k3ivd4drd4mwqapkkk3f4jgljiaprhg2630hmll064s89j"))))
17705 (properties `((upstream-name . "kernelFactory")))
17706 (build-system r-build-system)
17707 (propagated-inputs
17708 `(("r-auc" ,r-auc)
17709 ("r-genalg" ,r-genalg)
17710 ("r-kernlab" ,r-kernlab)
17711 ("r-randomforest" ,r-randomforest)))
17712 (home-page "https://cran.r-project.org/web/packages/kernelFactory/")
17713 (synopsis "Ensemble of kernel machines")
17714 (description
17715 "Kernel factory is an ensemble method where each base classifier (random
17716 forest) is fit on the kernel matrix of a subset of the training data.")
17717 (license license:gpl2+)))
17718
17719 (define-public r-dummies
17720 (package
17721 (name "r-dummies")
17722 (version "1.5.6")
17723 (source
17724 (origin
17725 (method url-fetch)
17726 (uri (cran-uri "dummies" version))
17727 (sha256
17728 (base32
17729 "01f84crqx17xd6xy55qxlvsj3knm8lhw7jl26p2rh2w3y0nvqlbm"))))
17730 (properties `((upstream-name . "dummies")))
17731 (build-system r-build-system)
17732 (home-page "https://decisionpatterns.com")
17733 (synopsis "Create dummy/indicator variables flexibly and efficiently")
17734 (description
17735 "This package lets you expand factors, characters and other eligible
17736 classes into dummy/indicator variables.")
17737 (license license:gpl2+)))
17738
17739 (define-public r-acrm
17740 (package
17741 (name "r-acrm")
17742 (version "0.1.1")
17743 (source
17744 (origin
17745 (method url-fetch)
17746 (uri (cran-uri "aCRM" version))
17747 (sha256
17748 (base32
17749 "0kzp568hd9c9a9qgniia5s5gv0q5f89xfvvwpzb197gqhs3x092v"))))
17750 (properties `((upstream-name . "aCRM")))
17751 (build-system r-build-system)
17752 (propagated-inputs
17753 `(("r-ada" ,r-ada)
17754 ("r-dummies" ,r-dummies)
17755 ("r-kernelfactory" ,r-kernelfactory)
17756 ("r-randomforest" ,r-randomforest)))
17757 (home-page "https://cran.r-project.org/web/packages/aCRM/")
17758 (synopsis "Convenience functions for analytical customer relationship management")
17759 (description
17760 "This package provides convenience functions for data preparation and
17761 modeling often used in @dfn{analytical customer relationship
17762 management} (aCRM).")
17763 (license license:gpl2+)))
17764
17765 (define-public r-treeclust
17766 (package
17767 (name "r-treeclust")
17768 (version "1.1-7")
17769 (source
17770 (origin
17771 (method url-fetch)
17772 (uri (cran-uri "treeClust" version))
17773 (sha256
17774 (base32
17775 "1s7kh6q0bkixsygrip95zf1bi10ihddsa5lq9dfxd68yh8rsby6z"))))
17776 (properties `((upstream-name . "treeClust")))
17777 (build-system r-build-system)
17778 (propagated-inputs
17779 `(("r-cluster" ,r-cluster)
17780 ("r-rpart" ,r-rpart)))
17781 (home-page "https://cran.r-project.org/web/packages/treeClust/")
17782 (synopsis "Cluster distances through trees")
17783 (description
17784 "This package provides tools to create a measure of inter-point
17785 dissimilarity useful for clustering mixed data, and, optionally, perform the
17786 clustering.")
17787 (license license:gpl2+)))
17788
17789 (define-public r-acrosstic
17790 (package
17791 (name "r-acrosstic")
17792 (version "1.0-3")
17793 (source
17794 (origin
17795 (method url-fetch)
17796 (uri (cran-uri "AcrossTic" version))
17797 (sha256
17798 (base32
17799 "03180h79jhjd66ibrnsfp3yyp2jlfysp7cymw46phzj2palghsc0"))))
17800 (properties `((upstream-name . "AcrossTic")))
17801 (build-system r-build-system)
17802 (propagated-inputs
17803 `(("r-lpsolve" ,r-lpsolve)
17804 ("r-treeclust" ,r-treeclust)))
17805 (home-page "https://cran.r-project.org/web/packages/AcrossTic/")
17806 (synopsis "Cost-minimal regular spanning subgraph with TreeClust")
17807 (description
17808 "This is a package for constructing minimum-cost regular spanning
17809 subgraph as part of a non-parametric two-sample test for equality of
17810 distribution.")
17811 (license license:gpl2+)))
17812
17813 (define-public r-acrt
17814 (package
17815 (name "r-acrt")
17816 (version "1.0.1")
17817 (source
17818 (origin
17819 (method url-fetch)
17820 (uri (cran-uri "acrt" version))
17821 (sha256
17822 (base32
17823 "0y9ndcq8ffpfrv7w9rikm4zn68jpsj6baqisq9kp2433xrwzdb6s"))))
17824 (properties `((upstream-name . "acrt")))
17825 (build-system r-build-system)
17826 (propagated-inputs
17827 `(("r-rcpp" ,r-rcpp)
17828 ("r-rcppeigen" ,r-rcppeigen)
17829 ("r-sandwich" ,r-sandwich)))
17830 (home-page "https://cran.r-project.org/web/packages/acrt/")
17831 (synopsis "Autocorrelation robust testing")
17832 (description
17833 "This package provides functions for testing affine hypotheses on the
17834 regression coefficient vector in regression models with autocorrelated
17835 errors.")
17836 (license license:gpl2)))
17837
17838 (define-public r-acs
17839 (package
17840 (name "r-acs")
17841 (version "2.1.4")
17842 (source
17843 (origin
17844 (method url-fetch)
17845 (uri (cran-uri "acs" version))
17846 (sha256
17847 (base32
17848 "0ajw9rf8l8akcvgqvbxjvryc6wjx74521xyxswz2b0bky3m6kah5"))))
17849 (properties `((upstream-name . "acs")))
17850 (build-system r-build-system)
17851 (propagated-inputs
17852 `(("r-httr" ,r-httr)
17853 ("r-plyr" ,r-plyr)
17854 ("r-rcpp" ,r-rcpp)
17855 ("r-stringr" ,r-stringr)
17856 ("r-xml" ,r-xml)))
17857 (home-page "https://dusp.mit.edu/faculty/ezra-haber-glenn")
17858 (synopsis "Work with data from the US Census")
17859 (description
17860 "This package provides a general toolkit for downloading, managing,
17861 analyzing, and presenting data from the
17862 @url{https://www.census.gov/data/developers/data-sets.html, U.S. Census},
17863 including SF1 (Decennial short-form), SF3 (Decennial long-form), and the
17864 American Community Survey (ACS). Confidence intervals provided with ACS data
17865 are converted to standard errors to be bundled with estimates in complex
17866 @code{acs} objects. The package provides new methods to conduct standard
17867 operations on @code{acs} objects and present/plot data in statistically
17868 appropriate ways.")
17869 (license license:gpl3)))
17870
17871 (define-public r-acss-data
17872 (package
17873 (name "r-acss-data")
17874 (version "1.0")
17875 (source
17876 (origin
17877 (method url-fetch)
17878 (uri (cran-uri "acss.data" version))
17879 (sha256
17880 (base32
17881 "09kl4179ipr8bq19g89xcdi1xxs397zcx5cvgp6viy8gn687ilgv"))))
17882 (properties `((upstream-name . "acss.data")))
17883 (build-system r-build-system)
17884 (home-page "http://complexitycalculator.com/methodology.html")
17885 (synopsis "Data for algorithmic complexity of short strings")
17886 (description
17887 "This is a data only package providing the algorithmic complexity of
17888 short strings, computed using the coding theorem method. For a given set of
17889 symbols in a string, all possible or a large number of random samples of
17890 Turing machines with a given number of states (e.g., 5) and number of symbols
17891 corresponding to the number of symbols in the strings were simulated until
17892 they reached a halting state or failed to end. This package contains data on
17893 4.5 million strings from length 1 to 12 simulated on Turing machines with 2,
17894 4, 5, 6, and 9 symbols. The complexity of the string corresponds to the
17895 distribution of the halting states.")
17896 (license license:gpl2+)))
17897
17898 (define-public r-acss
17899 (package
17900 (name "r-acss")
17901 (version "0.2-5")
17902 (source
17903 (origin
17904 (method url-fetch)
17905 (uri (cran-uri "acss" version))
17906 (sha256
17907 (base32
17908 "0cqa60544f58l5qd7h6xmsir40b9hqnq6pqgd5hfx2j2l5n7qhmk"))))
17909 (properties `((upstream-name . "acss")))
17910 (build-system r-build-system)
17911 (propagated-inputs
17912 `(("r-acss-data" ,r-acss-data)
17913 ("r-zoo" ,r-zoo)))
17914 (home-page "http://complexitycalculator.com/methodology.html")
17915 (synopsis "Algorithmic complexity for short strings")
17916 (description
17917 "The main purpose of this package is to provide the algorithmic
17918 complexity for short strings, an approximation of the Kolmogorov Complexity of
17919 a short string using the coding theorem method. While the database containing
17920 the complexity is provided in the data only package @code{acss.data}, this
17921 package provides functions accessing the data such as @code{prob_random}
17922 returning the posterior probability that a given string was produced by a
17923 random process. In addition, two traditional (but problematic) measures of
17924 complexity are also provided: entropy and change complexity.")
17925 (license license:gpl2+)))
17926
17927 (define-public r-acswr
17928 (package
17929 (name "r-acswr")
17930 (version "1.0")
17931 (source
17932 (origin
17933 (method url-fetch)
17934 (uri (cran-uri "ACSWR" version))
17935 (sha256
17936 (base32
17937 "195vjrkang5cl7gwsna0aq4p0h4jym9xg9yh94bnf8vq6wf8j83n"))))
17938 (properties `((upstream-name . "ACSWR")))
17939 (build-system r-build-system)
17940 (propagated-inputs
17941 `(("r-mass" ,r-mass)))
17942 (home-page "https://cran.r-project.org/web/packages/ACSWR/")
17943 (synopsis "Companion package for the book \"A Course in Statistics with R\"")
17944 (description
17945 "This is a companion package for the book \"A Course in Statistics with
17946 R\" (ISBN 978-1-119-15272-9.)")
17947 (license license:gpl2)))
17948
17949 (define-public r-alabama
17950 (package
17951 (name "r-alabama")
17952 (version "2015.3-1")
17953 (source
17954 (origin
17955 (method url-fetch)
17956 (uri (cran-uri "alabama" version))
17957 (sha256
17958 (base32
17959 "0mlgk929gdismikwx4k2ndqq57nnqj7mlgvd3479b214hksgq036"))))
17960 (properties `((upstream-name . "alabama")))
17961 (build-system r-build-system)
17962 (propagated-inputs `(("r-numderiv" ,r-numderiv)))
17963 (home-page "https://cran.r-project.org/web/packages/alabama/")
17964 (synopsis "Constrained nonlinear optimization")
17965 (description
17966 "Alabama stands for Augmented Lagrangian Adaptive Barrier Minimization
17967 Algorithm; it is used for optimizing smooth nonlinear objective functions with
17968 constraints. Linear or nonlinear equality and inequality constraints are
17969 allowed.")
17970 (license license:gpl2+)))
17971
17972 (define-public r-gdina
17973 (package
17974 (name "r-gdina")
17975 (version "2.7.9")
17976 (source
17977 (origin
17978 (method url-fetch)
17979 (uri (cran-uri "GDINA" version))
17980 (sha256
17981 (base32
17982 "13pmj069r04h38hg61ibyn1ab15zdy9m0qv60vi25ahgsmg6ccvx"))))
17983 (properties `((upstream-name . "GDINA")))
17984 (build-system r-build-system)
17985 (propagated-inputs
17986 `(("r-alabama" ,r-alabama)
17987 ("r-ggplot2" ,r-ggplot2)
17988 ("r-mass" ,r-mass)
17989 ("r-nloptr" ,r-nloptr)
17990 ("r-numderiv" ,r-numderiv)
17991 ("r-rcpp" ,r-rcpp)
17992 ("r-rcpparmadillo" ,r-rcpparmadillo)
17993 ("r-rsolnp" ,r-rsolnp)
17994 ("r-shiny" ,r-shiny)
17995 ("r-shinydashboard" ,r-shinydashboard)))
17996 (home-page "https://github.com/Wenchao-Ma/GDINA")
17997 (synopsis "Generalized DINA model framework")
17998 (description
17999 "This package provides a set of psychometric tools for cognitive
18000 diagnosis modeling based on the generalized deterministic inputs, noisy and
18001 gate (G-DINA) model by de la Torre (2011) @url{doi:10.1007/s11336-011-9207-7}
18002 and its extensions, including the sequential G-DINA model by Ma and de la
18003 Torre (2016) @url{doi:10.1111/bmsp.12070} for polytomous responses, and the
18004 polytomous G-DINA model by Chen and de la Torre
18005 @url{doi:10.1177/0146621613479818} for polytomous attributes. Joint attribute
18006 distribution can be independent, saturated, higher-order, loglinear smoothed
18007 or structured. Q-matrix validation, item and model fit statistics, model
18008 comparison at test and item level and differential item functioning can also
18009 be conducted. A graphical user interface is also provided.")
18010 (license license:gpl3)))
18011
18012 (define-public r-actcd
18013 (package
18014 (name "r-actcd")
18015 (version "1.2-0")
18016 (source
18017 (origin
18018 (method url-fetch)
18019 (uri (cran-uri "ACTCD" version))
18020 (sha256
18021 (base32
18022 "0mzjxxr2zfdidw8ibh6w8mvpkw3q3nvngqi05g9ind26ckvk053p"))))
18023 (properties `((upstream-name . "ACTCD")))
18024 (build-system r-build-system)
18025 (propagated-inputs
18026 `(("r-gdina" ,r-gdina)
18027 ("r-r-methodss3" ,r-r-methodss3)))
18028 (native-inputs
18029 `(("gfortran" ,gfortran)))
18030 (home-page "https://cran.r-project.org/web/packages/ACTCD/")
18031 (synopsis "Asymptotic classification theory for cognitive diagnosis")
18032 (description
18033 "This is a package supporting cluster analysis for cognitive diagnosis
18034 based on the Asymptotic Classification Theory (Chiu, Douglas & Li, 2009;
18035 @url{doi:10.1007/s11336-009-9125-0}). Given the sample statistic of
18036 sum-scores, cluster analysis techniques can be used to classify examinees into
18037 latent classes based on their attribute patterns. In addition to the
18038 algorithms used to classify data, three labeling approaches are proposed to
18039 label clusters so that examinees' attribute profiles can be obtained.")
18040 (license license:gpl2+)))
18041
18042 (define-public r-ineq
18043 (package
18044 (name "r-ineq")
18045 (version "0.2-13")
18046 (source
18047 (origin
18048 (method url-fetch)
18049 (uri (cran-uri "ineq" version))
18050 (sha256
18051 (base32
18052 "09fsxyrh0j7mwmb5hkhmrzgcy7kf85jxkh7zlwpgqgcsyl1n91z0"))))
18053 (properties `((upstream-name . "ineq")))
18054 (build-system r-build-system)
18055 (home-page "https://cran.r-project.org/web/packages/ineq/")
18056 (synopsis "Measuring inequality, concentration, and poverty")
18057 (description
18058 "This package provides tools for measuring inequality, concentration, and
18059 poverty measures. It provides both empirical and theoretical Lorenz curves.")
18060 ;; Either of these two versions.
18061 (license (list license:gpl2 license:gpl3))))
18062
18063 (define-public r-actfrag
18064 (package
18065 (name "r-actfrag")
18066 (version "0.1.1")
18067 (source
18068 (origin
18069 (method url-fetch)
18070 (uri (cran-uri "ActFrag" version))
18071 (sha256
18072 (base32
18073 "08r3gwjz4fkyy85dxqix0ffm5xyq45032qv3snnzxnlqxslxbqn1"))))
18074 (properties `((upstream-name . "ActFrag")))
18075 (build-system r-build-system)
18076 (propagated-inputs
18077 `(("r-accelerometry" ,r-accelerometry)
18078 ("r-dplyr" ,r-dplyr)
18079 ("r-ineq" ,r-ineq)
18080 ("r-survival" ,r-survival)
18081 ("r-tidyr" ,r-tidyr)))
18082 (home-page "https://github.com/junruidi/ActFrag")
18083 (synopsis "Activity fragmentation metrics extraction")
18084 (description
18085 "This package provides functions to extract commonly used fragmentation
18086 metrics to quantify time accumulation strategies based on minute level
18087 actigraphy-measured activity counts data.")
18088 (license license:gpl3)))
18089
18090 (define-public r-fda
18091 (package
18092 (name "r-fda")
18093 (version "2.4.8.1")
18094 (source
18095 (origin
18096 (method url-fetch)
18097 (uri (cran-uri "fda" version))
18098 (sha256
18099 (base32
18100 "0g50kj1dx7zarjv0lgwyzd2c7bv6di7nkndmywday5vjywgl8m7a"))))
18101 (properties `((upstream-name . "fda")))
18102 (build-system r-build-system)
18103 (propagated-inputs
18104 `(("r-matrix" ,r-matrix)))
18105 (home-page "https://www.functionaldata.org")
18106 (synopsis "Functional data analysis")
18107 (description
18108 "These functions were developed to support functional data analysis as
18109 described in Ramsay, J. O. and Silverman, B. W. (2005) Functional Data
18110 Analysis. The package includes data sets and script files working many
18111 examples.")
18112 (license license:gpl2+)))
18113
18114 (define-public r-actigraphy
18115 (package
18116 (name "r-actigraphy")
18117 (version "1.4.0")
18118 (source
18119 (origin
18120 (method url-fetch)
18121 (uri (cran-uri "Actigraphy" version))
18122 (sha256
18123 (base32
18124 "0bpmvszzv5fm72nar3wgnmfl5am7znqfajmlbv38ihkbi7jbwk20"))))
18125 (properties `((upstream-name . "Actigraphy")))
18126 (build-system r-build-system)
18127 (propagated-inputs
18128 `(("r-fda" ,r-fda)))
18129 (home-page "https://cran.r-project.org/web/packages/Actigraphy/")
18130 (synopsis "Actigraphy data analysis")
18131 (description
18132 "This package provides tools for functional linear modeling and analysis
18133 of actigraphy data.")
18134 (license license:asl2.0)))
18135
18136 (define-public r-activedriver
18137 (package
18138 (name "r-activedriver")
18139 (version "1.0.0")
18140 (source
18141 (origin
18142 (method url-fetch)
18143 (uri (cran-uri "ActiveDriver" version))
18144 (sha256
18145 (base32
18146 "10c7ga48fwvpd5mc4dqiyw4kc2l0iz5qn4hg7xk15r1qmm5rsipa"))))
18147 (properties `((upstream-name . "ActiveDriver")))
18148 (build-system r-build-system)
18149 (propagated-inputs
18150 `(("r-mass" ,r-mass)))
18151 (home-page "https://cran.r-project.org/web/packages/ActiveDriver/")
18152 (synopsis "Tools for finding cancer driver proteins")
18153 (description
18154 "This package provides a mutation analysis tool that discovers cancer
18155 driver genes with frequent mutations in protein signalling sites such as
18156 post-translational modifications (phosphorylation, ubiquitination, etc). The
18157 Poisson generalized linear regression model identifies genes where cancer
18158 mutations in signalling sites are more frequent than expected from the
18159 sequence of the entire gene. Integration of mutations with signalling
18160 information helps find new driver genes and propose candidate mechanisms to
18161 known drivers.")
18162 (license license:gpl2+)))
18163
18164 (define-public r-activitycounts
18165 (package
18166 (name "r-activitycounts")
18167 (version "0.1.2")
18168 (source
18169 (origin
18170 (method url-fetch)
18171 (uri (cran-uri "activityCounts" version))
18172 (sha256
18173 (base32
18174 "0zgxr2sk3a8kmygfxx1p5hnrfwdkxx7php6jlrhm8wv6052ck8jz"))))
18175 (properties
18176 `((upstream-name . "activityCounts")))
18177 (build-system r-build-system)
18178 (propagated-inputs
18179 `(("r-lubridate" ,r-lubridate)
18180 ("r-magrittr" ,r-magrittr)
18181 ("r-seewave" ,r-seewave)
18182 ("r-signal" ,r-signal)
18183 ("r-tibble" ,r-tibble)))
18184 (home-page "https://github.com/walkabillylab/activityCounts")
18185 (synopsis "Generate ActiLife counts")
18186 (description
18187 "ActiLife generates activity counts from data collected by Actigraph
18188 accelerometers. Actigraph is one of the most common research-grade
18189 accelerometers. There is considerable research validating and developing
18190 algorithms for human activity using ActiLife counts. Unfortunately, ActiLife
18191 counts are proprietary and difficult to implement if researchers use different
18192 accelerometer brands. The code creates ActiLife counts from raw acceleration
18193 data for different accelerometer brands.")
18194 (license license:gpl3)))
18195
18196 (define-public r-activityindex
18197 (package
18198 (name "r-activityindex")
18199 (version "0.3.6")
18200 (source
18201 (origin
18202 (method url-fetch)
18203 (uri (cran-uri "ActivityIndex" version))
18204 (sha256
18205 (base32
18206 "14k6d78s15j7kb7jhixf4msrdjdl28d0r264cbvy41p8dkq7ysvk"))))
18207 (properties `((upstream-name . "ActivityIndex")))
18208 (build-system r-build-system)
18209 (propagated-inputs
18210 `(("r-data-table" ,r-data-table)
18211 ("r-matrixstats" ,r-matrixstats)
18212 ("r-r-utils" ,r-r-utils)))
18213 (home-page "https://cran.r-project.org/web/packages/ActivityIndex/")
18214 (synopsis "Activity Index calculation using raw accelerometry data")
18215 (description
18216 "This is a package to read raw accelerometry from GT3X+ accelerometry
18217 data and plain table data to calculate the Activity Index from Bai et
18218 al. (2016) @url{doi:10.1371/journal.pone.0160644}.")
18219 (license license:gpl3)))
18220
18221 (define-public r-activpal
18222 (package
18223 (name "r-activpal")
18224 (version "0.1.3")
18225 (source
18226 (origin
18227 (method url-fetch)
18228 (uri (cran-uri "activPAL" version))
18229 (sha256
18230 (base32
18231 "1h6hp5z89ji73gdzxy1dgbfwjysiy5lvcqh90xagpb7sa7ahs3na"))))
18232 (properties `((upstream-name . "activPAL")))
18233 (build-system r-build-system)
18234 (propagated-inputs
18235 `(("r-devtools" ,r-devtools)
18236 ("r-dplyr" ,r-dplyr)
18237 ("r-ggplot2" ,r-ggplot2)
18238 ("r-lubridate" ,r-lubridate)
18239 ("r-magrittr" ,r-magrittr)
18240 ("r-tidyr" ,r-tidyr)))
18241 (home-page "https://cran.r-project.org/web/packages/activPAL")
18242 (synopsis "Processing and chart generation from activPAL events files")
18243 (description
18244 "This package contains functions to generate pre-defined summary
18245 statistics from activPAL events files. The package also contains functions to
18246 produce informative graphics that visualize physical activity behaviour and
18247 trends. This includes generating graphs that align physical activity
18248 behaviour with additional time based observations described by other data
18249 sets, such as sleep diaries and continuous glucose monitoring data.")
18250 (license license:gpl3)))
18251
18252 (define-public r-activpalprocessing
18253 (package
18254 (name "r-activpalprocessing")
18255 (version "1.0.2")
18256 (source
18257 (origin
18258 (method url-fetch)
18259 (uri (cran-uri "activpalProcessing" version))
18260 (sha256
18261 (base32
18262 "1y0bjx2qx53iy930y9iww4q1yzjj8y16cwgixk1mq3w4g1f116d1"))))
18263 (properties
18264 `((upstream-name . "activpalProcessing")))
18265 (build-system r-build-system)
18266 (propagated-inputs
18267 `(("r-chron" ,r-chron)))
18268 (home-page "https://cran.r-project.org/web/packages/activpalProcessing/")
18269 (synopsis "Process activPAL events files")
18270 (description
18271 "This package performs estimation of physical activity and sedentary
18272 behavior variables from activPAL events files.")
18273 ;; Either version of the GPL.
18274 (license (list license:gpl2 license:gpl3))))
18275
18276 (define-public r-actogrammr
18277 (package
18278 (name "r-actogrammr")
18279 (version "0.2.3")
18280 (source
18281 (origin
18282 (method url-fetch)
18283 (uri (cran-uri "actogrammr" version))
18284 (sha256
18285 (base32
18286 "1jzvarmd41yqlrkagzlc8m19n5mn0w0b36fy50lyvgrfsafjfbqa"))))
18287 (properties `((upstream-name . "actogrammr")))
18288 (build-system r-build-system)
18289 (propagated-inputs
18290 `(("r-dplyr" ,r-dplyr)
18291 ("r-ggplot2" ,r-ggplot2)
18292 ("r-lubridate" ,r-lubridate)
18293 ("r-readr" ,r-readr)
18294 ("r-tidyr" ,r-tidyr)))
18295 (home-page "https://cran.r-project.org/web/packages/actogrammr/")
18296 (synopsis "Read in activity data and plot actograms")
18297 (description
18298 "Read in activity measurements from standard file formats used by
18299 circadian rhythm researchers, currently only ClockLab format, and process and
18300 plot the data. The central type of plot is the actogram, as first described
18301 in \"Activity and distribution of certain wild mice in relation to biotic
18302 communities\" by MS Johnson (1926) @url{doi:10.2307/1373575}.")
18303 (license license:gpl3)))
18304
18305 (define-public r-expint
18306 (package
18307 (name "r-expint")
18308 (version "0.1-6")
18309 (source
18310 (origin
18311 (method url-fetch)
18312 (uri (cran-uri "expint" version))
18313 (sha256
18314 (base32
18315 "0iai25cglcdnf44d2d1fz1xpw4q600my4zq4493fk4cs5673mlf7"))))
18316 (properties `((upstream-name . "expint")))
18317 (build-system r-build-system)
18318 (home-page "https://gitlab.com/vigou3/expint")
18319 (synopsis "Exponential integral and incomplete Gamma function")
18320 (description
18321 "This package provides the exponential integrals @code{E_1(x)},
18322 @code{E_2(x)}, @code{E_n(x)} and @code{Ei(x)}, and the incomplete gamma
18323 function @code{G(a, x)} defined for negative values of its first argument.
18324 The package also gives easy access to the underlying C routines through an
18325 API; see the package vignette for details.")
18326 (license license:gpl2+)))
18327
18328 (define-public r-actuar
18329 (package
18330 (name "r-actuar")
18331 (version "2.3-3")
18332 (source
18333 (origin
18334 (method url-fetch)
18335 (uri (cran-uri "actuar" version))
18336 (sha256
18337 (base32
18338 "0aw3hlan5y22mdqk1wvnw9ksqhwp4yy5hi0dpv21p7s0hyxhphih"))))
18339 (properties `((upstream-name . "actuar")))
18340 (build-system r-build-system)
18341 (propagated-inputs `(("r-expint" ,r-expint)))
18342 (home-page "https://gitlab.com/vigou3/actuar")
18343 (synopsis "Actuarial functions and heavy tailed distributions")
18344 (description
18345 "This package provides functions and data sets for actuarial science:
18346 modeling of loss distributions; risk theory and ruin theory; simulation of
18347 compound models, discrete mixtures and compound hierarchical models;
18348 credibility theory. It boasts support for many additional probability
18349 distributions to model insurance loss amounts and loss frequency: 19
18350 continuous heavy tailed distributions; the Poisson-inverse Gaussian discrete
18351 distribution; zero-truncated and zero-modified extensions of the standard
18352 discrete distributions. It also supports phase-type distributions commonly
18353 used to compute ruin probabilities.")
18354 (license license:gpl2+)))
18355
18356 (define-public r-bmp
18357 (package
18358 (name "r-bmp")
18359 (version "0.3")
18360 (source
18361 (origin
18362 (method url-fetch)
18363 (uri (cran-uri "bmp" version))
18364 (sha256
18365 (base32
18366 "0jd67r11bn98hjwgyr6gas423787xy7ji2hq7ay80blkkcj91xxx"))))
18367 (properties `((upstream-name . "bmp")))
18368 (build-system r-build-system)
18369 (home-page "https://cran.r-project.org/web/packages/bmp/")
18370 (synopsis "Read Bitmap (BMP) images")
18371 (description
18372 "This package provides pure R tools to read BMP format images. It is
18373 currently limited to 8 bit greyscale images and 24, 32 bit (A)RGB images.")
18374 (license license:gpl2+)))
18375
18376 (define-public r-readbitmap
18377 (package
18378 (name "r-readbitmap")
18379 (version "0.1.5")
18380 (source
18381 (origin
18382 (method url-fetch)
18383 (uri (cran-uri "readbitmap" version))
18384 (sha256
18385 (base32
18386 "14825906l326w59g6apy00j55jg3h5kx2r6s031f4gdkbrc7szbk"))))
18387 (properties `((upstream-name . "readbitmap")))
18388 (build-system r-build-system)
18389 (inputs
18390 `(("libjpeg" ,libjpeg)
18391 ("libpng" ,libpng)))
18392 (propagated-inputs
18393 `(("r-bmp" ,r-bmp)
18394 ("r-jpeg" ,r-jpeg)
18395 ("r-png" ,r-png)
18396 ("r-tiff" ,r-tiff)))
18397 (home-page "https://github.com/jefferis/readbitmap")
18398 (synopsis "Unified interface to read bitmap images (BMP, JPEG, PNG, TIFF)")
18399 (description
18400 "This package provides tools to identify and read BMP, JPEG, PNG, and
18401 TIFF format bitmap images. Identification defaults to the use of the magic
18402 number embedded in the file rather than the file extension.")
18403 (license license:gpl2+)))
18404
18405 (define-public r-imager
18406 (package
18407 (name "r-imager")
18408 (version "0.42.1")
18409 (source
18410 (origin
18411 (method url-fetch)
18412 (uri (cran-uri "imager" version))
18413 (sha256
18414 (base32
18415 "1d7a49lcna77wyfjf5q1b89jck3p3vnysnkgz4drb0qkpy6hz76b"))))
18416 (properties `((upstream-name . "imager")))
18417 (build-system r-build-system)
18418 (inputs
18419 `(("fftw" ,fftw)
18420 ("libtiff" ,libtiff)
18421 ("libx11" ,libx11)
18422 ("zlib" ,zlib)))
18423 (propagated-inputs
18424 `(("r-downloader" ,r-downloader)
18425 ("r-igraph" ,r-igraph)
18426 ("r-jpeg" ,r-jpeg)
18427 ("r-magrittr" ,r-magrittr)
18428 ("r-png" ,r-png)
18429 ("r-purrr" ,r-purrr)
18430 ("r-rcpp" ,r-rcpp)
18431 ("r-readbitmap" ,r-readbitmap)
18432 ("r-stringr" ,r-stringr)))
18433 (native-inputs `(("pkg-config" ,pkg-config)))
18434 (home-page "https://dahtah.github.io/imager/")
18435 (synopsis "Image processing library")
18436 (description
18437 "This is a package for fast image processing for images in up to 4
18438 dimensions (two spatial dimensions, one time/depth dimension, one color
18439 dimension). It provides most traditional image processing tools (filtering,
18440 morphology, transformations, etc.) as well as various functions for easily
18441 analyzing image data using R. The package wraps @url{http://cimg.eu, CImg}, a
18442 simple, modern C++ library for image processing.")
18443 (license license:lgpl3)))
18444
18445 (define-public r-acuityview
18446 (package
18447 (name "r-acuityview")
18448 (version "0.1")
18449 (source
18450 (origin
18451 (method url-fetch)
18452 (uri (cran-uri "AcuityView" version))
18453 (sha256
18454 (base32
18455 "0f0iclmnwdc8ixiiai4svk4x1g3pjy7dhm3cm58fv6ckx12d3d2l"))))
18456 (properties `((upstream-name . "AcuityView")))
18457 (build-system r-build-system)
18458 (propagated-inputs
18459 `(("r-fftwtools" ,r-fftwtools)
18460 ("r-imager" ,r-imager)
18461 ("r-plotrix" ,r-plotrix)))
18462 (home-page "https://cran.r-project.org/web/packages/AcuityView/")
18463 (synopsis "Display scenes as seen by an animal with less acute vision")
18464 (description
18465 "This package provides a simple method for representing a visual scene as
18466 it may be seen by an animal with less acute vision.")
18467 (license license:gpl2+)))
18468
18469 (define-public r-caret
18470 (package
18471 (name "r-caret")
18472 (version "6.0-86")
18473 (source
18474 (origin
18475 (method url-fetch)
18476 (uri (cran-uri "caret" version))
18477 (sha256
18478 (base32
18479 "0dyflixdw98lvk2x3w136sw24ij0fwx5c7l709dmqr5z7xy1qjns"))))
18480 (build-system r-build-system)
18481 (propagated-inputs
18482 `(("r-foreach" ,r-foreach)
18483 ("r-ggplot2" ,r-ggplot2)
18484 ("r-lattice" ,r-lattice)
18485 ("r-modelmetrics" ,r-modelmetrics)
18486 ("r-nlme" ,r-nlme)
18487 ("r-plyr" ,r-plyr)
18488 ("r-proc" ,r-proc)
18489 ("r-recipes" ,r-recipes)
18490 ("r-reshape2" ,r-reshape2)
18491 ("r-withr" ,r-withr)))
18492 (native-inputs
18493 `(("r-knitr" ,r-knitr)))
18494 (home-page "https://github.com/topepo/caret")
18495 (synopsis "Classification and regression training")
18496 (description
18497 "This package provides miscellaneous functions for training and plotting
18498 classification and regression models.")
18499 (license license:gpl2+)))
18500
18501 (define-public r-adabag
18502 (package
18503 (name "r-adabag")
18504 (version "4.2")
18505 (source
18506 (origin
18507 (method url-fetch)
18508 (uri (cran-uri "adabag" version))
18509 (sha256
18510 (base32
18511 "109wrl1pwvmyv2l909hrvk7dg4aa9pv449mvdycp50zwrsw9w0a7"))))
18512 (properties `((upstream-name . "adabag")))
18513 (build-system r-build-system)
18514 (propagated-inputs
18515 `(("r-caret" ,r-caret)
18516 ("r-doparallel" ,r-doparallel)
18517 ("r-foreach" ,r-foreach)
18518 ("r-rpart" ,r-rpart)))
18519 (home-page "https://cran.r-project.org/web/packages/adabag/")
18520 (synopsis "Multiclass AdaBoost.M1, SAMME and Bagging")
18521 (description
18522 "This package implements Freund and Schapire's Adaboost.M1 algorithm and
18523 Breiman's Bagging algorithm using classification trees as individual
18524 classifiers. Once these classifiers have been trained, they can be used to
18525 predict on new data. Also, cross validation estimation of the error can be
18526 done.")
18527 (license license:gpl2+)))
18528
18529 (define-public r-adagio
18530 (package
18531 (name "r-adagio")
18532 (version "0.7.1")
18533 (source
18534 (origin
18535 (method url-fetch)
18536 (uri (cran-uri "adagio" version))
18537 (sha256
18538 (base32
18539 "1h9l0ddrxq8y35iy9hdkxdvdwsqpnpkzzbkbwwhm4380lq1m7a3k"))))
18540 (properties `((upstream-name . "adagio")))
18541 (build-system r-build-system)
18542 (native-inputs `(("gfortran" ,gfortran)))
18543 (home-page "https://cran.r-project.org/web/packages/adagio/")
18544 (synopsis "Discrete and global optimization routines")
18545 (description
18546 "This package provides methods and algorithms for discrete optimization,
18547 e.g. knapsack and subset sum procedures, derivative-free Nelder-Mead and
18548 Hooke-Jeeves minimization, and some (evolutionary) global optimization
18549 functions.")
18550 (license license:gpl3+)))
18551
18552 (define-public r-univoutl
18553 (package
18554 (name "r-univoutl")
18555 (version "0.1-5")
18556 (source
18557 (origin
18558 (method url-fetch)
18559 (uri (cran-uri "univOutl" version))
18560 (sha256
18561 (base32
18562 "193wrpkvgmlrx43nag8w3ivrlqm37nm6g86wcvd3bgw3hchs70gi"))))
18563 (properties `((upstream-name . "univOutl")))
18564 (build-system r-build-system)
18565 (propagated-inputs
18566 `(("r-hmisc" ,r-hmisc)
18567 ("r-robustbase" ,r-robustbase)))
18568 (home-page "https://github.com/marcellodo/univOutl")
18569 (synopsis "Detection of univariate outliers")
18570 (description
18571 "This package provides well-known outlier detection techniques in the
18572 univariate case. Methods to deal with skewed distribution are included too.
18573 The Hidiroglou-Berthelot (1986) method to search for outliers in ratios of
18574 historical data is implemented as well. When available, survey weights can be
18575 used in outliers detection.")
18576 (license license:gpl2+)))
18577
18578 (define-public r-tolerance
18579 (package
18580 (name "r-tolerance")
18581 (version "2.0.0")
18582 (source
18583 (origin
18584 (method url-fetch)
18585 (uri (cran-uri "tolerance" version))
18586 (sha256
18587 (base32
18588 "001snzr2ipag3zprynydlbi9prkjzrllc054qh7m0qwkb3r19jjd"))))
18589 (properties `((upstream-name . "tolerance")))
18590 (build-system r-build-system)
18591 (propagated-inputs
18592 `(("r-mass" ,r-mass)
18593 ("r-rgl" ,r-rgl)))
18594 (home-page "https://cran.r-project.org/web/packages/tolerance/")
18595 (synopsis "Statistical tolerance intervals and regions")
18596 (description
18597 "This package provides functions for estimating tolerance
18598 limits (intervals) for various univariate distributions (binomial, Cauchy,
18599 discrete Pareto, exponential, two-parameter exponential, extreme value,
18600 hypergeometric, Laplace, logistic, negative binomial, negative hypergeometric,
18601 normal, Pareto, Poisson-Lindley, Poisson, uniform, and Zipf-Mandelbrot),
18602 Bayesian normal tolerance limits, multivariate normal tolerance regions,
18603 nonparametric tolerance intervals, tolerance bands for regression
18604 settings (linear regression, nonlinear regression, nonparametric regression,
18605 and multivariate regression), and analysis of variance tolerance intervals.
18606 Visualizations are also available for most of these settings.")
18607 (license license:gpl2+)))
18608
18609 (define-public r-additivitytests
18610 (package
18611 (name "r-additivitytests")
18612 (version "1.1-4")
18613 (source
18614 (origin
18615 (method url-fetch)
18616 (uri (cran-uri "additivityTests" version))
18617 (sha256
18618 (base32
18619 "048ds90wqjdjy1nyhna3m06asdklbh8sx1n556kss2j1r1pma1sw"))))
18620 (properties
18621 `((upstream-name . "additivityTests")))
18622 (build-system r-build-system)
18623 (home-page "https://github.com/simecek/additivityTests")
18624 (synopsis "Additivity tests in the two way Anova with single sub-class numbers")
18625 (description
18626 "This package provides an implementation of the Tukey, Mandel,
18627 Johnson-Graybill, LBI, Tusell and modified Tukey non-additivity tests.")
18628 (license license:gpl3)))
18629
18630 (define-public r-flexclust
18631 (package
18632 (name "r-flexclust")
18633 (version "1.4-0")
18634 (source
18635 (origin
18636 (method url-fetch)
18637 (uri (cran-uri "flexclust" version))
18638 (sha256
18639 (base32
18640 "0x7wxk8y46ndyz6fdacym0rd6p9wh3pcfr28chjcg5d7fm849zl2"))))
18641 (properties `((upstream-name . "flexclust")))
18642 (build-system r-build-system)
18643 (propagated-inputs
18644 `(("r-class" ,r-class)
18645 ("r-lattice" ,r-lattice)
18646 ("r-modeltools" ,r-modeltools)))
18647 (home-page "https://cran.r-project.org/web/packages/flexclust/")
18648 (synopsis "Flexible cluster algorithms")
18649 (description
18650 "The main function @code{kcca} implements a general framework for
18651 k-centroids cluster analysis supporting arbitrary distance measures and
18652 centroid computation. Further cluster methods include hard competitive
18653 learning, neural gas, and QT clustering. There are numerous visualization
18654 methods for cluster results (neighborhood graphs, convex cluster hulls,
18655 barcharts of centroids, ...), and bootstrap methods for the analysis of
18656 cluster stability.")
18657 (license license:gpl2)))
18658
18659 (define-public r-biclust
18660 (package
18661 (name "r-biclust")
18662 (version "2.0.2")
18663 (source
18664 (origin
18665 (method url-fetch)
18666 (uri (cran-uri "biclust" version))
18667 (sha256
18668 (base32
18669 "1pk7mvwlg4hkc4cn4w6wr2c192qx03d1xfwlzclk5bw1nmcg483b"))))
18670 (properties `((upstream-name . "biclust")))
18671 (build-system r-build-system)
18672 (propagated-inputs
18673 `(("r-additivitytests" ,r-additivitytests)
18674 ("r-colorspace" ,r-colorspace)
18675 ("r-flexclust" ,r-flexclust)
18676 ("r-ggplot2" ,r-ggplot2)
18677 ("r-lattice" ,r-lattice)
18678 ("r-mass" ,r-mass)
18679 ("r-tidyr" ,r-tidyr)))
18680 (home-page "https://cran.r-project.org/web/packages/biclust/")
18681 (synopsis "BiCluster algorithms")
18682 (description
18683 "The main function @code{biclust()} provides several algorithms to find
18684 biclusters in two-dimensional data, spectral, plaid model, xmotifs, and bimax.
18685 In addition, the package provides methods for data
18686 preprocessing (normalization and discretization), visualization, and
18687 validation of bicluster solutions.")
18688 (license license:gpl3)))
18689
18690 (define-public r-icge
18691 (package
18692 (name "r-icge")
18693 (version "0.3")
18694 (source
18695 (origin
18696 (method url-fetch)
18697 (uri (cran-uri "ICGE" version))
18698 (sha256
18699 (base32
18700 "0xin7zml1nbygyi08hhg3wwr2jr1zcsvrlgia89zp4xanxlzgaqa"))))
18701 (properties `((upstream-name . "ICGE")))
18702 (build-system r-build-system)
18703 (propagated-inputs
18704 `(("r-cluster" ,r-cluster)
18705 ("r-mass" ,r-mass)))
18706 (home-page "https://cran.r-project.org/web/packages/ICGE/")
18707 (synopsis "Cluster estimation and identification of atypical units")
18708 (description
18709 "ICGE is a package that helps to estimate the number of real clusters in
18710 data as well as to identify atypical units. The underlying methods are based
18711 on distances rather than on unit x variables.")
18712 (license license:gpl2+)))
18713
18714 (define-public r-depth
18715 (package
18716 (name "r-depth")
18717 (version "2.1-1.1")
18718 (source
18719 (origin
18720 (method url-fetch)
18721 (uri (cran-uri "depth" version))
18722 (sha256
18723 (base32
18724 "0szy0027nh4ps1z919i740i50app5q7cfyg1fj7pdyl45nbl8k6m"))))
18725 (properties `((upstream-name . "depth")))
18726 (build-system r-build-system)
18727 (propagated-inputs
18728 `(("r-abind" ,r-abind)
18729 ("r-circular" ,r-circular)
18730 ("r-rgl" ,r-rgl)))
18731 (native-inputs
18732 `(("gfortran" ,gfortran)))
18733 (home-page "https://cran.r-project.org/web/packages/depth/")
18734 (synopsis "Nonparametric depth functions for multivariate analysis")
18735 (description
18736 "This package provides tools for depth functions methodology applied to
18737 multivariate analysis. Besides allowing calculation of depth values and
18738 depth-based location estimators, the package includes functions or drawing
18739 contour plots and perspective plots of depth functions. Euclidian and
18740 spherical depths are supported.")
18741 (license license:gpl2)))
18742
18743 (define-public r-archetypes
18744 (package
18745 (name "r-archetypes")
18746 (version "2.2-0.1")
18747 (source
18748 (origin
18749 (method url-fetch)
18750 (uri (cran-uri "archetypes" version))
18751 (sha256
18752 (base32
18753 "0ibxsr173ib77gjhid91m85s8gjii4mi2w3d52q5301igv20p7r0"))))
18754 (properties `((upstream-name . "archetypes")))
18755 (build-system r-build-system)
18756 (propagated-inputs
18757 `(("r-modeltools" ,r-modeltools)
18758 ("r-nnls" ,r-nnls)))
18759 (home-page "https://cran.r-project.org/web/packages/archetypes")
18760 (synopsis "Archetypal analysis")
18761 (description
18762 "The main function @code{archetypes} implements a framework for
18763 archetypal analysis supporting arbitrary problem solving mechanisms for the
18764 different conceptual parts of the algorithm.")
18765 (license license:gpl2+)))
18766
18767 (define-public r-shapes
18768 (package
18769 (name "r-shapes")
18770 (version "1.2.5")
18771 (source
18772 (origin
18773 (method url-fetch)
18774 (uri (cran-uri "shapes" version))
18775 (sha256
18776 (base32
18777 "0gfpdydfysp5mwg7qmkn73s67gvh2szb40mzqrx97h41ijgcgd8s"))))
18778 (properties `((upstream-name . "shapes")))
18779 (build-system r-build-system)
18780 (propagated-inputs
18781 `(("r-mass" ,r-mass)
18782 ("r-minpack-lm" ,r-minpack-lm)
18783 ("r-rgl" ,r-rgl)
18784 ("r-scatterplot3d" ,r-scatterplot3d)))
18785 (home-page "http://www.maths.nottingham.ac.uk/~ild/shapes")
18786 (synopsis "Statistical shape analysis")
18787 (description
18788 "This package provides routines for the statistical analysis of landmark
18789 shapes, including Procrustes analysis, graphical displays, principal
18790 components analysis, permutation and bootstrap tests, thin-plate spline
18791 transformation grids and comparing covariance matrices. See Dryden, I.L. and
18792 Mardia, K.V. (2016). Statistical shape analysis, with Applications in R (2nd
18793 Edition), John Wiley and Sons.")
18794 (license license:gpl2)))
18795
18796 (define-public r-anthropometry
18797 (package
18798 (name "r-anthropometry")
18799 (version "1.13")
18800 (source
18801 (origin
18802 (method url-fetch)
18803 (uri (cran-uri "Anthropometry" version))
18804 (sha256
18805 (base32
18806 "1f568ri1s6psaby8y737vrkarbjg64v89d4jyw23hy17apdmszr8"))))
18807 (properties `((upstream-name . "Anthropometry")))
18808 (build-system r-build-system)
18809 (propagated-inputs
18810 `(("r-archetypes" ,r-archetypes)
18811 ("r-biclust" ,r-biclust)
18812 ("r-cluster" ,r-cluster)
18813 ("r-depth" ,r-depth)
18814 ("r-fnn" ,r-fnn)
18815 ("r-icge" ,r-icge)
18816 ("r-nnls" ,r-nnls)
18817 ("r-rgl" ,r-rgl)
18818 ("r-shapes" ,r-shapes)))
18819 (home-page "https://cran.r-project.org/web/packages/Anthropometry/")
18820 (synopsis "Statistical methods for anthropometric data")
18821 (description
18822 "This package provides statistical methods especially developed to
18823 analyze anthropometric data. These methods are aimed at providing effective
18824 solutions to some commons problems related to Ergonomics and Anthropometry.
18825 They are based on clustering, the statistical concept of data depth,
18826 statistical shape analysis and archetypal analysis.")
18827 (license license:gpl2+)))
18828
18829 (define-public r-adamethods
18830 (package
18831 (name "r-adamethods")
18832 (version "1.2")
18833 (source
18834 (origin
18835 (method url-fetch)
18836 (uri (cran-uri "adamethods" version))
18837 (sha256
18838 (base32
18839 "0mp73zh5x6h18gv29v981kb9n632kb58lvlcxwr6vcvrx393nrxh"))))
18840 (properties `((upstream-name . "adamethods")))
18841 (build-system r-build-system)
18842 (propagated-inputs
18843 `(("r-anthropometry" ,r-anthropometry)
18844 ("r-archetypes" ,r-archetypes)
18845 ("r-fnn" ,r-fnn)
18846 ("r-foreach" ,r-foreach)
18847 ("r-nnls" ,r-nnls)
18848 ("r-tolerance" ,r-tolerance)
18849 ("r-univoutl" ,r-univoutl)))
18850 (home-page "https://cran.r-project.org/web/packages/adamethods/")
18851 (synopsis "Archetypoid algorithms and anomaly detection")
18852 (description
18853 "This package is a collection of several algorithms to obtain
18854 archetypoids with small and large databases and with both classical
18855 multivariate data and functional data (univariate and multivariate). Some of
18856 these algorithms also allow to detect anomalies (outliers).")
18857 (license license:gpl2+)))
18858
18859 (define-public r-idpmisc
18860 (package
18861 (name "r-idpmisc")
18862 (version "1.1.20")
18863 (source
18864 (origin
18865 (method url-fetch)
18866 (uri (cran-uri "IDPmisc" version))
18867 (sha256
18868 (base32
18869 "0zy6mxqa8arq0vvhsdcifzm3085c23rnwa1n36fhircph1xwvfdw"))))
18870 (properties `((upstream-name . "IDPmisc")))
18871 (build-system r-build-system)
18872 (propagated-inputs
18873 `(("r-lattice" ,r-lattice)))
18874 (home-page "https://cran.r-project.org/web/packages/IDPmisc/")
18875 (synopsis "Functions for data analyses and visualization")
18876 (description
18877 "This package provides different high-level graphics functions for
18878 displaying large datasets, displaying circular data in a very flexible way,
18879 finding local maxima, brewing color ramps, drawing nice arrows, zooming
18880 2D-plots, creating figures with differently colored margin and plot region.
18881 In addition, the package contains auxiliary functions for data manipulation
18882 like omitting observations with irregular values or selecting data by logical
18883 vectors, which include NAs. Other functions are especially useful in
18884 spectroscopy and analyses of environmental data: robust baseline fitting,
18885 finding peaks in spectra, converting humidity measures.")
18886 (license license:gpl3+)))
18887
18888 (define-public r-qqman
18889 (package
18890 (name "r-qqman")
18891 (version "0.1.4")
18892 (source
18893 (origin
18894 (method url-fetch)
18895 (uri (cran-uri "qqman" version))
18896 (sha256
18897 (base32
18898 "1v9s9ag1hfb47py87wb2nad4mbsfx35832hdmrh5kxrb2f11zl1s"))))
18899 (properties `((upstream-name . "qqman")))
18900 (build-system r-build-system)
18901 (propagated-inputs
18902 `(("r-calibrate" ,r-calibrate)))
18903 (home-page "https://cran.r-project.org/web/packages/qqman/")
18904 (synopsis "Q-Q and Manhattan plots for GWAS data")
18905 (description
18906 "This package allows you to create Q-Q and Manhattan plots for GWAS data
18907 from PLINK results.")
18908 (license license:gpl3)))
18909
18910 (define-public r-ggplot-multistats
18911 (package
18912 (name "r-ggplot-multistats")
18913 (version "1.0.0")
18914 (source
18915 (origin
18916 (method url-fetch)
18917 (uri (cran-uri "ggplot.multistats" version))
18918 (sha256
18919 (base32
18920 "1afzfa86vc484bcwpg7m1ky03jpax584rigzgai8w06pifkmz0il"))))
18921 (properties
18922 `((upstream-name . "ggplot.multistats")))
18923 (build-system r-build-system)
18924 (propagated-inputs
18925 `(("r-ggplot2" ,r-ggplot2)
18926 ("r-hexbin" ,r-hexbin)
18927 ("r-rlang" ,r-rlang)
18928 ("r-scales" ,r-scales)))
18929 (home-page "https://github.com/flying-sheep/ggplot.multistats")
18930 (synopsis "Multiple summary statistics for binned stats/geometries")
18931 (description
18932 "This package provides the ggplot binning layer @code{stat_summaries_hex()},
18933 which functions similar to its singular form, but allows the use of multiple
18934 statistics per bin. Those statistics can be mapped to multiple bin
18935 aesthetics.")
18936 (license license:gpl3)))
18937
18938 (define-public r-knn-covertree
18939 (package
18940 (name "r-knn-covertree")
18941 (version "1.0")
18942 (source
18943 (origin
18944 (method url-fetch)
18945 (uri (cran-uri "knn.covertree" version))
18946 (sha256
18947 (base32
18948 "0msfcmwydws7q7m5jdb0dxab0nkbl7mq5llg6v3r4qrnlvrdggvz"))))
18949 (properties `((upstream-name . "knn.covertree")))
18950 (build-system r-build-system)
18951 (propagated-inputs
18952 `(("r-matrix" ,r-matrix)
18953 ("r-rcpp" ,r-rcpp)
18954 ("r-rcppeigen" ,r-rcppeigen)))
18955 (home-page "https://github.com/flying-sheep/knn.covertree")
18956 (synopsis "Accurate kNN Implementation with multiple distance measures")
18957 (description
18958 "Similarly to the FNN package, this package allows calculation of the k
18959 nearest neighbors (kNN) of a data matrix. The implementation is based on
18960 cover trees introduced by Alina Beygelzimer, Sham Kakade, and John
18961 Langford (2006) @url{doi:10.1145/1143844.1143857}.")
18962 (license license:agpl3+)))
18963
18964 (define-public r-poibin
18965 (package
18966 (name "r-poibin")
18967 (version "1.5")
18968 (source
18969 (origin
18970 (method url-fetch)
18971 (uri (cran-uri "poibin" version))
18972 (sha256
18973 (base32
18974 "1sxryvwwz6ldsnkzdy56p8c895s5yvpcai9ndyjv1x5q3l05wf9v"))))
18975 (properties `((upstream-name . "poibin")))
18976 (build-system r-build-system)
18977 (home-page "https://cran.r-project.org/web/packages/poibin/")
18978 (synopsis "Poisson binomial distribution")
18979 (description
18980 "This package provides an implementation of both the exact and
18981 approximation methods for computing the @dfn{cumulative distribution
18982 function} (CDF) of the Poisson binomial distribution. It also provides the
18983 @dfn{probability mass function} (PMF), quantile function, and random number
18984 generation for the Poisson binomial distribution.")
18985 (license license:gpl2)))
18986
18987 (define-public r-diagram
18988 (package
18989 (name "r-diagram")
18990 (version "1.6.4")
18991 (source
18992 (origin
18993 (method url-fetch)
18994 (uri (cran-uri "diagram" version))
18995 (sha256
18996 (base32
18997 "0f6ffprn5k0ir1s7m9s7izc64aa17r3gnygagz5bihrlsvawaavw"))))
18998 (properties `((upstream-name . "diagram")))
18999 (build-system r-build-system)
19000 (propagated-inputs
19001 `(("r-shape" ,r-shape)))
19002 (home-page "https://cran.r-project.org/web/packages/diagram/")
19003 (synopsis "Visualize simple graphs (networks) and plot flow diagrams")
19004 (description
19005 "This package provides tools to visualize simple graphs (networks) based
19006 on a transition matrix, utilities to plot flow diagrams, visualizing webs,
19007 electrical networks, etc. It also includes supporting material for the book
19008 \"A practical guide to ecological modelling - using R as a simulation
19009 platform\" by Karline Soetaert and Peter M.J. Herman (2009) and the book
19010 \"Solving Differential Equations in R\" by Karline Soetaert, Jeff Cash and
19011 Francesca Mazzia (2012).")
19012 (license license:gpl2+)))
19013
19014 (define-public r-lim
19015 (package
19016 (name "r-lim")
19017 (version "1.4.6")
19018 (source
19019 (origin
19020 (method url-fetch)
19021 (uri (cran-uri "LIM" version))
19022 (sha256
19023 (base32
19024 "03x1gnm06bw1wrzc01110bjzd2mvjdzbc2mbrazh22jrmb32w5d8"))))
19025 (properties `((upstream-name . "LIM")))
19026 (build-system r-build-system)
19027 (propagated-inputs
19028 `(("r-diagram" ,r-diagram)
19029 ("r-limsolve" ,r-limsolve)))
19030 (home-page "https://cran.r-project.org/web/packages/LIM/")
19031 (synopsis "Linear inverse model examples and solution methods")
19032 (description
19033 "This package provides functions that read and solve linear inverse
19034 problems (food web problems, linear programming problems).")
19035 (license license:gpl2+)))
19036
19037 (define-public r-shinycssloaders
19038 (package
19039 (name "r-shinycssloaders")
19040 (version "0.3")
19041 (source
19042 (origin
19043 (method url-fetch)
19044 (uri (cran-uri "shinycssloaders" version))
19045 (sha256
19046 (base32
19047 "1gzq1lhcnhqd145ys3ixf0l13l560fiqr2sc3m2nrijwxlgcw54d"))))
19048 (properties
19049 `((upstream-name . "shinycssloaders")))
19050 (build-system r-build-system)
19051 (propagated-inputs
19052 `(("r-digest" ,r-digest)
19053 ("r-glue" ,r-glue)
19054 ("r-shiny" ,r-shiny)))
19055 (home-page "https://github.com/andrewsali/shinycssloaders")
19056 (synopsis "Add CSS loading animations to Shiny outputs")
19057 (description
19058 "This package provides tools to create a lightweight Shiny wrapper for
19059 the css-loaders created by Luke Hass
19060 @url{https://github.com/lukehaas/css-loaders}. Wrapping a Shiny output will
19061 automatically show a loader when the output is (re)calculating.")
19062 (license license:gpl3)))
19063
19064 (define-public r-rsvg
19065 (package
19066 (name "r-rsvg")
19067 (version "1.3")
19068 (source
19069 (origin
19070 (method url-fetch)
19071 (uri (cran-uri "rsvg" version))
19072 (sha256
19073 (base32
19074 "11mccgf6hfskg45wqc114sx3qy2r494y6axdf73z6xwhs1wpm97g"))))
19075 (properties `((upstream-name . "rsvg")))
19076 (build-system r-build-system)
19077 (inputs
19078 `(("librsvg" ,librsvg)
19079 ("zlib" ,zlib)))
19080 (native-inputs
19081 `(("pkg-config" ,pkg-config)))
19082 (home-page "https://github.com/jeroen/rsvg#readme")
19083 (synopsis "Render SVG images into PDF, PNG, PostScript, or Bitmap arrays")
19084 (description
19085 "This package allows you to render vector-based SVG images into
19086 high-quality custom-size bitmap arrays using the librsvg2 library. The
19087 resulting bitmap can be written to e.g. PNG, JPEG or WEBP format. In
19088 addition, the package can convert images directly to various formats such as
19089 PDF or PostScript.")
19090 (license license:expat)))
19091
19092 (define-public r-influencer
19093 (package
19094 (name "r-influencer")
19095 (version "0.1.0")
19096 (source
19097 (origin
19098 (method url-fetch)
19099 (uri (cran-uri "influenceR" version))
19100 (sha256
19101 (base32
19102 "12p9362hkndlnz1rd8j2rykg57kbm6l7ks60by3rd25xg50k5jag"))))
19103 (properties `((upstream-name . "influenceR")))
19104 (build-system r-build-system)
19105 (propagated-inputs
19106 `(("r-igraph" ,r-igraph)
19107 ("r-matrix" ,r-matrix)))
19108 (home-page "https://github.com/rcc-uchicago/influenceR")
19109 (synopsis "Tools to quantify structural importance of nodes in a network")
19110 (description
19111 "This package provides functionality to compute various node centrality
19112 measures on networks. Included are functions to compute betweenness
19113 centrality (by utilizing Madduri and Bader's SNAP library), implementations of
19114 Burt's constraint and @dfn{effective network size} (ENS) metrics, Borgatti's
19115 algorithm to identify key players, and Valente's bridging metric. The
19116 betweenness, Key Players, and bridging implementations are parallelized with
19117 OpenMP.")
19118 (license license:gpl2)))
19119
19120 (define-public r-emplik
19121 (package
19122 (name "r-emplik")
19123 (version "1.0-4.3")
19124 (source
19125 (origin
19126 (method url-fetch)
19127 (uri (cran-uri "emplik" version))
19128 (sha256
19129 (base32
19130 "1g4hz85bvw29c77zs0ig487z92jjl682vv457x81l077h0psvk7c"))))
19131 (properties `((upstream-name . "emplik")))
19132 (build-system r-build-system)
19133 (propagated-inputs
19134 `(("r-quantreg" ,r-quantreg)))
19135 (home-page "https://www.ms.uky.edu/~mai/EmpLik.html")
19136 (synopsis "Empirical likelihood ratio for censored/truncated data")
19137 (description
19138 "This package provides empirical likelihood ratio tests for
19139 means/quantiles/hazards from possibly censored and/or truncated data. It also
19140 does regression.")
19141 (license license:gpl2+)))
19142
19143 (define-public r-imputeyn
19144 (package
19145 (name "r-imputeyn")
19146 (version "1.3")
19147 (source
19148 (origin
19149 (method url-fetch)
19150 (uri (cran-uri "imputeYn" version))
19151 (sha256
19152 (base32
19153 "1b21w1aa5f7yiq8k0wa86wvbg4ij7f6ldwn6asfqwb0b90rvsgvs"))))
19154 (properties `((upstream-name . "imputeYn")))
19155 (build-system r-build-system)
19156 (propagated-inputs
19157 `(("r-boot" ,r-boot)
19158 ("r-emplik" ,r-emplik)
19159 ("r-mvtnorm" ,r-mvtnorm)
19160 ("r-quadprog" ,r-quadprog)
19161 ("r-survival" ,r-survival)))
19162 (home-page "https://cran.r-project.org/web/packages/imputeYn/")
19163 (synopsis "Impute last largest censored observation under weighted least squares")
19164 (description
19165 "This package allows for the imputation of the last largest censored
19166 observantions. This method brings less bias and more efficient estimates for
19167 AFT models.")
19168 (license license:gpl2)))
19169
19170 (define-public r-adapenetclass
19171 (package
19172 (name "r-adapenetclass")
19173 (version "1.2")
19174 (source
19175 (origin
19176 (method url-fetch)
19177 (uri (cran-uri "AdapEnetClass" version))
19178 (sha256
19179 (base32
19180 "01k3mj4g1ckbng7wkzzn9h0k9yf01cpnnkly0sjda574c5jhj0rc"))))
19181 (properties `((upstream-name . "AdapEnetClass")))
19182 (build-system r-build-system)
19183 (propagated-inputs
19184 `(("r-glmnet" ,r-glmnet)
19185 ("r-imputeyn" ,r-imputeyn)
19186 ("r-lars" ,r-lars)
19187 ("r-quadprog" ,r-quadprog)))
19188 (home-page "https://cran.r-project.org/web/packages/AdapEnetClass/")
19189 (synopsis "Class of adaptive elastic net methods for censored data")
19190 (description
19191 "This package provides methods for variable selection for AFT models.")
19192 (license license:gpl2)))
19193
19194 (define-public r-flock
19195 (package
19196 (name "r-flock")
19197 (version "0.7")
19198 (source
19199 (origin
19200 (method url-fetch)
19201 (uri (cran-uri "flock" version))
19202 (sha256
19203 (base32
19204 "1zg93p74icj4bhxnmnssj2xp6vw4yaksyavq03497v33xfpdxss7"))))
19205 (properties `((upstream-name . "flock")))
19206 (build-system r-build-system)
19207 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
19208 (home-page "https://cran.r-project.org/web/packages/flock/")
19209 (synopsis "Process synchronization using file locks")
19210 (description
19211 "This package implements synchronization between R processes (spawned by
19212 using the @code{parallel} package for instance) using file locks. It supports
19213 both exclusive and shared locking.")
19214 (license license:asl2.0)))
19215
19216 (define-public r-archivist
19217 (package
19218 (name "r-archivist")
19219 (version "2.3.4")
19220 (source
19221 (origin
19222 (method url-fetch)
19223 (uri (cran-uri "archivist" version))
19224 (sha256
19225 (base32
19226 "1i11hrcq1910jgd6diw6h3sxx624v57zjianm49pqvb2dvd0b8y7"))))
19227 (properties `((upstream-name . "archivist")))
19228 (build-system r-build-system)
19229 (propagated-inputs
19230 `(("r-dbi" ,r-dbi)
19231 ("r-digest" ,r-digest)
19232 ("r-flock" ,r-flock)
19233 ("r-httr" ,r-httr)
19234 ("r-lubridate" ,r-lubridate)
19235 ("r-magrittr" ,r-magrittr)
19236 ("r-rcurl" ,r-rcurl)
19237 ("r-rsqlite" ,r-rsqlite)))
19238 (home-page "https://pbiecek.github.io/archivist/")
19239 (synopsis "Tools for storing, restoring and searching for R objects")
19240 (description
19241 "Data exploration and modelling is a process in which a lot of data
19242 artifacts are produced. Artifacts like: subsets, data aggregates, plots,
19243 statistical models, different versions of data sets and different versions of
19244 results. Archivist helps to store and manage artifacts created in R. It
19245 allows you to store selected artifacts as binary files together with their
19246 metadata and relations. Archivist allows sharing artifacts with others. It
19247 can look for already created artifacts by using its class, name, date of the
19248 creation or other properties. It also makes it easy to restore such
19249 artifacts.")
19250 (license license:gpl2)))
19251
19252 (define-public r-versions
19253 (package
19254 (name "r-versions")
19255 (version "0.3")
19256 (source
19257 (origin
19258 (method url-fetch)
19259 (uri (cran-uri "versions" version))
19260 (sha256
19261 (base32
19262 "0zm49j785dgv7fyr1yl9q5f0dsk8hhpim5q5bpkgrkzv7pwjribd"))))
19263 (properties `((upstream-name . "versions")))
19264 (build-system r-build-system)
19265 (home-page "https://cran.r-project.org/web/packages/versions/")
19266 (synopsis "Query and install specific versions of CRAN packages")
19267 (description
19268 "This package allows you to install specified versions of R packages
19269 hosted on CRAN and provides functions to list available versions and the
19270 versions of currently installed packages.")
19271 (license license:bsd-3)))
19272
19273 (define-public r-adapr
19274 (package
19275 (name "r-adapr")
19276 (version "2.0.0")
19277 (source
19278 (origin
19279 (method url-fetch)
19280 (uri (cran-uri "adapr" version))
19281 (sha256
19282 (base32
19283 "1s57jdbi5pik56xjz1d4438ax6cywg2yq2s47h5g6wrwvpgr1qfw"))))
19284 (properties `((upstream-name . "adapr")))
19285 (build-system r-build-system)
19286 (propagated-inputs
19287 `(("r-archivist" ,r-archivist)
19288 ("r-devtools" ,r-devtools)
19289 ("r-digest" ,r-digest)
19290 ("r-doparallel" ,r-doparallel)
19291 ("r-gdata" ,r-gdata)
19292 ("r-ggplot2" ,r-ggplot2)
19293 ("r-git2r" ,r-git2r)
19294 ("r-igraph" ,r-igraph)
19295 ("r-knitr" ,r-knitr)
19296 ("r-plotly" ,r-plotly)
19297 ("r-plyr" ,r-plyr)
19298 ("r-rmarkdown" ,r-rmarkdown)
19299 ("r-shiny" ,r-shiny)
19300 ("r-shinydashboard" ,r-shinydashboard)
19301 ("r-versions" ,r-versions)))
19302 (home-page "https://cran.r-project.org/web/packages/adapr/")
19303 (synopsis "Implementation of an accountable data analysis process")
19304 (description
19305 "This package tracks reading and writing within R scripts that are
19306 organized into a directed acyclic graph. It contains an interactive Shiny
19307 application @code{adaprApp()}. It uses Git and file hashes to track version
19308 histories of inputs and outputs.")
19309 (license license:lgpl2.0)))
19310
19311 (define-public r-adapsamp
19312 (package
19313 (name "r-adapsamp")
19314 (version "1.1.1")
19315 (source
19316 (origin
19317 (method url-fetch)
19318 (uri (cran-uri "AdapSamp" version))
19319 (sha256
19320 (base32
19321 "1jayjrsiib2ij4rxxj59g71r3xhzl5yqh0lhi8k6cfy03i7dkvis"))))
19322 (properties `((upstream-name . "AdapSamp")))
19323 (build-system r-build-system)
19324 (propagated-inputs `(("r-pracma" ,r-pracma)))
19325 (home-page "https://cran.r-project.org/web/packages/AdapSamp/")
19326 (synopsis "Adaptive sampling algorithms")
19327 (description
19328 "For distributions whose probability density functions are log-concave,
19329 the adaptive rejection sampling algorithm can be used to build envelope
19330 functions for sampling. For others, the modified adaptive rejection sampling
19331 algorithm, the concave-convex adaptive rejection sampling algorithm, and the
19332 adaptive slice sampling algorithm can be used. This R package mainly includes
19333 these four functions: @code{rARS()}, @code{rMARS()}, @code{rCCARS()}, and
19334 @code{rASS()}. These functions can realize sampling based on the algorithms
19335 above.")
19336 (license license:gpl2)))
19337
19338 (define-public r-adaptalint
19339 (package
19340 (name "r-adaptalint")
19341 (version "0.2.4")
19342 (source
19343 (origin
19344 (method url-fetch)
19345 (uri (cran-uri "adaptalint" version))
19346 (sha256
19347 (base32
19348 "15qdcvnnbgcps8j5k79354wsc9alswijv8lcafg2i3lghaw536yf"))))
19349 (properties `((upstream-name . "adaptalint")))
19350 (build-system r-build-system)
19351 (propagated-inputs
19352 `(("r-dplyr" ,r-dplyr)
19353 ("r-lintr" ,r-lintr)
19354 ("r-purrr" ,r-purrr)))
19355 (home-page "https://cran.r-project.org/web/packages/adaptalint/")
19356 (synopsis "Check R code style")
19357 (description
19358 "This package provides tools to infer the code style (which style rules
19359 are followed and which ones are not) from one package and use it to check
19360 another. This makes it easier to find and correct the most important problems
19361 first.")
19362 (license license:gpl3)))
19363
19364 (define-public r-fracdiff
19365 (package
19366 (name "r-fracdiff")
19367 (version "1.5-1")
19368 (source
19369 (origin
19370 (method url-fetch)
19371 (uri (cran-uri "fracdiff" version))
19372 (sha256
19373 (base32
19374 "1dhfjlhr9sb38qgpsx0sm73l9lgc13d0fk32l7fmjfnalhr3n45q"))))
19375 (properties `((upstream-name . "fracdiff")))
19376 (build-system r-build-system)
19377 (home-page "https://github.com/mmaechler/fracdiff")
19378 (synopsis
19379 "Fractionally differenced ARIMA aka ARFIMA(P,d,q) models")
19380 (description
19381 "This package provides tools for the maximum likelihood estimation of the
19382 parameters of a fractionally differenced ARIMA(p,d,q) model (Haslett and
19383 Raftery, Appl.Statistics, 1989); it includes inference and basic methods.")
19384 (license license:gpl2+)))
19385
19386 (define-public r-forecast
19387 (package
19388 (name "r-forecast")
19389 (version "8.12")
19390 (source
19391 (origin
19392 (method url-fetch)
19393 (uri (cran-uri "forecast" version))
19394 (sha256
19395 (base32
19396 "1ycj5z4wd5a16nlcjy07dqm8jkih240xa02cn4wvysnnhkapyq7b"))))
19397 (properties `((upstream-name . "forecast")))
19398 (build-system r-build-system)
19399 (propagated-inputs
19400 `(("r-colorspace" ,r-colorspace)
19401 ("r-fracdiff" ,r-fracdiff)
19402 ("r-ggplot2" ,r-ggplot2)
19403 ("r-lmtest" ,r-lmtest)
19404 ("r-magrittr" ,r-magrittr)
19405 ("r-nnet" ,r-nnet)
19406 ("r-rcpp" ,r-rcpp)
19407 ("r-rcpparmadillo" ,r-rcpparmadillo)
19408 ("r-timedate" ,r-timedate)
19409 ("r-tseries" ,r-tseries)
19410 ("r-urca" ,r-urca)
19411 ("r-zoo" ,r-zoo)))
19412 (native-inputs
19413 `(("r-knitr" ,r-knitr))) ; needed for vignettes
19414 (home-page "https://pkg.robjhyndman.com/forecast/")
19415 (synopsis "Forecasting functions for time series and linear models")
19416 (description
19417 "This package provides methods and tools for displaying and analysing
19418 univariate time series forecasts including exponential smoothing via state
19419 space models and automatic ARIMA modelling.")
19420 (license license:gpl3)))
19421
19422 (define-public r-xmisc
19423 (package
19424 (name "r-xmisc")
19425 (version "0.2.1")
19426 (source
19427 (origin
19428 (method url-fetch)
19429 (uri (cran-uri "Xmisc" version))
19430 (sha256
19431 (base32
19432 "11gwlcyxhz1p50m68cnqrxmisdk99v8vrsbvyr7k67f0kvsznzs1"))))
19433 (properties `((upstream-name . "Xmisc")))
19434 (build-system r-build-system)
19435 (home-page "https://cran.r-project.org/package=Xmisc")
19436 (synopsis
19437 "Xiaobei's miscellaneous classes and functions")
19438 (description
19439 "This package provides Xiaobei's miscellaneous classes and functions,
19440 which are useful when developing R packages for @dfn{object oriented
19441 programming} (OOP) using R Reference Class.")
19442 (license license:gpl2+)))
19443
19444 (define-public r-proxyc
19445 (package
19446 (name "r-proxyc")
19447 (version "0.1.5")
19448 (source
19449 (origin
19450 (method url-fetch)
19451 (uri (cran-uri "proxyC" version))
19452 (sha256
19453 (base32
19454 "159bc42x4shm6n3rh9fc8ziv3ivq0ipmpbasrh279hhn1prc8gg6"))))
19455 (properties `((upstream-name . "proxyC")))
19456 (build-system r-build-system)
19457 (propagated-inputs
19458 `(("r-matrix" ,r-matrix)
19459 ("r-rcpp" ,r-rcpp)
19460 ("r-rcpparmadillo" ,r-rcpparmadillo)
19461 ("r-rcppparallel" ,r-rcppparallel)))
19462 (home-page "https://cran.r-project.org/package=proxyC")
19463 (synopsis "Compute proximity in large sparse matrices")
19464 (description
19465 "This package provides efficient tools to compute the proximity between
19466 rows or columns of large matrices. Functions are optimised for large sparse
19467 matrices using the Armadillo and Intel TBB libraries. Among several built-in
19468 similarity/distance measures, computation of correlation, cosine similarity
19469 and Euclidean distance is particularly fast.")
19470 (license license:gpl3)))
19471
19472 (define-public r-isocodes
19473 (package
19474 (name "r-isocodes")
19475 (version "2020.03.16")
19476 (source
19477 (origin
19478 (method url-fetch)
19479 (uri (cran-uri "ISOcodes" version))
19480 (sha256
19481 (base32
19482 "1hz1sj57qkkkrgn8slsz2n4jv1fkyp40503j9rg30lxy4gmb83hn"))))
19483 (properties `((upstream-name . "ISOcodes")))
19484 (build-system r-build-system)
19485 (home-page "https://cran.r-project.org/package=ISOcodes")
19486 (synopsis "Selected ISO codes")
19487 (description
19488 "This package provides ISO language, territory, currency, script and
19489 character codes. It provides ISO 639 language codes, ISO 3166 territory
19490 codes, ISO 4217 currency codes, ISO 15924 script codes, and the ISO 8859
19491 character codes as well as the UN M.49 area codes.")
19492 (license license:gpl2)))
19493
19494 (define-public r-stopwords
19495 (package
19496 (name "r-stopwords")
19497 (version "1.0")
19498 (source
19499 (origin
19500 (method url-fetch)
19501 (uri (cran-uri "stopwords" version))
19502 (sha256
19503 (base32
19504 "1nmi0bpd0c238g5b8ch1v034m5ng9llhs519cgxdrj3sh9fplwlv"))))
19505 (properties `((upstream-name . "stopwords")))
19506 (build-system r-build-system)
19507 (propagated-inputs `(("r-isocodes" ,r-isocodes)))
19508 (home-page "https://github.com/quanteda/stopwords")
19509 (synopsis "Multilingual stopword lists")
19510 (description
19511 "This package provides multiple sources of stopwords, for use in text
19512 analysis and natural language processing.")
19513 (license license:expat)))
19514
19515 (define-public r-spacyr
19516 (package
19517 (name "r-spacyr")
19518 (version "1.2.1")
19519 (source
19520 (origin
19521 (method url-fetch)
19522 (uri (cran-uri "spacyr" version))
19523 (sha256
19524 (base32
19525 "1b2ccgwsiqkvp7w37x8k7699c676q16vfrybkrfvyczyhki4s6nw"))))
19526 (properties `((upstream-name . "spacyr")))
19527 (build-system r-build-system)
19528 (propagated-inputs
19529 `(("r-data-table" ,r-data-table)
19530 ("r-reticulate" ,r-reticulate)))
19531 (home-page "https://spacyr.quanteda.io")
19532 (synopsis "R wrapper for the spaCy NLP library")
19533 (description
19534 "This package provides an R wrapper to the Python @dfn{natural language
19535 processing} (NLP) library @code{spaCy}, from @url{http://spacy.io}.")
19536 (license license:gpl3)))
19537
19538 (define-public r-snowballc
19539 (package
19540 (name "r-snowballc")
19541 (version "0.7.0")
19542 (source
19543 (origin
19544 (method url-fetch)
19545 (uri (cran-uri "SnowballC" version))
19546 (sha256
19547 (base32
19548 "1wwm71mp4b2mjb5985x782p6xj519dfrpd40qli7lmig6afyw3xi"))))
19549 (properties `((upstream-name . "SnowballC")))
19550 (build-system r-build-system)
19551 (home-page "https://r-forge.r-project.org/projects/r-temis/")
19552 (synopsis "Snowball stemmers based on the C libstemmer UTF-8 library")
19553 (description
19554 "This package provides an R interface to the C @code{libstemmer} library
19555 that implements Porter's word stemming algorithm for collapsing words to a
19556 common root to aid comparison of vocabulary. Currently supported languages
19557 are Danish, Dutch, English, Finnish, French, German, Hungarian, Italian,
19558 Norwegian, Portuguese, Romanian, Russian, Spanish, Swedish and Turkish.")
19559 (license license:bsd-3)))
19560
19561 (define-public r-quanteda
19562 (package
19563 (name "r-quanteda")
19564 (version "2.0.1")
19565 (source
19566 (origin
19567 (method url-fetch)
19568 (uri (cran-uri "quanteda" version))
19569 (sha256
19570 (base32
19571 "0pym6vdzqbkyj87m3pla229092xvvx4j830x67qflxzzdmc9dzhz"))))
19572 (properties `((upstream-name . "quanteda")))
19573 (build-system r-build-system)
19574 (propagated-inputs
19575 `(("r-data-table" ,r-data-table)
19576 ("r-extrafont" ,r-extrafont)
19577 ("r-fastmatch" ,r-fastmatch)
19578 ("r-ggplot2" ,r-ggplot2)
19579 ("r-ggrepel" ,r-ggrepel)
19580 ("r-jsonlite" ,r-jsonlite)
19581 ("r-magrittr" ,r-magrittr)
19582 ("r-matrix" ,r-matrix)
19583 ("r-network" ,r-network)
19584 ("r-proxyc" ,r-proxyc)
19585 ("r-rcpp" ,r-rcpp)
19586 ("r-rcpparmadillo" ,r-rcpparmadillo)
19587 ("r-rcppparallel" ,r-rcppparallel)
19588 ("r-sna" ,r-sna)
19589 ("r-snowballc" ,r-snowballc)
19590 ("r-stopwords" ,r-stopwords)
19591 ("r-stringi" ,r-stringi)
19592 ("r-xml2" ,r-xml2)
19593 ("r-yaml" ,r-yaml)))
19594 (native-inputs
19595 `(("r-knitr" ,r-knitr)))
19596 (home-page "https://quanteda.io")
19597 (synopsis "Quantitative analysis of textual data")
19598 (description
19599 "This package provides a fast, flexible, and comprehensive framework for
19600 quantitative text analysis in R. It provides functionality for corpus
19601 management, creating and manipulating tokens and ngrams, exploring keywords in
19602 context, forming and manipulating sparse matrices of documents by features and
19603 feature co-occurrences, analyzing keywords, computing feature similarities and
19604 distances, applying content dictionaries, applying supervised and unsupervised
19605 machine learning, visually representing text and text analyses, and more.")
19606 (license license:gpl3)))
19607
19608 (define-public r-topicmodels
19609 (package
19610 (name "r-topicmodels")
19611 (version "0.2-9")
19612 (source
19613 (origin
19614 (method url-fetch)
19615 (uri (cran-uri "topicmodels" version))
19616 (sha256
19617 (base32
19618 "1757r5x8bsl4dk106xg6481mvdkdz9vwg87n7rpbvdkavsvhyxs0"))))
19619 (properties `((upstream-name . "topicmodels")))
19620 (build-system r-build-system)
19621 (native-inputs
19622 `(("gsl" ,gsl)))
19623 (propagated-inputs
19624 `(("r-modeltools" ,r-modeltools)
19625 ("r-slam" ,r-slam)
19626 ("r-tm" ,r-tm)))
19627 (home-page "https://cran.r-project.org/package=topicmodels")
19628 (synopsis "Topic models")
19629 (description
19630 "This package provides an interface to the C code for @dfn{Latent
19631 Dirichlet Allocation} (LDA) models and @dfn{Correlated Topics Models} (CTM) by
19632 David M. Blei and co-authors and the C++ code for fitting LDA models using
19633 Gibbs sampling by Xuan-Hieu Phan and co-authors.")
19634 (license license:gpl2)))
19635
19636 (define-public r-stm
19637 (package
19638 (name "r-stm")
19639 (version "1.3.5")
19640 (source
19641 (origin
19642 (method url-fetch)
19643 (uri (cran-uri "stm" version))
19644 (sha256
19645 (base32
19646 "1yyfxaxqc6yq0yq68zhdnhpwpvsyp71dlmivn7zxixfmp932s6cn"))))
19647 (properties `((upstream-name . "stm")))
19648 (build-system r-build-system)
19649 (propagated-inputs
19650 `(("r-data-table" ,r-data-table)
19651 ("r-glmnet" ,r-glmnet)
19652 ("r-lda" ,r-lda)
19653 ("r-matrix" ,r-matrix)
19654 ("r-matrixstats" ,r-matrixstats)
19655 ("r-quadprog" ,r-quadprog)
19656 ("r-quanteda" ,r-quanteda)
19657 ("r-rcpp" ,r-rcpp)
19658 ("r-rcpparmadillo" ,r-rcpparmadillo)
19659 ("r-slam" ,r-slam)
19660 ("r-stringr" ,r-stringr)))
19661 (home-page "http://www.structuraltopicmodel.com/")
19662 (synopsis "Estimation of the Structural Topic Model")
19663 (description
19664 "The @dfn{Structural Topic Model} (STM) allows researchers to estimate
19665 topic models with document-level covariates. The package also includes tools
19666 for model selection, visualization, and estimation of topic-covariate
19667 regressions.")
19668 (license license:expat)))
19669
19670 (define-public r-polycor
19671 (package
19672 (name "r-polycor")
19673 (version "0.7-10")
19674 (source
19675 (origin
19676 (method url-fetch)
19677 (uri (cran-uri "polycor" version))
19678 (sha256
19679 (base32
19680 "0wzwzklflbhi8sv9m7ijwr16v9zmkk0j0v4pbcpf32f8lbn3psna"))))
19681 (properties `((upstream-name . "polycor")))
19682 (build-system r-build-system)
19683 (propagated-inputs
19684 `(("r-matrix" ,r-matrix)
19685 ("r-mvtnorm" ,r-mvtnorm)))
19686 (home-page "https://r-forge.r-project.org/projects/polycor/")
19687 (synopsis "Polychoric and polyserial correlations")
19688 (description
19689 "This package provides tools to compute polychoric and polyserial
19690 correlations by quick \"two-step\" methods or ML, optionally with standard
19691 errors; tetrachoric and biserial correlations are special cases.")
19692 (license license:gpl2+)))
19693
19694 (define-public r-msm
19695 (package
19696 (name "r-msm")
19697 (version "1.6.8")
19698 (source
19699 (origin
19700 (method url-fetch)
19701 (uri (cran-uri "msm" version))
19702 (sha256
19703 (base32
19704 "1d32y8f0vb2dfv3999liigpns788j145nrvd1xpxb9i2lsg8mwgk"))))
19705 (properties `((upstream-name . "msm")))
19706 (build-system r-build-system)
19707 (propagated-inputs
19708 `(("r-expm" ,r-expm)
19709 ("r-mvtnorm" ,r-mvtnorm)
19710 ("r-survival" ,r-survival)))
19711 (home-page "https://github.com/chjackson/msm")
19712 (synopsis "Multi-state Markov and hidden Markov models in continuous time")
19713 (description
19714 "This package provides functions for fitting continuous-time Markov and
19715 hidden Markov multi-state models to longitudinal data. It was designed for
19716 processes observed at arbitrary times in continuous time (panel data) but some
19717 other observation schemes are supported. Both Markov transition rates and the
19718 hidden Markov output process can be modelled in terms of covariates, which may
19719 be constant or piecewise-constant in time.")
19720 (license license:gpl2+)))
19721
19722 (define-public r-ltm
19723 (package
19724 (name "r-ltm")
19725 (version "1.1-1")
19726 (source
19727 (origin
19728 (method url-fetch)
19729 (uri (cran-uri "ltm" version))
19730 (sha256
19731 (base32
19732 "1qrgzwx5l58qf5rfp1knxc84r0g943q5sdr3ky74zzwpnmrf2vf7"))))
19733 (properties `((upstream-name . "ltm")))
19734 (build-system r-build-system)
19735 (propagated-inputs
19736 `(("r-mass" ,r-mass)
19737 ("r-msm" ,r-msm)
19738 ("r-polycor" ,r-polycor)))
19739 (home-page "https://github.com/drizopoulos/ltm")
19740 (synopsis "Latent trait models under IRT")
19741 (description
19742 "This is a package supporting the analysis of multivariate dichotomous
19743 and polytomous data using latent trait models under the Item Response Theory
19744 approach. It includes the Rasch, the Two-Parameter Logistic, the Birnbaum's
19745 Three-Parameter, the Graded Response, and the Generalized Partial Credit
19746 Models.")
19747 (license license:gpl2+)))
19748
19749 (define-public r-mi
19750 (package
19751 (name "r-mi")
19752 (version "1.0")
19753 (source
19754 (origin
19755 (method url-fetch)
19756 (uri (cran-uri "mi" version))
19757 (sha256
19758 (base32
19759 "1h47k5mpbvhid83277dvvj2di493bgzz9iarpyv3r30y219l7x1l"))))
19760 (properties `((upstream-name . "mi")))
19761 (build-system r-build-system)
19762 (propagated-inputs
19763 `(("r-arm" ,r-arm)
19764 ("r-matrix" ,r-matrix)))
19765 (home-page "http://www.stat.columbia.edu/~gelman/")
19766 (synopsis "Missing data imputation and model checking")
19767 (description
19768 "This package provides functions for data manipulation, imputing missing
19769 values in an approximate Bayesian framework, diagnostics of the models used to
19770 generate the imputations, confidence-building mechanisms to validate some of
19771 the assumptions of the imputation algorithm, and functions to analyze multiply
19772 imputed data sets with the appropriate degree of sampling uncertainty.")
19773 (license license:gpl2+)))
19774
19775 (define-public r-matrixcalc
19776 (package
19777 (name "r-matrixcalc")
19778 (version "1.0-3")
19779 (source
19780 (origin
19781 (method url-fetch)
19782 (uri (cran-uri "matrixcalc" version))
19783 (sha256
19784 (base32
19785 "1c4w9dhi5w98qj1wwh9bbpnfk39rhiwjbanalr8bi5nmxkpcmrhp"))))
19786 (properties `((upstream-name . "matrixcalc")))
19787 (build-system r-build-system)
19788 (home-page "https://cran.r-project.org/web/packages/matrixcalc/")
19789 (synopsis "Collection of functions for matrix calculations")
19790 (description
19791 "This package provides a collection of functions to support matrix
19792 calculations for probability, econometric and numerical analysis. There are
19793 additional functions that are comparable to APL functions which are useful for
19794 actuarial models such as pension mathematics.")
19795 (license license:gpl2+)))
19796
19797 (define-public r-sem
19798 (package
19799 (name "r-sem")
19800 (version "3.1-9")
19801 (source
19802 (origin
19803 (method url-fetch)
19804 (uri (cran-uri "sem" version))
19805 (sha256
19806 (base32
19807 "1f9c6g6pfx66gd2pappcsqh484ah6a0x4z47hpd46rah0817hcsa"))))
19808 (properties `((upstream-name . "sem")))
19809 (build-system r-build-system)
19810 (propagated-inputs
19811 `(("r-boot" ,r-boot)
19812 ("r-mass" ,r-mass)
19813 ("r-matrixcalc" ,r-matrixcalc)
19814 ("r-mi" ,r-mi)))
19815 (home-page "https://cran.r-project.org/package=sem")
19816 (synopsis "Structural equation models")
19817 (description
19818 "This package provides functions for fitting general linear structural
19819 equation models (with observed and latent variables) using the RAM approach,
19820 and for fitting structural equations in observed-variable models by two-stage
19821 least squares.")
19822 (license license:gpl2+)))
19823
19824 (define-public r-semtools
19825 (package
19826 (name "r-semtools")
19827 (version "0.5-2")
19828 (source
19829 (origin
19830 (method url-fetch)
19831 (uri (cran-uri "semTools" version))
19832 (sha256
19833 (base32
19834 "1zj841pszfsikzp82cmh463qyc4xhdrqjqcnhc2r8mcflv12irv6"))))
19835 (properties `((upstream-name . "semTools")))
19836 (build-system r-build-system)
19837 (propagated-inputs
19838 `(("r-lavaan" ,r-lavaan)))
19839 (home-page "https://github.com/simsem/semTools/wiki")
19840 (synopsis "Useful tools for structural equation modeling")
19841 (description
19842 "This package provides useful tools for structural equation modeling.")
19843 (license license:gpl2+)))
19844
19845 (define-public r-regsem
19846 (package
19847 (name "r-regsem")
19848 (version "1.5.2")
19849 (source
19850 (origin
19851 (method url-fetch)
19852 (uri (cran-uri "regsem" version))
19853 (sha256
19854 (base32
19855 "0ch057010xfsw0nqcsarzakdbiplvxaldyqlbbacspqs65ax1yk7"))))
19856 (properties `((upstream-name . "regsem")))
19857 (build-system r-build-system)
19858 (propagated-inputs
19859 `(("r-lavaan" ,r-lavaan)
19860 ("r-rcpp" ,r-rcpp)
19861 ("r-rcpparmadillo" ,r-rcpparmadillo)
19862 ("r-rsolnp" ,r-rsolnp)))
19863 (home-page "https://cran.r-project.org/package=regsem")
19864 (synopsis "Regularized structural equation modeling")
19865 (description
19866 "This package uses both ridge and lasso penalties (and extensions) to
19867 penalize specific parameters in structural equation models. The package
19868 offers additional cost functions, cross validation, and other extensions
19869 beyond traditional structural equation models. It also contains a function to
19870 perform @dfn{exploratory mediation} (XMed).")
19871 (license license:gpl2+)))
19872
19873 (define-public r-stanheaders
19874 (package
19875 (name "r-stanheaders")
19876 (version "2.19.2")
19877 (source
19878 (origin
19879 (method url-fetch)
19880 (uri (cran-uri "StanHeaders" version))
19881 (sha256
19882 (base32
19883 "0cmk0fzczx7dcywcw1dhm6gfq84qlsx77qrsk4z3bf3dhr4bznam"))))
19884 (properties `((upstream-name . "StanHeaders")))
19885 (build-system r-build-system)
19886 (inputs `(("pandoc" ,ghc-pandoc)))
19887 (native-inputs
19888 `(("gfortran" ,gfortran)
19889 ("r-knitr" ,r-knitr))) ; for vignettes
19890 (home-page "https://mc-stan.org/")
19891 (synopsis "C++ header files for Stan")
19892 (description
19893 "The C++ header files of the Stan project are provided by this package.
19894 There is a shared object containing part of the @code{CVODES} library, but it
19895 is not accessible from R. @code{r-stanheaders} is only useful for developers
19896 who want to utilize the @code{LinkingTo} directive of their package's
19897 DESCRIPTION file to build on the Stan library without incurring unnecessary
19898 dependencies.
19899
19900 The Stan project develops a probabilistic programming language that implements
19901 full or approximate Bayesian statistical inference via Markov Chain Monte
19902 Carlo or variational methods and implements (optionally penalized) maximum
19903 likelihood estimation via optimization. The Stan library includes an advanced
19904 automatic differentiation scheme, templated statistical and linear algebra
19905 functions that can handle the automatically differentiable scalar types (and
19906 doubles, ints, etc.), and a parser for the Stan language. The @code{r-rstan}
19907 package provides user-facing R functions to parse, compile, test, estimate,
19908 and analyze Stan models.")
19909 (license license:bsd-3)))
19910
19911 (define-public r-rpf
19912 (package
19913 (name "r-rpf")
19914 (version "1.0.3")
19915 (source
19916 (origin
19917 (method url-fetch)
19918 (uri (cran-uri "rpf" version))
19919 (sha256
19920 (base32
19921 "1i2kqd7nx55nn35qnw89xmnqk23x9c8xhkh736c2xg7k2ai84ybl"))))
19922 (properties `((upstream-name . "rpf")))
19923 (build-system r-build-system)
19924 (propagated-inputs
19925 `(("r-lifecycle" ,r-lifecycle)
19926 ("r-mvtnorm" ,r-mvtnorm)
19927 ("r-rcpp" ,r-rcpp)
19928 ("r-rcppeigen" ,r-rcppeigen)))
19929 (home-page "https://github.com/jpritikin/rpf")
19930 (synopsis "Response probability functions")
19931 (description
19932 "The purpose of this package is to factor out logic and math common to
19933 Item Factor Analysis fitting, diagnostics, and analysis. It is envisioned as
19934 core support code suitable for more specialized IRT packages to build upon.
19935 Complete access to optimized C functions is made available with
19936 @code{R_RegisterCCallable()}.")
19937 (license license:gpl3+)))
19938
19939 (define-public r-openmx
19940 (package
19941 (name "r-openmx")
19942 (version "2.17.3")
19943 (source
19944 (origin
19945 (method url-fetch)
19946 (uri (cran-uri "OpenMx" version))
19947 (sha256
19948 (base32
19949 "1s2pcg281ag3qz2wz8yi826f2d3kj3qg916js7zz0nsrljcyv5bc"))))
19950 (properties `((upstream-name . "OpenMx")))
19951 (build-system r-build-system)
19952 (propagated-inputs
19953 `(("r-bh" ,r-bh)
19954 ("r-digest" ,r-digest)
19955 ("r-mass" ,r-mass)
19956 ("r-matrix" ,r-matrix)
19957 ("r-rcpp" ,r-rcpp)
19958 ("r-rcppeigen" ,r-rcppeigen)
19959 ("r-rpf" ,r-rpf)
19960 ("r-stanheaders" ,r-stanheaders)))
19961 (native-inputs `(("gfortran" ,gfortran)))
19962 (home-page "http://openmx.ssri.psu.edu")
19963 (synopsis "Extended structural equation modelling")
19964 (description
19965 "This package allows for the estimation of a wide variety of advanced
19966 multivariate statistical models. It consists of a library of functions and
19967 optimizers that allow you to quickly and flexibly define an SEM model and
19968 estimate parameters given observed data.")
19969 (license license:asl2.0)))
19970
19971 (define-public r-kutils
19972 (package
19973 (name "r-kutils")
19974 (version "1.69")
19975 (source
19976 (origin
19977 (method url-fetch)
19978 (uri (cran-uri "kutils" version))
19979 (sha256
19980 (base32
19981 "12pg26a85h0jxlfcyai68dbh4bq1gnq8v1ngi8k9qvafbrpc6gx8"))))
19982 (properties `((upstream-name . "kutils")))
19983 (build-system r-build-system)
19984 (propagated-inputs
19985 `(("r-foreign" ,r-foreign)
19986 ("r-lavaan" ,r-lavaan)
19987 ("r-openxlsx" ,r-openxlsx)
19988 ("r-plyr" ,r-plyr)
19989 ("r-runit" ,r-runit)
19990 ("r-xtable" ,r-xtable)))
19991 (home-page "https://cran.r-project.org/package=kutils")
19992 (synopsis "Project management tools")
19993 (description
19994 "This package provides tools for data importation, recoding, and
19995 inspection. There are functions to create new project folders, R code
19996 templates, create uniquely named output directories, and to quickly obtain a
19997 visual summary for each variable in a data frame. The main feature here is
19998 the systematic implementation of the \"variable key\" framework for data
19999 importation and recoding.")
20000 (license license:gpl2)))
20001
20002 (define-public r-rockchalk
20003 (package
20004 (name "r-rockchalk")
20005 (version "1.8.144")
20006 (source
20007 (origin
20008 (method url-fetch)
20009 (uri (cran-uri "rockchalk" version))
20010 (sha256
20011 (base32
20012 "07dp1n155b9gfvk8l30h6bhjbhbylsjxfzns08mryn4mxj3nqpnb"))))
20013 (properties `((upstream-name . "rockchalk")))
20014 (build-system r-build-system)
20015 (propagated-inputs
20016 `(("r-cardata" ,r-cardata)
20017 ("r-kutils" ,r-kutils)
20018 ("r-lme4" ,r-lme4)
20019 ("r-mass" ,r-mass)))
20020 (home-page "https://cran.r-project.org/package=rockchalk")
20021 (synopsis "Regression estimation and presentation")
20022 (description
20023 "This package provides a collection of functions for interpretation and
20024 presentation of regression analysis. These functions are used to produce the
20025 statistics lectures in @url{http://pj.freefaculty.org/guides}. The package
20026 includes regression diagnostics, regression tables, and plots of interactions
20027 and \"moderator\" variables. The emphasis is on \"mean-centered\" and
20028 \"residual-centered\" predictors. The vignette @code{rockchalk} offers a
20029 fairly comprehensive overview.")
20030 (license license:gpl3+)))
20031
20032 (define-public r-lisreltor
20033 (package
20034 (name "r-lisreltor")
20035 (version "0.1.4")
20036 (source
20037 (origin
20038 (method url-fetch)
20039 (uri (cran-uri "lisrelToR" version))
20040 (sha256
20041 (base32
20042 "0zicq0z3hhixan1p1apybnf3v5s6v6ysll4pcz8ivygwr2swv3p5"))))
20043 (properties `((upstream-name . "lisrelToR")))
20044 (build-system r-build-system)
20045 (home-page "https://cran.r-project.org/package=lisrelToR")
20046 (synopsis "Import output from LISREL into R")
20047 (description
20048 "This is an unofficial package aimed at automating the import of LISREL
20049 output in R.")
20050 (license license:gpl2)))
20051
20052 (define-public r-bdgraph
20053 (package
20054 (name "r-bdgraph")
20055 (version "2.62")
20056 (source
20057 (origin
20058 (method url-fetch)
20059 (uri (cran-uri "BDgraph" version))
20060 (sha256
20061 (base32
20062 "1b1vfar940swvn3pcil848qsp8ji50fjjll8jjzp6y2adx0f8pby"))))
20063 (properties `((upstream-name . "BDgraph")))
20064 (build-system r-build-system)
20065 (propagated-inputs
20066 `(("r-igraph" ,r-igraph)))
20067 (home-page "https://www.uva.nl/profile/a.mohammadi")
20068 (synopsis "Bayesian structure learning in graphical models")
20069 (description
20070 "This package provides statistical tools for Bayesian structure learning
20071 in undirected graphical models for continuous, discrete, and mixed data. It
20072 uses a trans-dimensional @dfn{Markov Chain Monte Carlo} (MCMC) approach based
20073 on a continuous-time birth-death process.")
20074 (license license:gpl2+)))
20075
20076 (define-public r-d3network
20077 (package
20078 (name "r-d3network")
20079 (version "0.5.2.1")
20080 (source
20081 (origin
20082 (method url-fetch)
20083 (uri (cran-uri "d3Network" version))
20084 (sha256
20085 (base32
20086 "1gh979z9wksyxxxdzlfzibn0ysvf6h1ij7vwpd55fvbwr308syaw"))))
20087 (properties `((upstream-name . "d3Network")))
20088 (build-system r-build-system)
20089 (propagated-inputs
20090 `(("r-plyr" ,r-plyr)
20091 ("r-rjson" ,r-rjson)
20092 ("r-whisker" ,r-whisker)))
20093 (home-page "http://christophergandrud.github.io/d3Network/")
20094 (synopsis "Create D3 JavaScript network, tree, dendrogram, and Sankey graphs")
20095 (description
20096 "This package is intended to make it easy to create D3 JavaScript
20097 network, tree, dendrogram, and Sankey graphs from R using data frames.")
20098 (license license:gpl3+)))
20099
20100 (define-public r-qgraph
20101 (package
20102 (name "r-qgraph")
20103 (version "1.6.5")
20104 (source
20105 (origin
20106 (method url-fetch)
20107 (uri (cran-uri "qgraph" version))
20108 (sha256
20109 (base32
20110 "0pwys9irxvp0ap158drplyypkplbmwqinv0fmlsblk7q875cr592"))))
20111 (properties `((upstream-name . "qgraph")))
20112 (build-system r-build-system)
20113 (propagated-inputs
20114 `(("r-abind" ,r-abind)
20115 ("r-bdgraph" ,r-bdgraph)
20116 ("r-colorspace" ,r-colorspace)
20117 ("r-corpcor" ,r-corpcor)
20118 ("r-d3network" ,r-d3network)
20119 ("r-dplyr" ,r-dplyr)
20120 ("r-fdrtool" ,r-fdrtool)
20121 ("r-ggplot2" ,r-ggplot2)
20122 ("r-ggraph" ,r-ggraph)
20123 ("r-glasso" ,r-glasso)
20124 ("r-gtools" ,r-gtools)
20125 ("r-hmisc" ,r-hmisc)
20126 ("r-huge" ,r-huge)
20127 ("r-igraph" ,r-igraph)
20128 ("r-jpeg" ,r-jpeg)
20129 ("r-lavaan" ,r-lavaan)
20130 ("r-matrix" ,r-matrix)
20131 ("r-pbapply" ,r-pbapply)
20132 ("r-plyr" ,r-plyr)
20133 ("r-png" ,r-png)
20134 ("r-psych" ,r-psych)
20135 ("r-rcpp" ,r-rcpp)
20136 ("r-reshape2" ,r-reshape2)
20137 ("r-tidygraph" ,r-tidygraph)))
20138 (home-page "http://sachaepskamp.com/qgraph/")
20139 (synopsis "Weighted network visualization and analysis")
20140 (description
20141 "This package implements tools for weighted network visualization and
20142 analysis, as well as Gaussian graphical model computation. It contains graph
20143 plotting methods, and tools for psychometric data visualization and graphical
20144 model estimation. See Epskamp et al. (2012)
20145 @url{doi:10.18637/jss.v048.i04}.")
20146 (license license:gpl2)))
20147
20148 (define-public r-semplot
20149 (package
20150 (name "r-semplot")
20151 (version "1.1.2")
20152 (source
20153 (origin
20154 (method url-fetch)
20155 (uri (cran-uri "semPlot" version))
20156 (sha256
20157 (base32
20158 "0l1v9yi1pv59iwfknw4dh9qskk5y8r347jq1vq13gnfd3bmd71xr"))))
20159 (properties `((upstream-name . "semPlot")))
20160 (build-system r-build-system)
20161 (propagated-inputs
20162 `(("r-colorspace" ,r-colorspace)
20163 ("r-corpcor" ,r-corpcor)
20164 ("r-igraph" ,r-igraph)
20165 ("r-lavaan" ,r-lavaan)
20166 ("r-lisreltor" ,r-lisreltor)
20167 ("r-openmx" ,r-openmx)
20168 ("r-plyr" ,r-plyr)
20169 ("r-qgraph" ,r-qgraph)
20170 ("r-regsem" ,r-regsem)
20171 ("r-rockchalk" ,r-rockchalk)
20172 ("r-sem" ,r-sem)
20173 ("r-xml" ,r-xml)))
20174 (home-page "https://github.com/SachaEpskamp/semPlot")
20175 (synopsis "Unified visualizations of structural equation models")
20176 (description
20177 "Structural equation modeling (SEM) has a long history of representing
20178 models graphically as path diagrams. The semPlot package for R fills the gap
20179 between advanced, but time-consuming, graphical software and the limited
20180 graphics produced automatically by SEM software. In addition, semPlot offers
20181 more functionality than drawing path diagrams: it can act as a common ground
20182 for importing SEM results into R. Any result usable as input to semPlot can
20183 also be represented in any of the three popular SEM frame-works, as well as
20184 translated to input syntax for the R packages @code{sem} and @code{lavaan}.")
20185 (license license:gpl2)))
20186
20187 (define-public r-cdm
20188 (package
20189 (name "r-cdm")
20190 (version "7.5-15")
20191 (source
20192 (origin
20193 (method url-fetch)
20194 (uri (cran-uri "CDM" version))
20195 (sha256
20196 (base32
20197 "159ny2dz0rf1r3k1mqlfwambffc8rx425sggf5bn51nybpzanq3l"))))
20198 (properties `((upstream-name . "CDM")))
20199 (build-system r-build-system)
20200 (propagated-inputs
20201 `(("r-mvtnorm" ,r-mvtnorm)
20202 ("r-polycor" ,r-polycor)
20203 ("r-rcpp" ,r-rcpp)
20204 ("r-rcpparmadillo" ,r-rcpparmadillo)))
20205 (home-page
20206 "https://github.com/alexanderrobitzsch/CDM")
20207 (synopsis "Cognitive diagnosis modeling")
20208 (description
20209 "This package provides functions for cognitive diagnosis modeling and
20210 multidimensional item response modeling for dichotomous and polytomous item
20211 responses. It enables the estimation of the DINA and DINO model, the multiple
20212 group (polytomous) GDINA model, the multiple choice DINA model, the general
20213 diagnostic model (GDM), the structured latent class model (SLCA), and
20214 regularized latent class analysis. See George, Robitzsch, Kiefer, Gross, and
20215 Uenlue (2017) @url{doi:10.18637/jss.v074.i02} for further details on
20216 estimation and the package structure. For tutorials on how to use the CDM
20217 package see George and Robitzsch (2015, @url{doi:10.20982/tqmp.11.3.p189}) as
20218 well as Ravand and Robitzsch (2015).")
20219 (license license:gpl2+)))
20220
20221 (define-public r-tam
20222 (package
20223 (name "r-tam")
20224 (version "3.4-26")
20225 (source
20226 (origin
20227 (method url-fetch)
20228 (uri (cran-uri "TAM" version))
20229 (sha256
20230 (base32
20231 "111d7qkxhwh1lfvldyh9d61pdb5vb6x8lr8n9h95ssvw07vjqvk9"))))
20232 (properties `((upstream-name . "TAM")))
20233 (build-system r-build-system)
20234 (propagated-inputs
20235 `(("r-cdm" ,r-cdm)
20236 ("r-rcpp" ,r-rcpp)
20237 ("r-rcpparmadillo" ,r-rcpparmadillo)))
20238 (home-page "http://www.edmeasurementsurveys.com/TAM/Tutorials/")
20239 (synopsis "Test analysis modules")
20240 (description
20241 "This package includes tools for marginal maximum likelihood estimation
20242 and joint maximum likelihood estimation for unidimensional and
20243 multidimensional item response models. The package functionality covers the
20244 Rasch model, 2PL model, 3PL model, generalized partial credit model,
20245 multi-faceted Rasch model, nominal item response model, structured latent
20246 class model, mixture distribution IRT models, and located latent class models.
20247 Latent regression models and plausible value imputation are also supported.")
20248 (license license:gpl2+)))
20249
20250 (define-public r-erm
20251 (package
20252 (name "r-erm")
20253 (version "1.0-1")
20254 (source
20255 (origin
20256 (method url-fetch)
20257 (uri (cran-uri "eRm" version))
20258 (sha256
20259 (base32
20260 "0njqzznnhnkvalmhiq5yq1w7gwp2myki5cv61w42ydvd27hdyyg9"))))
20261 (properties `((upstream-name . "eRm")))
20262 (build-system r-build-system)
20263 (propagated-inputs
20264 `(("r-colorspace" ,r-colorspace)
20265 ("r-lattice" ,r-lattice)
20266 ("r-mass" ,r-mass)
20267 ("r-matrix" ,r-matrix)
20268 ("r-psych" ,r-psych)))
20269 (native-inputs `(("gfortran" ,gfortran)))
20270 (home-page "https://cran.r-project.org/package=eRm")
20271 (synopsis "Extended Rasch modeling")
20272 (description
20273 "This package provides tools to fit @dfn{Rasch models} (RM), @dfn{linear
20274 logistic test models} (LLTM), @dfn{rating scale model} (RSM), @dfn{linear
20275 rating scale models} (LRSM), @dfn{partial credit models} (PCM), and
20276 @dfn{linear partial credit models} (LPCM). Missing values are allowed in the
20277 data matrix. Additional features are the ML estimation of the person
20278 parameters, Andersen's LR-test, item-specific Wald test, Martin-Loef-Test,
20279 nonparametric Monte-Carlo Tests, itemfit and personfit statistics including
20280 infit and outfit measures, ICC and other plots, automated stepwise item
20281 elimination, and a simulation module for various binary data matrices.")
20282 (license license:gpl3)))
20283
20284 (define-public r-irtoys
20285 (package
20286 (name "r-irtoys")
20287 (version "0.2.1")
20288 (source
20289 (origin
20290 (method url-fetch)
20291 (uri (cran-uri "irtoys" version))
20292 (sha256
20293 (base32
20294 "0h6iiaxikhbxhbyksbjnb09qdxinlkwr2v9yzs5wslbni14paq5q"))))
20295 (properties `((upstream-name . "irtoys")))
20296 (build-system r-build-system)
20297 (propagated-inputs
20298 `(("r-ltm" ,r-ltm)
20299 ("r-sm" ,r-sm)))
20300 (home-page "https://cran.r-project.org/package=irtoys")
20301 (synopsis "Collection of functions related to Item Response Theory (IRT)")
20302 (description
20303 "This package provides a collection of functions useful in learning and
20304 practicing @dfn{Item Response Theory} (IRT), which can be combined into larger
20305 programs. It provides basic CTT analysis, a simple common interface to the
20306 estimation of item parameters in IRT models for binary responses with three
20307 different programs (ICL, BILOG-MG, and ltm), ability estimation (MLE, BME,
20308 EAP, WLE, plausible values), item and person fit statistics, scaling
20309 methods (MM, MS, Stocking-Lord, and the complete Hebaera method), and a rich
20310 array of parametric and non-parametric (kernel) plots. It estimates and plots
20311 Haberman's interaction model when all items are dichotomously scored.")
20312 (license license:gpl2+)))
20313
20314 (define-public r-iheatmapr
20315 (package
20316 (name "r-iheatmapr")
20317 (version "0.4.12")
20318 (source
20319 (origin
20320 (method url-fetch)
20321 (uri (cran-uri "iheatmapr" version))
20322 (sha256
20323 (base32
20324 "0s479j9l35xiss599vablxgvg6i2j9zq9sxphsq4vdk3bafg84bw"))))
20325 (properties `((upstream-name . "iheatmapr")))
20326 (build-system r-build-system)
20327 (propagated-inputs
20328 `(("r-fastcluster" ,r-fastcluster)
20329 ("r-ggdendro" ,r-ggdendro)
20330 ("r-htmlwidgets" ,r-htmlwidgets)
20331 ("r-jsonlite" ,r-jsonlite)
20332 ("r-knitr" ,r-knitr)
20333 ("r-magrittr" ,r-magrittr)
20334 ("r-plyr" ,r-plyr)
20335 ("r-rcolorbrewer" ,r-rcolorbrewer)
20336 ("r-s4vectors" ,r-s4vectors)
20337 ("r-scales" ,r-scales)))
20338 (home-page "https://docs.ropensci.org/iheatmapr")
20339 (synopsis "Interactive, Complex Heatmaps")
20340 (description
20341 "iheatmapr is an R package for building complex, interactive heatmaps
20342 using modular building blocks. \"Complex\" heatmaps are heatmaps in which
20343 subplots along the rows or columns of the main heatmap add more information
20344 about each row or column. For example, a one column additional heatmap may
20345 indicate what group a particular row or column belongs to. Complex heatmaps
20346 may also include multiple side by side heatmaps which show different types of
20347 data for the same conditions. Interactivity can improve complex heatmaps by
20348 providing tooltips with information about each cell and enabling zooming into
20349 interesting features. iheatmapr uses the plotly library for interactivity.")
20350 (license license:expat)))
20351
20352 (define-public r-packrat
20353 (package
20354 (name "r-packrat")
20355 (version "0.5.0")
20356 (source
20357 (origin
20358 (method url-fetch)
20359 (uri (cran-uri "packrat" version))
20360 (sha256
20361 (base32
20362 "1xy5dd2hrpqa07jfl4s7dsrya05mf36ms74j833scdz0zf89586n"))))
20363 (properties `((upstream-name . "packrat")))
20364 (build-system r-build-system)
20365 (home-page "https://github.com/rstudio/packrat/")
20366 (synopsis "Dependency management R projects")
20367 (description
20368 "This package provides a dependency manager for R projects that allows
20369 you to manage the R packages your project depends on in an isolated, portable,
20370 and reproducible way.")
20371 (license license:gpl2)))
20372
20373 (define-public r-rsconnect
20374 (package
20375 (name "r-rsconnect")
20376 (version "0.8.16")
20377 (source
20378 (origin
20379 (method url-fetch)
20380 (uri (cran-uri "rsconnect" version))
20381 (sha256
20382 (base32
20383 "05ii0p0p7xpf8z0c1594s5q7wpwcs7lmlddrd67s5p2ka5m8qwiz"))))
20384 (properties `((upstream-name . "rsconnect")))
20385 (build-system r-build-system)
20386 (propagated-inputs
20387 `(("r-curl" ,r-curl)
20388 ("r-digest" ,r-digest)
20389 ("r-jsonlite" ,r-jsonlite)
20390 ("r-openssl" ,r-openssl)
20391 ("r-packrat" ,r-packrat)
20392 ("r-rstudioapi" ,r-rstudioapi)
20393 ("r-yaml" ,r-yaml)))
20394 (home-page "https://github.com/rstudio/rsconnect")
20395 (synopsis "Deployment interface for R Markdown documents and Shiny applications")
20396 (description
20397 "This package provides a programmatic deployment interface for RPubs,
20398 shinyapps.io, and RStudio Connect. Supported content types include R Markdown
20399 documents, Shiny applications, Plumber APIs, plots, and static web content.")
20400 (license license:gpl2)))
20401
20402 ;; This package includes minified JavaScript files. When upgrading please
20403 ;; check that there are no new minified JavaScript files.
20404 (define-public r-dygraphs
20405 (package
20406 (name "r-dygraphs")
20407 (version "1.1.1.6")
20408 (source
20409 (origin
20410 (method url-fetch)
20411 (uri (cran-uri "dygraphs" version))
20412 (sha256
20413 (base32
20414 "022j007mzfa9k2n31yg4aizcsf571vv3jip092h23rqj03rk3ly3"))))
20415 (properties `((upstream-name . "dygraphs")))
20416 (build-system r-build-system)
20417 (arguments
20418 `(#:modules ((guix build utils)
20419 (guix build r-build-system)
20420 (srfi srfi-1)
20421 (ice-9 popen))
20422 #:phases
20423 (modify-phases %standard-phases
20424 (add-after 'unpack 'process-javascript
20425 (lambda* (#:key inputs #:allow-other-keys)
20426 (with-directory-excursion "inst/htmlwidgets/lib/"
20427 (call-with-values
20428 (lambda ()
20429 (unzip2
20430 `(("dygraphs/dygraph-combined-dev.js"
20431 "dygraph-combined.js")
20432 (,(assoc-ref inputs "js-jquery")
20433 "jquery/jquery.min.js")
20434 (,(assoc-ref inputs "js-fquarter")
20435 "fquarter/moment-fquarter.min.js"))))
20436 (lambda (sources targets)
20437 (for-each (lambda (source target)
20438 (format #t "Processing ~a --> ~a~%"
20439 source target)
20440 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
20441 (call-with-output-file target
20442 (lambda (port)
20443 (dump-port minified port)))))
20444 sources targets))))
20445 #t)))))
20446 (native-inputs
20447 `(("uglify-js" ,uglify-js)
20448 ;; They actually use version 1.11.1, but this more recent version
20449 ;; should be just fine.
20450 ("js-jquery"
20451 ,(origin
20452 (method url-fetch)
20453 (uri "https://code.jquery.com/jquery-1.12.4.js")
20454 (sha256
20455 (base32
20456 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
20457 ("js-fquarter"
20458 ,(origin
20459 (method url-fetch)
20460 (uri (string-append "https://raw.githubusercontent.com/robgallen/"
20461 "moment-fquarter/1.0.1/moment-fquarter.js"))
20462 (sha256
20463 (base32
20464 "01mdnsaibm9jy2f1qpbn692hpv309lhj5si9nagib4dawmrkffij"))))))
20465 (propagated-inputs
20466 `(("r-htmltools" ,r-htmltools)
20467 ("r-htmlwidgets" ,r-htmlwidgets)
20468 ("r-magrittr" ,r-magrittr)
20469 ("r-xts" ,r-xts)
20470 ("r-zoo" ,r-zoo)))
20471 (home-page "https://github.com/rstudio/dygraphs")
20472 (synopsis "Interface to Dygraphs interactive time series charting library")
20473 (description
20474 "This package provides an R interface to the dygraphs JavaScript charting
20475 library (a copy of which is included in the package). It provides rich
20476 facilities for charting time-series data in R, including highly configurable
20477 series- and axis-display and interactive features like zoom/pan and
20478 series/point highlighting.")
20479 (license license:expat)))
20480
20481 (define-public r-shinystan
20482 (package
20483 (name "r-shinystan")
20484 (version "2.5.0")
20485 (source
20486 (origin
20487 (method url-fetch)
20488 (uri (cran-uri "shinystan" version))
20489 (sha256
20490 (base32
20491 "18alf5kiqw7y2l6m5nxxizwc2znsf9frxfsqhvgcad8hld9cbya5"))))
20492 (properties `((upstream-name . "shinystan")))
20493 (build-system r-build-system)
20494 (propagated-inputs
20495 `(("r-bayesplot" ,r-bayesplot)
20496 ("r-colourpicker" ,r-colourpicker)
20497 ("r-dt" ,r-dt)
20498 ("r-dygraphs" ,r-dygraphs)
20499 ("r-ggplot2" ,r-ggplot2)
20500 ("r-gridextra" ,r-gridextra)
20501 ("r-gtools" ,r-gtools)
20502 ("r-markdown" ,r-markdown)
20503 ("r-reshape2" ,r-reshape2)
20504 ("r-rsconnect" ,r-rsconnect)
20505 ("r-rstan" ,r-rstan)
20506 ("r-shiny" ,r-shiny)
20507 ("r-shinyjs" ,r-shinyjs)
20508 ("r-shinythemes" ,r-shinythemes)
20509 ("r-threejs" ,r-threejs)
20510 ("r-xtable" ,r-xtable)
20511 ("r-xts" ,r-xts)))
20512 (home-page "https://mc-stan.org/")
20513 (synopsis "Interactive visual and numerical analysis for Bayesian models")
20514 (description
20515 "This package provides a graphical user interface for interactive
20516 @dfn{Markov chain Monte Carlo} (MCMC) diagnostics and plots and tables helpful
20517 for analyzing a posterior sample. The interface is powered by the Shiny web
20518 application framework and works with the output of MCMC programs written in
20519 any programming language (and has extended functionality for Stan models fit
20520 using the @code{rstan} and @code{rstanarm} packages).")
20521 (license license:gpl3+)))
20522
20523 (define-public r-rstantools
20524 (package
20525 (name "r-rstantools")
20526 (version "2.0.0")
20527 (source
20528 (origin
20529 (method url-fetch)
20530 (uri (cran-uri "rstantools" version))
20531 (sha256
20532 (base32
20533 "1il0pn4ksbdkska5fmhvgaicvwnnc6cs08g6ags9fj1xkjiqmrsa"))))
20534 (properties `((upstream-name . "rstantools")))
20535 (build-system r-build-system)
20536 (inputs `(("pandoc" ,ghc-pandoc)))
20537 (propagated-inputs
20538 `(("r-desc" ,r-desc)
20539 ("r-rcpp" ,r-rcpp)))
20540 (home-page "https://mc-stan.org/rstantools/")
20541 (synopsis "Tools for developing R packages interfacing with Stan")
20542 (description
20543 "This package provides various tools for developers of R packages
20544 interfacing with @url{https://mc-stan.org, Stan}, including functions to set
20545 up the required package structure, S3 generics and default methods to unify
20546 function naming across Stan-based R packages, and vignettes with
20547 recommendations for developers.")
20548 (license license:gpl3+)))
20549
20550 (define-public r-loo
20551 (package
20552 (name "r-loo")
20553 (version "2.2.0")
20554 (source
20555 (origin
20556 (method url-fetch)
20557 (uri (cran-uri "loo" version))
20558 (sha256
20559 (base32
20560 "1hq1zcj76x55z9kic6cwf7mfq9pzqfbr341jbc9wp7x8ac4zcva6"))))
20561 (properties `((upstream-name . "loo")))
20562 (build-system r-build-system)
20563 (inputs
20564 `(("pandoc" ,ghc-pandoc)
20565 ("pandoc-citeproc" ,ghc-pandoc-citeproc)))
20566 (propagated-inputs
20567 `(("r-checkmate" ,r-checkmate)
20568 ("r-matrixstats" ,r-matrixstats)))
20569 (home-page "https://mc-stan.org/loo/")
20570 (synopsis "Leave-One-Out cross-validation and WAIC for Bayesian models")
20571 (description
20572 "This package provides an implementation of efficient approximate
20573 @dfn{leave-one-out} (LOO) cross-validation for Bayesian models fit using
20574 Markov chain Monte Carlo, as described in @url{doi:10.1007/s11222-016-9696-4}.
20575 The approximation uses @dfn{Pareto smoothed importance sampling} (PSIS), a new
20576 procedure for regularizing importance weights. As a byproduct of the
20577 calculations, we also obtain approximate standard errors for estimated
20578 predictive errors and for the comparison of predictive errors between models.
20579 The package also provides methods for using stacking and other model weighting
20580 techniques to average Bayesian predictive distributions.")
20581 (license license:gpl3+)))
20582
20583 (define-public r-rstan
20584 (package
20585 (name "r-rstan")
20586 (version "2.19.3")
20587 (source
20588 (origin
20589 (method url-fetch)
20590 (uri (cran-uri "rstan" version))
20591 (sha256
20592 (base32
20593 "128ndwjrhf8b1qvvqz4bl13qlm8718z9qs5ryc6gsdr3vk65s0np"))))
20594 (properties `((upstream-name . "rstan")))
20595 (build-system r-build-system)
20596 (arguments
20597 `(#:phases
20598 (modify-phases %standard-phases
20599 (add-before 'install 'set-timezone
20600 ;; This package is picky about timezones.
20601 (lambda* (#:key inputs #:allow-other-keys)
20602 (setenv "TZ" "UTC+1")
20603 (setenv "TZDIR"
20604 (string-append (assoc-ref inputs "tzdata")
20605 "/share/zoneinfo"))
20606 #t)))))
20607 (native-inputs
20608 `(("tzdata" ,tzdata)
20609 ("pandoc" ,ghc-pandoc)))
20610 (propagated-inputs
20611 `(("r-bh" ,r-bh)
20612 ("r-ggplot2" ,r-ggplot2)
20613 ("r-gridextra" ,r-gridextra)
20614 ("r-inline" ,r-inline)
20615 ("r-loo" ,r-loo)
20616 ("r-pkgbuild" ,r-pkgbuild)
20617 ("r-rcpp" ,r-rcpp)
20618 ("r-rcppeigen" ,r-rcppeigen)
20619 ("r-stanheaders" ,r-stanheaders)))
20620 (home-page "https://discourse.mc-stan.org/")
20621 (synopsis "R interface to Stan")
20622 (description
20623 "User-facing R functions are provided to parse, compile, test, estimate,
20624 and analyze Stan models by accessing the header-only Stan library provided by
20625 the StanHeaders package. The Stan project develops a probabilistic
20626 programming language that implements full Bayesian statistical inference via
20627 Markov Chain Monte Carlo, rough Bayesian inference via 'variational'
20628 approximation, and (optionally penalized) maximum likelihood estimation via
20629 optimization. In all three cases, automatic differentiation is used to
20630 quickly and accurately evaluate gradients without burdening the user with the
20631 need to derive the partial derivatives.")
20632 (license license:gpl3+)))
20633
20634 (define-public r-rstanarm
20635 (package
20636 (name "r-rstanarm")
20637 (version "2.19.3")
20638 (source
20639 (origin
20640 (method url-fetch)
20641 (uri (cran-uri "rstanarm" version))
20642 (sha256
20643 (base32
20644 "0gxjq8bdlvdd8kn3dhp12xlymdab036r7n12lzmd3xlkl4cnxq3s"))))
20645 (properties `((upstream-name . "rstanarm")))
20646 (build-system r-build-system)
20647 (inputs
20648 `(("pandoc" ,ghc-pandoc)
20649 ("pandoc-citeproc" ,ghc-pandoc-citeproc)))
20650 (propagated-inputs
20651 `(("r-bayesplot" ,r-bayesplot)
20652 ("r-bh" ,r-bh)
20653 ("r-ggplot2" ,r-ggplot2)
20654 ("r-lme4" ,r-lme4)
20655 ("r-loo" ,r-loo)
20656 ("r-matrix" ,r-matrix)
20657 ("r-nlme" ,r-nlme)
20658 ("r-rcpp" ,r-rcpp)
20659 ("r-rcppeigen" ,r-rcppeigen)
20660 ("r-rcppparallel" ,r-rcppparallel)
20661 ("r-rstan" ,r-rstan)
20662 ("r-rstantools" ,r-rstantools)
20663 ("r-shinystan" ,r-shinystan)
20664 ("r-stanheaders" ,r-stanheaders)
20665 ("r-survival" ,r-survival)))
20666 (home-page "https://mc-stan.org/rstanarm/")
20667 (synopsis "Bayesian applied regression modeling via Stan")
20668 (description
20669 "This package estimates previously compiled regression models using the
20670 @code{rstan} package, which provides the R interface to the Stan C++ library
20671 for Bayesian estimation. Users specify models via the customary R syntax with
20672 a formula and @code{data.frame} plus some additional arguments for priors.")
20673 (license license:gpl3+)))
20674
20675 (define-public r-kendall
20676 (package
20677 (name "r-kendall")
20678 (version "2.2")
20679 (source
20680 (origin
20681 (method url-fetch)
20682 (uri (cran-uri "Kendall" version))
20683 (sha256
20684 (base32
20685 "0z2yr3x2nvdm81w2imb61hxwcbmg14kfb2bxgh3wmkmv3wfjwkwn"))))
20686 (properties `((upstream-name . "Kendall")))
20687 (build-system r-build-system)
20688 (propagated-inputs
20689 `(("r-boot" ,r-boot)))
20690 (native-inputs
20691 `(("gfortran" ,gfortran)))
20692 (home-page "https://cran.r-project.org/web/packages/Kendall/")
20693 (synopsis "Kendall rank correlation and Mann-Kendall trend test")
20694 (description
20695 "This package computes the Kendall rank correlation and Mann-Kendall
20696 trend test.")
20697 (license license:gpl2+)))
20698
20699 (define-public r-zyp
20700 (package
20701 (name "r-zyp")
20702 (version "0.10-1.1")
20703 (source
20704 (origin
20705 (method url-fetch)
20706 (uri (cran-uri "zyp" version))
20707 (sha256
20708 (base32
20709 "03cxpkfbhrx1fy8l0dl9a13ghz93cqq6877wa8rig09ksdiivaw9"))))
20710 (properties `((upstream-name . "zyp")))
20711 (build-system r-build-system)
20712 (propagated-inputs
20713 `(("r-kendall" ,r-kendall)))
20714 (home-page "https://cran.r-project.org/web/packages/zyp/")
20715 (synopsis "Zhang + Yue-Pilon Trends Package")
20716 (description
20717 "This package contains an efficient implementation of Sen's slope
20718 method (Sen, 1968) plus implementation of Xuebin Zhang's (Zhang, 1999) and
20719 Yue-Pilon's (Yue, 2002) pre-whitening approaches to determining trends in
20720 climate data.")
20721 (license license:lgpl2.1)))
20722
20723 (define-public r-zvcv
20724 (package
20725 (name "r-zvcv")
20726 (version "1.0.0")
20727 (source
20728 (origin
20729 (method url-fetch)
20730 (uri (cran-uri "ZVCV" version))
20731 (sha256
20732 (base32
20733 "1npw836q2skx54843lgxvb0rfwafckjc8k8dljykm60ad3z7zak8"))))
20734 (properties `((upstream-name . "ZVCV")))
20735 (build-system r-build-system)
20736 (propagated-inputs
20737 `(("r-abind" ,r-abind)
20738 ("r-glmnet" ,r-glmnet)
20739 ("r-mvtnorm" ,r-mvtnorm)
20740 ("r-partitions" ,r-partitions)
20741 ("r-rcpp" ,r-rcpp)
20742 ("r-rcpparmadillo" ,r-rcpparmadillo)))
20743 (home-page "https://cran.r-project.org/web/packages/ZVCV/")
20744 (synopsis "Zero-Variance Control Variates")
20745 (description
20746 "@dfn{Zero-variance control variates} (ZV-CV) is a post-processing method
20747 to reduce the variance of Monte Carlo estimators of expectations using the
20748 derivatives of the log target. Once the derivatives are available, the only
20749 additional computational effort is in solving a linear regression problem.
20750 This method has been extended to higher dimensions using regularisation. This
20751 package can be used to easily perform ZV-CV or regularised ZV-CV when a set of
20752 samples, derivatives and function evaluations are available. Additional
20753 functions for applying ZV-CV to two estimators for the normalising constant of
20754 the posterior distribution in Bayesian statistics are also supplied.")
20755 (license license:gpl2+)))
20756
20757 (define-public r-ztype
20758 (package
20759 (name "r-ztype")
20760 (version "0.1.0")
20761 (source
20762 (origin
20763 (method url-fetch)
20764 (uri (cran-uri "ztype" version))
20765 (sha256
20766 (base32
20767 "0brbq2rgkl4mhjbb70kkfv47lzs66k9ppfs2klavcbripirxn5fx"))))
20768 (properties `((upstream-name . "ztype")))
20769 (build-system r-build-system)
20770 (propagated-inputs
20771 `(("r-assertthat" ,r-assertthat)
20772 ("r-dplyr" ,r-dplyr)
20773 ("r-ggplot2" ,r-ggplot2)
20774 ("r-lubridate" ,r-lubridate)
20775 ("r-magrittr" ,r-magrittr)
20776 ("r-rvest" ,r-rvest)
20777 ("r-stringr" ,r-stringr)))
20778 (home-page "https://cran.r-project.org/web/packages/ztype/")
20779 (synopsis "Run a Ztype game loaded with R functions")
20780 (description
20781 "How fast can you type R functions on your keyboard? Find out by running
20782 a @code{zty.pe} game: export R functions as instructions to type to destroy
20783 opponents' vessels.")
20784 (license license:gpl3)))
20785
20786 (define-public r-zseq
20787 (package
20788 (name "r-zseq")
20789 (version "0.2.0")
20790 (source
20791 (origin
20792 (method url-fetch)
20793 (uri (cran-uri "Zseq" version))
20794 (sha256
20795 (base32
20796 "06dndi2b1q79bmxax11bv0l5ifcz1mhpvbn90y6a6xymrgcq0ivi"))))
20797 (properties `((upstream-name . "Zseq")))
20798 (build-system r-build-system)
20799 (propagated-inputs
20800 `(("r-gmp" ,r-gmp)))
20801 (home-page "https://cran.r-project.org/web/packages/Zseq/")
20802 (synopsis "Integer sequence generator")
20803 (description
20804 "This package generates well-known integer sequences. The @code{gmp}
20805 package is adopted for computing with arbitrarily large numbers. Every
20806 function has a hyperlink to its corresponding item in the @dfn{On-Line
20807 Encyclopedia of Integer Sequences} (OEIS) in the function help page.")
20808 (license license:gpl3+)))
20809
20810 (define-public r-isoband
20811 (package
20812 (name "r-isoband")
20813 (version "0.2.0")
20814 (source
20815 (origin
20816 (method url-fetch)
20817 (uri (cran-uri "isoband" version))
20818 (sha256
20819 (base32
20820 "1r023s73qypnvpx18znr9ymylr022m90v65mz2jasn0a1kjrfcbq"))))
20821 (properties `((upstream-name . "isoband")))
20822 (build-system r-build-system)
20823 (propagated-inputs
20824 `(("r-rcpp" ,r-rcpp)
20825 ("r-testthat" ,r-testthat)))
20826 (home-page "https://github.com/wilkelab/isoband")
20827 (synopsis "Generate isolines and isobands from regularly spaced elevation grids")
20828 (description
20829 "This package provides a fast C++ implementation to generate contour
20830 lines (isolines) and contour polygons (isobands) from regularly spaced grids
20831 containing elevation data.")
20832 (license license:expat)))
20833
20834 (define-public r-ppcor
20835 (package
20836 (name "r-ppcor")
20837 (version "1.1")
20838 (source
20839 (origin
20840 (method url-fetch)
20841 (uri (cran-uri "ppcor" version))
20842 (sha256
20843 (base32
20844 "1x9b2kb8s0bp92b17gby0jwzzr3i4cf3ap9c4nq7m8fav72g0y3a"))))
20845 (properties `((upstream-name . "ppcor")))
20846 (build-system r-build-system)
20847 (propagated-inputs
20848 `(("r-mass" ,r-mass)))
20849 (home-page "https://cran.r-project.org/web/packages/ppcor/")
20850 (synopsis "Partial and semi-partial correlation")
20851 (description
20852 "This package provides users not only with a function to readily
20853 calculate the higher-order partial and semi-partial correlations but also with
20854 statistics and p-values of the correlation coefficients.")
20855 (license license:gpl2)))
20856
20857 (define-public r-hrbrthemes
20858 (package
20859 (name "r-hrbrthemes")
20860 (version "0.8.0")
20861 (source
20862 (origin
20863 (method url-fetch)
20864 (uri (cran-uri "hrbrthemes" version))
20865 (sha256
20866 (base32 "057h60b5p53dcyjyfwlgjc1ry968s9s64dw78p443w8717zk7zpc"))))
20867 (properties `((upstream-name . "hrbrthemes")))
20868 (build-system r-build-system)
20869 (propagated-inputs
20870 `(("r-extrafont" ,r-extrafont)
20871 ("r-gdtools" ,r-gdtools)
20872 ("r-ggplot2" ,r-ggplot2)
20873 ("r-htmltools" ,r-htmltools)
20874 ("r-knitr" ,r-knitr)
20875 ("r-magrittr" ,r-magrittr)
20876 ("r-rmarkdown" ,r-rmarkdown)
20877 ("r-scales" ,r-scales)))
20878 (native-inputs
20879 `(("r-knitr" ,r-knitr)))
20880 (home-page "https://github.com/hrbrmstr/hrbrthemes/")
20881 (synopsis "Additional themes, theme components and utilities for @code{ggplot2}")
20882 (description
20883 "This package provides a compilation of extra @code{ggplot2} themes,
20884 scales and utilities, including a spell check function for plot label fields
20885 and an overall emphasis on typography.")
20886 (license license:expat)))
20887
20888 (define-public r-crochet
20889 (package
20890 (name "r-crochet")
20891 (version "2.2.0")
20892 (source
20893 (origin
20894 (method url-fetch)
20895 (uri (cran-uri "crochet" version))
20896 (sha256
20897 (base32
20898 "1cbv79nyycxk6f8ldcsnn2pvgxqlnrj0qs19nhafnq2clxy863k6"))))
20899 (build-system r-build-system)
20900 (home-page "https://github.com/agrueneberg/crochet")
20901 (synopsis "Implementation Helper for Matrix-Like Types")
20902 (description
20903 "Functions to help implement the extraction / subsetting / indexing
20904 function @code{[} and replacement function @code{[<-} of custom matrix-like
20905 types (based on S3, S4, etc.), modeled as closely to the base matrix class
20906 as possible (with tests to prove it).")
20907 (license license:expat)))
20908
20909 (define-public r-boa
20910 (package
20911 (name "r-boa")
20912 (version "1.1.8-2")
20913 (source
20914 (origin
20915 (method url-fetch)
20916 (uri (cran-uri "boa" version))
20917 (sha256
20918 (base32
20919 "04lhqk5qfvaz1jk90glr2yi5vq7cdy0w8m6g2lnzk359l9y41zhp"))))
20920 (properties `((upstream-name . "boa")))
20921 (build-system r-build-system)
20922 (home-page "http://www.jstatsoft.org/v21/i11")
20923 (synopsis "Library for @dfn{Bayesian Output Analysis Program} (BOA) for MCMC")
20924 (description
20925 "This package provides a menu-driven program and library of functions for
20926 carrying out convergence diagnostics and statistical and graphical analysis of
20927 @dfn{Markov chain Monte Carlo} (MCMC) sampling output.")
20928 (license license:gpl2+)))
20929
20930 (define-public r-httpcode
20931 (package
20932 (name "r-httpcode")
20933 (version "0.2.0")
20934 (source (origin
20935 (method url-fetch)
20936 (uri (cran-uri "httpcode" version))
20937 (sha256
20938 (base32
20939 "06k853ihwzkcx4z3jzazpb03p91frqkwz18jy4fwr8j2nwyqbhgv"))))
20940 (build-system r-build-system)
20941 (home-page "https://github.com/sckott/httpcode")
20942 (synopsis "HTTP status code helper")
20943 (description "@code{httpcode} provides functionality for finding and
20944 explaining the meaning of @code{HTTP} status codes. Functions are included for
20945 searching for codes by full or partial number, by message, and to get
20946 appropriate dog and cat images for many status codes.")
20947 (license license:expat)))
20948
20949 (define-public r-latex2exp
20950 (package
20951 (name "r-latex2exp")
20952 (version "0.4.0")
20953 (source (origin
20954 (method url-fetch)
20955 (uri (cran-uri "latex2exp" version))
20956 (sha256
20957 (base32
20958 "12nbcgfmv13k6sc6m326ras9bcvy380b7rxcxphn06r3cfkby0zw"))))
20959 (build-system r-build-system)
20960 (propagated-inputs
20961 `(("r-stringr" ,r-stringr)
20962 ("r-magrittr", r-magrittr)))
20963 (home-page "https://github.com/stefano-meschiari/latex2exp/")
20964 (synopsis "Use LaTeX expressions in plots")
20965 (description "@code{latex2exp} parses and converts LaTeX math formulas to
20966 R's plotmath expressions, used to enter mathematical formulas and symbols to be
20967 rendered as text, axis labels, etc. throughout R's plotting system.")
20968 (license license:expat)))
20969
20970 (define-public r-oai
20971 (package
20972 (name "r-oai")
20973 (version "0.3.0")
20974 (source (origin
20975 (method url-fetch)
20976 (uri (cran-uri "oai" version))
20977 (sha256
20978 (base32
20979 "1ipw9bq3ra66d1ddj1rylyyd20mlcb2i7phzhywra53s1fdifq1g"))))
20980 (build-system r-build-system)
20981 (propagated-inputs
20982 `(("r-xml2" ,r-xml2)
20983 ("r-httr" ,r-httr)
20984 ("r-plyr" ,r-plyr)
20985 ("r-stringr" ,r-stringr)
20986 ("r-tibble" ,r-tibble)))
20987 (home-page "https://github.com/ropensci/oai/")
20988 (synopsis "General purpose OAI-PMH services client")
20989 (description "@code{oai} provides a general purpose client to work with
20990 any @dfn{Open Archives Initiative Protocol for 'Metadata' Harvesting} (OAI-PMH)
20991 service. Functions are provided to work with the OAI-PMH verbs:
20992 @code{GetRecord}, @code{Identify}, @code{ListIdentifiers},
20993 @code{ListMetadataFormats}, @code{ListRecords}, and @code{ListSets}.")
20994 (license license:expat)))
20995
20996 (define-public r-argon2
20997 (package
20998 (name "r-argon2")
20999 (version "0.2-0")
21000 (source
21001 (origin
21002 (method url-fetch)
21003 (uri (cran-uri "argon2" version))
21004 (sha256
21005 (base32
21006 "0kqn06rpb39jlzizjlnc5c44mfic8llrshxn7ljgmyj35lbqwxqh"))))
21007 (properties `((upstream-name . "argon2")))
21008 (build-system r-build-system)
21009 (home-page "https://github.com/wrathematics/argon2")
21010 (synopsis "Secure password hashing based on the argon2 algorithm")
21011 (description
21012 "This package provides utilities for secure password hashing via the
21013 argon2 algorithm.")
21014 (license license:bsd-2)))
21015
21016 (define-public r-getpass
21017 (package
21018 (name "r-getpass")
21019 (version "0.2-2")
21020 (source
21021 (origin
21022 (method url-fetch)
21023 (uri (cran-uri "getPass" version))
21024 (sha256
21025 (base32
21026 "03ydafhh0sk3rcnpr3paajyji64x2ddp6p814p9mvbmyrblcgzcc"))))
21027 (properties `((upstream-name . "getPass")))
21028 (build-system r-build-system)
21029 (propagated-inputs
21030 `(("r-rstudioapi" ,r-rstudioapi)))
21031 (home-page "https://github.com/wrathematics/getPass")
21032 (synopsis "Masked user input")
21033 (description
21034 "This package provides a micro-package for reading \"passwords\", i.e.
21035 reading user input with masking, so that the input is not displayed as it is
21036 typed. Currently, RStudio, the command line (every OS), and any platform
21037 where tcltk is present are supported.")
21038 (license license:bsd-2)))
21039
21040 (define-public r-remoter
21041 (package
21042 (name "r-remoter")
21043 (version "0.4-0")
21044 (source
21045 (origin
21046 (method url-fetch)
21047 (uri (cran-uri "remoter" version))
21048 (sha256
21049 (base32
21050 "1a7m63l8phv5jnazvdqdrqkaqjwqzaac5y4jm2jn0ypy4n8jvkfl"))))
21051 (properties `((upstream-name . "remoter")))
21052 (build-system r-build-system)
21053 (propagated-inputs
21054 `(("r-argon2" ,r-argon2)
21055 ("r-getpass" ,r-getpass)
21056 ("r-pbdzmq" ,r-pbdzmq)
21057 ("r-png" ,r-png)))
21058 (home-page "https://github.com/RBigData/remoter")
21059 (synopsis "Control a remote R session from a local one")
21060 (description
21061 "This package provides a set of utilities for client/server computing
21062 with R, controlling a remote R session (the server) from a local one (the
21063 client).")
21064 (license license:bsd-2)))
21065
21066 (define-public r-asd
21067 (package
21068 (name "r-asd")
21069 (version "2.2")
21070 (source
21071 (origin
21072 (method url-fetch)
21073 (uri (cran-uri "asd" version))
21074 (sha256
21075 (base32
21076 "0p3r4qjam3sl3rpcilb0pgx4xx3ly71xqnvkv31vzjs885lgxz4l"))))
21077 (properties `((upstream-name . "asd")))
21078 (build-system r-build-system)
21079 (propagated-inputs
21080 `(("r-mvtnorm" ,r-mvtnorm)))
21081 (home-page "https://cran.r-project.org/web/packages/asd")
21082 (synopsis "Simulations for Adaptive Seamless Designs")
21083 (description
21084 "This package provdes means to run simulations for adaptive seamless
21085 designs with and without early outcomes for treatment selection and
21086 subpopulation type designs.")
21087 (license license:gpl3)))