gnu: r-lemon: Update to 0.4.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 "4.0")
7915 (source
7916 (origin
7917 (method url-fetch)
7918 (uri (cran-uri "survey" version))
7919 (sha256
7920 (base32
7921 "1q9x0s86s72gl43zj49gypg6jj2b78xjvxr4lmy5147s9h7z8lxh"))))
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-13")
8295 (source
8296 (origin
8297 (method url-fetch)
8298 (uri (cran-uri "multcomp" version))
8299 (sha256
8300 (base32
8301 "1nszi22rcc551yc75h9cdfkdqsxw1rz30vadazmpyzihp1bh63yk"))))
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.3.0")
8640 (source
8641 (origin
8642 (method url-fetch)
8643 (uri (cran-uri "effectsize" version))
8644 (sha256
8645 (base32
8646 "0kijp4wamkidaxysc11dd4vhvnm4wnbi87871wcbwn27k5b6i5dg"))))
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 (native-inputs
8654 `(("r-knitr" ,r-knitr)))
8655 (home-page "https://github.com/easystats/effectsize")
8656 (synopsis "Indices of effect size and standardized parameters")
8657 (description
8658 "This package provides utilities to work with indices of effect size and
8659 standardized parameters for a wide variety of models, allowing computation and
8660 conversion of indices such as Cohen's d, r, odds, etc.")
8661 (license license:gpl3)))
8662
8663 (define-public r-sjplot
8664 (package
8665 (name "r-sjplot")
8666 (version "2.8.3")
8667 (source
8668 (origin
8669 (method url-fetch)
8670 (uri (cran-uri "sjPlot" version))
8671 (sha256
8672 (base32 "0ip1rkjlhyf3axlc8qqss1qq1f0xrda890c1jmcbhm98wwjw264f"))))
8673 (properties `((upstream-name . "sjPlot")))
8674 (build-system r-build-system)
8675 (propagated-inputs
8676 `(("r-bayestestr" ,r-bayestestr)
8677 ("r-dplyr" ,r-dplyr)
8678 ("r-effectsize" ,r-effectsize)
8679 ("r-ggeffects" ,r-ggeffects)
8680 ("r-ggplot2" ,r-ggplot2)
8681 ("r-insight" ,r-insight)
8682 ("r-knitr" ,r-knitr)
8683 ("r-mass" ,r-mass)
8684 ("r-parameters" ,r-parameters)
8685 ("r-performance" ,r-performance)
8686 ("r-purrr" ,r-purrr)
8687 ("r-rlang" ,r-rlang)
8688 ("r-scales" ,r-scales)
8689 ("r-sjlabelled" ,r-sjlabelled)
8690 ("r-sjmisc" ,r-sjmisc)
8691 ("r-sjstats" ,r-sjstats)
8692 ("r-tidyr" ,r-tidyr)))
8693 (native-inputs
8694 `(("r-knitr" ,r-knitr)))
8695 (home-page "https://strengejacke.github.io/sjPlot/")
8696 (synopsis "Data visualization for statistics in social science")
8697 (description
8698 "This package represents a collection of plotting and table output
8699 functions for data visualization. Results of various statistical
8700 analyses (that are commonly used in social sciences) can be visualized using
8701 this package, including simple and cross tabulated frequencies, histograms,
8702 box plots, (generalized) linear models, mixed effects models, principal
8703 component analysis and correlation matrices, cluster analyses, scatter plots,
8704 stacked scales, effects plots of regression models (including interaction
8705 terms) and much more. This package supports labelled data.")
8706 (license license:gpl3)))
8707
8708 (define-public r-ini
8709 (package
8710 (name "r-ini")
8711 (version "0.3.1")
8712 (source
8713 (origin
8714 (method url-fetch)
8715 (uri (cran-uri "ini" version))
8716 (sha256
8717 (base32
8718 "04yqij344dwm0xqgara8xia42mlmij3i8711qbb5534w05a1l6bv"))))
8719 (build-system r-build-system)
8720 (home-page "https://github.com/dvdscripter/ini")
8721 (synopsis "Read and write configuration files")
8722 (description
8723 "This package provides tools to parse simple @code{.ini} configuration
8724 files to an structured list. Users can manipulate this resulting list with
8725 @code{lapply()} functions. This same structured list can be used to write
8726 back to file after modifications.")
8727 (license license:gpl3)))
8728
8729 (define-public r-gh
8730 (package
8731 (name "r-gh")
8732 (version "1.1.0")
8733 (source
8734 (origin
8735 (method url-fetch)
8736 (uri (cran-uri "gh" version))
8737 (sha256
8738 (base32
8739 "1bc9bn1078s664hc806dh0y1ncxif77q479rfmxfir9z7hwaz7yy"))))
8740 (build-system r-build-system)
8741 (propagated-inputs
8742 `(("r-cli" ,r-cli)
8743 ("r-httr" ,r-httr)
8744 ("r-ini" ,r-ini)
8745 ("r-jsonlite" ,r-jsonlite)))
8746 (home-page "https://github.com/r-lib/gh#readme")
8747 (synopsis "Access the GitHub API via R")
8748 (description
8749 "This package provides a minimal R client to access the GitHub API.")
8750 (license license:expat)))
8751
8752 (define-public r-fs
8753 (package
8754 (name "r-fs")
8755 (version "1.4.1")
8756 (source
8757 (origin
8758 (method url-fetch)
8759 (uri (cran-uri "fs" version))
8760 (sha256
8761 (base32
8762 "0kksig9pk8aid9l6r250na8z8j9919jvs20lj0s6m9bcybgh74df"))))
8763 (build-system r-build-system)
8764 (native-inputs
8765 `(("pkg-config" ,pkg-config)
8766 ("r-knitr" ,r-knitr)))
8767 (home-page "https://fs.r-lib.org")
8768 (synopsis "Cross-platform file system operations based on libuv")
8769 (description
8770 "This package provides a cross-platform interface to file system
8771 operations, built on top of the libuv C library.")
8772 (license license:gpl3)))
8773
8774 (define-public r-clisymbols
8775 (package
8776 (name "r-clisymbols")
8777 (version "1.2.0")
8778 (source
8779 (origin
8780 (method url-fetch)
8781 (uri (cran-uri "clisymbols" version))
8782 (sha256
8783 (base32
8784 "1q7gi2zmykhzas9v8fdnbpdq7pzdcpbhim1yxvd2062l777g4j86"))))
8785 (build-system r-build-system)
8786 (home-page "https://github.com/gaborcsardi/clisymbols")
8787 (synopsis "Unicode symbols at the R prompt")
8788 (description
8789 "This package provides a small subset of Unicode symbols, that are useful
8790 when building command line applications. They fall back to alternatives on
8791 terminals that do not support Unicode.")
8792 (license license:expat)))
8793
8794 (define-public r-usethis
8795 (package
8796 (name "r-usethis")
8797 (version "1.6.0")
8798 (source
8799 (origin
8800 (method url-fetch)
8801 (uri (cran-uri "usethis" version))
8802 (sha256
8803 (base32
8804 "12iyimqyza752anj29wpfisl8nz5r25kfcqbssybg24nb4wyy146"))))
8805 (build-system r-build-system)
8806 (propagated-inputs
8807 `(("r-cli" ,r-cli)
8808 ("r-clipr" ,r-clipr)
8809 ("r-crayon" ,r-crayon)
8810 ("r-curl" ,r-curl)
8811 ("r-desc" ,r-desc)
8812 ("r-fs" ,r-fs)
8813 ("r-gh" ,r-gh)
8814 ("r-git2r" ,r-git2r)
8815 ("r-glue" ,r-glue)
8816 ("r-purrr" ,r-purrr)
8817 ("r-rematch2" ,r-rematch2)
8818 ("r-rlang" ,r-rlang)
8819 ("r-rprojroot" ,r-rprojroot)
8820 ("r-rstudioapi" ,r-rstudioapi)
8821 ("r-whisker" ,r-whisker)
8822 ("r-withr" ,r-withr)
8823 ("r-yaml" ,r-yaml)))
8824 (home-page "https://github.com/r-lib/usethis")
8825 (synopsis "Automate R package and project setup")
8826 (description
8827 "This package helps you to automate R package and project setup tasks
8828 that are otherwise performed manually. This includes setting up unit testing,
8829 test coverage, continuous integration, Git, GitHub integration, licenses,
8830 Rcpp, RStudio projects, and more.")
8831 (license license:gpl3)))
8832
8833 (define-public r-sessioninfo
8834 (package
8835 (name "r-sessioninfo")
8836 (version "1.1.1")
8837 (source
8838 (origin
8839 (method url-fetch)
8840 (uri (cran-uri "sessioninfo" version))
8841 (sha256
8842 (base32
8843 "0j5f3l58fynxx3v0w62vqpii7miabszgljpja36xx9s8hikh8sqn"))))
8844 (build-system r-build-system)
8845 (propagated-inputs
8846 `(("r-cli" ,r-cli)
8847 ("r-withr" ,r-withr)))
8848 (home-page "https://github.com/r-lib/sessioninfo#readme")
8849 (synopsis "R session information")
8850 (description
8851 "This package provides tools to query and print information about the
8852 current R session. It is similar to @code{utils::sessionInfo()}, but includes
8853 more information about packages, and where they were installed from.")
8854 (license license:gpl2)))
8855
8856 (define-public r-remotes
8857 (package
8858 (name "r-remotes")
8859 (version "2.1.1")
8860 (source
8861 (origin
8862 (method url-fetch)
8863 (uri (cran-uri "remotes" version))
8864 (sha256
8865 (base32
8866 "12qinl7jv54f2524ri13gcrv6d523rg1harpi500j676zi30fnaf"))))
8867 (build-system r-build-system)
8868 (home-page "https://github.com/r-lib/remotes#readme")
8869 (synopsis "R package installation from remote repositories")
8870 (description
8871 "Download and install R packages stored in GitHub, BitBucket, or plain
8872 subversion or git repositories. This package is a lightweight replacement of
8873 the @code{install_*} functions in the @code{devtools} package. Indeed most of
8874 the code was copied over from @code{devtools}.")
8875 (license license:gpl2+)))
8876
8877 (define-public r-xopen
8878 (package
8879 (name "r-xopen")
8880 (version "1.0.0")
8881 (source
8882 (origin
8883 (method url-fetch)
8884 (uri (cran-uri "xopen" version))
8885 (sha256
8886 (base32
8887 "1vrvgdika1d63dwygynbv2wmd87ll8dji5dy89hj576n8hw601z2"))))
8888 (build-system r-build-system)
8889 (propagated-inputs
8890 `(("r-processx" ,r-processx)))
8891 (home-page "https://github.com/r-lib/xopen#readme")
8892 (synopsis "Open system files, URLs, anything")
8893 (description
8894 "This package provides a cross-platform solution to open files,
8895 directories or URLs with their associated programs.")
8896 (license license:expat)))
8897
8898 (define-public r-rcmdcheck
8899 (package
8900 (name "r-rcmdcheck")
8901 (version "1.3.3")
8902 (source
8903 (origin
8904 (method url-fetch)
8905 (uri (cran-uri "rcmdcheck" version))
8906 (sha256
8907 (base32
8908 "1d4kzgfqy72r6b7bn1j4znyksrycgypx1jjvpv9lrmvn37mpkdhs"))))
8909 (build-system r-build-system)
8910 (propagated-inputs
8911 `(("r-callr" ,r-callr)
8912 ("r-cli" ,r-cli)
8913 ("r-crayon" ,r-crayon)
8914 ("r-desc" ,r-desc)
8915 ("r-digest" ,r-digest)
8916 ("r-pkgbuild" ,r-pkgbuild)
8917 ("r-prettyunits" ,r-prettyunits)
8918 ("r-r6" ,r-r6)
8919 ("r-rprojroot" ,r-rprojroot)
8920 ("r-sessioninfo" ,r-sessioninfo)
8921 ("r-withr" ,r-withr)
8922 ("r-xopen" ,r-xopen)))
8923 (home-page "https://github.com/r-Lib/rcmdcheck#readme")
8924 (synopsis "Run R CMD check from R and capture results")
8925 (description
8926 "Run @code{R CMD check} from R programmatically, and capture the results
8927 of the individual checks.")
8928 (license license:expat)))
8929
8930 (define-public r-rapportools
8931 (package
8932 (name "r-rapportools")
8933 (version "1.0")
8934 (source
8935 (origin
8936 (method url-fetch)
8937 (uri (cran-uri "rapportools" version))
8938 (sha256
8939 (base32
8940 "1sgv4sc737i12arh5dc3263kjsz3dzg06qihfmrqyax94mv2d01b"))))
8941 (build-system r-build-system)
8942 (propagated-inputs
8943 `(("r-pander" ,r-pander)
8944 ("r-plyr" ,r-plyr)
8945 ("r-reshape" ,r-reshape)))
8946 (home-page "https://cran.r-project.org/web/packages/rapportools/")
8947 (synopsis "Miscellaneous helper functions with sane defaults for reporting")
8948 (description
8949 "This package provides helper functions that act as wrappers to more
8950 advanced statistical methods with the advantage of having sane defaults for
8951 quick reporting.")
8952 (license license:agpl3+)))
8953
8954 (define-public r-pander
8955 (package
8956 (name "r-pander")
8957 (version "0.6.3")
8958 (source
8959 (origin
8960 (method url-fetch)
8961 (uri (cran-uri "pander" version))
8962 (sha256
8963 (base32
8964 "1bd9sdghlsppmff18k5fg3i0visq9f4wc82rlhwq5m82bmgdgnyi"))))
8965 (build-system r-build-system)
8966 (propagated-inputs
8967 `(("r-digest" ,r-digest)
8968 ("r-rcpp" ,r-rcpp)))
8969 (home-page "https://rapporter.github.io/pander")
8970 (synopsis "Render R objects into Pandoc's markdown")
8971 (description
8972 "The main aim of the pander R package is to provide a minimal and easy
8973 tool for rendering R objects into Pandoc's markdown. The package is also
8974 capable of exporting/converting complex Pandoc documents (reports) in various
8975 ways.")
8976 ;; This package is licensed under either the AGPLv3+ or the very rarely
8977 ;; used OSL 3.0.
8978 (license license:agpl3+)))
8979
8980 (define-public r-summarytools
8981 (package
8982 (name "r-summarytools")
8983 (version "0.9.6")
8984 (source
8985 (origin
8986 (method url-fetch)
8987 (uri (cran-uri "summarytools" version))
8988 (sha256
8989 (base32
8990 "03pcb2ild1rb9f15yq8b68p9bg10z5wk2x7ahgyzkwdh5f81vbq2"))))
8991 (build-system r-build-system)
8992 (propagated-inputs
8993 `(("r-base64enc" ,r-base64enc)
8994 ("r-checkmate" ,r-checkmate)
8995 ("r-dplyr" ,r-dplyr)
8996 ("r-htmltools" ,r-htmltools)
8997 ("r-lubridate" ,r-lubridate)
8998 ("r-magick" ,r-magick)
8999 ("r-matrixstats" ,r-matrixstats)
9000 ("r-pander" ,r-pander)
9001 ("r-pryr" ,r-pryr)
9002 ("r-rapportools" ,r-rapportools)
9003 ("r-tibble" ,r-tibble)
9004 ("r-tidyr" ,r-tidyr)))
9005 (home-page "https://github.com/dcomtois/summarytools")
9006 (synopsis "Tools to quickly and neatly summarize data")
9007 (description
9008 "This package provides tools for data frame summaries, cross-tabulations,
9009 weight-enabled frequency tables and common univariate statistics in concise
9010 tables available in a variety of formats (plain ASCII, Markdown and HTML). A
9011 good point-of-entry for exploring data, both for experienced and new R
9012 users.")
9013 (license license:gpl2)))
9014
9015 (define-public r-lsei
9016 (package
9017 (name "r-lsei")
9018 (version "1.2-0")
9019 (source
9020 (origin
9021 (method url-fetch)
9022 (uri (cran-uri "lsei" version))
9023 (sha256
9024 (base32
9025 "1xl06fb3is744pxlh42wx5hn1h0ab1k31wnmsmh0524kxzcyp0a7"))))
9026 (build-system r-build-system)
9027 (native-inputs
9028 `(("gfortran" ,gfortran)))
9029 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
9030 (synopsis "Solve regression problems under equality/inequality constraints")
9031 (description
9032 "It contains functions that solve least squares linear regression
9033 problems under linear equality/inequality constraints. Functions for solving
9034 quadratic programming problems are also available, which transform such
9035 problems into least squares ones first.")
9036 (license license:gpl2+)))
9037
9038 (define-public r-npsurv
9039 (package
9040 (name "r-npsurv")
9041 (version "0.4-0")
9042 (source
9043 (origin
9044 (method url-fetch)
9045 (uri (cran-uri "npsurv" version))
9046 (sha256
9047 (base32
9048 "1wq4c9yfha5azjhrn40iiqkshmvh611sa90jp3lh82n4bl9zfk20"))))
9049 (build-system r-build-system)
9050 (propagated-inputs
9051 `(("r-lsei" ,r-lsei)))
9052 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
9053 (synopsis "Nonparametric survival analysis")
9054 (description
9055 "This package contains functions for non-parametric survival analysis of
9056 exact and interval-censored observations.")
9057 (license license:gpl2+)))
9058
9059 (define-public r-clusteval
9060 (package
9061 (name "r-clusteval")
9062 (version "0.1")
9063 (source
9064 (origin
9065 (method url-fetch)
9066 (uri (cran-uri "clusteval" version))
9067 (sha256
9068 (base32
9069 "1ld0bdl4fy8dsfzm3k7a37cyxc6pfc9qs31x4pxd3z5rslghz7rj"))))
9070 (build-system r-build-system)
9071 (propagated-inputs
9072 `(("r-mvtnorm" ,r-mvtnorm)
9073 ("r-rcpp" ,r-rcpp)))
9074 (home-page "https://cran.r-project.org/web/packages/clusteval/")
9075 (synopsis "Evaluation of clustering algorithms")
9076 (description
9077 "This R package provides a suite of tools to evaluate clustering
9078 algorithms, clusterings, and individual clusters.")
9079 (license license:expat)))
9080
9081 (define-public r-tweedie
9082 (package
9083 (name "r-tweedie")
9084 (version "2.3.2")
9085 (source
9086 (origin
9087 (method url-fetch)
9088 (uri (cran-uri "tweedie" version))
9089 (sha256
9090 (base32
9091 "10fv998qjxsyx0h94fi0xbh6xbf24nwgh254n9zfnmix9vk2cqls"))))
9092 (build-system r-build-system)
9093 (native-inputs `(("gfortran" ,gfortran)))
9094 (home-page "https://cran.r-project.org/web/packages/tweedie/")
9095 (synopsis "Evaluation of Tweedie exponential family models")
9096 (description
9097 "Maximum likelihood computations for Tweedie families, including the
9098 series expansion (Dunn and Smyth, 2005; <doi10.1007/s11222-005-4070-y>) and
9099 the Fourier inversion (Dunn and Smyth, 2008; <doi:10.1007/s11222-007-9039-6>),
9100 and related methods.")
9101 (license license:gpl2+)))
9102
9103 (define-public r-rcppgsl
9104 (package
9105 (name "r-rcppgsl")
9106 (version "0.3.7")
9107 (source
9108 (origin
9109 (method url-fetch)
9110 (uri (cran-uri "RcppGSL" version))
9111 (sha256
9112 (base32 "0cnw2k7cfqrm79r6j283aybflxig80x4n4rjkfp2317wf10mrsa5"))))
9113 (properties `((upstream-name . "RcppGSL")))
9114 (build-system r-build-system)
9115 (propagated-inputs
9116 `(("r-rcpp" ,r-rcpp)
9117 ("gsl" ,gsl)))
9118 (native-inputs
9119 `(("r-knitr" ,r-knitr))) ; for vignettes
9120 (home-page "https://cran.r-project.org/web/packages/RcppGSL/")
9121 (synopsis "Rcpp integration for GSL vectors and matrices")
9122 (description
9123 "The GNU Scientific Library (or GSL) is a collection of numerical
9124 routines for scientific computing. It is particularly useful for C and C++
9125 programs as it provides a standard C interface to a wide range of mathematical
9126 routines. There are over 1000 functions in total with an extensive test
9127 suite. The RcppGSL package provides an easy-to-use interface between GSL data
9128 structures and R using concepts from Rcpp which is itself a package that eases
9129 the interfaces between R and C++.")
9130 (license license:gpl2+)))
9131
9132 (define-public r-mvabund
9133 (package
9134 (name "r-mvabund")
9135 (version "4.1.3")
9136 (source
9137 (origin
9138 (method url-fetch)
9139 (uri (cran-uri "mvabund" version))
9140 (sha256
9141 (base32
9142 "1z58h4dk3mc2hfnfvc7pghk471cbp7ah2s1z2ria5igw4s80962b"))))
9143 (build-system r-build-system)
9144 (propagated-inputs
9145 `(("r-mass" ,r-mass)
9146 ("r-rcpp" ,r-rcpp)
9147 ("r-rcppgsl" ,r-rcppgsl)
9148 ("r-statmod" ,r-statmod)
9149 ("r-tweedie" ,r-tweedie)))
9150 (home-page "https://cran.r-project.org/web/packages/mvabund/")
9151 (synopsis "Statistical methods for analysing multivariate abundance data")
9152 (description
9153 "This package provides a set of tools for displaying, modeling and
9154 analysing multivariate abundance data in community ecology.")
9155 (license license:lgpl2.1+)))
9156
9157 (define-public r-afex
9158 (package
9159 (name "r-afex")
9160 (version "0.27-2")
9161 (source
9162 (origin
9163 (method url-fetch)
9164 (uri (cran-uri "afex" version))
9165 (sha256
9166 (base32
9167 "0qsmcddy4449qjj3ajmqvdiqdkhkswmz5dqf150wxwq897p3bvf2"))))
9168 (build-system r-build-system)
9169 (propagated-inputs
9170 `(("r-car" ,r-car)
9171 ("r-lme4" ,r-lme4)
9172 ("r-lmertest" ,r-lmertest)
9173 ("r-pbkrtest" ,r-pbkrtest)
9174 ("r-reshape2" ,r-reshape2)))
9175 (native-inputs
9176 `(("r-knitr" ,r-knitr)))
9177 (home-page "https://afex.singmann.science/")
9178 (synopsis "Analysis of factorial experiments")
9179 (description
9180 "This package provides convenience functions for analyzing factorial
9181 experiments using ANOVA or mixed models.")
9182 (license license:gpl2+)))
9183
9184 (define-public r-lmertest
9185 (package
9186 (name "r-lmertest")
9187 (version "3.1-2")
9188 (source
9189 (origin
9190 (method url-fetch)
9191 (uri (cran-uri "lmerTest" version))
9192 (sha256
9193 (base32
9194 "1qkdxx5sri65zgpb9gw4nkfkdam51kgy4hxclk5c40yk7y3p0n1q"))))
9195 (properties `((upstream-name . "lmerTest")))
9196 (build-system r-build-system)
9197 (propagated-inputs
9198 `(("r-ggplot2" ,r-ggplot2)
9199 ("r-lme4" ,r-lme4)
9200 ("r-mass" ,r-mass)
9201 ("r-numderiv" ,r-numderiv)))
9202 (home-page "https://github.com/runehaubo/lmerTestR")
9203 (synopsis "Tests in linear mixed effects models")
9204 (description
9205 "This package provides p-values in type I, II or III anova and summary
9206 tables for @code{lmer} model fits via Satterthwaite's degrees of freedom
9207 method. A Kenward-Roger method is also available via the @code{pbkrtest}
9208 package. Model selection methods include step, drop1 and anova-like tables
9209 for random effects (ranova). Methods for Least-Square means (LS-means) and
9210 tests of linear contrasts of fixed effects are also available.")
9211 (license license:gpl2+)))
9212
9213 (define-public r-r2glmm
9214 (package
9215 (name "r-r2glmm")
9216 (version "0.1.2")
9217 (source
9218 (origin
9219 (method url-fetch)
9220 (uri (cran-uri "r2glmm" version))
9221 (sha256
9222 (base32
9223 "0iim92blpa59vgz97c2pi05yhbjjmaffdbkbmk5kplfb2vmazgiy"))))
9224 (build-system r-build-system)
9225 (propagated-inputs
9226 `(("r-afex" ,r-afex)
9227 ("r-data-table" ,r-data-table)
9228 ("r-dplyr" ,r-dplyr)
9229 ("r-ggplot2" ,r-ggplot2)
9230 ("r-gridextra" ,r-gridextra)
9231 ("r-lmertest" ,r-lmertest)
9232 ("r-mass" ,r-mass)
9233 ("r-matrix" ,r-matrix)
9234 ("r-mgcv" ,r-mgcv)
9235 ("r-pbkrtest" ,r-pbkrtest)))
9236 (home-page "https://github.com/bcjaeger/r2glmm")
9237 (synopsis "Compute R squared for mixed (multilevel) models")
9238 (description
9239 "This package computes model and semi partial R squared with confidence
9240 limits for the linear and generalized linear mixed model (LMM and GLMM). The
9241 R squared measure from L. J. Edwards et al. (2008) is extended to the GLMM
9242 using @dfn{penalized quasi-likelihood} (PQL) estimation (see Jaeger et
9243 al. (2016)).")
9244 (license license:gpl2)))
9245
9246 (define-public r-weights
9247 (package
9248 (name "r-weights")
9249 (version "1.0.1")
9250 (source
9251 (origin
9252 (method url-fetch)
9253 (uri (cran-uri "weights" version))
9254 (sha256
9255 (base32
9256 "1ka2kvzg464vn80qziqy4mrciy9wwd3jfasgq0d33wbiblhmxkj5"))))
9257 (build-system r-build-system)
9258 (propagated-inputs
9259 `(("r-gdata" ,r-gdata)
9260 ("r-hmisc" ,r-hmisc)
9261 ("r-mice" ,r-mice)))
9262 (home-page
9263 "https://cran.r-project.org/web/packages/weights/")
9264 (synopsis "Weighting and weighted statistics")
9265 (description "This package Provides a variety of functions for producing
9266 simple weighted statistics, such as weighted Pearson's correlations, partial
9267 correlations, Chi-Squared statistics, histograms, and t-tests. Also now
9268 includes some software for quickly recoding survey data and plotting point
9269 estimates from interaction terms in regressions (and multiply imputed
9270 regressions). NOTE: Weighted partial correlation calculations pulled to
9271 address a bug.")
9272 (license license:gpl2+)))
9273
9274 (define-public r-rcppannoy
9275 (package
9276 (name "r-rcppannoy")
9277 (version "0.0.16")
9278 (source
9279 (origin
9280 (method url-fetch)
9281 (uri (cran-uri "RcppAnnoy" version))
9282 (sha256
9283 (base32
9284 "0bfa35lp6vc4b0h3ymvdx50br233q8vvyjml34ngi81rj0imz3fr"))))
9285 (properties `((upstream-name . "RcppAnnoy")))
9286 (build-system r-build-system)
9287 (propagated-inputs
9288 `(("r-rcpp" ,r-rcpp)))
9289 (home-page "https://cran.r-project.org/web/packages/RcppAnnoy/")
9290 (synopsis "Rcpp bindings for Annoy, a library for Approximate Nearest Neighbors")
9291 (description
9292 "Annoy is a small C++ library for Approximate Nearest Neighbors written
9293 for efficient memory usage as well an ability to load from and save to disk.
9294 This package provides an R interface.")
9295 ;; Annoy is released under ASL 2.0, but this wrapper is released under
9296 ;; GPLv2+.
9297 (license (list license:gpl2+ license:asl2.0))))
9298
9299 (define-public r-rcpphnsw
9300 (package
9301 (name "r-rcpphnsw")
9302 (version "0.2.0")
9303 (source
9304 (origin
9305 (method url-fetch)
9306 (uri (cran-uri "RcppHNSW" version))
9307 (sha256
9308 (base32
9309 "0gqdkw7vkcm544rz45g0hplg836ygzbfwk9gh9wr0817icvdb3qv"))))
9310 (properties `((upstream-name . "RcppHNSW")))
9311 (build-system r-build-system)
9312 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9313 (home-page "https://cran.r-project.org/web/packages/RcppHNSW/")
9314 (synopsis "Rcpp bindings for hnswlib, a library for approximate nearest neighbors")
9315 (description
9316 "Hnswlib is a C++ library for approximate nearest neighbors. This
9317 package provides a minimal R interface by relying on the Rcpp package.")
9318 ;; hnswlib is released under Version 2.0 of the Apache License.
9319 (license (list license:gpl3 license:asl2.0))))
9320
9321 (define-public r-rcppparallel
9322 (package
9323 (name "r-rcppparallel")
9324 (version "5.0.0")
9325 (source
9326 (origin
9327 (method url-fetch)
9328 (uri (cran-uri "RcppParallel" version))
9329 (sha256
9330 (base32
9331 "1mhd6vp47xmfw533h0pkvydv96m57fspvd85g8m7iqb5rcxvhhdb"))))
9332 (properties `((upstream-name . "RcppParallel")))
9333 (build-system r-build-system)
9334 (home-page "https://rcppcore.github.io/RcppParallel/")
9335 (synopsis "Parallel programming tools for Rcpp")
9336 (description
9337 "This package provides high level functions for parallel programming with
9338 Rcpp. For example, the @code{parallelFor()} function can be used to convert
9339 the work of a standard serial @code{for} loop into a parallel one and the
9340 @code{parallelReduce()} function can be used for accumulating aggregates or
9341 other values.")
9342 (license license:gpl2)))
9343
9344 (define-public r-ncdf4
9345 (package
9346 (name "r-ncdf4")
9347 (version "1.17")
9348 (source
9349 (origin
9350 (method url-fetch)
9351 (uri (cran-uri "ncdf4" version))
9352 (sha256
9353 (base32
9354 "1xls44ln2zjrrlimxl8v4bk2ni3g45c9j0gxdnjx31rikmrc95fv"))))
9355 (build-system r-build-system)
9356 (inputs
9357 `(("netcdf" ,netcdf)
9358 ("zlib" ,zlib)))
9359 (home-page "https://cran.r-project.org/web/packages/ncdf4/index.html")
9360 (synopsis "R interface to Unidata netCDF format data files")
9361 (description
9362 "This package provides a high-level R interface to data files written
9363 using Unidata's netCDF library (version 4 or earlier), which are binary data
9364 files that are portable across platforms and include metadata information in
9365 addition to the data sets. Using this package, netCDF files can be opened and
9366 data sets read in easily. It is also easy to create new netCDF dimensions,
9367 variables, and files, in either version 3 or 4 format, and manipulate existing
9368 netCDF files.")
9369 (license license:gpl3+)))
9370
9371 (define-public r-biocmanager
9372 (package
9373 (name "r-biocmanager")
9374 (version "1.30.10")
9375 (source
9376 (origin
9377 (method url-fetch)
9378 (uri (cran-uri "BiocManager" version))
9379 (sha256
9380 (base32 "03n9s2vf7vgpgb5alpxwamf9xfkn32cbzngwyn6spq1bnh9a9dzk"))))
9381 (properties `((upstream-name . "BiocManager")))
9382 (build-system r-build-system)
9383 (home-page "https://cran.r-project.org/web/packages/BiocManager/")
9384 (synopsis "Access the Bioconductor project package repository")
9385 (description
9386 "This package provides a convenient tool to install and update
9387 Bioconductor packages.")
9388 (license license:artistic2.0)))
9389
9390 (define-public r-rgl
9391 (package
9392 (name "r-rgl")
9393 (version "0.100.50")
9394 (source
9395 (origin
9396 (method url-fetch)
9397 (uri (cran-uri "rgl" version))
9398 (sha256
9399 (base32
9400 "165p932ml7dpjkm41zc47p5cdxar69il0m5yvg0avi8q01vr17ay"))))
9401 (build-system r-build-system)
9402 (native-inputs
9403 `(("pkg-config" ,pkg-config)))
9404 (inputs
9405 `(("freetype" ,freetype)
9406 ("libpng" ,libpng)
9407 ("glu" ,glu)
9408 ("libx11" ,libx11)
9409 ("ghc-pandoc" ,ghc-pandoc)
9410 ("zlib" ,zlib)))
9411 (propagated-inputs
9412 `(("r-crosstalk" ,r-crosstalk)
9413 ("r-htmltools" ,r-htmltools)
9414 ("r-htmlwidgets" ,r-htmlwidgets)
9415 ("r-jsonlite" ,r-jsonlite)
9416 ("r-knitr" ,r-knitr)
9417 ("r-magrittr" ,r-magrittr)
9418 ("r-manipulatewidget" ,r-manipulatewidget)
9419 ("r-shiny" ,r-shiny)))
9420 (home-page "https://r-forge.r-project.org/projects/rgl/")
9421 (synopsis "3D visualization using OpenGL")
9422 (description
9423 "This package provides medium to high level functions for 3D interactive graphics,
9424 including functions modelled on base graphics (@code{plot3d()}, etc.) as well
9425 as functions for constructing representations of geometric
9426 objects (@code{cube3d()}, etc.). Output may be on screen using OpenGL, or to
9427 various standard 3D file formats including WebGL, PLY, OBJ, STL as well as 2D
9428 image formats, including PNG, Postscript, SVG, PGF.")
9429 ;; Any version of the GPL.
9430 (license (list license:gpl2+ license:gpl3+))))
9431
9432 (define-public r-multicool
9433 (package
9434 (name "r-multicool")
9435 (version "0.1-11")
9436 (source
9437 (origin
9438 (method url-fetch)
9439 (uri (cran-uri "multicool" version))
9440 (sha256
9441 (base32
9442 "0xk408qbz9cxwf51j3pmy55gcjcnws8mc6j3vyn9zhramxj7x40w"))))
9443 (build-system r-build-system)
9444 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9445 (home-page "https://cran.r-project.org/web/packages/multicool/")
9446 (synopsis "Permutations of multisets in cool-lex order")
9447 (description
9448 "This package provides a set of tools to permute multisets without loops
9449 or hash tables and to generate integer partitions. Cool-lex order is similar
9450 to colexicographical order.")
9451 (license license:gpl2)))
9452
9453 (define-public r-misc3d
9454 (package
9455 (name "r-misc3d")
9456 (version "0.8-4")
9457 (source
9458 (origin
9459 (method url-fetch)
9460 (uri (cran-uri "misc3d" version))
9461 (sha256
9462 (base32
9463 "0qjzpw3h09qi2gfz52b7nhzd95p7yyxsd03fldc9wzzn6wi3vpkm"))))
9464 (build-system r-build-system)
9465 (home-page "https://cran.r-project.org/web/packages/misc3d/")
9466 (synopsis "Miscellaneous 3D Plots")
9467 (description
9468 "This package provides a collection of miscellaneous 3d plots, including
9469 isosurfaces.")
9470 ;; Any version of the GPL.
9471 (license (list license:gpl2+ license:gpl3+))))
9472
9473 (define-public r-ks
9474 (package
9475 (name "r-ks")
9476 (version "1.11.7")
9477 (source
9478 (origin
9479 (method url-fetch)
9480 (uri (cran-uri "ks" version))
9481 (sha256
9482 (base32 "1f6jvxy0hmngyvnvrknzbmhl42njk0vqyycvydm4qnp8cqirqvba"))))
9483 (build-system r-build-system)
9484 (propagated-inputs
9485 `(("r-fnn" ,r-fnn)
9486 ("r-kernlab" ,r-kernlab)
9487 ("r-kernsmooth" ,r-kernsmooth)
9488 ("r-matrix" ,r-matrix)
9489 ("r-mclust" ,r-mclust)
9490 ("r-mgcv" ,r-mgcv)
9491 ("r-multicool" ,r-multicool)
9492 ("r-mvtnorm" ,r-mvtnorm)))
9493 (home-page "http://www.mvstat.net/tduong/")
9494 (synopsis "Kernel smoothing")
9495 (description
9496 "This package provides kernel smoothers for univariate and multivariate
9497 data, including density functions, density derivatives, cumulative
9498 distributions, modal clustering, discriminant analysis, and two-sample
9499 hypothesis testing.")
9500 ;; Either version of the GPL.
9501 (license (list license:gpl2 license:gpl3))))
9502
9503 (define-public r-feature
9504 (package
9505 (name "r-feature")
9506 (version "1.2.13")
9507 (source
9508 (origin
9509 (method url-fetch)
9510 (uri (cran-uri "feature" version))
9511 (sha256
9512 (base32
9513 "07hkw0bv38naj2hdsx4xxrm2dngi6w3rbvgr7s50bjic8hlgy1ra"))))
9514 (build-system r-build-system)
9515 (propagated-inputs
9516 `(("r-ks" ,r-ks)
9517 ("r-misc3d" ,r-misc3d)
9518 ("r-rgl" ,r-rgl)))
9519 (home-page "http://www.mvstat.net/tduong/")
9520 (synopsis "Inferential feature significance for kernel density estimation")
9521 (description
9522 "The feature package contains functions to display and compute kernel
9523 density estimates, significant gradient and significant curvature regions.
9524 Significant gradient and/or curvature regions often correspond to significant
9525 features (e.g. local modes).")
9526 ;; Either version of the GPL.
9527 (license (list license:gpl2 license:gpl3))))
9528
9529 (define-public r-arm
9530 (package
9531 (name "r-arm")
9532 (version "1.10-1")
9533 (source
9534 (origin
9535 (method url-fetch)
9536 (uri (cran-uri "arm" version))
9537 (sha256
9538 (base32
9539 "0vvp90jygajd6ydky57z66wqjq9msfbl88irj5jbsray574mh4bg"))))
9540 (build-system r-build-system)
9541 (propagated-inputs
9542 `(("r-abind" ,r-abind)
9543 ("r-coda" ,r-coda)
9544 ("r-lme4" ,r-lme4)
9545 ("r-mass" ,r-mass)
9546 ("r-matrix" ,r-matrix)
9547 ("r-nlme" ,r-nlme)))
9548 (home-page "https://cran.r-project.org/web/packages/arm/")
9549 (synopsis "Data analysis using regression and multilevel/hierarchical models")
9550 (description
9551 "This package provides functions to accompany A. Gelman and J. Hill,
9552 Data Analysis Using Regression and Multilevel/Hierarchical Models, Cambridge
9553 University Press, 2007.")
9554 (license license:gpl3+)))
9555
9556 (define-public r-circular
9557 (package
9558 (name "r-circular")
9559 (version "0.4-93")
9560 (source
9561 (origin
9562 (method url-fetch)
9563 (uri (cran-uri "circular" version))
9564 (sha256
9565 (base32
9566 "0hki85rs8wc5950pjaw28q54rly2napfbcrx3pchlfap6wwy5kkn"))))
9567 (build-system r-build-system)
9568 (propagated-inputs
9569 `(("r-boot" ,r-boot)
9570 ("r-mvtnorm" ,r-mvtnorm)))
9571 (native-inputs
9572 `(("gfortran" ,gfortran)))
9573 (home-page "https://cran.r-project.org/web/packages/circular/")
9574 (synopsis "Circular statistics")
9575 (description
9576 "This package provides tools for circular statistics, from \"Topics in
9577 circular Statistics\" (2001) S. Rao Jammalamadaka and A. SenGupta, World
9578 Scientific.")
9579 (license license:gpl2+)))
9580
9581 (define-public r-activity
9582 (package
9583 (name "r-activity")
9584 (version "1.3")
9585 (source
9586 (origin
9587 (method url-fetch)
9588 (uri (cran-uri "activity" version))
9589 (sha256
9590 (base32
9591 "12imqj366dp6pam5gap6ji56p5wf1073xz5g4iikfxf5l8snxw92"))))
9592 (build-system r-build-system)
9593 (propagated-inputs
9594 `(("r-circular" ,r-circular)
9595 ("r-insol" ,r-insol)
9596 ("r-pbapply" ,r-pbapply)))
9597 (home-page "https://cran.r-project.org/web/packages/activity/")
9598 (synopsis "Animal activity statistics")
9599 (description
9600 "This package provides functions to fit kernel density functions to
9601 animal activity time data; plot activity distributions; quantify overall
9602 levels of activity; statistically compare activity metrics through
9603 bootstrapping; and evaluate variation in linear variables with time (or other
9604 circular variables).")
9605 (license license:gpl3)))
9606
9607 (define-public r-ouch
9608 (package
9609 (name "r-ouch")
9610 (version "2.14-1")
9611 (source
9612 (origin
9613 (method url-fetch)
9614 (uri (cran-uri "ouch" version))
9615 (sha256
9616 (base32
9617 "0ddf9bw5lhj8vb0ja78jf99i0smq4rgmm842k4a4ygap41vdyn2b"))))
9618 (build-system r-build-system)
9619 (propagated-inputs `(("r-subplex" ,r-subplex)))
9620 (home-page "https://kingaa.github.io/ouch/")
9621 (synopsis "Ornstein-Uhlenbeck models for phylogenetic comparative hypotheses")
9622 (description
9623 "This package provides tools to fit and compare Ornstein-Uhlenbeck models
9624 for evolution along a phylogenetic tree.")
9625 (license license:gpl2+)))
9626
9627 (define-public r-fmsb
9628 (package
9629 (name "r-fmsb")
9630 (version "0.7.0")
9631 (source
9632 (origin
9633 (method url-fetch)
9634 (uri (cran-uri "fmsb" version))
9635 (sha256
9636 (base32
9637 "0x1wkzfdvv4s5xmr0whcwjz4aac71gacwymj2c3mzj2bbswwlw45"))))
9638 (build-system r-build-system)
9639 (home-page "http://minato.sip21c.org/msb/")
9640 (synopsis "Functions for medical statistics book with demographic data")
9641 (description
9642 "This package provides several utility functions for the book entitled
9643 \"Practices of Medical and Health Data Analysis using R\" (Pearson Education
9644 Japan, 2007) with Japanese demographic data and some demographic analysis
9645 related functions.")
9646 (license license:gpl2+)))
9647
9648 (define-public r-stabledist
9649 (package
9650 (name "r-stabledist")
9651 (version "0.7-1")
9652 (source
9653 (origin
9654 (method url-fetch)
9655 (uri (cran-uri "stabledist" version))
9656 (sha256
9657 (base32
9658 "0scar396wiq6wkbkvwp4qrxqc1m075y56p37i6iry5rw796p1i86"))))
9659 (build-system r-build-system)
9660 (home-page "https://www.rmetrics.org")
9661 (synopsis "Stable distribution functions")
9662 (description
9663 "This package provides density, probability and quantile functions, and
9664 random number generation for (skew) stable distributions, using the
9665 parametrizations of Nolan.")
9666 (license license:gpl2+)))
9667
9668 (define-public r-gsl
9669 (package
9670 (name "r-gsl")
9671 (version "2.1-6")
9672 (source
9673 (origin
9674 (method url-fetch)
9675 (uri (cran-uri "gsl" version))
9676 (sha256
9677 (base32
9678 "0p4rh7npp6qbfc5sxjq86xjn7c9ivf3pd60qf1hldwckjqin7m7m"))))
9679 (build-system r-build-system)
9680 (inputs
9681 `(("gsl" ,gsl)))
9682 (home-page "https://cran.r-project.org/web/packages/gsl")
9683 (synopsis "Wrapper for the GNU Scientific Library")
9684 (description
9685 "This package provides an R wrapper for the special functions and quasi
9686 random number generators of the GNU Scientific Library.")
9687 (license license:gpl2+)))
9688
9689 (define-public r-adgoftest
9690 (package
9691 (name "r-adgoftest")
9692 (version "0.3")
9693 (source
9694 (origin
9695 (method url-fetch)
9696 (uri (cran-uri "ADGofTest" version))
9697 (sha256
9698 (base32
9699 "0ik817qzqp6kfbckjp1z7srlma0w6z2zcwykh0jdiv7nahwk3ncw"))))
9700 (properties `((upstream-name . "ADGofTest")))
9701 (build-system r-build-system)
9702 (home-page "https://cran.r-project.org/web/packages/ADGofTest")
9703 (synopsis "Anderson-Darling GoF test")
9704 (description
9705 "This package provides an implementation of the Anderson-Darling GoF test
9706 with p-value calculation based on Marsaglia's 2004 paper \"Evaluating the
9707 Anderson-Darling Distribution\".")
9708 ;; Any version of the GPL.
9709 (license license:gpl3+)))
9710
9711 (define-public r-softimpute
9712 (package
9713 (name "r-softimpute")
9714 (version "1.4")
9715 (source
9716 (origin
9717 (method url-fetch)
9718 (uri (cran-uri "softImpute" version))
9719 (sha256
9720 (base32
9721 "07cxbzkl08q58m1455i139952rmryjlic4s2f2hscl5zxxmfdxcq"))))
9722 (properties `((upstream-name . "softImpute")))
9723 (build-system r-build-system)
9724 (propagated-inputs
9725 `(("r-matrix" ,r-matrix)))
9726 (native-inputs
9727 `(("gfortran" ,gfortran)))
9728 (home-page "https://cran.r-project.org/web/packages/softImpute")
9729 (synopsis "Matrix completion via iterative soft-thresholded SVD")
9730 (description
9731 "This package provides iterative methods for matrix completion that use
9732 nuclear-norm regularization. The package includes procedures for centering
9733 and scaling rows, columns or both, and for computing low-rank @dfn{single
9734 value decompositions} (SVDs) on large sparse centered matrices (i.e. principal
9735 components).")
9736 (license license:gpl2)))
9737
9738 (define-public r-fftwtools
9739 (package
9740 (name "r-fftwtools")
9741 (version "0.9-8")
9742 (source
9743 (origin
9744 (method url-fetch)
9745 (uri (cran-uri "fftwtools" version))
9746 (sha256
9747 (base32
9748 "1nqvpzda281rxi1cmwajxxsn3sc3gz7scv8bvs5jm34kf36whha6"))))
9749 (build-system r-build-system)
9750 (inputs `(("fftw" ,fftw)))
9751 (home-page "https://github.com/krahim/fftwtools")
9752 (synopsis "Wrapper for FFTW3")
9753 (description
9754 "This package provides a wrapper for several FFTW functions. It provides
9755 access to the two-dimensional FFT, the multivariate FFT, and the
9756 one-dimensional real to complex FFT using the FFTW3 library. The package
9757 includes the functions @code{fftw()} and @code{mvfftw()} which are designed to
9758 mimic the functionality of the R functions @code{fft()} and @code{mvfft()}.
9759 The FFT functions have a parameter that allows them to not return the
9760 redundant complex conjugate when the input is real data.")
9761 (license license:gpl2+)))
9762
9763 (define-public r-tiff
9764 (package
9765 (name "r-tiff")
9766 (version "0.1-5")
9767 (source
9768 (origin
9769 (method url-fetch)
9770 (uri (cran-uri "tiff" version))
9771 (sha256
9772 (base32
9773 "0asf2bws3x3yd3g3ixvk0f86b0mdf882pl8xrqlxrkbgjalyc54m"))))
9774 (build-system r-build-system)
9775 (inputs
9776 `(("libtiff" ,libtiff)
9777 ("libjpeg" ,libjpeg)
9778 ("zlib" ,zlib)))
9779 (home-page "https://www.rforge.net/tiff/")
9780 (synopsis "Read and write TIFF images")
9781 (description
9782 "This package provides an easy and simple way to read, write and display
9783 bitmap images stored in the TIFF format. It can read and write both files and
9784 in-memory raw vectors.")
9785 ;; Either of these two license versions.
9786 (license (list license:gpl2 license:gpl3))))
9787
9788 (define-public r-nlp
9789 (package
9790 (name "r-nlp")
9791 (version "0.2-0")
9792 (source
9793 (origin
9794 (method url-fetch)
9795 (uri (cran-uri "NLP" version))
9796 (sha256
9797 (base32
9798 "0xbhkrnxcbf322jfw31xcn4y2gnk5y7ccq1bz4h3prf44h0whr7w"))))
9799 (properties `((upstream-name . "NLP")))
9800 (build-system r-build-system)
9801 (home-page "https://cran.r-project.org/web/packages/NLP/")
9802 (synopsis "Natural language processing infrastructure")
9803 (description
9804 "This package provides basic classes and methods for Natural Language
9805 Processing.")
9806 (license license:gpl3)))
9807
9808 (define-public r-tm
9809 (package
9810 (name "r-tm")
9811 (version "0.7-7")
9812 (source
9813 (origin
9814 (method url-fetch)
9815 (uri (cran-uri "tm" version))
9816 (sha256
9817 (base32
9818 "0pyics8j7a4wkh5gzin46l0qars5vgbb1886xqpdqjs1z0gy9nyh"))))
9819 (properties `((upstream-name . "tm")))
9820 (build-system r-build-system)
9821 (propagated-inputs
9822 `(("r-bh" ,r-bh)
9823 ("r-nlp" ,r-nlp)
9824 ("r-rcpp" ,r-rcpp)
9825 ("r-slam" ,r-slam)
9826 ("r-xml2" ,r-xml2)))
9827 (home-page "http://tm.r-forge.r-project.org/")
9828 (synopsis "Text mining package")
9829 (description
9830 "This package provides a framework for text mining applications within R.")
9831 (license license:gpl3)))
9832
9833 (define-public r-waveslim
9834 (package
9835 (name "r-waveslim")
9836 (version "1.8.2")
9837 (source
9838 (origin
9839 (method url-fetch)
9840 (uri (cran-uri "waveslim" version))
9841 (sha256
9842 (base32
9843 "0ibivnhz0l06sss5rrrcvyiwg3qpbyk3qn4vx4pp90kj09x4yg0k"))))
9844 (build-system r-build-system)
9845 (native-inputs
9846 `(("gfortran" ,gfortran)))
9847 (home-page "http://waveslim.blogspot.com")
9848 (synopsis "Basic wavelet routines for signal processing")
9849 (description
9850 "This package provides basic wavelet routines for time series (1D),
9851 image (2D) and array (3D) analysis. The code provided here is based on
9852 wavelet methodology developed in Percival and Walden (2000); Gencay, Selcuk
9853 and Whitcher (2001); the dual-tree complex wavelet transform (DTCWT) from
9854 Kingsbury (1999, 2001) as implemented by Selesnick; and Hilbert wavelet
9855 pairs (Selesnick 2001, 2002).")
9856 (license license:bsd-3)))
9857
9858 (define-public r-wordcloud
9859 (package
9860 (name "r-wordcloud")
9861 (version "2.6")
9862 (source
9863 (origin
9864 (method url-fetch)
9865 (uri (cran-uri "wordcloud" version))
9866 (sha256
9867 (base32
9868 "0j96yyvm6bcrrpbdx4w26piqx44a0vbsr3px9cb4zk8a8da6jwak"))))
9869 (build-system r-build-system)
9870 (propagated-inputs
9871 `(("r-rcolorbrewer" ,r-rcolorbrewer)
9872 ("r-rcpp" ,r-rcpp)
9873 ;; The "tm" package is only "suggested" according to CRAN, but the
9874 ;; wordcloud package cannot be loaded without it.
9875 ("r-tm" ,r-tm)))
9876 (home-page "https://cran.r-project.org/web/packages/wordcloud")
9877 (synopsis "Word clouds")
9878 (description
9879 "This package provides functionality to create pretty word clouds,
9880 visualize differences and similarity between documents, and avoid
9881 over-plotting in scatter plots with text.")
9882 (license license:lgpl2.1)))
9883
9884 (define-public r-colorramps
9885 (package
9886 (name "r-colorramps")
9887 (version "2.3")
9888 (source
9889 (origin
9890 (method url-fetch)
9891 (uri (cran-uri "colorRamps" version))
9892 (sha256
9893 (base32
9894 "0shbjh83x1axv4drm5r3dwgbyv70idih8z4wlzjs4hiac2qfl41z"))))
9895 (properties `((upstream-name . "colorRamps")))
9896 (build-system r-build-system)
9897 (home-page "https://cran.r-project.org/web/packages/colorRamps")
9898 (synopsis "Build color tables")
9899 (description "This package provides features to build gradient color
9900 maps.")
9901 ;; Any version of the GPL
9902 (license license:gpl3+)))
9903
9904 (define-public r-tidytree
9905 (package
9906 (name "r-tidytree")
9907 (version "0.3.3")
9908 (source
9909 (origin
9910 (method url-fetch)
9911 (uri (cran-uri "tidytree" version))
9912 (sha256
9913 (base32 "05b53dap0f784kl6s1wgck6m7brwmy6ifqp7v5l06s1spfspagl6"))))
9914 (build-system r-build-system)
9915 (propagated-inputs
9916 `(("r-ape" ,r-ape)
9917 ("r-dplyr" ,r-dplyr)
9918 ("r-lazyeval" ,r-lazyeval)
9919 ("r-magrittr" ,r-magrittr)
9920 ("r-rlang" ,r-rlang)
9921 ("r-tibble" ,r-tibble)))
9922 (native-inputs
9923 `(("r-knitr" ,r-knitr)))
9924 (home-page "https://github.com/GuangchuangYu/tidytree")
9925 (synopsis "Tidy tool for phylogenetic tree data manipulation")
9926 (description
9927 "Phylogenetic trees generally contain multiple components including nodes,
9928 edges, branches and associated data. This package provides an approach to
9929 convert tree objects to tidy data frames. It also provides tidy interfaces to
9930 manipulate tree data.")
9931 (license license:artistic2.0)))
9932
9933 (define-public r-rvcheck
9934 (package
9935 (name "r-rvcheck")
9936 (version "0.1.8")
9937 (source
9938 (origin
9939 (method url-fetch)
9940 (uri (cran-uri "rvcheck" version))
9941 (sha256
9942 (base32 "0627bc8qmhxmd63yh6f90qni3qw1zwdpxjln2qbychzmzd4am9ac"))))
9943 (build-system r-build-system)
9944 (propagated-inputs
9945 `(("r-biocmanager" ,r-biocmanager)
9946 ("r-rlang" ,r-rlang)))
9947 (home-page "https://cran.r-project.org/web/packages/rvcheck")
9948 (synopsis "R package version check")
9949 (description
9950 "This package provides tools to check the latest release version of R and
9951 R packages (on CRAN, Bioconductor or Github).")
9952 (license license:artistic2.0)))
9953
9954 (define-public r-docopt
9955 (package
9956 (name "r-docopt")
9957 (version "0.6.1")
9958 (source
9959 (origin
9960 (method url-fetch)
9961 (uri (cran-uri "docopt" version))
9962 (sha256
9963 (base32
9964 "06zknnd0c5s2y0hbddzdlr3m63ib783izpck6pgz7sjbab5pd068"))))
9965 (build-system r-build-system)
9966 (home-page "https://github.com/docopt/docopt.R")
9967 (synopsis "Command-line interface specification language")
9968 (description
9969 "This package enables you to define a command-line interface by just
9970 giving it a description in the specific format.")
9971 (license license:expat)))
9972
9973 (define-public r-sparsesvd
9974 (package
9975 (name "r-sparsesvd")
9976 (version "0.2")
9977 (source
9978 (origin
9979 (method url-fetch)
9980 (uri (cran-uri "sparsesvd" version))
9981 (sha256
9982 (base32
9983 "1xm969fjq3fv1p2sqza2apz8picibj4s2agpwf1sx9nwn3b587qs"))))
9984 (build-system r-build-system)
9985 (propagated-inputs `(("r-matrix" ,r-matrix)))
9986 (home-page "http://tedlab.mit.edu/~dr/SVDLIBC/")
9987 (synopsis "Sparse truncated singular value decomposition")
9988 (description
9989 "This package provides a Wrapper around the SVDLIBC library
9990 for (truncated) singular value decomposition of a sparse matrix. Currently,
9991 only sparse real matrices in Matrix package format are supported.")
9992 ;; SVDLIBC is released under BSD-2. The R interface is released under
9993 ;; BSD-3.
9994 (license (list license:bsd-3 license:bsd-2))))
9995
9996 (define-public r-speedglm
9997 (package
9998 (name "r-speedglm")
9999 (version "0.3-2")
10000 (source
10001 (origin
10002 (method url-fetch)
10003 (uri (cran-uri "speedglm" version))
10004 (sha256
10005 (base32
10006 "1b25zimk0z7ad62yacqdg0zk0qs0jja4i918ym942xfw4j1z3jjz"))))
10007 (build-system r-build-system)
10008 (propagated-inputs
10009 `(("r-mass" ,r-mass)
10010 ("r-matrix" ,r-matrix)))
10011 (home-page "https://cran.r-project.org/web/packages/speedglm")
10012 (synopsis "Fit linear and generalized linear models to large data sets")
10013 (description
10014 "This package provides tools for fitting linear models and generalized
10015 linear models to large data sets by updating algorithms.")
10016 ;; Any version of the GPL
10017 (license license:gpl2+)))
10018
10019 (define-public r-densityclust
10020 (package
10021 (name "r-densityclust")
10022 (version "0.3")
10023 (source
10024 (origin
10025 (method url-fetch)
10026 (uri (cran-uri "densityClust" version))
10027 (sha256
10028 (base32
10029 "1zry0vafajzmr37aylglxfvwplhdygbkb9cvzvh8cy0xgnjrnx13"))))
10030 (properties `((upstream-name . "densityClust")))
10031 (build-system r-build-system)
10032 (propagated-inputs
10033 `(("r-fnn" ,r-fnn)
10034 ("r-ggplot2" ,r-ggplot2)
10035 ("r-ggrepel" ,r-ggrepel)
10036 ("r-gridextra" ,r-gridextra)
10037 ("r-rcolorbrewer" ,r-rcolorbrewer)
10038 ("r-rcpp" ,r-rcpp)
10039 ("r-rtsne" ,r-rtsne)))
10040 (home-page "https://cran.r-project.org/web/packages/densityClust")
10041 (synopsis "Clustering by fast search and find of density peaks")
10042 (description
10043 "This package provides an improved implementation (based on k-nearest
10044 neighbors) of the density peak clustering algorithm, originally described by
10045 Alex Rodriguez and Alessandro Laio (Science, 2014 vol. 344). It can handle
10046 large datasets (> 100,000 samples) very efficiently.")
10047 (license license:gpl2+)))
10048
10049 (define-public r-combinat
10050 (package
10051 (name "r-combinat")
10052 (version "0.0-8")
10053 (source
10054 (origin
10055 (method url-fetch)
10056 (uri (cran-uri "combinat" version))
10057 (sha256
10058 (base32
10059 "1h9hr88gigihc4na7lb5i7rn4az1xa7sb34zvnznaj6pdrmwy4qm"))))
10060 (build-system r-build-system)
10061 (home-page "https://cran.r-project.org/web/packages/combinat")
10062 (synopsis "Combinatorics utilities")
10063 (description "This package provides assorted routines for combinatorics.")
10064 (license license:gpl2)))
10065
10066 (define-public r-qlcmatrix
10067 (package
10068 (name "r-qlcmatrix")
10069 (version "0.9.7")
10070 (source
10071 (origin
10072 (method url-fetch)
10073 (uri (cran-uri "qlcMatrix" version))
10074 (sha256
10075 (base32
10076 "0iqkcvvy8rxlk0s83sjq57dd6fadb18p5z31lzy0gnzv1hsy1x8y"))))
10077 (properties `((upstream-name . "qlcMatrix")))
10078 (build-system r-build-system)
10079 (propagated-inputs
10080 `(("r-docopt" ,r-docopt)
10081 ("r-matrix" ,r-matrix)
10082 ("r-slam" ,r-slam)
10083 ("r-sparsesvd" ,r-sparsesvd)))
10084 (home-page "https://cran.r-project.org/web/packages/qlcMatrix")
10085 (synopsis "Sparse matrix functions for quantitative language comparison")
10086 (description
10087 "This package provides an extension of the functionality of the Matrix
10088 package for using sparse matrices. Some of the functions are very general,
10089 while other are highly specific for the special data format used for
10090 @dfn{quantitative language comparison} (QLC).")
10091 (license license:gpl3)))
10092
10093 (define-public r-ddrtree
10094 (package
10095 (name "r-ddrtree")
10096 (version "0.1.5")
10097 (source
10098 (origin
10099 (method url-fetch)
10100 (uri (cran-uri "DDRTree" version))
10101 (sha256
10102 (base32
10103 "16s5fjw7kwlxhrkzdny62sx32fvmg3rxjc3wrh6krd31jh1fqlfk"))))
10104 (properties `((upstream-name . "DDRTree")))
10105 (build-system r-build-system)
10106 (propagated-inputs
10107 `(("r-bh" ,r-bh)
10108 ("r-irlba" ,r-irlba)
10109 ("r-rcpp" ,r-rcpp)
10110 ("r-rcppeigen" ,r-rcppeigen)))
10111 (home-page "https://cran.r-project.org/web/packages/DDRTree")
10112 (synopsis "Learning principal graphs with DDRTree")
10113 (description
10114 "This package provides an implementation of the framework of
10115 @dfn{reversed graph embedding} (RGE) which projects data into a reduced
10116 dimensional space while constructs a principal tree which passes through the
10117 middle of the data simultaneously. DDRTree shows superiority to
10118 alternatives (Wishbone, DPT) for inferring the ordering as well as the
10119 intrinsic structure of single cell genomics data. In general, it could be
10120 used to reconstruct the temporal progression as well as the bifurcation
10121 structure of any data type.")
10122 (license license:asl2.0)))
10123
10124 (define-public r-corpcor
10125 (package
10126 (name "r-corpcor")
10127 (version "1.6.9")
10128 (source
10129 (origin
10130 (method url-fetch)
10131 (uri (cran-uri "corpcor" version))
10132 (sha256
10133 (base32
10134 "1hi3i9d3841snppq1ks5pd8cliq1b4rm4dpsczmfqvwksg8snkrf"))))
10135 (build-system r-build-system)
10136 (home-page "http://strimmerlab.org/software/corpcor/")
10137 (synopsis "Efficient estimation of covariance and (partial) correlation")
10138 (description
10139 "This package implements a James-Stein-type shrinkage estimator for the
10140 covariance matrix, with separate shrinkage for variances and correlations.
10141 Furthermore, functions are available for fast singular value decomposition,
10142 for computing the pseudoinverse, and for checking the rank and positive
10143 definiteness of a matrix.")
10144 (license license:gpl3+)))
10145
10146 (define-public r-rspectra
10147 (package
10148 (name "r-rspectra")
10149 (version "0.16-0")
10150 (source
10151 (origin
10152 (method url-fetch)
10153 (uri (cran-uri "RSpectra" version))
10154 (sha256
10155 (base32
10156 "1ab45as2ysjrvkhvmx7y3nbhd0y1w4j9k2a789lcd973zz4wzwda"))))
10157 (properties `((upstream-name . "RSpectra")))
10158 (build-system r-build-system)
10159 (propagated-inputs
10160 `(("r-matrix" ,r-matrix)
10161 ("r-rcpp" ,r-rcpp)
10162 ("r-rcppeigen" ,r-rcppeigen)))
10163 (home-page "https://github.com/yixuan/RSpectra")
10164 (synopsis "Solvers for large-scale Eigenvalue and SVD problems")
10165 (description
10166 "This package provides an R interface to the Spectra library for
10167 large-scale eigenvalue and SVD problems. It is typically used to compute a
10168 few eigenvalues/vectors of an n by n matrix, e.g., the k largest eigenvalues,
10169 which is usually more efficient than @code{eigen()} if k << n.")
10170 ;; MPL 2 or later.
10171 (license license:mpl2.0)))
10172
10173 (define-public r-vbsr
10174 (package
10175 (name "r-vbsr")
10176 (version "0.0.5")
10177 (source
10178 (origin
10179 (method url-fetch)
10180 (uri (cran-uri "vbsr" version))
10181 (sha256
10182 (base32
10183 "1avskbxxyinjjdga4rnghcfvd4sypv4m39ysfaij5avvmi89bx3b"))))
10184 (build-system r-build-system)
10185 (home-page "https://cran.r-project.org/web/packages/vbsr")
10186 (synopsis "Variational Bayes spike regression regularized linear models")
10187 (description
10188 "This package provides an efficient algorithm for solving ultra-sparse
10189 regularized regression models using a variational Bayes algorithm with a spike
10190 prior. The algorithm is solved on a path, with coordinate updates, and is
10191 capable of generating very sparse models. Very general model
10192 diagnostics for controlling type-1 errors are also provided.")
10193 (license license:gpl2)))
10194
10195 (define-public r-flare
10196 (package
10197 (name "r-flare")
10198 (version "1.6.0.2")
10199 (source
10200 (origin
10201 (method url-fetch)
10202 (uri (cran-uri "flare" version))
10203 (sha256
10204 (base32
10205 "1ybrsx1djqldw0l5l1iz4pfh6xxb8ckkg1ric7wnsr51wm9ljlh5"))))
10206 (build-system r-build-system)
10207 (propagated-inputs
10208 `(("r-igraph" ,r-igraph)
10209 ("r-lattice" ,r-lattice)
10210 ("r-mass" ,r-mass)
10211 ("r-matrix" ,r-matrix)))
10212 (home-page "https://cran.r-project.org/web/packages/flare")
10213 (synopsis "Family of Lasso regression implementations")
10214 (description
10215 "This package provides implementations of a family of Lasso variants
10216 including Dantzig Selector, LAD Lasso, SQRT Lasso, Lq Lasso for estimating
10217 high dimensional sparse linear models.")
10218 (license license:gpl2)))
10219
10220 (define-public r-lassopv
10221 (package
10222 (name "r-lassopv")
10223 (version "0.2.0")
10224 (source
10225 (origin
10226 (method url-fetch)
10227 (uri (cran-uri "lassopv" version))
10228 (sha256
10229 (base32
10230 "0yawnjw063jypk3riy9xab9cmliv6c9dnabi18670khd3gzb2r9z"))))
10231 (build-system r-build-system)
10232 (propagated-inputs `(("r-lars" ,r-lars)))
10233 (home-page "https://github.com/lingfeiwang/lassopv")
10234 (synopsis "Non-parametric p-value estimation for predictors in Lasso")
10235 (description
10236 "This package enables you to estimate the p-values for predictors x
10237 against target variable y in Lasso regression, using the regularization
10238 strength when each predictor enters the active set of regularization path for
10239 the first time as the statistic.")
10240 (license license:gpl3)))
10241
10242 (define-public r-splitstackshape
10243 (package
10244 (name "r-splitstackshape")
10245 (version "1.4.8")
10246 (source
10247 (origin
10248 (method url-fetch)
10249 (uri (cran-uri "splitstackshape" version))
10250 (sha256
10251 (base32
10252 "0mpyf2kkfdl69pdc6brl1r6101vyc6pgr7z17s55ppg3y71k4q35"))))
10253 (build-system r-build-system)
10254 (propagated-inputs
10255 `(("r-data-table" ,r-data-table)))
10256 (home-page "https://github.com/mrdwab/splitstackshape")
10257 (synopsis "Stack and reshape datasets after splitting concatenated values")
10258 (description
10259 "Online data collection tools like Google Forms often export
10260 multiple-response questions with data concatenated in cells. The
10261 @code{concat.split} (cSplit) family of functions provided by this package
10262 splits such data into separate cells. This package also includes functions to
10263 stack groups of columns and to reshape wide data, even when the data are
10264 \"unbalanced\"---something which @code{reshape} (from base R) does not handle,
10265 and which @code{melt} and @code{dcast} from @code{reshape2} do not easily
10266 handle.")
10267 (license license:gpl3)))
10268
10269 (define-public r-tfmpvalue
10270 (package
10271 (name "r-tfmpvalue")
10272 (version "0.0.8")
10273 (source
10274 (origin
10275 (method url-fetch)
10276 (uri (cran-uri "TFMPvalue" version))
10277 (sha256
10278 (base32
10279 "0h9qkl15k8v17v3g9bdnfwvh2s04ywjgg5y0xn2077dmywlja1bd"))))
10280 (properties `((upstream-name . "TFMPvalue")))
10281 (build-system r-build-system)
10282 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
10283 (home-page "https://github.com/ge11232002/TFMPvalue")
10284 (synopsis "P-value computation for position weight matrices")
10285 (description
10286 "In putative @dfn{Transcription Factor Binding Sites} (TFBSs)
10287 identification from sequence/alignments, we are interested in the significance
10288 of certain match scores. TFMPvalue provides the accurate calculation of a
10289 p-value with a score threshold for position weight matrices, or the score with
10290 a given p-value. It is an interface to code originally made available by
10291 Helene Touzet and Jean-Stephane Varre, 2007, Algorithms Mol Biol:2, 15.
10292 Touzet and Varre (2007).")
10293 (license license:gpl2)))
10294
10295 (define-public r-rnifti
10296 (package
10297 (name "r-rnifti")
10298 (version "1.1.0")
10299 (source
10300 (origin
10301 (method url-fetch)
10302 (uri (cran-uri "RNifti" version))
10303 (sha256
10304 (base32
10305 "1z8ninp3aq18w0slcfn8r2fp48cdz8l0k0namsrnvgyp8lzcpqpn"))))
10306 (properties `((upstream-name . "RNifti")))
10307 (build-system r-build-system)
10308 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
10309 (home-page "https://github.com/jonclayden/RNifti")
10310 (synopsis "Fast R and C++ access to NIfTI images")
10311 (description
10312 "This package provides very fast read and write access to images stored
10313 in the NIfTI-1 and ANALYZE-7.5 formats, with seamless synchronisation between
10314 compiled C and interpreted R code. It also provides a C/C++ API that can be
10315 used by other packages.")
10316 (license license:gpl2)))
10317
10318 (define-public r-shades
10319 (package
10320 (name "r-shades")
10321 (version "1.4.0")
10322 (source
10323 (origin
10324 (method url-fetch)
10325 (uri (cran-uri "shades" version))
10326 (sha256
10327 (base32
10328 "1zg95sjhrfvbdlfc387g9p0vnb8nb6agdk1mb3wq3kwkm2da0bqj"))))
10329 (build-system r-build-system)
10330 (home-page "https://github.com/jonclayden/shades")
10331 (synopsis "Simple color manipulation")
10332 (description
10333 "This package provides functions for easily manipulating colors,
10334 creating color scales and calculating color distances.")
10335 (license license:bsd-3)))
10336
10337 (define-public r-ore
10338 (package
10339 (name "r-ore")
10340 (version "1.6.3")
10341 (source
10342 (origin
10343 (method url-fetch)
10344 (uri (cran-uri "ore" version))
10345 (sha256
10346 (base32 "1vh6w3arrhgkfjjjw7ci91xmz4wpfr3cmwd5zkqch89dgn07skkv"))))
10347 (build-system r-build-system)
10348 (home-page "https://github.com/jonclayden/ore")
10349 (synopsis "R interface to the Onigmo regular expression library")
10350 (description
10351 "This package provides an alternative to R's built-in functionality for
10352 handling regular expressions, based on the Onigmo library. It offers
10353 first-class compiled regex objects, partial matching and function-based
10354 substitutions, amongst other features.")
10355 (license license:bsd-3)))
10356
10357 (define-public r-reportr
10358 (package
10359 (name "r-reportr")
10360 (version "1.3.0")
10361 (source
10362 (origin
10363 (method url-fetch)
10364 (uri (cran-uri "reportr" version))
10365 (sha256
10366 (base32
10367 "0zynplxqvbmf23cm2rsz3wz2jx6mv55z94mn1k44ny3lx625cnpw"))))
10368 (build-system r-build-system)
10369 (propagated-inputs `(("r-ore" ,r-ore)))
10370 (home-page "https://github.com/jonclayden/reportr")
10371 (synopsis "General message and error reporting system")
10372 (description
10373 "This package provides a system for reporting messages, which offers
10374 certain useful features over the standard R system, such as the incorporation
10375 of output consolidation, message filtering, assertions, expression
10376 substitution, automatic generation of stack traces for debugging, and
10377 conditional reporting based on the current \"output level\".")
10378 (license license:gpl2)))
10379
10380 (define-public r-tractor-base
10381 (package
10382 (name "r-tractor-base")
10383 (version "3.3.2")
10384 (source
10385 (origin
10386 (method url-fetch)
10387 (uri (cran-uri "tractor.base" version))
10388 (sha256
10389 (base32
10390 "0y5gm0y4chl30f5qqq8qiiw4j8g32s4i9xrvyp3cwg902kf2p86i"))))
10391 (properties `((upstream-name . "tractor.base")))
10392 (build-system r-build-system)
10393 (propagated-inputs
10394 `(("r-ore" ,r-ore)
10395 ("r-reportr" ,r-reportr)
10396 ("r-rnifti" ,r-rnifti)
10397 ("r-shades" ,r-shades)))
10398 (home-page "https://www.tractor-mri.org.uk")
10399 (synopsis "Read, manipulate and visualize magnetic resonance images")
10400 (description
10401 "This package provides functions for working with magnetic resonance
10402 images. It supports reading and writing of popular file formats (DICOM,
10403 Analyze, NIfTI-1, NIfTI-2, MGH); interactive and non-interactive
10404 visualization; flexible image manipulation; metadata and sparse image
10405 handling.")
10406 (license license:gpl2)))
10407
10408 (define-public r-grimport
10409 (package
10410 (name "r-grimport")
10411 (version "0.9-3")
10412 (source
10413 (origin
10414 (method url-fetch)
10415 (uri (cran-uri "grImport" version))
10416 (sha256
10417 (base32
10418 "109mrdvq06xq3zgn9ngz0c7zzgqkv5zbpvsb2i636vmlk6y4dpkd"))))
10419 (properties `((upstream-name . "grImport")))
10420 (build-system r-build-system)
10421 (inputs
10422 `(("ghostscript" ,ghostscript)))
10423 (propagated-inputs
10424 `(("r-xml" ,r-xml)))
10425 (home-page "https://cran.r-project.org/web/packages/grImport")
10426 (synopsis "Convert, import, and draw PostScript pictures")
10427 (description
10428 "This package provides functions for converting, importing, and drawing
10429 PostScript pictures in R plots.")
10430 (license license:gpl2+)))
10431
10432 (define-public r-grimport2
10433 (package
10434 (name "r-grimport2")
10435 (version "0.2-0")
10436 (source
10437 (origin
10438 (method url-fetch)
10439 (uri (cran-uri "grImport2" version))
10440 (sha256
10441 (base32
10442 "19q0dd8fpp1g4xf6sg5f8dxybwxjfw553ra6wgjd8b74fzca40m1"))))
10443 (properties `((upstream-name . "grImport2")))
10444 (build-system r-build-system)
10445 (propagated-inputs
10446 `(("r-base64enc" ,r-base64enc)
10447 ("r-jpeg" ,r-jpeg)
10448 ("r-png" ,r-png)
10449 ("r-xml" ,r-xml)))
10450 (home-page "https://cran.r-project.org/web/packages/grImport2/")
10451 (synopsis "Import SVG graphics")
10452 (description
10453 "This package provides functions for importing external vector images and
10454 drawing them as part of R plots. This package is different from the
10455 @code{grImport} package because, where that package imports PostScript format
10456 images, this package imports SVG format images. Furthermore, this package
10457 imports a specific subset of SVG, so external images must be preprocessed
10458 using a package like @code{rsvg} to produce SVG that this package can import.
10459 SVG features that are not supported by R graphics, such as gradient fills, can
10460 be imported and then exported via the @code{gridSVG} package.")
10461 (license license:gpl2+)))
10462
10463 (define-public r-kohonen
10464 (package
10465 (name "r-kohonen")
10466 (version "3.0.10")
10467 (source
10468 (origin
10469 (method url-fetch)
10470 (uri (cran-uri "kohonen" version))
10471 (sha256
10472 (base32
10473 "1ck7j13x701g67bx81x7plszz804jfhl1yg42krcj9x88vm5cscr"))))
10474 (build-system r-build-system)
10475 (propagated-inputs
10476 `(("r-rcpp" ,r-rcpp)))
10477 (home-page "https://cran.r-project.org/web/packages/kohonen")
10478 (synopsis "Supervised and unsupervised self-organising maps")
10479 (description
10480 "This package provides functions to train @dfn{self-organising
10481 maps} (SOMs). Also interrogation of the maps and prediction using trained
10482 maps are supported. The name of the package refers to Teuvo Kohonen, the
10483 inventor of the SOM.")
10484 (license license:gpl2+)))
10485
10486 (define-public r-nnls
10487 (package
10488 (name "r-nnls")
10489 (version "1.4")
10490 (source
10491 (origin
10492 (method url-fetch)
10493 (uri (cran-uri "nnls" version))
10494 (sha256
10495 (base32
10496 "07vcrrxvswrvfiha6f3ikn640yg0m2b4yd9lkmim1g0jmsmpfp8f"))))
10497 (build-system r-build-system)
10498 (native-inputs `(("gfortran" ,gfortran)))
10499 (home-page "https://cran.r-project.org/web/packages/nnls")
10500 (synopsis "Lawson-Hanson algorithm for non-negative least squares")
10501 (description
10502 "This package provides an R interface to the Lawson-Hanson implementation
10503 of an algorithm for @dfn{non-negative least squares} (NNLS). It also allows
10504 the combination of non-negative and non-positive constraints.")
10505 (license license:gpl2+)))
10506
10507 (define-public r-iso
10508 (package
10509 (name "r-iso")
10510 (version "0.0-18")
10511 (source
10512 (origin
10513 (method url-fetch)
10514 (uri (cran-uri "Iso" version))
10515 (sha256
10516 (base32
10517 "014mm5b1f7i6nwlz3kyg1biph0y542kcx5bd13p68cv5a928qzid"))))
10518 (properties `((upstream-name . "Iso")))
10519 (build-system r-build-system)
10520 (native-inputs `(("gfortran" ,gfortran)))
10521 (home-page "https://www.stat.auckland.ac.nz/~rolf/")
10522 (synopsis "Functions to perform isotonic regression")
10523 (description
10524 "This package provides support for linear order and unimodal
10525 order (univariate) isotonic regression and bivariate isotonic regression with
10526 linear order on both variables.")
10527 (license license:gpl2+)))
10528
10529 (define-public r-chemometricswithr
10530 (package
10531 (name "r-chemometricswithr")
10532 (version "0.1.13")
10533 (source
10534 (origin
10535 (method url-fetch)
10536 (uri (cran-uri "ChemometricsWithR" version))
10537 (sha256
10538 (base32
10539 "166va1g3m1wv21qkmw4wpz0bsrclh3jih8smxphdc13l9pqgclpq"))))
10540 (properties
10541 `((upstream-name . "ChemometricsWithR")))
10542 (build-system r-build-system)
10543 (propagated-inputs
10544 `(("r-devtools" ,r-devtools)
10545 ("r-kohonen" ,r-kohonen)
10546 ("r-mass" ,r-mass)
10547 ("r-pls" ,r-pls)))
10548 (home-page "https://github.com/rwehrens/CWR")
10549 (synopsis "Chemometrics with R")
10550 (description
10551 "This package provides functions and scripts used in the book
10552 \"Chemometrics with R - Multivariate Data Analysis in the Natural Sciences and
10553 Life Sciences\" by Ron Wehrens, Springer (2011).")
10554 (license license:gpl2+)))
10555
10556 (define-public r-als
10557 (package
10558 (name "r-als")
10559 (version "0.0.6")
10560 (source
10561 (origin
10562 (method url-fetch)
10563 (uri (cran-uri "ALS" version))
10564 (sha256
10565 (base32
10566 "1swrn39vy50fazkpf97r7c542gkj6mlvy8gmcxllg7mf2mqx546a"))))
10567 (properties `((upstream-name . "ALS")))
10568 (build-system r-build-system)
10569 (propagated-inputs
10570 `(("r-iso" ,r-iso)
10571 ("r-nnls" ,r-nnls)))
10572 (home-page "https://cran.r-project.org/web/packages/ALS")
10573 (synopsis "Multivariate curve resolution alternating least squares")
10574 (description
10575 "Alternating least squares is often used to resolve components
10576 contributing to data with a bilinear structure; the basic technique may be
10577 extended to alternating constrained least squares. This package provides an
10578 implementation of @dfn{multivariate curve resolution alternating least
10579 squares} (MCR-ALS).
10580
10581 Commonly applied constraints include unimodality, non-negativity, and
10582 normalization of components. Several data matrices may be decomposed
10583 simultaneously by assuming that one of the two matrices in the bilinear
10584 decomposition is shared between datasets.")
10585 (license license:gpl2+)))
10586
10587 (define-public r-strucchange
10588 (package
10589 (name "r-strucchange")
10590 (version "1.5-2")
10591 (source
10592 (origin
10593 (method url-fetch)
10594 (uri (cran-uri "strucchange" version))
10595 (sha256
10596 (base32
10597 "1y022363a4pp0mnji91sjh1qiyspkh09sybqwj03r9pmwrd7q93x"))))
10598 (build-system r-build-system)
10599 (propagated-inputs
10600 `(("r-sandwich" ,r-sandwich)
10601 ("r-zoo" ,r-zoo)))
10602 (home-page "https://cran.r-project.org/web/packages/strucchange")
10603 (synopsis "Testing, monitoring, and dating structural changes")
10604 (description
10605 "This package provides tools for testing, monitoring and dating
10606 structural changes in (linear) regression models. It features tests/methods
10607 from the generalized fluctuation test framework as well as from the F
10608 test (Chow test) framework. This includes methods to fit, plot and test
10609 fluctuation processes (e.g., CUSUM, MOSUM, recursive/moving estimates) and F
10610 statistics, respectively. It is possible to monitor incoming data online
10611 using fluctuation processes. Finally, the breakpoints in regression models
10612 with structural changes can be estimated together with confidence intervals.
10613 Emphasis is always given to methods for visualizing the data.")
10614 ;; Either of these two GPL versions
10615 (license (list license:gpl2 license:gpl3))))
10616
10617 (define-public r-pixmap
10618 (package
10619 (name "r-pixmap")
10620 (version "0.4-11")
10621 (source
10622 (origin
10623 (method url-fetch)
10624 (uri (cran-uri "pixmap" version))
10625 (sha256
10626 (base32
10627 "04klxp6jndw1bp6z40v20fbmdmdpfca2g0czmmmgbkark9s1183g"))))
10628 (build-system r-build-system)
10629 (home-page "https://cran.r-project.org/web/packages/pixmap")
10630 (synopsis "Tools for bitmap images")
10631 (description
10632 "This package provides functions for importing, exporting, plotting and
10633 other manipulations of bitmapped images.")
10634 (license license:gpl2)))
10635
10636 (define-public r-rapidjsonr
10637 (package
10638 (name "r-rapidjsonr")
10639 (version "1.2.0")
10640 (source
10641 (origin
10642 (method url-fetch)
10643 (uri (cran-uri "rapidjsonr" version))
10644 (sha256
10645 (base32
10646 "07zdirhbzmvq3cp4xn8ngk1lgxbbabzays315zxbs3sxrz6lzjb2"))))
10647 (build-system r-build-system)
10648 (home-page "https://cran.r-project.org/web/packages/rapidjsonr")
10649 (synopsis "JSON parser")
10650 (description
10651 "This package provides JSON parsing capability through the Rapidjson
10652 library.")
10653 (license license:expat)))
10654
10655 (define-public r-ontologyindex
10656 (package
10657 (name "r-ontologyindex")
10658 (version "2.5")
10659 (source
10660 (origin
10661 (method url-fetch)
10662 (uri (cran-uri "ontologyIndex" version))
10663 (sha256
10664 (base32
10665 "127hlf0z5fmbgnq4p9h8nvn6p72d2fpcn846zzb99s213421jnry"))))
10666 (properties `((upstream-name . "ontologyIndex")))
10667 (build-system r-build-system)
10668 (home-page "https://cran.r-project.org/web/packages/ontologyIndex")
10669 (synopsis "Functions for processing ontologies in R")
10670 (description
10671 "This package provides functions for reading ontologies into R as lists
10672 and manipulating sets of ontological terms.")
10673 (license license:gpl2+)))
10674
10675 (define-public r-gargle
10676 (package
10677 (name "r-gargle")
10678 (version "0.4.0")
10679 (source
10680 (origin
10681 (method url-fetch)
10682 (uri (cran-uri "gargle" version))
10683 (sha256
10684 (base32
10685 "08zhfk2sl342w35i5n2c93ayypg3z0kbl0020l3y9adqka1vazgx"))))
10686 (build-system r-build-system)
10687 (propagated-inputs
10688 `(("r-fs" ,r-fs)
10689 ("r-glue" ,r-glue)
10690 ("r-httr" ,r-httr)
10691 ("r-jsonlite" ,r-jsonlite)
10692 ("r-rlang" ,r-rlang)
10693 ("r-withr" ,r-withr)))
10694 (home-page "https://gargle.r-lib.org")
10695 (synopsis "Utilities for working with Google APIs")
10696 (description
10697 "This package provides utilities for working with Google APIs. This
10698 includes functions and classes for handling common credential types and for
10699 preparing, executing, and processing HTTP requests.")
10700 (license license:expat)))
10701
10702 (define-public r-bigrquery
10703 (package
10704 (name "r-bigrquery")
10705 (version "1.2.0")
10706 (source
10707 (origin
10708 (method url-fetch)
10709 (uri (cran-uri "bigrquery" version))
10710 (sha256
10711 (base32
10712 "1ggh2gngr5x0g6y7d55y6kvn94anf7qi1bkc28cjmw61hxjq38fb"))))
10713 (build-system r-build-system)
10714 (propagated-inputs
10715 `(("r-assertthat" ,r-assertthat)
10716 ("r-bit64" ,r-bit64)
10717 ("r-curl" ,r-curl)
10718 ("r-dbi" ,r-dbi)
10719 ("r-gargle" ,r-gargle)
10720 ("r-glue" ,r-glue)
10721 ("r-httr" ,r-httr)
10722 ("r-jsonlite" ,r-jsonlite)
10723 ("r-prettyunits" ,r-prettyunits)
10724 ("r-progress" ,r-progress)
10725 ("r-rapidjsonr" ,r-rapidjsonr)
10726 ("r-rcpp" ,r-rcpp)
10727 ("r-rlang" ,r-rlang)
10728 ("r-tibble" ,r-tibble)))
10729 (home-page "https://github.com/rstats-db/bigrquery")
10730 (synopsis "R interface to Google's BigQuery API")
10731 (description
10732 "This package provides an R interface to Google's BigQuery database.")
10733 (license license:gpl3)))
10734
10735 (define-public r-gmp
10736 (package
10737 (name "r-gmp")
10738 (version "0.5-13.6")
10739 (source
10740 (origin
10741 (method url-fetch)
10742 (uri (cran-uri "gmp" version))
10743 (sha256
10744 (base32
10745 "0j2sz2nw41y9306rl1b8hbn0spz7453z5iawcq0bvslyrhc1d9ir"))))
10746 (build-system r-build-system)
10747 (arguments
10748 '(#:phases
10749 (modify-phases %standard-phases
10750 (add-after 'unpack 'set-CC
10751 (lambda _ (setenv "CC" "gcc") #t)))))
10752 (inputs `(("gmp" ,gmp)))
10753 (home-page "https://cran.r-project.org/web/packages/gmp")
10754 (synopsis "Multiple precision arithmetic")
10755 (description
10756 "This package supports multiple precision arithmetic (big integers and
10757 rationals, prime number tests, matrix computation), \"arithmetic without
10758 limitations\" using the GNU Multiple Precision library.")
10759 ;; Any version of the GPL.
10760 (license license:gpl3+)))
10761
10762 (define-public r-rmpfr
10763 (package
10764 (name "r-rmpfr")
10765 (version "0.8-1")
10766 (source
10767 (origin
10768 (method url-fetch)
10769 (uri (cran-uri "Rmpfr" version))
10770 (sha256
10771 (base32
10772 "09kw7hyca8xc09r2d88qj81cclar8acaq5q9q5rw9f49iffda0rr"))))
10773 (properties `((upstream-name . "Rmpfr")))
10774 (build-system r-build-system)
10775 (inputs
10776 `(("mpfr" ,mpfr)
10777 ("gmp" ,gmp)))
10778 (propagated-inputs
10779 `(("r-gmp" ,r-gmp)))
10780 (native-inputs
10781 `(("pkg-config" ,pkg-config)))
10782 (home-page "http://rmpfr.r-forge.r-project.org/")
10783 (synopsis "R bindings to the MPFR library")
10784 (description
10785 "This package supports arithmetic (via S4 classes and methods) for
10786 arbitrary precision floating point numbers, including transcendental
10787 functions. To this end, the package interfaces with the @dfn{Multiple
10788 Precision Floating-Point Reliable} (MPFR) library.")
10789 (license license:gpl2+)))
10790
10791 (define-public r-assertive-base
10792 (package
10793 (name "r-assertive-base")
10794 (version "0.0-7")
10795 (source
10796 (origin
10797 (method url-fetch)
10798 (uri (cran-uri "assertive.base" version))
10799 (sha256
10800 (base32
10801 "1xs3ysvj0z57c58jw57pckq2rynia6ks4rmjmc02alczhk54wbgh"))))
10802 (properties
10803 `((upstream-name . "assertive.base")))
10804 (build-system r-build-system)
10805 (home-page "https://bitbucket.org/richierocks/assertive.base")
10806 (synopsis "Core of the assertive package")
10807 (description
10808 "This package provides a minimal set of predicates and assertions used by
10809 the assertive package. This is mainly for use by other package developers who
10810 want to include run-time testing features in their own packages.")
10811 (license license:gpl3+)))
10812
10813 (define-public r-assertive-properties
10814 (package
10815 (name "r-assertive-properties")
10816 (version "0.0-4")
10817 (source
10818 (origin
10819 (method url-fetch)
10820 (uri (cran-uri "assertive.properties" version))
10821 (sha256
10822 (base32
10823 "0sqs54acs9qk9kvm32rxzfbzxz1l8mjahpfnw7r30z2brgz661jw"))))
10824 (properties
10825 `((upstream-name . "assertive.properties")))
10826 (build-system r-build-system)
10827 (propagated-inputs
10828 `(("r-assertive-base" ,r-assertive-base)))
10829 (home-page "https://bitbucket.org/richierocks/assertive.properties")
10830 (synopsis "Assertions to check properties of variables")
10831 (description
10832 "This package provides a set of predicates and assertions for checking
10833 the properties of variables, such as length, names and attributes. This is
10834 mainly for use by other package developers who want to include run-time
10835 testing features in their own packages.")
10836 (license license:gpl3+)))
10837
10838 (define-public r-assertive-numbers
10839 (package
10840 (name "r-assertive-numbers")
10841 (version "0.0-2")
10842 (source
10843 (origin
10844 (method url-fetch)
10845 (uri (cran-uri "assertive.numbers" version))
10846 (sha256
10847 (base32
10848 "0jc3ss64j4m7bjydhagwwmka5n7c72vpw4kfcch0m5jvkq5qrqds"))))
10849 (properties
10850 `((upstream-name . "assertive.numbers")))
10851 (build-system r-build-system)
10852 (propagated-inputs
10853 `(("r-assertive-base" ,r-assertive-base)))
10854 (home-page "https://bitbucket.org/richierocks/assertive.numbers")
10855 (synopsis "Assertions to check properties of numbers")
10856 (description
10857 "This package provides a set of predicates and assertions for checking
10858 the properties of numbers. This is mainly for use by other package developers
10859 who want to include run-time testing features in their own packages.")
10860 (license license:gpl3+)))
10861
10862 (define-public r-assertive-sets
10863 (package
10864 (name "r-assertive-sets")
10865 (version "0.0-3")
10866 (source
10867 (origin
10868 (method url-fetch)
10869 (uri (cran-uri "assertive.sets" version))
10870 (sha256
10871 (base32
10872 "1cqvh2syvh5b6d85h601zjmsdbbf3h8q98ids4dfl4frdshpasc7"))))
10873 (properties
10874 `((upstream-name . "assertive.sets")))
10875 (build-system r-build-system)
10876 (propagated-inputs
10877 `(("r-assertive-base" ,r-assertive-base)))
10878 (home-page "https://bitbucket.org/richierocks/assertive.sets")
10879 (synopsis "Assertions to check properties of sets")
10880 (description
10881 "This package provides a set of predicates and assertions for checking
10882 the properties of sets. This is mainly for use by other package developers
10883 who want to include run-time testing features in their own packages.")
10884 (license license:gpl3+)))
10885
10886 (define-public r-assertive-matrices
10887 (package
10888 (name "r-assertive-matrices")
10889 (version "0.0-2")
10890 (source
10891 (origin
10892 (method url-fetch)
10893 (uri (cran-uri "assertive.matrices" version))
10894 (sha256
10895 (base32
10896 "16sykzcndv6y2d43x6v9n7m95kv76364h39kh10w4z0xw6ksfqil"))))
10897 (properties
10898 `((upstream-name . "assertive.matrices")))
10899 (build-system r-build-system)
10900 (propagated-inputs
10901 `(("r-assertive-base" ,r-assertive-base)))
10902 (home-page "https://bitbucket.org/richierocks/assertive.matrices")
10903 (synopsis "Assertions to check properties of matrices")
10904 (description
10905 "This package provides a set of predicates and assertions for checking
10906 the properties of matrices. This is mainly for use by other package
10907 developers who want to include run-time testing features in their own
10908 packages.")
10909 (license license:gpl3+)))
10910
10911 (define-public r-assertive-models
10912 (package
10913 (name "r-assertive-models")
10914 (version "0.0-2")
10915 (source
10916 (origin
10917 (method url-fetch)
10918 (uri (cran-uri "assertive.models" version))
10919 (sha256
10920 (base32
10921 "0bn4j4v5qvb2d672cgri61p8d9v258pmz35y3lvm6b9mdxwdi9mr"))))
10922 (properties
10923 `((upstream-name . "assertive.models")))
10924 (build-system r-build-system)
10925 (propagated-inputs
10926 `(("r-assertive-base" ,r-assertive-base)))
10927 (home-page "https://bitbucket.org/richierocks/assertive.models")
10928 (synopsis "Assertions to check properties of models")
10929 (description
10930 "This package provides a set of predicates and assertions for checking
10931 the properties of models. This is mainly for use by other package developers
10932 who want to include run-time testing features in their own packages.")
10933 (license license:gpl3+)))
10934
10935 (define-public r-assertive-reflection
10936 (package
10937 (name "r-assertive-reflection")
10938 (version "0.0-4")
10939 (source
10940 (origin
10941 (method url-fetch)
10942 (uri (cran-uri "assertive.reflection" version))
10943 (sha256
10944 (base32
10945 "19zmsbn00crfqm0kwd9ys5gv87xs3gi6wmlikrz9xiwzm7hp4dhj"))))
10946 (properties
10947 `((upstream-name . "assertive.reflection")))
10948 (build-system r-build-system)
10949 (propagated-inputs
10950 `(("r-assertive-base" ,r-assertive-base)))
10951 (home-page "https://bitbucket.org/richierocks/assertive.reflection")
10952 (synopsis "Assertions for checking the state of R")
10953 (description
10954 "This package provides a set of predicates and assertions for checking
10955 the state and capabilities of R, the operating system it is running on, and
10956 the IDE being used. This is mainly for use by other package developers who
10957 want to include run-time testing features in their own packages.")
10958 (license license:gpl3+)))
10959
10960 (define-public r-assertive-types
10961 (package
10962 (name "r-assertive-types")
10963 (version "0.0-3")
10964 (source
10965 (origin
10966 (method url-fetch)
10967 (uri (cran-uri "assertive.types" version))
10968 (sha256
10969 (base32
10970 "0zxq1jfrzgw95ll7alvm0xnk7aihjdksngq4ya2whyvfjbmv4vdb"))))
10971 (properties
10972 `((upstream-name . "assertive.types")))
10973 (build-system r-build-system)
10974 (propagated-inputs
10975 `(("r-assertive-base" ,r-assertive-base)
10976 ("r-assertive-properties" ,r-assertive-properties)
10977 ("r-codetools" ,r-codetools)))
10978 (home-page "https://bitbucket.org/richierocks/assertive.types")
10979 (synopsis "Assertions to check types of variables")
10980 (description
10981 "This package provides a set of predicates and assertions for checking
10982 the types of variables. This is mainly for use by other package developers
10983 who want to include run-time testing features in their own packages.")
10984 (license license:gpl3+)))
10985
10986 (define-public r-assertive-files
10987 (package
10988 (name "r-assertive-files")
10989 (version "0.0-2")
10990 (source
10991 (origin
10992 (method url-fetch)
10993 (uri (cran-uri "assertive.files" version))
10994 (sha256
10995 (base32
10996 "02pfz8j5vwcj5kl6zca46894li7lxwnlrr29j922f14ay6kdssmy"))))
10997 (properties
10998 `((upstream-name . "assertive.files")))
10999 (build-system r-build-system)
11000 (propagated-inputs
11001 `(("r-assertive-base" ,r-assertive-base)
11002 ("r-assertive-numbers" ,r-assertive-numbers)))
11003 (home-page "https://bitbucket.org/richierocks/assertive.files")
11004 (synopsis "Assertions to check properties of files")
11005 (description
11006 "This package provides a set of predicates and assertions for checking
11007 the properties of files and connections. This is mainly for use by other
11008 package developers who want to include run-time testing features in their own
11009 packages.")
11010 (license license:gpl3+)))
11011
11012 (define-public r-assertive-code
11013 (package
11014 (name "r-assertive-code")
11015 (version "0.0-3")
11016 (source
11017 (origin
11018 (method url-fetch)
11019 (uri (cran-uri "assertive.code" version))
11020 (sha256
11021 (base32
11022 "1qhbp668zfvhqs8avkhg9amp4zyazz6dsy4fc6kpdmw3sv8yi07g"))))
11023 (properties
11024 `((upstream-name . "assertive.code")))
11025 (build-system r-build-system)
11026 (propagated-inputs
11027 `(("r-assertive-base" ,r-assertive-base)
11028 ("r-assertive-properties" ,r-assertive-properties)
11029 ("r-assertive-types" ,r-assertive-types)))
11030 (home-page "https://bitbucket.org/richierocks/assertive.code")
11031 (synopsis "Assertions to check properties of code")
11032 (description
11033 "This package provides a set of predicates and assertions for checking
11034 the properties of code. This is mainly for use by other package developers
11035 who want to include run-time testing features in their own packages.")
11036 (license license:gpl3+)))
11037
11038 (define-public r-assertive-datetimes
11039 (package
11040 (name "r-assertive-datetimes")
11041 (version "0.0-2")
11042 (source
11043 (origin
11044 (method url-fetch)
11045 (uri (cran-uri "assertive.datetimes" version))
11046 (sha256
11047 (base32
11048 "00a98fx8p3pr3ckayh8wmxmm4rz01s67wah9697m92yci6pv3m78"))))
11049 (properties
11050 `((upstream-name . "assertive.datetimes")))
11051 (build-system r-build-system)
11052 (propagated-inputs
11053 `(("r-assertive-base" ,r-assertive-base)
11054 ("r-assertive-types" ,r-assertive-types)))
11055 (home-page "https://bitbucket.org/richierocks/assertive.datetimes")
11056 (synopsis "Assertions to check properties of dates and times")
11057 (description
11058 "This package provides a set of predicates and assertions for checking
11059 the properties of dates and times. This is mainly for use by other package
11060 developers who want to include run-time testing features in their own
11061 packages.")
11062 (license license:gpl3+)))
11063
11064 (define-public r-assertive-strings
11065 (package
11066 (name "r-assertive-strings")
11067 (version "0.0-3")
11068 (source
11069 (origin
11070 (method url-fetch)
11071 (uri (cran-uri "assertive.strings" version))
11072 (sha256
11073 (base32
11074 "0n6jrk88670g4ym0r8ii40a08a90z1xadj8wcryk8h0nl04dchfm"))))
11075 (properties
11076 `((upstream-name . "assertive.strings")))
11077 (build-system r-build-system)
11078 (propagated-inputs
11079 `(("r-assertive-base" ,r-assertive-base)
11080 ("r-assertive-types" ,r-assertive-types)
11081 ("r-stringi" ,r-stringi)))
11082 (home-page "https://bitbucket.org/richierocks/assertive.strings")
11083 (synopsis "Assertions to check properties of strings")
11084 (description
11085 "This package provides a set of predicates and assertions for checking
11086 the properties of strings. This is mainly for use by other package developers
11087 who want to include run-time testing features in their own packages.")
11088 (license license:gpl3+)))
11089
11090 (define-public r-assertive-data-us
11091 (package
11092 (name "r-assertive-data-us")
11093 (version "0.0-2")
11094 (source
11095 (origin
11096 (method url-fetch)
11097 (uri (cran-uri "assertive.data.us" version))
11098 (sha256
11099 (base32
11100 "1bgspn0sccmp9z7s7djvdvprgxlyc5vrxznp4zfjb79kwvgn83hq"))))
11101 (properties
11102 `((upstream-name . "assertive.data.us")))
11103 (build-system r-build-system)
11104 (propagated-inputs
11105 `(("r-assertive-base" ,r-assertive-base)
11106 ("r-assertive-strings" ,r-assertive-strings)))
11107 (home-page "https://bitbucket.org/richierocks/assertive.data.us")
11108 (synopsis "Assertions to check properties of strings")
11109 (description
11110 "This package provides a set of predicates and assertions for checking
11111 the properties of US-specific complex data types. This is mainly for use by
11112 other package developers who want to include run-time testing features in
11113 their own packages.")
11114 (license license:gpl3+)))
11115
11116 (define-public r-assertive-data-uk
11117 (package
11118 (name "r-assertive-data-uk")
11119 (version "0.0-2")
11120 (source
11121 (origin
11122 (method url-fetch)
11123 (uri (cran-uri "assertive.data.uk" version))
11124 (sha256
11125 (base32
11126 "1fzjvhwp7mwkqqix29khvs6zcrc82n6j4czvzzb473vyjyvdlj5b"))))
11127 (properties
11128 `((upstream-name . "assertive.data.uk")))
11129 (build-system r-build-system)
11130 (propagated-inputs
11131 `(("r-assertive-base" ,r-assertive-base)
11132 ("r-assertive-strings" ,r-assertive-strings)))
11133 (home-page "https://bitbucket.org/richierocks/assertive.data.uk")
11134 (synopsis "Assertions to check properties of strings")
11135 (description
11136 "This package provides a set of predicates and assertions for checking
11137 the properties of UK-specific complex data types. This is mainly for use by
11138 other package developers who want to include run-time testing features in
11139 their own packages.")
11140 (license license:gpl3+)))
11141
11142 (define-public r-assertive-data
11143 (package
11144 (name "r-assertive-data")
11145 (version "0.0-3")
11146 (source
11147 (origin
11148 (method url-fetch)
11149 (uri (cran-uri "assertive.data" version))
11150 (sha256
11151 (base32
11152 "00cvg2g36mdl8plrzx40m63qd55742mddqrchwy9n3c7mm4gn02s"))))
11153 (properties
11154 `((upstream-name . "assertive.data")))
11155 (build-system r-build-system)
11156 (propagated-inputs
11157 `(("r-assertive-base" ,r-assertive-base)
11158 ("r-assertive-strings" ,r-assertive-strings)))
11159 (home-page "https://bitbucket.org/richierocks/assertive.data")
11160 (synopsis "Assertions to check properties of data")
11161 (description
11162 "This package provides a set of predicates and assertions for checking
11163 the properties of (country independent) complex data types. This is mainly
11164 for use by other package developers who want to include run-time testing
11165 features in their own packages.")
11166 (license license:gpl3+)))
11167
11168 (define-public r-assertive
11169 (package
11170 (name "r-assertive")
11171 (version "0.3-5")
11172 (source
11173 (origin
11174 (method url-fetch)
11175 (uri (cran-uri "assertive" version))
11176 (sha256
11177 (base32
11178 "0blbbhlxcb5ffdxqxi62xs33ljiawh6s22a0pyvbbh79jf46rzr3"))))
11179 (build-system r-build-system)
11180 (propagated-inputs
11181 `(("r-assertive-base" ,r-assertive-base)
11182 ("r-assertive-code" ,r-assertive-code)
11183 ("r-assertive-data" ,r-assertive-data)
11184 ("r-assertive-data-uk" ,r-assertive-data-uk)
11185 ("r-assertive-data-us" ,r-assertive-data-us)
11186 ("r-assertive-datetimes" ,r-assertive-datetimes)
11187 ("r-assertive-files" ,r-assertive-files)
11188 ("r-assertive-matrices" ,r-assertive-matrices)
11189 ("r-assertive-models" ,r-assertive-models)
11190 ("r-assertive-numbers" ,r-assertive-numbers)
11191 ("r-assertive-properties" ,r-assertive-properties)
11192 ("r-assertive-reflection" ,r-assertive-reflection)
11193 ("r-assertive-sets" ,r-assertive-sets)
11194 ("r-assertive-strings" ,r-assertive-strings)
11195 ("r-assertive-types" ,r-assertive-types)
11196 ("r-knitr" ,r-knitr)))
11197 (home-page "https://bitbucket.org/richierocks/assertive")
11198 (synopsis "Readable check functions to ensure code integrity")
11199 (description
11200 "This package provides lots of predicates (@code{is_*} functions) to
11201 check the state of your variables, and assertions (@code{assert_*} functions)
11202 to throw errors if they aren't in the right form.")
11203 (license license:gpl3+)))
11204
11205 (define-public r-dotcall64
11206 (package
11207 (name "r-dotcall64")
11208 (version "1.0-0")
11209 (source
11210 (origin
11211 (method url-fetch)
11212 (uri (cran-uri "dotCall64" version))
11213 (sha256
11214 (base32
11215 "1b8p7m3w0m7bp977c6jz74xkd611cxg11j49yza59k5fp338scb9"))))
11216 (properties `((upstream-name . "dotCall64")))
11217 (build-system r-build-system)
11218 (native-inputs `(("gfortran" ,gfortran)))
11219 (home-page "https://git.math.uzh.ch/reinhard.furrer/dotCall64")
11220 (synopsis "Enhanced foreign function interface supporting long vectors")
11221 (description
11222 "This package provides @code{.C64()}, an enhanced version of @code{.C()}
11223 and @code{.Fortran()} from the R foreign function interface. @code{.C64()}
11224 supports long vectors, arguments of type 64-bit integer, and provides a
11225 mechanism to avoid unnecessary copies of read-only and write-only arguments.
11226 This makes it a convenient and fast interface to C/C++ and Fortran code.")
11227 (license license:gpl2+)))
11228
11229 (define-public r-spam
11230 (package
11231 (name "r-spam")
11232 (version "2.5-1")
11233 (source
11234 (origin
11235 (method url-fetch)
11236 (uri (cran-uri "spam" version))
11237 (sha256
11238 (base32 "0ry0a76cljlmilrzcriiizcidxyhq1i7i9bqhvl1qda81ld8hifi"))))
11239 (build-system r-build-system)
11240 (propagated-inputs
11241 `(("r-dotcall64" ,r-dotcall64)))
11242 (native-inputs `(("gfortran" ,gfortran)))
11243 (home-page "https://www.math.uzh.ch/pages/spam/")
11244 (synopsis "Sparse matrix algebra")
11245 (description
11246 "This package provides a set of functions for sparse matrix algebra.
11247 Differences with other sparse matrix packages are:
11248
11249 @enumerate
11250 @item it only supports (essentially) one sparse matrix format;
11251 @item it is based on transparent and simple structure(s);
11252 @item it is tailored for MCMC calculations within G(M)RF;
11253 @item and it is fast and scalable (with the extension package @code{spam64}).
11254 @end enumerate\n")
11255 ;; Either of these licenses
11256 (license (list license:bsd-3 license:lgpl2.0))))
11257
11258 (define-public r-fields
11259 (package
11260 (name "r-fields")
11261 (version "10.3")
11262 (source
11263 (origin
11264 (method url-fetch)
11265 (uri (cran-uri "fields" version))
11266 (sha256
11267 (base32 "12k97vfjlz5h8vynirnvik1nyj1iw25n8xl7awmx9mpd6wvgy2s9"))))
11268 (build-system r-build-system)
11269 (propagated-inputs
11270 `(("r-maps" ,r-maps)
11271 ("r-spam" ,r-spam)))
11272 (native-inputs
11273 `(("gfortran" ,gfortran)))
11274 (home-page "https://www.image.ucar.edu/fields")
11275 (synopsis "Tools for spatial data")
11276 (description
11277 "This is a package for curve, surface and function fitting with an
11278 emphasis on splines, spatial data and spatial statistics. The major methods
11279 include cubic, and thin plate splines, Kriging, and compactly supported
11280 covariance functions for large data sets.")
11281 (license license:gpl2+)))
11282
11283 (define-public r-spatialextremes
11284 (package
11285 (name "r-spatialextremes")
11286 (version "2.0-8")
11287 (source
11288 (origin
11289 (method url-fetch)
11290 (uri (cran-uri "SpatialExtremes" version))
11291 (sha256
11292 (base32
11293 "0r2byz5xxc46zqnigdax28q7446ibmzmsmi10lmm2hdks3ml6sl3"))))
11294 (properties
11295 `((upstream-name . "SpatialExtremes")))
11296 (build-system r-build-system)
11297 (propagated-inputs
11298 `(("r-fields" ,r-fields)
11299 ("r-maps" ,r-maps)))
11300 (home-page "http://spatialextremes.r-forge.r-project.org/")
11301 (synopsis "Modelling spatial extremes")
11302 (description
11303 "This package provides tools for the statistical modelling of spatial
11304 extremes using max-stable processes, copula or Bayesian hierarchical models.
11305 More precisely, this package allows (conditional) simulations from various
11306 parametric max-stable models, analysis of the extremal spatial dependence, the
11307 fitting of such processes using composite likelihoods or least square (simple
11308 max-stable processes only), model checking and selection and prediction.")
11309 (license license:gpl2+)))
11310
11311 (define-public r-drc
11312 (package
11313 (name "r-drc")
11314 (version "3.0-1")
11315 (source
11316 (origin
11317 (method url-fetch)
11318 (uri (cran-uri "drc" version))
11319 (sha256
11320 (base32
11321 "0c8xn8ripzq270hy8d16fcnx02l02alddznd7fqwk3jyi6113h1y"))))
11322 (build-system r-build-system)
11323 (propagated-inputs
11324 `(("r-car" ,r-car)
11325 ("r-gtools" ,r-gtools)
11326 ("r-mass" ,r-mass)
11327 ("r-multcomp" ,r-multcomp)
11328 ("r-plotrix" ,r-plotrix)
11329 ("r-scales" ,r-scales)))
11330 (home-page "https://cran.r-project.org/web/packages/drc")
11331 (synopsis "Analysis of dose-response curves")
11332 (description
11333 "This package provides a suite of flexible and versatile model fitting
11334 and after-fitting functions for the analysis of dose-response data.")
11335 (license license:gpl2+)))
11336
11337 (define-public r-rmeta
11338 (package
11339 (name "r-rmeta")
11340 (version "3.0")
11341 (source
11342 (origin
11343 (method url-fetch)
11344 (uri (cran-uri "rmeta" version))
11345 (sha256
11346 (base32
11347 "0vkbnxp579v8zmcv1isdbzj5swpr6fq17zwparxcvzswjc2x9ydr"))))
11348 (build-system r-build-system)
11349 (home-page "https://cran.r-project.org/web/packages/rmeta")
11350 (synopsis "Tools for meta-analysis")
11351 (description
11352 "This package provides functions for simple fixed and random effects
11353 meta-analysis for two-sample comparisons and cumulative meta-analyses. It
11354 draws standard summary plots, funnel plots, and computes summaries and tests
11355 for association and heterogeneity.")
11356 (license license:gpl2)))
11357
11358 (define-public r-bootstrap
11359 (package
11360 (name "r-bootstrap")
11361 (version "2019.6")
11362 (source
11363 (origin
11364 (method url-fetch)
11365 (uri (cran-uri "bootstrap" version))
11366 (sha256
11367 (base32
11368 "1546jqhhw5h177ii8jkdikyd26rv6gwkav816np1zks4p7zgsljj"))))
11369 (build-system r-build-system)
11370 (native-inputs `(("gfortran" ,gfortran)))
11371 (home-page "https://cran.r-project.org/web/packages/bootstrap")
11372 (synopsis "Functions for the book \"An Introduction to the Bootstrap\"")
11373 (description
11374 "This package provides software and data for the book \"An Introduction
11375 to the Bootstrap\" by B. Efron and R. Tibshirani, 1993, Chapman and Hall.
11376 This package is primarily provided for projects already based on it, and for
11377 support of the book. New projects should preferentially use the recommended
11378 package \"boot\".")
11379 (license license:bsd-3)))
11380
11381 (define-public r-survivalroc
11382 (package
11383 (name "r-survivalroc")
11384 (version "1.0.3")
11385 (source
11386 (origin
11387 (method url-fetch)
11388 (uri (cran-uri "survivalROC" version))
11389 (sha256
11390 (base32
11391 "0wnd65ff5w679hxa1zrpfrx9qg47q21pjxppsga6m3h4iq1yfj8l"))))
11392 (properties `((upstream-name . "survivalROC")))
11393 (build-system r-build-system)
11394 (home-page "https://cran.r-project.org/web/packages/survivalROC")
11395 (synopsis "Time-dependent ROC curve estimation from censored survival data")
11396 (description
11397 "Compute time-dependent ROC curve from censored survival data using
11398 Kaplan-Meier (KM) or Nearest Neighbor Estimation (NNE) method of Heagerty,
11399 Lumley & Pepe (Biometrics, Vol 56 No 2, 2000, PP 337-344)")
11400 (license license:gpl2+)))
11401
11402 (define-public r-longitudinal
11403 (package
11404 (name "r-longitudinal")
11405 (version "1.1.12")
11406 (source
11407 (origin
11408 (method url-fetch)
11409 (uri (cran-uri "longitudinal" version))
11410 (sha256
11411 (base32
11412 "1d83ws28nxi3kw5lgd5n5y7865djq7ky72fw3ddi1fkkhg1r9y6l"))))
11413 (build-system r-build-system)
11414 (propagated-inputs `(("r-corpcor" ,r-corpcor)))
11415 (home-page "http://strimmerlab.org/software/longitudinal/")
11416 (synopsis "Analysis of multiple time course data")
11417 (description
11418 "This package contains general data structures and functions for
11419 longitudinal data with multiple variables, repeated measurements, and
11420 irregularly spaced time points. It also implements a shrinkage estimator of
11421 dynamical correlation and dynamical covariance.")
11422 (license license:gpl3+)))
11423
11424 (define-public r-genenet
11425 (package
11426 (name "r-genenet")
11427 (version "1.2.14")
11428 (source
11429 (origin
11430 (method url-fetch)
11431 (uri (cran-uri "GeneNet" version))
11432 (sha256
11433 (base32
11434 "0cdhrj15rz0w0pyw3r8mikrzsdh95y5i1c0pa3cn0c2bjnjx3x3n"))))
11435 (properties `((upstream-name . "GeneNet")))
11436 (build-system r-build-system)
11437 (propagated-inputs
11438 `(("r-corpcor" ,r-corpcor)
11439 ("r-fdrtool" ,r-fdrtool)
11440 ("r-longitudinal" ,r-longitudinal)))
11441 (home-page "http://strimmerlab.org/software/genenet/")
11442 (synopsis "Modeling and inferring gene networks")
11443 (description
11444 "This package analyzes gene expression (time series) data with focus on
11445 the inference of gene networks. In particular, GeneNet implements the methods
11446 of Schaefer and Strimmer (2005a,b,c) and Opgen-Rhein and Strimmer (2006, 2007)
11447 for learning large-scale gene association networks (including assignment of
11448 putative directions).")
11449 (license license:gpl3+)))
11450
11451 (define-public r-rbamtools
11452 (package
11453 (name "r-rbamtools")
11454 (version "2.16.17")
11455 (source
11456 (origin
11457 (method url-fetch)
11458 (uri (cran-uri "rbamtools" version))
11459 (sha256
11460 (base32
11461 "0qj37ljdva3v29s01dkrbg31mcfzy3bl145cp40d54v4h9xhcghc"))))
11462 (build-system r-build-system)
11463 (inputs `(("zlib" ,zlib)))
11464 (propagated-inputs
11465 `(("r-refgenome" ,r-refgenome)))
11466 (home-page "https://cran.r-project.org/web/packages/rbamtools")
11467 (synopsis "Read and write BAM (binary alignment) files")
11468 (description
11469 "This package provides an R interface to functions of the SAMtools
11470 library.")
11471 (license license:artistic2.0)))
11472
11473 (define-public r-protviz
11474 (package
11475 (name "r-protviz")
11476 (version "0.6.3")
11477 (source
11478 (origin
11479 (method url-fetch)
11480 (uri (cran-uri "protViz" version))
11481 (sha256
11482 (base32
11483 "1ldciqh3f43xr9663yyhd9r6qwrg4c4vmkprlcancbnd460wakg7"))))
11484 (properties `((upstream-name . "protViz")))
11485 (build-system r-build-system)
11486 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
11487 (home-page "https://github.com/protViz/protViz/")
11488 (synopsis "Visualizing and analyzing mass spectrometry data in proteomics")
11489 (description
11490 "This package helps with quality checks, visualizations and analysis of
11491 mass spectrometry data, coming from proteomics experiments. The package is
11492 developed, tested and used at the Functional Genomics Center Zurich, where it
11493 is used mainly for prototyping, teaching, and having fun with proteomics data.
11494 But it can also be used to do data analysis for small scale data sets.")
11495 (license license:gpl3)))
11496
11497 (define-public r-cmprsk
11498 (package
11499 (name "r-cmprsk")
11500 (version "2.2-9")
11501 (source
11502 (origin
11503 (method url-fetch)
11504 (uri (cran-uri "cmprsk" version))
11505 (sha256
11506 (base32 "0xhgfg5b4i9skkaxp7gzkafgg5bqs5q1rp4hpw2jjmykg2nifn99"))))
11507 (build-system r-build-system)
11508 (propagated-inputs
11509 `(("r-survival" ,r-survival)))
11510 (native-inputs
11511 `(("gfortran" ,gfortran)))
11512 (home-page "https://cran.r-project.org/web/packages/cmprsk")
11513 (synopsis "Subdistribution analysis of competing risks")
11514 (description
11515 "This package provides tool for estimation, testing and regression
11516 modeling of subdistribution functions in competing risks, as described in
11517 Gray (1988), A class of K-sample tests for comparing the cumulative incidence
11518 of a competing risk, Ann. Stat. 16:1141-1154, and Fine JP and Gray RJ (1999),
11519 A proportional hazards model for the subdistribution of a competing risk,
11520 JASA, 94:496-509.")
11521 (license license:gpl2+)))
11522
11523 (define-public r-etm
11524 (package
11525 (name "r-etm")
11526 (version "1.0.5.1")
11527 (source
11528 (origin
11529 (method url-fetch)
11530 (uri (cran-uri "etm" version))
11531 (sha256
11532 (base32
11533 "0m41pm277sd50pharigcqzr1a2g92wnmdf6fcab6fx16ia2fzrm7"))))
11534 (build-system r-build-system)
11535 (propagated-inputs
11536 `(("r-data-table" ,r-data-table)
11537 ("r-lattice" ,r-lattice)
11538 ("r-rcpp" ,r-rcpp)
11539 ("r-rcpparmadillo" ,r-rcpparmadillo)
11540 ("r-survival" ,r-survival)))
11541 (home-page "https://cran.r-project.org/web/packages/etm")
11542 (synopsis "Empirical transition matrix")
11543 (description
11544 "The @dfn{empirical transition matrix} (etm) package estimates
11545 the matrix of transition probabilities for any time-inhomogeneous multistate
11546 model with finite state space using the Aalen-Johansen estimator.")
11547 (license license:expat)))
11548
11549 (define-public r-epi
11550 (package
11551 (name "r-epi")
11552 (version "2.40")
11553 (source
11554 (origin
11555 (method url-fetch)
11556 (uri (cran-uri "Epi" version))
11557 (sha256
11558 (base32
11559 "046y10vwks5y84pzccmrn6d4pd6qz70imvp1hw5ywp8fnwzfh4g5"))))
11560 (properties `((upstream-name . "Epi")))
11561 (build-system r-build-system)
11562 (propagated-inputs
11563 `(("r-cmprsk" ,r-cmprsk)
11564 ("r-data-table" ,r-data-table)
11565 ("r-etm" ,r-etm)
11566 ("r-mass" ,r-mass)
11567 ("r-matrix" ,r-matrix)
11568 ("r-mgcv" ,r-mgcv)
11569 ("r-numderiv" ,r-numderiv)
11570 ("r-plyr" ,r-plyr)
11571 ("r-survival" ,r-survival)
11572 ("r-zoo" ,r-zoo)))
11573 (home-page "https://BendixCarstensen.com/Epi/")
11574 (synopsis "Statistical analysis in epidemiology")
11575 (description
11576 "This package provides functions for demographic and epidemiological
11577 analysis in the Lexis diagram, i.e. register and cohort follow-up data, in
11578 particular representation, manipulation and simulation of multistate data -
11579 the Lexis suite of functions, which includes interfaces to the @code{mstate},
11580 @code{etm} and @code{cmprsk} packages. It also contains functions for
11581 Age-Period-Cohort and Lee-Carter modeling and a function for interval censored
11582 data and some useful functions for tabulation and plotting, as well as a
11583 number of epidemiological data sets.")
11584 (license license:gpl2)))
11585
11586 (define-public r-ppls
11587 (package
11588 (name "r-ppls")
11589 (version "1.6-1.1")
11590 (source
11591 (origin
11592 (method url-fetch)
11593 (uri (cran-uri "ppls" version))
11594 (sha256
11595 (base32
11596 "1zyrisy3c4cz896j1bjh61sf57wdl9p8ywdq268cl819szfq78mx"))))
11597 (build-system r-build-system)
11598 (propagated-inputs `(("r-mass" ,r-mass)))
11599 (home-page "https://cran.r-project.org/web/packages/ppls")
11600 (synopsis "Penalized partial least squares")
11601 (description
11602 "This package contains linear and nonlinear regression methods based on
11603 partial least squares and penalization techniques. Model parameters are
11604 selected via cross-validation, and confidence intervals ans tests for the
11605 regression coefficients can be conducted via jackknifing.")
11606 (license license:gpl2+)))
11607
11608 (define-public r-huge
11609 (package
11610 (name "r-huge")
11611 (version "1.3.4.1")
11612 (source
11613 (origin
11614 (method url-fetch)
11615 (uri (cran-uri "huge" version))
11616 (sha256
11617 (base32 "11m80dnaxqw5v006q6kvhndl2y5ih5553fcqg4jcaljd8sp9xvvq"))))
11618 (build-system r-build-system)
11619 (propagated-inputs
11620 `(("r-igraph" ,r-igraph)
11621 ("r-mass" ,r-mass)
11622 ("r-matrix" ,r-matrix)
11623 ("r-rcpp" ,r-rcpp)
11624 ("r-rcppeigen" ,r-rcppeigen)))
11625 (home-page "https://cran.r-project.org/web/packages/huge")
11626 (synopsis "High-dimensional undirected graph estimation")
11627 (description
11628 "This package provides a general framework for high-dimensional
11629 undirected graph estimation. It integrates data preprocessing, neighborhood
11630 screening, graph estimation, and model selection techniques into a pipeline.")
11631 (license license:gpl2)))
11632
11633 (define-public r-parcor
11634 (package
11635 (name "r-parcor")
11636 (version "0.2-6")
11637 (source
11638 (origin
11639 (method url-fetch)
11640 (uri (cran-uri "parcor" version))
11641 (sha256
11642 (base32
11643 "0vgs6k92vdr0cmb8cwbv2ff6qavw30agskfd8bfh17hsskrisvx0"))))
11644 (build-system r-build-system)
11645 (propagated-inputs
11646 `(("r-epi" ,r-epi)
11647 ("r-genenet" ,r-genenet)
11648 ("r-glmnet" ,r-glmnet)
11649 ("r-mass" ,r-mass)
11650 ("r-ppls" ,r-ppls)))
11651 (home-page "https://cran.r-project.org/web/packages/parcor")
11652 (synopsis "Regularized estimation of partial correlation matrices")
11653 (description
11654 "This package estimates the matrix of partial correlations based on
11655 different regularized regression methods: lasso, adaptive lasso, PLS, and
11656 Ridge Regression. In addition, the package provides model selection for
11657 lasso, adaptive lasso and Ridge regression based on cross-validation.")
11658 (license license:gpl2+)))
11659
11660 (define-public r-mcmc
11661 (package
11662 (name "r-mcmc")
11663 (version "0.9-7")
11664 (source
11665 (origin
11666 (method url-fetch)
11667 (uri (cran-uri "mcmc" version))
11668 (sha256
11669 (base32
11670 "0q42m8ab7b6bxhns494ksjdss5f3c5m2jjfdlfj6fk1nz7ax7i5p"))))
11671 (build-system r-build-system)
11672 (home-page "https://www.stat.umn.edu/geyer/mcmc/")
11673 (synopsis "Markov chain Monte Carlo")
11674 (description
11675 "This package simulates continuous distributions of random vectors using
11676 @dfn{Markov chain Monte Carlo} (MCMC). Users specify the distribution by an R
11677 function that evaluates the log unnormalized density. Algorithms are random
11678 walk Metropolis algorithm (function @code{metrop}), simulated
11679 tempering (function @code{temper}), and morphometric random walk
11680 Metropolis (function @code{morph.metrop}), which achieves geometric ergodicity
11681 by change of variable.")
11682 (license license:expat)))
11683
11684 (define-public r-listenv
11685 (package
11686 (name "r-listenv")
11687 (version "0.8.0")
11688 (source
11689 (origin
11690 (method url-fetch)
11691 (uri (cran-uri "listenv" version))
11692 (sha256
11693 (base32
11694 "0ps8bk7zlhbviawrw7vw25skjq81hkk3ijyi6g74dmfqy8zsyapx"))))
11695 (build-system r-build-system)
11696 (native-inputs
11697 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
11698 (home-page "https://github.com/HenrikBengtsson/listenv")
11699 (synopsis "Environments behaving (almost) as lists")
11700 (description
11701 "This package implements list environments. List environments are
11702 environments that have list-like properties. For instance, the elements of a
11703 list environment are ordered and can be accessed and iterated over using index
11704 subsetting.")
11705 (license license:lgpl2.1+)))
11706
11707 (define-public r-globals
11708 (package
11709 (name "r-globals")
11710 (version "0.12.5")
11711 (source
11712 (origin
11713 (method url-fetch)
11714 (uri (cran-uri "globals" version))
11715 (sha256
11716 (base32
11717 "1ha8iasgijp4q3v2b0b17y1wh7cd3nvzd9b03w49qm2bidkaf68m"))))
11718 (build-system r-build-system)
11719 (propagated-inputs
11720 `(("r-codetools" ,r-codetools)))
11721 (home-page "https://github.com/HenrikBengtsson/globals")
11722 (synopsis "Identify global objects in R expressions")
11723 (description
11724 "This package provides tools to identify global (\"unknown\" or \"free\")
11725 objects in R expressions by code inspection using various strategies, e.g.
11726 conservative or liberal. The objective of this package is to make it as
11727 simple as possible to identify global objects for the purpose of exporting
11728 them in distributed compute environments.")
11729 (license license:lgpl2.1+)))
11730
11731 (define-public r-future
11732 (package
11733 (name "r-future")
11734 (version "1.16.0")
11735 (source
11736 (origin
11737 (method url-fetch)
11738 (uri (cran-uri "future" version))
11739 (sha256
11740 (base32
11741 "1xaqh0b2knf5bp23mc0kriq0iqhqna31q3b7d960piqjhzrb03dm"))))
11742 (build-system r-build-system)
11743 (propagated-inputs
11744 `(("r-digest" ,r-digest)
11745 ("r-globals" ,r-globals)
11746 ("r-listenv" ,r-listenv)))
11747 (native-inputs
11748 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
11749 (home-page "https://github.com/HenrikBengtsson/future")
11750 (synopsis "Unified parallel and distributed processing in R")
11751 (description
11752 "The purpose of this package is to provide a lightweight and unified
11753 Future API for sequential and parallel processing of R expression via futures.
11754 This package implements sequential, multicore, multisession, and cluster
11755 futures. With these, R expressions can be evaluated on the local machine, in
11756 parallel a set of local machines, or distributed on a mix of local and remote
11757 machines. Extensions to this package implement additional backends for
11758 processing futures via compute cluster schedulers etc. Because of its unified
11759 API, there is no need to modify any code in order to switch from sequential on
11760 the local machine to, say, distributed processing on a remote compute cluster.")
11761 (license license:lgpl2.1+)))
11762
11763 (define-public r-future-apply
11764 (package
11765 (name "r-future-apply")
11766 (version "1.4.0")
11767 (source
11768 (origin
11769 (method url-fetch)
11770 (uri (cran-uri "future.apply" version))
11771 (sha256
11772 (base32
11773 "1kgq6dv96hdy35kysqkn606nj7s9dp4ibgpm6n46gqhc5n75lzkk"))))
11774 (properties `((upstream-name . "future.apply")))
11775 (build-system r-build-system)
11776 (propagated-inputs
11777 `(("r-future" ,r-future)
11778 ("r-globals" ,r-globals)))
11779 (native-inputs
11780 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
11781 (home-page "https://github.com/HenrikBengtsson/future.apply")
11782 (synopsis "Apply function to elements in parallel using futures")
11783 (description
11784 "This package provides implementations of @code{apply()},
11785 @code{eapply()}, @code{lapply()}, @code{Map()}, @code{mapply()},
11786 @code{replicate()}, @code{sapply()}, @code{tapply()}, and @code{vapply()} that
11787 can be resolved using any future-supported backend, e.g. parallel on the local
11788 machine or distributed on a compute cluster.")
11789 (license license:gpl2+)))
11790
11791 (define-public r-rsvd
11792 (package
11793 (name "r-rsvd")
11794 (version "1.0.3")
11795 (source
11796 (origin
11797 (method url-fetch)
11798 (uri (cran-uri "rsvd" version))
11799 (sha256
11800 (base32
11801 "1fvrw46fl5xb2akaa4mp8nja4h7nn4bdhnjdrk22fsdfqc7hwmhk"))))
11802 (build-system r-build-system)
11803 (propagated-inputs
11804 `(("r-matrix" ,r-matrix)))
11805 (home-page "https://github.com/erichson/rSVD")
11806 (synopsis "Randomized singular value decomposition")
11807 (description
11808 "Low-rank matrix decompositions are fundamental tools and widely used for
11809 data analysis, dimension reduction, and data compression. Classically, highly
11810 accurate deterministic matrix algorithms are used for this task. However, the
11811 emergence of large-scale data has severely challenged our computational
11812 ability to analyze big data. The concept of randomness has been demonstrated
11813 as an effective strategy to quickly produce approximate answers to familiar
11814 problems such as the @dfn{singular value decomposition} (SVD). This package
11815 provides several randomized matrix algorithms such as the randomized singular
11816 value decomposition (@code{rsvd}), randomized principal component
11817 analysis (@code{rpca}), randomized robust principal component
11818 analysis (@code{rrpca}), randomized interpolative decomposition (@code{rid}),
11819 and the randomized CUR decomposition (@code{rcur}). In addition several plot
11820 functions are provided.")
11821 (license license:gpl3+)))
11822
11823 (define-public r-sloop
11824 (package
11825 (name "r-sloop")
11826 (version "1.0.1")
11827 (source
11828 (origin
11829 (method url-fetch)
11830 (uri (cran-uri "sloop" version))
11831 (sha256
11832 (base32
11833 "00fk5fr5zsk2qxc1kfhmshhjxgnamm3401089sx8m2l529zd6r8j"))))
11834 (build-system r-build-system)
11835 (propagated-inputs
11836 `(("r-codetools" ,r-codetools)
11837 ("r-crayon" ,r-crayon)
11838 ("r-purrr" ,r-purrr)
11839 ("r-rlang" ,r-rlang)
11840 ("r-tibble" ,r-tibble)))
11841 (home-page "https://github.com/r-lib/sloop")
11842 (synopsis "Helpers for object-oriented programming in R")
11843 (description
11844 "This package provides a collection of helper functions designed to
11845 help you to better understand object oriented programming in R, particularly
11846 using @code{S3}.")
11847 (license license:gpl3)))
11848
11849 (define-public r-capushe
11850 (package
11851 (name "r-capushe")
11852 (version "1.1.1")
11853 (source
11854 (origin
11855 (method url-fetch)
11856 (uri (cran-uri "capushe" version))
11857 (sha256
11858 (base32
11859 "1aa76ir1kp67hiz7dr60azyc71yzslshyc640fjh0fpw0sp5kwbc"))))
11860 (build-system r-build-system)
11861 (propagated-inputs `(("r-mass" ,r-mass)))
11862 (home-page "https://cran.r-project.org/web/packages/capushe/index.html")
11863 (synopsis "Calibrating penalties using slope heuristics")
11864 (description
11865 "This package provides tools for the calibration of penalized criteria
11866 for model selection. The calibration methods available are based on the slope
11867 heuristics.")
11868 (license license:gpl2+)))
11869
11870 (define-public r-dorng
11871 (package
11872 (name "r-dorng")
11873 (version "1.8.2")
11874 (source
11875 (origin
11876 (method url-fetch)
11877 (uri (cran-uri "doRNG" version))
11878 (sha256
11879 (base32
11880 "1jff27zzrvd1fd61x2m9468h8xn3s1c9f6wibviy5zdhj5dx9s9k"))))
11881 (properties `((upstream-name . "doRNG")))
11882 (build-system r-build-system)
11883 (propagated-inputs
11884 `(("r-foreach" ,r-foreach)
11885 ("r-iterators" ,r-iterators)
11886 ("r-rngtools" ,r-rngtools)))
11887 (home-page "https://renozao.github.io/doRNG/")
11888 (synopsis "Generic reproducible parallel backend for foreach loops")
11889 (description
11890 "This package provides functions to perform reproducible parallel
11891 @code{foreach} loops, using independent random streams as generated by
11892 L'Ecuyer's combined multiple-recursive generator. It enables to easily
11893 convert standard @code{%dopar%} loops into fully reproducible loops,
11894 independently of the number of workers, the task scheduling strategy, or the
11895 chosen parallel environment and associated foreach backend.")
11896 (license license:gpl2+)))
11897
11898 (define-public r-blockmodeling
11899 (package
11900 (name "r-blockmodeling")
11901 (version "0.3.6")
11902 (source
11903 (origin
11904 (method url-fetch)
11905 (uri (cran-uri "blockmodeling" version))
11906 (sha256
11907 (base32
11908 "12paf76l3wlxad14bkxn37lw9rg6ka473m86wlcf3yhriw8kbaiz"))))
11909 (build-system r-build-system)
11910 (propagated-inputs
11911 `(("r-matrix" ,r-matrix)))
11912 (native-inputs `(("gfortran" ,gfortran)))
11913 (home-page "https://cran.r-project.org/web/packages/blockmodeling")
11914 (synopsis "Generalized and classical blockmodeling of valued networks")
11915 (description
11916 "This package is primarily meant as an implementation of generalized
11917 blockmodeling for valued networks. In addition, measures of similarity or
11918 dissimilarity based on structural equivalence and regular equivalence (REGE
11919 algorithms) can be computed and partitioned matrices can be plotted.")
11920 (license license:gpl2+)))
11921
11922 (define-public r-upsetr
11923 (package
11924 (name "r-upsetr")
11925 (version "1.4.0")
11926 (source
11927 (origin
11928 (method url-fetch)
11929 (uri (cran-uri "UpSetR" version))
11930 (sha256
11931 (base32
11932 "007i0njnjjy7vbrxabwav7a1kk2n0hn2mkvqsdzzfk10ckp5y7im"))))
11933 (properties `((upstream-name . "UpSetR")))
11934 (build-system r-build-system)
11935 (propagated-inputs
11936 `(("r-ggplot2" ,r-ggplot2)
11937 ("r-gridextra" ,r-gridextra)
11938 ("r-plyr" ,r-plyr)
11939 ("r-scales" ,r-scales)))
11940 (home-page "https://github.com/hms-dbmi/UpSetR")
11941 (synopsis "Visualize intersecting sets")
11942 (description
11943 "This package provides a more scalable alternative to Venn and Euler
11944 diagrams for visualizing intersecting sets. Create visualizations of
11945 intersecting sets using a novel matrix design, along with visualizations of
11946 several common set, element and attribute related tasks.")
11947 (license license:expat)))
11948
11949 ;; This package includes a JavaScript file, which is not minified. When
11950 ;; upgrading please check that there are no new minified JavaScript files.
11951 (define-public r-shinybs
11952 (package
11953 (name "r-shinybs")
11954 (version "0.61")
11955 (source
11956 (origin
11957 (method url-fetch)
11958 (uri (cran-uri "shinyBS" version))
11959 (sha256
11960 (base32
11961 "0rhim4mbp4x9vvm7xkmpl7mhb9qd1gr96cr4dv330v863ra2kgji"))))
11962 (properties `((upstream-name . "shinyBS")))
11963 (build-system r-build-system)
11964 ;; The tests spawn Shiny browser apps. They cannot be run
11965 ;; non-interactively.
11966 (arguments '(#:tests? #f))
11967 (propagated-inputs
11968 `(("r-htmltools" ,r-htmltools)
11969 ("r-shiny" ,r-shiny)))
11970 (home-page "https://ebailey78.github.io/shinyBS/")
11971 (synopsis "Twitter Bootstrap components for Shiny")
11972 (description
11973 "This package adds additional Twitter Bootstrap components to Shiny.")
11974 (license license:gpl3)))
11975
11976 (define-public r-outliers
11977 (package
11978 (name "r-outliers")
11979 (version "0.14")
11980 (source
11981 (origin
11982 (method url-fetch)
11983 (uri (cran-uri "outliers" version))
11984 (sha256
11985 (base32
11986 "0vcqfqmmv4yblyp3s6bd25r49pxb7hjzipiic5a82924nqfqzkmn"))))
11987 (build-system r-build-system)
11988 (home-page "https://cran.r-project.org/web/packages/outliers/index.html")
11989 (synopsis "Tests for outliers")
11990 (description
11991 "This package provides a collection of some tests commonly used for
11992 identifying outliers.")
11993 (license license:gpl2+)))
11994
11995 (define-public r-bayesm
11996 (package
11997 (name "r-bayesm")
11998 (version "3.1-4")
11999 (source
12000 (origin
12001 (method url-fetch)
12002 (uri (cran-uri "bayesm" version))
12003 (sha256
12004 (base32 "154glks7rsjkza0sfi1kj7wj727py9sl1ba6sswflwmwc9n226q6"))))
12005 (build-system r-build-system)
12006 (propagated-inputs
12007 `(("r-rcpp" ,r-rcpp)
12008 ("r-rcpparmadillo" ,r-rcpparmadillo)))
12009 (home-page "http://www.perossi.org/home/bsm-1")
12010 (synopsis "Bayesian inference for marketing/micro-econometrics")
12011 (description
12012 "This package covers many important models used in marketing and
12013 micro-econometrics applications, including Bayes Regression (univariate or
12014 multivariate dep var), Bayes Seemingly Unrelated Regression (SUR), Binary and
12015 Ordinal Probit, Multinomial Logit (MNL) and Multinomial Probit (MNP),
12016 Multivariate Probit, Negative Binomial (Poisson) Regression, Multivariate
12017 Mixtures of Normals (including clustering), Dirichlet Process Prior Density
12018 Estimation with normal base, Hierarchical Linear Models with normal prior and
12019 covariates, Hierarchical Linear Models with a mixture of normals prior and
12020 covariates, Hierarchical Multinomial Logits with a mixture of normals prior
12021 and covariates, Hierarchical Multinomial Logits with a Dirichlet Process prior
12022 and covariates, Hierarchical Negative Binomial Regression Models, Bayesian
12023 analysis of choice-based conjoint data, Bayesian treatment of linear
12024 instrumental variables models, Analysis of Multivariate Ordinal survey data
12025 with scale usage heterogeneity, and Bayesian Analysis of Aggregate Random
12026 Coefficient Logit Models.")
12027 (license license:gpl2+)))
12028
12029 (define-public r-tensora
12030 (package
12031 (name "r-tensora")
12032 (version "0.36.1")
12033 (source
12034 (origin
12035 (method url-fetch)
12036 (uri (cran-uri "tensorA" version))
12037 (sha256
12038 (base32
12039 "176hjy3bvg3in62r97wxbhq187sjz6c1gwy9x6spaxl6k4my3zy7"))))
12040 (properties `((upstream-name . "tensorA")))
12041 (build-system r-build-system)
12042 (home-page "http://www.stat.boogaart.de/tensorA")
12043 (synopsis "Advanced tensor arithmetic with named indices")
12044 (description
12045 "This package provides convenience functions for advanced linear algebra
12046 with tensors and computation with datasets of tensors on a higher level
12047 abstraction. It includes Einstein and Riemann summing conventions, dragging,
12048 co- and contravariate indices, and parallel computations on sequences of
12049 tensors.")
12050 (license license:gpl2+)))
12051
12052 (define-public r-rarpack
12053 (package
12054 (name "r-rarpack")
12055 (version "0.11-0")
12056 (source
12057 (origin
12058 (method url-fetch)
12059 (uri (cran-uri "rARPACK" version))
12060 (sha256
12061 (base32
12062 "12h2y46xcfldhjdmm960swgn9b23zvkj5vg2bi42s9qxwgi02d63"))))
12063 (properties `((upstream-name . "rARPACK")))
12064 (build-system r-build-system)
12065 (propagated-inputs `(("r-rspectra" ,r-rspectra)))
12066 (home-page "https://github.com/yixuan/rARPACK")
12067 (synopsis "Solvers for large scale eigenvalue and SVD problems")
12068 (description
12069 "This package was previously an R wrapper of the ARPACK library, and now
12070 a shell of the R package RSpectra, an R interface to the Spectra library for
12071 solving large scale eigenvalue/vector problems. The current version of
12072 rARPACK simply imports and exports the functions provided by RSpectra. New
12073 users of rARPACK are advised to switch to the RSpectra package.")
12074 (license license:bsd-3)))
12075
12076 (define-public r-compositions
12077 (package
12078 (name "r-compositions")
12079 (version "1.40-5")
12080 (source
12081 (origin
12082 (method url-fetch)
12083 (uri (cran-uri "compositions" version))
12084 (sha256
12085 (base32
12086 "0l9ayz2nb2wqhl7v9hkfl7pd950ba0h6hma8zqncbcxh6xh2k7l7"))))
12087 (build-system r-build-system)
12088 (propagated-inputs
12089 `(("r-bayesm" ,r-bayesm)
12090 ("r-robustbase" ,r-robustbase)
12091 ("r-tensora" ,r-tensora)))
12092 (home-page "http://www.stat.boogaart.de/compositions")
12093 (synopsis "Compositional data analysis")
12094 (description
12095 "This package provides functions for the consistent analysis of
12096 compositional data (e.g. portions of substances) and positive
12097 numbers (e.g. concentrations).")
12098 (license license:gpl2+)))
12099
12100 (define-public r-cobs
12101 (package
12102 (name "r-cobs")
12103 (version "1.3-4")
12104 (source
12105 (origin
12106 (method url-fetch)
12107 (uri (cran-uri "cobs" version))
12108 (sha256
12109 (base32
12110 "0hiw5smk6kgk0gb9840kcqkhkybl7n30s77xhjc395x09izbgix1"))))
12111 (build-system r-build-system)
12112 (propagated-inputs
12113 `(("r-quantreg" ,r-quantreg)
12114 ("r-sparsem" ,r-sparsem)))
12115 (home-page "https://cran.r-project.org/web/packages/cobs")
12116 (synopsis "Constrained B-Splines (sparse matrix based)")
12117 (description
12118 "This package provides qualitatively constrained (regression) smoothing
12119 splines via linear programming and sparse matrices.")
12120 (license license:gpl2+)))
12121
12122 (define-public r-drimpute
12123 (package
12124 (name "r-drimpute")
12125 (version "1.0")
12126 (source
12127 (origin
12128 (method url-fetch)
12129 (uri (cran-uri "DrImpute" version))
12130 (sha256
12131 (base32
12132 "1adzarrwqb282pqgx2yqswp9rpwd1naxsmar54kddr6qyd6b923b"))))
12133 (properties `((upstream-name . "DrImpute")))
12134 (build-system r-build-system)
12135 (propagated-inputs
12136 `(("r-rcpp" ,r-rcpp)
12137 ("r-rcpparmadillo" ,r-rcpparmadillo)))
12138 (home-page "https://github.com/ikwak2/DrImpute")
12139 (synopsis "Imputing dropout events in single-cell RNA-Seq data")
12140 (description
12141 "This is an R package for imputing dropout events. Many statistical
12142 methods in cell type identification, visualization and lineage reconstruction
12143 do not account for dropout events. DrImpute can improve the performance of
12144 such software by imputing dropout events.")
12145 (license license:gpl3)))
12146
12147 (define-public r-gamlss-dist
12148 (package
12149 (name "r-gamlss-dist")
12150 (version "5.1-6")
12151 (source
12152 (origin
12153 (method url-fetch)
12154 (uri (cran-uri "gamlss.dist" version))
12155 (sha256
12156 (base32 "1p904x0b07z4amaqdn2xhs7qzbq8lisr6lqc844s3pkxzmny7w1z"))))
12157 (properties `((upstream-name . "gamlss.dist")))
12158 (build-system r-build-system)
12159 (propagated-inputs `(("r-mass" ,r-mass)))
12160 (home-page "http://www.gamlss.org/")
12161 (synopsis "Distributions for Generalized Additive Models for location scale and shape")
12162 (description
12163 "This package provides a set of distributions which can be used for
12164 modelling the response variables in Generalized Additive Models for Location
12165 Scale and Shape. The distributions can be continuous, discrete or mixed
12166 distributions. Extra distributions can be created, by transforming, any
12167 continuous distribution defined on the real line, to a distribution defined on
12168 ranges 0 to infinity or 0 to 1, by using a @code{log} or a @code{logit}
12169 transformation, respectively.")
12170 ;; Either version of the GPL.
12171 (license (list license:gpl2 license:gpl3))))
12172
12173 ;; This package includes JavaScript files, which are not minified. When
12174 ;; upgrading please check that there are no new minified JavaScript files.
12175 (define-public r-shinyjs
12176 (package
12177 (name "r-shinyjs")
12178 (version "1.1")
12179 (source
12180 (origin
12181 (method url-fetch)
12182 (uri (cran-uri "shinyjs" version))
12183 (sha256
12184 (base32
12185 "14k8y313ppj23m9rhlk8jc94x6sbn3qrsnx6xrijiyv8m8dii1l9"))))
12186 (build-system r-build-system)
12187 (propagated-inputs
12188 `(("r-digest" ,r-digest)
12189 ("r-htmltools" ,r-htmltools)
12190 ("r-jsonlite" ,r-jsonlite)
12191 ("r-shiny" ,r-shiny)))
12192 (home-page "https://deanattali.com/shinyjs")
12193 (synopsis "Improve the user experience of your Shiny apps")
12194 (description
12195 "Perform common useful JavaScript operations in Shiny apps that will
12196 greatly improve your apps without having to know any JavaScript. Examples
12197 include: hiding an element, disabling an input, resetting an input back to its
12198 original value, delaying code execution by a few seconds, and many more useful
12199 functions for both the end user and the developer. Shinyjs can also be used
12200 to easily call your own custom JavaScript functions from R.")
12201 (license license:agpl3+)))
12202
12203 ;; This package includes minified JavaScript files. When upgrading please
12204 ;; check that there are no new minified JavaScript files.
12205 (define-public r-colourpicker
12206 (package
12207 (name "r-colourpicker")
12208 (version "1.0")
12209 (source
12210 (origin
12211 (method url-fetch)
12212 (uri (cran-uri "colourpicker" version))
12213 (sha256
12214 (base32
12215 "0z3v2083g7kwdp21x9s2n1crfh24agpdq3yxkcdzc2awn2pwpnpi"))))
12216 (build-system r-build-system)
12217 (arguments
12218 `(#:modules ((guix build utils)
12219 (guix build r-build-system)
12220 (srfi srfi-1)
12221 (ice-9 popen))
12222 #:phases
12223 (modify-phases %standard-phases
12224 (add-after 'unpack 'process-javascript
12225 (lambda* (#:key inputs #:allow-other-keys)
12226 (with-directory-excursion "inst"
12227 (call-with-values
12228 (lambda ()
12229 (unzip2
12230 `((,(assoc-ref inputs "js-salvattore")
12231 "examples/colourInput/www/salvattore.min.js")
12232 (,(assoc-ref inputs "js-jquery")
12233 "htmlwidgets/lib/jquery/jquery.min.js")
12234 ("www/shared/colourpicker/js/colourpicker.js"
12235 "www/shared/colourpicker/js/colourpicker.min.js"))))
12236 (lambda (sources targets)
12237 (for-each (lambda (source target)
12238 (format #t "Processing ~a --> ~a~%"
12239 source target)
12240 (delete-file target)
12241 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
12242 (call-with-output-file target
12243 (lambda (port)
12244 (dump-port minified port)))))
12245 sources targets))))
12246 #t)))))
12247 (propagated-inputs
12248 `(("r-ggplot2" ,r-ggplot2)
12249 ("r-htmltools" ,r-htmltools)
12250 ("r-htmlwidgets" ,r-htmlwidgets)
12251 ("r-jsonlite" ,r-jsonlite)
12252 ("r-miniui" ,r-miniui)
12253 ("r-shiny" ,r-shiny)
12254 ("r-shinyjs" ,r-shinyjs)))
12255 (native-inputs
12256 `(("uglify-js" ,uglify-js)
12257 ("js-jquery"
12258 ,(origin
12259 (method url-fetch)
12260 (uri "https://code.jquery.com/jquery-3.3.1.js")
12261 (sha256
12262 (base32
12263 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))
12264 ("js-salvattore"
12265 ,(origin
12266 (method url-fetch)
12267 (uri "https://raw.githubusercontent.com/rnmp/salvattore/v1.0.9/dist/salvattore.js")
12268 (sha256
12269 (base32
12270 "0lfrbx7l9w5x89jpc6njmd0pk7h8fpvg537vklai2vf7b1r2nnk5"))))))
12271 (home-page "https://github.com/daattali/colourpicker")
12272 (synopsis "Color picker tool for Shiny and for selecting colors in plots")
12273 (description
12274 "This package provides a color picker that can be used as an input in
12275 Shiny apps or Rmarkdown documents. The color picker supports alpha opacity,
12276 custom color palettes, and many more options. A plot color helper tool is
12277 available as an RStudio Addin, which helps you pick colors to use in your
12278 plots. A more generic color picker RStudio Addin is also provided to let you
12279 select colors to use in your R code.")
12280 (license license:expat)))
12281
12282 (define-public r-ggextra
12283 (package
12284 (name "r-ggextra")
12285 (version "0.9")
12286 (source
12287 (origin
12288 (method url-fetch)
12289 (uri (cran-uri "ggExtra" version))
12290 (sha256
12291 (base32
12292 "18mbi6gblqmrsciad1d2c9ngllk6mayaqj43k40hjq9ydqnvjbgj"))))
12293 (properties `((upstream-name . "ggExtra")))
12294 (build-system r-build-system)
12295 (propagated-inputs
12296 `(("r-colourpicker" ,r-colourpicker)
12297 ("r-ggplot2" ,r-ggplot2)
12298 ("r-gtable" ,r-gtable)
12299 ("r-miniui" ,r-miniui)
12300 ("r-r6" ,r-r6)
12301 ("r-scales" ,r-scales)
12302 ("r-shiny" ,r-shiny)
12303 ("r-shinyjs" ,r-shinyjs)))
12304 (home-page "https://github.com/daattali/ggExtra")
12305 (synopsis "Marginal histograms for ggplot2 and other enhancements")
12306 (description
12307 "This package is a collection of functions and layers to enhance ggplot2.
12308 The flagship function is @code{ggMarginal()}, which can be used to add
12309 marginal histograms/boxplots/density plots to ggplot2 scatterplots.")
12310 (license license:expat)))
12311
12312 (define-public r-minpack-lm
12313 (package
12314 (name "r-minpack-lm")
12315 (version "1.2-1")
12316 (source
12317 (origin
12318 (method url-fetch)
12319 (uri (cran-uri "minpack.lm" version))
12320 (sha256
12321 (base32
12322 "18ym2pdql5vzngc7q5gn66d153hrfrnd8ilv8yh6vd7j7sx7vjql"))))
12323 (properties `((upstream-name . "minpack.lm")))
12324 (build-system r-build-system)
12325 (native-inputs `(("gfortran" ,gfortran)))
12326 (home-page "https://cran.r-project.org/web/packages/minpack.lm")
12327 (synopsis "Levenberg-Marquardt Nonlinear Least-Squares algorithm")
12328 (description
12329 "The @code{nls.lm} function provides an R interface to @code{lmder} and
12330 @code{lmdif} from the MINPACK library, for solving nonlinear least-squares
12331 problems by a modification of the Levenberg-Marquardt algorithm, with support
12332 for lower and upper parameter bounds. The implementation can be used via
12333 @code{nls}-like calls using the @code{nlsLM} function.")
12334 (license license:gpl3)))
12335
12336 (define-public r-moments
12337 (package
12338 (name "r-moments")
12339 (version "0.14")
12340 (source
12341 (origin
12342 (method url-fetch)
12343 (uri (cran-uri "moments" version))
12344 (sha256
12345 (base32
12346 "0f9y58w1hxcz4bqivirx25ywlmc80gbi6dfx5cnhkpdg1pk82fra"))))
12347 (build-system r-build-system)
12348 (home-page "https://cran.r-project.org/web/packages/moments")
12349 (synopsis "Moments, cumulants, skewness, kurtosis and related tests")
12350 (description
12351 "This package provides functions to calculate: moments, Pearson's
12352 kurtosis, Geary's kurtosis and skewness; it also includes tests related to
12353 them (Anscombe-Glynn, D'Agostino, Bonett-Seier).")
12354 (license license:gpl2+)))
12355
12356 (define-public r-msir
12357 (package
12358 (name "r-msir")
12359 (version "1.3.2")
12360 (source
12361 (origin
12362 (method url-fetch)
12363 (uri (cran-uri "msir" version))
12364 (sha256
12365 (base32
12366 "0pvc3q162vqq3k39nni732x05zzfz4y9y2zf56d83185ypszv9kb"))))
12367 (build-system r-build-system)
12368 (propagated-inputs
12369 `(("r-mclust" ,r-mclust)))
12370 (home-page "https://cran.r-project.org/web/packages/msir")
12371 (synopsis "Model-based sliced inverse regression")
12372 (description
12373 "This is an R package for dimension reduction based on finite Gaussian
12374 mixture modeling of inverse regression.")
12375 (license license:gpl2+)))
12376
12377 (define-public r-pbivnorm
12378 (package
12379 (name "r-pbivnorm")
12380 (version "0.6.0")
12381 (source
12382 (origin
12383 (method url-fetch)
12384 (uri (cran-uri "pbivnorm" version))
12385 (sha256
12386 (base32
12387 "05jzrjqxzbcf6z245hlk7sjxiszv9paadaaimvcx5y5qgi87vhq7"))))
12388 (build-system r-build-system)
12389 (native-inputs `(("gfortran" ,gfortran)))
12390 (home-page "https://github.com/brentonk/pbivnorm")
12391 (synopsis "Vectorized bivariate normal CDF")
12392 (description
12393 "This package provides a vectorized R function for calculating
12394 probabilities from a standard bivariate normal CDF.")
12395 (license license:gpl2+)))
12396
12397 (define-public r-lavaan
12398 (package
12399 (name "r-lavaan")
12400 (version "0.6-5")
12401 (source
12402 (origin
12403 (method url-fetch)
12404 (uri (cran-uri "lavaan" version))
12405 (sha256
12406 (base32
12407 "04kvsh2m6mnzlhv83phr3hjzy4sx1ck6f7dgsm7xb8cs84dnxszy"))))
12408 (build-system r-build-system)
12409 (propagated-inputs
12410 `(("r-mass" ,r-mass)
12411 ("r-mnormt" ,r-mnormt)
12412 ("r-numderiv" ,r-numderiv)
12413 ("r-pbivnorm" ,r-pbivnorm)))
12414 (home-page "http://lavaan.ugent.be")
12415 (synopsis "Latent variable analysis")
12416 (description
12417 "This package provides tools to fit a variety of latent variable models,
12418 including confirmatory factor analysis, structural equation modeling and
12419 latent growth curve models.")
12420 (license license:gpl2+)))
12421
12422 (define-public r-nonnest2
12423 (package
12424 (name "r-nonnest2")
12425 (version "0.5-3")
12426 (source
12427 (origin
12428 (method url-fetch)
12429 (uri (cran-uri "nonnest2" version))
12430 (sha256
12431 (base32
12432 "1mnv4pa583ir9s03h952hk40lwdywr3g88g76sk1zsa54rcmn82c"))))
12433 (build-system r-build-system)
12434 (propagated-inputs
12435 `(("r-compquadform" ,r-compquadform)
12436 ("r-lavaan" ,r-lavaan)
12437 ("r-mvtnorm" ,r-mvtnorm)
12438 ("r-sandwich" ,r-sandwich)))
12439 (native-inputs
12440 `(("r-knitr" ,r-knitr)))
12441 (home-page "https://cran.r-project.org/web/packages/nonnest2/")
12442 (synopsis "Tests of non-nested models")
12443 (description
12444 "This package allows for testing of non-nested models. It includes tests
12445 of model distinguishability and of model fit that can be applied to both
12446 nested and non-nested models. The package also includes functionality to
12447 obtain confidence intervals associated with AIC and BIC.")
12448 ;; Either version of the GPL.
12449 (license (list license:gpl2 license:gpl3))))
12450
12451 (define-public r-penalized
12452 (package
12453 (name "r-penalized")
12454 (version "0.9-51")
12455 (source
12456 (origin
12457 (method url-fetch)
12458 (uri (cran-uri "penalized" version))
12459 (sha256
12460 (base32
12461 "1zcrwa93mc27qj3g4ayc2k895r6g8q0g6qb2azmvj7wqk750va7a"))))
12462 (build-system r-build-system)
12463 (propagated-inputs
12464 `(("r-rcpp" ,r-rcpp)
12465 ("r-rcpparmadillo" ,r-rcpparmadillo)
12466 ("r-survival" ,r-survival)))
12467 (home-page "https://cran.r-project.org/web/packages/penalized/")
12468 (synopsis "Penalized estimation in GLMs and in the Cox model")
12469 (description
12470 "This package provides tools for fitting possibly high dimensional
12471 penalized regression models. The penalty structure can be any combination of
12472 an L1 penalty (lasso and fused lasso), an L2 penalty (ridge) and a positivity
12473 constraint on the regression coefficients. The supported regression models
12474 are linear, logistic and Poisson regression and the Cox Proportional Hazards
12475 model. Cross-validation routines allow optimization of the tuning
12476 parameters.")
12477 (license license:gpl2+)))
12478
12479 (define-public r-zim
12480 (package
12481 (name "r-zim")
12482 (version "1.1.0")
12483 (source
12484 (origin
12485 (method url-fetch)
12486 (uri (cran-uri "ZIM" version))
12487 (sha256
12488 (base32
12489 "0scyfjn4ilsvha3x41c3b8bcfi31hlhwm77wn2a8hj5dsvnnmzig"))))
12490 (properties `((upstream-name . "ZIM")))
12491 (build-system r-build-system)
12492 (propagated-inputs `(("r-mass" ,r-mass)))
12493 (home-page "https://github.com/biostatstudio/ZIM")
12494 (synopsis "Zero-inflated models (ZIM) for count time series with excess zeros")
12495 (description
12496 "Analyze count time series with excess zeros. Two types of statistical
12497 models are supported: Markov regression and state-space models. They are also
12498 known as observation-driven and parameter-driven models respectively in the
12499 time series literature. The functions used for Markov regression or
12500 observation-driven models can also be used to fit ordinary regression models
12501 with independent data under the zero-inflated Poisson (ZIP) or zero-inflated
12502 negative binomial (ZINB) assumption. The package also contains miscellaneous
12503 functions to compute density, distribution, quantile, and generate random
12504 numbers from ZIP and ZINB distributions.")
12505 (license license:gpl3)))
12506
12507 (define-public r-nor1mix
12508 (package
12509 (name "r-nor1mix")
12510 (version "1.3-0")
12511 (source
12512 (origin
12513 (method url-fetch)
12514 (uri (cran-uri "nor1mix" version))
12515 (sha256
12516 (base32
12517 "1817wcvlmxs70vs4db0jkxd7i037744zz8ay3c2a9949z29fxr4w"))))
12518 (build-system r-build-system)
12519 (home-page "https://cran.r-project.org/web/packages/nor1mix/")
12520 (synopsis "Normal (1-d) mixture models")
12521 (description
12522 "This package provides S3 classes and methods for one-dimensional normal
12523 mixture models, for, e.g., density estimation or clustering algorithms
12524 research and teaching; it provides the widely used Marron-Wand densities. It
12525 also provides tools for efficient random number generation and graphics.")
12526 (license license:gpl2+)))
12527
12528 (define-public r-beanplot
12529 (package
12530 (name "r-beanplot")
12531 (version "1.2")
12532 (source
12533 (origin
12534 (method url-fetch)
12535 (uri (cran-uri "beanplot" version))
12536 (sha256
12537 (base32
12538 "0wmkr704fl8kdxkjwmaxw2a2h5dwzfgsgpncnk2p2wd4768jknj9"))))
12539 (build-system r-build-system)
12540 (home-page "https://cran.r-project.org/web/packages/beanplot/")
12541 (synopsis "Visualization via beanplots")
12542 (description
12543 "This package provides beanplots, an alternative to
12544 boxplot/stripchart/violin plots. It can be used to plot univariate comparison
12545 graphs.")
12546 (license license:gpl2)))
12547
12548 (define-public r-pbdzmq
12549 (package
12550 (name "r-pbdzmq")
12551 (version "0.3-3")
12552 (source
12553 (origin
12554 (method url-fetch)
12555 (uri (cran-uri "pbdZMQ" version))
12556 (sha256
12557 (base32
12558 "1jkfcfhspvqra7vbllrvkz3jx8j7d0ang6zzcdjgpb7200sc29mf"))))
12559 (properties `((upstream-name . "pbdZMQ")))
12560 (build-system r-build-system)
12561 (inputs
12562 `(("zeromq" ,zeromq)
12563 ("zlib" ,zlib)))
12564 (native-inputs
12565 `(("pkg-config" ,pkg-config)))
12566 (home-page "https://pbdr.org/")
12567 (synopsis "R interface to ZeroMQ")
12568 (description
12569 "ZeroMQ is a well-known library for high-performance asynchronous
12570 messaging in scalable, distributed applications. This package provides high
12571 level R wrapper functions to easily utilize ZeroMQ. The main focus is on
12572 interactive client/server programming frameworks. A few wrapper functions
12573 compatible with @code{rzmq} are also provided.")
12574 (license license:gpl3)))
12575
12576 (define-public r-repr
12577 (package
12578 (name "r-repr")
12579 (version "1.1.0")
12580 (source
12581 (origin
12582 (method url-fetch)
12583 (uri (cran-uri "repr" version))
12584 (sha256
12585 (base32
12586 "15jz780w4nd9qjd1g3gq8f5lkh60p2v3ig3hm5kl1rg3z4cf0gvl"))))
12587 (build-system r-build-system)
12588 (propagated-inputs
12589 `(("r-base64enc" ,r-base64enc)
12590 ("r-htmltools" ,r-htmltools)
12591 ("r-jsonlite" ,r-jsonlite)
12592 ("r-pillar" ,r-pillar)))
12593 (home-page "https://cran.r-project.org/web/packages/repr/")
12594 (synopsis "Serializable representations")
12595 (description
12596 "This package provides string and binary representations of objects for
12597 several formats and MIME types.")
12598 (license license:gpl3)))
12599
12600 (define-public r-irdisplay
12601 (package
12602 (name "r-irdisplay")
12603 (version "0.7.0")
12604 (source
12605 (origin
12606 (method url-fetch)
12607 (uri (cran-uri "IRdisplay" version))
12608 (sha256
12609 (base32
12610 "12chk53nf4zckgc4yl7gbvd7m5dvli52inp5b3f0zvcjvfncksli"))))
12611 (properties `((upstream-name . "IRdisplay")))
12612 (build-system r-build-system)
12613 (propagated-inputs
12614 `(("r-repr" ,r-repr)))
12615 (home-page "https://cran.r-project.org/web/packages/IRdisplay/")
12616 (synopsis "Jupyter display machinery")
12617 (description
12618 "This package provides an interface to the rich display capabilities of
12619 Jupyter front-ends (e.g. Jupyter Notebook). It is designed to be used from a
12620 running IRkernel session.")
12621 (license license:expat)))
12622
12623 (define-public r-irkernel
12624 (package
12625 (name "r-irkernel")
12626 (version "1.1")
12627 (source
12628 (origin
12629 (method url-fetch)
12630 (uri (cran-uri "IRkernel" version))
12631 (sha256
12632 (base32
12633 "1viqxs91dys1z4cf7gb59rmqvzb8lc7jdp4azrpmhgwa8qf46s94"))))
12634 (properties `((upstream-name . "IRkernel")))
12635 (build-system r-build-system)
12636 (arguments
12637 `(#:phases
12638 (modify-phases %standard-phases
12639 (add-after 'install 'install-kernelspec
12640 (lambda* (#:key outputs #:allow-other-keys)
12641 (let ((out (assoc-ref outputs "out")))
12642 (setenv "HOME" "/tmp")
12643 (invoke "jupyter" "kernelspec" "install"
12644 "--name" "ir"
12645 "--prefix" out
12646 (string-append out "/site-library/IRkernel/kernelspec"))
12647 ;; Record the absolute file name of the 'R' executable in
12648 ;; 'kernel.json'.
12649 (substitute* (string-append out "/share/jupyter"
12650 "/kernels/ir/kernel.json")
12651 (("\\[\"R\",")
12652 (string-append "[\"" (which "R") "\",")))
12653 #t))))))
12654 (inputs
12655 `(("jupyter" ,jupyter)))
12656 (propagated-inputs
12657 `(("r-crayon" ,r-crayon)
12658 ("r-digest" ,r-digest)
12659 ("r-evaluate" ,r-evaluate)
12660 ("r-irdisplay" ,r-irdisplay)
12661 ("r-jsonlite" ,r-jsonlite)
12662 ;; sets R_LIBS_SITE, so R can actually find this package (IRkernel)
12663 ("r-minimal" ,r-minimal)
12664 ("r-pbdzmq" ,r-pbdzmq)
12665 ("r-repr" ,r-repr)
12666 ("r-uuid" ,r-uuid)))
12667 (home-page "https://cran.r-project.org/web/packages/IRkernel/")
12668 (synopsis "Native R kernel for Jupyter")
12669 (description
12670 "The R kernel for the Jupyter environment executes R code which the
12671 front-end (Jupyter Notebook or other front-ends) submits to the kernel via the
12672 network.")
12673 (license license:expat)))
12674
12675 (define-public r-gmodels
12676 (package
12677 (name "r-gmodels")
12678 (version "2.18.1")
12679 (source
12680 (origin
12681 (method url-fetch)
12682 (uri (cran-uri "gmodels" version))
12683 (sha256
12684 (base32
12685 "0s8kd8krqk4kwv2zqxpsfy3w8qdwf5naf4b5l383vidq9sil0qb2"))))
12686 (build-system r-build-system)
12687 (propagated-inputs
12688 `(("r-gdata" ,r-gdata)
12689 ("r-mass" ,r-mass)))
12690 (home-page "https://cran.r-project.org/web/packages/gmodels/")
12691 (synopsis "Various R programming tools for model fitting")
12692 (description
12693 "This package provides various R programming tools for model fitting.")
12694 (license license:gpl2)))
12695
12696 (define-public r-apcluster
12697 (package
12698 (name "r-apcluster")
12699 (version "1.4.8")
12700 (source
12701 (origin
12702 (method url-fetch)
12703 (uri (cran-uri "apcluster" version))
12704 (sha256
12705 (base32
12706 "0lzf2jqm56i74wif6x5sw3j0w2qc4sni49zq2fgbl89b7lwkvchj"))))
12707 (build-system r-build-system)
12708 (propagated-inputs
12709 `(("r-matrix" ,r-matrix)
12710 ("r-rcpp" ,r-rcpp)))
12711 (home-page "https://cran.r-project.org/web/packages/apcluster/")
12712 (synopsis "Affinity propagation clustering")
12713 (description
12714 "This package implements affinity propagation clustering introduced by
12715 Frey and Dueck (2007). The package further provides leveraged affinity
12716 propagation and an algorithm for exemplar-based agglomerative clustering that
12717 can also be used to join clusters obtained from affinity propagation. Various
12718 plotting functions are available for analyzing clustering results.")
12719 (license license:gpl2+)))
12720
12721 (define-public r-valr
12722 (package
12723 (name "r-valr")
12724 (version "0.5.0")
12725 (source
12726 (origin
12727 (method url-fetch)
12728 (uri (cran-uri "valr" version))
12729 (sha256
12730 (base32
12731 "14jhrwkiwmha3vlmm7b50n2xxyizj6ddmy89gb20mpzq7qhz1ika"))))
12732 (build-system r-build-system)
12733 (propagated-inputs
12734 `(("r-broom" ,r-broom)
12735 ("r-dplyr" ,r-dplyr)
12736 ("r-ggplot2" ,r-ggplot2)
12737 ("r-rcpp" ,r-rcpp)
12738 ("r-readr" ,r-readr)
12739 ("r-rlang" ,r-rlang)
12740 ("r-stringr" ,r-stringr)
12741 ("r-tibble" ,r-tibble)))
12742 (home-page "http://github.com/rnabioco/valr")
12743 (synopsis "Genome interval arithmetic in R")
12744 (description
12745 "This package enables you to read and manipulate genome intervals and
12746 signals. It provides functionality similar to command-line tool suites within
12747 R, enabling interactive analysis and visualization of genome-scale data.")
12748 (license license:expat)))
12749
12750 (define-public r-rematch2
12751 (package
12752 (name "r-rematch2")
12753 (version "2.1.1")
12754 (source
12755 (origin
12756 (method url-fetch)
12757 (uri (cran-uri "rematch2" version))
12758 (sha256
12759 (base32
12760 "13siaa8s2ji9q6hykhb2r34ag76335ypmbqr90xaqilbir0klhnh"))))
12761 (build-system r-build-system)
12762 (propagated-inputs
12763 `(("r-tibble" ,r-tibble)))
12764 (home-page "https://github.com/r-lib/rematch2")
12765 (synopsis "Tidy output from regular expression matching")
12766 (description
12767 "This package provides wrappers on @code{regexpr} and @code{gregexpr} to
12768 return the match results in tidy data frames.")
12769 (license license:expat)))
12770
12771 (define-public r-picante
12772 (package
12773 (name "r-picante")
12774 (version "1.8.1")
12775 (source
12776 (origin
12777 (method url-fetch)
12778 (uri (cran-uri "picante" version))
12779 (sha256
12780 (base32
12781 "1b16zm8zjjsl181b8krkdcrbcw347kf772c4w7y5332qmfi7jhz0"))))
12782 (build-system r-build-system)
12783 (propagated-inputs
12784 `(("r-ape" ,r-ape)
12785 ("r-nlme" ,r-nlme)
12786 ("r-vegan" ,r-vegan)))
12787 (home-page "https://cran.r-project.org/web/packages/picante/")
12788 (synopsis "Integrating phylogenies and ecology")
12789 (description
12790 "This package provides functions for phylocom integration, community
12791 analyses, null-models, traits and evolution. It implements numerous
12792 ecophylogenetic approaches including measures of community phylogenetic and
12793 trait diversity, phylogenetic signal, estimation of trait values for
12794 unobserved taxa, null models for community and phylogeny randomizations, and
12795 utility functions for data input/output and phylogeny plotting. A full
12796 description of package functionality and methods are provided by Kembel et
12797 al. (2010).")
12798 (license license:gpl2)))
12799
12800 (define-public r-reinforcelearn
12801 (package
12802 (name "r-reinforcelearn")
12803 (version "0.2.1")
12804 (source
12805 (origin
12806 (method url-fetch)
12807 (uri (cran-uri "reinforcelearn" version))
12808 (sha256
12809 (base32
12810 "176z2q69p24i29a8sh19xxn2zl3h1z2ixdssr5i6m4yvkvdrvv3b"))))
12811 (build-system r-build-system)
12812 (propagated-inputs
12813 `(("r-checkmate" ,r-checkmate)
12814 ("r-nnet" ,r-nnet)
12815 ("r-purrr" ,r-purrr)
12816 ("r-r6" ,r-r6)))
12817 (home-page "https://markusdumke.github.io/reinforcelearn")
12818 (synopsis "Reinforcement learning")
12819 (description
12820 "This package implements reinforcement learning environments and
12821 algorithms as described in Sutton & Barto (1998). The Q-Learning algorithm
12822 can be used with function approximation, eligibility traces (Singh & Sutton,
12823 1996) and experience replay (Mnih et al., 2013).")
12824 (license license:expat)))
12825
12826 (define-public r-lemon
12827 (package
12828 (name "r-lemon")
12829 (version "0.4.4")
12830 (source
12831 (origin
12832 (method url-fetch)
12833 (uri (cran-uri "lemon" version))
12834 (sha256
12835 (base32
12836 "0m9hqwi709j9iwsxn8jh63741jiyr7ppwgqaw2zkv285p3m5wvd5"))))
12837 (build-system r-build-system)
12838 (propagated-inputs
12839 `(("r-ggplot2" ,r-ggplot2)
12840 ("r-gridextra" ,r-gridextra)
12841 ("r-gtable" ,r-gtable)
12842 ("r-knitr" ,r-knitr)
12843 ("r-lattice" ,r-lattice)
12844 ("r-plyr" ,r-plyr)
12845 ("r-rlang" ,r-rlang)
12846 ("r-scales" ,r-scales)))
12847 (home-page "https://github.com/stefanedwards/lemon")
12848 (synopsis "Freshen up your ggplot2 plots")
12849 (description
12850 "This package provides functions for working with legends and axis lines
12851 of ggplot2, facets that repeat axis lines on all panels, and some knitr
12852 extensions.")
12853 (license license:gpl3)))
12854
12855 (define-public r-wgaim
12856 (package
12857 (name "r-wgaim")
12858 (version "2.0-1")
12859 (source
12860 (origin
12861 (method url-fetch)
12862 (uri (cran-uri "wgaim" version))
12863 (sha256
12864 (base32 "1qiyfkpsbzjr9xsq5kqq6rlqpndngkn2irdfh3gyi45h6hn118j4"))))
12865 (build-system r-build-system)
12866 (propagated-inputs
12867 `(("r-ggplot2" ,r-ggplot2)
12868 ("r-qtl" ,r-qtl)))
12869 (home-page "https://cran.r-project.org/web/packages/wgaim")
12870 (synopsis "Whole genome average interval mapping for QTL detection")
12871 (description
12872 "This package integrates sophisticated mixed modelling methods with a
12873 whole genome approach to detecting significant QTL in linkage maps.")
12874 (license license:gpl2+)))
12875
12876 (define-public r-bedr
12877 (package
12878 (name "r-bedr")
12879 (version "1.0.7")
12880 (source
12881 (origin
12882 (method url-fetch)
12883 (uri (cran-uri "bedr" version))
12884 (sha256
12885 (base32
12886 "0zpqvyjgwyqawxm8qrhcv8zq2b3yxgcqkkc87br29yrl7sjb8h6j"))))
12887 (build-system r-build-system)
12888 (propagated-inputs
12889 `(("r-data-table" ,r-data-table)
12890 ("r-r-utils" ,r-r-utils)
12891 ("r-testthat" ,r-testthat)
12892 ("r-venndiagram" ,r-venndiagram)
12893 ("r-yaml" ,r-yaml)
12894 ("bedops" ,bedops)
12895 ("bedtools" ,bedtools)
12896 ("htslib" ,htslib))) ; for tabix
12897 (native-inputs
12898 `(("r-knitr" ,r-knitr))) ; for vignettes
12899 (home-page "https://cran.r-project.org/web/packages/bedr")
12900 (synopsis "Genomic region processing")
12901 (description
12902 "This package is for genomic regions processing using command line tools
12903 such as BEDTools, BEDOPS and Tabix. These tools offer scalable and efficient
12904 utilities to perform genome arithmetic e.g indexing, formatting and merging.
12905 The bedr package's API enhances access to these tools as well as offers
12906 additional utilities for genomic regions processing.")
12907 (license license:gpl2)))
12908
12909 (define-public r-sets
12910 (package
12911 (name "r-sets")
12912 (version "1.0-18")
12913 (source
12914 (origin
12915 (method url-fetch)
12916 (uri (cran-uri "sets" version))
12917 (sha256
12918 (base32
12919 "16v7650p47khqrbbw0z98llmwmmhswqmhri0n7nrfhdqwmby1lbl"))))
12920 (properties `((upstream-name . "sets")))
12921 (build-system r-build-system)
12922 (home-page "https://cran.r-project.org/web/packages/sets")
12923 (synopsis "Sets, generalized sets, customizable sets and intervals")
12924 (description
12925 "This package provides data structures and basic operations for ordinary
12926 sets, generalizations such as fuzzy sets, multisets, and fuzzy multisets,
12927 customizable sets, and intervals.")
12928 (license license:gpl2)))
12929
12930 (define-public r-partitions
12931 (package
12932 (name "r-partitions")
12933 (version "1.9-22")
12934 (source
12935 (origin
12936 (method url-fetch)
12937 (uri (cran-uri "partitions" version))
12938 (sha256
12939 (base32
12940 "1qqy4df28wy4q0g572azrj171jlhvrnzbh7x0wr2g7v6gr20y0ns"))))
12941 (build-system r-build-system)
12942 (propagated-inputs
12943 `(("r-gmp" ,r-gmp)
12944 ("r-polynom" ,r-polynom)
12945 ("r-sets" ,r-sets)))
12946 (home-page "https://cran.r-project.org/web/packages/partitions")
12947 (synopsis "Additive partitions of integers")
12948 (description
12949 "This package provides tools to enumerates the partitions, unequal
12950 partitions, and restricted partitions of an integer; the three corresponding
12951 partition functions are also given.")
12952 ;; Any version of the GPL
12953 (license license:gpl2+)))
12954
12955 (define-public r-brobdingnag
12956 (package
12957 (name "r-brobdingnag")
12958 (version "1.2-6")
12959 (source
12960 (origin
12961 (method url-fetch)
12962 (uri (cran-uri "Brobdingnag" version))
12963 (sha256
12964 (base32
12965 "1m3ajvcksqfck5l5hj5xiflj4ry6d896ybv4f0xxks8chgnwmv0r"))))
12966 (properties `((upstream-name . "Brobdingnag")))
12967 (build-system r-build-system)
12968 (home-page "https://github.com/RobinHankin/Brobdingnag.git")
12969 (synopsis "Very large numbers in R")
12970 (description
12971 "This package handles very large numbers in R. Real numbers are held
12972 using their natural logarithms, plus a logical flag indicating sign. The
12973 package includes a vignette that gives a step-by-step introduction to using S4
12974 methods.")
12975 ;; Any version of the GPL
12976 (license license:gpl2+)))
12977
12978 (define-public r-untb
12979 (package
12980 (name "r-untb")
12981 (version "1.7-4")
12982 (source
12983 (origin
12984 (method url-fetch)
12985 (uri (cran-uri "untb" version))
12986 (sha256
12987 (base32
12988 "1i7m4vfslsix98dwx4jlrsldm7fhhfp25gr7aapcxqxms7ryaby6"))))
12989 (build-system r-build-system)
12990 (propagated-inputs
12991 `(("r-brobdingnag" ,r-brobdingnag)
12992 ("r-partitions" ,r-partitions)
12993 ("r-polynom" ,r-polynom)))
12994 (home-page "https://github.com/RobinHankin/untb.git")
12995 (synopsis "Ecological drift under the UNTB")
12996 (description
12997 "This package provides numerical simulations, and visualizations, of
12998 Hubbell's @dfn{Unified Neutral Theory of Biodiversity} (UNTB).")
12999 (license license:gpl2+)))
13000
13001 (define-public r-stepwise
13002 (package
13003 (name "r-stepwise")
13004 (version "0.3")
13005 (source
13006 (origin
13007 (method url-fetch)
13008 (uri (cran-uri "stepwise" version))
13009 (sha256
13010 (base32
13011 "1lbx1bxwkf9dw6q46w40pp7h5nkxgghmx8rkpaymm6iybc7gyir2"))))
13012 (build-system r-build-system)
13013 (home-page "https://stat.sfu.ca/statgen/research/stepwise.html")
13014 (synopsis "Stepwise detection of recombination breakpoints")
13015 (description
13016 "This package provides a stepwise approach to identifying recombination
13017 breakpoints in a genomic sequence alignment.")
13018 (license license:gpl2+)))
13019
13020 (define-public r-snpmaxsel
13021 (package
13022 (name "r-snpmaxsel")
13023 (version "1.0-3")
13024 (source
13025 (origin
13026 (method url-fetch)
13027 (uri (cran-uri "SNPmaxsel" version))
13028 (sha256
13029 (base32
13030 "0pjvixwqzjd3jwccc8yqq9c76afvbmfq0z1w0cwyj8bblrjpx13z"))))
13031 (properties `((upstream-name . "SNPmaxsel")))
13032 (build-system r-build-system)
13033 (propagated-inputs
13034 `(("r-combinat" ,r-combinat)
13035 ("r-mvtnorm" ,r-mvtnorm)))
13036 (home-page "https://cran.r-project.org/web/packages/SNPmaxsel/index.html")
13037 (synopsis "Maximally selected statistics for SNP data")
13038 (description
13039 "This package implements asymptotic methods related to maximally selected
13040 statistics, with applications to @dfn{single-nucleotide polymorphism} (SNP)
13041 data.")
13042 (license license:gpl2+)))
13043
13044 (define-public r-acsnminer
13045 (package
13046 (name "r-acsnminer")
13047 (version "0.16.8.25")
13048 (source (origin
13049 (method url-fetch)
13050 (uri (cran-uri "ACSNMineR" version))
13051 (sha256
13052 (base32
13053 "0gh604s8qall6zfjlwcg2ilxjvz08dplf9k5g47idhv43scm748l"))))
13054 (properties `((upstream-name . "ACSNMineR")))
13055 (build-system r-build-system)
13056 (propagated-inputs
13057 `(("r-ggplot2" ,r-ggplot2)
13058 ("r-gridextra" ,r-gridextra)))
13059 (home-page "https://cran.r-project.org/web/packages/ACSNMineR")
13060 (synopsis "Gene enrichment analysis")
13061 (description
13062 "This package provides tools to compute and represent gene set enrichment
13063 or depletion from your data based on pre-saved maps from the @dfn{Atlas of
13064 Cancer Signalling Networks} (ACSN) or user imported maps. The gene set
13065 enrichment can be run with hypergeometric test or Fisher exact test, and can
13066 use multiple corrections. Visualization of data can be done either by
13067 barplots or heatmaps.")
13068 (license license:gpl2+)))
13069
13070 (define-public r-seqinr
13071 (package
13072 (name "r-seqinr")
13073 (version "3.6-1")
13074 (source
13075 (origin
13076 (method url-fetch)
13077 (uri (cran-uri "seqinr" version))
13078 (sha256
13079 (base32
13080 "0j30za6kji6y3v09cvcydiacnp65pv6ig8aw7cydl47l5s9chky4"))))
13081 (build-system r-build-system)
13082 (propagated-inputs
13083 `(("r-ade4" ,r-ade4)
13084 ("r-segmented" ,r-segmented)))
13085 (inputs
13086 `(("zlib" ,zlib)))
13087 (home-page "http://seqinr.r-forge.r-project.org/")
13088 (synopsis "Biological sequences retrieval and analysis")
13089 (description
13090 "This package provides tools for exploratory data analysis and data
13091 visualization of biological sequence (DNA and protein) data. It also includes
13092 utilities for sequence data management under the ACNUC system.")
13093 (license license:gpl2+)))
13094
13095 (define-public r-units
13096 (package
13097 (name "r-units")
13098 (version "0.6-6")
13099 (source
13100 (origin
13101 (method url-fetch)
13102 (uri (cran-uri "units" version))
13103 (sha256
13104 (base32
13105 "11x6xz1fbml28xmrhgn4sii9vfyj3gyfc1dfxahdg9cszdmcgdnh"))))
13106 (build-system r-build-system)
13107 (inputs
13108 `(("udunits" ,udunits)))
13109 (propagated-inputs
13110 `(("r-rcpp" ,r-rcpp)))
13111 (native-inputs
13112 `(("r-knitr" ,r-knitr)))
13113 (home-page "https://github.com/r-quantities/units/")
13114 (synopsis "Measurement Units for R Vectors")
13115 (description
13116 "This package provides support for measurement units in R vectors,
13117 matrices and arrays: automatic propagation, conversion, derivation and
13118 simplification of units; raising errors in case of unit incompatibility. It
13119 is compatible with the @code{POSIXct}, @code{Date} and @code{difftime}
13120 classes.")
13121 (license license:gpl2)))
13122
13123 (define-public r-classint
13124 (package
13125 (name "r-classint")
13126 (version "0.4-2")
13127 (source
13128 (origin
13129 (method url-fetch)
13130 (uri (cran-uri "classInt" version))
13131 (sha256
13132 (base32
13133 "0w980hrw8sgfdfyd5dsimalq7gwhvqm7507abk7k363pvgks23dv"))))
13134 (properties `((upstream-name . "classInt")))
13135 (build-system r-build-system)
13136 (propagated-inputs
13137 `(("r-class" ,r-class)
13138 ("r-e1071" ,r-e1071)
13139 ("r-kernsmooth" ,r-kernsmooth)))
13140 (native-inputs `(("gfortran" ,gfortran)))
13141 (home-page "https://github.com/r-spatial/classInt/")
13142 (synopsis "Choose univariate class intervals")
13143 (description
13144 "This package provides selected commonly used methods for choosing
13145 univariate class intervals for mapping or other graphics purposes.")
13146 (license license:gpl2+)))
13147
13148 (define-public r-spdata
13149 (package
13150 (name "r-spdata")
13151 (version "0.3.3")
13152 (source
13153 (origin
13154 (method url-fetch)
13155 (uri (cran-uri "spData" version))
13156 (sha256
13157 (base32
13158 "1v66qkvsx77hvv5c78v760yp0hknf7xzcjir2ri3ha456mz79yl5"))))
13159 (properties `((upstream-name . "spData")))
13160 (build-system r-build-system)
13161 (propagated-inputs
13162 `(("r-raster" ,r-raster)
13163 ("r-sp" ,r-sp)))
13164 (home-page "https://github.com/Nowosad/spData")
13165 (synopsis "Datasets for spatial analysis")
13166 (description
13167 "This a package containing diverse spatial datasets for demonstrating,
13168 benchmarking and teaching spatial data analysis. It includes R data of class
13169 @code{sf}, @code{Spatial}, and @code{nb}. It also contains data stored in a
13170 range of file formats including GeoJSON, ESRI Shapefile and GeoPackage. Some
13171 of the datasets are designed to illustrate specific analysis techniques.
13172 @code{cycle_hire()} and @code{cycle_hire_osm()}, for example, are designed to
13173 illustrate point pattern analysis techniques.")
13174 (license license:cc0)))
13175
13176 (define-public r-learnbayes
13177 (package
13178 (name "r-learnbayes")
13179 (version "2.15.1")
13180 (source
13181 (origin
13182 (method url-fetch)
13183 (uri (cran-uri "LearnBayes" version))
13184 (sha256
13185 (base32
13186 "0ch54v2zz2yyyk0lvn5rfikdmyz1qh9j1wk3585wl8v58mc0h4cv"))))
13187 (properties `((upstream-name . "LearnBayes")))
13188 (build-system r-build-system)
13189 (home-page "https://cran.r-project.org/web/packages/LearnBayes")
13190 (synopsis "Functions for learning Bayesian inference")
13191 (description
13192 "This package provides a collection of functions helpful in learning the
13193 basic tenets of Bayesian statistical inference. It contains functions for
13194 summarizing basic one and two parameter posterior distributions and predictive
13195 distributions. It contains MCMC algorithms for summarizing posterior
13196 distributions defined by the user. It also contains functions for regression
13197 models, hierarchical models, Bayesian tests, and illustrations of Gibbs
13198 sampling.")
13199 (license license:gpl2+)))
13200
13201 (define-public r-deldir
13202 (package
13203 (name "r-deldir")
13204 (version "0.1-25")
13205 (source
13206 (origin
13207 (method url-fetch)
13208 (uri (cran-uri "deldir" version))
13209 (sha256
13210 (base32
13211 "0kdglv8rc1pb4ilcid4xc9wpv5kkj2y6x6wg7919k3hya7mz58ph"))))
13212 (build-system r-build-system)
13213 (native-inputs `(("gfortran" ,gfortran)))
13214 (home-page "https://cran.r-project.org/web/packages/deldir")
13215 (synopsis "Delaunay triangulation and Dirichlet (Voronoi) tessellation")
13216 (description
13217 "This package provides tools for calculating the Delaunay triangulation
13218 and the Dirichlet or Voronoi tessellation (with respect to the entire plane)
13219 of a planar point set. It plots triangulations and tessellations in various
13220 ways, clips tessellations to sub-windows, calculates perimeters of
13221 tessellations, and summarizes information about the tiles of the
13222 tessellation.")
13223 (license license:gpl2+)))
13224
13225 (define-public r-sf
13226 (package
13227 (name "r-sf")
13228 (version "0.9-0")
13229 (source
13230 (origin
13231 (method url-fetch)
13232 (uri (cran-uri "sf" version))
13233 (sha256
13234 (base32
13235 "117r9l3v7nkdj9bfy6qr0yz0gd5bv0pwnkc9vk2gv3xqj0h1fpf6"))))
13236 (build-system r-build-system)
13237 (inputs
13238 `(("gdal" ,gdal)
13239 ("geos" ,geos)
13240 ("proj" ,proj.4)
13241 ("zlib" ,zlib)))
13242 (propagated-inputs
13243 `(("r-classint" ,r-classint)
13244 ("r-dbi" ,r-dbi)
13245 ("r-magrittr" ,r-magrittr)
13246 ("r-rcpp" ,r-rcpp)
13247 ("r-units" ,r-units)))
13248 (native-inputs
13249 `(("pkg-config" ,pkg-config)
13250 ("r-knitr" ,r-knitr)))
13251 (home-page "https://github.com/r-spatial/sf/")
13252 (synopsis "Simple features for R")
13253 (description
13254 "This package provides support for simple features, a standardized way to
13255 encode spatial vector data. It binds to GDAL for reading and writing data, to
13256 GEOS for geometrical operations, and to PROJ for projection conversions and
13257 datum transformations.")
13258 ;; Either of these licenses
13259 (license (list license:gpl2 license:expat))))
13260
13261 (define-public r-spdep
13262 (package
13263 (name "r-spdep")
13264 (version "1.1-3")
13265 (source
13266 (origin
13267 (method url-fetch)
13268 (uri (cran-uri "spdep" version))
13269 (sha256
13270 (base32
13271 "1f8cjffqqc6rnb3n4qym70ca6nz2kvrsd3g587wrqdr79nnbwnrk"))))
13272 (build-system r-build-system)
13273 (propagated-inputs
13274 `(("r-boot" ,r-boot)
13275 ("r-coda" ,r-coda)
13276 ("r-deldir" ,r-deldir)
13277 ("r-expm" ,r-expm)
13278 ("r-gmodels" ,r-gmodels)
13279 ("r-learnbayes" ,r-learnbayes)
13280 ("r-mass" ,r-mass)
13281 ("r-matrix" ,r-matrix)
13282 ("r-nlme" ,r-nlme)
13283 ("r-sf" ,r-sf)
13284 ("r-sp" ,r-sp)
13285 ("r-spdata" ,r-spdata)))
13286 (home-page "https://github.com/r-spatial/spdep/")
13287 (synopsis "Spatial dependence: weighting schemes, statistics and models")
13288 (description
13289 "This package provides a collection of functions to create spatial
13290 weights matrix objects from polygon contiguities, from point patterns by
13291 distance and tessellations, for summarizing these objects, and for permitting
13292 their use in spatial data analysis, including regional aggregation by minimum
13293 spanning tree.")
13294 (license license:gpl2+)))
13295
13296 (define-public r-adegenet
13297 (package
13298 (name "r-adegenet")
13299 (version "2.1.2")
13300 (source
13301 (origin
13302 (method url-fetch)
13303 (uri (cran-uri "adegenet" version))
13304 (sha256
13305 (base32
13306 "01fgrgbiddz2q4l3mx637hhwbs7r0c43yw7vpwl8p8pwbm3nykz0"))))
13307 (build-system r-build-system)
13308 (propagated-inputs
13309 `(("r-ade4" ,r-ade4)
13310 ("r-ape" ,r-ape)
13311 ("r-boot" ,r-boot)
13312 ("r-dplyr" ,r-dplyr)
13313 ("r-ggplot2" ,r-ggplot2)
13314 ("r-igraph" ,r-igraph)
13315 ("r-mass" ,r-mass)
13316 ("r-reshape2" ,r-reshape2)
13317 ("r-seqinr" ,r-seqinr)
13318 ("r-shiny" ,r-shiny)
13319 ("r-spdep" ,r-spdep)
13320 ("r-vegan" ,r-vegan)))
13321 (home-page "https://github.com/thibautjombart/adegenet")
13322 (synopsis "Exploratory analysis of genetic and genomic data")
13323 (description
13324 "This package provides a toolset for the exploration of genetic and
13325 genomic data. Adegenet provides formal (S4) classes for storing and handling
13326 various genetic data, including genetic markers with varying ploidy and
13327 hierarchical population structure (@code{genind} class), alleles counts by
13328 populations (@code{genpop}), and genome-wide SNP data (@code{genlight}). It
13329 also implements original multivariate methods (DAPC, sPCA), graphics,
13330 statistical tests, simulation tools, distance and similarity measures, and
13331 several spatial methods. A range of both empirical and simulated datasets is
13332 also provided to illustrate various methods.")
13333 (license license:gpl2+)))
13334
13335 (define-public r-pegas
13336 (package
13337 (name "r-pegas")
13338 (version "0.13")
13339 (source
13340 (origin
13341 (method url-fetch)
13342 (uri (cran-uri "pegas" version))
13343 (sha256
13344 (base32 "002i7s4g0nhnq0v05gs0yssqiyhpq2f7rw2rhn31hsbgxc86frvy"))))
13345 (build-system r-build-system)
13346 (propagated-inputs
13347 `(("r-adegenet" ,r-adegenet)
13348 ("r-ape" ,r-ape)))
13349 (home-page "http://ape-package.ird.fr/pegas.html")
13350 (synopsis "Population and evolutionary genetics analysis system")
13351 (description
13352 "This package provides functions for reading, writing, plotting,
13353 analysing, and manipulating allelic and haplotypic data, including from VCF
13354 files, and for the analysis of population nucleotide sequences and
13355 micro-satellites including coalescent analyses, linkage disequilibrium,
13356 population structure (Fst, Amova) and equilibrium (HWE), haplotype networks,
13357 minimum spanning tree and network, and median-joining networks.")
13358 (license license:gpl2+)))
13359
13360 (define-public r-rmetasim
13361 (package
13362 (name "r-rmetasim")
13363 (version "3.1.14")
13364 (source
13365 (origin
13366 (method url-fetch)
13367 (uri (cran-uri "rmetasim" version))
13368 (sha256
13369 (base32
13370 "0rdkhfgyr97r2d1kd9g8ipb2pn563qxm1y4m9z678q0kqan2ddl0"))))
13371 (build-system r-build-system)
13372 (propagated-inputs
13373 `(("r-ade4" ,r-ade4)
13374 ("r-adegenet" ,r-adegenet)
13375 ("r-gtools" ,r-gtools)
13376 ("r-pegas" ,r-pegas)))
13377 (home-page "https://cran.r-project.org/web/packages/rmetasim")
13378 (synopsis "Individual-based population genetic simulation environment")
13379 (description
13380 "This package provides an interface between R and the metasim simulation
13381 engine. The simulation environment is documented in: Strand, A.(2002),
13382 Metasim 1.0: an individual-based environment for simulating population
13383 genetics of complex population dynamics.")
13384 ;; Any GPL version
13385 (license license:gpl2+)))
13386
13387 (define-public r-genetics
13388 (package
13389 (name "r-genetics")
13390 (version "1.3.8.1.2")
13391 (source
13392 (origin
13393 (method url-fetch)
13394 (uri (cran-uri "genetics" version))
13395 (sha256
13396 (base32
13397 "1v0ylnia6c44v356dsmnkx6054vcxazpzsrdh3yph5ch5vg6gjrh"))))
13398 (build-system r-build-system)
13399 (propagated-inputs
13400 `(("r-combinat" ,r-combinat)
13401 ("r-gdata" ,r-gdata)
13402 ("r-gtools" ,r-gtools)
13403 ("r-mass" ,r-mass)
13404 ("r-mvtnorm" ,r-mvtnorm)))
13405 (home-page "https://cran.r-project.org/web/packages/genetics/")
13406 (synopsis "Population genetics")
13407 (description
13408 "This package provides classes and methods for handling genetic data.
13409 It includes classes to represent genotypes and haplotypes at single markers up
13410 to multiple markers on multiple chromosomes. Function include allele
13411 frequencies, flagging homo/heterozygotes, flagging carriers of certain
13412 alleles, estimating and testing for Hardy-Weinberg disequilibrium, estimating
13413 and testing for linkage disequilibrium, ...")
13414 ;; Any GPL version.
13415 (license license:gpl2+)))
13416
13417 (define-public r-snp-plotter
13418 (package
13419 (name "r-snp-plotter")
13420 (version "0.5.1")
13421 (source
13422 (origin
13423 (method url-fetch)
13424 (uri (cran-uri "snp.plotter" version))
13425 (sha256
13426 (base32
13427 "16apsqvkah5l0d5qcwp3lq2jspkb6n62wzr0wskmj84jblx483vv"))))
13428 (properties `((upstream-name . "snp.plotter")))
13429 (build-system r-build-system)
13430 (propagated-inputs `(("r-genetics" ,r-genetics)))
13431 (home-page "https://cran.r-project.org/web/packages/snp.plotter/")
13432 (synopsis "Plot p-values using single SNP and/or haplotype data")
13433 (description
13434 "This package helps you create plots of p-values using single SNP and/or
13435 haplotype data. Main features of the package include options to display a
13436 @dfn{linkage disequilibrium} (LD) plot and the ability to plot multiple
13437 datasets simultaneously. Plots can be created using global and/or individual
13438 haplotype p-values along with single SNP p-values. Images are created as
13439 either PDF/EPS files.")
13440 (license license:gpl2+)))
13441
13442 (define-public r-polspline
13443 (package
13444 (name "r-polspline")
13445 (version "1.1.17")
13446 (source
13447 (origin
13448 (method url-fetch)
13449 (uri (cran-uri "polspline" version))
13450 (sha256
13451 (base32 "0c7fnxpqpy3hibiim4yib6l6bq363s97wwvllxp4lp8h06fjcyyn"))))
13452 (build-system r-build-system)
13453 (native-inputs `(("gfortran" ,gfortran)))
13454 (home-page "https://cran.r-project.org/web/packages/polspline/")
13455 (synopsis "Polynomial spline routines")
13456 (description
13457 "This package provides routines for the polynomial spline fitting
13458 routines hazard regression, hazard estimation with flexible tails, logspline,
13459 lspec, polyclass, and polymars.")
13460 (license license:gpl2+)))
13461
13462 (define-public r-rms
13463 (package
13464 (name "r-rms")
13465 (version "5.1-4")
13466 (source
13467 (origin
13468 (method url-fetch)
13469 (uri (cran-uri "rms" version))
13470 (sha256
13471 (base32 "19knh1sw0icw6jh9wfb2hq5jf49i2qfvp9myvqm5paa495689x9q"))))
13472 (build-system r-build-system)
13473 (propagated-inputs
13474 `(("r-ggplot2" ,r-ggplot2)
13475 ("r-hmisc" ,r-hmisc)
13476 ("r-htmltable" ,r-htmltable)
13477 ("r-htmltools" ,r-htmltools)
13478 ("r-lattice" ,r-lattice)
13479 ("r-multcomp" ,r-multcomp)
13480 ("r-nlme" ,r-nlme)
13481 ("r-polspline" ,r-polspline)
13482 ("r-quantreg" ,r-quantreg)
13483 ("r-rpart" ,r-rpart)
13484 ("r-sparsem" ,r-sparsem)
13485 ("r-survival" ,r-survival)))
13486 (native-inputs `(("gfortran" ,gfortran)))
13487 (home-page "http://biostat.mc.vanderbilt.edu/rms")
13488 (synopsis "Regression modeling strategies")
13489 (description
13490 "This is a package for regression modeling, testing, estimation,
13491 validation, graphics, prediction, and typesetting by storing enhanced model
13492 design attributes in the fit. The rms package is a collection of functions
13493 that assist with and streamline modeling. It also contains functions for
13494 binary and ordinal logistic regression models, ordinal models for continuous Y
13495 with a variety of distribution families, and the Buckley-James multiple
13496 regression model for right-censored responses, and implements penalized
13497 maximum likelihood estimation for logistic and ordinary linear models. The
13498 package works with almost any regression model, but it was especially written
13499 to work with binary or ordinal regression models, Cox regression, accelerated
13500 failure time models, ordinary linear models, the Buckley-James model,
13501 generalized least squares for serially or spatially correlated observations,
13502 generalized linear models, and quantile regression.")
13503 (license license:gpl2+)))
13504
13505 (define-public r-haplo-stats
13506 (package
13507 (name "r-haplo-stats")
13508 (version "1.7.9")
13509 (source
13510 (origin
13511 (method url-fetch)
13512 (uri (cran-uri "haplo.stats" version))
13513 (sha256
13514 (base32
13515 "19kxascqq5qz0zdxx0w837ji207y1z2ggxkl4vmlbay03k2dw2mx"))))
13516 (properties `((upstream-name . "haplo.stats")))
13517 (build-system r-build-system)
13518 (propagated-inputs
13519 `(("r-rms" ,r-rms)))
13520 (native-inputs
13521 `(("r-r-rsp" ,r-r-rsp))) ; for vignettes
13522 (home-page "https://www.mayo.edu/research/labs/statistical-genetics-genetic-epidemiology/software")
13523 (synopsis "Analysis of haplotypes when linkage phase is ambiguous")
13524 (description
13525 "This package provides routines for the analysis of indirectly measured
13526 haplotypes. The statistical methods assume that all subjects are unrelated
13527 and that haplotypes are ambiguous (due to unknown linkage phase of the genetic
13528 markers). The main functions are: @code{haplo.em()}, @code{haplo.glm()},
13529 @code{haplo.score()}, and @code{haplo.power()}; all of which have detailed
13530 examples in the vignette.")
13531 (license license:gpl2+)))
13532
13533 (define-public r-bqtl
13534 (package
13535 (name "r-bqtl")
13536 (version "1.0-32")
13537 (source
13538 (origin
13539 (method url-fetch)
13540 (uri (cran-uri "bqtl" version))
13541 (sha256
13542 (base32
13543 "0jjqgsm9fmvz5nkgz608xfljjpmaf4rs4f7kxvpqn4b1l9s5lhci"))))
13544 (build-system r-build-system)
13545 (native-inputs `(("gfortran" ,gfortran)))
13546 (home-page "http://famprevmed.ucsd.edu/faculty/cberry/bqtl/")
13547 (synopsis "Bayesian QTL mapping toolkit")
13548 (description
13549 "This is a QTL mapping toolkit for inbred crosses and recombinant inbred
13550 lines. It includes maximum likelihood and Bayesian tools.")
13551 (license license:gpl2+)))
13552
13553 (define-public r-ibdreg
13554 (package
13555 (name "r-ibdreg")
13556 (version "0.2.5")
13557 (source
13558 (origin
13559 (method url-fetch)
13560 (uri (cran-uri "ibdreg" version))
13561 (sha256
13562 (base32
13563 "1kaa5q1byi30wzr0mw4w2cv1ssxprzcwf91wrpqwkgcsdy7dkh2g"))))
13564 (build-system r-build-system)
13565 (home-page "https://www.mayo.edu/research/labs/\
13566 statistical-genetics-genetic-epidemiology/software")
13567 (synopsis "Regression methods for IBD linkage with covariates")
13568 (description
13569 "This package provides a method to test genetic linkage with covariates
13570 by regression methods with response IBD sharing for relative pairs. Account
13571 for correlations of IBD statistics and covariates for relative pairs within
13572 the same pedigree.")
13573 (license license:gpl2+)))
13574
13575 (define-public r-dlmap
13576 (package
13577 (name "r-dlmap")
13578 (version "1.13")
13579 (source
13580 (origin
13581 (method url-fetch)
13582 (uri (cran-uri "dlmap" version))
13583 (sha256
13584 (base32
13585 "0s6wlkggkm3qndwyvw72xv1n0mcjb7ss3ajbq2ll6rv30splq0db"))))
13586 (build-system r-build-system)
13587 (propagated-inputs
13588 `(("r-ibdreg" ,r-ibdreg)
13589 ("r-mgcv" ,r-mgcv)
13590 ("r-nlme" ,r-nlme)
13591 ("r-qtl" ,r-qtl)
13592 ("r-wgaim" ,r-wgaim)))
13593 (home-page "https://cran.r-project.org/web/packages/dlmap/")
13594 (synopsis "Detection localization mapping for QTL")
13595 (description
13596 "This is package for QTL mapping in a mixed model framework with separate
13597 detection and localization stages. The first stage detects the number of QTL
13598 on each chromosome based on the genetic variation due to grouped markers on
13599 the chromosome; the second stage uses this information to determine the most
13600 likely QTL positions. The mixed model can accommodate general fixed and
13601 random effects, including spatial effects in field trials and pedigree
13602 effects. It is applicable to backcrosses, doubled haploids, recombinant
13603 inbred lines, F2 intercrosses, and association mapping populations.")
13604 (license license:gpl2)))
13605
13606 (define-public r-ldheatmap
13607 (package
13608 (name "r-ldheatmap")
13609 (version "0.99-7")
13610 (source
13611 (origin
13612 (method url-fetch)
13613 (uri (cran-uri "LDheatmap" version))
13614 (sha256
13615 (base32
13616 "1r0j8bihi5z1x0sgaf7dwzpsw9i0nc1vylvipvc0cia2ka1lr9dc"))))
13617 (properties `((upstream-name . "LDheatmap")))
13618 (build-system r-build-system)
13619 (propagated-inputs
13620 `(("r-genetics" ,r-genetics)
13621 ("r-rcpp" ,r-rcpp)
13622 ("r-snpstats" ,r-snpstats)))
13623 (home-page "https://stat.sfu.ca/statgen/research/ldheatmap.html")
13624 (synopsis "Graphical display of pairwise linkage disequilibria between SNPs")
13625 (description
13626 "This package provides tools to produce a graphical display, as a heat
13627 map, of measures of pairwise linkage disequilibria between SNPs. Users may
13628 optionally include the physical locations or genetic map distances of each SNP
13629 on the plot.")
13630 (license license:gpl3)))
13631
13632 (define-public r-hwde
13633 (package
13634 (name "r-hwde")
13635 (version "0.67")
13636 (source
13637 (origin
13638 (method url-fetch)
13639 (uri (cran-uri "hwde" version))
13640 (sha256
13641 (base32
13642 "0wb2f9i5qi7w77ygh8bvydfpr7j5x8dyvnnhdkajaz0wdcpkyaqy"))))
13643 (build-system r-build-system)
13644 (home-page "https://cran.r-project.org/web/packages/hwde/")
13645 (synopsis "Models and tests for departure from Hardy-Weinberg equilibrium")
13646 (description
13647 "This package fits models for genotypic disequilibria, as described in
13648 Huttley and Wilson (2000), Weir (1996) and Weir and Wilson (1986). Contrast
13649 terms are available that account for first order interactions between loci.
13650 It also implements, for a single locus in a single population, a conditional
13651 exact test for Hardy-Weinberg equilibrium.")
13652 (license license:gpl2+)))
13653
13654 (define-public r-tdthap
13655 (package
13656 (name "r-tdthap")
13657 (version "1.1-11")
13658 (source
13659 (origin
13660 (method url-fetch)
13661 (uri (cran-uri "tdthap" version))
13662 (sha256
13663 (base32
13664 "15qlj2bivvz3pizd8dq34wczbkbxhzqh3cqp1ixkdkprlyvcxj5k"))))
13665 (build-system r-build-system)
13666 (home-page "https://cran.r-project.org/web/packages/tdthap/")
13667 (synopsis "TDT tests for extended haplotypes")
13668 (description
13669 "Functions and examples are provided for transmission/disequilibrium
13670 tests for extended marker haplotypes, as in Clayton, D. and Jones, H. (1999)
13671 \"Transmission/disequilibrium tests for extended marker haplotypes\".")
13672 (license license:artistic2.0)))
13673
13674 (define-public r-sparql
13675 (package
13676 (name "r-sparql")
13677 (version "1.16")
13678 (source (origin
13679 (method url-fetch)
13680 (uri (cran-uri "SPARQL" version))
13681 (sha256
13682 (base32
13683 "0gak1q06yyhdmcxb2n3v0h9gr1vqd0viqji52wpw211qp6r6dcrc"))))
13684 (properties `((upstream-name . "SPARQL")))
13685 (build-system r-build-system)
13686 (propagated-inputs
13687 `(("r-rcurl" ,r-rcurl)
13688 ("r-xml" ,r-xml)))
13689 (home-page "https://cran.r-project.org/web/packages/SPARQL")
13690 (synopsis "SPARQL client for R")
13691 (description "This package provides an interface to use SPARQL to pose
13692 SELECT or UPDATE queries to an end-point.")
13693 ;; The only license indication is found in the DESCRIPTION file,
13694 ;; which states GPL-3. So we cannot assume GPLv3+.
13695 (license license:gpl3)))
13696
13697 (define-public r-bookdown
13698 (package
13699 (name "r-bookdown")
13700 (version "0.18")
13701 (source (origin
13702 (method url-fetch)
13703 (uri (cran-uri "bookdown" version))
13704 (sha256
13705 (base32
13706 "1my6g16phx21v5cvfqcnjibh3zcv02xkix347aafd6a7r3hnxpq5"))))
13707 (build-system r-build-system)
13708 (propagated-inputs
13709 `(("r-htmltools" ,r-htmltools)
13710 ("r-knitr" ,r-knitr)
13711 ("r-rmarkdown" ,r-rmarkdown)
13712 ("r-tinytex" ,r-tinytex)
13713 ("r-xfun" ,r-xfun)
13714 ("pandoc" ,ghc-pandoc)))
13715 (home-page "https://github.com/rstudio/bookdown")
13716 (synopsis "Authoring books and technical documents with R markdown")
13717 (description "This package provides output formats and utilities for
13718 authoring books and technical documents with R Markdown.")
13719 (license license:gpl3)))
13720
13721 (define-public r-optparse
13722 (package
13723 (name "r-optparse")
13724 (version "1.6.4")
13725 (source
13726 (origin
13727 (method url-fetch)
13728 (uri (cran-uri "optparse" version))
13729 (sha256
13730 (base32
13731 "0wyrc42ja3ab5szx46zmz8lm7vzfqxkjca0m0sms8g9hqbmmay6d"))))
13732 (build-system r-build-system)
13733 (propagated-inputs
13734 `(("r-getopt" ,r-getopt)))
13735 (home-page "https://github.com/trevorld/optparse")
13736 (synopsis "Command line option parser")
13737 (description
13738 "This package provides a command line parser inspired by Python's
13739 @code{optparse} library to be used with Rscript to write shebang scripts
13740 that accept short and long options.")
13741 (license license:gpl2+)))
13742
13743 (define-public r-wgcna
13744 (package
13745 (name "r-wgcna")
13746 (version "1.69")
13747 (source
13748 (origin
13749 (method url-fetch)
13750 (uri (cran-uri "WGCNA" version))
13751 (sha256
13752 (base32
13753 "022hkprnrafvggi8pkjffkvk1qlnibmbbxxrni00wkrdbga5589f"))))
13754 (properties `((upstream-name . "WGCNA")))
13755 (build-system r-build-system)
13756 (propagated-inputs
13757 `(("r-annotationdbi" ,r-annotationdbi)
13758 ("r-doparallel" ,r-doparallel)
13759 ("r-dynamictreecut" ,r-dynamictreecut)
13760 ("r-fastcluster" ,r-fastcluster)
13761 ("r-foreach" ,r-foreach)
13762 ("r-go-db" ,r-go-db)
13763 ("r-hmisc" ,r-hmisc)
13764 ("r-impute" ,r-impute)
13765 ("r-rcpp" ,r-rcpp)
13766 ("r-survival" ,r-survival)
13767 ("r-matrixstats" ,r-matrixstats)
13768 ("r-preprocesscore" ,r-preprocesscore)))
13769 (home-page
13770 "http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/Rpackages/WGCNA/")
13771 (synopsis "Weighted correlation network analysis")
13772 (description
13773 "This package provides functions necessary to perform Weighted
13774 Correlation Network Analysis on high-dimensional data. It includes functions
13775 for rudimentary data cleaning, construction and summarization of correlation
13776 networks, module identification and functions for relating both variables and
13777 modules to sample traits. It also includes a number of utility functions for
13778 data manipulation and visualization.")
13779 (license license:gpl2+)))
13780
13781 (define-public r-kernlab
13782 (package
13783 (name "r-kernlab")
13784 (version "0.9-29")
13785 (source
13786 (origin
13787 (method url-fetch)
13788 (uri (cran-uri "kernlab" version))
13789 (sha256
13790 (base32 "0vqhndl4zm7pvkfvq0f6i9cbrm7pij6kmdp7d7w39pa100x6knn3"))))
13791 (build-system r-build-system)
13792 (home-page "https://cran.r-project.org/web/packages/kernlab")
13793 (synopsis "Kernel-based machine learning tools")
13794 (description
13795 "This package provides kernel-based machine learning methods for
13796 classification, regression, clustering, novelty detection, quantile regression
13797 and dimensionality reduction. Among other methods @code{kernlab} includes
13798 Support Vector Machines, Spectral Clustering, Kernel PCA, Gaussian Processes
13799 and a QP solver.")
13800 (license license:gpl2)))
13801
13802 (define-public r-hierfstat
13803 (package
13804 (name "r-hierfstat")
13805 (version "0.04-22")
13806 (source
13807 (origin
13808 (method url-fetch)
13809 (uri (cran-uri "hierfstat" version))
13810 (sha256
13811 (base32
13812 "1fav2v2996v5kb1ffa6v5wxfm921syxg6as034vd3j4jfhdibyfx"))))
13813 (build-system r-build-system)
13814 (propagated-inputs
13815 `(("r-ade4" ,r-ade4)
13816 ("r-adegenet" ,r-adegenet)
13817 ("r-gtools" ,r-gtools)))
13818 (home-page "https://cran.r-project.org/web/packages/hierfstat/")
13819 (synopsis "Estimation and tests of hierarchical F-statistics")
13820 (description
13821 "This package allows the estimation of hierarchical F-statistics from
13822 haploid or diploid genetic data with any numbers of levels in the hierarchy,
13823 following the algorithm of Yang (Evolution, 1998, 52(4):950-956). Functions
13824 are also given to test via randomisations the significance of each F and
13825 variance components, using the likelihood-ratio statistics G.")
13826 (license license:gpl2+)))
13827
13828 (define-public r-hapassoc
13829 (package
13830 (name "r-hapassoc")
13831 (version "1.2-8")
13832 (source
13833 (origin
13834 (method url-fetch)
13835 (uri (cran-uri "hapassoc" version))
13836 (sha256
13837 (base32
13838 "0qs5jl0snzfchgpp6pabncwywxcmi743g91jvjiyyzw0lw85yv4s"))))
13839 (build-system r-build-system)
13840 (home-page "https://stat.sfu.ca/statgen/research/hapassoc.html")
13841 (synopsis "Inference of trait associations with SNP haplotypes")
13842 (description
13843 "Hapassoc performs likelihood inference of trait associations with
13844 haplotypes and other covariates in @dfn{generalized linear models} (GLMs). The
13845 functions are developed primarily for data collected in cohort or
13846 cross-sectional studies. They can accommodate uncertain haplotype phase and
13847 handle missing genotypes at some SNPs.")
13848 (license license:gpl2)))
13849
13850 (define-public r-sampling
13851 (package
13852 (name "r-sampling")
13853 (version "2.8")
13854 (source
13855 (origin
13856 (method url-fetch)
13857 (uri (cran-uri "sampling" version))
13858 (sha256
13859 (base32
13860 "06pj7dan0mknpsblmlnk7am78qrnwgnql5vvx7vmbfvib7rj6s9m"))))
13861 (build-system r-build-system)
13862 (propagated-inputs
13863 `(("r-lpsolve" ,r-lpsolve)
13864 ("r-mass" ,r-mass)))
13865 (home-page "https://cran.r-project.org/web/packages/sampling/")
13866 (synopsis "Survey sampling")
13867 (description
13868 "This package provides functions for drawing and calibrating samples.")
13869 (license license:gpl2+)))
13870
13871 (define-public r-r2html
13872 (package
13873 (name "r-r2html")
13874 (version "2.3.2")
13875 (source
13876 (origin
13877 (method url-fetch)
13878 (uri (cran-uri "R2HTML" version))
13879 (sha256
13880 (base32
13881 "00kxny7hajs9r2kw63qk7d03ggdxx2j1g8vbrmzp806y8aczvik9"))))
13882 (properties `((upstream-name . "R2HTML")))
13883 (build-system r-build-system)
13884 (home-page "https://github.com/nalimilan/R2HTML")
13885 (synopsis "HTML export for R objects")
13886 (description
13887 "This package includes HTML functions and methods to write in an HTML
13888 file. Thus, making HTML reports is easy. It includes a function that allows
13889 redirection on the fly, which appears to be very useful for teaching purposes,
13890 as the student can keep a copy of the produced output to keep all that they
13891 did during the course. The package comes with a vignette describing how to
13892 write HTML reports for statistical analysis. Finally, a driver for Sweave
13893 parses HTML flat files containing R code and to automatically write
13894 the corresponding outputs (tables and graphs).")
13895 (license license:gpl2+)))
13896
13897 (define-public r-rjava
13898 (package
13899 (name "r-rjava")
13900 (version "0.9-12")
13901 (source
13902 (origin
13903 (method url-fetch)
13904 (uri (cran-uri "rJava" version))
13905 (sha256
13906 (base32
13907 "03vv0pj6san03c51iyqsyb1rwh3097dfpl2s8iswzzmc7k3shj12"))))
13908 (properties `((upstream-name . "rJava")))
13909 (build-system r-build-system)
13910 (arguments
13911 `(#:modules ((guix build utils)
13912 (guix build r-build-system)
13913 (ice-9 match))
13914 #:phases
13915 (modify-phases %standard-phases
13916 (add-after 'unpack 'set-JAVA_HOME
13917 (lambda* (#:key inputs #:allow-other-keys)
13918 (let ((jdk (assoc-ref inputs "jdk")))
13919 (setenv "JAVA_HOME" jdk)
13920 (setenv "JAVA" (which "java"))
13921 (setenv "JAR" (which "jar"))
13922 (setenv "JAVAC" (which "javac"))
13923 (setenv "JAVAH" (which "javah"))
13924 (setenv "JAVA_CPPFLAGS"
13925 (string-append "-I" jdk "/include "
13926 "-I" jdk "/include/linux"))
13927 (match (find-files (string-append jdk "/jre/lib/") "libjvm.so")
13928 ((lib) (setenv "JAVA_LIBS" lib))
13929 (_ (error "Could not find libjvm.so"))))
13930 #t)))))
13931 (inputs
13932 `(("icu4c" ,icu4c)
13933 ("jdk" ,icedtea-8 "jdk")
13934 ("pcre" ,pcre)
13935 ("zlib" ,zlib)))
13936 (home-page "https://www.rforge.net/rJava/")
13937 (synopsis "Low-Level R to Java interface")
13938 (description
13939 "This package provides a low-level interface to the Java VM very much
13940 like .C/.Call and friends. It allows the creation of objects, calling methods
13941 and accessing fields.")
13942 (license license:gpl2)))
13943
13944 (define-public r-svmisc
13945 (package
13946 (name "r-svmisc")
13947 (version "1.1.0")
13948 (source
13949 (origin
13950 (method url-fetch)
13951 (uri (cran-uri "svMisc" version))
13952 (sha256
13953 (base32
13954 "01r2a73wx2sh1njky961fxabx5wgddqqjqba6vjg0f3h8r3abmn2"))))
13955 (properties `((upstream-name . "svMisc")))
13956 (build-system r-build-system)
13957 (home-page "https://github.com/SciViews/svMisc")
13958 (synopsis "Miscellaneous functions for SciViews")
13959 (description
13960 "This package provides miscellaneous functions for SciViews or general
13961 use, including tools to manage a temporary environment attached to the search
13962 path for temporary variables you do not want to @code{save()} or
13963 @code{load()}; test the current platform; showing progress bars, etc.")
13964 (license license:gpl2)))
13965
13966 (define-public r-xyz
13967 (package
13968 (name "r-xyz")
13969 (version "0.2")
13970 (source
13971 (origin
13972 (method url-fetch)
13973 (uri (cran-uri "xyz" version))
13974 (sha256
13975 (base32
13976 "13w4sb4pvgciwr8wsz785dafj2k2kpx7znz46r5d32wx88vkycp4"))))
13977 (build-system r-build-system)
13978 (propagated-inputs
13979 `(("r-rcpp" ,r-rcpp)))
13980 (home-page "https://cran.r-project.org/web/packages/xyz/")
13981 (synopsis "Algorithm for fast interaction search in high-dimensional data")
13982 (description
13983 "High dimensional interaction search by brute force requires a quadratic
13984 computational cost in the number of variables. The xyz algorithm provably
13985 finds strong interactions in almost linear time. For details of the algorithm
13986 see: G. Thanei, N. Meinshausen and R. Shah (2016). The xyz algorithm for fast
13987 interaction search in high-dimensional data.")
13988 ;; Any version of the GPL.
13989 (license license:gpl2+)))
13990
13991 (define-public r-rttf2pt1
13992 (package
13993 (name "r-rttf2pt1")
13994 (version "1.3.8")
13995 (source
13996 (origin
13997 (method url-fetch)
13998 (uri (cran-uri "Rttf2pt1" version))
13999 (sha256
14000 (base32
14001 "0b3f2zkmbyshn19cnaaf042d0zwf43l9jnkqizfhxxwb93a4c1jn"))))
14002 (properties `((upstream-name . "Rttf2pt1")))
14003 (build-system r-build-system)
14004 (home-page "https://github.com/wch/Rttf2pt1")
14005 (synopsis "Font conversion utility")
14006 (description
14007 "This package contains the program @code{ttf2pt1}, for use with the
14008 @code{extrafont} package.")
14009 ;; Most of the files are covered under the Expat license. Some files are
14010 ;; covered under BSD-3. Deviations for individual files are recorded in
14011 ;; the LICENSE file.
14012 (license (list license:bsd-3 license:expat
14013 (license:non-copyleft "file://LICENSE")))))
14014
14015 (define-public r-extrafontdb
14016 (package
14017 (name "r-extrafontdb")
14018 (version "1.0")
14019 (source
14020 (origin
14021 (method url-fetch)
14022 (uri (cran-uri "extrafontdb" version))
14023 (sha256
14024 (base32
14025 "115n42hfvv5h4nn4cfkfmkmn968py4lpy8zd0d6w5yylwpzbm8gs"))))
14026 (build-system r-build-system)
14027 (home-page "https://github.com/wch/extrafontdb")
14028 (synopsis "Database for the extrafont package")
14029 (description
14030 "This package holds the database for the @code{extrafont} package.")
14031 (license license:gpl2)))
14032
14033 (define-public r-extrafont
14034 (package
14035 (name "r-extrafont")
14036 (version "0.17")
14037 (source
14038 (origin
14039 (method url-fetch)
14040 (uri (cran-uri "extrafont" version))
14041 (sha256
14042 (base32
14043 "0b9k2n9sk23bh45hjgnkxpjyvpdrz1hx7kmxvmb4nhlhm1wpsv9g"))))
14044 (build-system r-build-system)
14045 (propagated-inputs
14046 `(("r-extrafontdb" ,r-extrafontdb)
14047 ("r-rttf2pt1" ,r-rttf2pt1)))
14048 (home-page "https://github.com/wch/extrafont")
14049 (synopsis "Tools for using fonts in R")
14050 (description
14051 "The extrafont package makes it easier to use fonts other than the basic
14052 PostScript fonts that R uses. Fonts that are imported into extrafont can be
14053 used with PDF or PostScript output files. There are two hurdles for using
14054 fonts in PDF (or Postscript) output files:
14055
14056 @enumerate
14057 @item Making R aware of the font and the dimensions of the characters.
14058 @item Embedding the fonts in the PDF file so that the PDF can be displayed
14059 properly on a device that doesn't have the font. This is usually needed if
14060 you want to print the PDF file or share it with others.
14061 @end enumerate
14062
14063 The extrafont package makes both of these things easier.")
14064 (license license:gpl2)))
14065
14066 (define-public r-xkcd
14067 (package
14068 (name "r-xkcd")
14069 (version "0.0.6")
14070 (source
14071 (origin
14072 (method url-fetch)
14073 (uri (cran-uri "xkcd" version))
14074 (sha256
14075 (base32
14076 "1z2y0ihn68ppay7xkglhw7djki5654g6z4bbpyy41if57z9q554f"))))
14077 (build-system r-build-system)
14078 (propagated-inputs
14079 `(("r-extrafont" ,r-extrafont)
14080 ("r-ggplot2" ,r-ggplot2)
14081 ("r-hmisc" ,r-hmisc)))
14082 (home-page "https://cran.r-project.org/web/packages/xkcd/")
14083 (synopsis "Plot ggplot2 graphics in the XKCD style")
14084 (description
14085 "This package provides the means to plot ggplot2 graphs in the style of
14086 the XKCD web comic.")
14087 (license license:gpl3)))
14088
14089 (define-public r-msigdbr
14090 (package
14091 (name "r-msigdbr")
14092 (version "7.0.1")
14093 (source
14094 (origin
14095 (method url-fetch)
14096 (uri (cran-uri "msigdbr" version))
14097 (sha256
14098 (base32
14099 "19p8z617m3my8la7n1qgb1s2msf940r372im3q30qkbcx3qxg3sd"))))
14100 (build-system r-build-system)
14101 (propagated-inputs
14102 `(("r-dplyr" ,r-dplyr)
14103 ("r-magrittr" ,r-magrittr)
14104 ("r-rlang" ,r-rlang)
14105 ("r-tibble" ,r-tibble)))
14106 (home-page "https://github.com/igordot/msigdbr")
14107 (synopsis "MSigDB gene sets for multiple organisms")
14108 (description
14109 "This package provides the @dfn{Molecular Signatures Database} (MSigDB)
14110 gene sets typically used with the @dfn{Gene Set Enrichment Analysis} (GSEA)
14111 software in a standard R data frame with key-value pairs. Included are the
14112 original human gene symbols and Entrez IDs as well as the equivalents for
14113 various frequently studied model organisms such as mouse, rat, pig, fly, and
14114 yeast.")
14115 ;; The package is covered under the Expat license, but the upstream MSigDB
14116 ;; files are made available under the Creative Commons Attribution 4.0
14117 ;; International license.
14118 (license (list license:expat license:cc-by4.0))))
14119
14120 (define-public r-gridgraphics
14121 (package
14122 (name "r-gridgraphics")
14123 (version "0.5-0")
14124 (source
14125 (origin
14126 (method url-fetch)
14127 (uri (cran-uri "gridGraphics" version))
14128 (sha256
14129 (base32
14130 "0rlyc3xk8kfrfzbfd8n4javq3yxqd7lsfmi4q5n6s61srnrl6c1r"))))
14131 (properties `((upstream-name . "gridGraphics")))
14132 (build-system r-build-system)
14133 (home-page "https://github.com/pmur002/gridgraphics")
14134 (synopsis "Redraw base graphics using @code{grid} graphics")
14135 (description
14136 "This package provides functions to convert a page of plots drawn with
14137 the @code{graphics} package into identical output drawn with the @code{grid}
14138 package. The result looks like the original @code{graphics}-based plot, but
14139 consists of @code{grid} grobs and viewports that can then be manipulated with
14140 @code{grid} functions (e.g., edit grobs and revisit viewports).")
14141 (license license:gpl2+)))
14142
14143 (define-public r-farver
14144 (package
14145 (name "r-farver")
14146 (version "2.0.3")
14147 (source
14148 (origin
14149 (method url-fetch)
14150 (uri (cran-uri "farver" version))
14151 (sha256
14152 (base32
14153 "1k75v07dsfkjra2gsgxg9s55cw3b46b1nh960kqphq7cg7gr058f"))))
14154 (build-system r-build-system)
14155 (home-page "https://github.com/thomasp85/farver")
14156 (synopsis "Vectorized color conversion and comparison")
14157 (description
14158 "The encoding of color can be handled in many different ways, using
14159 different color spaces. As different color spaces have different uses,
14160 efficient conversion between these representations are important. This
14161 package provides a set of functions that gives access to very fast color space
14162 conversion and comparisons implemented in C++, and offers 100-fold speed
14163 improvements over the @code{convertColor} function in the @code{grDevices}
14164 package.")
14165 (license license:expat)))
14166
14167 (define-public r-ggplotify
14168 (package
14169 (name "r-ggplotify")
14170 (version "0.0.5")
14171 (source
14172 (origin
14173 (method url-fetch)
14174 (uri (cran-uri "ggplotify" version))
14175 (sha256
14176 (base32
14177 "0pfnp4lrissf21z7867kdm6slr979kchyva8iaf83i1302kscph3"))))
14178 (build-system r-build-system)
14179 (propagated-inputs
14180 `(("r-ggplot2" ,r-ggplot2)
14181 ("r-gridgraphics" ,r-gridgraphics)
14182 ("r-rvcheck" ,r-rvcheck)))
14183 (native-inputs
14184 `(("r-knitr" ,r-knitr)))
14185 (home-page "https://github.com/GuangchuangYu/ggplotify")
14186 (synopsis "Convert plots to @code{grob} or @code{ggplot} object")
14187 (description
14188 "This package provides tools to convert plot function calls (using
14189 expression or formula) to @code{grob} or @code{ggplot} objects that are
14190 compatible with the @code{grid} and @code{ggplot2} environment. With this
14191 package, we are able to e.g. use @code{cowplot} to align plots produced by
14192 @code{base} graphics, @code{grid}, @code{lattice}, @code{vcd} etc. by
14193 converting them to @code{ggplot} objects.")
14194 (license license:artistic2.0)))
14195
14196 (define-public r-triebeard
14197 (package
14198 (name "r-triebeard")
14199 (version "0.3.0")
14200 (source
14201 (origin
14202 (method url-fetch)
14203 (uri (cran-uri "triebeard" version))
14204 (sha256
14205 (base32
14206 "1hqyz57gph02c9fdc07lxz113bbklif3g18sw8jan6pakhhdc7dz"))))
14207 (build-system r-build-system)
14208 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
14209 (home-page "https://github.com/Ironholds/triebeard/")
14210 (synopsis "Radix trees in Rcpp")
14211 (description
14212 "Radix trees, or tries, are key-value data structures optimized for
14213 efficient lookups, similar in purpose to hash tables. This package provides
14214 an implementation of radix trees for use in R programming and in developing
14215 packages with Rcpp.")
14216 (license license:expat)))
14217
14218 (define-public r-tweenr
14219 (package
14220 (name "r-tweenr")
14221 (version "1.0.1")
14222 (source
14223 (origin
14224 (method url-fetch)
14225 (uri (cran-uri "tweenr" version))
14226 (sha256
14227 (base32
14228 "0sq90pbln6lkc2q3zflhkxxwpqdw5dd7igrxhdnlynkdrmi83mpg"))))
14229 (build-system r-build-system)
14230 (propagated-inputs
14231 `(("r-farver" ,r-farver)
14232 ("r-magrittr" ,r-magrittr)
14233 ("r-rcpp" ,r-rcpp)
14234 ("r-rlang" ,r-rlang)))
14235 (home-page "https://github.com/thomasp85/tweenr")
14236 (synopsis "Interpolate data for smooth animations")
14237 (description
14238 "In order to create smooth animation between states of data, tweening is
14239 necessary. This package provides a range of functions for creating tweened
14240 data that can be used as basis for animation. Furthermore it adds a number of
14241 vectorized interpolaters for common R data types such as numeric, date and
14242 color.")
14243 (license license:expat)))
14244
14245 (define-public r-polyclip
14246 (package
14247 (name "r-polyclip")
14248 (version "1.10-0")
14249 (source
14250 (origin
14251 (method url-fetch)
14252 (uri (cran-uri "polyclip" version))
14253 (sha256
14254 (base32
14255 "0jyk4maqiblvj095jd59dr76kbniyli3v3xvy0a72ljszq6vrnkl"))))
14256 (build-system r-build-system)
14257 (native-inputs `(("pkg-config" ,pkg-config)))
14258 (home-page "http://www.angusj.com/delphi/clipper.php")
14259 (synopsis "Polygon clipping")
14260 (description
14261 "This package provides an R port of the library Clipper. It performs
14262 polygon clipping operations (intersection, union, set minus, set difference)
14263 for polygonal regions of arbitrary complexity, including holes. It computes
14264 offset polygons (spatial buffer zones, morphological dilations, Minkowski
14265 dilations) for polygonal regions and polygonal lines. It computes the
14266 Minkowski Sum of general polygons. There is a function for removing
14267 self-intersections from polygon data.")
14268 (license license:boost1.0)))
14269
14270 (define-public r-urltools
14271 (package
14272 (name "r-urltools")
14273 (version "1.7.3")
14274 (source
14275 (origin
14276 (method url-fetch)
14277 (uri (cran-uri "urltools" version))
14278 (sha256
14279 (base32
14280 "04x3my655dd287cbsszbnf75q0swmjlxxrblcsay7a8n3df3a830"))))
14281 (build-system r-build-system)
14282 (propagated-inputs
14283 `(("r-rcpp" ,r-rcpp)
14284 ("r-triebeard" ,r-triebeard)))
14285 (home-page "https://github.com/Ironholds/urltools/")
14286 (synopsis "Vectorized tools for URL handling and parsing")
14287 (description
14288 "This package provides a toolkit for all URL-handling needs, including
14289 encoding and decoding, parsing, parameter extraction and modification. All
14290 functions are designed to be both fast and entirely vectorized. It is
14291 intended to be useful for people dealing with web-related datasets, such as
14292 server-side logs, although may be useful for other situations involving large
14293 sets of URLs.")
14294 (license license:expat)))
14295
14296 (define-public r-ggforce
14297 (package
14298 (name "r-ggforce")
14299 (version "0.3.1")
14300 (source
14301 (origin
14302 (method url-fetch)
14303 (uri (cran-uri "ggforce" version))
14304 (sha256
14305 (base32
14306 "04926cqrda6psvy2nzkkw4czwyxdp7fnxg76byp14v12kgd72lm0"))))
14307 (build-system r-build-system)
14308 (propagated-inputs
14309 `(("r-ggplot2" ,r-ggplot2)
14310 ("r-gtable" ,r-gtable)
14311 ("r-mass" ,r-mass)
14312 ("r-polyclip" ,r-polyclip)
14313 ("r-rcpp" ,r-rcpp)
14314 ("r-rcppeigen" ,r-rcppeigen)
14315 ("r-rlang" ,r-rlang)
14316 ("r-scales" ,r-scales)
14317 ("r-tidyselect" ,r-tidyselect)
14318 ("r-tweenr" ,r-tweenr)
14319 ("r-withr" ,r-withr)))
14320 (home-page "https://ggforce.data-imaginist.com")
14321 (synopsis "Accelerating ggplot2")
14322 (description
14323 "The aim of the ggplot2 package is to aid in visual data investigations.
14324 This focus has led to a lack of facilities for composing specialized plots.
14325 Thi package aims to be a collection of mainly new statistics and geometries
14326 that fills this gap.")
14327 (license license:expat)))
14328
14329 (define-public r-europepmc
14330 (package
14331 (name "r-europepmc")
14332 (version "0.3")
14333 (source
14334 (origin
14335 (method url-fetch)
14336 (uri (cran-uri "europepmc" version))
14337 (sha256
14338 (base32
14339 "1ngqs1sqzkbwv98dd5z4cxj8bnz41wyd0g060a2vpqi3s99s4i2h"))))
14340 (build-system r-build-system)
14341 (propagated-inputs
14342 `(("r-dplyr" ,r-dplyr)
14343 ("r-httr" ,r-httr)
14344 ("r-jsonlite" ,r-jsonlite)
14345 ("r-plyr" ,r-plyr)
14346 ("r-progress" ,r-progress)
14347 ("r-purrr" ,r-purrr)
14348 ("r-urltools" ,r-urltools)
14349 ("r-xml2" ,r-xml2)))
14350 (home-page "https://github.com/ropensci/europepmc/")
14351 (synopsis "R Interface to the Europe PubMed Central RESTful Web Service")
14352 (description
14353 "This package provides an R Client for the
14354 @url{https://europepmc.org/RestfulWebService,Europe PubMed Central RESTful Web
14355 Service}. It gives access to both metadata on life science literature and
14356 open access full texts. Europe PMC indexes all PubMed content and other
14357 literature sources including Agricola, a bibliographic database of citations
14358 to the agricultural literature, or Biological Patents. In addition to
14359 bibliographic metadata, the client allows users to fetch citations and
14360 reference lists. Links between life-science literature and other EBI
14361 databases, including ENA, PDB or ChEMBL are also accessible.")
14362 (license license:gpl3)))
14363
14364 (define-public r-ggraph
14365 (package
14366 (name "r-ggraph")
14367 (version "2.0.2")
14368 (source
14369 (origin
14370 (method url-fetch)
14371 (uri (cran-uri "ggraph" version))
14372 (sha256
14373 (base32
14374 "1ckq82hg52vr2wydkqv2wrppgjyvddd6bwqzrngqlm7j71xapjl0"))))
14375 (build-system r-build-system)
14376 (propagated-inputs
14377 `(("r-digest" ,r-digest)
14378 ("r-dplyr" ,r-dplyr)
14379 ("r-ggforce" ,r-ggforce)
14380 ("r-ggplot2" ,r-ggplot2)
14381 ("r-ggrepel" ,r-ggrepel)
14382 ("r-graphlayouts" ,r-graphlayouts)
14383 ("r-gtable" ,r-gtable)
14384 ("r-igraph" ,r-igraph)
14385 ("r-mass" ,r-mass)
14386 ("r-rcpp" ,r-rcpp)
14387 ("r-rlang" ,r-rlang)
14388 ("r-scales" ,r-scales)
14389 ("r-tidygraph" ,r-tidygraph)
14390 ("r-viridis" ,r-viridis)))
14391 (native-inputs
14392 `(("r-knitr" ,r-knitr)))
14393 (home-page "https://cran.r-project.org/web/packages/ggraph/")
14394 (synopsis "Implementation of grammar of graphics for graphs and networks")
14395 (description
14396 "The grammar of graphics as implemented in ggplot2 is a poor fit for
14397 graph and network visualizations due to its reliance on tabular data input.
14398 The ggraph package is an extension of the ggplot2 API tailored to graph
14399 visualizations and provides the same flexible approach to building up plots
14400 layer by layer.")
14401 (license license:gpl3)))
14402
14403 (define-public r-varselrf
14404 (package
14405 (name "r-varselrf")
14406 (version "0.7-8")
14407 (source
14408 (origin
14409 (method url-fetch)
14410 (uri (cran-uri "varSelRF" version))
14411 (sha256
14412 (base32
14413 "0h49rl1j13yfh97rsfsyh9s2c4wajny4rzms2qw77d0cavxqg53i"))))
14414 (properties `((upstream-name . "varSelRF")))
14415 (build-system r-build-system)
14416 (propagated-inputs
14417 `(("r-randomforest" ,r-randomforest)))
14418 (home-page "https://www.ligarto.org/rdiaz/software/software")
14419 (synopsis "Variable selection using random forests")
14420 (description
14421 "This package provides tools for the variable selection from random
14422 forests using both backwards variable elimination (for the selection of small
14423 sets of non-redundant variables) and selection based on the importance
14424 spectrum (somewhat similar to scree plots; for the selection of large,
14425 potentially highly-correlated variables). The main applications are in
14426 high-dimensional data (e.g., microarray data, and other genomics and
14427 proteomics applications).")
14428 (license license:gpl2+)))
14429
14430 (define-public r-pamr
14431 (package
14432 (name "r-pamr")
14433 (version "1.56.1")
14434 (source
14435 (origin
14436 (method url-fetch)
14437 (uri (cran-uri "pamr" version))
14438 (sha256
14439 (base32
14440 "0ycpgkk23y3zzkb42n2skcyl35ps1n7jmyzfj7pbxr3f6gr2grfh"))))
14441 (build-system r-build-system)
14442 (propagated-inputs
14443 `(("r-cluster" ,r-cluster)
14444 ("r-survival" ,r-survival)))
14445 (native-inputs `(("gfortran" ,gfortran)))
14446 (home-page "https://cran.r-project.org/web/packages/pamr/")
14447 (synopsis "Prediction Analysis for Microarrays")
14448 (description
14449 "This package provides some functions for sample classification in
14450 microarrays.")
14451 (license license:gpl2)))
14452
14453 (define-public r-rda
14454 (package
14455 (name "r-rda")
14456 (version "1.0.2-2.1")
14457 (source
14458 (origin
14459 (method url-fetch)
14460 (uri (cran-uri "rda" version))
14461 (sha256
14462 (base32
14463 "1y4fawslr3i6crjaxhsdb47kfsqkyszdx6avq3r5far5a4pvc639"))))
14464 (build-system r-build-system)
14465 (home-page "https://cran.r-project.org/web/packages/rda/")
14466 (synopsis "Shrunken centroids regularized discriminant analysis")
14467 (description
14468 "This package provides tools for shrunken centroids regularized
14469 discriminant analysis for the purpose of classifying high dimensional data.")
14470 (license license:gpl2+)))
14471
14472 (define-public r-ggvis
14473 (package
14474 (name "r-ggvis")
14475 (version "0.4.5")
14476 (source
14477 (origin
14478 (method url-fetch)
14479 (uri (cran-uri "ggvis" version))
14480 (sha256
14481 (base32
14482 "091i9f17912j8qcyxppjgwzjnyqj7769ixs9d2gjg6f2clskqdw2"))))
14483 (build-system r-build-system)
14484 (propagated-inputs
14485 `(("r-assertthat" ,r-assertthat)
14486 ("r-dplyr" ,r-dplyr)
14487 ("r-htmltools" ,r-htmltools)
14488 ("r-jsonlite" ,r-jsonlite)
14489 ("r-lazyeval" ,r-lazyeval)
14490 ("r-magrittr" ,r-magrittr)
14491 ("r-shiny" ,r-shiny)))
14492 (home-page "https://ggvis.rstudio.com/")
14493 (synopsis "Interactive grammar of graphics")
14494 (description
14495 "This package is a data visualization package for R providing an
14496 implementation of an interactive grammar of graphics, taking the best parts of
14497 ggplot2, combining them with the reactive framework of Shiny and drawing web
14498 graphics using Vega.")
14499 (license license:gpl2)))
14500
14501 (define-public r-gbm
14502 (package
14503 (name "r-gbm")
14504 (version "2.1.5")
14505 (source
14506 (origin
14507 (method url-fetch)
14508 (uri (cran-uri "gbm" version))
14509 (sha256
14510 (base32
14511 "0vs6ljaqhwwpgr8wlbhmm4v147rd82kl16rpaijqiylxcc8dxyq6"))))
14512 (build-system r-build-system)
14513 (propagated-inputs
14514 `(("r-gridextra" ,r-gridextra)
14515 ("r-lattice" ,r-lattice)
14516 ("r-survival" ,r-survival)))
14517 (home-page "https://github.com/gbm-developers/gbm")
14518 (synopsis "Generalized boosted regression models")
14519 (description
14520 "This package is an implementation of extensions to Freund and Schapire's
14521 AdaBoost algorithm and Friedman's gradient boosting machine. It includes
14522 regression methods for least squares, absolute loss, t-distribution loss,
14523 quantile regression, logistic, multinomial logistic, Poisson, Cox proportional
14524 hazards partial likelihood, AdaBoost exponential loss, Huberized hinge loss,
14525 and Learning to Rank measures (LambdaMart).")
14526 (license license:gpl2+)))
14527
14528 (define-public r-threejs
14529 (package
14530 (name "r-threejs")
14531 (version "0.3.3")
14532 (source
14533 (origin
14534 (method url-fetch)
14535 (uri (cran-uri "threejs" version))
14536 (sha256
14537 (base32
14538 "1711h351nzxfkbbdwvfzyhciyvi9c6wx3jq1g97lzcqgnb45kivn"))))
14539 (build-system r-build-system)
14540 (arguments
14541 `(#:modules ((guix build utils)
14542 (guix build r-build-system)
14543 (srfi srfi-1)
14544 (ice-9 popen))
14545 #:phases
14546 (modify-phases %standard-phases
14547 (add-after 'unpack 'process-javascript
14548 (lambda* (#:key inputs #:allow-other-keys)
14549 (with-directory-excursion "inst"
14550 (call-with-values
14551 (lambda ()
14552 (unzip2
14553 `((,(assoc-ref inputs "js-jquery")
14554 "htmlwidgets/lib/jquery/jquery.min.js")
14555 (,(assoc-ref inputs "js-threejs-111")
14556 "htmlwidgets/lib/threejs-111/three.min.js"))))
14557 (lambda (sources targets)
14558 (for-each (lambda (source target)
14559 (format #t "Processing ~a --> ~a~%"
14560 source target)
14561 (delete-file target)
14562 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
14563 (call-with-output-file target
14564 (lambda (port)
14565 (dump-port minified port)))))
14566 sources targets))))
14567 #t)))))
14568 (propagated-inputs
14569 `(("r-base64enc" ,r-base64enc)
14570 ("r-crosstalk" ,r-crosstalk)
14571 ("r-htmlwidgets" ,r-htmlwidgets)
14572 ("r-igraph" ,r-igraph)))
14573 (native-inputs
14574 `(("uglify-js" ,uglify-js)
14575 ("js-jquery"
14576 ,(origin
14577 (method url-fetch)
14578 (uri "https://code.jquery.com/jquery-1.12.4.js")
14579 (sha256
14580 (base32
14581 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
14582 ("js-threejs-111"
14583 ,(origin
14584 (method url-fetch)
14585 (uri "https://raw.githubusercontent.com/mrdoob/three.js/r111/build/three.js")
14586 (sha256
14587 (base32
14588 "1cxdkw3plmlw1xvhbx5dm39gqczgzxip2dm887v6whhsxqxl9cky"))))))
14589 (home-page "https://bwlewis.github.io/rthreejs")
14590 (synopsis "Interactive 3D scatter plots, networks and globes")
14591 (description
14592 "Create interactive 3D scatter plots, network plots, and globes in R
14593 using the three.js visualization library.")
14594 (license license:expat)))
14595
14596 (define-public r-mlbench
14597 (package
14598 (name "r-mlbench")
14599 (version "2.1-1")
14600 (source
14601 (origin
14602 (method url-fetch)
14603 (uri (cran-uri "mlbench" version))
14604 (sha256
14605 (base32
14606 "1rp035qxfgh5ail92zjh9jh57dj0b8babw3wsg29v8ricpal30bl"))))
14607 (build-system r-build-system)
14608 (home-page "https://cran.r-project.org/web/packages/mlbench/")
14609 (synopsis "Machine learning benchmark problems")
14610 (description
14611 "This package provides a collection of artificial and real-world machine
14612 learning benchmark problems, including, e.g., several data sets from the UCI
14613 repository.")
14614 (license license:gpl2)))
14615
14616 (define-public r-mpm
14617 (package
14618 (name "r-mpm")
14619 (version "1.0-22")
14620 (source
14621 (origin
14622 (method url-fetch)
14623 (uri (cran-uri "mpm" version))
14624 (sha256
14625 (base32
14626 "0wijw8v0wmbfrda5564cmnp788qmlkk21yn5cp5qk8aprm9l1fnk"))))
14627 (build-system r-build-system)
14628 (propagated-inputs
14629 `(("r-kernsmooth" ,r-kernsmooth)
14630 ("r-mass" ,r-mass)))
14631 (home-page "http://mpm.r-forge.r-project.org")
14632 (synopsis "Multivariate projection methods")
14633 (description
14634 "This is a package for exploratory graphical analysis of multivariate
14635 data, specifically gene expression data with different projection methods:
14636 principal component analysis, correspondence analysis, spectral map
14637 analysis.")
14638 (license license:gpl2+)))
14639
14640 (define-public r-png
14641 (package
14642 (name "r-png")
14643 (version "0.1-7")
14644 (source (origin
14645 (method url-fetch)
14646 (uri (cran-uri "png" version))
14647 (sha256
14648 (base32
14649 "0g2mcp55lvvpx4kd3mn225mpbxqcq73wy5qx8b4lyf04iybgysg2"))))
14650 (build-system r-build-system)
14651 (inputs
14652 `(("libpng" ,libpng)
14653 ("zlib" ,zlib)))
14654 (home-page "https://www.rforge.net/png/")
14655 (synopsis "Read and write PNG images")
14656 (description
14657 "This package provides an easy and simple way to read, write and display
14658 bitmap images stored in the PNG format. It can read and write both files and
14659 in-memory raw vectors.")
14660 ;; Any of these GPL versions.
14661 (license (list license:gpl2 license:gpl3))))
14662
14663 (define-public r-ggcorrplot
14664 (package
14665 (name "r-ggcorrplot")
14666 (version "0.1.3")
14667 (source
14668 (origin
14669 (method url-fetch)
14670 (uri (cran-uri "ggcorrplot" version))
14671 (sha256
14672 (base32
14673 "0hi9lz121ya1l2lbm7rqlxg6fs6bvxck396dngnidrhl5fvqb41b"))))
14674 (build-system r-build-system)
14675 (propagated-inputs
14676 `(("r-ggplot2" ,r-ggplot2)
14677 ("r-reshape2" ,r-reshape2)))
14678 (home-page "http://www.sthda.com/english/wiki/ggcorrplot")
14679 (synopsis "Visualization of a correlation matrix using ggplot2")
14680 (description
14681 "The ggcorrplot package can be used to visualize easily a correlation
14682 matrix using ggplot2. It provides a solution for reordering the correlation
14683 matrix and displays the significance level on the plot. It also includes a
14684 function for computing a matrix of correlation p-values.")
14685 (license license:gpl2)))
14686
14687 (define-public r-flexdashboard
14688 (package
14689 (name "r-flexdashboard")
14690 (version "0.5.1.1")
14691 (source
14692 (origin
14693 (method url-fetch)
14694 (uri (cran-uri "flexdashboard" version))
14695 (sha256
14696 (base32
14697 "0fy3nbrr67zqgd44r2mc850s5sp0hzfcw3zqs15m8kxzj1aw067x"))))
14698 (build-system r-build-system)
14699 (arguments
14700 `(#:modules ((guix build utils)
14701 (guix build r-build-system)
14702 (srfi srfi-1)
14703 (srfi srfi-26)
14704 (ice-9 popen)
14705 (ice-9 textual-ports))
14706 #:phases
14707 (modify-phases %standard-phases
14708 (add-after 'unpack 'process-javascript
14709 (lambda* (#:key inputs #:allow-other-keys)
14710 (with-directory-excursion "inst"
14711 ;; Concatenate all components of prism.js
14712 (let ((contents (string-join
14713 (map (lambda (name)
14714 (call-with-input-file
14715 (assoc-ref inputs name)
14716 get-string-all))
14717 (list "js-prism"
14718 "js-prism-r"
14719 "js-prism-line-numbers"))
14720 "\n")))
14721 (call-with-output-file "prism-src.js"
14722 (cut display contents <>)))
14723 (call-with-values
14724 (lambda ()
14725 (unzip2
14726 `(("www/stickytableheaders/jquery.stickytableheaders.js"
14727 "www/stickytableheaders/jquery.stickytableheaders.min.js")
14728 ("www/sly/sly.js"
14729 "www/sly/sly.min.js")
14730 ("prism-src.js"
14731 "www/prism/prism.js")
14732 (,(assoc-ref inputs "js-raphael")
14733 "htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
14734 (,(assoc-ref inputs "js-featherlight")
14735 "www/featherlight/featherlight.min.js"))))
14736 (lambda (sources targets)
14737 (for-each (lambda (source target)
14738 (format #t "Processing ~a --> ~a~%"
14739 source target)
14740 (delete-file target)
14741 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
14742 (call-with-output-file target
14743 (lambda (port)
14744 (dump-port minified port)))))
14745 sources targets))))
14746 #t)))))
14747 (propagated-inputs
14748 `(("r-htmltools" ,r-htmltools)
14749 ("r-htmlwidgets" ,r-htmlwidgets)
14750 ("r-jsonlite" ,r-jsonlite)
14751 ("r-knitr" ,r-knitr)
14752 ("r-rmarkdown" ,r-rmarkdown)
14753 ("r-shiny" ,r-shiny)))
14754 (native-inputs
14755 `(("uglify-js" ,uglify-js)
14756 ("js-raphael"
14757 ,(origin
14758 (method url-fetch)
14759 (uri "https://raw.githubusercontent.com/DmitryBaranovskiy/raphael/v2.1.4/raphael.js")
14760 (sha256
14761 (base32
14762 "1h4c4akrgcj7wra9j1z1rv2406j0yf68y9c0wg8v7w9ibw2iwf1x"))))
14763 ("js-prism"
14764 ,(origin
14765 (method url-fetch)
14766 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/prism.js")
14767 (sha256
14768 (base32
14769 "0gqa9irbp9k8p5r3d98cszajzhjnssnl43nrsc5aiy7ki52z500c"))))
14770 ("js-prism-r"
14771 ,(origin
14772 (method url-fetch)
14773 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/components/prism-r.js")
14774 (sha256
14775 (base32
14776 "1x31glci7wdgr2305njy0bm2lncb0jyn0j1s2g72rqi29xid9aki"))))
14777 ("js-prism-line-numbers"
14778 ,(origin
14779 (method url-fetch)
14780 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/plugins/line-numbers/prism-line-numbers.js")
14781 (sha256
14782 (base32
14783 "1543wgf3iynrilyb27jq8px3h5gvfz5xmdib5ik2ki400c1sl991"))))
14784 ("js-featherlight"
14785 ,(origin
14786 (method url-fetch)
14787 (uri "https://raw.githubusercontent.com/noelboss/featherlight/1.3.4/src/featherlight.js")
14788 (sha256
14789 (base32
14790 "14kkhwzvp8rxq2mrck5i0xcm8v5rqwqhwnmncbng8h4qq42zx3sb"))))))
14791 (home-page "https://rmarkdown.rstudio.com/flexdashboard")
14792 (synopsis "R Markdown format for flexible dashboards")
14793 (description
14794 "This package provides an R Markdown format for converting an R Markdown
14795 document to a grid-oriented dashboard. The dashboard flexibly adapts the size
14796 of its components to the containing web page.")
14797 (license license:expat)))
14798
14799 (define-public r-preseqr
14800 (package
14801 (name "r-preseqr")
14802 (version "4.0.0")
14803 (source
14804 (origin
14805 (method url-fetch)
14806 (uri (cran-uri "preseqR" version))
14807 (sha256
14808 (base32
14809 "1g2rnnmi45649vpy6z45v5i3wxm54s138ajqrzwi3a5r7x3xnhq1"))))
14810 (properties `((upstream-name . "preseqR")))
14811 (build-system r-build-system)
14812 (propagated-inputs
14813 `(("r-polynom" ,r-polynom)))
14814 (home-page "https://cran.r-project.org/web/packages/preseqR/")
14815 (synopsis "Predicting species accumulation curves")
14816 (description
14817 "This package can be used to predict the r-species accumulation
14818 curve (r-SAC), which is the number of species represented at least r times as
14819 a function of the sampling effort. When r = 1, the curve is known as the
14820 species accumulation curve, or the library complexity curve in high-throughput
14821 genomic sequencing. The package includes both parametric and nonparametric
14822 methods, as described by Deng C, et al. (2018).")
14823 (license license:gpl3)))
14824
14825 (define-public r-mapplots
14826 (package
14827 (name "r-mapplots")
14828 (version "1.5.1")
14829 (source
14830 (origin
14831 (method url-fetch)
14832 (uri (cran-uri "mapplots" version))
14833 (sha256
14834 (base32
14835 "18s2y66f8vi8g2r8a25zbgp2xm079r8v8qxv0w71h8krycs6vs9p"))))
14836 (build-system r-build-system)
14837 (home-page "https://cran.r-project.org/web/packages/mapplots/")
14838 (synopsis "Data visualization on maps")
14839 (description
14840 "This package helps you create simple maps; add sub-plots like pie plots
14841 to a map or any other plot; format, plot and export gridded data. The package
14842 was developed for displaying fisheries data but most functions can be used for
14843 more generic data visualisation.")
14844 (license license:gpl2+)))
14845
14846 (define-public r-pmcmr
14847 (package
14848 (name "r-pmcmr")
14849 (version "4.3")
14850 (source
14851 (origin
14852 (method url-fetch)
14853 (uri (cran-uri "PMCMR" version))
14854 (sha256
14855 (base32
14856 "09bvdj2h1086r2cgy3myrhlylplxxlliv8nwx09c8kb1vn02i2ij"))))
14857 (properties `((upstream-name . "PMCMR")))
14858 (build-system r-build-system)
14859 (home-page "https://cran.r-project.org/web/packages/PMCMR/")
14860 (synopsis "Calculate pairwise multiple comparisons of mean rank sums")
14861 (description
14862 "This is a deprecated package for calculating pairwise multiple
14863 comparisons of mean rank sums. This package is superseded by the novel
14864 PMCMRplus package. The PMCMR package is no longer maintained, but kept for
14865 compatibility of dependent packages for some time.")
14866 (license license:gpl3+)))
14867
14868 (define-public r-downloader
14869 (package
14870 (name "r-downloader")
14871 (version "0.4")
14872 (source
14873 (origin
14874 (method url-fetch)
14875 (uri (cran-uri "downloader" version))
14876 (sha256
14877 (base32
14878 "1axggnsc27zzgr7snf41j3zd1vp3nfpmq4zj4d01axc709dyg40q"))))
14879 (build-system r-build-system)
14880 (propagated-inputs
14881 `(("r-digest" ,r-digest)))
14882 (home-page "https://github.com/wch/downloader")
14883 (synopsis "Download files over HTTP and HTTPS")
14884 (description
14885 "This package provides a wrapper for the @code{download.file} function,
14886 making it possible to download files over HTTPS across platforms. The
14887 @code{RCurl} package provides this functionality (and much more) but has
14888 external dependencies. This package has is implemented purely in R.")
14889 (license license:gpl2)))
14890
14891 (define-public r-rex
14892 (package
14893 (name "r-rex")
14894 (version "1.1.2")
14895 (source
14896 (origin
14897 (method url-fetch)
14898 (uri (cran-uri "rex" version))
14899 (sha256
14900 (base32
14901 "0alsadgjgass3wr8y5d247j12qqzg454sc84vpskclrkmz778g5x"))))
14902 (build-system r-build-system)
14903 (propagated-inputs
14904 `(("r-lazyeval" ,r-lazyeval)
14905 ("r-magrittr" ,r-magrittr)))
14906 (home-page "https://github.com/kevinushey/rex")
14907 (synopsis "Friendly regular expressions")
14908 (description
14909 "This package provides a friendly interface for the construction of
14910 regular expressions. Regular expressions are a very powerful feature, however
14911 they are often difficult to interpret. Rex allows you to build complex
14912 regular expressions from human readable expressions")
14913 (license license:expat)))
14914
14915 (define-public r-xmlparsedata
14916 (package
14917 (name "r-xmlparsedata")
14918 (version "1.0.3")
14919 (source
14920 (origin
14921 (method url-fetch)
14922 (uri (cran-uri "xmlparsedata" version))
14923 (sha256
14924 (base32
14925 "0gjr3l5z5dp276lchr2649as1rkj56d2mlvbr66yg393zzw50lsh"))))
14926 (properties `((upstream-name . "xmlparsedata")))
14927 (build-system r-build-system)
14928 (home-page "https://github.com/r-lib/xmlparsedata#readme")
14929 (synopsis "Parse data of @code{R} code as an @code{XML} tree")
14930 (description
14931 "This package provides tools to convert the output of
14932 @code{utils::getParseData()} to an @code{XML} tree, that one can search via
14933 @code{XPath}, and is easier to manipulate in general.")
14934 (license license:expat)))
14935
14936 (define-public r-cyclocomp
14937 (package
14938 (name "r-cyclocomp")
14939 (version "1.1.0")
14940 (source
14941 (origin
14942 (method url-fetch)
14943 (uri (cran-uri "cyclocomp" version))
14944 (sha256
14945 (base32
14946 "0gky3svk02wiajw7nfjh30684h3qxili4bvsab0m7b6cggw6bgyd"))))
14947 (properties `((upstream-name . "cyclocomp")))
14948 (build-system r-build-system)
14949 (propagated-inputs
14950 `(("r-callr" ,r-callr)
14951 ("r-crayon" ,r-crayon)
14952 ("r-desc" ,r-desc)
14953 ("r-remotes" ,r-remotes)
14954 ("r-withr" ,r-withr)))
14955 (home-page "https://github.com/MangoTheCat/cyclocomp")
14956 (synopsis "Cyclomatic complexity of R code")
14957 (description
14958 "Cyclomatic complexity is a software metric, used to indicate the
14959 complexity of a program. It is a quantitative measure of the number of
14960 linearly independent paths through a program's source code. This package
14961 provides tools to compute this metric.")
14962 (license license:expat)))
14963
14964 (define-public r-lintr
14965 (package
14966 (name "r-lintr")
14967 (version "2.0.1")
14968 (source
14969 (origin
14970 (method url-fetch)
14971 (uri (cran-uri "lintr" version))
14972 (sha256
14973 (base32
14974 "14yfh641afg6griaadbdciyr3k94fl55s055qwzghgk5gdsj61zy"))))
14975 (properties `((upstream-name . "lintr")))
14976 (build-system r-build-system)
14977 (propagated-inputs
14978 `(("r-codetools" ,r-codetools)
14979 ("r-crayon" ,r-crayon)
14980 ("r-cyclocomp" ,r-cyclocomp)
14981 ("r-digest" ,r-digest)
14982 ("r-httr" ,r-httr)
14983 ("r-jsonlite" ,r-jsonlite)
14984 ("r-knitr" ,r-knitr)
14985 ("r-rex" ,r-rex)
14986 ("r-rstudioapi" ,r-rstudioapi)
14987 ("r-testthat" ,r-testthat)
14988 ("r-xml2" ,r-xml2)
14989 ("r-xmlparsedata" ,r-xmlparsedata)))
14990 (home-page "https://github.com/jimhester/lintr")
14991 (synopsis "Linter for R code")
14992 (description "This package checks adherence to a given style, syntax
14993 errors and possible semantic issues. It supports on the fly checking of R
14994 code edited with @code{RStudio IDE}, @code{Emacs} and @code{Vim}.")
14995 (license license:expat)))
14996
14997 (define-public r-sctransform
14998 (package
14999 (name "r-sctransform")
15000 (version "0.2.1")
15001 (source
15002 (origin
15003 (method url-fetch)
15004 (uri (cran-uri "sctransform" version))
15005 (sha256
15006 (base32
15007 "07v3lzccsrkh1glfxd1q20r8f8gl9ls5az0s1dvxm4vcls0hlhyn"))))
15008 (build-system r-build-system)
15009 (propagated-inputs
15010 `(("r-future-apply" ,r-future-apply)
15011 ("r-ggplot2" ,r-ggplot2)
15012 ("r-gridextra" ,r-gridextra)
15013 ("r-mass" ,r-mass)
15014 ("r-matrix" ,r-matrix)
15015 ("r-rcpp" ,r-rcpp)
15016 ("r-rcppeigen" ,r-rcppeigen)
15017 ("r-reshape2" ,r-reshape2)))
15018 (home-page "https://github.com/ChristophH/sctransform")
15019 (synopsis "Variance stabilizing transformations for Single Cell UMI Data")
15020 (description
15021 "This package provides a normalization method for single-cell UMI count
15022 data using a variance stabilizing transformation. The transformation is based
15023 on a negative binomial regression model with regularized parameters. As part
15024 of the same regression framework, this package also provides functions for
15025 batch correction, and data correction.")
15026 (license license:gpl3)))
15027
15028 (define-public r-styler
15029 (package
15030 (name "r-styler")
15031 (version "1.3.2")
15032 (source
15033 (origin
15034 (method url-fetch)
15035 (uri (cran-uri "styler" version))
15036 (sha256
15037 (base32
15038 "1waglhsy2c53qjgd2qhlzda3z0lbzbwx9fkrfhac41y6h91mgkrz"))))
15039 (build-system r-build-system)
15040 (propagated-inputs
15041 `(("r-backports" ,r-backports)
15042 ("r-cli" ,r-cli)
15043 ("r-magrittr" ,r-magrittr)
15044 ("r-purrr" ,r-purrr)
15045 ("r-r-cache" ,r-r-cache)
15046 ("r-rematch2" ,r-rematch2)
15047 ("r-rlang" ,r-rlang)
15048 ("r-rprojroot" ,r-rprojroot)
15049 ("r-tibble" ,r-tibble)
15050 ("r-withr" ,r-withr)
15051 ("r-xfun" ,r-xfun)))
15052 (home-page "https://github.com/r-lib/styler")
15053 (synopsis "Non-invasive pretty printing of R code")
15054 (description
15055 "This is a package for pretty-printing R code without changing the user's
15056 formatting intent.")
15057 (license license:gpl3)))
15058
15059 (define-public r-scrime
15060 (package
15061 (name "r-scrime")
15062 (version "1.3.5")
15063 (source
15064 (origin
15065 (method url-fetch)
15066 (uri (cran-uri "scrime" version))
15067 (sha256
15068 (base32
15069 "0y2mh9fsffjf3i15bafpasa17z99c1s75r8g6h4hgcwfgpjx75sx"))))
15070 (build-system r-build-system)
15071 (home-page "https://cran.r-project.org/web/packages/scrime/")
15072 (synopsis "Analysis of high-dimensional categorical data such as SNP data")
15073 (description
15074 "This package provides tools for the analysis of high-dimensional data
15075 developed/implemented at the group \"Statistical Complexity Reduction In
15076 Molecular Epidemiology\" (SCRIME). The main focus is on SNP data, but most of
15077 the functions can also be applied to other types of categorical data.")
15078 (license license:gpl2)))
15079
15080 (define-public r-pbmcapply
15081 (package
15082 (name "r-pbmcapply")
15083 (version "1.5.0")
15084 (source
15085 (origin
15086 (method url-fetch)
15087 (uri (cran-uri "pbmcapply" version))
15088 (sha256
15089 (base32
15090 "0i58gcqpnbyvc448qfgm45b7rpbmrnagsvk1h1hsqchbbicfslnz"))))
15091 (build-system r-build-system)
15092 (home-page "https://github.com/kvnkuang/pbmcapply")
15093 (synopsis "Track the progress of apply procedures with a progress bar")
15094 (description
15095 "This light-weight package helps you track and visualize the progress of
15096 parallel versions of vectorized R functions of the @code{mc*apply} family.")
15097 (license license:expat)))
15098
15099 (define-public r-blme
15100 (package
15101 (name "r-blme")
15102 (version "1.0-4")
15103 (source
15104 (origin
15105 (method url-fetch)
15106 (uri (cran-uri "blme" version))
15107 (sha256
15108 (base32
15109 "1ca2b0248k0fj3lczn9shfjplz1sl4ay4v6djldizp2ch2vwdgy2"))))
15110 (build-system r-build-system)
15111 (propagated-inputs `(("r-lme4" ,r-lme4)))
15112 (home-page "https://github.com/vdorie/blme")
15113 (synopsis "Bayesian linear mixed-effects models")
15114 (description
15115 "This package provides tools for maximum a posteriori estimation for
15116 linear and generalized linear mixed-effects models in a Bayesian setting. It
15117 extends the lme4 package.")
15118 (license license:gpl2+)))
15119
15120 (define-public r-batchtools
15121 (package
15122 (name "r-batchtools")
15123 (version "0.9.13")
15124 (source
15125 (origin
15126 (method url-fetch)
15127 (uri (cran-uri "batchtools" version))
15128 (sha256
15129 (base32
15130 "02bwfinwgn5nl638997javig61jmr0ci0qybmprz13jnvmam1yns"))))
15131 (build-system r-build-system)
15132 (propagated-inputs
15133 `(("r-backports" ,r-backports)
15134 ("r-base64url" ,r-base64url)
15135 ("r-brew" ,r-brew)
15136 ("r-checkmate" ,r-checkmate)
15137 ("r-data-table" ,r-data-table)
15138 ("r-digest" ,r-digest)
15139 ("r-fs" ,r-fs)
15140 ("r-progress" ,r-progress)
15141 ("r-r6" ,r-r6)
15142 ("r-rappdirs" ,r-rappdirs)
15143 ("r-stringi" ,r-stringi)
15144 ("r-withr" ,r-withr)))
15145 (native-inputs
15146 `(("r-knitr" ,r-knitr)))
15147 (home-page "https://github.com/mllg/batchtools")
15148 (synopsis "Tools for computation on batch systems")
15149 (description
15150 "As a successor of the packages BatchJobs and BatchExperiments, this
15151 package provides a parallel implementation of the Map function for high
15152 performance computing systems managed by various schedulers. A multicore and
15153 socket mode allow the parallelization on a local machines, and multiple
15154 machines can be hooked up via SSH to create a makeshift cluster. Moreover,
15155 the package provides an abstraction mechanism to define large-scale computer
15156 experiments in a well-organized and reproducible way.")
15157 (license license:lgpl3)))
15158
15159 (define-public r-clue
15160 (package
15161 (name "r-clue")
15162 (version "0.3-57")
15163 (source
15164 (origin
15165 (method url-fetch)
15166 (uri (cran-uri "clue" version))
15167 (sha256
15168 (base32
15169 "05rdcahawxlxci3fjxihjvvh33wqpxw50sx015165ab4nh3rsdkf"))))
15170 (build-system r-build-system)
15171 (propagated-inputs `(("r-cluster" ,r-cluster)))
15172 (home-page "https://cran.r-project.org/web/packages/clue/")
15173 (synopsis "Tools for analyzing cluster ensembles")
15174 (description "Cluster ensembles are collections of individual solutions to
15175 a given clustering problem which are useful or necessary to consider in a wide
15176 range of applications. This R package provides an extensible computational
15177 environment for creating and analyzing cluster ensembles, with basic data
15178 structures for representing partitions and hierarchies, and facilities for
15179 computing on them, including methods for measuring proximity and obtaining
15180 consensus and secondary clusterings.")
15181 (license license:gpl2)))
15182
15183 (define-public r-sitmo
15184 (package
15185 (name "r-sitmo")
15186 (version "2.0.1")
15187 (source
15188 (origin
15189 (method url-fetch)
15190 (uri (cran-uri "sitmo" version))
15191 (sha256
15192 (base32
15193 "0apdhwy3kxs39agsbvx5vn3xsgb22bf3jrwmr2cmqk9kmxbx740c"))))
15194 (build-system r-build-system)
15195 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
15196 (home-page "https://github.com/coatless/sitmo/")
15197 (synopsis "Parallel pseudo random number generator header files")
15198 (description
15199 "This package provides two high quality and fast PPRNGs that may be used
15200 in an OpenMP parallel environment. In addition, there is a generator for one
15201 dimensional low-discrepancy sequence.")
15202 (license license:expat)))
15203
15204 (define-public r-dqrng
15205 (package
15206 (name "r-dqrng")
15207 (version "0.2.1")
15208 (source
15209 (origin
15210 (method url-fetch)
15211 (uri (cran-uri "dqrng" version))
15212 (sha256
15213 (base32
15214 "0rp8q5zijlvaqmpnkwr314w9w40sj4fz7sqsdgsffcfvn42w2jg1"))))
15215 (build-system r-build-system)
15216 (propagated-inputs
15217 `(("r-bh" ,r-bh)
15218 ("r-rcpp" ,r-rcpp)
15219 ("r-sitmo" ,r-sitmo)))
15220 (home-page "https://www.daqana.org/dqrng")
15221 (synopsis "Fast pseudo random number generators")
15222 (description
15223 "Several fast random number generators are provided as C++ header-only
15224 libraries: the PCG family as well as Xoroshiro128+ and Xoshiro256+.
15225 Additionally, fast functions for generating random numbers according to a
15226 uniform, normal and exponential distribution are included. The latter two use
15227 the Ziggurat algorithm originally proposed by Marsaglia and Tsang. These
15228 functions are exported to R and as a C++ interface and are enabled for use
15229 with the default 64 bit generator from the PCG family, Xoroshiro128+ and
15230 Xoshiro256+ as well as the 64 bit version of the 20 rounds Threefry
15231 engine (Salmon et al., 2011) as provided by the package @code{sitmo}.")
15232 ;; This package includes code under CC0 and Apache 2.0 or Expat, but as a
15233 ;; whole is distributed under the terms of the AGPL 3.
15234 (license license:agpl3)))
15235
15236 (define-public r-dalex
15237 (package
15238 (name "r-dalex")
15239 (version "1.0.1")
15240 (source
15241 (origin
15242 (method url-fetch)
15243 (uri (cran-uri "DALEX" version))
15244 (sha256
15245 (base32
15246 "1jbyn57vn6d281a5y15h5d8ljin8cdb9lr7lbgggc950blyfv4g0"))))
15247 (properties `((upstream-name . "DALEX")))
15248 (build-system r-build-system)
15249 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
15250 (home-page "https://pbiecek.github.io/DALEX/")
15251 (synopsis "Descriptive machine learning explanations")
15252 (description
15253 "Machine Learning models are widely used and have various applications in
15254 classification or regression. Models created with boosting, bagging, stacking
15255 or similar techniques are often used due to their high performance, but such
15256 black-box models usually lack interpretability. The DALEX package contains
15257 various explainers that help to understand the link between input variables
15258 and model output.")
15259 ;; Any version of the GPL
15260 (license license:gpl3+)))
15261
15262 (define-public r-enrichr
15263 (package
15264 (name "r-enrichr")
15265 (version "2.1")
15266 (source
15267 (origin
15268 (method url-fetch)
15269 (uri (cran-uri "enrichR" version))
15270 (sha256
15271 (base32
15272 "0ymhzs9d2wl0s9rvbqc1hqb78mlzwhlc7mmijpfqkm5r720pf6m1"))))
15273 (properties `((upstream-name . "enrichR")))
15274 (build-system r-build-system)
15275 (propagated-inputs
15276 `(("r-httr" ,r-httr)
15277 ("r-rjson" ,r-rjson)))
15278 (home-page "https://cran.r-project.org/web/packages/enrichR/")
15279 (synopsis "R Interface to Enrichr database for analyzing gene sets")
15280 (description
15281 "This package provides an R interface to all Enrichr databases, a
15282 web-based tool for analyzing gene sets and returns any enrichment of common
15283 annotated biological functions.")
15284 (license license:gpl2+)))
15285
15286 (define-public r-plot3d
15287 (package
15288 (name "r-plot3d")
15289 (version "1.3")
15290 (source
15291 (origin
15292 (method url-fetch)
15293 (uri (cran-uri "plot3D" version))
15294 (sha256
15295 (base32
15296 "1jfzndnlci9a975qbcv66jiy2l46hs3f2049654x4jp3i4kyrr5r"))))
15297 (properties `((upstream-name . "plot3D")))
15298 (build-system r-build-system)
15299 (propagated-inputs `(("r-misc3d" ,r-misc3d)))
15300 (home-page "https://cran.r-project.org/web/packages/plot3D")
15301 (synopsis "Plot multi-dimensional data")
15302 (description
15303 "This package provides functions for viewing 2D and 3D data, including
15304 perspective plots, slice plots, surface plots, scatter plots, etc. It
15305 includes data sets from oceanography.")
15306 (license license:gpl3+)))
15307
15308 (define-public r-ggfortify
15309 (package
15310 (name "r-ggfortify")
15311 (version "0.4.9")
15312 (source
15313 (origin
15314 (method url-fetch)
15315 (uri (cran-uri "ggfortify" version))
15316 (sha256
15317 (base32
15318 "1p6knrbyaynaqwd939w09hpf1zz1gn95cb46sfgppl8l98krb2h5"))))
15319 (build-system r-build-system)
15320 (propagated-inputs
15321 `(("r-dplyr" ,r-dplyr)
15322 ("r-ggplot2" ,r-ggplot2)
15323 ("r-gridextra" ,r-gridextra)
15324 ("r-scales" ,r-scales)
15325 ("r-stringr" ,r-stringr)
15326 ("r-tibble" ,r-tibble)
15327 ("r-tidyr" ,r-tidyr)))
15328 (native-inputs
15329 `(("r-knitr" ,r-knitr)))
15330 (home-page "https://github.com/sinhrks/ggfortify")
15331 (synopsis "Data visualization tools for statistical analysis results")
15332 (description
15333 "This package provides unified plotting tools for statistics commonly
15334 used, such as GLM, time series, PCA families, clustering and survival
15335 analysis. The package offers a single plotting interface for these analysis
15336 results and plots in a unified style using the @code{ggplot2} package.")
15337 (license license:gpl2)))
15338
15339 (define-public r-refmanager
15340 (package
15341 (name "r-refmanager")
15342 (version "1.2.12")
15343 (source
15344 (origin
15345 (method url-fetch)
15346 (uri (cran-uri "RefManageR" version))
15347 (sha256
15348 (base32
15349 "1hfxa1qacfryk36mpaqdhdgws5jwxiyy489ikd3wa18bp1wz8dkp"))))
15350 (properties `((upstream-name . "RefManageR")))
15351 (build-system r-build-system)
15352 (propagated-inputs
15353 `(("r-bibtex" ,r-bibtex)
15354 ("r-httr" ,r-httr)
15355 ("r-jsonlite" ,r-jsonlite)
15356 ("r-lubridate" ,r-lubridate)
15357 ("r-plyr" ,r-plyr)
15358 ("r-stringr" ,r-stringr)
15359 ("r-xml2" ,r-xml2)))
15360 (home-page "https://github.com/ropensci/RefManageR/")
15361 (synopsis "Straightforward BibTeX and BibLaTeX bibliography management")
15362 (description
15363 "This package provides tools for importing and working with bibliographic
15364 references. It greatly enhances the @code{bibentry} class by providing a
15365 class @code{BibEntry} which stores BibTeX and BibLaTeX references, supports
15366 UTF-8 encoding, and can be easily searched by any field, by date ranges, and
15367 by various formats for name lists (author by last names, translator by full
15368 names, etc.). Entries can be updated, combined, sorted, printed in a number
15369 of styles, and exported. BibTeX and BibLaTeX @code{.bib} files can be read
15370 into R and converted to @code{BibEntry} objects.")
15371 ;; Any of these licenses may be picked.
15372 (license (list license:gpl2 license:gpl3 license:bsd-3))))
15373
15374 (define-public r-citr
15375 (package
15376 (name "r-citr")
15377 (version "0.3.2")
15378 (source
15379 (origin
15380 (method url-fetch)
15381 (uri (cran-uri "citr" version))
15382 (sha256
15383 (base32
15384 "1qbarvafjb8jgkrnrhh6jw7mcglmjwf7dpdiibxf39jkmlhf7las"))))
15385 (build-system r-build-system)
15386 (propagated-inputs
15387 `(("r-assertthat" ,r-assertthat)
15388 ("r-curl" ,r-curl)
15389 ("r-httr" ,r-httr)
15390 ("r-miniui" ,r-miniui)
15391 ("r-refmanager" ,r-refmanager)
15392 ("r-rstudioapi" ,r-rstudioapi)
15393 ("r-shiny" ,r-shiny)
15394 ("r-shinyjs" ,r-shinyjs)
15395 ("r-yaml" ,r-yaml)))
15396 (home-page "https://github.com/crsh/citr")
15397 (synopsis "RStudio add-in to insert Markdown citations")
15398 (description
15399 "This package provides functions and an RStudio add-in that search a
15400 BibTeX or BibLaTeX file to create and insert formatted Markdown citations into
15401 the current document.")
15402 (license license:expat)))
15403
15404 (define-public r-xgboost
15405 (package
15406 (name "r-xgboost")
15407 (version "1.0.0.2")
15408 (source
15409 (origin
15410 (method url-fetch)
15411 (uri (cran-uri "xgboost" version))
15412 (sha256
15413 (base32
15414 "1ld2w51c5fy3bl0kvjn1iplffc4lmin9s9zz5xx7xsm44d6j6kzd"))))
15415 (build-system r-build-system)
15416 (propagated-inputs
15417 `(("r-data-table" ,r-data-table)
15418 ("r-magrittr" ,r-magrittr)
15419 ("r-matrix" ,r-matrix)
15420 ("r-stringi" ,r-stringi)))
15421 (native-inputs
15422 `(("r-knitr" ,r-knitr)))
15423 (home-page "https://github.com/dmlc/xgboost")
15424 (synopsis "Extreme gradient boosting")
15425 (description
15426 "This package provides an R interface to Extreme Gradient Boosting, which
15427 is an efficient implementation of the gradient boosting framework from Chen
15428 and Guestrin (2016). The package includes efficient linear model solver and
15429 tree learning algorithms. The package can automatically do parallel
15430 computation on a single machine. It supports various objective functions,
15431 including regression, classification and ranking. The package is made to be
15432 extensible, so that users are also allowed to define their own objectives
15433 easily.")
15434 (license license:asl2.0)))
15435
15436 (define-public r-umap
15437 (package
15438 (name "r-umap")
15439 (version "0.2.5.0")
15440 (source
15441 (origin
15442 (method url-fetch)
15443 (uri (cran-uri "umap" version))
15444 (sha256
15445 (base32
15446 "0qp8zbh6fn8kn6q2h2lyjgmq3pr6gqwsd8ymqx25px13zjhxch9d"))))
15447 (build-system r-build-system)
15448 (propagated-inputs
15449 `(("r-openssl" ,r-openssl)
15450 ("r-rcpp" ,r-rcpp)
15451 ("r-reticulate" ,r-reticulate)
15452 ("r-rspectra" ,r-rspectra)))
15453 (native-inputs
15454 `(("r-knitr" ,r-knitr)))
15455 (home-page "https://github.com/tkonopka/umap")
15456 (synopsis "Uniform manifold approximation and projection")
15457 (description
15458 "Uniform manifold approximation and projection is a technique for
15459 dimension reduction. This package provides an interface to the UMAP algorithm
15460 in R, including a translation of the original algorithm into R.")
15461 (license license:expat)))
15462
15463 (define-public r-uwot
15464 (package
15465 (name "r-uwot")
15466 (version "0.1.8")
15467 (source
15468 (origin
15469 (method url-fetch)
15470 (uri (cran-uri "uwot" version))
15471 (sha256
15472 (base32
15473 "1jzh8r1h6f7pw7pb1fr32vn6ai9g10s56ahkq0vi77iznihy1rpd"))))
15474 (build-system r-build-system)
15475 (propagated-inputs
15476 `(("r-dqrng" ,r-dqrng)
15477 ("r-fnn" ,r-fnn)
15478 ("r-irlba" ,r-irlba)
15479 ("r-matrix" ,r-matrix)
15480 ("r-rcpp" ,r-rcpp)
15481 ("r-rcppannoy" ,r-rcppannoy)
15482 ("r-rcppprogress" ,r-rcppprogress)
15483 ("r-rspectra" ,r-rspectra)))
15484 (home-page "https://github.com/jlmelville/uwot")
15485 (synopsis "Uniform manifold approximation and projection")
15486 (description
15487 "This package provides an implementation of the Uniform Manifold
15488 Approximation and Projection dimensionality reduction by McInnes et
15489 al. (2018). It also provides means to transform new data and to carry out
15490 supervised dimensionality reduction. An implementation of the related
15491 LargeVis method of Tang et al. (2016) is also provided.")
15492 (license license:gpl3)))
15493
15494 (define-public r-kableextra
15495 (package
15496 (name "r-kableextra")
15497 (version "1.1.0")
15498 (source
15499 (origin
15500 (method url-fetch)
15501 (uri (cran-uri "kableExtra" version))
15502 (sha256
15503 (base32
15504 "1nicvw06xsf3a1f5c10mih07b76m2v5s5h165vmz0qx6n1a3492i"))))
15505 (properties `((upstream-name . "kableExtra")))
15506 (build-system r-build-system)
15507 (propagated-inputs
15508 `(("r-digest" ,r-digest)
15509 ("r-glue" ,r-glue)
15510 ("r-htmltools" ,r-htmltools)
15511 ("r-knitr" ,r-knitr)
15512 ("r-magrittr" ,r-magrittr)
15513 ("r-readr" ,r-readr)
15514 ("r-rmarkdown" ,r-rmarkdown)
15515 ("r-rstudioapi" ,r-rstudioapi)
15516 ("r-rvest" ,r-rvest)
15517 ("r-scales" ,r-scales)
15518 ("r-stringr" ,r-stringr)
15519 ("r-viridislite" ,r-viridislite)
15520 ("r-webshot" ,r-webshot)
15521 ("r-xml2" ,r-xml2)))
15522 (home-page "https://haozhu233.github.io/kableExtra/")
15523 (synopsis "Construct complex tables with pipe syntax")
15524 (description
15525 "Build complex HTML or LaTeX tables using @code{kable()} from
15526 @code{knitr} and the piping syntax from @code{magrittr}. The function
15527 @code{kable()} is a light weight table generator coming from @code{knitr}.
15528 This package simplifies the way to manipulate the HTML or LaTeX codes
15529 generated by @code{kable()} and allows users to construct complex tables and
15530 customize styles using a readable syntax.")
15531 (license license:expat)))
15532
15533 (define-public r-glasso
15534 (package
15535 (name "r-glasso")
15536 (version "1.11")
15537 (source
15538 (origin
15539 (method url-fetch)
15540 (uri (cran-uri "glasso" version))
15541 (sha256
15542 (base32 "02p3612rpydk195n2qr77lp1j2w8zsw1ckkk98c8angm4r5q8dsc"))))
15543 (build-system r-build-system)
15544 (native-inputs `(("gfortran" ,gfortran)))
15545 (home-page "https://statweb.stanford.edu/~tibs/glasso/")
15546 (synopsis "Graphical Lasso: estimation of Gaussian graphical models")
15547 (description
15548 "This is a package for estimation of a sparse inverse covariance matrix
15549 using a lasso (L1) penalty. Facilities are provided for estimates along a
15550 path of values for the regularization parameter.")
15551 (license license:gpl2)))
15552
15553 (define-public r-rhpcblasctl
15554 (package
15555 (name "r-rhpcblasctl")
15556 (version "0.20-17")
15557 (source
15558 (origin
15559 (method url-fetch)
15560 (uri (cran-uri "RhpcBLASctl" version))
15561 (sha256
15562 (base32
15563 "0iwc06blr5sx7rylwczi2jrha8sk8qs0jklflwpidl0zj1jxdggp"))))
15564 (properties `((upstream-name . "RhpcBLASctl")))
15565 (build-system r-build-system)
15566 (home-page "https://prs.ism.ac.jp/~nakama/Rhpc/")
15567 (synopsis "Control the number of threads on BLAS")
15568 (description
15569 "This package allows you to control the number of threads the BLAS
15570 library uses. It is also possible to control the number of threads in
15571 OpenMP.")
15572 (license license:agpl3+)))
15573
15574 (define-public r-lda
15575 (package
15576 (name "r-lda")
15577 (version "1.4.2")
15578 (source
15579 (origin
15580 (method url-fetch)
15581 (uri (cran-uri "lda" version))
15582 (sha256
15583 (base32
15584 "03r4h5kgr8mfy44p66mfj5bp4k00g8zh4a1mhn46jw14pkhs21jn"))))
15585 (build-system r-build-system)
15586 (home-page "https://cran.r-project.org/web/packages/lda/")
15587 (synopsis "Collapsed Gibbs sampling methods for topic models")
15588 (description
15589 "This package implements @dfn{latent Dirichlet allocation} (LDA) and
15590 related models. This includes (but is not limited to) sLDA, corrLDA, and the
15591 mixed-membership stochastic blockmodel. Inference for all of these models is
15592 implemented via a fast collapsed Gibbs sampler written in C. Utility
15593 functions for reading/writing data typically used in topic models, as well as
15594 tools for examining posterior distributions are also included.")
15595 ;; Any version of the LGPL
15596 (license license:lgpl3+)))
15597
15598 (define-public r-rann-l1
15599 (package
15600 (name "r-rann-l1")
15601 (version "2.5.2")
15602 (source
15603 (origin
15604 (method url-fetch)
15605 (uri (cran-uri "RANN.L1" version))
15606 (sha256
15607 (base32
15608 "1hanh3my84mdr5wy6b89fawqzfc184vff1y65wy4l5ld9qza1n44"))))
15609 (properties `((upstream-name . "RANN.L1")))
15610 (build-system r-build-system)
15611 (home-page "https://github.com/jefferis/RANN/tree/master-L1")
15612 (synopsis "Fast nearest neighbour search using L1 metric")
15613 (description
15614 "This package provides tools to find the k nearest neighbours for every
15615 point in a given dataset in O(N log N) time using Arya and Mount's ANN
15616 library. There is support for approximate as well as exact searches, fixed
15617 radius searches and @code{bd} as well as @code{kd} trees. The distance is
15618 computed using the L1 (Manhattan, taxicab) metric.")
15619 (license license:gpl3+)))
15620
15621 (define-public r-leiden
15622 (package
15623 (name "r-leiden")
15624 (version "0.3.3")
15625 (source
15626 (origin
15627 (method url-fetch)
15628 (uri (cran-uri "leiden" version))
15629 (sha256
15630 (base32
15631 "1hh6bmbz6cpqwl4i94gxylgv9x92zbqdg81r8r4ymfy8c70f3df2"))))
15632 (properties `((upstream-name . "leiden")))
15633 (build-system r-build-system)
15634 (propagated-inputs
15635 `(("r-igraph" ,r-igraph)
15636 ("r-matrix" ,r-matrix)
15637 ("r-reticulate" ,r-reticulate)))
15638 (home-page "https://github.com/TomKellyGenetics/leiden")
15639 (synopsis "R implementation of Leiden clustering algorithm")
15640 (description
15641 "This package implements the Python @code{leidenalg} module to be called
15642 in R. It enables clustering using the Leiden algorithm for partitioning a
15643 graph into communities. See also Traag et al (2018) \"From Louvain to Leiden:
15644 guaranteeing well-connected communities.\" <arXiv:1810.08473>.")
15645 (license license:gpl3)))
15646
15647 (define-public r-patchwork
15648 (package
15649 (name "r-patchwork")
15650 (version "1.0.0")
15651 (source
15652 (origin
15653 (method url-fetch)
15654 (uri (cran-uri "patchwork" version))
15655 (sha256
15656 (base32
15657 "0qrwbcswh7ylrmghi17k6wk7w51cz6mcmvcyyd41hy3m2ywmkywb"))))
15658 (build-system r-build-system)
15659 (propagated-inputs
15660 `(("r-ggplot2" ,r-ggplot2)
15661 ("r-gtable" ,r-gtable)))
15662 (native-inputs
15663 `(("r-knitr" ,r-knitr)))
15664 (home-page "https://github.com/thomasp85/patchwork")
15665 (synopsis "Compose ggplot2 plots")
15666 (description
15667 "The @code{ggplot2} package provides a strong API for sequentially
15668 building up a plot, but does not concern itself with composition of multiple
15669 plots. Patchwork is a package that expands the API to allow for arbitrarily
15670 complex composition of plots by providing mathmatical operators for combining
15671 multiple plots.")
15672 (license license:expat)))
15673
15674 (define-public r-liger
15675 (package
15676 (name "r-liger")
15677 (version "0.4.2")
15678 (source
15679 (origin
15680 (method git-fetch)
15681 (uri (git-reference
15682 (url "https://github.com/MacoskoLab/liger.git")
15683 (commit (string-append "v" version))))
15684 (file-name (git-file-name name version))
15685 (sha256
15686 (base32
15687 "16dzwwcpw6n78pxlc5w3kraigki35ix7zhd2cbx5f3y60bbkhlmx"))
15688 (modules '((guix build utils)))
15689 (snippet
15690 '(begin
15691 (delete-file "inst/java/ModularityOptimizer.jar")
15692 #t))))
15693 (build-system r-build-system)
15694 (arguments
15695 `(#:phases
15696 (modify-phases %standard-phases
15697 (add-after 'unpack 'build-java-part
15698 (lambda* (#:key inputs #:allow-other-keys)
15699 (invoke "unzip" (assoc-ref inputs "optimizer-src"))
15700 (for-each (lambda (file) (invoke "javac" file))
15701 (find-files "." "\\.java$"))
15702 (apply invoke "jar" "cf" "inst/java/ModularityOptimizer.jar"
15703 (find-files "." "\\.class$"))
15704 #t)))))
15705 (propagated-inputs
15706 `(("r-cowplot" ,r-cowplot)
15707 ("r-dosnow" ,r-dosnow)
15708 ("r-dplyr" ,r-dplyr)
15709 ("r-fnn" ,r-fnn)
15710 ("r-foreach" ,r-foreach)
15711 ("r-ggplot2" ,r-ggplot2)
15712 ("r-ggrepel" ,r-ggrepel)
15713 ("r-hmisc" ,r-hmisc)
15714 ("r-ica" ,r-ica)
15715 ("r-irlba" ,r-irlba)
15716 ("r-matrix" ,r-matrix)
15717 ("r-mclust" ,r-mclust)
15718 ("r-patchwork" ,r-patchwork)
15719 ("r-plyr" ,r-plyr)
15720 ("r-rann-l1" ,r-rann-l1)
15721 ("r-rcpp" ,r-rcpp)
15722 ("r-rcpparmadillo" ,r-rcpparmadillo)
15723 ("r-riverplot" ,r-riverplot)
15724 ("r-rtsne" ,r-rtsne)
15725 ("r-snow" ,r-snow)))
15726 (native-inputs
15727 `(("jdk" ,icedtea "jdk")
15728 ;; See https://github.com/MacoskoLab/liger/issues/96
15729 ;; The optimizer is released under the Expat license.
15730 ("optimizer-src"
15731 ,(origin
15732 (method url-fetch)
15733 (uri "http://www.ludowaltman.nl/slm/modularity_optimizer_source.zip")
15734 (sha256
15735 (base32
15736 "01hmm6sapcmldvayknqx2w4cav3qv71mwwkdkwj4qgq6dss09g18"))))
15737 ("unzip" ,unzip)
15738 ("r-knitr" ,r-knitr))) ; for vignettes
15739 (home-page "https://github.com/MacoskoLab/liger")
15740 (synopsis "Integrate and analyze multiple single-cell datasets")
15741 (description
15742 "LIGER is a package for integrating and analyzing multiple single-cell
15743 datasets, developed and maintained by the Macosko lab. It relies on
15744 integrative non-negative matrix factorization to identify shared and
15745 dataset-specific factors.")
15746 (license license:gpl3)))
15747
15748 (define-public r-harmony
15749 (package
15750 (name "r-harmony")
15751 (version "0.1")
15752 (source
15753 (origin
15754 (method git-fetch)
15755 (uri (git-reference
15756 (url "https://github.com/immunogenomics/harmony")
15757 (commit version)))
15758 (file-name (git-file-name name version))
15759 (sha256
15760 (base32
15761 "05r401q09rbr6fqhb9mbd95082cjdi3nag1cv6zn96xkr0f6imq9"))
15762 (modules '((guix build utils)))
15763 (snippet
15764 '(begin
15765 (for-each delete-file '("config.status" "configure"))
15766 #t))))
15767 (build-system r-build-system)
15768 (propagated-inputs
15769 `(("r-cowplot" ,r-cowplot)
15770 ("r-dplyr" ,r-dplyr)
15771 ("r-ggplot2" ,r-ggplot2)
15772 ("r-irlba" ,r-irlba)
15773 ("r-matrix" ,r-matrix)
15774 ("r-rcpp" ,r-rcpp)
15775 ("r-rcpparmadillo" ,r-rcpparmadillo)
15776 ("r-rcppprogress" ,r-rcppprogress)
15777 ("r-rlang" ,r-rlang)
15778 ("r-tibble" ,r-tibble)
15779 ("r-tidyr" ,r-tidyr)))
15780 (native-inputs
15781 `(("autoconf" ,autoconf)))
15782 (home-page "https://github.com/immunogenomics/harmony")
15783 (synopsis "Integration of single cell sequencing data")
15784 (description
15785 "This package provides an implementation of the Harmony algorithm for
15786 single cell integration, described in Korsunsky et al
15787 @url{doi.org/10.1101/461954}. The package includes a standalone Harmony
15788 function and interfaces to external frameworks.")
15789 (license license:gpl3)))
15790
15791 (define-public r-covr
15792 (package
15793 (name "r-covr")
15794 (version "3.5.0")
15795 (source
15796 (origin
15797 (method url-fetch)
15798 (uri (cran-uri "covr" version))
15799 (sha256
15800 (base32 "1pvr95h7jg9hqq1qq1cccy323pkxldrwafl08151cc410499k4fb"))))
15801 (properties `((upstream-name . "covr")))
15802 (build-system r-build-system)
15803 (propagated-inputs
15804 `(("r-crayon" ,r-crayon)
15805 ("r-digest" ,r-digest)
15806 ("r-httr" ,r-httr)
15807 ("r-jsonlite" ,r-jsonlite)
15808 ("r-rex" ,r-rex)
15809 ("r-withr" ,r-withr)
15810 ("r-yaml" ,r-yaml)))
15811 (native-inputs
15812 `(("r-knitr" ,r-knitr))) ; for vignettes
15813 (home-page "https://github.com/r-lib/covr")
15814 (synopsis "Test coverage for R packages")
15815 (description
15816 "Thisp package enables you to track and report code coverage for your
15817 package and (optionally) upload the results to a coverage service. Code
15818 coverage is a measure of the amount of code being exercised by a set of tests.
15819 It is an indirect measure of test quality and completeness. This package is
15820 compatible with any testing methodology or framework and tracks coverage of
15821 both R code and compiled C/C++/FORTRAN code.")
15822 (license license:gpl3)))
15823
15824 (define-public r-systemfonts
15825 (package
15826 (name "r-systemfonts")
15827 (version "0.1.1")
15828 (source
15829 (origin
15830 (method url-fetch)
15831 (uri (cran-uri "systemfonts" version))
15832 (sha256
15833 (base32
15834 "0m0ljid683xcam2f14x7k2zv1yx4npac38a3gfv11vhxfbnpgp0z"))))
15835 (properties `((upstream-name . "systemfonts")))
15836 (build-system r-build-system)
15837 (inputs
15838 `(("fontconfig" ,fontconfig)
15839 ("freetype" ,freetype)
15840 ("zlib" ,zlib)))
15841 (native-inputs
15842 `(("pkg-config" ,pkg-config)))
15843 (home-page "https://github.com/r-lib/systemfonts")
15844 (synopsis "System native font finding")
15845 (description
15846 "This package provides system native access to the font catalogue. As
15847 font handling varies between systems it is difficult to correctly locate
15848 installed fonts across different operating systems. The 'systemfonts' package
15849 provides bindings to the native libraries for finding font files that can then
15850 be used further by e.g. graphic devices.")
15851 (license license:expat)))
15852
15853 (define-public r-graphlayouts
15854 (package
15855 (name "r-graphlayouts")
15856 (version "0.6.0")
15857 (source
15858 (origin
15859 (method url-fetch)
15860 (uri (cran-uri "graphlayouts" version))
15861 (sha256
15862 (base32
15863 "1la016m37kp79zk8p1yx9kaha8y6d4w52w39h0mzv1mfsi6d75w0"))))
15864 (properties `((upstream-name . "graphlayouts")))
15865 (build-system r-build-system)
15866 (propagated-inputs
15867 `(("r-igraph" ,r-igraph)
15868 ("r-rcpp" ,r-rcpp)
15869 ("r-rcpparmadillo" ,r-rcpparmadillo)))
15870 (home-page "https://github.com/schochastics/graphlayouts")
15871 (synopsis "Additional layout algorithms for network visualizations")
15872 (description
15873 "This package provides several layout algorithms to visualize networks
15874 which are not part of the igraph library. Most are based on the concept of
15875 stress majorization by Gansner et al. (2004)
15876 <doi:10.1007/978-3-540-31843-9_25>. Some more specific algorithms
15877 emphasize hidden group structures in networks or focus on specific nodes.")
15878 (license license:expat)))
15879
15880 (define-public r-tidygraph
15881 (package
15882 (name "r-tidygraph")
15883 (version "1.1.2")
15884 (source
15885 (origin
15886 (method url-fetch)
15887 (uri (cran-uri "tidygraph" version))
15888 (sha256
15889 (base32
15890 "1zpsarm74afbc7p5dlyb0whc09670qdcddw1ckb25cfc9hfh0hjn"))))
15891 (properties `((upstream-name . "tidygraph")))
15892 (build-system r-build-system)
15893 (propagated-inputs
15894 `(("r-dplyr" ,r-dplyr)
15895 ("r-igraph" ,r-igraph)
15896 ("r-magrittr" ,r-magrittr)
15897 ("r-pillar" ,r-pillar)
15898 ("r-r6" ,r-r6)
15899 ("r-rcpp" ,r-rcpp)
15900 ("r-rlang" ,r-rlang)
15901 ("r-tibble" ,r-tibble)
15902 ("r-tidyr" ,r-tidyr)))
15903 (home-page "https://github.com/thomasp85/tidygraph")
15904 (synopsis "Tidy API for graph manipulation")
15905 (description
15906 "This package provides a graph implementation that can be thought of as
15907 two tidy data frames describing node and edge data respectively. It provides
15908 an approach to manipulate these two virtual data frames using the API defined
15909 in the @code{dplyr} package, and it also provides tidy interfaces to a lot of
15910 common graph algorithms.")
15911 (license license:expat)))
15912
15913 (define-public r-soupx
15914 (let ((commit "a3354be76fb52fd795be6ddf163cf056c05c6cb8")
15915 (revision "1"))
15916 (package
15917 (name "r-soupx")
15918 (version (git-version "0.3.1" revision commit))
15919 (source
15920 (origin
15921 (method git-fetch)
15922 (uri (git-reference
15923 (url "https://github.com/constantAmateur/SoupX")
15924 (commit commit)))
15925 (file-name (git-file-name name version))
15926 (sha256
15927 (base32
15928 "1zmlyzrl0fz6l79gn2wswid670p88mm3y292is89sa5p3h7frr99"))))
15929 (properties `((upstream-name . "SoupX")))
15930 (build-system r-build-system)
15931 (propagated-inputs
15932 `(("r-ggplot2" ,r-ggplot2)
15933 ("r-matrix" ,r-matrix)
15934 ("r-seurat" ,r-seurat)))
15935 (home-page "https://github.com/constantAmateur/SoupX")
15936 (synopsis "Single cell mRNA Soup eXterminator")
15937 (description
15938 "This package provides a package for quantifying, profiling and
15939 removing cell free mRNA contamination (the \"soup\") from droplet based single
15940 cell RNA-seq experiments.")
15941 (license license:gpl2))))
15942
15943 (define-public r-assertr
15944 (package
15945 (name "r-assertr")
15946 (version "2.7")
15947 (source
15948 (origin
15949 (method url-fetch)
15950 (uri (cran-uri "assertr" version))
15951 (sha256
15952 (base32
15953 "1x868pd4dac1c7b1q5390wqh2f6s50km8nqcpim3nxcj2l4qkqdb"))))
15954 (build-system r-build-system)
15955 (propagated-inputs
15956 `(("r-dplyr" ,r-dplyr)
15957 ("r-mass" ,r-mass)
15958 ("r-rlang" ,r-rlang)))
15959 (native-inputs
15960 `(("r-knitr" ,r-knitr))) ; needed for vignette
15961 (home-page "https://github.com/ropensci/assertr")
15962 (synopsis "Assertive programming for R analysis pipelines")
15963 (description
15964 "This package provides functionality to assert conditions that have to be
15965 met so that errors in data used in analysis pipelines can fail quickly. It is
15966 similar to @code{stopifnot()} but more powerful, friendly, and easier for use
15967 in pipelines.")
15968 (license license:expat)))
15969
15970 (define-public r-parameters
15971 (package
15972 (name "r-parameters")
15973 (version "0.6.0")
15974 (source
15975 (origin
15976 (method url-fetch)
15977 (uri (cran-uri "parameters" version))
15978 (sha256
15979 (base32
15980 "0zin3ikc013hc713n5zs0dbhc3m4nfw1vhc3924z0mrww8r241xn"))))
15981 (properties `((upstream-name . "parameters")))
15982 (build-system r-build-system)
15983 (propagated-inputs
15984 `(("r-bayestestr" ,r-bayestestr)
15985 ("r-insight" ,r-insight)))
15986 (native-inputs
15987 `(("r-knitr" ,r-knitr)))
15988 (home-page "https://cran.r-project.org/web/packages/parameters")
15989 (synopsis "Processing of model parameters")
15990 (description
15991 "This package provides utilities for processing the parameters of various
15992 statistical models. Beyond computing p values, CIs, and other indices for a
15993 wide variety of models, this package implements features like standardization
15994 or bootstrapping of parameters and models, feature reduction (feature
15995 extraction and variable selection) as well as conversion between indices of
15996 effect size.")
15997 (license license:gpl3)))
15998
15999 (define-public r-rgdal
16000 (package
16001 (name "r-rgdal")
16002 (version "1.4-8")
16003 (source
16004 (origin
16005 (method url-fetch)
16006 (uri (cran-uri "rgdal" version))
16007 (sha256
16008 (base32 "1jd691amf3ghznq5im15gvhl6v6k25klpl75m4ngrqf9xlxaa3as"))))
16009 (properties `((upstream-name . "rgdal")))
16010 (build-system r-build-system)
16011 (inputs
16012 `(("gdal" ,gdal)
16013 ("proj.4" ,proj.4)
16014 ("zlib" ,zlib)))
16015 (propagated-inputs
16016 `(("r-sp" ,r-sp)))
16017 (native-inputs
16018 `(("pkg-config" ,pkg-config)))
16019 (home-page "http://rgdal.r-forge.r-project.org")
16020 (synopsis "Bindings for the Geospatial Data Abstraction Library")
16021 (description
16022 "This package provides bindings to the Geospatial Data Abstraction
16023 Library (GDAL) and access to projection/transformation operations from the
16024 PROJ.4 library.")
16025 (license license:gpl2+)))
16026
16027 (define-public r-insol
16028 (package
16029 (name "r-insol")
16030 (version "1.2.1")
16031 (source
16032 (origin
16033 (method url-fetch)
16034 (uri (cran-uri "insol" version))
16035 (sha256
16036 (base32
16037 "1d2vqmbp94ff80mfkmq4a8y12r6ryym8hh1568ip9qbn7snc64v1"))))
16038 (properties `((upstream-name . "insol")))
16039 (build-system r-build-system)
16040 (propagated-inputs
16041 `(("r-raster" ,r-raster)))
16042 (native-inputs
16043 `(("gfortran" ,gfortran)))
16044 (home-page "https://meteoexploration.com/R/insol/index.html")
16045 (synopsis "Tools for calculating solar radiation")
16046 (description
16047 "This package provides functions to compute insolation on tilted
16048 surfaces, computes atmospheric transmittance and related parameters such as:
16049 Earth radius vector, declination, sunset and sunrise, daylength, equation of
16050 time, vector in the direction of the sun, vector normal to surface, and some
16051 atmospheric physics.")
16052 (license license:gpl2+)))
16053
16054 (define-public r-lifecycle
16055 (package
16056 (name "r-lifecycle")
16057 (version "0.2.0")
16058 (source
16059 (origin
16060 (method url-fetch)
16061 (uri (cran-uri "lifecycle" version))
16062 (sha256
16063 (base32
16064 "0912865c6675fsblrfdk6s568krsj1x8qbk1kipy7m05xs6nwx19"))))
16065 (properties `((upstream-name . "lifecycle")))
16066 (build-system r-build-system)
16067 (propagated-inputs
16068 `(("r-glue" ,r-glue)
16069 ("r-rlang" ,r-rlang)))
16070 (native-inputs
16071 `(("r-knitr" ,r-knitr))) ; for vignettes
16072 (home-page "https://github.com/r-lib/lifecycle")
16073 (synopsis "Manage the life cycle of your package functions")
16074 (description
16075 "Manage the life cycle of your exported functions with shared
16076 conventions, documentation badges, and non-invasive deprecation warnings. The
16077 lifecycle package defines four development stages (experimental, maturing,
16078 stable, and questioning) and three deprecation stages (soft-deprecated,
16079 deprecated, and defunct). It makes it easy to insert badges corresponding to
16080 these stages in your documentation. Usage of deprecated functions are
16081 signalled with increasing levels of non-invasive verbosity.")
16082 (license license:gpl3)))
16083
16084 (define-public r-assertable
16085 (package
16086 (name "r-assertable")
16087 (version "0.2.7")
16088 (source
16089 (origin
16090 (method url-fetch)
16091 (uri (cran-uri "assertable" version))
16092 (sha256
16093 (base32
16094 "1npks9rcrnchmd0silq6qrvqkmdkp9fwjkyyvvp1lqjclyxk6vkk"))))
16095 (build-system r-build-system)
16096 (propagated-inputs
16097 `(("r-data-table" ,r-data-table)))
16098 (home-page "https://cran.r-project.org/web/packages/assertable/")
16099 (synopsis "Verbose assertions for tabular data (data.frames and data.tables)")
16100 (description "This package provides simple, flexible assertions on
16101 data.frame or data.table objects with verbose output for vetting. While other
16102 assertion packages apply towards more general use-cases, @code{assertable} is
16103 tailored towards tabular data. It includes functions to check variable names
16104 and values, whether the dataset contains all combinations of a given set of
16105 unique identifiers, and whether it is a certain length. In addition,
16106 @code{assertable} includes utility functions to check the existence of target
16107 files and to efficiently import multiple tabular data files into one
16108 data.table.")
16109 (license license:gpl3)))
16110
16111 (define-public r-quadprog
16112 (package
16113 (name "r-quadprog")
16114 (version "1.5-8")
16115 (source
16116 (origin
16117 (method url-fetch)
16118 (uri (cran-uri "quadprog" version))
16119 (sha256
16120 (base32 "1ka9g8zak8sg4y2xbz93dfrldznlk9qpd4pq9z21cdcdn3b8s4i2"))))
16121 (build-system r-build-system)
16122 (native-inputs
16123 `(("gfortran" ,gfortran)))
16124 (home-page "https://cran.r-project.org/web/packages/quadprog")
16125 (synopsis "Functions to solve quadratic programming problems")
16126 (description
16127 "This package contains routines and documentation for solving quadratic
16128 programming problems.")
16129 (license license:gpl3+)))
16130
16131 (define-public r-desolve
16132 (package
16133 (name "r-desolve")
16134 (version "1.28")
16135 (source
16136 (origin
16137 (method url-fetch)
16138 (uri (cran-uri "deSolve" version))
16139 (sha256
16140 (base32 "0jasvdzig0pzhzspmy20089az19r91xjfb9q6h8gj7c4mr6fymac"))))
16141 (properties `((upstream-name . "deSolve")))
16142 (build-system r-build-system)
16143 (native-inputs
16144 `(("gfortran" ,gfortran)))
16145 (home-page "https://desolve.r-forge.r-project.org/")
16146 (synopsis "Solvers for initial value problems of differential equations")
16147 (description "This package provides functions that solve initial value
16148 problems of a system of first-order @dfn{ordinary differential
16149 equations} (ODE), of @dfn{partial differential equations} (PDE), of
16150 @dfn{differential algebraic equations} (DAE), and of delay differential
16151 equations. The functions provide an interface to the FORTRAN functions
16152 @code{lsoda}, @code{lsodar}, @code{lsode}, @code{lsodes} of the ODEPACK
16153 collection, to the FORTRAN functions @code{dvode} and @code{daspk} and a
16154 C-implementation of solvers of the Runge-Kutta family with fixed or variable
16155 time steps. The package contains routines designed for solving ODEs resulting
16156 from 1-D, 2-D and 3-D partial differential equations that have been converted
16157 to ODEs by numerical differencing.")
16158 (license license:gpl2+)))
16159
16160 (define-public r-pracma
16161 (package
16162 (name "r-pracma")
16163 (version "2.2.9")
16164 (source (origin
16165 (method url-fetch)
16166 (uri (cran-uri "pracma" version))
16167 (sha256
16168 (base32 "07mzhzz73wsjjw1q05l024gcd13hwnzsxf873q9dyhw6x3shzshc"))))
16169 (build-system r-build-system)
16170 (home-page "https://cran.r-project.org/web/packages/pracma/")
16171 (synopsis "Practical numerical math functions")
16172 (description "This package provides functions for numerical analysis and
16173 linear algebra, numerical optimization, differential equations, plus some
16174 special functions. It uses Matlab function names where appropriate to simplify
16175 porting.")
16176 (license license:gpl3+)))
16177
16178 (define-public r-subplex
16179 (package
16180 (name "r-subplex")
16181 (version "1.6")
16182 (source
16183 (origin
16184 (method url-fetch)
16185 (uri (cran-uri "subplex" version))
16186 (sha256
16187 (base32
16188 "1yfbfjvpbhgky7vihw3f4jl41pxpqb39z4nc045d5z7z48bdl18d"))))
16189 (build-system r-build-system)
16190 (native-inputs
16191 `(("gfortran" ,gfortran)))
16192 (home-page "https://cran.r-project.org/web/packages/subplex")
16193 (synopsis "Unconstrained optimization using the subplex algorithm")
16194 (description
16195 "This package implements the Subplex optimization algorithm.
16196 It solves unconstrained optimization problems using a simplex method on
16197 subspaces. The method is well suited for optimizing objective functions that
16198 are noisy or are discontinuous at the solution.")
16199 (license license:gpl3+)))
16200
16201 (define-public r-txtplot
16202 (package
16203 (name "r-txtplot")
16204 (version "1.0-3")
16205 (source
16206 (origin
16207 (method url-fetch)
16208 (uri (cran-uri "txtplot" version))
16209 (sha256
16210 (base32
16211 "1949ab1bzvysdb79g8x1gaknj0ih3d6g63pv9512h5m5l3a6c31h"))))
16212 (build-system r-build-system)
16213 (home-page "https://cran.r-project.org/web/packages/txtplot/")
16214 (synopsis "Text-based plotting")
16215 (description "This package provides functions to produce rudimentary ASCII
16216 graphics directly in the terminal window. This package provides a basic
16217 plotting function (and equivalents of curve, density, acf and barplot) as well
16218 as a boxplot function.")
16219 (license license:lgpl3+)))
16220
16221 (define-public r-bio3d
16222 (package
16223 (name "r-bio3d")
16224 (version "2.4-1")
16225 (source
16226 (origin
16227 (method url-fetch)
16228 (uri (cran-uri "bio3d" version))
16229 (sha256
16230 (base32
16231 "07rw6c2d95gb5myxh31727j0jrchd0xisa3x89jjmf4zzs3vv7v7"))))
16232 (properties `((upstream-name . "bio3d")))
16233 (build-system r-build-system)
16234 (inputs `(("zlib" ,zlib)))
16235 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
16236 (home-page "http://thegrantlab.org/bio3d/")
16237 (synopsis "Biological structure analysis")
16238 (description
16239 "This package provides utilities to process, organize and explore protein
16240 structure, sequence and dynamics data. Features include the ability to read
16241 and write structure, sequence and dynamic trajectory data, perform sequence
16242 and structure database searches, data summaries, atom selection, alignment,
16243 superposition, rigid core identification, clustering, torsion analysis,
16244 distance matrix analysis, structure and sequence conservation analysis, normal
16245 mode analysis, principal component analysis of heterogeneous structure data,
16246 and correlation network analysis from normal mode and molecular dynamics data.
16247 In addition, various utility functions are provided to enable the statistical
16248 and graphical power of the R environment to work with biological sequence and
16249 structural data.")
16250 (license license:gpl2+)))
16251
16252 (define-public r-bios2cor
16253 (package
16254 (name "r-bios2cor")
16255 (version "2.1")
16256 (source
16257 (origin
16258 (method url-fetch)
16259 (uri (cran-uri "Bios2cor" version))
16260 (sha256
16261 (base32
16262 "04wk1cjrrxhpv1kdhd67r1qvjv268xxi0z0r105wy912110z9m6x"))))
16263 (properties `((upstream-name . "Bios2cor")))
16264 (build-system r-build-system)
16265 (propagated-inputs
16266 `(("r-bigmemory" ,r-bigmemory)
16267 ("r-bio3d" ,r-bio3d)
16268 ("r-circular" ,r-circular)
16269 ("r-igraph" ,r-igraph)))
16270 (home-page "https://cran.r-project.org/web/packages/Bios2cor/")
16271 (synopsis "From biological sequences and simulations to correlation analysis")
16272 (description
16273 "This package provides utilities for computation and analysis of
16274 correlation/covariation in multiple sequence alignments and in side chain
16275 motions during molecular dynamics simulations. Features include the
16276 computation of correlation/covariation scores using a variety of scoring
16277 functions between either sequence positions in alignments or side chain
16278 dihedral angles in molecular dynamics simulations and utilities to analyze the
16279 correlation/covariation matrix through a variety of tools including network
16280 representation and principal components analysis. In addition, several
16281 utility functions are based on the R graphical environment to provide friendly
16282 tools for help in data interpretation.")
16283 (license license:gpl2+)))
16284
16285 ;; This package includes minified JavaScript files. When upgrading please
16286 ;; check that there are no new minified JavaScript files.
16287 (define-public r-networkd3
16288 (package
16289 (name "r-networkd3")
16290 (version "0.4")
16291 (source
16292 (origin
16293 (method url-fetch)
16294 (uri (cran-uri "networkD3" version))
16295 (sha256
16296 (base32
16297 "02wxki67drppgfka1is1ykg1f2rxf0x0657c0crj7ipfy62jbf1k"))
16298 (snippet
16299 '(begin
16300 (delete-file "inst/htmlwidgets/lib/d3-4.5.0/d3.min.js")
16301 #t))))
16302 (properties `((upstream-name . "networkD3")))
16303 (build-system r-build-system)
16304 (arguments
16305 `(#:modules ((guix build utils)
16306 (guix build r-build-system)
16307 (srfi srfi-1)
16308 (ice-9 popen))
16309 #:phases
16310 (modify-phases %standard-phases
16311 (add-after 'unpack 'process-javascript
16312 (lambda* (#:key inputs #:allow-other-keys)
16313 (with-directory-excursion "inst/htmlwidgets/lib/"
16314 (call-with-values
16315 (lambda ()
16316 (unzip2
16317 `((,(assoc-ref inputs "d3.v4.js")
16318 "d3-4.5.0/d3.min.js"))))
16319 (lambda (sources targets)
16320 (for-each (lambda (source target)
16321 (format #t "Processing ~a --> ~a~%"
16322 source target)
16323 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
16324 (call-with-output-file target
16325 (lambda (port)
16326 (dump-port minified port)))))
16327 sources targets))))
16328 #t)))))
16329 (native-inputs
16330 `(("uglify-js" ,uglify-js)
16331 ;; NOTE: Make sure that this version of d3 is still valid when
16332 ;; upgrading the package.
16333 ("d3.v4.js"
16334 ,(origin
16335 (method url-fetch)
16336 (uri "https://d3js.org/d3.v4.js")
16337 (sha256
16338 (base32
16339 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))))
16340 (propagated-inputs
16341 `(("r-htmlwidgets" ,r-htmlwidgets)
16342 ("r-igraph" ,r-igraph)
16343 ("r-magrittr" ,r-magrittr)))
16344 (home-page "https://cran.r-project.org/package=networkD3")
16345 (synopsis "D3 JavaScript network graphs from R")
16346 (description
16347 "This package creates D3 JavaScript network, tree, dendrogram, and Sankey
16348 graphs from R.")
16349 (license license:gpl3+)))
16350
16351 (define-public r-aasea
16352 (package
16353 (name "r-aasea")
16354 (version "1.1.0")
16355 (source
16356 (origin
16357 (method url-fetch)
16358 (uri (cran-uri "aaSEA" version))
16359 (sha256
16360 (base32
16361 "0him4r8qyp0xssgrmdxjs45yn4d28h5anv4jyxxbbs9phb0m6j3h"))))
16362 (properties `((upstream-name . "aaSEA")))
16363 (build-system r-build-system)
16364 (propagated-inputs
16365 `(("r-bios2cor" ,r-bios2cor)
16366 ("r-dt" ,r-dt)
16367 ("r-hmisc" ,r-hmisc)
16368 ("r-magrittr" ,r-magrittr)
16369 ("r-networkd3" ,r-networkd3)
16370 ("r-plotly" ,r-plotly)
16371 ("r-seqinr" ,r-seqinr)
16372 ("r-shiny" ,r-shiny)
16373 ("r-shinydashboard" ,r-shinydashboard)))
16374 (home-page "https://cran.r-project.org/web/packages/aaSEA/")
16375 (synopsis "Amino acid substitution effect analyzer")
16376 (description
16377 "Given a protein multiple sequence alignment, it is a daunting task to
16378 assess the effects of substitutions along sequence length. The aaSEA package
16379 is intended to help researchers to rapidly analyze property changes caused by
16380 single, multiple and correlated amino acid substitutions in proteins.")
16381 (license license:gpl3)))
16382
16383 (define-public r-abacus
16384 (package
16385 (name "r-abacus")
16386 (version "1.0.0")
16387 (source
16388 (origin
16389 (method url-fetch)
16390 (uri (cran-uri "ABACUS" version))
16391 (sha256
16392 (base32
16393 "0m1dnkwjr1522l9ddbzzx7ayxvli17sbmk6s28adpmzzjwh2kd1i"))))
16394 (properties `((upstream-name . "ABACUS")))
16395 (build-system r-build-system)
16396 (propagated-inputs
16397 `(("r-ggplot2" ,r-ggplot2)
16398 ("r-shiny" ,r-shiny)))
16399 (home-page "https://shiny.abdn.ac.uk/Stats/apps/")
16400 (synopsis "Apps-based activities for communicating and understanding statistics")
16401 (description
16402 "This package provides a set of Shiny apps for effective communication
16403 and understanding in statistics. The current version includes properties of
16404 normal distribution, properties of sampling distribution, one-sample z and t
16405 tests, two samples independent (unpaired) t test and analysis of variance.")
16406 (license license:gpl3)))
16407
16408 (define-public r-abc-rap
16409 (package
16410 (name "r-abc-rap")
16411 (version "0.9.0")
16412 (source
16413 (origin
16414 (method url-fetch)
16415 (uri (cran-uri "ABC.RAP" version))
16416 (sha256
16417 (base32
16418 "1kdspln17v0krvahcd55vib4dv5azp60b3r1zf489x10qqbp1mxk"))))
16419 (properties `((upstream-name . "ABC.RAP")))
16420 (build-system r-build-system)
16421 (home-page "https://cran.r-project.org/web/packages/ABC.RAP/")
16422 (synopsis "Array-based CpG region analysis pipeline")
16423 (description
16424 "This package aims to identify candidate genes that are differentially
16425 methylated between cases and controls. It applies Student's t-test and delta
16426 beta analysis to identify candidate genes containing multiple CpG sites.")
16427 (license license:gpl3)))
16428
16429 (define-public r-abcadm
16430 (package
16431 (name "r-abcadm")
16432 (version "1.0")
16433 (source
16434 (origin
16435 (method url-fetch)
16436 (uri (cran-uri "abcADM" version))
16437 (sha256
16438 (base32
16439 "0vcabnnnwc0psv9v3rda5aap9s8cq1pjh02zva3ki64hlavf2a10"))))
16440 (properties `((upstream-name . "abcADM")))
16441 (build-system r-build-system)
16442 (propagated-inputs
16443 `(("r-bh" ,r-bh)
16444 ("r-rcpp" ,r-rcpp)))
16445 (home-page "https://cran.r-project.org/web/packages/abcADM/")
16446 (synopsis "Fit accumulated damage models and estimate reliability using ABC")
16447 (description
16448 "This package provides tools to estimate parameters of accumulated
16449 damage (load duration) models based on failure time data under a Bayesian
16450 framework, using @dfn{Approximate Bayesian Computation} (ABC), and to assess
16451 long-term reliability under stochastic load profiles.")
16452 (license license:gpl3)))
16453
16454 (define-public r-rglpk
16455 (package
16456 (name "r-rglpk")
16457 (version "0.6-4")
16458 (source
16459 (origin
16460 (method url-fetch)
16461 (uri (cran-uri "Rglpk" version))
16462 (sha256
16463 (base32
16464 "19mzpyimzq9zqnbi05j79b2di3nzaln8swggs9p8sqdr60qvr3d2"))))
16465 (properties `((upstream-name . "Rglpk")))
16466 (build-system r-build-system)
16467 (propagated-inputs
16468 `(("r-slam" ,r-slam)))
16469 (inputs
16470 `(("glpk" ,glpk)))
16471 (home-page "https://r-forge.r-project.org/projects/rglp/")
16472 (synopsis "R interface to the GNU Linear Programming Kit")
16473 (description
16474 "This package provides an R interface to the GNU Linear Programming Kit,
16475 software for solving large-scale @dfn{linear programming} (LP), @dfn{mixed
16476 integer linear programming} (MILP) and other related problems.")
16477 ;; Either license
16478 (license (list license:gpl2 license:gpl3))))
16479
16480 (define-public r-abcdefba
16481 (package
16482 (name "r-abcdefba")
16483 (version "0.4")
16484 (source
16485 (origin
16486 (method url-fetch)
16487 (uri (cran-uri "abcdeFBA" version))
16488 (sha256
16489 (base32
16490 "1rxjripy8v6bxi25vdfjnbk24zkmf752qbl73cin6nvnqflwxkx4"))))
16491 (properties `((upstream-name . "abcdeFBA")))
16492 (build-system r-build-system)
16493 (propagated-inputs
16494 `(("r-corrplot" ,r-corrplot)
16495 ("r-lattice" ,r-lattice)
16496 ("r-rgl" ,r-rgl)
16497 ("r-rglpk" ,r-rglpk)))
16498 (home-page "https://cran.r-project.org/web/packages/abcdeFBA/")
16499 (synopsis "A-Biologist-Can-Do-Everything of Flux Balance Analysis with this package")
16500 (description
16501 "This package provides functions for Constraint Based Simulation using
16502 Flux Balance Analysis and informative analysis of the data generated during
16503 simulation.")
16504 (license license:gpl2)))
16505
16506 (define-public r-abcrlda
16507 (package
16508 (name "r-abcrlda")
16509 (version "1.0.2")
16510 (source
16511 (origin
16512 (method url-fetch)
16513 (uri (cran-uri "abcrlda" version))
16514 (sha256
16515 (base32
16516 "0zjdrbg3zx0znqnh0dvmifs9c12b8vjhbaf3nbwab9xh25nsmg75"))))
16517 (properties `((upstream-name . "abcrlda")))
16518 (build-system r-build-system)
16519 (home-page "https://ieeexplore.ieee.org/document/8720003/")
16520 (synopsis "Asymptotically bias-corrected regularized linear discriminant analysis")
16521 (description
16522 "This package offers methods to perform @dfn{asymptotically
16523 bias-corrected regularized linear discriminant analysis} (ABC_RLDA) for
16524 cost-sensitive binary classification. The bias-correction is an estimate of
16525 the bias term added to regularized discriminant analysis that minimizes the
16526 overall risk.")
16527 (license license:gpl3)))
16528
16529 (define-public r-abemus
16530 (package
16531 (name "r-abemus")
16532 (version "1.0.1")
16533 (source
16534 (origin
16535 (method url-fetch)
16536 (uri (cran-uri "abemus" version))
16537 (sha256
16538 (base32
16539 "1dhllb184byp1yl15rg2w02zgw3iajag7cxshirg47mnmm7n70bb"))))
16540 (properties `((upstream-name . "abemus")))
16541 (build-system r-build-system)
16542 (propagated-inputs
16543 `(("r-data-table" ,r-data-table)))
16544 (home-page "https://cran.r-project.org/web/packages/abemus/")
16545 (synopsis "Adaptive base error model in ultra-deep sequencing data")
16546 (description
16547 "This package provides an implementation of @dfn{Adaptive Base Error
16548 Model in Ultra-deep Sequencing data} (ABEMUS), which combines
16549 platform-specific genetic knowledge and empirical signal to readily detect and
16550 quantify somatic @dfn{single nucleotide variants} (SNVs) in @dfn{circulating
16551 cell free DNA} (cfDNA).")
16552 (license license:gpl3)))
16553
16554 ;; This package includes minified JavaScript files. When upgrading please
16555 ;; check that there are no new minified JavaScript files.
16556 (define-public r-rintrojs
16557 (package
16558 (name "r-rintrojs")
16559 (version "0.2.2")
16560 (source
16561 (origin
16562 (method url-fetch)
16563 (uri (cran-uri "rintrojs" version))
16564 (sha256
16565 (base32
16566 "0vyqb3pyrh12saddar71ac9csn2vkd2j8ln6ygpqys8ky1lc3427"))))
16567 (properties `((upstream-name . "rintrojs")))
16568 (build-system r-build-system)
16569 (arguments
16570 `(#:modules ((guix build utils)
16571 (guix build r-build-system)
16572 (srfi srfi-1)
16573 (ice-9 popen))
16574 #:phases
16575 (modify-phases %standard-phases
16576 (add-after 'unpack 'process-javascript
16577 (lambda* (#:key inputs #:allow-other-keys)
16578 (with-directory-excursion "inst/javascript/introjs/"
16579 (call-with-values
16580 (lambda ()
16581 (unzip2
16582 `((,(assoc-ref inputs "intro.js")
16583 "intro.min.js"))))
16584 (lambda (sources targets)
16585 (for-each (lambda (source target)
16586 (format #t "Processing ~a --> ~a~%"
16587 source target)
16588 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
16589 (call-with-output-file target
16590 (lambda (port)
16591 (dump-port minified port)))))
16592 sources targets))))
16593 #t)))))
16594 (native-inputs
16595 `(("uglify-js" ,uglify-js)
16596 ("intro.js"
16597 ,(origin
16598 (method url-fetch)
16599 (uri "https://raw.githubusercontent.com/usablica/intro.js/v2.9.3/intro.js")
16600 (sha256
16601 (base32
16602 "1qf8n1sfy9qkiqqnfgg0xbhmfgh0g3mqsjas8qhz230h3zzlzxj8"))))))
16603 (propagated-inputs
16604 `(("r-jsonlite" ,r-jsonlite)
16605 ("r-shiny" ,r-shiny)))
16606 (home-page "https://github.com/carlganz/rintrojs")
16607 (synopsis "Wrapper for the Intro.js library")
16608 (description
16609 "This package provides a wrapper for the @url{http://www.introjs.com,
16610 Intro.js} library. This package makes it easy to include step-by-step
16611 introductions, and clickable hints in a Shiny application. It supports both
16612 static introductions in the UI, and programmatic introductions from the
16613 server-side.")
16614 (license license:agpl3+)))
16615
16616 (define-public r-sysfonts
16617 (package
16618 (name "r-sysfonts")
16619 (version "0.8")
16620 (source
16621 (origin
16622 (method url-fetch)
16623 (uri (cran-uri "sysfonts" version))
16624 (sha256
16625 (base32
16626 "0wng902plryf2d8fc7k7m3jx11acz51kb2d91cqbyhq7xpk06z43"))))
16627 (properties `((upstream-name . "sysfonts")))
16628 (build-system r-build-system)
16629 (inputs
16630 `(("freetype" ,freetype)
16631 ("libpng" ,libpng)
16632 ("zlib" ,zlib)))
16633 (native-inputs
16634 `(("pkg-config" ,pkg-config)))
16635 (home-page "https://github.com/yixuan/sysfonts")
16636 (synopsis "Loading fonts into R")
16637 (description
16638 "This is a package to simplify loading of system fonts and Google Fonts
16639 into R, in order to support other packages.")
16640 (license license:gpl2)))
16641
16642 (define-public r-showtextdb
16643 (package
16644 (name "r-showtextdb")
16645 (version "2.0")
16646 (source
16647 (origin
16648 (method url-fetch)
16649 (uri (cran-uri "showtextdb" version))
16650 (sha256
16651 (base32
16652 "1qwwj9x2jvadvwn60h75k99c9xi7yhqjsgaakahz5paxgj583bsh"))))
16653 (properties `((upstream-name . "showtextdb")))
16654 (build-system r-build-system)
16655 (propagated-inputs
16656 `(("r-sysfonts" ,r-sysfonts)))
16657 (home-page "https://cran.r-project.org/web/packages/showtextdb/")
16658 (synopsis "Font files for the 'showtext' package")
16659 (description
16660 "This package provides font files that can be used by the @code{showtext}
16661 package.")
16662 (license license:asl2.0)))
16663
16664 (define-public r-showtext
16665 (package
16666 (name "r-showtext")
16667 (version "0.7-1")
16668 (source
16669 (origin
16670 (method url-fetch)
16671 (uri (cran-uri "showtext" version))
16672 (sha256
16673 (base32
16674 "0a5gg72bfrc7wm0phj1aflj1wc08kfi81ac32na6ya9s2ivyimw5"))))
16675 (properties `((upstream-name . "showtext")))
16676 (build-system r-build-system)
16677 (inputs
16678 `(("freetype" ,freetype)
16679 ("libpng" ,libpng)
16680 ("zlib" ,zlib)))
16681 (propagated-inputs
16682 `(("r-showtextdb" ,r-showtextdb)
16683 ("r-sysfonts" ,r-sysfonts)))
16684 (native-inputs `(("pkg-config" ,pkg-config)))
16685 (home-page "https://github.com/yixuan/showtext")
16686 (synopsis "Using fonts more easily in R graphs")
16687 (description
16688 "This package aims to make it easy to use various types of
16689 fonts (TrueType, OpenType, Type 1, web fonts, etc.) in R graphs, and supports
16690 most output formats of R graphics including PNG, PDF and SVG. Text glyphs
16691 will be converted into polygons or raster images, hence after the plot has
16692 been created, it no longer relies on the font files. No external software
16693 such as Ghostscript is needed to use this package.")
16694 (license license:asl2.0)))
16695
16696 (define-public r-emojifont
16697 (package
16698 (name "r-emojifont")
16699 (version "0.5.3")
16700 (source
16701 (origin
16702 (method url-fetch)
16703 (uri (cran-uri "emojifont" version))
16704 (sha256
16705 (base32
16706 "1cdrrl3hvrs8rskyy6zgr7q2mmg8yb9k8sld1m64zsp7y009g19k"))))
16707 (properties `((upstream-name . "emojifont")))
16708 (build-system r-build-system)
16709 (propagated-inputs
16710 `(("r-ggplot2" ,r-ggplot2)
16711 ("r-proto" ,r-proto)
16712 ("r-showtext" ,r-showtext)
16713 ("r-sysfonts" ,r-sysfonts)))
16714 (home-page "https://guangchuangyu.github.io/emojifont")
16715 (synopsis "Emoji and Font Awesome in R graphics")
16716 (description
16717 "This package enables the use of emoji and the Font Awesome glyphs in
16718 both base and ggplot2 graphics.")
16719 (license license:artistic2.0)))
16720
16721 (define-public r-abstractr
16722 (package
16723 (name "r-abstractr")
16724 (version "0.1.0")
16725 (source
16726 (origin
16727 (method url-fetch)
16728 (uri (cran-uri "abstractr" version))
16729 (sha256
16730 (base32
16731 "1ymwp7syrynwd4i8aj2x5n8jdi9d96fjzl6jb09n0bnr5fgl7vig"))))
16732 (properties `((upstream-name . "abstractr")))
16733 (build-system r-build-system)
16734 (propagated-inputs
16735 `(("r-colourpicker" ,r-colourpicker)
16736 ("r-emojifont" ,r-emojifont)
16737 ("r-ggplot2" ,r-ggplot2)
16738 ("r-gridextra" ,r-gridextra)
16739 ("r-rintrojs" ,r-rintrojs)
16740 ("r-shiny" ,r-shiny)
16741 ("r-shinythemes" ,r-shinythemes)))
16742 (home-page "https://matt-kumar.shinyapps.io/portfolio")
16743 (synopsis "R-Shiny application for creating visual abstracts")
16744 (description
16745 "This package provides an R Shiny application to create visual abstracts
16746 for original research. A variety of user defined options and formatting are
16747 included.")
16748 (license license:gpl3)))
16749
16750 (define-public r-abtest
16751 (package
16752 (name "r-abtest")
16753 (version "0.2.0")
16754 (source
16755 (origin
16756 (method url-fetch)
16757 (uri (cran-uri "abtest" version))
16758 (sha256
16759 (base32
16760 "1ky3cf827kj24bhcpk00v5zl5jdkii1gca0x81ay1cjkzfispgws"))))
16761 (properties `((upstream-name . "abtest")))
16762 (build-system r-build-system)
16763 (propagated-inputs
16764 `(("r-matrix" ,r-matrix)
16765 ("r-mvtnorm" ,r-mvtnorm)
16766 ("r-plotrix" ,r-plotrix)
16767 ("r-rcolorbrewer" ,r-rcolorbrewer)
16768 ("r-rcpp" ,r-rcpp)
16769 ("r-sn" ,r-sn)
16770 ("r-truncnorm" ,r-truncnorm)
16771 ("r-vgam" ,r-vgam)))
16772 (home-page "https://cran.r-project.org/web/packages/abtest/")
16773 (synopsis "Bayesian A/B testing")
16774 (description
16775 "This package provides functions for Bayesian A/B testing including prior
16776 elicitation options based on Kass and Vaidyanathan (1992)
16777 @url{doi:10.1111/j.2517-6161.1992.tb01868.x}.")
16778 (license license:gpl2+)))
16779
16780 (define-public r-accept
16781 (package
16782 (name "r-accept")
16783 (version "0.7.1")
16784 (source
16785 (origin
16786 (method url-fetch)
16787 (uri (cran-uri "accept" version))
16788 (sha256
16789 (base32
16790 "0pn8q0jsi0nb2mm2kv6sjczflflshhy55y7nqqnk70yx9f6wm83y"))))
16791 (properties `((upstream-name . "accept")))
16792 (build-system r-build-system)
16793 (propagated-inputs
16794 `(("r-dplyr" ,r-dplyr)
16795 ("r-extrafont" ,r-extrafont)
16796 ("r-mass" ,r-mass)
16797 ("r-plotly" ,r-plotly)
16798 ("r-stringr" ,r-stringr)
16799 ("r-viridis" ,r-viridis)))
16800 (home-page "https://cran.r-project.org/web/packages/accept/")
16801 (synopsis "Acute COPD Exacerbation Prediction Tool (ACCEPT)")
16802 (description
16803 "This package allows clinicians to predict the rate and severity of
16804 future acute exacerbation in @dfn{Chronic Obstructive Pulmonary
16805 Disease} (COPD) patients, based on the clinical prediction model published in
16806 Adibi et al. (2019) @url{doi:10.1101/651901}.")
16807 (license license:gpl3)))
16808
16809 (define-public r-smpracticals
16810 (package
16811 (name "r-smpracticals")
16812 (version "1.4-3")
16813 (source
16814 (origin
16815 (method url-fetch)
16816 (uri (cran-uri "SMPracticals" version))
16817 (sha256
16818 (base32
16819 "0zxq84f9i3b86xx6msb25b61gyj9k09iab2b7wg4d93yas9qzayf"))))
16820 (properties `((upstream-name . "SMPracticals")))
16821 (build-system r-build-system)
16822 (propagated-inputs
16823 `(("r-ellipse" ,r-ellipse)
16824 ("r-mass" ,r-mass)
16825 ("r-nlme" ,r-nlme)
16826 ("r-survival" ,r-survival)))
16827 (home-page "http://statwww.epfl.ch/davison/SM/")
16828 (synopsis "Practicals for use with Davison (2003) Statistical Models")
16829 (description
16830 "This package contains the datasets and a few functions for use with the
16831 practicals outlined in Appendix A of the book Statistical Models (Davison,
16832 2003, Cambridge University Press). The practicals themselves can be found at
16833 @url{http://statwww.epfl.ch/davison/SM/}.")
16834 (license license:gpl2+)))
16835
16836 (define-public r-fgui
16837 (package
16838 (name "r-fgui")
16839 (version "1.0-8")
16840 (source
16841 (origin
16842 (method url-fetch)
16843 (uri (cran-uri "fgui" version))
16844 (sha256
16845 (base32
16846 "024fzd1c7iwqprn26hwjb9l2qlvvyzl449d7iixy0x69djwsrysv"))))
16847 (properties `((upstream-name . "fgui")))
16848 (build-system r-build-system)
16849 (home-page
16850 "https://sites.google.com/site/thomashoffmannproject/software/fgui")
16851 (synopsis "Create GUI for R functions")
16852 (description
16853 "Rapidly create a GUI for a function you created by automatically
16854 creating widgets for arguments of the function. This package automatically
16855 parses help routines for context-sensitive help to these arguments. The
16856 interface is essentially a wrapper to some Tcl/Tk routines to both simplify
16857 and facilitate GUI creation. More advanced Tcl/Tk routines/GUI objects can be
16858 incorporated into the interface for greater customization for the more
16859 experienced.")
16860 ;; Any version of the GPL.
16861 (license (list license:gpl2+ license:gpl3+))))
16862
16863 (define-public r-tcltk2
16864 (package
16865 (name "r-tcltk2")
16866 (version "1.2-11")
16867 (source
16868 (origin
16869 (method url-fetch)
16870 (uri (cran-uri "tcltk2" version))
16871 (sha256
16872 (base32
16873 "1ibxld379600xx7kiqq3fck083s8psry12859980218rnzikl65d"))))
16874 (properties `((upstream-name . "tcltk2")))
16875 (build-system r-build-system)
16876 (inputs
16877 `(("tcl" ,tcl)
16878 ("tk" ,tk)))
16879 (home-page "https://www.sciviews.org/SciViews-R")
16880 (synopsis "Tcl/Tk additions")
16881 (description
16882 "This package provides a series of additional Tcl commands and Tk widgets
16883 with style and various functions to supplement the tcltk package")
16884 (license license:lgpl3)))
16885
16886 (define-public r-accrual
16887 (package
16888 (name "r-accrual")
16889 (version "1.3")
16890 (source
16891 (origin
16892 (method url-fetch)
16893 (uri (cran-uri "accrual" version))
16894 (sha256
16895 (base32
16896 "11clm9s5c5518nmp6hd6pjnp0s28y92b2i2x0xgj4j5g816p4j3z"))))
16897 (properties `((upstream-name . "accrual")))
16898 (build-system r-build-system)
16899 (propagated-inputs
16900 `(("r-fgui" ,r-fgui)
16901 ("r-smpracticals" ,r-smpracticals)
16902 ("r-tcltk2" ,r-tcltk2)))
16903 (home-page "https://cran.r-project.org/web/packages/accrual/")
16904 (synopsis "Bayesian accrual prediction")
16905 (description
16906 "Subject recruitment for medical research is challenging. Slow patient
16907 accrual leads to delay in research. Accrual monitoring during the process of
16908 recruitment is critical. Researchers need reliable tools to manage the
16909 accrual rate. This package provides an implementation of a Bayesian method
16910 that integrates researcher's experience on previous trials and data from the
16911 current study, providing reliable prediction on accrual rate for clinical
16912 studies. It provides functions for Bayesian accrual prediction which can be
16913 easily used by statisticians and clinical researchers.")
16914 (license license:gpl2)))
16915
16916 (define-public r-accrued
16917 (package
16918 (name "r-accrued")
16919 (version "1.4.1")
16920 (source
16921 (origin
16922 (method url-fetch)
16923 (uri (cran-uri "accrued" version))
16924 (sha256
16925 (base32
16926 "05g1jb5914z18rcai1ahn7nihn27vr2rnadwv94gc1j7ivvikvs5"))))
16927 (properties `((upstream-name . "accrued")))
16928 (build-system r-build-system)
16929 (home-page "https://cran.r-project.org/web/packages/accrued/")
16930 (synopsis "Data quality visualization tools for partially accruing data")
16931 (description
16932 "This is a package for visualizing data quality of partially accruing
16933 data.")
16934 (license license:gpl3)))
16935
16936 (define-public r-mda
16937 (package
16938 (name "r-mda")
16939 (version "0.4-10")
16940 (source
16941 (origin
16942 (method url-fetch)
16943 (uri (cran-uri "mda" version))
16944 (sha256
16945 (base32
16946 "19g6kn6g0shidrjfffklbmzc5w7mcimrxhagx4nmpslg59ibqdkh"))))
16947 (properties `((upstream-name . "mda")))
16948 (build-system r-build-system)
16949 (propagated-inputs `(("r-class" ,r-class)))
16950 (native-inputs `(("gfortran" ,gfortran)))
16951 (home-page "https://cran.r-project.org/web/packages/mda/")
16952 (synopsis "Mixture and flexible discriminant analysis")
16953 (description
16954 "This is a package for mixture and flexible discriminant analysis,
16955 @dfn{multivariate adaptive regression splines} (MARS), BRUTO, and so on.")
16956 (license license:gpl2)))
16957
16958 (define-public r-elasticnet
16959 (package
16960 (name "r-elasticnet")
16961 (version "1.1.1")
16962 (source
16963 (origin
16964 (method url-fetch)
16965 (uri (cran-uri "elasticnet" version))
16966 (sha256
16967 (base32
16968 "0p9dplnsp28z4s2fl6afbwrgd0aj339fak8mmndicmrh7bb7rpmb"))))
16969 (properties `((upstream-name . "elasticnet")))
16970 (build-system r-build-system)
16971 (propagated-inputs
16972 `(("r-lars" ,r-lars)))
16973 (home-page "http://users.stat.umn.edu/~zouxx019/")
16974 (synopsis "Elastic-Net for sparse estimation and sparse PCA")
16975 (description
16976 "This package provides functions for fitting the entire solution path of
16977 the Elastic-Net and also provides functions for estimating sparse Principal
16978 Components. The Lasso solution paths can be computed by the same function.")
16979 (license license:gpl2+)))
16980
16981 (define-public r-sparselda
16982 (package
16983 (name "r-sparselda")
16984 (version "0.1-9")
16985 (source
16986 (origin
16987 (method url-fetch)
16988 (uri (cran-uri "sparseLDA" version))
16989 (sha256
16990 (base32
16991 "1k3sw9kc40yxnfss4vrsx34qxmv8ssddyhbfjhxrdldvblhbwchb"))))
16992 (properties `((upstream-name . "sparseLDA")))
16993 (build-system r-build-system)
16994 (propagated-inputs
16995 `(("r-elasticnet" ,r-elasticnet)
16996 ("r-mass" ,r-mass)
16997 ("r-mda" ,r-mda)))
16998 (home-page "https://www.imm.dtu.dk/~lkhc/")
16999 (synopsis "Sparse discriminant analysis")
17000 (description
17001 "This package performs sparse linear discriminant analysis for Gaussians
17002 and mixture of Gaussian models.")
17003 (license license:gpl2+)))
17004
17005 (define-public r-accsda
17006 (package
17007 (name "r-accsda")
17008 (version "1.0.0")
17009 (source
17010 (origin
17011 (method url-fetch)
17012 (uri (cran-uri "accSDA" version))
17013 (sha256
17014 (base32
17015 "0sgxy5y8kkc1n35657kifwfjsba7y5m1vbr7rkk5lmbpkzahqm61"))))
17016 (properties `((upstream-name . "accSDA")))
17017 (build-system r-build-system)
17018 (propagated-inputs
17019 `(("r-ggplot2" ,r-ggplot2)
17020 ("r-ggthemes" ,r-ggthemes)
17021 ("r-gridextra" ,r-gridextra)
17022 ("r-mass" ,r-mass)
17023 ("r-rarpack" ,r-rarpack)
17024 ("r-sparselda" ,r-sparselda)))
17025 (home-page "https://github.com/gumeo/accSDA/wiki")
17026 (synopsis "Accelerated sparse discriminant analysis")
17027 (description
17028 "This package provides an implementation of sparse linear discriminant
17029 analysis, which is a supervised classification method for multiple classes.
17030 Various novel optimization approaches to this problem are implemented
17031 including @dfn{alternating direction method of multipliers} (ADMM),
17032 @dfn{proximal gradient} (PG) and @dfn{accelerated proximal gradient} (APG).
17033 Functions for performing cross validation are also supplied along with basic
17034 prediction and plotting functions. @dfn{Sparse zero variance
17035 discriminant} (SZVD) analysis is also included in the package.")
17036 (license license:gpl2+)))
17037
17038 (define-public r-ace2fastq
17039 (package
17040 (name "r-ace2fastq")
17041 (version "0.6.0")
17042 (source
17043 (origin
17044 (method url-fetch)
17045 (uri (cran-uri "ace2fastq" version))
17046 (sha256
17047 (base32
17048 "09kk3yyqnr2xp820g0p3aai9a21figigjr9lxkr3zjq2d8gzwfic"))))
17049 (properties `((upstream-name . "ace2fastq")))
17050 (build-system r-build-system)
17051 (propagated-inputs
17052 `(("r-stringr" ,r-stringr)))
17053 (home-page "https://github.com/c5sire/ace2fastq")
17054 (synopsis "ACE file to FASTQ converter")
17055 (description
17056 "The ACE file format is used in genomics to store contigs from sequencing
17057 machines. This tools converts it into FASTQ format. Both formats contain the
17058 sequence characters and their corresponding quality information. Unlike the
17059 FASTQ file, the ACE file stores the quality values numerically. The
17060 conversion algorithm uses the standard Sanger formula. The package
17061 facilitates insertion into pipelines, and content inspection.")
17062 (license license:gpl3)))
17063
17064 (define-public r-rngwell
17065 (package
17066 (name "r-rngwell")
17067 (version "0.10-6")
17068 (source
17069 (origin
17070 (method url-fetch)
17071 (uri (cran-uri "rngWELL" version))
17072 (sha256
17073 (base32
17074 "0pjjcs9pqj7mf0mhb2cwd0aanqpwnm65bm86hk6mi2vw8rgnj2vv"))))
17075 (properties `((upstream-name . "rngWELL")))
17076 (build-system r-build-system)
17077 (home-page "https://cran.r-project.org/web/packages/rngWELL/")
17078 (synopsis "Toolbox for WELL random number generators")
17079 (description
17080 "This is a dedicated package to WELL pseudo random generators, which were
17081 introduced in Panneton et al. (2006), ``Improved Long-Period Generators Based
17082 on Linear Recurrences Modulo 2'', ACM Transactions on Mathematical Software.")
17083 (license license:bsd-3)))
17084
17085 (define-public r-randtoolbox
17086 (package
17087 (name "r-randtoolbox")
17088 (version "1.30.1")
17089 (source
17090 (origin
17091 (method url-fetch)
17092 (uri (cran-uri "randtoolbox" version))
17093 (sha256
17094 (base32
17095 "0qg20ar6qns858jdzqhmfq7yji81czhr6cim257958gqpj66sn95"))))
17096 (properties `((upstream-name . "randtoolbox")))
17097 (build-system r-build-system)
17098 (propagated-inputs
17099 `(("r-rngwell" ,r-rngwell)))
17100 (native-inputs
17101 `(("gfortran" ,gfortran)))
17102 (home-page "https://cran.r-project.org/web/packages/randtoolbox/")
17103 (synopsis "Toolbox for pseudo and quasi random number generation")
17104 (description
17105 "This package provides
17106
17107 @enumerate
17108 @item pseudo random generators, such as general linear
17109 congruential generators, multiple recursive generators and generalized
17110 feedback shift register (SF-Mersenne Twister algorithm and WELL
17111 generators)
17112
17113 @item quasi random generators, such as the Torus algorithm, the Sobol
17114 sequence, the Halton sequence (including the Van der Corput sequence), and
17115
17116 @item some generator tests: the gap test, the serial test, the poker test.
17117 @end enumerate
17118
17119 See e.g. Gentle (2003) @url{doi:10.1007/b97336}.")
17120 (license license:bsd-3)))
17121
17122 (define-public r-lhs
17123 (package
17124 (name "r-lhs")
17125 (version "1.0.1")
17126 (source
17127 (origin
17128 (method url-fetch)
17129 (uri (cran-uri "lhs" version))
17130 (sha256
17131 (base32
17132 "0lzaqr7xi3ckln5nglv5xf5njm359slpz1jc6s02hpsqdw6armd4"))))
17133 (properties `((upstream-name . "lhs")))
17134 (build-system r-build-system)
17135 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
17136 (home-page "https://github.com/bertcarnell/lhs")
17137 (synopsis "Latin Hypercube Samples")
17138 (description
17139 "This package provides a number of methods for creating and augmenting
17140 Latin Hypercube Samples.")
17141 (license license:gpl3)))
17142
17143 (define-public r-acebayes
17144 (package
17145 (name "r-acebayes")
17146 (version "1.9")
17147 (source
17148 (origin
17149 (method url-fetch)
17150 (uri (cran-uri "acebayes" version))
17151 (sha256
17152 (base32
17153 "1imfwm1vpbb24vfmfn1nljhmaz8429mwjihw34892p387s8h7xz2"))))
17154 (properties `((upstream-name . "acebayes")))
17155 (build-system r-build-system)
17156 (propagated-inputs
17157 `(("r-compare" ,r-compare)
17158 ("r-lhs" ,r-lhs)
17159 ("r-randtoolbox" ,r-randtoolbox)
17160 ("r-rcpp" ,r-rcpp)
17161 ("r-rcpparmadillo" ,r-rcpparmadillo)))
17162 (home-page "https://cran.r-project.org/web/packages/acebayes/")
17163 (synopsis "Optimal Bayesian experimental design using the ACE algorithm")
17164 (description
17165 "Finding an optimal Bayesian experimental design involves maximizing an
17166 objective function given by the expectation of some appropriately chosen
17167 utility function with respect to the joint distribution of unknown
17168 quantities (including responses). This objective function is usually not
17169 available in closed form and the design space can be continuous and of high
17170 dimensionality. This package uses @dfn{Approximate Coordinate Exchange} (ACE)
17171 to maximise an approximation to the expectation of the utility function.")
17172 (license license:gpl2)))
17173
17174 (define-public r-acet
17175 (package
17176 (name "r-acet")
17177 (version "1.8.0")
17178 (source
17179 (origin
17180 (method url-fetch)
17181 (uri (cran-uri "ACEt" version))
17182 (sha256
17183 (base32
17184 "0626d6kg485xjya164wagrr5z223jvi93ywbwpdns7fkm03c0dlq"))))
17185 (properties `((upstream-name . "ACEt")))
17186 (build-system r-build-system)
17187 (propagated-inputs
17188 `(("r-bh" ,r-bh)
17189 ("r-mass" ,r-mass)
17190 ("r-rcpp" ,r-rcpp)
17191 ("r-rcpparmadillo" ,r-rcpparmadillo)))
17192 (home-page "https://cran.r-project.org/web/packages/ACEt/")
17193 (synopsis "Estimating dynamic heritability and twin model comparison")
17194 (description
17195 "This package supports twin models that are able to estimate the dynamic
17196 behaviour of the variance components in the classical twin models with respect
17197 to age using B-splines and P-splines.")
17198 (license license:gpl2+)))
17199
17200 (define-public r-acfmperiod
17201 (package
17202 (name "r-acfmperiod")
17203 (version "1.0.0")
17204 (source
17205 (origin
17206 (method url-fetch)
17207 (uri (cran-uri "acfMPeriod" version))
17208 (sha256
17209 (base32
17210 "1yww8isfrbs2v9s94hx7p2imyszcgadwafdgpj438n2ik0q6p9d5"))))
17211 (properties `((upstream-name . "acfMPeriod")))
17212 (build-system r-build-system)
17213 (propagated-inputs
17214 `(("r-mass" ,r-mass)))
17215 (home-page "https://cran.r-project.org/web/packages/acfMPeriod/")
17216 (synopsis "Estimation of the ACF from the M-periodogram")
17217 (description
17218 "This package support non-robust and robust computations of the sample
17219 autocovariance (ACOVF) and sample autocorrelation functions (ACF) of
17220 univariate and multivariate processes. The methodology consists in reversing
17221 the diagonalization procedure involving the periodogram or the
17222 cross-periodogram and the Fourier transform vectors, and, thus, obtaining the
17223 ACOVF or the ACF as discussed in Fuller (1995)
17224 @url{doi:10.1002/9780470316917}. The robust version is obtained by fitting
17225 robust M-regressors to obtain the M-periodogram or M-cross-periodogram as
17226 discussed in Reisen et al. (2017) @url{doi:10.1016/j.jspi.2017.02.008}.")
17227 (license license:gpl2+)))
17228
17229 (define-public r-gamlss-data
17230 (package
17231 (name "r-gamlss-data")
17232 (version "5.1-4")
17233 (source
17234 (origin
17235 (method url-fetch)
17236 (uri (cran-uri "gamlss.data" version))
17237 (sha256
17238 (base32
17239 "1dgfspbmps6ipzcmw681wjdp320nm50dwsxafgrcwxndqgc7fdqd"))))
17240 (properties `((upstream-name . "gamlss.data")))
17241 (build-system r-build-system)
17242 (home-page "http://www.gamlss.org/")
17243 (synopsis "GAMLSS data")
17244 (description
17245 "This package provides data used as examples to demonstrate GAMLSS
17246 models.")
17247 ;; Either version of the license
17248 (license (list license:gpl2 license:gpl3))))
17249
17250 (define-public r-gamlss
17251 (package
17252 (name "r-gamlss")
17253 (version "5.1-6")
17254 (source
17255 (origin
17256 (method url-fetch)
17257 (uri (cran-uri "gamlss" version))
17258 (sha256
17259 (base32
17260 "16b7ick1khvldbvfmmpw9cjs1vznnrisvifq7717fxzd8c9s5jdr"))))
17261 (properties `((upstream-name . "gamlss")))
17262 (build-system r-build-system)
17263 (propagated-inputs
17264 `(("r-gamlss-data" ,r-gamlss-data)
17265 ("r-gamlss-dist" ,r-gamlss-dist)
17266 ("r-mass" ,r-mass)
17267 ("r-nlme" ,r-nlme)
17268 ("r-survival" ,r-survival)))
17269 (home-page "http://www.gamlss.org/")
17270 (synopsis "Generalized additive models for location scale and shape")
17271 (description
17272 "This package provides functions for fitting the generalized additive
17273 models for location scale and shape introduced by Rigby and
17274 Stasinopoulos (2005), @url{doi:10.1111/j.1467-9876.2005.00510.x}. The models
17275 use a distributional regression approach where all the parameters of the
17276 conditional distribution of the response variable are modelled using
17277 explanatory variables.")
17278 ;; Either version of the license
17279 (license (list license:gpl2 license:gpl3))))
17280
17281 (define-public r-acid
17282 (package
17283 (name "r-acid")
17284 (version "1.1")
17285 (source
17286 (origin
17287 (method url-fetch)
17288 (uri (cran-uri "acid" version))
17289 (sha256
17290 (base32
17291 "030i0y8s283ivbsmjccpbv9v7mgbcg2jk9df7vgcbbns74swf9hd"))))
17292 (properties `((upstream-name . "acid")))
17293 (build-system r-build-system)
17294 (propagated-inputs
17295 `(("r-gamlss" ,r-gamlss)
17296 ("r-gamlss-dist" ,r-gamlss-dist)
17297 ("r-hmisc" ,r-hmisc)))
17298 (home-page "https://cran.r-project.org/web/packages/acid/")
17299 (synopsis "Analysing conditional income distributions")
17300 (description
17301 "This package provides functions for the analysis of income distributions
17302 for subgroups of the population as defined by a set of variables like age,
17303 gender, region, etc. This entails a Kolmogorov-Smirnov test for a mixture
17304 distribution as well as functions for moments, inequality measures, entropy
17305 measures and polarisation measures of income distributions. This package thus
17306 aides the analysis of income inequality by offering tools for the exploratory
17307 analysis of income distributions at the disaggregated level.")
17308 (license license:gpl3)))
17309
17310 (define-public r-acm4r
17311 (package
17312 (name "r-acm4r")
17313 (version "1.0")
17314 (source
17315 (origin
17316 (method url-fetch)
17317 (uri (cran-uri "acm4r" version))
17318 (sha256
17319 (base32
17320 "1wqzc35i1rshx0zlmas8y4qkkvy6h9r4i4apscjjv1xg2wjflzxa"))))
17321 (properties `((upstream-name . "acm4r")))
17322 (build-system r-build-system)
17323 (propagated-inputs `(("r-mass" ,r-mass)))
17324 (home-page "https://cran.r-project.org/web/packages/acm4r/")
17325 (synopsis "Align-and-count method comparisons of RFLP data")
17326 (description
17327 "This is a package to compare sequence fragment lengths or molecular
17328 weights from pairs of lanes. The number of matching bands in the
17329 @dfn{Restriction Fragment Length Polymorphism} (RFLP) data is calculated using
17330 the align-and-count method.")
17331 ;; Any version of the GPL
17332 (license (list license:gpl2+ license:gpl3+))))
17333
17334 (define-public r-filematrix
17335 (package
17336 (name "r-filematrix")
17337 (version "1.3")
17338 (source
17339 (origin
17340 (method url-fetch)
17341 (uri (cran-uri "filematrix" version))
17342 (sha256
17343 (base32
17344 "1v3aj1ng742msb0sfdnjsbqb508mqjf8jlq2v33vxldhradw5w0b"))))
17345 (properties `((upstream-name . "filematrix")))
17346 (build-system r-build-system)
17347 ;; These inputs are needed for vignettes
17348 (native-inputs
17349 `(("r-knitr" ,r-knitr)
17350 ("r-rmarkdown" ,r-rmarkdown)
17351 ("pandoc-citeproc" ,ghc-pandoc-citeproc)))
17352 (home-page "https://github.com/andreyshabalin/filematrix")
17353 (synopsis "File-backed matrix class with convenient read and write access")
17354 (description
17355 "This package provides an interface for working with large matrices
17356 stored in files, not in computer memory. It supports multiple non-character
17357 data types (double, integer, logical and raw) of various sizes (e.g. 8 and 4
17358 byte real values). Access to parts of the matrix is done by indexing, exactly
17359 as with usual R matrices. It supports very large matrices; the package has
17360 been tested on multi-terabyte matrices. It allows for more than 2^32 rows or
17361 columns, ad allows for quick addition of extra columns to a filematrix.")
17362 (license license:lgpl3)))
17363
17364 (define-public r-acmeeqtl
17365 (package
17366 (name "r-acmeeqtl")
17367 (version "1.6")
17368 (source
17369 (origin
17370 (method url-fetch)
17371 (uri (cran-uri "ACMEeqtl" version))
17372 (sha256
17373 (base32
17374 "049xjv2ym35bbn43zwi68cq27fwdh404vp0r2ca5gxgmmx8kj1cz"))))
17375 (properties `((upstream-name . "ACMEeqtl")))
17376 (build-system r-build-system)
17377 (propagated-inputs
17378 `(("r-filematrix" ,r-filematrix)))
17379 (home-page "https://github.com/andreyshabalin/ACMEeqtl")
17380 (synopsis "Estimation of interpretable eQTL effect sizes")
17381 (description
17382 "This package provides a non-linear model, termed ACME, that reflects a
17383 parsimonious biological model for allelic contributions of cis-acting eQTLs.
17384 With non-linear least-squares algorithm the maximum likelihood parameters can
17385 be estimated. The ACME model provides interpretable effect size estimates and
17386 p-values with well controlled Type-I error.")
17387 (license license:lgpl3)))
17388
17389 (define-public r-acmer
17390 (package
17391 (name "r-acmer")
17392 (version "1.1.0")
17393 (source
17394 (origin
17395 (method url-fetch)
17396 (uri (cran-uri "acmeR" version))
17397 (sha256
17398 (base32
17399 "000b2hqlhj93958nddw0fqb15ahigs08najv2miivym046x04mf7"))))
17400 (properties `((upstream-name . "acmeR")))
17401 (build-system r-build-system)
17402 (propagated-inputs `(("r-foreign" ,r-foreign)))
17403 (home-page "https://cran.r-project.org/web/packages/acmeR/")
17404 (synopsis "ACME estimator of bird and bat mortality by wind turbines")
17405 (description
17406 "This package provides an implementation of the ACME estimator, described
17407 in Wolpert (2015), ACME: A Partially Periodic Estimator of Avian & Chiropteran
17408 Mortality at Wind Turbines. Unlike most other models, this estimator supports
17409 decreasing-hazard Weibull model for persistence; decreasing search proficiency
17410 as carcasses age; variable bleed-through at successive searches; and interval
17411 mortality estimates. The package provides, based on search data, functions
17412 for estimating the mortality inflation factor in Frequentist and Bayesian
17413 settings.")
17414 (license license:expat)))
17415
17416 (define-public r-r-huge
17417 (package
17418 (name "r-r-huge")
17419 (version "0.9.0")
17420 (source
17421 (origin
17422 (method url-fetch)
17423 (uri (cran-uri "R.huge" version))
17424 (sha256
17425 (base32
17426 "13p558qalv60pgr24nsm6mi92ryj65rsbqa6pgdwy0snjqx12bgi"))))
17427 (properties `((upstream-name . "R.huge")))
17428 (build-system r-build-system)
17429 (propagated-inputs
17430 `(("r-r-methodss3" ,r-r-methodss3)
17431 ("r-r-oo" ,r-r-oo)
17432 ("r-r-utils" ,r-r-utils)))
17433 (home-page "https://github.com/HenrikBengtsson/R.huge")
17434 (synopsis "Methods for accessing huge amounts of data")
17435 (description
17436 "This is a deprecated package for accessing huge amounts of data.
17437 Cross-platform alternatives are the following packages: bigmemory (CRAN),
17438 ff (CRAN), or BufferedMatrix (Bioconductor). The main usage of it was inside
17439 the @code{aroma.affymetrix} package.")
17440 (license license:lgpl2.1+)))
17441
17442 (define-public r-r-filesets
17443 (package
17444 (name "r-r-filesets")
17445 (version "2.13.0")
17446 (source
17447 (origin
17448 (method url-fetch)
17449 (uri (cran-uri "R.filesets" version))
17450 (sha256
17451 (base32
17452 "124rygq0bl9n4akxcm868nl30cyk3rz0iprb98zlpk62gci9f5fg"))))
17453 (properties `((upstream-name . "R.filesets")))
17454 (build-system r-build-system)
17455 (propagated-inputs
17456 `(("r-digest" ,r-digest)
17457 ("r-r-cache" ,r-r-cache)
17458 ("r-r-methodss3" ,r-r-methodss3)
17459 ("r-r-oo" ,r-r-oo)
17460 ("r-r-utils" ,r-r-utils)))
17461 (home-page "https://github.com/HenrikBengtsson/R.filesets")
17462 (synopsis "Easy handling of and access to files")
17463 (description
17464 "This package provides classes and methods to locate, setup, subset,
17465 navigate and iterate file sets, i.e. sets of files located in one or more
17466 directories on the file system. The API is designed such that these classes
17467 can be extended via inheritance to provide a richer API for special file
17468 formats. Moreover, a specific name format is defined such that filenames and
17469 directories can be considered to have full names which consists of a name
17470 followed by comma-separated tags. This adds additional flexibility to
17471 identify file sets and individual files.")
17472 (license license:lgpl2.1+)))
17473
17474 (define-public r-r-devices
17475 (package
17476 (name "r-r-devices")
17477 (version "2.16.1")
17478 (source
17479 (origin
17480 (method url-fetch)
17481 (uri (cran-uri "R.devices" version))
17482 (sha256
17483 (base32
17484 "15zlnq3g27whq26fbcy5zfl5hiddm256h4rga4frblg6wqlbkvdd"))))
17485 (properties `((upstream-name . "R.devices")))
17486 (build-system r-build-system)
17487 (propagated-inputs
17488 `(("r-base64enc" ,r-base64enc)
17489 ("r-r-methodss3" ,r-r-methodss3)
17490 ("r-r-oo" ,r-r-oo)
17491 ("r-r-utils" ,r-r-utils)))
17492 (home-page "https://github.com/HenrikBengtsson/R.devices")
17493 (synopsis "Unified handling of graphics devices")
17494 (description
17495 "This package provides functions for creating plots and image files in a
17496 unified way regardless of output format (EPS, PDF, PNG, SVG, TIFF, WMF, etc.).
17497 Default device options as well as scales and aspect ratios are controlled in a
17498 uniform way across all device types. Switching output format requires minimal
17499 changes in code. This package is ideal for large-scale batch processing,
17500 because it will never leave open graphics devices or incomplete image files
17501 behind, even on errors or user interrupts.")
17502 (license license:lgpl2.1+)))
17503
17504 (define-public r-acnr
17505 (package
17506 (name "r-acnr")
17507 (version "1.0.0")
17508 (source
17509 (origin
17510 (method url-fetch)
17511 (uri (cran-uri "acnr" version))
17512 (sha256
17513 (base32
17514 "087hq4i7jp67ba2finzsqjfnqbiprl33na6ryjv9zqzsdawj9cym"))))
17515 (properties `((upstream-name . "acnr")))
17516 (build-system r-build-system)
17517 (home-page "https://github.com/mpierrejean/acnr")
17518 (synopsis "Annotated copy-number regions")
17519 (description
17520 "This package provides SNP array data from different types of copy-number
17521 regions. These regions were identified manually by the authors of the package
17522 and may be used to generate realistic data sets with known truth.")
17523 (license license:lgpl2.1+)))
17524
17525 (define-public r-acopula
17526 (package
17527 (name "r-acopula")
17528 (version "0.9.3")
17529 (source
17530 (origin
17531 (method url-fetch)
17532 (uri (cran-uri "acopula" version))
17533 (sha256
17534 (base32
17535 "0vvbbw8pfs9jwfz5c57lw48pr0qj661r0ys007q6zf9jmlrhx1ln"))))
17536 (properties `((upstream-name . "acopula")))
17537 (build-system r-build-system)
17538 (home-page "https://cran.r-project.org/web/packages/acopula/")
17539 (synopsis "Modelling dependence with multivariate Archimax copulas")
17540 (description
17541 "Archimax copulas are a mixture of Archimedean and EV copulas. This
17542 package provides definitions of several parametric families of generator and
17543 dependence function, computes CDF and PDF, estimates parameters, tests for
17544 goodness of fit, generates random sample and checks copula properties for
17545 custom constructs. In the 2-dimensional case explicit formulas for density
17546 are used, contrary to higher dimensions when all derivatives are linearly
17547 approximated. Several non-archimax families (normal, FGM, Plackett) are
17548 provided as well.")
17549 (license license:gpl2)))
17550
17551 (define-public r-tuner
17552 (package
17553 (name "r-tuner")
17554 (version "1.3.3")
17555 (source
17556 (origin
17557 (method url-fetch)
17558 (uri (cran-uri "tuneR" version))
17559 (sha256
17560 (base32
17561 "0av978m4h2iqazyfq6n2cgkh4wpllihh7s29lah2nb8ngc0w5hxx"))))
17562 (properties `((upstream-name . "tuneR")))
17563 (build-system r-build-system)
17564 (propagated-inputs `(("r-signal" ,r-signal)))
17565 (home-page "https://cran.r-project.org/web/packages/tuneR/")
17566 (synopsis "Analysis of music and speech")
17567 (description
17568 "This is a package for the analysis of music and speech. Analyze music
17569 and speech, extract features like MFCCs, handle wave files and their
17570 representation in various ways, read MP3, read MIDI, perform steps of a
17571 transcription, ...")
17572 ;; Either of these versions.
17573 (license (list license:gpl2 license:gpl3))))
17574
17575 (define-public r-seewave
17576 (package
17577 (name "r-seewave")
17578 (version "2.1.5")
17579 (source
17580 (origin
17581 (method url-fetch)
17582 (uri (cran-uri "seewave" version))
17583 (sha256
17584 (base32
17585 "1qg8f5gik9pw6f9mcxqmrc9x3003s8vdm6g01pjjpyc9qaqiz2vi"))))
17586 (properties `((upstream-name . "seewave")))
17587 (build-system r-build-system)
17588 (propagated-inputs
17589 `(("r-tuner" ,r-tuner)))
17590 (home-page "http://rug.mnhn.fr/seewave")
17591 (synopsis "Sound analysis and synthesis")
17592 (description
17593 "This package provides functions for analysing, manipulating, displaying,
17594 editing and synthesizing time waves (particularly sound). This package
17595 processes time analysis (oscillograms and envelopes), spectral content,
17596 resonance quality factor, entropy, cross correlation and autocorrelation,
17597 zero-crossing, dominant frequency, analytic signal, frequency coherence, 2D
17598 and 3D spectrograms and many other analyses.")
17599 (license license:gpl2+)))
17600
17601 (define-public r-acousticndlcoder
17602 (package
17603 (name "r-acousticndlcoder")
17604 (version "1.0.2")
17605 (source
17606 (origin
17607 (method url-fetch)
17608 (uri (cran-uri "AcousticNDLCodeR" version))
17609 (sha256
17610 (base32
17611 "1fgzgwanpv2pzy74xdk3hamc44p8qch467wh163dxby8jr9ik0sb"))))
17612 (properties
17613 `((upstream-name . "AcousticNDLCodeR")))
17614 (build-system r-build-system)
17615 (propagated-inputs
17616 `(("r-seewave" ,r-seewave)
17617 ("r-tuner" ,r-tuner)
17618 ("r-zoo" ,r-zoo)))
17619 (home-page "https://cran.r-project.org/web/packages/AcousticNDLCodeR/")
17620 (synopsis "Coding sound files for use with NDL")
17621 (description
17622 "Make acoustic cues to use with the R package @code{ndl}.
17623 The package implements functions used in the PLoS ONE paper \"Words from
17624 spontaneous conversational speech can be recognized with human-like accuracy
17625 by an error-driven learning algorithm that discriminates between meanings
17626 straight from smart acoustic features, bypassing the phoneme as recognition
17627 unit.\" @url{doi:10.1371/journal.pone.0174623}")
17628 (license license:gpl2+)))
17629
17630 (define-public r-acp
17631 (package
17632 (name "r-acp")
17633 (version "2.1")
17634 (source
17635 (origin
17636 (method url-fetch)
17637 (uri (cran-uri "acp" version))
17638 (sha256
17639 (base32
17640 "0lcwbjcyyr32m6qjmjqh25qjwrbyqj1n092xhgbhxzd8fslppnmn"))))
17641 (properties `((upstream-name . "acp")))
17642 (build-system r-build-system)
17643 (propagated-inputs
17644 `(("r-quantmod" ,r-quantmod)
17645 ("r-tseries" ,r-tseries)))
17646 (home-page "https://cran.r-project.org/web/packages/acp/")
17647 (synopsis "Autoregressive conditional Poisson")
17648 (description
17649 "This package supports the analysis of count data exhibiting
17650 autoregressive properties, using the @dfn{Autoregressive Conditional Poisson}
17651 model (ACP(p,q)) proposed by Heinen (2003).")
17652 (license license:gpl2)))
17653
17654 (define-public r-ada
17655 (package
17656 (name "r-ada")
17657 (version "2.0-5")
17658 (source
17659 (origin
17660 (method url-fetch)
17661 (uri (cran-uri "ada" version))
17662 (sha256
17663 (base32
17664 "1h3a07czp0w3hrhjcg1fz721y8vsfclzqi3rq8qfzgpfb4h1f06r"))))
17665 (properties `((upstream-name . "ada")))
17666 (build-system r-build-system)
17667 (propagated-inputs `(("r-rpart" ,r-rpart)))
17668 (home-page "https://cran.r-project.org/web/packages/ada/")
17669 (synopsis "Stochastic boosting")
17670 (description
17671 "This package provides a straightforward, well-documented, and broad
17672 boosting routine for classification, ideally suited for small to
17673 moderate-sized data sets. It performs discrete, real, and gentle boost under
17674 both exponential and logistic loss on a given data set.")
17675 ;; Any version of the GPL.
17676 (license (list license:gpl2+ license:gpl3+))))
17677
17678 (define-public r-genalg
17679 (package
17680 (name "r-genalg")
17681 (version "0.2.0")
17682 (source
17683 (origin
17684 (method url-fetch)
17685 (uri (cran-uri "genalg" version))
17686 (sha256
17687 (base32
17688 "1wzfamq8k5yhwbdx0wy1w5bks93brj0p890xxc4yqrja4w38ja3s"))))
17689 (properties `((upstream-name . "genalg")))
17690 (build-system r-build-system)
17691 (home-page "https://github.com/egonw/genalg")
17692 (synopsis "R based genetic algorithm")
17693 (description
17694 "This package provides an R based genetic algorithm for binary and
17695 floating point chromosomes.")
17696 (license license:gpl2)))
17697
17698 (define-public r-kernelfactory
17699 (package
17700 (name "r-kernelfactory")
17701 (version "0.3.0")
17702 (source
17703 (origin
17704 (method url-fetch)
17705 (uri (cran-uri "kernelFactory" version))
17706 (sha256
17707 (base32
17708 "001kw9k3ivd4drd4mwqapkkk3f4jgljiaprhg2630hmll064s89j"))))
17709 (properties `((upstream-name . "kernelFactory")))
17710 (build-system r-build-system)
17711 (propagated-inputs
17712 `(("r-auc" ,r-auc)
17713 ("r-genalg" ,r-genalg)
17714 ("r-kernlab" ,r-kernlab)
17715 ("r-randomforest" ,r-randomforest)))
17716 (home-page "https://cran.r-project.org/web/packages/kernelFactory/")
17717 (synopsis "Ensemble of kernel machines")
17718 (description
17719 "Kernel factory is an ensemble method where each base classifier (random
17720 forest) is fit on the kernel matrix of a subset of the training data.")
17721 (license license:gpl2+)))
17722
17723 (define-public r-dummies
17724 (package
17725 (name "r-dummies")
17726 (version "1.5.6")
17727 (source
17728 (origin
17729 (method url-fetch)
17730 (uri (cran-uri "dummies" version))
17731 (sha256
17732 (base32
17733 "01f84crqx17xd6xy55qxlvsj3knm8lhw7jl26p2rh2w3y0nvqlbm"))))
17734 (properties `((upstream-name . "dummies")))
17735 (build-system r-build-system)
17736 (home-page "https://decisionpatterns.com")
17737 (synopsis "Create dummy/indicator variables flexibly and efficiently")
17738 (description
17739 "This package lets you expand factors, characters and other eligible
17740 classes into dummy/indicator variables.")
17741 (license license:gpl2+)))
17742
17743 (define-public r-acrm
17744 (package
17745 (name "r-acrm")
17746 (version "0.1.1")
17747 (source
17748 (origin
17749 (method url-fetch)
17750 (uri (cran-uri "aCRM" version))
17751 (sha256
17752 (base32
17753 "0kzp568hd9c9a9qgniia5s5gv0q5f89xfvvwpzb197gqhs3x092v"))))
17754 (properties `((upstream-name . "aCRM")))
17755 (build-system r-build-system)
17756 (propagated-inputs
17757 `(("r-ada" ,r-ada)
17758 ("r-dummies" ,r-dummies)
17759 ("r-kernelfactory" ,r-kernelfactory)
17760 ("r-randomforest" ,r-randomforest)))
17761 (home-page "https://cran.r-project.org/web/packages/aCRM/")
17762 (synopsis "Convenience functions for analytical customer relationship management")
17763 (description
17764 "This package provides convenience functions for data preparation and
17765 modeling often used in @dfn{analytical customer relationship
17766 management} (aCRM).")
17767 (license license:gpl2+)))
17768
17769 (define-public r-treeclust
17770 (package
17771 (name "r-treeclust")
17772 (version "1.1-7")
17773 (source
17774 (origin
17775 (method url-fetch)
17776 (uri (cran-uri "treeClust" version))
17777 (sha256
17778 (base32
17779 "1s7kh6q0bkixsygrip95zf1bi10ihddsa5lq9dfxd68yh8rsby6z"))))
17780 (properties `((upstream-name . "treeClust")))
17781 (build-system r-build-system)
17782 (propagated-inputs
17783 `(("r-cluster" ,r-cluster)
17784 ("r-rpart" ,r-rpart)))
17785 (home-page "https://cran.r-project.org/web/packages/treeClust/")
17786 (synopsis "Cluster distances through trees")
17787 (description
17788 "This package provides tools to create a measure of inter-point
17789 dissimilarity useful for clustering mixed data, and, optionally, perform the
17790 clustering.")
17791 (license license:gpl2+)))
17792
17793 (define-public r-acrosstic
17794 (package
17795 (name "r-acrosstic")
17796 (version "1.0-3")
17797 (source
17798 (origin
17799 (method url-fetch)
17800 (uri (cran-uri "AcrossTic" version))
17801 (sha256
17802 (base32
17803 "03180h79jhjd66ibrnsfp3yyp2jlfysp7cymw46phzj2palghsc0"))))
17804 (properties `((upstream-name . "AcrossTic")))
17805 (build-system r-build-system)
17806 (propagated-inputs
17807 `(("r-lpsolve" ,r-lpsolve)
17808 ("r-treeclust" ,r-treeclust)))
17809 (home-page "https://cran.r-project.org/web/packages/AcrossTic/")
17810 (synopsis "Cost-minimal regular spanning subgraph with TreeClust")
17811 (description
17812 "This is a package for constructing minimum-cost regular spanning
17813 subgraph as part of a non-parametric two-sample test for equality of
17814 distribution.")
17815 (license license:gpl2+)))
17816
17817 (define-public r-acrt
17818 (package
17819 (name "r-acrt")
17820 (version "1.0.1")
17821 (source
17822 (origin
17823 (method url-fetch)
17824 (uri (cran-uri "acrt" version))
17825 (sha256
17826 (base32
17827 "0y9ndcq8ffpfrv7w9rikm4zn68jpsj6baqisq9kp2433xrwzdb6s"))))
17828 (properties `((upstream-name . "acrt")))
17829 (build-system r-build-system)
17830 (propagated-inputs
17831 `(("r-rcpp" ,r-rcpp)
17832 ("r-rcppeigen" ,r-rcppeigen)
17833 ("r-sandwich" ,r-sandwich)))
17834 (home-page "https://cran.r-project.org/web/packages/acrt/")
17835 (synopsis "Autocorrelation robust testing")
17836 (description
17837 "This package provides functions for testing affine hypotheses on the
17838 regression coefficient vector in regression models with autocorrelated
17839 errors.")
17840 (license license:gpl2)))
17841
17842 (define-public r-acs
17843 (package
17844 (name "r-acs")
17845 (version "2.1.4")
17846 (source
17847 (origin
17848 (method url-fetch)
17849 (uri (cran-uri "acs" version))
17850 (sha256
17851 (base32
17852 "0ajw9rf8l8akcvgqvbxjvryc6wjx74521xyxswz2b0bky3m6kah5"))))
17853 (properties `((upstream-name . "acs")))
17854 (build-system r-build-system)
17855 (propagated-inputs
17856 `(("r-httr" ,r-httr)
17857 ("r-plyr" ,r-plyr)
17858 ("r-rcpp" ,r-rcpp)
17859 ("r-stringr" ,r-stringr)
17860 ("r-xml" ,r-xml)))
17861 (home-page "https://dusp.mit.edu/faculty/ezra-haber-glenn")
17862 (synopsis "Work with data from the US Census")
17863 (description
17864 "This package provides a general toolkit for downloading, managing,
17865 analyzing, and presenting data from the
17866 @url{https://www.census.gov/data/developers/data-sets.html, U.S. Census},
17867 including SF1 (Decennial short-form), SF3 (Decennial long-form), and the
17868 American Community Survey (ACS). Confidence intervals provided with ACS data
17869 are converted to standard errors to be bundled with estimates in complex
17870 @code{acs} objects. The package provides new methods to conduct standard
17871 operations on @code{acs} objects and present/plot data in statistically
17872 appropriate ways.")
17873 (license license:gpl3)))
17874
17875 (define-public r-acss-data
17876 (package
17877 (name "r-acss-data")
17878 (version "1.0")
17879 (source
17880 (origin
17881 (method url-fetch)
17882 (uri (cran-uri "acss.data" version))
17883 (sha256
17884 (base32
17885 "09kl4179ipr8bq19g89xcdi1xxs397zcx5cvgp6viy8gn687ilgv"))))
17886 (properties `((upstream-name . "acss.data")))
17887 (build-system r-build-system)
17888 (home-page "http://complexitycalculator.com/methodology.html")
17889 (synopsis "Data for algorithmic complexity of short strings")
17890 (description
17891 "This is a data only package providing the algorithmic complexity of
17892 short strings, computed using the coding theorem method. For a given set of
17893 symbols in a string, all possible or a large number of random samples of
17894 Turing machines with a given number of states (e.g., 5) and number of symbols
17895 corresponding to the number of symbols in the strings were simulated until
17896 they reached a halting state or failed to end. This package contains data on
17897 4.5 million strings from length 1 to 12 simulated on Turing machines with 2,
17898 4, 5, 6, and 9 symbols. The complexity of the string corresponds to the
17899 distribution of the halting states.")
17900 (license license:gpl2+)))
17901
17902 (define-public r-acss
17903 (package
17904 (name "r-acss")
17905 (version "0.2-5")
17906 (source
17907 (origin
17908 (method url-fetch)
17909 (uri (cran-uri "acss" version))
17910 (sha256
17911 (base32
17912 "0cqa60544f58l5qd7h6xmsir40b9hqnq6pqgd5hfx2j2l5n7qhmk"))))
17913 (properties `((upstream-name . "acss")))
17914 (build-system r-build-system)
17915 (propagated-inputs
17916 `(("r-acss-data" ,r-acss-data)
17917 ("r-zoo" ,r-zoo)))
17918 (home-page "http://complexitycalculator.com/methodology.html")
17919 (synopsis "Algorithmic complexity for short strings")
17920 (description
17921 "The main purpose of this package is to provide the algorithmic
17922 complexity for short strings, an approximation of the Kolmogorov Complexity of
17923 a short string using the coding theorem method. While the database containing
17924 the complexity is provided in the data only package @code{acss.data}, this
17925 package provides functions accessing the data such as @code{prob_random}
17926 returning the posterior probability that a given string was produced by a
17927 random process. In addition, two traditional (but problematic) measures of
17928 complexity are also provided: entropy and change complexity.")
17929 (license license:gpl2+)))
17930
17931 (define-public r-acswr
17932 (package
17933 (name "r-acswr")
17934 (version "1.0")
17935 (source
17936 (origin
17937 (method url-fetch)
17938 (uri (cran-uri "ACSWR" version))
17939 (sha256
17940 (base32
17941 "195vjrkang5cl7gwsna0aq4p0h4jym9xg9yh94bnf8vq6wf8j83n"))))
17942 (properties `((upstream-name . "ACSWR")))
17943 (build-system r-build-system)
17944 (propagated-inputs
17945 `(("r-mass" ,r-mass)))
17946 (home-page "https://cran.r-project.org/web/packages/ACSWR/")
17947 (synopsis "Companion package for the book \"A Course in Statistics with R\"")
17948 (description
17949 "This is a companion package for the book \"A Course in Statistics with
17950 R\" (ISBN 978-1-119-15272-9.)")
17951 (license license:gpl2)))
17952
17953 (define-public r-alabama
17954 (package
17955 (name "r-alabama")
17956 (version "2015.3-1")
17957 (source
17958 (origin
17959 (method url-fetch)
17960 (uri (cran-uri "alabama" version))
17961 (sha256
17962 (base32
17963 "0mlgk929gdismikwx4k2ndqq57nnqj7mlgvd3479b214hksgq036"))))
17964 (properties `((upstream-name . "alabama")))
17965 (build-system r-build-system)
17966 (propagated-inputs `(("r-numderiv" ,r-numderiv)))
17967 (home-page "https://cran.r-project.org/web/packages/alabama/")
17968 (synopsis "Constrained nonlinear optimization")
17969 (description
17970 "Alabama stands for Augmented Lagrangian Adaptive Barrier Minimization
17971 Algorithm; it is used for optimizing smooth nonlinear objective functions with
17972 constraints. Linear or nonlinear equality and inequality constraints are
17973 allowed.")
17974 (license license:gpl2+)))
17975
17976 (define-public r-gdina
17977 (package
17978 (name "r-gdina")
17979 (version "2.7.9")
17980 (source
17981 (origin
17982 (method url-fetch)
17983 (uri (cran-uri "GDINA" version))
17984 (sha256
17985 (base32
17986 "13pmj069r04h38hg61ibyn1ab15zdy9m0qv60vi25ahgsmg6ccvx"))))
17987 (properties `((upstream-name . "GDINA")))
17988 (build-system r-build-system)
17989 (propagated-inputs
17990 `(("r-alabama" ,r-alabama)
17991 ("r-ggplot2" ,r-ggplot2)
17992 ("r-mass" ,r-mass)
17993 ("r-nloptr" ,r-nloptr)
17994 ("r-numderiv" ,r-numderiv)
17995 ("r-rcpp" ,r-rcpp)
17996 ("r-rcpparmadillo" ,r-rcpparmadillo)
17997 ("r-rsolnp" ,r-rsolnp)
17998 ("r-shiny" ,r-shiny)
17999 ("r-shinydashboard" ,r-shinydashboard)))
18000 (home-page "https://github.com/Wenchao-Ma/GDINA")
18001 (synopsis "Generalized DINA model framework")
18002 (description
18003 "This package provides a set of psychometric tools for cognitive
18004 diagnosis modeling based on the generalized deterministic inputs, noisy and
18005 gate (G-DINA) model by de la Torre (2011) @url{doi:10.1007/s11336-011-9207-7}
18006 and its extensions, including the sequential G-DINA model by Ma and de la
18007 Torre (2016) @url{doi:10.1111/bmsp.12070} for polytomous responses, and the
18008 polytomous G-DINA model by Chen and de la Torre
18009 @url{doi:10.1177/0146621613479818} for polytomous attributes. Joint attribute
18010 distribution can be independent, saturated, higher-order, loglinear smoothed
18011 or structured. Q-matrix validation, item and model fit statistics, model
18012 comparison at test and item level and differential item functioning can also
18013 be conducted. A graphical user interface is also provided.")
18014 (license license:gpl3)))
18015
18016 (define-public r-actcd
18017 (package
18018 (name "r-actcd")
18019 (version "1.2-0")
18020 (source
18021 (origin
18022 (method url-fetch)
18023 (uri (cran-uri "ACTCD" version))
18024 (sha256
18025 (base32
18026 "0mzjxxr2zfdidw8ibh6w8mvpkw3q3nvngqi05g9ind26ckvk053p"))))
18027 (properties `((upstream-name . "ACTCD")))
18028 (build-system r-build-system)
18029 (propagated-inputs
18030 `(("r-gdina" ,r-gdina)
18031 ("r-r-methodss3" ,r-r-methodss3)))
18032 (native-inputs
18033 `(("gfortran" ,gfortran)))
18034 (home-page "https://cran.r-project.org/web/packages/ACTCD/")
18035 (synopsis "Asymptotic classification theory for cognitive diagnosis")
18036 (description
18037 "This is a package supporting cluster analysis for cognitive diagnosis
18038 based on the Asymptotic Classification Theory (Chiu, Douglas & Li, 2009;
18039 @url{doi:10.1007/s11336-009-9125-0}). Given the sample statistic of
18040 sum-scores, cluster analysis techniques can be used to classify examinees into
18041 latent classes based on their attribute patterns. In addition to the
18042 algorithms used to classify data, three labeling approaches are proposed to
18043 label clusters so that examinees' attribute profiles can be obtained.")
18044 (license license:gpl2+)))
18045
18046 (define-public r-ineq
18047 (package
18048 (name "r-ineq")
18049 (version "0.2-13")
18050 (source
18051 (origin
18052 (method url-fetch)
18053 (uri (cran-uri "ineq" version))
18054 (sha256
18055 (base32
18056 "09fsxyrh0j7mwmb5hkhmrzgcy7kf85jxkh7zlwpgqgcsyl1n91z0"))))
18057 (properties `((upstream-name . "ineq")))
18058 (build-system r-build-system)
18059 (home-page "https://cran.r-project.org/web/packages/ineq/")
18060 (synopsis "Measuring inequality, concentration, and poverty")
18061 (description
18062 "This package provides tools for measuring inequality, concentration, and
18063 poverty measures. It provides both empirical and theoretical Lorenz curves.")
18064 ;; Either of these two versions.
18065 (license (list license:gpl2 license:gpl3))))
18066
18067 (define-public r-actfrag
18068 (package
18069 (name "r-actfrag")
18070 (version "0.1.1")
18071 (source
18072 (origin
18073 (method url-fetch)
18074 (uri (cran-uri "ActFrag" version))
18075 (sha256
18076 (base32
18077 "08r3gwjz4fkyy85dxqix0ffm5xyq45032qv3snnzxnlqxslxbqn1"))))
18078 (properties `((upstream-name . "ActFrag")))
18079 (build-system r-build-system)
18080 (propagated-inputs
18081 `(("r-accelerometry" ,r-accelerometry)
18082 ("r-dplyr" ,r-dplyr)
18083 ("r-ineq" ,r-ineq)
18084 ("r-survival" ,r-survival)
18085 ("r-tidyr" ,r-tidyr)))
18086 (home-page "https://github.com/junruidi/ActFrag")
18087 (synopsis "Activity fragmentation metrics extraction")
18088 (description
18089 "This package provides functions to extract commonly used fragmentation
18090 metrics to quantify time accumulation strategies based on minute level
18091 actigraphy-measured activity counts data.")
18092 (license license:gpl3)))
18093
18094 (define-public r-fda
18095 (package
18096 (name "r-fda")
18097 (version "2.4.8.1")
18098 (source
18099 (origin
18100 (method url-fetch)
18101 (uri (cran-uri "fda" version))
18102 (sha256
18103 (base32
18104 "0g50kj1dx7zarjv0lgwyzd2c7bv6di7nkndmywday5vjywgl8m7a"))))
18105 (properties `((upstream-name . "fda")))
18106 (build-system r-build-system)
18107 (propagated-inputs
18108 `(("r-matrix" ,r-matrix)))
18109 (home-page "https://www.functionaldata.org")
18110 (synopsis "Functional data analysis")
18111 (description
18112 "These functions were developed to support functional data analysis as
18113 described in Ramsay, J. O. and Silverman, B. W. (2005) Functional Data
18114 Analysis. The package includes data sets and script files working many
18115 examples.")
18116 (license license:gpl2+)))
18117
18118 (define-public r-actigraphy
18119 (package
18120 (name "r-actigraphy")
18121 (version "1.4.0")
18122 (source
18123 (origin
18124 (method url-fetch)
18125 (uri (cran-uri "Actigraphy" version))
18126 (sha256
18127 (base32
18128 "0bpmvszzv5fm72nar3wgnmfl5am7znqfajmlbv38ihkbi7jbwk20"))))
18129 (properties `((upstream-name . "Actigraphy")))
18130 (build-system r-build-system)
18131 (propagated-inputs
18132 `(("r-fda" ,r-fda)))
18133 (home-page "https://cran.r-project.org/web/packages/Actigraphy/")
18134 (synopsis "Actigraphy data analysis")
18135 (description
18136 "This package provides tools for functional linear modeling and analysis
18137 of actigraphy data.")
18138 (license license:asl2.0)))
18139
18140 (define-public r-activedriver
18141 (package
18142 (name "r-activedriver")
18143 (version "1.0.0")
18144 (source
18145 (origin
18146 (method url-fetch)
18147 (uri (cran-uri "ActiveDriver" version))
18148 (sha256
18149 (base32
18150 "10c7ga48fwvpd5mc4dqiyw4kc2l0iz5qn4hg7xk15r1qmm5rsipa"))))
18151 (properties `((upstream-name . "ActiveDriver")))
18152 (build-system r-build-system)
18153 (propagated-inputs
18154 `(("r-mass" ,r-mass)))
18155 (home-page "https://cran.r-project.org/web/packages/ActiveDriver/")
18156 (synopsis "Tools for finding cancer driver proteins")
18157 (description
18158 "This package provides a mutation analysis tool that discovers cancer
18159 driver genes with frequent mutations in protein signalling sites such as
18160 post-translational modifications (phosphorylation, ubiquitination, etc). The
18161 Poisson generalized linear regression model identifies genes where cancer
18162 mutations in signalling sites are more frequent than expected from the
18163 sequence of the entire gene. Integration of mutations with signalling
18164 information helps find new driver genes and propose candidate mechanisms to
18165 known drivers.")
18166 (license license:gpl2+)))
18167
18168 (define-public r-activitycounts
18169 (package
18170 (name "r-activitycounts")
18171 (version "0.1.2")
18172 (source
18173 (origin
18174 (method url-fetch)
18175 (uri (cran-uri "activityCounts" version))
18176 (sha256
18177 (base32
18178 "0zgxr2sk3a8kmygfxx1p5hnrfwdkxx7php6jlrhm8wv6052ck8jz"))))
18179 (properties
18180 `((upstream-name . "activityCounts")))
18181 (build-system r-build-system)
18182 (propagated-inputs
18183 `(("r-lubridate" ,r-lubridate)
18184 ("r-magrittr" ,r-magrittr)
18185 ("r-seewave" ,r-seewave)
18186 ("r-signal" ,r-signal)
18187 ("r-tibble" ,r-tibble)))
18188 (home-page "https://github.com/walkabillylab/activityCounts")
18189 (synopsis "Generate ActiLife counts")
18190 (description
18191 "ActiLife generates activity counts from data collected by Actigraph
18192 accelerometers. Actigraph is one of the most common research-grade
18193 accelerometers. There is considerable research validating and developing
18194 algorithms for human activity using ActiLife counts. Unfortunately, ActiLife
18195 counts are proprietary and difficult to implement if researchers use different
18196 accelerometer brands. The code creates ActiLife counts from raw acceleration
18197 data for different accelerometer brands.")
18198 (license license:gpl3)))
18199
18200 (define-public r-activityindex
18201 (package
18202 (name "r-activityindex")
18203 (version "0.3.6")
18204 (source
18205 (origin
18206 (method url-fetch)
18207 (uri (cran-uri "ActivityIndex" version))
18208 (sha256
18209 (base32
18210 "14k6d78s15j7kb7jhixf4msrdjdl28d0r264cbvy41p8dkq7ysvk"))))
18211 (properties `((upstream-name . "ActivityIndex")))
18212 (build-system r-build-system)
18213 (propagated-inputs
18214 `(("r-data-table" ,r-data-table)
18215 ("r-matrixstats" ,r-matrixstats)
18216 ("r-r-utils" ,r-r-utils)))
18217 (home-page "https://cran.r-project.org/web/packages/ActivityIndex/")
18218 (synopsis "Activity Index calculation using raw accelerometry data")
18219 (description
18220 "This is a package to read raw accelerometry from GT3X+ accelerometry
18221 data and plain table data to calculate the Activity Index from Bai et
18222 al. (2016) @url{doi:10.1371/journal.pone.0160644}.")
18223 (license license:gpl3)))
18224
18225 (define-public r-activpal
18226 (package
18227 (name "r-activpal")
18228 (version "0.1.3")
18229 (source
18230 (origin
18231 (method url-fetch)
18232 (uri (cran-uri "activPAL" version))
18233 (sha256
18234 (base32
18235 "1h6hp5z89ji73gdzxy1dgbfwjysiy5lvcqh90xagpb7sa7ahs3na"))))
18236 (properties `((upstream-name . "activPAL")))
18237 (build-system r-build-system)
18238 (propagated-inputs
18239 `(("r-devtools" ,r-devtools)
18240 ("r-dplyr" ,r-dplyr)
18241 ("r-ggplot2" ,r-ggplot2)
18242 ("r-lubridate" ,r-lubridate)
18243 ("r-magrittr" ,r-magrittr)
18244 ("r-tidyr" ,r-tidyr)))
18245 (home-page "https://cran.r-project.org/web/packages/activPAL")
18246 (synopsis "Processing and chart generation from activPAL events files")
18247 (description
18248 "This package contains functions to generate pre-defined summary
18249 statistics from activPAL events files. The package also contains functions to
18250 produce informative graphics that visualize physical activity behaviour and
18251 trends. This includes generating graphs that align physical activity
18252 behaviour with additional time based observations described by other data
18253 sets, such as sleep diaries and continuous glucose monitoring data.")
18254 (license license:gpl3)))
18255
18256 (define-public r-activpalprocessing
18257 (package
18258 (name "r-activpalprocessing")
18259 (version "1.0.2")
18260 (source
18261 (origin
18262 (method url-fetch)
18263 (uri (cran-uri "activpalProcessing" version))
18264 (sha256
18265 (base32
18266 "1y0bjx2qx53iy930y9iww4q1yzjj8y16cwgixk1mq3w4g1f116d1"))))
18267 (properties
18268 `((upstream-name . "activpalProcessing")))
18269 (build-system r-build-system)
18270 (propagated-inputs
18271 `(("r-chron" ,r-chron)))
18272 (home-page "https://cran.r-project.org/web/packages/activpalProcessing/")
18273 (synopsis "Process activPAL events files")
18274 (description
18275 "This package performs estimation of physical activity and sedentary
18276 behavior variables from activPAL events files.")
18277 ;; Either version of the GPL.
18278 (license (list license:gpl2 license:gpl3))))
18279
18280 (define-public r-actogrammr
18281 (package
18282 (name "r-actogrammr")
18283 (version "0.2.3")
18284 (source
18285 (origin
18286 (method url-fetch)
18287 (uri (cran-uri "actogrammr" version))
18288 (sha256
18289 (base32
18290 "1jzvarmd41yqlrkagzlc8m19n5mn0w0b36fy50lyvgrfsafjfbqa"))))
18291 (properties `((upstream-name . "actogrammr")))
18292 (build-system r-build-system)
18293 (propagated-inputs
18294 `(("r-dplyr" ,r-dplyr)
18295 ("r-ggplot2" ,r-ggplot2)
18296 ("r-lubridate" ,r-lubridate)
18297 ("r-readr" ,r-readr)
18298 ("r-tidyr" ,r-tidyr)))
18299 (home-page "https://cran.r-project.org/web/packages/actogrammr/")
18300 (synopsis "Read in activity data and plot actograms")
18301 (description
18302 "Read in activity measurements from standard file formats used by
18303 circadian rhythm researchers, currently only ClockLab format, and process and
18304 plot the data. The central type of plot is the actogram, as first described
18305 in \"Activity and distribution of certain wild mice in relation to biotic
18306 communities\" by MS Johnson (1926) @url{doi:10.2307/1373575}.")
18307 (license license:gpl3)))
18308
18309 (define-public r-expint
18310 (package
18311 (name "r-expint")
18312 (version "0.1-6")
18313 (source
18314 (origin
18315 (method url-fetch)
18316 (uri (cran-uri "expint" version))
18317 (sha256
18318 (base32
18319 "0iai25cglcdnf44d2d1fz1xpw4q600my4zq4493fk4cs5673mlf7"))))
18320 (properties `((upstream-name . "expint")))
18321 (build-system r-build-system)
18322 (home-page "https://gitlab.com/vigou3/expint")
18323 (synopsis "Exponential integral and incomplete Gamma function")
18324 (description
18325 "This package provides the exponential integrals @code{E_1(x)},
18326 @code{E_2(x)}, @code{E_n(x)} and @code{Ei(x)}, and the incomplete gamma
18327 function @code{G(a, x)} defined for negative values of its first argument.
18328 The package also gives easy access to the underlying C routines through an
18329 API; see the package vignette for details.")
18330 (license license:gpl2+)))
18331
18332 (define-public r-actuar
18333 (package
18334 (name "r-actuar")
18335 (version "2.3-3")
18336 (source
18337 (origin
18338 (method url-fetch)
18339 (uri (cran-uri "actuar" version))
18340 (sha256
18341 (base32
18342 "0aw3hlan5y22mdqk1wvnw9ksqhwp4yy5hi0dpv21p7s0hyxhphih"))))
18343 (properties `((upstream-name . "actuar")))
18344 (build-system r-build-system)
18345 (propagated-inputs `(("r-expint" ,r-expint)))
18346 (home-page "https://gitlab.com/vigou3/actuar")
18347 (synopsis "Actuarial functions and heavy tailed distributions")
18348 (description
18349 "This package provides functions and data sets for actuarial science:
18350 modeling of loss distributions; risk theory and ruin theory; simulation of
18351 compound models, discrete mixtures and compound hierarchical models;
18352 credibility theory. It boasts support for many additional probability
18353 distributions to model insurance loss amounts and loss frequency: 19
18354 continuous heavy tailed distributions; the Poisson-inverse Gaussian discrete
18355 distribution; zero-truncated and zero-modified extensions of the standard
18356 discrete distributions. It also supports phase-type distributions commonly
18357 used to compute ruin probabilities.")
18358 (license license:gpl2+)))
18359
18360 (define-public r-bmp
18361 (package
18362 (name "r-bmp")
18363 (version "0.3")
18364 (source
18365 (origin
18366 (method url-fetch)
18367 (uri (cran-uri "bmp" version))
18368 (sha256
18369 (base32
18370 "0jd67r11bn98hjwgyr6gas423787xy7ji2hq7ay80blkkcj91xxx"))))
18371 (properties `((upstream-name . "bmp")))
18372 (build-system r-build-system)
18373 (home-page "https://cran.r-project.org/web/packages/bmp/")
18374 (synopsis "Read Bitmap (BMP) images")
18375 (description
18376 "This package provides pure R tools to read BMP format images. It is
18377 currently limited to 8 bit greyscale images and 24, 32 bit (A)RGB images.")
18378 (license license:gpl2+)))
18379
18380 (define-public r-readbitmap
18381 (package
18382 (name "r-readbitmap")
18383 (version "0.1.5")
18384 (source
18385 (origin
18386 (method url-fetch)
18387 (uri (cran-uri "readbitmap" version))
18388 (sha256
18389 (base32
18390 "14825906l326w59g6apy00j55jg3h5kx2r6s031f4gdkbrc7szbk"))))
18391 (properties `((upstream-name . "readbitmap")))
18392 (build-system r-build-system)
18393 (inputs
18394 `(("libjpeg" ,libjpeg)
18395 ("libpng" ,libpng)))
18396 (propagated-inputs
18397 `(("r-bmp" ,r-bmp)
18398 ("r-jpeg" ,r-jpeg)
18399 ("r-png" ,r-png)
18400 ("r-tiff" ,r-tiff)))
18401 (home-page "https://github.com/jefferis/readbitmap")
18402 (synopsis "Unified interface to read bitmap images (BMP, JPEG, PNG, TIFF)")
18403 (description
18404 "This package provides tools to identify and read BMP, JPEG, PNG, and
18405 TIFF format bitmap images. Identification defaults to the use of the magic
18406 number embedded in the file rather than the file extension.")
18407 (license license:gpl2+)))
18408
18409 (define-public r-imager
18410 (package
18411 (name "r-imager")
18412 (version "0.42.1")
18413 (source
18414 (origin
18415 (method url-fetch)
18416 (uri (cran-uri "imager" version))
18417 (sha256
18418 (base32
18419 "1d7a49lcna77wyfjf5q1b89jck3p3vnysnkgz4drb0qkpy6hz76b"))))
18420 (properties `((upstream-name . "imager")))
18421 (build-system r-build-system)
18422 (inputs
18423 `(("fftw" ,fftw)
18424 ("libtiff" ,libtiff)
18425 ("libx11" ,libx11)
18426 ("zlib" ,zlib)))
18427 (propagated-inputs
18428 `(("r-downloader" ,r-downloader)
18429 ("r-igraph" ,r-igraph)
18430 ("r-jpeg" ,r-jpeg)
18431 ("r-magrittr" ,r-magrittr)
18432 ("r-png" ,r-png)
18433 ("r-purrr" ,r-purrr)
18434 ("r-rcpp" ,r-rcpp)
18435 ("r-readbitmap" ,r-readbitmap)
18436 ("r-stringr" ,r-stringr)))
18437 (native-inputs `(("pkg-config" ,pkg-config)))
18438 (home-page "https://dahtah.github.io/imager/")
18439 (synopsis "Image processing library")
18440 (description
18441 "This is a package for fast image processing for images in up to 4
18442 dimensions (two spatial dimensions, one time/depth dimension, one color
18443 dimension). It provides most traditional image processing tools (filtering,
18444 morphology, transformations, etc.) as well as various functions for easily
18445 analyzing image data using R. The package wraps @url{http://cimg.eu, CImg}, a
18446 simple, modern C++ library for image processing.")
18447 (license license:lgpl3)))
18448
18449 (define-public r-acuityview
18450 (package
18451 (name "r-acuityview")
18452 (version "0.1")
18453 (source
18454 (origin
18455 (method url-fetch)
18456 (uri (cran-uri "AcuityView" version))
18457 (sha256
18458 (base32
18459 "0f0iclmnwdc8ixiiai4svk4x1g3pjy7dhm3cm58fv6ckx12d3d2l"))))
18460 (properties `((upstream-name . "AcuityView")))
18461 (build-system r-build-system)
18462 (propagated-inputs
18463 `(("r-fftwtools" ,r-fftwtools)
18464 ("r-imager" ,r-imager)
18465 ("r-plotrix" ,r-plotrix)))
18466 (home-page "https://cran.r-project.org/web/packages/AcuityView/")
18467 (synopsis "Display scenes as seen by an animal with less acute vision")
18468 (description
18469 "This package provides a simple method for representing a visual scene as
18470 it may be seen by an animal with less acute vision.")
18471 (license license:gpl2+)))
18472
18473 (define-public r-caret
18474 (package
18475 (name "r-caret")
18476 (version "6.0-86")
18477 (source
18478 (origin
18479 (method url-fetch)
18480 (uri (cran-uri "caret" version))
18481 (sha256
18482 (base32
18483 "0dyflixdw98lvk2x3w136sw24ij0fwx5c7l709dmqr5z7xy1qjns"))))
18484 (build-system r-build-system)
18485 (propagated-inputs
18486 `(("r-foreach" ,r-foreach)
18487 ("r-ggplot2" ,r-ggplot2)
18488 ("r-lattice" ,r-lattice)
18489 ("r-modelmetrics" ,r-modelmetrics)
18490 ("r-nlme" ,r-nlme)
18491 ("r-plyr" ,r-plyr)
18492 ("r-proc" ,r-proc)
18493 ("r-recipes" ,r-recipes)
18494 ("r-reshape2" ,r-reshape2)
18495 ("r-withr" ,r-withr)))
18496 (native-inputs
18497 `(("r-knitr" ,r-knitr)))
18498 (home-page "https://github.com/topepo/caret")
18499 (synopsis "Classification and regression training")
18500 (description
18501 "This package provides miscellaneous functions for training and plotting
18502 classification and regression models.")
18503 (license license:gpl2+)))
18504
18505 (define-public r-adabag
18506 (package
18507 (name "r-adabag")
18508 (version "4.2")
18509 (source
18510 (origin
18511 (method url-fetch)
18512 (uri (cran-uri "adabag" version))
18513 (sha256
18514 (base32
18515 "109wrl1pwvmyv2l909hrvk7dg4aa9pv449mvdycp50zwrsw9w0a7"))))
18516 (properties `((upstream-name . "adabag")))
18517 (build-system r-build-system)
18518 (propagated-inputs
18519 `(("r-caret" ,r-caret)
18520 ("r-doparallel" ,r-doparallel)
18521 ("r-foreach" ,r-foreach)
18522 ("r-rpart" ,r-rpart)))
18523 (home-page "https://cran.r-project.org/web/packages/adabag/")
18524 (synopsis "Multiclass AdaBoost.M1, SAMME and Bagging")
18525 (description
18526 "This package implements Freund and Schapire's Adaboost.M1 algorithm and
18527 Breiman's Bagging algorithm using classification trees as individual
18528 classifiers. Once these classifiers have been trained, they can be used to
18529 predict on new data. Also, cross validation estimation of the error can be
18530 done.")
18531 (license license:gpl2+)))
18532
18533 (define-public r-adagio
18534 (package
18535 (name "r-adagio")
18536 (version "0.7.1")
18537 (source
18538 (origin
18539 (method url-fetch)
18540 (uri (cran-uri "adagio" version))
18541 (sha256
18542 (base32
18543 "1h9l0ddrxq8y35iy9hdkxdvdwsqpnpkzzbkbwwhm4380lq1m7a3k"))))
18544 (properties `((upstream-name . "adagio")))
18545 (build-system r-build-system)
18546 (native-inputs `(("gfortran" ,gfortran)))
18547 (home-page "https://cran.r-project.org/web/packages/adagio/")
18548 (synopsis "Discrete and global optimization routines")
18549 (description
18550 "This package provides methods and algorithms for discrete optimization,
18551 e.g. knapsack and subset sum procedures, derivative-free Nelder-Mead and
18552 Hooke-Jeeves minimization, and some (evolutionary) global optimization
18553 functions.")
18554 (license license:gpl3+)))
18555
18556 (define-public r-univoutl
18557 (package
18558 (name "r-univoutl")
18559 (version "0.1-5")
18560 (source
18561 (origin
18562 (method url-fetch)
18563 (uri (cran-uri "univOutl" version))
18564 (sha256
18565 (base32
18566 "193wrpkvgmlrx43nag8w3ivrlqm37nm6g86wcvd3bgw3hchs70gi"))))
18567 (properties `((upstream-name . "univOutl")))
18568 (build-system r-build-system)
18569 (propagated-inputs
18570 `(("r-hmisc" ,r-hmisc)
18571 ("r-robustbase" ,r-robustbase)))
18572 (home-page "https://github.com/marcellodo/univOutl")
18573 (synopsis "Detection of univariate outliers")
18574 (description
18575 "This package provides well-known outlier detection techniques in the
18576 univariate case. Methods to deal with skewed distribution are included too.
18577 The Hidiroglou-Berthelot (1986) method to search for outliers in ratios of
18578 historical data is implemented as well. When available, survey weights can be
18579 used in outliers detection.")
18580 (license license:gpl2+)))
18581
18582 (define-public r-tolerance
18583 (package
18584 (name "r-tolerance")
18585 (version "2.0.0")
18586 (source
18587 (origin
18588 (method url-fetch)
18589 (uri (cran-uri "tolerance" version))
18590 (sha256
18591 (base32
18592 "001snzr2ipag3zprynydlbi9prkjzrllc054qh7m0qwkb3r19jjd"))))
18593 (properties `((upstream-name . "tolerance")))
18594 (build-system r-build-system)
18595 (propagated-inputs
18596 `(("r-mass" ,r-mass)
18597 ("r-rgl" ,r-rgl)))
18598 (home-page "https://cran.r-project.org/web/packages/tolerance/")
18599 (synopsis "Statistical tolerance intervals and regions")
18600 (description
18601 "This package provides functions for estimating tolerance
18602 limits (intervals) for various univariate distributions (binomial, Cauchy,
18603 discrete Pareto, exponential, two-parameter exponential, extreme value,
18604 hypergeometric, Laplace, logistic, negative binomial, negative hypergeometric,
18605 normal, Pareto, Poisson-Lindley, Poisson, uniform, and Zipf-Mandelbrot),
18606 Bayesian normal tolerance limits, multivariate normal tolerance regions,
18607 nonparametric tolerance intervals, tolerance bands for regression
18608 settings (linear regression, nonlinear regression, nonparametric regression,
18609 and multivariate regression), and analysis of variance tolerance intervals.
18610 Visualizations are also available for most of these settings.")
18611 (license license:gpl2+)))
18612
18613 (define-public r-additivitytests
18614 (package
18615 (name "r-additivitytests")
18616 (version "1.1-4")
18617 (source
18618 (origin
18619 (method url-fetch)
18620 (uri (cran-uri "additivityTests" version))
18621 (sha256
18622 (base32
18623 "048ds90wqjdjy1nyhna3m06asdklbh8sx1n556kss2j1r1pma1sw"))))
18624 (properties
18625 `((upstream-name . "additivityTests")))
18626 (build-system r-build-system)
18627 (home-page "https://github.com/simecek/additivityTests")
18628 (synopsis "Additivity tests in the two way Anova with single sub-class numbers")
18629 (description
18630 "This package provides an implementation of the Tukey, Mandel,
18631 Johnson-Graybill, LBI, Tusell and modified Tukey non-additivity tests.")
18632 (license license:gpl3)))
18633
18634 (define-public r-flexclust
18635 (package
18636 (name "r-flexclust")
18637 (version "1.4-0")
18638 (source
18639 (origin
18640 (method url-fetch)
18641 (uri (cran-uri "flexclust" version))
18642 (sha256
18643 (base32
18644 "0x7wxk8y46ndyz6fdacym0rd6p9wh3pcfr28chjcg5d7fm849zl2"))))
18645 (properties `((upstream-name . "flexclust")))
18646 (build-system r-build-system)
18647 (propagated-inputs
18648 `(("r-class" ,r-class)
18649 ("r-lattice" ,r-lattice)
18650 ("r-modeltools" ,r-modeltools)))
18651 (home-page "https://cran.r-project.org/web/packages/flexclust/")
18652 (synopsis "Flexible cluster algorithms")
18653 (description
18654 "The main function @code{kcca} implements a general framework for
18655 k-centroids cluster analysis supporting arbitrary distance measures and
18656 centroid computation. Further cluster methods include hard competitive
18657 learning, neural gas, and QT clustering. There are numerous visualization
18658 methods for cluster results (neighborhood graphs, convex cluster hulls,
18659 barcharts of centroids, ...), and bootstrap methods for the analysis of
18660 cluster stability.")
18661 (license license:gpl2)))
18662
18663 (define-public r-biclust
18664 (package
18665 (name "r-biclust")
18666 (version "2.0.2")
18667 (source
18668 (origin
18669 (method url-fetch)
18670 (uri (cran-uri "biclust" version))
18671 (sha256
18672 (base32
18673 "1pk7mvwlg4hkc4cn4w6wr2c192qx03d1xfwlzclk5bw1nmcg483b"))))
18674 (properties `((upstream-name . "biclust")))
18675 (build-system r-build-system)
18676 (propagated-inputs
18677 `(("r-additivitytests" ,r-additivitytests)
18678 ("r-colorspace" ,r-colorspace)
18679 ("r-flexclust" ,r-flexclust)
18680 ("r-ggplot2" ,r-ggplot2)
18681 ("r-lattice" ,r-lattice)
18682 ("r-mass" ,r-mass)
18683 ("r-tidyr" ,r-tidyr)))
18684 (home-page "https://cran.r-project.org/web/packages/biclust/")
18685 (synopsis "BiCluster algorithms")
18686 (description
18687 "The main function @code{biclust()} provides several algorithms to find
18688 biclusters in two-dimensional data, spectral, plaid model, xmotifs, and bimax.
18689 In addition, the package provides methods for data
18690 preprocessing (normalization and discretization), visualization, and
18691 validation of bicluster solutions.")
18692 (license license:gpl3)))
18693
18694 (define-public r-icge
18695 (package
18696 (name "r-icge")
18697 (version "0.3")
18698 (source
18699 (origin
18700 (method url-fetch)
18701 (uri (cran-uri "ICGE" version))
18702 (sha256
18703 (base32
18704 "0xin7zml1nbygyi08hhg3wwr2jr1zcsvrlgia89zp4xanxlzgaqa"))))
18705 (properties `((upstream-name . "ICGE")))
18706 (build-system r-build-system)
18707 (propagated-inputs
18708 `(("r-cluster" ,r-cluster)
18709 ("r-mass" ,r-mass)))
18710 (home-page "https://cran.r-project.org/web/packages/ICGE/")
18711 (synopsis "Cluster estimation and identification of atypical units")
18712 (description
18713 "ICGE is a package that helps to estimate the number of real clusters in
18714 data as well as to identify atypical units. The underlying methods are based
18715 on distances rather than on unit x variables.")
18716 (license license:gpl2+)))
18717
18718 (define-public r-depth
18719 (package
18720 (name "r-depth")
18721 (version "2.1-1.1")
18722 (source
18723 (origin
18724 (method url-fetch)
18725 (uri (cran-uri "depth" version))
18726 (sha256
18727 (base32
18728 "0szy0027nh4ps1z919i740i50app5q7cfyg1fj7pdyl45nbl8k6m"))))
18729 (properties `((upstream-name . "depth")))
18730 (build-system r-build-system)
18731 (propagated-inputs
18732 `(("r-abind" ,r-abind)
18733 ("r-circular" ,r-circular)
18734 ("r-rgl" ,r-rgl)))
18735 (native-inputs
18736 `(("gfortran" ,gfortran)))
18737 (home-page "https://cran.r-project.org/web/packages/depth/")
18738 (synopsis "Nonparametric depth functions for multivariate analysis")
18739 (description
18740 "This package provides tools for depth functions methodology applied to
18741 multivariate analysis. Besides allowing calculation of depth values and
18742 depth-based location estimators, the package includes functions or drawing
18743 contour plots and perspective plots of depth functions. Euclidian and
18744 spherical depths are supported.")
18745 (license license:gpl2)))
18746
18747 (define-public r-archetypes
18748 (package
18749 (name "r-archetypes")
18750 (version "2.2-0.1")
18751 (source
18752 (origin
18753 (method url-fetch)
18754 (uri (cran-uri "archetypes" version))
18755 (sha256
18756 (base32
18757 "0ibxsr173ib77gjhid91m85s8gjii4mi2w3d52q5301igv20p7r0"))))
18758 (properties `((upstream-name . "archetypes")))
18759 (build-system r-build-system)
18760 (propagated-inputs
18761 `(("r-modeltools" ,r-modeltools)
18762 ("r-nnls" ,r-nnls)))
18763 (home-page "https://cran.r-project.org/web/packages/archetypes")
18764 (synopsis "Archetypal analysis")
18765 (description
18766 "The main function @code{archetypes} implements a framework for
18767 archetypal analysis supporting arbitrary problem solving mechanisms for the
18768 different conceptual parts of the algorithm.")
18769 (license license:gpl2+)))
18770
18771 (define-public r-shapes
18772 (package
18773 (name "r-shapes")
18774 (version "1.2.5")
18775 (source
18776 (origin
18777 (method url-fetch)
18778 (uri (cran-uri "shapes" version))
18779 (sha256
18780 (base32
18781 "0gfpdydfysp5mwg7qmkn73s67gvh2szb40mzqrx97h41ijgcgd8s"))))
18782 (properties `((upstream-name . "shapes")))
18783 (build-system r-build-system)
18784 (propagated-inputs
18785 `(("r-mass" ,r-mass)
18786 ("r-minpack-lm" ,r-minpack-lm)
18787 ("r-rgl" ,r-rgl)
18788 ("r-scatterplot3d" ,r-scatterplot3d)))
18789 (home-page "http://www.maths.nottingham.ac.uk/~ild/shapes")
18790 (synopsis "Statistical shape analysis")
18791 (description
18792 "This package provides routines for the statistical analysis of landmark
18793 shapes, including Procrustes analysis, graphical displays, principal
18794 components analysis, permutation and bootstrap tests, thin-plate spline
18795 transformation grids and comparing covariance matrices. See Dryden, I.L. and
18796 Mardia, K.V. (2016). Statistical shape analysis, with Applications in R (2nd
18797 Edition), John Wiley and Sons.")
18798 (license license:gpl2)))
18799
18800 (define-public r-anthropometry
18801 (package
18802 (name "r-anthropometry")
18803 (version "1.13")
18804 (source
18805 (origin
18806 (method url-fetch)
18807 (uri (cran-uri "Anthropometry" version))
18808 (sha256
18809 (base32
18810 "1f568ri1s6psaby8y737vrkarbjg64v89d4jyw23hy17apdmszr8"))))
18811 (properties `((upstream-name . "Anthropometry")))
18812 (build-system r-build-system)
18813 (propagated-inputs
18814 `(("r-archetypes" ,r-archetypes)
18815 ("r-biclust" ,r-biclust)
18816 ("r-cluster" ,r-cluster)
18817 ("r-depth" ,r-depth)
18818 ("r-fnn" ,r-fnn)
18819 ("r-icge" ,r-icge)
18820 ("r-nnls" ,r-nnls)
18821 ("r-rgl" ,r-rgl)
18822 ("r-shapes" ,r-shapes)))
18823 (home-page "https://cran.r-project.org/web/packages/Anthropometry/")
18824 (synopsis "Statistical methods for anthropometric data")
18825 (description
18826 "This package provides statistical methods especially developed to
18827 analyze anthropometric data. These methods are aimed at providing effective
18828 solutions to some commons problems related to Ergonomics and Anthropometry.
18829 They are based on clustering, the statistical concept of data depth,
18830 statistical shape analysis and archetypal analysis.")
18831 (license license:gpl2+)))
18832
18833 (define-public r-adamethods
18834 (package
18835 (name "r-adamethods")
18836 (version "1.2")
18837 (source
18838 (origin
18839 (method url-fetch)
18840 (uri (cran-uri "adamethods" version))
18841 (sha256
18842 (base32
18843 "0mp73zh5x6h18gv29v981kb9n632kb58lvlcxwr6vcvrx393nrxh"))))
18844 (properties `((upstream-name . "adamethods")))
18845 (build-system r-build-system)
18846 (propagated-inputs
18847 `(("r-anthropometry" ,r-anthropometry)
18848 ("r-archetypes" ,r-archetypes)
18849 ("r-fnn" ,r-fnn)
18850 ("r-foreach" ,r-foreach)
18851 ("r-nnls" ,r-nnls)
18852 ("r-tolerance" ,r-tolerance)
18853 ("r-univoutl" ,r-univoutl)))
18854 (home-page "https://cran.r-project.org/web/packages/adamethods/")
18855 (synopsis "Archetypoid algorithms and anomaly detection")
18856 (description
18857 "This package is a collection of several algorithms to obtain
18858 archetypoids with small and large databases and with both classical
18859 multivariate data and functional data (univariate and multivariate). Some of
18860 these algorithms also allow to detect anomalies (outliers).")
18861 (license license:gpl2+)))
18862
18863 (define-public r-idpmisc
18864 (package
18865 (name "r-idpmisc")
18866 (version "1.1.20")
18867 (source
18868 (origin
18869 (method url-fetch)
18870 (uri (cran-uri "IDPmisc" version))
18871 (sha256
18872 (base32
18873 "0zy6mxqa8arq0vvhsdcifzm3085c23rnwa1n36fhircph1xwvfdw"))))
18874 (properties `((upstream-name . "IDPmisc")))
18875 (build-system r-build-system)
18876 (propagated-inputs
18877 `(("r-lattice" ,r-lattice)))
18878 (home-page "https://cran.r-project.org/web/packages/IDPmisc/")
18879 (synopsis "Functions for data analyses and visualization")
18880 (description
18881 "This package provides different high-level graphics functions for
18882 displaying large datasets, displaying circular data in a very flexible way,
18883 finding local maxima, brewing color ramps, drawing nice arrows, zooming
18884 2D-plots, creating figures with differently colored margin and plot region.
18885 In addition, the package contains auxiliary functions for data manipulation
18886 like omitting observations with irregular values or selecting data by logical
18887 vectors, which include NAs. Other functions are especially useful in
18888 spectroscopy and analyses of environmental data: robust baseline fitting,
18889 finding peaks in spectra, converting humidity measures.")
18890 (license license:gpl3+)))
18891
18892 (define-public r-qqman
18893 (package
18894 (name "r-qqman")
18895 (version "0.1.4")
18896 (source
18897 (origin
18898 (method url-fetch)
18899 (uri (cran-uri "qqman" version))
18900 (sha256
18901 (base32
18902 "1v9s9ag1hfb47py87wb2nad4mbsfx35832hdmrh5kxrb2f11zl1s"))))
18903 (properties `((upstream-name . "qqman")))
18904 (build-system r-build-system)
18905 (propagated-inputs
18906 `(("r-calibrate" ,r-calibrate)))
18907 (home-page "https://cran.r-project.org/web/packages/qqman/")
18908 (synopsis "Q-Q and Manhattan plots for GWAS data")
18909 (description
18910 "This package allows you to create Q-Q and Manhattan plots for GWAS data
18911 from PLINK results.")
18912 (license license:gpl3)))
18913
18914 (define-public r-ggplot-multistats
18915 (package
18916 (name "r-ggplot-multistats")
18917 (version "1.0.0")
18918 (source
18919 (origin
18920 (method url-fetch)
18921 (uri (cran-uri "ggplot.multistats" version))
18922 (sha256
18923 (base32
18924 "1afzfa86vc484bcwpg7m1ky03jpax584rigzgai8w06pifkmz0il"))))
18925 (properties
18926 `((upstream-name . "ggplot.multistats")))
18927 (build-system r-build-system)
18928 (propagated-inputs
18929 `(("r-ggplot2" ,r-ggplot2)
18930 ("r-hexbin" ,r-hexbin)
18931 ("r-rlang" ,r-rlang)
18932 ("r-scales" ,r-scales)))
18933 (home-page "https://github.com/flying-sheep/ggplot.multistats")
18934 (synopsis "Multiple summary statistics for binned stats/geometries")
18935 (description
18936 "This package provides the ggplot binning layer @code{stat_summaries_hex()},
18937 which functions similar to its singular form, but allows the use of multiple
18938 statistics per bin. Those statistics can be mapped to multiple bin
18939 aesthetics.")
18940 (license license:gpl3)))
18941
18942 (define-public r-knn-covertree
18943 (package
18944 (name "r-knn-covertree")
18945 (version "1.0")
18946 (source
18947 (origin
18948 (method url-fetch)
18949 (uri (cran-uri "knn.covertree" version))
18950 (sha256
18951 (base32
18952 "0msfcmwydws7q7m5jdb0dxab0nkbl7mq5llg6v3r4qrnlvrdggvz"))))
18953 (properties `((upstream-name . "knn.covertree")))
18954 (build-system r-build-system)
18955 (propagated-inputs
18956 `(("r-matrix" ,r-matrix)
18957 ("r-rcpp" ,r-rcpp)
18958 ("r-rcppeigen" ,r-rcppeigen)))
18959 (home-page "https://github.com/flying-sheep/knn.covertree")
18960 (synopsis "Accurate kNN Implementation with multiple distance measures")
18961 (description
18962 "Similarly to the FNN package, this package allows calculation of the k
18963 nearest neighbors (kNN) of a data matrix. The implementation is based on
18964 cover trees introduced by Alina Beygelzimer, Sham Kakade, and John
18965 Langford (2006) @url{doi:10.1145/1143844.1143857}.")
18966 (license license:agpl3+)))
18967
18968 (define-public r-poibin
18969 (package
18970 (name "r-poibin")
18971 (version "1.5")
18972 (source
18973 (origin
18974 (method url-fetch)
18975 (uri (cran-uri "poibin" version))
18976 (sha256
18977 (base32
18978 "1sxryvwwz6ldsnkzdy56p8c895s5yvpcai9ndyjv1x5q3l05wf9v"))))
18979 (properties `((upstream-name . "poibin")))
18980 (build-system r-build-system)
18981 (home-page "https://cran.r-project.org/web/packages/poibin/")
18982 (synopsis "Poisson binomial distribution")
18983 (description
18984 "This package provides an implementation of both the exact and
18985 approximation methods for computing the @dfn{cumulative distribution
18986 function} (CDF) of the Poisson binomial distribution. It also provides the
18987 @dfn{probability mass function} (PMF), quantile function, and random number
18988 generation for the Poisson binomial distribution.")
18989 (license license:gpl2)))
18990
18991 (define-public r-diagram
18992 (package
18993 (name "r-diagram")
18994 (version "1.6.4")
18995 (source
18996 (origin
18997 (method url-fetch)
18998 (uri (cran-uri "diagram" version))
18999 (sha256
19000 (base32
19001 "0f6ffprn5k0ir1s7m9s7izc64aa17r3gnygagz5bihrlsvawaavw"))))
19002 (properties `((upstream-name . "diagram")))
19003 (build-system r-build-system)
19004 (propagated-inputs
19005 `(("r-shape" ,r-shape)))
19006 (home-page "https://cran.r-project.org/web/packages/diagram/")
19007 (synopsis "Visualize simple graphs (networks) and plot flow diagrams")
19008 (description
19009 "This package provides tools to visualize simple graphs (networks) based
19010 on a transition matrix, utilities to plot flow diagrams, visualizing webs,
19011 electrical networks, etc. It also includes supporting material for the book
19012 \"A practical guide to ecological modelling - using R as a simulation
19013 platform\" by Karline Soetaert and Peter M.J. Herman (2009) and the book
19014 \"Solving Differential Equations in R\" by Karline Soetaert, Jeff Cash and
19015 Francesca Mazzia (2012).")
19016 (license license:gpl2+)))
19017
19018 (define-public r-lim
19019 (package
19020 (name "r-lim")
19021 (version "1.4.6")
19022 (source
19023 (origin
19024 (method url-fetch)
19025 (uri (cran-uri "LIM" version))
19026 (sha256
19027 (base32
19028 "03x1gnm06bw1wrzc01110bjzd2mvjdzbc2mbrazh22jrmb32w5d8"))))
19029 (properties `((upstream-name . "LIM")))
19030 (build-system r-build-system)
19031 (propagated-inputs
19032 `(("r-diagram" ,r-diagram)
19033 ("r-limsolve" ,r-limsolve)))
19034 (home-page "https://cran.r-project.org/web/packages/LIM/")
19035 (synopsis "Linear inverse model examples and solution methods")
19036 (description
19037 "This package provides functions that read and solve linear inverse
19038 problems (food web problems, linear programming problems).")
19039 (license license:gpl2+)))
19040
19041 (define-public r-shinycssloaders
19042 (package
19043 (name "r-shinycssloaders")
19044 (version "0.3")
19045 (source
19046 (origin
19047 (method url-fetch)
19048 (uri (cran-uri "shinycssloaders" version))
19049 (sha256
19050 (base32
19051 "1gzq1lhcnhqd145ys3ixf0l13l560fiqr2sc3m2nrijwxlgcw54d"))))
19052 (properties
19053 `((upstream-name . "shinycssloaders")))
19054 (build-system r-build-system)
19055 (propagated-inputs
19056 `(("r-digest" ,r-digest)
19057 ("r-glue" ,r-glue)
19058 ("r-shiny" ,r-shiny)))
19059 (home-page "https://github.com/andrewsali/shinycssloaders")
19060 (synopsis "Add CSS loading animations to Shiny outputs")
19061 (description
19062 "This package provides tools to create a lightweight Shiny wrapper for
19063 the css-loaders created by Luke Hass
19064 @url{https://github.com/lukehaas/css-loaders}. Wrapping a Shiny output will
19065 automatically show a loader when the output is (re)calculating.")
19066 (license license:gpl3)))
19067
19068 (define-public r-rsvg
19069 (package
19070 (name "r-rsvg")
19071 (version "1.3")
19072 (source
19073 (origin
19074 (method url-fetch)
19075 (uri (cran-uri "rsvg" version))
19076 (sha256
19077 (base32
19078 "11mccgf6hfskg45wqc114sx3qy2r494y6axdf73z6xwhs1wpm97g"))))
19079 (properties `((upstream-name . "rsvg")))
19080 (build-system r-build-system)
19081 (inputs
19082 `(("librsvg" ,librsvg)
19083 ("zlib" ,zlib)))
19084 (native-inputs
19085 `(("pkg-config" ,pkg-config)))
19086 (home-page "https://github.com/jeroen/rsvg#readme")
19087 (synopsis "Render SVG images into PDF, PNG, PostScript, or Bitmap arrays")
19088 (description
19089 "This package allows you to render vector-based SVG images into
19090 high-quality custom-size bitmap arrays using the librsvg2 library. The
19091 resulting bitmap can be written to e.g. PNG, JPEG or WEBP format. In
19092 addition, the package can convert images directly to various formats such as
19093 PDF or PostScript.")
19094 (license license:expat)))
19095
19096 (define-public r-influencer
19097 (package
19098 (name "r-influencer")
19099 (version "0.1.0")
19100 (source
19101 (origin
19102 (method url-fetch)
19103 (uri (cran-uri "influenceR" version))
19104 (sha256
19105 (base32
19106 "12p9362hkndlnz1rd8j2rykg57kbm6l7ks60by3rd25xg50k5jag"))))
19107 (properties `((upstream-name . "influenceR")))
19108 (build-system r-build-system)
19109 (propagated-inputs
19110 `(("r-igraph" ,r-igraph)
19111 ("r-matrix" ,r-matrix)))
19112 (home-page "https://github.com/rcc-uchicago/influenceR")
19113 (synopsis "Tools to quantify structural importance of nodes in a network")
19114 (description
19115 "This package provides functionality to compute various node centrality
19116 measures on networks. Included are functions to compute betweenness
19117 centrality (by utilizing Madduri and Bader's SNAP library), implementations of
19118 Burt's constraint and @dfn{effective network size} (ENS) metrics, Borgatti's
19119 algorithm to identify key players, and Valente's bridging metric. The
19120 betweenness, Key Players, and bridging implementations are parallelized with
19121 OpenMP.")
19122 (license license:gpl2)))
19123
19124 (define-public r-emplik
19125 (package
19126 (name "r-emplik")
19127 (version "1.0-4.3")
19128 (source
19129 (origin
19130 (method url-fetch)
19131 (uri (cran-uri "emplik" version))
19132 (sha256
19133 (base32
19134 "1g4hz85bvw29c77zs0ig487z92jjl682vv457x81l077h0psvk7c"))))
19135 (properties `((upstream-name . "emplik")))
19136 (build-system r-build-system)
19137 (propagated-inputs
19138 `(("r-quantreg" ,r-quantreg)))
19139 (home-page "https://www.ms.uky.edu/~mai/EmpLik.html")
19140 (synopsis "Empirical likelihood ratio for censored/truncated data")
19141 (description
19142 "This package provides empirical likelihood ratio tests for
19143 means/quantiles/hazards from possibly censored and/or truncated data. It also
19144 does regression.")
19145 (license license:gpl2+)))
19146
19147 (define-public r-imputeyn
19148 (package
19149 (name "r-imputeyn")
19150 (version "1.3")
19151 (source
19152 (origin
19153 (method url-fetch)
19154 (uri (cran-uri "imputeYn" version))
19155 (sha256
19156 (base32
19157 "1b21w1aa5f7yiq8k0wa86wvbg4ij7f6ldwn6asfqwb0b90rvsgvs"))))
19158 (properties `((upstream-name . "imputeYn")))
19159 (build-system r-build-system)
19160 (propagated-inputs
19161 `(("r-boot" ,r-boot)
19162 ("r-emplik" ,r-emplik)
19163 ("r-mvtnorm" ,r-mvtnorm)
19164 ("r-quadprog" ,r-quadprog)
19165 ("r-survival" ,r-survival)))
19166 (home-page "https://cran.r-project.org/web/packages/imputeYn/")
19167 (synopsis "Impute last largest censored observation under weighted least squares")
19168 (description
19169 "This package allows for the imputation of the last largest censored
19170 observantions. This method brings less bias and more efficient estimates for
19171 AFT models.")
19172 (license license:gpl2)))
19173
19174 (define-public r-adapenetclass
19175 (package
19176 (name "r-adapenetclass")
19177 (version "1.2")
19178 (source
19179 (origin
19180 (method url-fetch)
19181 (uri (cran-uri "AdapEnetClass" version))
19182 (sha256
19183 (base32
19184 "01k3mj4g1ckbng7wkzzn9h0k9yf01cpnnkly0sjda574c5jhj0rc"))))
19185 (properties `((upstream-name . "AdapEnetClass")))
19186 (build-system r-build-system)
19187 (propagated-inputs
19188 `(("r-glmnet" ,r-glmnet)
19189 ("r-imputeyn" ,r-imputeyn)
19190 ("r-lars" ,r-lars)
19191 ("r-quadprog" ,r-quadprog)))
19192 (home-page "https://cran.r-project.org/web/packages/AdapEnetClass/")
19193 (synopsis "Class of adaptive elastic net methods for censored data")
19194 (description
19195 "This package provides methods for variable selection for AFT models.")
19196 (license license:gpl2)))
19197
19198 (define-public r-flock
19199 (package
19200 (name "r-flock")
19201 (version "0.7")
19202 (source
19203 (origin
19204 (method url-fetch)
19205 (uri (cran-uri "flock" version))
19206 (sha256
19207 (base32
19208 "1zg93p74icj4bhxnmnssj2xp6vw4yaksyavq03497v33xfpdxss7"))))
19209 (properties `((upstream-name . "flock")))
19210 (build-system r-build-system)
19211 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
19212 (home-page "https://cran.r-project.org/web/packages/flock/")
19213 (synopsis "Process synchronization using file locks")
19214 (description
19215 "This package implements synchronization between R processes (spawned by
19216 using the @code{parallel} package for instance) using file locks. It supports
19217 both exclusive and shared locking.")
19218 (license license:asl2.0)))
19219
19220 (define-public r-archivist
19221 (package
19222 (name "r-archivist")
19223 (version "2.3.4")
19224 (source
19225 (origin
19226 (method url-fetch)
19227 (uri (cran-uri "archivist" version))
19228 (sha256
19229 (base32
19230 "1i11hrcq1910jgd6diw6h3sxx624v57zjianm49pqvb2dvd0b8y7"))))
19231 (properties `((upstream-name . "archivist")))
19232 (build-system r-build-system)
19233 (propagated-inputs
19234 `(("r-dbi" ,r-dbi)
19235 ("r-digest" ,r-digest)
19236 ("r-flock" ,r-flock)
19237 ("r-httr" ,r-httr)
19238 ("r-lubridate" ,r-lubridate)
19239 ("r-magrittr" ,r-magrittr)
19240 ("r-rcurl" ,r-rcurl)
19241 ("r-rsqlite" ,r-rsqlite)))
19242 (home-page "https://pbiecek.github.io/archivist/")
19243 (synopsis "Tools for storing, restoring and searching for R objects")
19244 (description
19245 "Data exploration and modelling is a process in which a lot of data
19246 artifacts are produced. Artifacts like: subsets, data aggregates, plots,
19247 statistical models, different versions of data sets and different versions of
19248 results. Archivist helps to store and manage artifacts created in R. It
19249 allows you to store selected artifacts as binary files together with their
19250 metadata and relations. Archivist allows sharing artifacts with others. It
19251 can look for already created artifacts by using its class, name, date of the
19252 creation or other properties. It also makes it easy to restore such
19253 artifacts.")
19254 (license license:gpl2)))
19255
19256 (define-public r-versions
19257 (package
19258 (name "r-versions")
19259 (version "0.3")
19260 (source
19261 (origin
19262 (method url-fetch)
19263 (uri (cran-uri "versions" version))
19264 (sha256
19265 (base32
19266 "0zm49j785dgv7fyr1yl9q5f0dsk8hhpim5q5bpkgrkzv7pwjribd"))))
19267 (properties `((upstream-name . "versions")))
19268 (build-system r-build-system)
19269 (home-page "https://cran.r-project.org/web/packages/versions/")
19270 (synopsis "Query and install specific versions of CRAN packages")
19271 (description
19272 "This package allows you to install specified versions of R packages
19273 hosted on CRAN and provides functions to list available versions and the
19274 versions of currently installed packages.")
19275 (license license:bsd-3)))
19276
19277 (define-public r-adapr
19278 (package
19279 (name "r-adapr")
19280 (version "2.0.0")
19281 (source
19282 (origin
19283 (method url-fetch)
19284 (uri (cran-uri "adapr" version))
19285 (sha256
19286 (base32
19287 "1s57jdbi5pik56xjz1d4438ax6cywg2yq2s47h5g6wrwvpgr1qfw"))))
19288 (properties `((upstream-name . "adapr")))
19289 (build-system r-build-system)
19290 (propagated-inputs
19291 `(("r-archivist" ,r-archivist)
19292 ("r-devtools" ,r-devtools)
19293 ("r-digest" ,r-digest)
19294 ("r-doparallel" ,r-doparallel)
19295 ("r-gdata" ,r-gdata)
19296 ("r-ggplot2" ,r-ggplot2)
19297 ("r-git2r" ,r-git2r)
19298 ("r-igraph" ,r-igraph)
19299 ("r-knitr" ,r-knitr)
19300 ("r-plotly" ,r-plotly)
19301 ("r-plyr" ,r-plyr)
19302 ("r-rmarkdown" ,r-rmarkdown)
19303 ("r-shiny" ,r-shiny)
19304 ("r-shinydashboard" ,r-shinydashboard)
19305 ("r-versions" ,r-versions)))
19306 (home-page "https://cran.r-project.org/web/packages/adapr/")
19307 (synopsis "Implementation of an accountable data analysis process")
19308 (description
19309 "This package tracks reading and writing within R scripts that are
19310 organized into a directed acyclic graph. It contains an interactive Shiny
19311 application @code{adaprApp()}. It uses Git and file hashes to track version
19312 histories of inputs and outputs.")
19313 (license license:lgpl2.0)))
19314
19315 (define-public r-adapsamp
19316 (package
19317 (name "r-adapsamp")
19318 (version "1.1.1")
19319 (source
19320 (origin
19321 (method url-fetch)
19322 (uri (cran-uri "AdapSamp" version))
19323 (sha256
19324 (base32
19325 "1jayjrsiib2ij4rxxj59g71r3xhzl5yqh0lhi8k6cfy03i7dkvis"))))
19326 (properties `((upstream-name . "AdapSamp")))
19327 (build-system r-build-system)
19328 (propagated-inputs `(("r-pracma" ,r-pracma)))
19329 (home-page "https://cran.r-project.org/web/packages/AdapSamp/")
19330 (synopsis "Adaptive sampling algorithms")
19331 (description
19332 "For distributions whose probability density functions are log-concave,
19333 the adaptive rejection sampling algorithm can be used to build envelope
19334 functions for sampling. For others, the modified adaptive rejection sampling
19335 algorithm, the concave-convex adaptive rejection sampling algorithm, and the
19336 adaptive slice sampling algorithm can be used. This R package mainly includes
19337 these four functions: @code{rARS()}, @code{rMARS()}, @code{rCCARS()}, and
19338 @code{rASS()}. These functions can realize sampling based on the algorithms
19339 above.")
19340 (license license:gpl2)))
19341
19342 (define-public r-adaptalint
19343 (package
19344 (name "r-adaptalint")
19345 (version "0.2.4")
19346 (source
19347 (origin
19348 (method url-fetch)
19349 (uri (cran-uri "adaptalint" version))
19350 (sha256
19351 (base32
19352 "15qdcvnnbgcps8j5k79354wsc9alswijv8lcafg2i3lghaw536yf"))))
19353 (properties `((upstream-name . "adaptalint")))
19354 (build-system r-build-system)
19355 (propagated-inputs
19356 `(("r-dplyr" ,r-dplyr)
19357 ("r-lintr" ,r-lintr)
19358 ("r-purrr" ,r-purrr)))
19359 (home-page "https://cran.r-project.org/web/packages/adaptalint/")
19360 (synopsis "Check R code style")
19361 (description
19362 "This package provides tools to infer the code style (which style rules
19363 are followed and which ones are not) from one package and use it to check
19364 another. This makes it easier to find and correct the most important problems
19365 first.")
19366 (license license:gpl3)))
19367
19368 (define-public r-fracdiff
19369 (package
19370 (name "r-fracdiff")
19371 (version "1.5-1")
19372 (source
19373 (origin
19374 (method url-fetch)
19375 (uri (cran-uri "fracdiff" version))
19376 (sha256
19377 (base32
19378 "1dhfjlhr9sb38qgpsx0sm73l9lgc13d0fk32l7fmjfnalhr3n45q"))))
19379 (properties `((upstream-name . "fracdiff")))
19380 (build-system r-build-system)
19381 (home-page "https://github.com/mmaechler/fracdiff")
19382 (synopsis
19383 "Fractionally differenced ARIMA aka ARFIMA(P,d,q) models")
19384 (description
19385 "This package provides tools for the maximum likelihood estimation of the
19386 parameters of a fractionally differenced ARIMA(p,d,q) model (Haslett and
19387 Raftery, Appl.Statistics, 1989); it includes inference and basic methods.")
19388 (license license:gpl2+)))
19389
19390 (define-public r-forecast
19391 (package
19392 (name "r-forecast")
19393 (version "8.12")
19394 (source
19395 (origin
19396 (method url-fetch)
19397 (uri (cran-uri "forecast" version))
19398 (sha256
19399 (base32
19400 "1ycj5z4wd5a16nlcjy07dqm8jkih240xa02cn4wvysnnhkapyq7b"))))
19401 (properties `((upstream-name . "forecast")))
19402 (build-system r-build-system)
19403 (propagated-inputs
19404 `(("r-colorspace" ,r-colorspace)
19405 ("r-fracdiff" ,r-fracdiff)
19406 ("r-ggplot2" ,r-ggplot2)
19407 ("r-lmtest" ,r-lmtest)
19408 ("r-magrittr" ,r-magrittr)
19409 ("r-nnet" ,r-nnet)
19410 ("r-rcpp" ,r-rcpp)
19411 ("r-rcpparmadillo" ,r-rcpparmadillo)
19412 ("r-timedate" ,r-timedate)
19413 ("r-tseries" ,r-tseries)
19414 ("r-urca" ,r-urca)
19415 ("r-zoo" ,r-zoo)))
19416 (native-inputs
19417 `(("r-knitr" ,r-knitr))) ; needed for vignettes
19418 (home-page "https://pkg.robjhyndman.com/forecast/")
19419 (synopsis "Forecasting functions for time series and linear models")
19420 (description
19421 "This package provides methods and tools for displaying and analysing
19422 univariate time series forecasts including exponential smoothing via state
19423 space models and automatic ARIMA modelling.")
19424 (license license:gpl3)))
19425
19426 (define-public r-xmisc
19427 (package
19428 (name "r-xmisc")
19429 (version "0.2.1")
19430 (source
19431 (origin
19432 (method url-fetch)
19433 (uri (cran-uri "Xmisc" version))
19434 (sha256
19435 (base32
19436 "11gwlcyxhz1p50m68cnqrxmisdk99v8vrsbvyr7k67f0kvsznzs1"))))
19437 (properties `((upstream-name . "Xmisc")))
19438 (build-system r-build-system)
19439 (home-page "https://cran.r-project.org/package=Xmisc")
19440 (synopsis
19441 "Xiaobei's miscellaneous classes and functions")
19442 (description
19443 "This package provides Xiaobei's miscellaneous classes and functions,
19444 which are useful when developing R packages for @dfn{object oriented
19445 programming} (OOP) using R Reference Class.")
19446 (license license:gpl2+)))
19447
19448 (define-public r-proxyc
19449 (package
19450 (name "r-proxyc")
19451 (version "0.1.5")
19452 (source
19453 (origin
19454 (method url-fetch)
19455 (uri (cran-uri "proxyC" version))
19456 (sha256
19457 (base32
19458 "159bc42x4shm6n3rh9fc8ziv3ivq0ipmpbasrh279hhn1prc8gg6"))))
19459 (properties `((upstream-name . "proxyC")))
19460 (build-system r-build-system)
19461 (propagated-inputs
19462 `(("r-matrix" ,r-matrix)
19463 ("r-rcpp" ,r-rcpp)
19464 ("r-rcpparmadillo" ,r-rcpparmadillo)
19465 ("r-rcppparallel" ,r-rcppparallel)))
19466 (home-page "https://cran.r-project.org/package=proxyC")
19467 (synopsis "Compute proximity in large sparse matrices")
19468 (description
19469 "This package provides efficient tools to compute the proximity between
19470 rows or columns of large matrices. Functions are optimised for large sparse
19471 matrices using the Armadillo and Intel TBB libraries. Among several built-in
19472 similarity/distance measures, computation of correlation, cosine similarity
19473 and Euclidean distance is particularly fast.")
19474 (license license:gpl3)))
19475
19476 (define-public r-isocodes
19477 (package
19478 (name "r-isocodes")
19479 (version "2020.03.16")
19480 (source
19481 (origin
19482 (method url-fetch)
19483 (uri (cran-uri "ISOcodes" version))
19484 (sha256
19485 (base32
19486 "1hz1sj57qkkkrgn8slsz2n4jv1fkyp40503j9rg30lxy4gmb83hn"))))
19487 (properties `((upstream-name . "ISOcodes")))
19488 (build-system r-build-system)
19489 (home-page "https://cran.r-project.org/package=ISOcodes")
19490 (synopsis "Selected ISO codes")
19491 (description
19492 "This package provides ISO language, territory, currency, script and
19493 character codes. It provides ISO 639 language codes, ISO 3166 territory
19494 codes, ISO 4217 currency codes, ISO 15924 script codes, and the ISO 8859
19495 character codes as well as the UN M.49 area codes.")
19496 (license license:gpl2)))
19497
19498 (define-public r-stopwords
19499 (package
19500 (name "r-stopwords")
19501 (version "1.0")
19502 (source
19503 (origin
19504 (method url-fetch)
19505 (uri (cran-uri "stopwords" version))
19506 (sha256
19507 (base32
19508 "1nmi0bpd0c238g5b8ch1v034m5ng9llhs519cgxdrj3sh9fplwlv"))))
19509 (properties `((upstream-name . "stopwords")))
19510 (build-system r-build-system)
19511 (propagated-inputs `(("r-isocodes" ,r-isocodes)))
19512 (home-page "https://github.com/quanteda/stopwords")
19513 (synopsis "Multilingual stopword lists")
19514 (description
19515 "This package provides multiple sources of stopwords, for use in text
19516 analysis and natural language processing.")
19517 (license license:expat)))
19518
19519 (define-public r-spacyr
19520 (package
19521 (name "r-spacyr")
19522 (version "1.2.1")
19523 (source
19524 (origin
19525 (method url-fetch)
19526 (uri (cran-uri "spacyr" version))
19527 (sha256
19528 (base32
19529 "1b2ccgwsiqkvp7w37x8k7699c676q16vfrybkrfvyczyhki4s6nw"))))
19530 (properties `((upstream-name . "spacyr")))
19531 (build-system r-build-system)
19532 (propagated-inputs
19533 `(("r-data-table" ,r-data-table)
19534 ("r-reticulate" ,r-reticulate)))
19535 (home-page "https://spacyr.quanteda.io")
19536 (synopsis "R wrapper for the spaCy NLP library")
19537 (description
19538 "This package provides an R wrapper to the Python @dfn{natural language
19539 processing} (NLP) library @code{spaCy}, from @url{http://spacy.io}.")
19540 (license license:gpl3)))
19541
19542 (define-public r-snowballc
19543 (package
19544 (name "r-snowballc")
19545 (version "0.7.0")
19546 (source
19547 (origin
19548 (method url-fetch)
19549 (uri (cran-uri "SnowballC" version))
19550 (sha256
19551 (base32
19552 "1wwm71mp4b2mjb5985x782p6xj519dfrpd40qli7lmig6afyw3xi"))))
19553 (properties `((upstream-name . "SnowballC")))
19554 (build-system r-build-system)
19555 (home-page "https://r-forge.r-project.org/projects/r-temis/")
19556 (synopsis "Snowball stemmers based on the C libstemmer UTF-8 library")
19557 (description
19558 "This package provides an R interface to the C @code{libstemmer} library
19559 that implements Porter's word stemming algorithm for collapsing words to a
19560 common root to aid comparison of vocabulary. Currently supported languages
19561 are Danish, Dutch, English, Finnish, French, German, Hungarian, Italian,
19562 Norwegian, Portuguese, Romanian, Russian, Spanish, Swedish and Turkish.")
19563 (license license:bsd-3)))
19564
19565 (define-public r-quanteda
19566 (package
19567 (name "r-quanteda")
19568 (version "2.0.1")
19569 (source
19570 (origin
19571 (method url-fetch)
19572 (uri (cran-uri "quanteda" version))
19573 (sha256
19574 (base32
19575 "0pym6vdzqbkyj87m3pla229092xvvx4j830x67qflxzzdmc9dzhz"))))
19576 (properties `((upstream-name . "quanteda")))
19577 (build-system r-build-system)
19578 (propagated-inputs
19579 `(("r-data-table" ,r-data-table)
19580 ("r-extrafont" ,r-extrafont)
19581 ("r-fastmatch" ,r-fastmatch)
19582 ("r-ggplot2" ,r-ggplot2)
19583 ("r-ggrepel" ,r-ggrepel)
19584 ("r-jsonlite" ,r-jsonlite)
19585 ("r-magrittr" ,r-magrittr)
19586 ("r-matrix" ,r-matrix)
19587 ("r-network" ,r-network)
19588 ("r-proxyc" ,r-proxyc)
19589 ("r-rcpp" ,r-rcpp)
19590 ("r-rcpparmadillo" ,r-rcpparmadillo)
19591 ("r-rcppparallel" ,r-rcppparallel)
19592 ("r-sna" ,r-sna)
19593 ("r-snowballc" ,r-snowballc)
19594 ("r-stopwords" ,r-stopwords)
19595 ("r-stringi" ,r-stringi)
19596 ("r-xml2" ,r-xml2)
19597 ("r-yaml" ,r-yaml)))
19598 (native-inputs
19599 `(("r-knitr" ,r-knitr)))
19600 (home-page "https://quanteda.io")
19601 (synopsis "Quantitative analysis of textual data")
19602 (description
19603 "This package provides a fast, flexible, and comprehensive framework for
19604 quantitative text analysis in R. It provides functionality for corpus
19605 management, creating and manipulating tokens and ngrams, exploring keywords in
19606 context, forming and manipulating sparse matrices of documents by features and
19607 feature co-occurrences, analyzing keywords, computing feature similarities and
19608 distances, applying content dictionaries, applying supervised and unsupervised
19609 machine learning, visually representing text and text analyses, and more.")
19610 (license license:gpl3)))
19611
19612 (define-public r-topicmodels
19613 (package
19614 (name "r-topicmodels")
19615 (version "0.2-9")
19616 (source
19617 (origin
19618 (method url-fetch)
19619 (uri (cran-uri "topicmodels" version))
19620 (sha256
19621 (base32
19622 "1757r5x8bsl4dk106xg6481mvdkdz9vwg87n7rpbvdkavsvhyxs0"))))
19623 (properties `((upstream-name . "topicmodels")))
19624 (build-system r-build-system)
19625 (native-inputs
19626 `(("gsl" ,gsl)))
19627 (propagated-inputs
19628 `(("r-modeltools" ,r-modeltools)
19629 ("r-slam" ,r-slam)
19630 ("r-tm" ,r-tm)))
19631 (home-page "https://cran.r-project.org/package=topicmodels")
19632 (synopsis "Topic models")
19633 (description
19634 "This package provides an interface to the C code for @dfn{Latent
19635 Dirichlet Allocation} (LDA) models and @dfn{Correlated Topics Models} (CTM) by
19636 David M. Blei and co-authors and the C++ code for fitting LDA models using
19637 Gibbs sampling by Xuan-Hieu Phan and co-authors.")
19638 (license license:gpl2)))
19639
19640 (define-public r-stm
19641 (package
19642 (name "r-stm")
19643 (version "1.3.5")
19644 (source
19645 (origin
19646 (method url-fetch)
19647 (uri (cran-uri "stm" version))
19648 (sha256
19649 (base32
19650 "1yyfxaxqc6yq0yq68zhdnhpwpvsyp71dlmivn7zxixfmp932s6cn"))))
19651 (properties `((upstream-name . "stm")))
19652 (build-system r-build-system)
19653 (propagated-inputs
19654 `(("r-data-table" ,r-data-table)
19655 ("r-glmnet" ,r-glmnet)
19656 ("r-lda" ,r-lda)
19657 ("r-matrix" ,r-matrix)
19658 ("r-matrixstats" ,r-matrixstats)
19659 ("r-quadprog" ,r-quadprog)
19660 ("r-quanteda" ,r-quanteda)
19661 ("r-rcpp" ,r-rcpp)
19662 ("r-rcpparmadillo" ,r-rcpparmadillo)
19663 ("r-slam" ,r-slam)
19664 ("r-stringr" ,r-stringr)))
19665 (home-page "http://www.structuraltopicmodel.com/")
19666 (synopsis "Estimation of the Structural Topic Model")
19667 (description
19668 "The @dfn{Structural Topic Model} (STM) allows researchers to estimate
19669 topic models with document-level covariates. The package also includes tools
19670 for model selection, visualization, and estimation of topic-covariate
19671 regressions.")
19672 (license license:expat)))
19673
19674 (define-public r-polycor
19675 (package
19676 (name "r-polycor")
19677 (version "0.7-10")
19678 (source
19679 (origin
19680 (method url-fetch)
19681 (uri (cran-uri "polycor" version))
19682 (sha256
19683 (base32
19684 "0wzwzklflbhi8sv9m7ijwr16v9zmkk0j0v4pbcpf32f8lbn3psna"))))
19685 (properties `((upstream-name . "polycor")))
19686 (build-system r-build-system)
19687 (propagated-inputs
19688 `(("r-matrix" ,r-matrix)
19689 ("r-mvtnorm" ,r-mvtnorm)))
19690 (home-page "https://r-forge.r-project.org/projects/polycor/")
19691 (synopsis "Polychoric and polyserial correlations")
19692 (description
19693 "This package provides tools to compute polychoric and polyserial
19694 correlations by quick \"two-step\" methods or ML, optionally with standard
19695 errors; tetrachoric and biserial correlations are special cases.")
19696 (license license:gpl2+)))
19697
19698 (define-public r-msm
19699 (package
19700 (name "r-msm")
19701 (version "1.6.8")
19702 (source
19703 (origin
19704 (method url-fetch)
19705 (uri (cran-uri "msm" version))
19706 (sha256
19707 (base32
19708 "1d32y8f0vb2dfv3999liigpns788j145nrvd1xpxb9i2lsg8mwgk"))))
19709 (properties `((upstream-name . "msm")))
19710 (build-system r-build-system)
19711 (propagated-inputs
19712 `(("r-expm" ,r-expm)
19713 ("r-mvtnorm" ,r-mvtnorm)
19714 ("r-survival" ,r-survival)))
19715 (home-page "https://github.com/chjackson/msm")
19716 (synopsis "Multi-state Markov and hidden Markov models in continuous time")
19717 (description
19718 "This package provides functions for fitting continuous-time Markov and
19719 hidden Markov multi-state models to longitudinal data. It was designed for
19720 processes observed at arbitrary times in continuous time (panel data) but some
19721 other observation schemes are supported. Both Markov transition rates and the
19722 hidden Markov output process can be modelled in terms of covariates, which may
19723 be constant or piecewise-constant in time.")
19724 (license license:gpl2+)))
19725
19726 (define-public r-ltm
19727 (package
19728 (name "r-ltm")
19729 (version "1.1-1")
19730 (source
19731 (origin
19732 (method url-fetch)
19733 (uri (cran-uri "ltm" version))
19734 (sha256
19735 (base32
19736 "1qrgzwx5l58qf5rfp1knxc84r0g943q5sdr3ky74zzwpnmrf2vf7"))))
19737 (properties `((upstream-name . "ltm")))
19738 (build-system r-build-system)
19739 (propagated-inputs
19740 `(("r-mass" ,r-mass)
19741 ("r-msm" ,r-msm)
19742 ("r-polycor" ,r-polycor)))
19743 (home-page "https://github.com/drizopoulos/ltm")
19744 (synopsis "Latent trait models under IRT")
19745 (description
19746 "This is a package supporting the analysis of multivariate dichotomous
19747 and polytomous data using latent trait models under the Item Response Theory
19748 approach. It includes the Rasch, the Two-Parameter Logistic, the Birnbaum's
19749 Three-Parameter, the Graded Response, and the Generalized Partial Credit
19750 Models.")
19751 (license license:gpl2+)))
19752
19753 (define-public r-mi
19754 (package
19755 (name "r-mi")
19756 (version "1.0")
19757 (source
19758 (origin
19759 (method url-fetch)
19760 (uri (cran-uri "mi" version))
19761 (sha256
19762 (base32
19763 "1h47k5mpbvhid83277dvvj2di493bgzz9iarpyv3r30y219l7x1l"))))
19764 (properties `((upstream-name . "mi")))
19765 (build-system r-build-system)
19766 (propagated-inputs
19767 `(("r-arm" ,r-arm)
19768 ("r-matrix" ,r-matrix)))
19769 (home-page "http://www.stat.columbia.edu/~gelman/")
19770 (synopsis "Missing data imputation and model checking")
19771 (description
19772 "This package provides functions for data manipulation, imputing missing
19773 values in an approximate Bayesian framework, diagnostics of the models used to
19774 generate the imputations, confidence-building mechanisms to validate some of
19775 the assumptions of the imputation algorithm, and functions to analyze multiply
19776 imputed data sets with the appropriate degree of sampling uncertainty.")
19777 (license license:gpl2+)))
19778
19779 (define-public r-matrixcalc
19780 (package
19781 (name "r-matrixcalc")
19782 (version "1.0-3")
19783 (source
19784 (origin
19785 (method url-fetch)
19786 (uri (cran-uri "matrixcalc" version))
19787 (sha256
19788 (base32
19789 "1c4w9dhi5w98qj1wwh9bbpnfk39rhiwjbanalr8bi5nmxkpcmrhp"))))
19790 (properties `((upstream-name . "matrixcalc")))
19791 (build-system r-build-system)
19792 (home-page "https://cran.r-project.org/web/packages/matrixcalc/")
19793 (synopsis "Collection of functions for matrix calculations")
19794 (description
19795 "This package provides a collection of functions to support matrix
19796 calculations for probability, econometric and numerical analysis. There are
19797 additional functions that are comparable to APL functions which are useful for
19798 actuarial models such as pension mathematics.")
19799 (license license:gpl2+)))
19800
19801 (define-public r-sem
19802 (package
19803 (name "r-sem")
19804 (version "3.1-9")
19805 (source
19806 (origin
19807 (method url-fetch)
19808 (uri (cran-uri "sem" version))
19809 (sha256
19810 (base32
19811 "1f9c6g6pfx66gd2pappcsqh484ah6a0x4z47hpd46rah0817hcsa"))))
19812 (properties `((upstream-name . "sem")))
19813 (build-system r-build-system)
19814 (propagated-inputs
19815 `(("r-boot" ,r-boot)
19816 ("r-mass" ,r-mass)
19817 ("r-matrixcalc" ,r-matrixcalc)
19818 ("r-mi" ,r-mi)))
19819 (home-page "https://cran.r-project.org/package=sem")
19820 (synopsis "Structural equation models")
19821 (description
19822 "This package provides functions for fitting general linear structural
19823 equation models (with observed and latent variables) using the RAM approach,
19824 and for fitting structural equations in observed-variable models by two-stage
19825 least squares.")
19826 (license license:gpl2+)))
19827
19828 (define-public r-semtools
19829 (package
19830 (name "r-semtools")
19831 (version "0.5-2")
19832 (source
19833 (origin
19834 (method url-fetch)
19835 (uri (cran-uri "semTools" version))
19836 (sha256
19837 (base32
19838 "1zj841pszfsikzp82cmh463qyc4xhdrqjqcnhc2r8mcflv12irv6"))))
19839 (properties `((upstream-name . "semTools")))
19840 (build-system r-build-system)
19841 (propagated-inputs
19842 `(("r-lavaan" ,r-lavaan)))
19843 (home-page "https://github.com/simsem/semTools/wiki")
19844 (synopsis "Useful tools for structural equation modeling")
19845 (description
19846 "This package provides useful tools for structural equation modeling.")
19847 (license license:gpl2+)))
19848
19849 (define-public r-regsem
19850 (package
19851 (name "r-regsem")
19852 (version "1.5.2")
19853 (source
19854 (origin
19855 (method url-fetch)
19856 (uri (cran-uri "regsem" version))
19857 (sha256
19858 (base32
19859 "0ch057010xfsw0nqcsarzakdbiplvxaldyqlbbacspqs65ax1yk7"))))
19860 (properties `((upstream-name . "regsem")))
19861 (build-system r-build-system)
19862 (propagated-inputs
19863 `(("r-lavaan" ,r-lavaan)
19864 ("r-rcpp" ,r-rcpp)
19865 ("r-rcpparmadillo" ,r-rcpparmadillo)
19866 ("r-rsolnp" ,r-rsolnp)))
19867 (home-page "https://cran.r-project.org/package=regsem")
19868 (synopsis "Regularized structural equation modeling")
19869 (description
19870 "This package uses both ridge and lasso penalties (and extensions) to
19871 penalize specific parameters in structural equation models. The package
19872 offers additional cost functions, cross validation, and other extensions
19873 beyond traditional structural equation models. It also contains a function to
19874 perform @dfn{exploratory mediation} (XMed).")
19875 (license license:gpl2+)))
19876
19877 (define-public r-stanheaders
19878 (package
19879 (name "r-stanheaders")
19880 (version "2.19.2")
19881 (source
19882 (origin
19883 (method url-fetch)
19884 (uri (cran-uri "StanHeaders" version))
19885 (sha256
19886 (base32
19887 "0cmk0fzczx7dcywcw1dhm6gfq84qlsx77qrsk4z3bf3dhr4bznam"))))
19888 (properties `((upstream-name . "StanHeaders")))
19889 (build-system r-build-system)
19890 (inputs `(("pandoc" ,ghc-pandoc)))
19891 (native-inputs
19892 `(("gfortran" ,gfortran)
19893 ("r-knitr" ,r-knitr))) ; for vignettes
19894 (home-page "https://mc-stan.org/")
19895 (synopsis "C++ header files for Stan")
19896 (description
19897 "The C++ header files of the Stan project are provided by this package.
19898 There is a shared object containing part of the @code{CVODES} library, but it
19899 is not accessible from R. @code{r-stanheaders} is only useful for developers
19900 who want to utilize the @code{LinkingTo} directive of their package's
19901 DESCRIPTION file to build on the Stan library without incurring unnecessary
19902 dependencies.
19903
19904 The Stan project develops a probabilistic programming language that implements
19905 full or approximate Bayesian statistical inference via Markov Chain Monte
19906 Carlo or variational methods and implements (optionally penalized) maximum
19907 likelihood estimation via optimization. The Stan library includes an advanced
19908 automatic differentiation scheme, templated statistical and linear algebra
19909 functions that can handle the automatically differentiable scalar types (and
19910 doubles, ints, etc.), and a parser for the Stan language. The @code{r-rstan}
19911 package provides user-facing R functions to parse, compile, test, estimate,
19912 and analyze Stan models.")
19913 (license license:bsd-3)))
19914
19915 (define-public r-rpf
19916 (package
19917 (name "r-rpf")
19918 (version "1.0.3")
19919 (source
19920 (origin
19921 (method url-fetch)
19922 (uri (cran-uri "rpf" version))
19923 (sha256
19924 (base32
19925 "1i2kqd7nx55nn35qnw89xmnqk23x9c8xhkh736c2xg7k2ai84ybl"))))
19926 (properties `((upstream-name . "rpf")))
19927 (build-system r-build-system)
19928 (propagated-inputs
19929 `(("r-lifecycle" ,r-lifecycle)
19930 ("r-mvtnorm" ,r-mvtnorm)
19931 ("r-rcpp" ,r-rcpp)
19932 ("r-rcppeigen" ,r-rcppeigen)))
19933 (home-page "https://github.com/jpritikin/rpf")
19934 (synopsis "Response probability functions")
19935 (description
19936 "The purpose of this package is to factor out logic and math common to
19937 Item Factor Analysis fitting, diagnostics, and analysis. It is envisioned as
19938 core support code suitable for more specialized IRT packages to build upon.
19939 Complete access to optimized C functions is made available with
19940 @code{R_RegisterCCallable()}.")
19941 (license license:gpl3+)))
19942
19943 (define-public r-openmx
19944 (package
19945 (name "r-openmx")
19946 (version "2.17.3")
19947 (source
19948 (origin
19949 (method url-fetch)
19950 (uri (cran-uri "OpenMx" version))
19951 (sha256
19952 (base32
19953 "1s2pcg281ag3qz2wz8yi826f2d3kj3qg916js7zz0nsrljcyv5bc"))))
19954 (properties `((upstream-name . "OpenMx")))
19955 (build-system r-build-system)
19956 (propagated-inputs
19957 `(("r-bh" ,r-bh)
19958 ("r-digest" ,r-digest)
19959 ("r-mass" ,r-mass)
19960 ("r-matrix" ,r-matrix)
19961 ("r-rcpp" ,r-rcpp)
19962 ("r-rcppeigen" ,r-rcppeigen)
19963 ("r-rpf" ,r-rpf)
19964 ("r-stanheaders" ,r-stanheaders)))
19965 (native-inputs `(("gfortran" ,gfortran)))
19966 (home-page "http://openmx.ssri.psu.edu")
19967 (synopsis "Extended structural equation modelling")
19968 (description
19969 "This package allows for the estimation of a wide variety of advanced
19970 multivariate statistical models. It consists of a library of functions and
19971 optimizers that allow you to quickly and flexibly define an SEM model and
19972 estimate parameters given observed data.")
19973 (license license:asl2.0)))
19974
19975 (define-public r-kutils
19976 (package
19977 (name "r-kutils")
19978 (version "1.69")
19979 (source
19980 (origin
19981 (method url-fetch)
19982 (uri (cran-uri "kutils" version))
19983 (sha256
19984 (base32
19985 "12pg26a85h0jxlfcyai68dbh4bq1gnq8v1ngi8k9qvafbrpc6gx8"))))
19986 (properties `((upstream-name . "kutils")))
19987 (build-system r-build-system)
19988 (propagated-inputs
19989 `(("r-foreign" ,r-foreign)
19990 ("r-lavaan" ,r-lavaan)
19991 ("r-openxlsx" ,r-openxlsx)
19992 ("r-plyr" ,r-plyr)
19993 ("r-runit" ,r-runit)
19994 ("r-xtable" ,r-xtable)))
19995 (home-page "https://cran.r-project.org/package=kutils")
19996 (synopsis "Project management tools")
19997 (description
19998 "This package provides tools for data importation, recoding, and
19999 inspection. There are functions to create new project folders, R code
20000 templates, create uniquely named output directories, and to quickly obtain a
20001 visual summary for each variable in a data frame. The main feature here is
20002 the systematic implementation of the \"variable key\" framework for data
20003 importation and recoding.")
20004 (license license:gpl2)))
20005
20006 (define-public r-rockchalk
20007 (package
20008 (name "r-rockchalk")
20009 (version "1.8.144")
20010 (source
20011 (origin
20012 (method url-fetch)
20013 (uri (cran-uri "rockchalk" version))
20014 (sha256
20015 (base32
20016 "07dp1n155b9gfvk8l30h6bhjbhbylsjxfzns08mryn4mxj3nqpnb"))))
20017 (properties `((upstream-name . "rockchalk")))
20018 (build-system r-build-system)
20019 (propagated-inputs
20020 `(("r-cardata" ,r-cardata)
20021 ("r-kutils" ,r-kutils)
20022 ("r-lme4" ,r-lme4)
20023 ("r-mass" ,r-mass)))
20024 (home-page "https://cran.r-project.org/package=rockchalk")
20025 (synopsis "Regression estimation and presentation")
20026 (description
20027 "This package provides a collection of functions for interpretation and
20028 presentation of regression analysis. These functions are used to produce the
20029 statistics lectures in @url{http://pj.freefaculty.org/guides}. The package
20030 includes regression diagnostics, regression tables, and plots of interactions
20031 and \"moderator\" variables. The emphasis is on \"mean-centered\" and
20032 \"residual-centered\" predictors. The vignette @code{rockchalk} offers a
20033 fairly comprehensive overview.")
20034 (license license:gpl3+)))
20035
20036 (define-public r-lisreltor
20037 (package
20038 (name "r-lisreltor")
20039 (version "0.1.4")
20040 (source
20041 (origin
20042 (method url-fetch)
20043 (uri (cran-uri "lisrelToR" version))
20044 (sha256
20045 (base32
20046 "0zicq0z3hhixan1p1apybnf3v5s6v6ysll4pcz8ivygwr2swv3p5"))))
20047 (properties `((upstream-name . "lisrelToR")))
20048 (build-system r-build-system)
20049 (home-page "https://cran.r-project.org/package=lisrelToR")
20050 (synopsis "Import output from LISREL into R")
20051 (description
20052 "This is an unofficial package aimed at automating the import of LISREL
20053 output in R.")
20054 (license license:gpl2)))
20055
20056 (define-public r-bdgraph
20057 (package
20058 (name "r-bdgraph")
20059 (version "2.62")
20060 (source
20061 (origin
20062 (method url-fetch)
20063 (uri (cran-uri "BDgraph" version))
20064 (sha256
20065 (base32
20066 "1b1vfar940swvn3pcil848qsp8ji50fjjll8jjzp6y2adx0f8pby"))))
20067 (properties `((upstream-name . "BDgraph")))
20068 (build-system r-build-system)
20069 (propagated-inputs
20070 `(("r-igraph" ,r-igraph)))
20071 (home-page "https://www.uva.nl/profile/a.mohammadi")
20072 (synopsis "Bayesian structure learning in graphical models")
20073 (description
20074 "This package provides statistical tools for Bayesian structure learning
20075 in undirected graphical models for continuous, discrete, and mixed data. It
20076 uses a trans-dimensional @dfn{Markov Chain Monte Carlo} (MCMC) approach based
20077 on a continuous-time birth-death process.")
20078 (license license:gpl2+)))
20079
20080 (define-public r-d3network
20081 (package
20082 (name "r-d3network")
20083 (version "0.5.2.1")
20084 (source
20085 (origin
20086 (method url-fetch)
20087 (uri (cran-uri "d3Network" version))
20088 (sha256
20089 (base32
20090 "1gh979z9wksyxxxdzlfzibn0ysvf6h1ij7vwpd55fvbwr308syaw"))))
20091 (properties `((upstream-name . "d3Network")))
20092 (build-system r-build-system)
20093 (propagated-inputs
20094 `(("r-plyr" ,r-plyr)
20095 ("r-rjson" ,r-rjson)
20096 ("r-whisker" ,r-whisker)))
20097 (home-page "http://christophergandrud.github.io/d3Network/")
20098 (synopsis "Create D3 JavaScript network, tree, dendrogram, and Sankey graphs")
20099 (description
20100 "This package is intended to make it easy to create D3 JavaScript
20101 network, tree, dendrogram, and Sankey graphs from R using data frames.")
20102 (license license:gpl3+)))
20103
20104 (define-public r-qgraph
20105 (package
20106 (name "r-qgraph")
20107 (version "1.6.5")
20108 (source
20109 (origin
20110 (method url-fetch)
20111 (uri (cran-uri "qgraph" version))
20112 (sha256
20113 (base32
20114 "0pwys9irxvp0ap158drplyypkplbmwqinv0fmlsblk7q875cr592"))))
20115 (properties `((upstream-name . "qgraph")))
20116 (build-system r-build-system)
20117 (propagated-inputs
20118 `(("r-abind" ,r-abind)
20119 ("r-bdgraph" ,r-bdgraph)
20120 ("r-colorspace" ,r-colorspace)
20121 ("r-corpcor" ,r-corpcor)
20122 ("r-d3network" ,r-d3network)
20123 ("r-dplyr" ,r-dplyr)
20124 ("r-fdrtool" ,r-fdrtool)
20125 ("r-ggplot2" ,r-ggplot2)
20126 ("r-ggraph" ,r-ggraph)
20127 ("r-glasso" ,r-glasso)
20128 ("r-gtools" ,r-gtools)
20129 ("r-hmisc" ,r-hmisc)
20130 ("r-huge" ,r-huge)
20131 ("r-igraph" ,r-igraph)
20132 ("r-jpeg" ,r-jpeg)
20133 ("r-lavaan" ,r-lavaan)
20134 ("r-matrix" ,r-matrix)
20135 ("r-pbapply" ,r-pbapply)
20136 ("r-plyr" ,r-plyr)
20137 ("r-png" ,r-png)
20138 ("r-psych" ,r-psych)
20139 ("r-rcpp" ,r-rcpp)
20140 ("r-reshape2" ,r-reshape2)
20141 ("r-tidygraph" ,r-tidygraph)))
20142 (home-page "http://sachaepskamp.com/qgraph/")
20143 (synopsis "Weighted network visualization and analysis")
20144 (description
20145 "This package implements tools for weighted network visualization and
20146 analysis, as well as Gaussian graphical model computation. It contains graph
20147 plotting methods, and tools for psychometric data visualization and graphical
20148 model estimation. See Epskamp et al. (2012)
20149 @url{doi:10.18637/jss.v048.i04}.")
20150 (license license:gpl2)))
20151
20152 (define-public r-semplot
20153 (package
20154 (name "r-semplot")
20155 (version "1.1.2")
20156 (source
20157 (origin
20158 (method url-fetch)
20159 (uri (cran-uri "semPlot" version))
20160 (sha256
20161 (base32
20162 "0l1v9yi1pv59iwfknw4dh9qskk5y8r347jq1vq13gnfd3bmd71xr"))))
20163 (properties `((upstream-name . "semPlot")))
20164 (build-system r-build-system)
20165 (propagated-inputs
20166 `(("r-colorspace" ,r-colorspace)
20167 ("r-corpcor" ,r-corpcor)
20168 ("r-igraph" ,r-igraph)
20169 ("r-lavaan" ,r-lavaan)
20170 ("r-lisreltor" ,r-lisreltor)
20171 ("r-openmx" ,r-openmx)
20172 ("r-plyr" ,r-plyr)
20173 ("r-qgraph" ,r-qgraph)
20174 ("r-regsem" ,r-regsem)
20175 ("r-rockchalk" ,r-rockchalk)
20176 ("r-sem" ,r-sem)
20177 ("r-xml" ,r-xml)))
20178 (home-page "https://github.com/SachaEpskamp/semPlot")
20179 (synopsis "Unified visualizations of structural equation models")
20180 (description
20181 "Structural equation modeling (SEM) has a long history of representing
20182 models graphically as path diagrams. The semPlot package for R fills the gap
20183 between advanced, but time-consuming, graphical software and the limited
20184 graphics produced automatically by SEM software. In addition, semPlot offers
20185 more functionality than drawing path diagrams: it can act as a common ground
20186 for importing SEM results into R. Any result usable as input to semPlot can
20187 also be represented in any of the three popular SEM frame-works, as well as
20188 translated to input syntax for the R packages @code{sem} and @code{lavaan}.")
20189 (license license:gpl2)))
20190
20191 (define-public r-cdm
20192 (package
20193 (name "r-cdm")
20194 (version "7.5-15")
20195 (source
20196 (origin
20197 (method url-fetch)
20198 (uri (cran-uri "CDM" version))
20199 (sha256
20200 (base32
20201 "159ny2dz0rf1r3k1mqlfwambffc8rx425sggf5bn51nybpzanq3l"))))
20202 (properties `((upstream-name . "CDM")))
20203 (build-system r-build-system)
20204 (propagated-inputs
20205 `(("r-mvtnorm" ,r-mvtnorm)
20206 ("r-polycor" ,r-polycor)
20207 ("r-rcpp" ,r-rcpp)
20208 ("r-rcpparmadillo" ,r-rcpparmadillo)))
20209 (home-page
20210 "https://github.com/alexanderrobitzsch/CDM")
20211 (synopsis "Cognitive diagnosis modeling")
20212 (description
20213 "This package provides functions for cognitive diagnosis modeling and
20214 multidimensional item response modeling for dichotomous and polytomous item
20215 responses. It enables the estimation of the DINA and DINO model, the multiple
20216 group (polytomous) GDINA model, the multiple choice DINA model, the general
20217 diagnostic model (GDM), the structured latent class model (SLCA), and
20218 regularized latent class analysis. See George, Robitzsch, Kiefer, Gross, and
20219 Uenlue (2017) @url{doi:10.18637/jss.v074.i02} for further details on
20220 estimation and the package structure. For tutorials on how to use the CDM
20221 package see George and Robitzsch (2015, @url{doi:10.20982/tqmp.11.3.p189}) as
20222 well as Ravand and Robitzsch (2015).")
20223 (license license:gpl2+)))
20224
20225 (define-public r-tam
20226 (package
20227 (name "r-tam")
20228 (version "3.4-26")
20229 (source
20230 (origin
20231 (method url-fetch)
20232 (uri (cran-uri "TAM" version))
20233 (sha256
20234 (base32
20235 "111d7qkxhwh1lfvldyh9d61pdb5vb6x8lr8n9h95ssvw07vjqvk9"))))
20236 (properties `((upstream-name . "TAM")))
20237 (build-system r-build-system)
20238 (propagated-inputs
20239 `(("r-cdm" ,r-cdm)
20240 ("r-rcpp" ,r-rcpp)
20241 ("r-rcpparmadillo" ,r-rcpparmadillo)))
20242 (home-page "http://www.edmeasurementsurveys.com/TAM/Tutorials/")
20243 (synopsis "Test analysis modules")
20244 (description
20245 "This package includes tools for marginal maximum likelihood estimation
20246 and joint maximum likelihood estimation for unidimensional and
20247 multidimensional item response models. The package functionality covers the
20248 Rasch model, 2PL model, 3PL model, generalized partial credit model,
20249 multi-faceted Rasch model, nominal item response model, structured latent
20250 class model, mixture distribution IRT models, and located latent class models.
20251 Latent regression models and plausible value imputation are also supported.")
20252 (license license:gpl2+)))
20253
20254 (define-public r-erm
20255 (package
20256 (name "r-erm")
20257 (version "1.0-1")
20258 (source
20259 (origin
20260 (method url-fetch)
20261 (uri (cran-uri "eRm" version))
20262 (sha256
20263 (base32
20264 "0njqzznnhnkvalmhiq5yq1w7gwp2myki5cv61w42ydvd27hdyyg9"))))
20265 (properties `((upstream-name . "eRm")))
20266 (build-system r-build-system)
20267 (propagated-inputs
20268 `(("r-colorspace" ,r-colorspace)
20269 ("r-lattice" ,r-lattice)
20270 ("r-mass" ,r-mass)
20271 ("r-matrix" ,r-matrix)
20272 ("r-psych" ,r-psych)))
20273 (native-inputs `(("gfortran" ,gfortran)))
20274 (home-page "https://cran.r-project.org/package=eRm")
20275 (synopsis "Extended Rasch modeling")
20276 (description
20277 "This package provides tools to fit @dfn{Rasch models} (RM), @dfn{linear
20278 logistic test models} (LLTM), @dfn{rating scale model} (RSM), @dfn{linear
20279 rating scale models} (LRSM), @dfn{partial credit models} (PCM), and
20280 @dfn{linear partial credit models} (LPCM). Missing values are allowed in the
20281 data matrix. Additional features are the ML estimation of the person
20282 parameters, Andersen's LR-test, item-specific Wald test, Martin-Loef-Test,
20283 nonparametric Monte-Carlo Tests, itemfit and personfit statistics including
20284 infit and outfit measures, ICC and other plots, automated stepwise item
20285 elimination, and a simulation module for various binary data matrices.")
20286 (license license:gpl3)))
20287
20288 (define-public r-irtoys
20289 (package
20290 (name "r-irtoys")
20291 (version "0.2.1")
20292 (source
20293 (origin
20294 (method url-fetch)
20295 (uri (cran-uri "irtoys" version))
20296 (sha256
20297 (base32
20298 "0h6iiaxikhbxhbyksbjnb09qdxinlkwr2v9yzs5wslbni14paq5q"))))
20299 (properties `((upstream-name . "irtoys")))
20300 (build-system r-build-system)
20301 (propagated-inputs
20302 `(("r-ltm" ,r-ltm)
20303 ("r-sm" ,r-sm)))
20304 (home-page "https://cran.r-project.org/package=irtoys")
20305 (synopsis "Collection of functions related to Item Response Theory (IRT)")
20306 (description
20307 "This package provides a collection of functions useful in learning and
20308 practicing @dfn{Item Response Theory} (IRT), which can be combined into larger
20309 programs. It provides basic CTT analysis, a simple common interface to the
20310 estimation of item parameters in IRT models for binary responses with three
20311 different programs (ICL, BILOG-MG, and ltm), ability estimation (MLE, BME,
20312 EAP, WLE, plausible values), item and person fit statistics, scaling
20313 methods (MM, MS, Stocking-Lord, and the complete Hebaera method), and a rich
20314 array of parametric and non-parametric (kernel) plots. It estimates and plots
20315 Haberman's interaction model when all items are dichotomously scored.")
20316 (license license:gpl2+)))
20317
20318 (define-public r-iheatmapr
20319 (package
20320 (name "r-iheatmapr")
20321 (version "0.4.12")
20322 (source
20323 (origin
20324 (method url-fetch)
20325 (uri (cran-uri "iheatmapr" version))
20326 (sha256
20327 (base32
20328 "0s479j9l35xiss599vablxgvg6i2j9zq9sxphsq4vdk3bafg84bw"))))
20329 (properties `((upstream-name . "iheatmapr")))
20330 (build-system r-build-system)
20331 (propagated-inputs
20332 `(("r-fastcluster" ,r-fastcluster)
20333 ("r-ggdendro" ,r-ggdendro)
20334 ("r-htmlwidgets" ,r-htmlwidgets)
20335 ("r-jsonlite" ,r-jsonlite)
20336 ("r-knitr" ,r-knitr)
20337 ("r-magrittr" ,r-magrittr)
20338 ("r-plyr" ,r-plyr)
20339 ("r-rcolorbrewer" ,r-rcolorbrewer)
20340 ("r-s4vectors" ,r-s4vectors)
20341 ("r-scales" ,r-scales)))
20342 (home-page "https://docs.ropensci.org/iheatmapr")
20343 (synopsis "Interactive, Complex Heatmaps")
20344 (description
20345 "iheatmapr is an R package for building complex, interactive heatmaps
20346 using modular building blocks. \"Complex\" heatmaps are heatmaps in which
20347 subplots along the rows or columns of the main heatmap add more information
20348 about each row or column. For example, a one column additional heatmap may
20349 indicate what group a particular row or column belongs to. Complex heatmaps
20350 may also include multiple side by side heatmaps which show different types of
20351 data for the same conditions. Interactivity can improve complex heatmaps by
20352 providing tooltips with information about each cell and enabling zooming into
20353 interesting features. iheatmapr uses the plotly library for interactivity.")
20354 (license license:expat)))
20355
20356 (define-public r-packrat
20357 (package
20358 (name "r-packrat")
20359 (version "0.5.0")
20360 (source
20361 (origin
20362 (method url-fetch)
20363 (uri (cran-uri "packrat" version))
20364 (sha256
20365 (base32
20366 "1xy5dd2hrpqa07jfl4s7dsrya05mf36ms74j833scdz0zf89586n"))))
20367 (properties `((upstream-name . "packrat")))
20368 (build-system r-build-system)
20369 (home-page "https://github.com/rstudio/packrat/")
20370 (synopsis "Dependency management R projects")
20371 (description
20372 "This package provides a dependency manager for R projects that allows
20373 you to manage the R packages your project depends on in an isolated, portable,
20374 and reproducible way.")
20375 (license license:gpl2)))
20376
20377 (define-public r-rsconnect
20378 (package
20379 (name "r-rsconnect")
20380 (version "0.8.16")
20381 (source
20382 (origin
20383 (method url-fetch)
20384 (uri (cran-uri "rsconnect" version))
20385 (sha256
20386 (base32
20387 "05ii0p0p7xpf8z0c1594s5q7wpwcs7lmlddrd67s5p2ka5m8qwiz"))))
20388 (properties `((upstream-name . "rsconnect")))
20389 (build-system r-build-system)
20390 (propagated-inputs
20391 `(("r-curl" ,r-curl)
20392 ("r-digest" ,r-digest)
20393 ("r-jsonlite" ,r-jsonlite)
20394 ("r-openssl" ,r-openssl)
20395 ("r-packrat" ,r-packrat)
20396 ("r-rstudioapi" ,r-rstudioapi)
20397 ("r-yaml" ,r-yaml)))
20398 (home-page "https://github.com/rstudio/rsconnect")
20399 (synopsis "Deployment interface for R Markdown documents and Shiny applications")
20400 (description
20401 "This package provides a programmatic deployment interface for RPubs,
20402 shinyapps.io, and RStudio Connect. Supported content types include R Markdown
20403 documents, Shiny applications, Plumber APIs, plots, and static web content.")
20404 (license license:gpl2)))
20405
20406 ;; This package includes minified JavaScript files. When upgrading please
20407 ;; check that there are no new minified JavaScript files.
20408 (define-public r-dygraphs
20409 (package
20410 (name "r-dygraphs")
20411 (version "1.1.1.6")
20412 (source
20413 (origin
20414 (method url-fetch)
20415 (uri (cran-uri "dygraphs" version))
20416 (sha256
20417 (base32
20418 "022j007mzfa9k2n31yg4aizcsf571vv3jip092h23rqj03rk3ly3"))))
20419 (properties `((upstream-name . "dygraphs")))
20420 (build-system r-build-system)
20421 (arguments
20422 `(#:modules ((guix build utils)
20423 (guix build r-build-system)
20424 (srfi srfi-1)
20425 (ice-9 popen))
20426 #:phases
20427 (modify-phases %standard-phases
20428 (add-after 'unpack 'process-javascript
20429 (lambda* (#:key inputs #:allow-other-keys)
20430 (with-directory-excursion "inst/htmlwidgets/lib/"
20431 (call-with-values
20432 (lambda ()
20433 (unzip2
20434 `(("dygraphs/dygraph-combined-dev.js"
20435 "dygraph-combined.js")
20436 (,(assoc-ref inputs "js-jquery")
20437 "jquery/jquery.min.js")
20438 (,(assoc-ref inputs "js-fquarter")
20439 "fquarter/moment-fquarter.min.js"))))
20440 (lambda (sources targets)
20441 (for-each (lambda (source target)
20442 (format #t "Processing ~a --> ~a~%"
20443 source target)
20444 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
20445 (call-with-output-file target
20446 (lambda (port)
20447 (dump-port minified port)))))
20448 sources targets))))
20449 #t)))))
20450 (native-inputs
20451 `(("uglify-js" ,uglify-js)
20452 ;; They actually use version 1.11.1, but this more recent version
20453 ;; should be just fine.
20454 ("js-jquery"
20455 ,(origin
20456 (method url-fetch)
20457 (uri "https://code.jquery.com/jquery-1.12.4.js")
20458 (sha256
20459 (base32
20460 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
20461 ("js-fquarter"
20462 ,(origin
20463 (method url-fetch)
20464 (uri (string-append "https://raw.githubusercontent.com/robgallen/"
20465 "moment-fquarter/1.0.1/moment-fquarter.js"))
20466 (sha256
20467 (base32
20468 "01mdnsaibm9jy2f1qpbn692hpv309lhj5si9nagib4dawmrkffij"))))))
20469 (propagated-inputs
20470 `(("r-htmltools" ,r-htmltools)
20471 ("r-htmlwidgets" ,r-htmlwidgets)
20472 ("r-magrittr" ,r-magrittr)
20473 ("r-xts" ,r-xts)
20474 ("r-zoo" ,r-zoo)))
20475 (home-page "https://github.com/rstudio/dygraphs")
20476 (synopsis "Interface to Dygraphs interactive time series charting library")
20477 (description
20478 "This package provides an R interface to the dygraphs JavaScript charting
20479 library (a copy of which is included in the package). It provides rich
20480 facilities for charting time-series data in R, including highly configurable
20481 series- and axis-display and interactive features like zoom/pan and
20482 series/point highlighting.")
20483 (license license:expat)))
20484
20485 (define-public r-shinystan
20486 (package
20487 (name "r-shinystan")
20488 (version "2.5.0")
20489 (source
20490 (origin
20491 (method url-fetch)
20492 (uri (cran-uri "shinystan" version))
20493 (sha256
20494 (base32
20495 "18alf5kiqw7y2l6m5nxxizwc2znsf9frxfsqhvgcad8hld9cbya5"))))
20496 (properties `((upstream-name . "shinystan")))
20497 (build-system r-build-system)
20498 (propagated-inputs
20499 `(("r-bayesplot" ,r-bayesplot)
20500 ("r-colourpicker" ,r-colourpicker)
20501 ("r-dt" ,r-dt)
20502 ("r-dygraphs" ,r-dygraphs)
20503 ("r-ggplot2" ,r-ggplot2)
20504 ("r-gridextra" ,r-gridextra)
20505 ("r-gtools" ,r-gtools)
20506 ("r-markdown" ,r-markdown)
20507 ("r-reshape2" ,r-reshape2)
20508 ("r-rsconnect" ,r-rsconnect)
20509 ("r-rstan" ,r-rstan)
20510 ("r-shiny" ,r-shiny)
20511 ("r-shinyjs" ,r-shinyjs)
20512 ("r-shinythemes" ,r-shinythemes)
20513 ("r-threejs" ,r-threejs)
20514 ("r-xtable" ,r-xtable)
20515 ("r-xts" ,r-xts)))
20516 (home-page "https://mc-stan.org/")
20517 (synopsis "Interactive visual and numerical analysis for Bayesian models")
20518 (description
20519 "This package provides a graphical user interface for interactive
20520 @dfn{Markov chain Monte Carlo} (MCMC) diagnostics and plots and tables helpful
20521 for analyzing a posterior sample. The interface is powered by the Shiny web
20522 application framework and works with the output of MCMC programs written in
20523 any programming language (and has extended functionality for Stan models fit
20524 using the @code{rstan} and @code{rstanarm} packages).")
20525 (license license:gpl3+)))
20526
20527 (define-public r-rstantools
20528 (package
20529 (name "r-rstantools")
20530 (version "2.0.0")
20531 (source
20532 (origin
20533 (method url-fetch)
20534 (uri (cran-uri "rstantools" version))
20535 (sha256
20536 (base32
20537 "1il0pn4ksbdkska5fmhvgaicvwnnc6cs08g6ags9fj1xkjiqmrsa"))))
20538 (properties `((upstream-name . "rstantools")))
20539 (build-system r-build-system)
20540 (inputs `(("pandoc" ,ghc-pandoc)))
20541 (propagated-inputs
20542 `(("r-desc" ,r-desc)
20543 ("r-rcpp" ,r-rcpp)))
20544 (home-page "https://mc-stan.org/rstantools/")
20545 (synopsis "Tools for developing R packages interfacing with Stan")
20546 (description
20547 "This package provides various tools for developers of R packages
20548 interfacing with @url{https://mc-stan.org, Stan}, including functions to set
20549 up the required package structure, S3 generics and default methods to unify
20550 function naming across Stan-based R packages, and vignettes with
20551 recommendations for developers.")
20552 (license license:gpl3+)))
20553
20554 (define-public r-loo
20555 (package
20556 (name "r-loo")
20557 (version "2.2.0")
20558 (source
20559 (origin
20560 (method url-fetch)
20561 (uri (cran-uri "loo" version))
20562 (sha256
20563 (base32
20564 "1hq1zcj76x55z9kic6cwf7mfq9pzqfbr341jbc9wp7x8ac4zcva6"))))
20565 (properties `((upstream-name . "loo")))
20566 (build-system r-build-system)
20567 (inputs
20568 `(("pandoc" ,ghc-pandoc)
20569 ("pandoc-citeproc" ,ghc-pandoc-citeproc)))
20570 (propagated-inputs
20571 `(("r-checkmate" ,r-checkmate)
20572 ("r-matrixstats" ,r-matrixstats)))
20573 (home-page "https://mc-stan.org/loo/")
20574 (synopsis "Leave-One-Out cross-validation and WAIC for Bayesian models")
20575 (description
20576 "This package provides an implementation of efficient approximate
20577 @dfn{leave-one-out} (LOO) cross-validation for Bayesian models fit using
20578 Markov chain Monte Carlo, as described in @url{doi:10.1007/s11222-016-9696-4}.
20579 The approximation uses @dfn{Pareto smoothed importance sampling} (PSIS), a new
20580 procedure for regularizing importance weights. As a byproduct of the
20581 calculations, we also obtain approximate standard errors for estimated
20582 predictive errors and for the comparison of predictive errors between models.
20583 The package also provides methods for using stacking and other model weighting
20584 techniques to average Bayesian predictive distributions.")
20585 (license license:gpl3+)))
20586
20587 (define-public r-rstan
20588 (package
20589 (name "r-rstan")
20590 (version "2.19.3")
20591 (source
20592 (origin
20593 (method url-fetch)
20594 (uri (cran-uri "rstan" version))
20595 (sha256
20596 (base32
20597 "128ndwjrhf8b1qvvqz4bl13qlm8718z9qs5ryc6gsdr3vk65s0np"))))
20598 (properties `((upstream-name . "rstan")))
20599 (build-system r-build-system)
20600 (arguments
20601 `(#:phases
20602 (modify-phases %standard-phases
20603 (add-before 'install 'set-timezone
20604 ;; This package is picky about timezones.
20605 (lambda* (#:key inputs #:allow-other-keys)
20606 (setenv "TZ" "UTC+1")
20607 (setenv "TZDIR"
20608 (string-append (assoc-ref inputs "tzdata")
20609 "/share/zoneinfo"))
20610 #t)))))
20611 (native-inputs
20612 `(("tzdata" ,tzdata)
20613 ("pandoc" ,ghc-pandoc)))
20614 (propagated-inputs
20615 `(("r-bh" ,r-bh)
20616 ("r-ggplot2" ,r-ggplot2)
20617 ("r-gridextra" ,r-gridextra)
20618 ("r-inline" ,r-inline)
20619 ("r-loo" ,r-loo)
20620 ("r-pkgbuild" ,r-pkgbuild)
20621 ("r-rcpp" ,r-rcpp)
20622 ("r-rcppeigen" ,r-rcppeigen)
20623 ("r-stanheaders" ,r-stanheaders)))
20624 (home-page "https://discourse.mc-stan.org/")
20625 (synopsis "R interface to Stan")
20626 (description
20627 "User-facing R functions are provided to parse, compile, test, estimate,
20628 and analyze Stan models by accessing the header-only Stan library provided by
20629 the StanHeaders package. The Stan project develops a probabilistic
20630 programming language that implements full Bayesian statistical inference via
20631 Markov Chain Monte Carlo, rough Bayesian inference via 'variational'
20632 approximation, and (optionally penalized) maximum likelihood estimation via
20633 optimization. In all three cases, automatic differentiation is used to
20634 quickly and accurately evaluate gradients without burdening the user with the
20635 need to derive the partial derivatives.")
20636 (license license:gpl3+)))
20637
20638 (define-public r-rstanarm
20639 (package
20640 (name "r-rstanarm")
20641 (version "2.19.3")
20642 (source
20643 (origin
20644 (method url-fetch)
20645 (uri (cran-uri "rstanarm" version))
20646 (sha256
20647 (base32
20648 "0gxjq8bdlvdd8kn3dhp12xlymdab036r7n12lzmd3xlkl4cnxq3s"))))
20649 (properties `((upstream-name . "rstanarm")))
20650 (build-system r-build-system)
20651 (inputs
20652 `(("pandoc" ,ghc-pandoc)
20653 ("pandoc-citeproc" ,ghc-pandoc-citeproc)))
20654 (propagated-inputs
20655 `(("r-bayesplot" ,r-bayesplot)
20656 ("r-bh" ,r-bh)
20657 ("r-ggplot2" ,r-ggplot2)
20658 ("r-lme4" ,r-lme4)
20659 ("r-loo" ,r-loo)
20660 ("r-matrix" ,r-matrix)
20661 ("r-nlme" ,r-nlme)
20662 ("r-rcpp" ,r-rcpp)
20663 ("r-rcppeigen" ,r-rcppeigen)
20664 ("r-rcppparallel" ,r-rcppparallel)
20665 ("r-rstan" ,r-rstan)
20666 ("r-rstantools" ,r-rstantools)
20667 ("r-shinystan" ,r-shinystan)
20668 ("r-stanheaders" ,r-stanheaders)
20669 ("r-survival" ,r-survival)))
20670 (home-page "https://mc-stan.org/rstanarm/")
20671 (synopsis "Bayesian applied regression modeling via Stan")
20672 (description
20673 "This package estimates previously compiled regression models using the
20674 @code{rstan} package, which provides the R interface to the Stan C++ library
20675 for Bayesian estimation. Users specify models via the customary R syntax with
20676 a formula and @code{data.frame} plus some additional arguments for priors.")
20677 (license license:gpl3+)))
20678
20679 (define-public r-kendall
20680 (package
20681 (name "r-kendall")
20682 (version "2.2")
20683 (source
20684 (origin
20685 (method url-fetch)
20686 (uri (cran-uri "Kendall" version))
20687 (sha256
20688 (base32
20689 "0z2yr3x2nvdm81w2imb61hxwcbmg14kfb2bxgh3wmkmv3wfjwkwn"))))
20690 (properties `((upstream-name . "Kendall")))
20691 (build-system r-build-system)
20692 (propagated-inputs
20693 `(("r-boot" ,r-boot)))
20694 (native-inputs
20695 `(("gfortran" ,gfortran)))
20696 (home-page "https://cran.r-project.org/web/packages/Kendall/")
20697 (synopsis "Kendall rank correlation and Mann-Kendall trend test")
20698 (description
20699 "This package computes the Kendall rank correlation and Mann-Kendall
20700 trend test.")
20701 (license license:gpl2+)))
20702
20703 (define-public r-zyp
20704 (package
20705 (name "r-zyp")
20706 (version "0.10-1.1")
20707 (source
20708 (origin
20709 (method url-fetch)
20710 (uri (cran-uri "zyp" version))
20711 (sha256
20712 (base32
20713 "03cxpkfbhrx1fy8l0dl9a13ghz93cqq6877wa8rig09ksdiivaw9"))))
20714 (properties `((upstream-name . "zyp")))
20715 (build-system r-build-system)
20716 (propagated-inputs
20717 `(("r-kendall" ,r-kendall)))
20718 (home-page "https://cran.r-project.org/web/packages/zyp/")
20719 (synopsis "Zhang + Yue-Pilon Trends Package")
20720 (description
20721 "This package contains an efficient implementation of Sen's slope
20722 method (Sen, 1968) plus implementation of Xuebin Zhang's (Zhang, 1999) and
20723 Yue-Pilon's (Yue, 2002) pre-whitening approaches to determining trends in
20724 climate data.")
20725 (license license:lgpl2.1)))
20726
20727 (define-public r-zvcv
20728 (package
20729 (name "r-zvcv")
20730 (version "1.0.0")
20731 (source
20732 (origin
20733 (method url-fetch)
20734 (uri (cran-uri "ZVCV" version))
20735 (sha256
20736 (base32
20737 "1npw836q2skx54843lgxvb0rfwafckjc8k8dljykm60ad3z7zak8"))))
20738 (properties `((upstream-name . "ZVCV")))
20739 (build-system r-build-system)
20740 (propagated-inputs
20741 `(("r-abind" ,r-abind)
20742 ("r-glmnet" ,r-glmnet)
20743 ("r-mvtnorm" ,r-mvtnorm)
20744 ("r-partitions" ,r-partitions)
20745 ("r-rcpp" ,r-rcpp)
20746 ("r-rcpparmadillo" ,r-rcpparmadillo)))
20747 (home-page "https://cran.r-project.org/web/packages/ZVCV/")
20748 (synopsis "Zero-Variance Control Variates")
20749 (description
20750 "@dfn{Zero-variance control variates} (ZV-CV) is a post-processing method
20751 to reduce the variance of Monte Carlo estimators of expectations using the
20752 derivatives of the log target. Once the derivatives are available, the only
20753 additional computational effort is in solving a linear regression problem.
20754 This method has been extended to higher dimensions using regularisation. This
20755 package can be used to easily perform ZV-CV or regularised ZV-CV when a set of
20756 samples, derivatives and function evaluations are available. Additional
20757 functions for applying ZV-CV to two estimators for the normalising constant of
20758 the posterior distribution in Bayesian statistics are also supplied.")
20759 (license license:gpl2+)))
20760
20761 (define-public r-ztype
20762 (package
20763 (name "r-ztype")
20764 (version "0.1.0")
20765 (source
20766 (origin
20767 (method url-fetch)
20768 (uri (cran-uri "ztype" version))
20769 (sha256
20770 (base32
20771 "0brbq2rgkl4mhjbb70kkfv47lzs66k9ppfs2klavcbripirxn5fx"))))
20772 (properties `((upstream-name . "ztype")))
20773 (build-system r-build-system)
20774 (propagated-inputs
20775 `(("r-assertthat" ,r-assertthat)
20776 ("r-dplyr" ,r-dplyr)
20777 ("r-ggplot2" ,r-ggplot2)
20778 ("r-lubridate" ,r-lubridate)
20779 ("r-magrittr" ,r-magrittr)
20780 ("r-rvest" ,r-rvest)
20781 ("r-stringr" ,r-stringr)))
20782 (home-page "https://cran.r-project.org/web/packages/ztype/")
20783 (synopsis "Run a Ztype game loaded with R functions")
20784 (description
20785 "How fast can you type R functions on your keyboard? Find out by running
20786 a @code{zty.pe} game: export R functions as instructions to type to destroy
20787 opponents' vessels.")
20788 (license license:gpl3)))
20789
20790 (define-public r-zseq
20791 (package
20792 (name "r-zseq")
20793 (version "0.2.0")
20794 (source
20795 (origin
20796 (method url-fetch)
20797 (uri (cran-uri "Zseq" version))
20798 (sha256
20799 (base32
20800 "06dndi2b1q79bmxax11bv0l5ifcz1mhpvbn90y6a6xymrgcq0ivi"))))
20801 (properties `((upstream-name . "Zseq")))
20802 (build-system r-build-system)
20803 (propagated-inputs
20804 `(("r-gmp" ,r-gmp)))
20805 (home-page "https://cran.r-project.org/web/packages/Zseq/")
20806 (synopsis "Integer sequence generator")
20807 (description
20808 "This package generates well-known integer sequences. The @code{gmp}
20809 package is adopted for computing with arbitrarily large numbers. Every
20810 function has a hyperlink to its corresponding item in the @dfn{On-Line
20811 Encyclopedia of Integer Sequences} (OEIS) in the function help page.")
20812 (license license:gpl3+)))
20813
20814 (define-public r-isoband
20815 (package
20816 (name "r-isoband")
20817 (version "0.2.0")
20818 (source
20819 (origin
20820 (method url-fetch)
20821 (uri (cran-uri "isoband" version))
20822 (sha256
20823 (base32
20824 "1r023s73qypnvpx18znr9ymylr022m90v65mz2jasn0a1kjrfcbq"))))
20825 (properties `((upstream-name . "isoband")))
20826 (build-system r-build-system)
20827 (propagated-inputs
20828 `(("r-rcpp" ,r-rcpp)
20829 ("r-testthat" ,r-testthat)))
20830 (home-page "https://github.com/wilkelab/isoband")
20831 (synopsis "Generate isolines and isobands from regularly spaced elevation grids")
20832 (description
20833 "This package provides a fast C++ implementation to generate contour
20834 lines (isolines) and contour polygons (isobands) from regularly spaced grids
20835 containing elevation data.")
20836 (license license:expat)))
20837
20838 (define-public r-ppcor
20839 (package
20840 (name "r-ppcor")
20841 (version "1.1")
20842 (source
20843 (origin
20844 (method url-fetch)
20845 (uri (cran-uri "ppcor" version))
20846 (sha256
20847 (base32
20848 "1x9b2kb8s0bp92b17gby0jwzzr3i4cf3ap9c4nq7m8fav72g0y3a"))))
20849 (properties `((upstream-name . "ppcor")))
20850 (build-system r-build-system)
20851 (propagated-inputs
20852 `(("r-mass" ,r-mass)))
20853 (home-page "https://cran.r-project.org/web/packages/ppcor/")
20854 (synopsis "Partial and semi-partial correlation")
20855 (description
20856 "This package provides users not only with a function to readily
20857 calculate the higher-order partial and semi-partial correlations but also with
20858 statistics and p-values of the correlation coefficients.")
20859 (license license:gpl2)))
20860
20861 (define-public r-hrbrthemes
20862 (package
20863 (name "r-hrbrthemes")
20864 (version "0.8.0")
20865 (source
20866 (origin
20867 (method url-fetch)
20868 (uri (cran-uri "hrbrthemes" version))
20869 (sha256
20870 (base32 "057h60b5p53dcyjyfwlgjc1ry968s9s64dw78p443w8717zk7zpc"))))
20871 (properties `((upstream-name . "hrbrthemes")))
20872 (build-system r-build-system)
20873 (propagated-inputs
20874 `(("r-extrafont" ,r-extrafont)
20875 ("r-gdtools" ,r-gdtools)
20876 ("r-ggplot2" ,r-ggplot2)
20877 ("r-htmltools" ,r-htmltools)
20878 ("r-knitr" ,r-knitr)
20879 ("r-magrittr" ,r-magrittr)
20880 ("r-rmarkdown" ,r-rmarkdown)
20881 ("r-scales" ,r-scales)))
20882 (native-inputs
20883 `(("r-knitr" ,r-knitr)))
20884 (home-page "https://github.com/hrbrmstr/hrbrthemes/")
20885 (synopsis "Additional themes, theme components and utilities for @code{ggplot2}")
20886 (description
20887 "This package provides a compilation of extra @code{ggplot2} themes,
20888 scales and utilities, including a spell check function for plot label fields
20889 and an overall emphasis on typography.")
20890 (license license:expat)))
20891
20892 (define-public r-crochet
20893 (package
20894 (name "r-crochet")
20895 (version "2.2.0")
20896 (source
20897 (origin
20898 (method url-fetch)
20899 (uri (cran-uri "crochet" version))
20900 (sha256
20901 (base32
20902 "1cbv79nyycxk6f8ldcsnn2pvgxqlnrj0qs19nhafnq2clxy863k6"))))
20903 (build-system r-build-system)
20904 (home-page "https://github.com/agrueneberg/crochet")
20905 (synopsis "Implementation Helper for Matrix-Like Types")
20906 (description
20907 "Functions to help implement the extraction / subsetting / indexing
20908 function @code{[} and replacement function @code{[<-} of custom matrix-like
20909 types (based on S3, S4, etc.), modeled as closely to the base matrix class
20910 as possible (with tests to prove it).")
20911 (license license:expat)))
20912
20913 (define-public r-boa
20914 (package
20915 (name "r-boa")
20916 (version "1.1.8-2")
20917 (source
20918 (origin
20919 (method url-fetch)
20920 (uri (cran-uri "boa" version))
20921 (sha256
20922 (base32
20923 "04lhqk5qfvaz1jk90glr2yi5vq7cdy0w8m6g2lnzk359l9y41zhp"))))
20924 (properties `((upstream-name . "boa")))
20925 (build-system r-build-system)
20926 (home-page "http://www.jstatsoft.org/v21/i11")
20927 (synopsis "Library for @dfn{Bayesian Output Analysis Program} (BOA) for MCMC")
20928 (description
20929 "This package provides a menu-driven program and library of functions for
20930 carrying out convergence diagnostics and statistical and graphical analysis of
20931 @dfn{Markov chain Monte Carlo} (MCMC) sampling output.")
20932 (license license:gpl2+)))
20933
20934 (define-public r-httpcode
20935 (package
20936 (name "r-httpcode")
20937 (version "0.2.0")
20938 (source (origin
20939 (method url-fetch)
20940 (uri (cran-uri "httpcode" version))
20941 (sha256
20942 (base32
20943 "06k853ihwzkcx4z3jzazpb03p91frqkwz18jy4fwr8j2nwyqbhgv"))))
20944 (build-system r-build-system)
20945 (home-page "https://github.com/sckott/httpcode")
20946 (synopsis "HTTP status code helper")
20947 (description "@code{httpcode} provides functionality for finding and
20948 explaining the meaning of @code{HTTP} status codes. Functions are included for
20949 searching for codes by full or partial number, by message, and to get
20950 appropriate dog and cat images for many status codes.")
20951 (license license:expat)))
20952
20953 (define-public r-latex2exp
20954 (package
20955 (name "r-latex2exp")
20956 (version "0.4.0")
20957 (source (origin
20958 (method url-fetch)
20959 (uri (cran-uri "latex2exp" version))
20960 (sha256
20961 (base32
20962 "12nbcgfmv13k6sc6m326ras9bcvy380b7rxcxphn06r3cfkby0zw"))))
20963 (build-system r-build-system)
20964 (propagated-inputs
20965 `(("r-stringr" ,r-stringr)
20966 ("r-magrittr", r-magrittr)))
20967 (home-page "https://github.com/stefano-meschiari/latex2exp/")
20968 (synopsis "Use LaTeX expressions in plots")
20969 (description "@code{latex2exp} parses and converts LaTeX math formulas to
20970 R's plotmath expressions, used to enter mathematical formulas and symbols to be
20971 rendered as text, axis labels, etc. throughout R's plotting system.")
20972 (license license:expat)))
20973
20974 (define-public r-oai
20975 (package
20976 (name "r-oai")
20977 (version "0.3.0")
20978 (source (origin
20979 (method url-fetch)
20980 (uri (cran-uri "oai" version))
20981 (sha256
20982 (base32
20983 "1ipw9bq3ra66d1ddj1rylyyd20mlcb2i7phzhywra53s1fdifq1g"))))
20984 (build-system r-build-system)
20985 (propagated-inputs
20986 `(("r-xml2" ,r-xml2)
20987 ("r-httr" ,r-httr)
20988 ("r-plyr" ,r-plyr)
20989 ("r-stringr" ,r-stringr)
20990 ("r-tibble" ,r-tibble)))
20991 (home-page "https://github.com/ropensci/oai/")
20992 (synopsis "General purpose OAI-PMH services client")
20993 (description "@code{oai} provides a general purpose client to work with
20994 any @dfn{Open Archives Initiative Protocol for 'Metadata' Harvesting} (OAI-PMH)
20995 service. Functions are provided to work with the OAI-PMH verbs:
20996 @code{GetRecord}, @code{Identify}, @code{ListIdentifiers},
20997 @code{ListMetadataFormats}, @code{ListRecords}, and @code{ListSets}.")
20998 (license license:expat)))
20999
21000 (define-public r-argon2
21001 (package
21002 (name "r-argon2")
21003 (version "0.2-0")
21004 (source
21005 (origin
21006 (method url-fetch)
21007 (uri (cran-uri "argon2" version))
21008 (sha256
21009 (base32
21010 "0kqn06rpb39jlzizjlnc5c44mfic8llrshxn7ljgmyj35lbqwxqh"))))
21011 (properties `((upstream-name . "argon2")))
21012 (build-system r-build-system)
21013 (home-page "https://github.com/wrathematics/argon2")
21014 (synopsis "Secure password hashing based on the argon2 algorithm")
21015 (description
21016 "This package provides utilities for secure password hashing via the
21017 argon2 algorithm.")
21018 (license license:bsd-2)))
21019
21020 (define-public r-getpass
21021 (package
21022 (name "r-getpass")
21023 (version "0.2-2")
21024 (source
21025 (origin
21026 (method url-fetch)
21027 (uri (cran-uri "getPass" version))
21028 (sha256
21029 (base32
21030 "03ydafhh0sk3rcnpr3paajyji64x2ddp6p814p9mvbmyrblcgzcc"))))
21031 (properties `((upstream-name . "getPass")))
21032 (build-system r-build-system)
21033 (propagated-inputs
21034 `(("r-rstudioapi" ,r-rstudioapi)))
21035 (home-page "https://github.com/wrathematics/getPass")
21036 (synopsis "Masked user input")
21037 (description
21038 "This package provides a micro-package for reading \"passwords\", i.e.
21039 reading user input with masking, so that the input is not displayed as it is
21040 typed. Currently, RStudio, the command line (every OS), and any platform
21041 where tcltk is present are supported.")
21042 (license license:bsd-2)))
21043
21044 (define-public r-remoter
21045 (package
21046 (name "r-remoter")
21047 (version "0.4-0")
21048 (source
21049 (origin
21050 (method url-fetch)
21051 (uri (cran-uri "remoter" version))
21052 (sha256
21053 (base32
21054 "1a7m63l8phv5jnazvdqdrqkaqjwqzaac5y4jm2jn0ypy4n8jvkfl"))))
21055 (properties `((upstream-name . "remoter")))
21056 (build-system r-build-system)
21057 (propagated-inputs
21058 `(("r-argon2" ,r-argon2)
21059 ("r-getpass" ,r-getpass)
21060 ("r-pbdzmq" ,r-pbdzmq)
21061 ("r-png" ,r-png)))
21062 (home-page "https://github.com/RBigData/remoter")
21063 (synopsis "Control a remote R session from a local one")
21064 (description
21065 "This package provides a set of utilities for client/server computing
21066 with R, controlling a remote R session (the server) from a local one (the
21067 client).")
21068 (license license:bsd-2)))
21069
21070 (define-public r-asd
21071 (package
21072 (name "r-asd")
21073 (version "2.2")
21074 (source
21075 (origin
21076 (method url-fetch)
21077 (uri (cran-uri "asd" version))
21078 (sha256
21079 (base32
21080 "0p3r4qjam3sl3rpcilb0pgx4xx3ly71xqnvkv31vzjs885lgxz4l"))))
21081 (properties `((upstream-name . "asd")))
21082 (build-system r-build-system)
21083 (propagated-inputs
21084 `(("r-mvtnorm" ,r-mvtnorm)))
21085 (home-page "https://cran.r-project.org/web/packages/asd")
21086 (synopsis "Simulations for Adaptive Seamless Designs")
21087 (description
21088 "This package provdes means to run simulations for adaptive seamless
21089 designs with and without early outcomes for treatment selection and
21090 subpopulation type designs.")
21091 (license license:gpl3)))