Merge branch 'master' into core-updates
[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-turbo)))
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")
1731 (source
1732 (origin
1733 (method url-fetch)
1734 (uri (cran-uri "Rcpp" version))
1735 (sha256
1736 (base32 "1m80pdhzi2p82db5xkbwc2m3fzv6df59955yj03nlq40fj7zx4nr"))))
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.12")
4046 (source
4047 (origin
4048 (method url-fetch)
4049 (uri (cran-uri "xfun" version))
4050 (sha256
4051 (base32 "0sgh8kafi9x1glmmcp1ly827pm8q7fsfngbplr41fbb4nc9363df"))))
4052 (build-system r-build-system)
4053 (home-page "https://github.com/yihui/xfun")
4054 (synopsis "Miscellaneous functions")
4055 (description
4056 "This package provides miscellaneous functions commonly used in other
4057 packages maintained by Yihui Xie.")
4058 (license license:expat)))
4059
4060 (define-public r-utf8
4061 (package
4062 (name "r-utf8")
4063 (version "1.1.4")
4064 (source
4065 (origin
4066 (method url-fetch)
4067 (uri (cran-uri "utf8" version))
4068 (sha256
4069 (base32
4070 "0m0ywg8k3blfiahxvh1i4zn9dksrlc937d2lbza5fc38zjnrrnpn"))))
4071 (build-system r-build-system)
4072 (home-page "https://github.com/patperry/r-utf8")
4073 (synopsis "Unicode text processing")
4074 (description
4075 "This package provides tools to process and print UTF-8 encoded
4076 international text (Unicode). Input, validate, normalize, encode, format, and
4077 display.")
4078 (license license:asl2.0)))
4079
4080 (define-public r-zeallot
4081 (package
4082 (name "r-zeallot")
4083 (version "0.1.0")
4084 (source
4085 (origin
4086 (method url-fetch)
4087 (uri (cran-uri "zeallot" version))
4088 (sha256
4089 (base32
4090 "1sd1igcfnv27pa3bqxlbyxchi562h7grnjg1l7wxx3bwr49i57s3"))))
4091 (build-system r-build-system)
4092 (home-page "https://github.com/nteetor/zeallot")
4093 (synopsis "Multiple, unpacking, and destructuring assignment")
4094 (description
4095 "This package provides a @code{%<-%} operator to perform multiple,
4096 unpacking, and destructuring assignment in R. The operator unpacks the
4097 right-hand side of an assignment into multiple values and assigns these values
4098 to variables on the left-hand side of the assignment.")
4099 (license license:expat)))
4100
4101 (define-public r-vctrs
4102 (package
4103 (name "r-vctrs")
4104 (version "0.2.4")
4105 (source
4106 (origin
4107 (method url-fetch)
4108 (uri (cran-uri "vctrs" version))
4109 (sha256
4110 (base32
4111 "15sgzs6afvmhssk6jcg41rn3bvmzmbm4sgca6f6x8lfrsazvdj6w"))))
4112 (build-system r-build-system)
4113 (propagated-inputs
4114 `(("r-digest" ,r-digest)
4115 ("r-ellipsis" ,r-ellipsis)
4116 ("r-glue" ,r-glue)
4117 ("r-rlang" ,r-rlang)))
4118 (native-inputs
4119 `(("r-knitr" ,r-knitr)))
4120 (home-page "https://github.com/r-lib/vctrs")
4121 (synopsis "Vector helpers")
4122 (description
4123 "There are three main goals to the @code{vctrs} package:
4124
4125 @enumerate
4126 @item To propose @code{vec_size()} and @code{vec_type()} as alternatives to
4127 @code{length()} and @code{class()}. These definitions are paired with a
4128 framework for type-coercion and size-recycling.
4129 @item To define type- and size-stability as desirable function properties, use
4130 them to analyse existing base function, and to propose better alternatives.
4131 This work has been particularly motivated by thinking about the ideal
4132 properties of @code{c()}, @code{ifelse()}, and @code{rbind()}.
4133 @item To provide a new @code{vctr} base class that makes it easy to create new
4134 S3 vectors. @code{vctrs} provides methods for many base generics in terms of
4135 a few new @code{vctrs} generics, making implementation considerably simpler
4136 and more robust.
4137 @end enumerate\n")
4138 (license license:gpl3)))
4139
4140 (define-public r-pillar
4141 (package
4142 (name "r-pillar")
4143 (version "1.4.3")
4144 (source
4145 (origin
4146 (method url-fetch)
4147 (uri (cran-uri "pillar" version))
4148 (sha256
4149 (base32
4150 "02sn7zw80wq33jgxk2i6m5jb83sk7y72dfhgyy0apfinv05w92ss"))))
4151 (build-system r-build-system)
4152 (propagated-inputs
4153 `(("r-cli" ,r-cli)
4154 ("r-crayon" ,r-crayon)
4155 ("r-fansi" ,r-fansi)
4156 ("r-rlang" ,r-rlang)
4157 ("r-utf8" ,r-utf8)
4158 ("r-vctrs" ,r-vctrs)))
4159 (home-page "https://github.com/r-lib/pillar")
4160 (synopsis "Coloured formatting for columns")
4161 (description
4162 "This package provides a @code{pillar} generic designed for formatting
4163 columns of data using the full range of colours provided by modern
4164 terminals.")
4165 (license license:gpl3)))
4166
4167 (define-public r-uuid
4168 (package
4169 (name "r-uuid")
4170 (version "0.1-4")
4171 (source
4172 (origin
4173 (method url-fetch)
4174 (uri (cran-uri "uuid" version))
4175 (sha256
4176 (base32
4177 "0gm9ii7ncvllxbvyk6srsiinjmqyj7lmh84w43x4nhqpvafj9q4q"))))
4178 (build-system r-build-system)
4179 (home-page "https://www.rforge.net/uuid")
4180 (synopsis "Tools for generating and handling of UUIDs")
4181 (description
4182 "This package provides tools for generating and handling of
4183 @dfn{Universally Unique Identifiers} (UUIDs).")
4184 (license license:expat)))
4185
4186 (define-public r-tinytex
4187 (package
4188 (name "r-tinytex")
4189 (version "0.21")
4190 (source
4191 (origin
4192 (method url-fetch)
4193 (uri (cran-uri "tinytex" version))
4194 (sha256
4195 (base32
4196 "088zzc2v0izbcs45p19v547pi78vkr08ibpvvi1g9bkbya4x3mq9"))))
4197 (build-system r-build-system)
4198 (propagated-inputs
4199 `(("r-xfun" ,r-xfun)))
4200 (home-page "https://github.com/yihui/tinytex")
4201 (synopsis "Helper functions for TeX Live and compiling LaTeX documents")
4202 (description
4203 "This package provides helper functions to install and maintain the LaTeX
4204 distribution named TinyTeX, a lightweight, cross-platform, portable, and
4205 easy-to-maintain version of TeX Live. This package also contains helper
4206 functions to compile LaTeX documents, and install missing LaTeX packages
4207 automatically.")
4208 (license license:expat)))
4209
4210 (define-public r-network
4211 (package
4212 (name "r-network")
4213 (version "1.16.0")
4214 (source
4215 (origin
4216 (method url-fetch)
4217 (uri (cran-uri "network" version))
4218 (sha256
4219 (base32
4220 "0dnf1wl3za2lhx2lwd8smhlijl1cfhckgr8zz9piiirrfi2m2kx2"))))
4221 (build-system r-build-system)
4222 (propagated-inputs
4223 `(("r-magrittr" ,r-magrittr)
4224 ("r-tibble" ,r-tibble)))
4225 (home-page "https://statnet.org/")
4226 (synopsis "Classes for relational data")
4227 (description
4228 "This package provides tools to create and modify network objects. The
4229 @code{network} class can represent a range of relational data types, and
4230 supports arbitrary vertex/edge/graph attributes.")
4231 (license license:gpl2+)))
4232
4233 (define-public r-statnet-common
4234 (package
4235 (name "r-statnet-common")
4236 (version "4.3.0")
4237 (source
4238 (origin
4239 (method url-fetch)
4240 (uri (cran-uri "statnet.common" version))
4241 (sha256
4242 (base32
4243 "0ng90i0wm9wlyhjbnmnylc1bbqw396p1dr7f402dyry9x9ck6jl3"))))
4244 (properties
4245 `((upstream-name . "statnet.common")))
4246 (build-system r-build-system)
4247 (propagated-inputs
4248 `(("r-coda" ,r-coda)))
4249 (home-page "https://statnet.org")
4250 (synopsis "R scripts and utilities used by the Statnet software")
4251 (description "This package provides non-statistical utilities used by the
4252 software developed by the Statnet Project.")
4253 (license license:gpl3)))
4254
4255 (define-public r-statcheck
4256 (package
4257 (name "r-statcheck")
4258 (version "1.3.0")
4259 (source
4260 (origin
4261 (method url-fetch)
4262 (uri (cran-uri "statcheck" version))
4263 (sha256
4264 (base32
4265 "0ivybdcrymlsfv6pg6p5bv70qdvgxf2vgp0kf4r0pf2fcvav1mcp"))))
4266 (build-system r-build-system)
4267 (propagated-inputs
4268 `(("r-ggplot2" ,r-ggplot2)
4269 ("r-plyr" ,r-plyr)
4270 ("r-rmarkdown" ,r-rmarkdown)))
4271 (home-page "https://cran.r-project.org/web/packages/statcheck/")
4272 (synopsis "Extract statistics from articles and recompute p-values")
4273 (description "This package can automatically extract statistical
4274 null-hypothesis significant testing (NHST) results from articles and recompute
4275 the p-values based on the reported test statistic and degrees of freedom to
4276 detect possible inconsistencies.")
4277 (license license:gpl2)))
4278
4279 (define-public r-sna
4280 (package
4281 (name "r-sna")
4282 (version "2.5")
4283 (source
4284 (origin
4285 (method url-fetch)
4286 (uri (cran-uri "sna" version))
4287 (sha256
4288 (base32
4289 "1j3i6300m686qqfmyvadim377cd3mplzgj6mandygw8brg50id8k"))))
4290 (build-system r-build-system)
4291 (propagated-inputs
4292 `(("r-network" ,r-network)
4293 ("r-statnet-common" ,r-statnet-common)))
4294 (home-page "https://statnet.org")
4295 (synopsis "Tools for social network analysis")
4296 (description
4297 "This package provides a range of tools for social network analysis,
4298 including node and graph-level indices, structural distance and covariance
4299 methods, structural equivalence detection, network regression, random graph
4300 generation, and 2D/3D network visualization.")
4301 (license license:gpl2+)))
4302
4303 (define-public r-tfisher
4304 (package
4305 (name "r-tfisher")
4306 (version "0.2.0")
4307 (source
4308 (origin
4309 (method url-fetch)
4310 (uri (cran-uri "TFisher" version))
4311 (sha256
4312 (base32
4313 "0vz74ww1lf1prfwz74hfsi3a8nzq8ss7aqjr85c1d87vss2796xx"))))
4314 (properties `((upstream-name . "TFisher")))
4315 (build-system r-build-system)
4316 (propagated-inputs
4317 `(("r-matrix" ,r-matrix)
4318 ("r-mvtnorm" ,r-mvtnorm)
4319 ("r-sn" ,r-sn)))
4320 (home-page "https://cran.r-project.org/web/packages/TFisher/")
4321 (synopsis "Optimal thresholding Fisher's p-value combination method")
4322 (description
4323 "This package provides the @dfn{cumulative distribution function} (CDF),
4324 quantile, and statistical power calculator for a collection of thresholding
4325 Fisher's p-value combination methods, including Fisher's p-value combination
4326 method, truncated product method and, in particular, soft-thresholding
4327 Fisher's p-value combination method which is proven to be optimal in some
4328 context of signal detection. The p-value calculator for the omnibus version
4329 of these tests are also included.")
4330 (license license:gpl2)))
4331
4332 (define-public r-ttr
4333 (package
4334 (name "r-ttr")
4335 (version "0.23-6")
4336 (source
4337 (origin
4338 (method url-fetch)
4339 (uri (cran-uri "TTR" version))
4340 (sha256
4341 (base32
4342 "0rg22ma3x07s9djlxscfw5jcq1gbir05cwhgvwfi53x1sf4hmhdg"))))
4343 (properties `((upstream-name . "TTR")))
4344 (build-system r-build-system)
4345 (propagated-inputs
4346 `(("r-curl" ,r-curl)
4347 ("r-xts" ,r-xts)
4348 ("r-zoo" ,r-zoo)))
4349 (home-page "https://github.com/joshuaulrich/TTR")
4350 (synopsis "Technical trading rules")
4351 (description
4352 "This package provides functions and data to construct technical trading
4353 rules with R.")
4354 (license license:gpl2)))
4355
4356 (define-public r-leaps
4357 (package
4358 (name "r-leaps")
4359 (version "3.1")
4360 (source
4361 (origin
4362 (method url-fetch)
4363 (uri (cran-uri "leaps" version))
4364 (sha256
4365 (base32
4366 "1dn3yl1p03n0iynd1vsdkrr0fhmvgrmfkv37y7n371765h83lz1x"))))
4367 (build-system r-build-system)
4368 (native-inputs `(("gfortran" ,gfortran)))
4369 (home-page "https://cran.r-project.org/web/packages/leaps/")
4370 (synopsis "Regression subset selection")
4371 (description
4372 "This package provides tools for regression subset selection, including
4373 exhaustive search.")
4374 (license license:gpl2+)))
4375
4376 (define-public r-splus2r
4377 (package
4378 (name "r-splus2r")
4379 (version "1.2-2")
4380 (source
4381 (origin
4382 (method url-fetch)
4383 (uri (cran-uri "splus2R" version))
4384 (sha256
4385 (base32
4386 "0xrbj8vxy0pc6hl7m8abv71d3hjw47cl51s7j7priadyqczkq6sz"))))
4387 (properties `((upstream-name . "splus2R")))
4388 (build-system r-build-system)
4389 (native-inputs `(("gfortran" ,gfortran)))
4390 (home-page "https://cran.r-project.org/web/packages/splus2R/")
4391 (synopsis "Supplemental S-PLUS functionality in R")
4392 (description
4393 "Currently there are many functions in S-PLUS that are missing in R. To
4394 facilitate the conversion of S-PLUS packages to R packages, this package
4395 provides some missing S-PLUS functionality in R.")
4396 (license license:gpl2)))
4397
4398 (define-public r-ifultools
4399 (package
4400 (name "r-ifultools")
4401 (version "2.0-5")
4402 (source
4403 (origin
4404 (method url-fetch)
4405 (uri (cran-uri "ifultools" version))
4406 (sha256
4407 (base32
4408 "040kvbczcmmbaiaz0k0pdq9af541pjj6iwzh1a3w4szh9w6b5a3j"))))
4409 (build-system r-build-system)
4410 (propagated-inputs
4411 `(("r-mass" ,r-mass)
4412 ("r-splus2r" ,r-splus2r)))
4413 (home-page "https://cran.r-project.org/web/packages/ifultools/")
4414 (synopsis "Insightful research tools")
4415 (description "This package provides C code used by the wmtsa, fractal, and
4416 sapa R packages.")
4417 (license license:gpl2)))
4418
4419 (define-public r-sapa
4420 (package
4421 (name "r-sapa")
4422 (version "2.0-2")
4423 (source
4424 (origin
4425 (method url-fetch)
4426 (uri (cran-uri "sapa" version))
4427 (sha256
4428 (base32
4429 "056xlh14dnzq4x7sbp7ff2k61jxy7110a742b502vz549qfrr5ds"))))
4430 (build-system r-build-system)
4431 (propagated-inputs
4432 `(("r-ifultools" ,r-ifultools)
4433 ("r-splus2r" ,r-splus2r)))
4434 (home-page "https://cran.r-project.org/web/packages/sapa/")
4435 (synopsis "Spectral analysis for physical applications")
4436 (description "This package provides software for the book Spectral
4437 Analysis for Physical Applications, Donald B. Percival and Andrew T. Walden,
4438 Cambridge University Press, 1993.")
4439 (license license:gpl2)))
4440
4441 (define-public r-aggregation
4442 (package
4443 (name "r-aggregation")
4444 (version "1.0.1")
4445 (source
4446 (origin
4447 (method url-fetch)
4448 (uri (cran-uri "aggregation" version))
4449 (sha256
4450 (base32
4451 "0j9g604m2ccc7hcy02539yja9cf3xcbl25gvp838bp4x8w18my46"))))
4452 (build-system r-build-system)
4453 (home-page "https://cran.r-project.org/web/packages/aggregation/")
4454 (synopsis "Methods for p-value aggregation")
4455 (description
4456 "This package contains functionality for performing the following methods
4457 of p-value aggregation: Fisher's method, the Lancaster method (weighted
4458 Fisher's method), and Sidak correction.")
4459 (license license:gpl3)))
4460
4461 (define-public r-quantmod
4462 (package
4463 (name "r-quantmod")
4464 (version "0.4.17")
4465 (source
4466 (origin
4467 (method url-fetch)
4468 (uri (cran-uri "quantmod" version))
4469 (sha256
4470 (base32
4471 "1ss441rwlr88kz212m0wgx0hwgwi41rhy1jncg2lgqzqfvr5dzqa"))))
4472 (build-system r-build-system)
4473 (propagated-inputs
4474 `(("r-curl" ,r-curl)
4475 ("r-ttr" ,r-ttr)
4476 ("r-xts" ,r-xts)
4477 ("r-zoo" ,r-zoo)))
4478 (home-page "https://cran.r-project.org/web/packages/quantmod/")
4479 (synopsis "Quantitative financial modelling framework")
4480 (description "This package provides a quantitative financial modelling
4481 framework to allow users to specify, build, trade, and analyse quantitative
4482 financial trading strategies.")
4483 (license license:gpl3)))
4484
4485 (define-public r-tseries
4486 (package
4487 (name "r-tseries")
4488 (version "0.10-47")
4489 (source
4490 (origin
4491 (method url-fetch)
4492 (uri (cran-uri "tseries" version))
4493 (sha256
4494 (base32
4495 "0yzvc9djp3angvxdxqi60wi726y76ablsb71q88ycvw0avgpf8r0"))))
4496 (build-system r-build-system)
4497 (propagated-inputs
4498 `(("r-quadprog" ,r-quadprog)
4499 ("r-quantmod" ,r-quantmod)
4500 ("r-zoo" ,r-zoo)))
4501 (native-inputs
4502 `(("gfortran" ,gfortran)))
4503 (home-page "https://cran.r-project.org/web/packages/tseries/")
4504 (synopsis "Time series analysis and computational finance")
4505 (description
4506 "This package provides functions relating to time series analysis and
4507 computational finance.")
4508 (license license:gpl2)))
4509
4510 (define-public r-wmtsa
4511 (package
4512 (name "r-wmtsa")
4513 (version "2.0-3")
4514 (source
4515 (origin
4516 (method url-fetch)
4517 (uri (cran-uri "wmtsa" version))
4518 (sha256
4519 (base32
4520 "1q436krz5p1f4a7a7sya6a9rh9x9mi8zzcgq66gbk9w9w4hcqcj6"))))
4521 (build-system r-build-system)
4522 (propagated-inputs
4523 `(("r-ifultools" ,r-ifultools)
4524 ("r-mass" ,r-mass)
4525 ("r-splus2r" ,r-splus2r)))
4526 (home-page "https://cran.r-project.org/web/packages/wmtsa/")
4527 (synopsis "Wavelet methods for time series analysis")
4528 (description
4529 "This package provides software to accompany the book \"Wavelet Methods
4530 for Time Series Analysis\", Donald B. Percival and Andrew T. Walden, Cambridge
4531 University Press, 2000.")
4532 (license license:gpl2)))
4533
4534 (define-public r-tsa
4535 (package
4536 (name "r-tsa")
4537 (version "1.2")
4538 (source
4539 (origin
4540 (method url-fetch)
4541 (uri (cran-uri "TSA" version))
4542 (sha256
4543 (base32
4544 "0gjfqibwdznz0nka95k4fjm935svxjpnqfywwz403crn2lh30h6q"))))
4545 (properties `((upstream-name . "TSA")))
4546 (build-system r-build-system)
4547 (propagated-inputs
4548 `(("r-leaps" ,r-leaps)
4549 ("r-locfit" ,r-locfit)
4550 ("r-mgcv" ,r-mgcv)))
4551 (home-page "https://homepage.divms.uiowa.edu/~kchan/TSA.htm")
4552 (synopsis "Time series analysis")
4553 (description
4554 "This package contains R functions and datasets detailed in the book
4555 \"Time Series Analysis with Applications in R (second edition)\" by Jonathan
4556 Cryer and Kung-Sik Chan.")
4557 (license license:gpl2+)))
4558
4559 (define-public r-extradistr
4560 (package
4561 (name "r-extradistr")
4562 (version "1.8.11")
4563 (source
4564 (origin
4565 (method url-fetch)
4566 (uri (cran-uri "extraDistr" version))
4567 (sha256
4568 (base32
4569 "1vvqv1d4hxa025gmm8cbiph63qsqy87l3ri5idd524gyz3chbcl3"))))
4570 (properties `((upstream-name . "extraDistr")))
4571 (build-system r-build-system)
4572 (propagated-inputs
4573 `(("r-rcpp" ,r-rcpp)))
4574 (home-page "https://github.com/twolodzko/extraDistr")
4575 (synopsis "Additional univariate and multivariate distributions")
4576 (description
4577 "This package implements density, distribution functions, quantile
4578 functions and random generation functions for a large number of univariate and
4579 multivariate distributions.")
4580 (license license:gpl2)))
4581
4582 (define-public r-fractal
4583 (package
4584 (name "r-fractal")
4585 (version "2.0-4")
4586 (source
4587 (origin
4588 (method url-fetch)
4589 (uri (cran-uri "fractal" version))
4590 (sha256
4591 (base32
4592 "18lr9z0gslvfc3z8vyj3krqj3bfhg60zv1fzinrwwkc4cpk1w7mp"))))
4593 (build-system r-build-system)
4594 (propagated-inputs
4595 `(("r-ifultools" ,r-ifultools)
4596 ("r-mass" ,r-mass)
4597 ("r-sapa" ,r-sapa)
4598 ("r-scatterplot3d" ,r-scatterplot3d)
4599 ("r-splus2r" ,r-splus2r)
4600 ("r-wmtsa" ,r-wmtsa)))
4601 (home-page "https://cran.r-project.org/web/packages/fractal/")
4602 (synopsis "Fractal time series modeling and analysis")
4603 (description
4604 "This package provides tools for stochastic fractal and deterministic
4605 chaotic time series analysis.")
4606 (license license:gpl2)))
4607
4608 (define-public r-urca
4609 (package
4610 (name "r-urca")
4611 (version "1.3-0")
4612 (source
4613 (origin
4614 (method url-fetch)
4615 (uri (cran-uri "urca" version))
4616 (sha256
4617 (base32
4618 "1akaqwf3fvvvx4sgfn641fd4sj51s0701pvfl6s5hnz2k0iwh732"))))
4619 (build-system r-build-system)
4620 (propagated-inputs `(("r-nlme" ,r-nlme)))
4621 (native-inputs `(("gfortran" ,gfortran)))
4622 (home-page "https://cran.r-project.org/web/packages/urca/")
4623 (synopsis "Unit root and cointegration tests for time series data")
4624 (description
4625 "This package provides unit root and cointegration tests encountered in
4626 applied econometric analysis.")
4627 (license license:gpl2+)))
4628
4629 (define-public r-cubature
4630 (package
4631 (name "r-cubature")
4632 (version "2.0.4")
4633 (source
4634 (origin
4635 (method url-fetch)
4636 (uri (cran-uri "cubature" version))
4637 (sha256
4638 (base32
4639 "0jpyq8j7x06dpiz29w48av879ygldzgls9z810192hsymkmfaz6r"))))
4640 (build-system r-build-system)
4641 (propagated-inputs
4642 `(("r-rcpp" ,r-rcpp)))
4643 (home-page "https://github.com/bnaras/cubature")
4644 (synopsis "Adaptive multivariate integration over hypercubes")
4645 (description
4646 "This package is an R wrapper around the cubature C library for adaptive
4647 multivariate integration over hypercubes. This version provides both
4648 @code{hcubature} and @code{pcubature} routines in addition to a vector
4649 interface.")
4650 ;; The included cubature C library is released under GPLv2+, but the
4651 ;; wrapper declares the license to be GPLv3+.
4652 (license (list license:gpl2+ license:gpl3+))))
4653
4654 (define-public r-trend
4655 (package
4656 (name "r-trend")
4657 (version "1.1.2")
4658 (source
4659 (origin
4660 (method url-fetch)
4661 (uri (cran-uri "trend" version))
4662 (sha256
4663 (base32
4664 "09b6ycyfgs4xlhx6kn6qm5rl2acp58hzhv8qclzn3kb1wjjyvxy5"))))
4665 (build-system r-build-system)
4666 (propagated-inputs
4667 `(("r-extradistr" ,r-extradistr)))
4668 (native-inputs
4669 `(("gfortran" ,gfortran)))
4670 (home-page "https://cran.r-project.org/web/packages/trend/")
4671 (synopsis "Non-parametric trend tests and change-point detection")
4672 (description
4673 "The analysis of environmental data often requires the detection of
4674 trends and change-points. This package includes tests for trend
4675 detection (Cox-Stuart Trend Test, Mann-Kendall Trend Test, (correlated)
4676 Hirsch-Slack Test, partial Mann-Kendall Trend Test, multivariate (multisite)
4677 Mann-Kendall Trend Test, (Seasonal) Sen's slope, partial Pearson and Spearman
4678 correlation trend test), change-point detection (Lanzante's test procedures,
4679 Pettitt's test, Buishand Range Test, Buishand U Test, Standard Normal
4680 Homogeinity Test), detection of non-randomness (Wallis-Moore Phase Frequency
4681 Test, Bartels rank von Neumann's ratio test, Wald-Wolfowitz Test) and the two
4682 sample Robust Rank-Order Distributional Test.")
4683 (license license:gpl3)))
4684
4685 (define-public r-expm
4686 (package
4687 (name "r-expm")
4688 (version "0.999-4")
4689 (source
4690 (origin
4691 (method url-fetch)
4692 (uri (cran-uri "expm" version))
4693 (sha256
4694 (base32
4695 "15k0acg2aqb2ajhwal6l7vhhp03m4lg579805d34554cl0kn9l2q"))))
4696 (build-system r-build-system)
4697 (propagated-inputs `(("r-matrix" ,r-matrix)))
4698 (native-inputs `(("gfortran" ,gfortran)))
4699 (home-page "https://r-forge.r-project.org/projects/expm/")
4700 (synopsis "Tools for matrix exponentials and related quantities")
4701 (description
4702 "This package provides tools for the computation of the matrix
4703 exponential, logarithm, square root, and related quantities.")
4704 (license license:gpl2+)))
4705
4706 (define-public r-complexplus
4707 (package
4708 (name "r-complexplus")
4709 (version "2.1")
4710 (source
4711 (origin
4712 (method url-fetch)
4713 (uri (cran-uri "complexplus" version))
4714 (sha256
4715 (base32
4716 "16w9v7d1ckavqmr86l34frr37pkvdn0iqnb17ssb8xaggns5lgqx"))))
4717 (build-system r-build-system)
4718 (propagated-inputs
4719 `(("r-expm" ,r-expm)
4720 ("r-matrix" ,r-matrix)))
4721 (home-page "https://cran.r-project.org/web/packages/complexplus/")
4722 (synopsis "Functions of complex or real variables")
4723 (description
4724 "This package extends several functions to the complex domain, including
4725 the matrix exponential and logarithm, and the determinant.")
4726 (license license:gpl2)))
4727
4728 (define-public r-phontools
4729 (package
4730 (name "r-phontools")
4731 (version "0.2-2.1")
4732 (source
4733 (origin
4734 (method url-fetch)
4735 (uri (cran-uri "phonTools" version))
4736 (sha256
4737 (base32
4738 "01i481mhswsys3gpasw9gn6nxkfmi7bz46g5c84m13pg0cv8hxc7"))))
4739 (properties `((upstream-name . "phonTools")))
4740 (build-system r-build-system)
4741 (home-page "http://www.santiagobarreda.com/rscripts.html")
4742 (synopsis "Tools for phonetic and acoustic analyses")
4743 (description
4744 "This package contains tools for the organization, display, and analysis
4745 of the sorts of data frequently encountered in phonetics research and
4746 experimentation, including the easy creation of IPA vowel plots, and the
4747 creation and manipulation of WAVE audio files.")
4748 (license license:bsd-2)))
4749
4750 (define-public r-np
4751 (package
4752 (name "r-np")
4753 (version "0.60-10")
4754 (source
4755 (origin
4756 (method url-fetch)
4757 (uri (cran-uri "np" version))
4758 (sha256
4759 (base32
4760 "06h8k0kdv5s258jr6s08fabvlycrbs7iq34jk2f2hfmqm2y4nyx2"))))
4761 (build-system r-build-system)
4762 (propagated-inputs
4763 `(("r-boot" ,r-boot)
4764 ("r-cubature" ,r-cubature)
4765 ("r-quadprog" ,r-quadprog)
4766 ("r-quantreg" ,r-quantreg)))
4767 (home-page "https://github.com/JeffreyRacine/R-Package-np")
4768 (synopsis "Non-parametric kernel smoothing methods for mixed data types")
4769 (description "This package provides non-parametric (and semi-parametric)
4770 kernel methods that seamlessly handle a mix of continuous, unordered, and
4771 ordered factor data types.")
4772 ;; Any version of the GPL.
4773 (license license:gpl3+)))
4774
4775 (define-public r-powerplus
4776 (package
4777 (name "r-powerplus")
4778 (version "3.1")
4779 (source
4780 (origin
4781 (method url-fetch)
4782 (uri (cran-uri "powerplus" version))
4783 (sha256
4784 (base32
4785 "0ayp6x34hkzgris4j3zbbs0r23n81bhww3wgfyy630ri4sk6brrn"))))
4786 (build-system r-build-system)
4787 (propagated-inputs
4788 `(("r-complexplus" ,r-complexplus)
4789 ("r-expm" ,r-expm)
4790 ("r-mass" ,r-mass)
4791 ("r-matrix" ,r-matrix)
4792 ("r-phontools" ,r-phontools)))
4793 (home-page "https://cran.r-project.org/web/packages/powerplus/")
4794 (synopsis "Exponentiation operations")
4795 (description
4796 "This package provides tools for the computation of matrix and scalar
4797 exponentiation.")
4798 (license license:gpl2)))
4799
4800 (define-public r-egg
4801 (package
4802 (name "r-egg")
4803 (version "0.4.5")
4804 (source
4805 (origin
4806 (method url-fetch)
4807 (uri (cran-uri "egg" version))
4808 (sha256
4809 (base32
4810 "1fy7srpiavfn8kyrr1m84an7acgwi6ydzrg71m3b0vk7y9ybmj0m"))))
4811 (properties `((upstream-name . "egg")))
4812 (build-system r-build-system)
4813 (propagated-inputs
4814 `(("r-ggplot2" ,r-ggplot2)
4815 ("r-gridextra" ,r-gridextra)
4816 ("r-gtable" ,r-gtable)))
4817 (home-page "https://cran.r-project.org/web/packages/egg")
4818 (synopsis "Extensions for ggplot2")
4819 (description
4820 "This package provides miscellaneous functions to help customize ggplot2
4821 objects. High-level functions are provided to post-process ggplot2 layouts
4822 and allow alignment between plot panels, as well as setting panel sizes to
4823 fixed values. Other functions include a custom @code{geom}, and helper
4824 functions to enforce symmetric scales or add tags to facetted plots.")
4825 (license license:gpl3)))
4826
4827 (define-public r-heatmaply
4828 (package
4829 (name "r-heatmaply")
4830 (version "1.1.0")
4831 (source
4832 (origin
4833 (method url-fetch)
4834 (uri (cran-uri "heatmaply" version))
4835 (sha256
4836 (base32
4837 "133q8ir45vhfxs2lnd96k97g21ihg2arfhp349kmk339pk32fcxz"))))
4838 (build-system r-build-system)
4839 (propagated-inputs
4840 `(("r-assertthat" ,r-assertthat)
4841 ("r-colorspace" ,r-colorspace)
4842 ("r-dendextend" ,r-dendextend)
4843 ("r-egg" ,r-egg)
4844 ("r-ggplot2" ,r-ggplot2)
4845 ("r-htmlwidgets" ,r-htmlwidgets)
4846 ("r-magrittr" ,r-magrittr)
4847 ("r-plotly" ,r-plotly)
4848 ("r-rcolorbrewer" ,r-rcolorbrewer)
4849 ("r-reshape2" ,r-reshape2)
4850 ("r-scales" ,r-scales)
4851 ("r-seriation" ,r-seriation)
4852 ("r-viridis" ,r-viridis)
4853 ("r-webshot" ,r-webshot)))
4854 (native-inputs
4855 `(("r-knitr" ,r-knitr)))
4856 (home-page "https://cran.r-project.org/package=heatmaply")
4857 (synopsis "Interactive cluster heat maps using plotly")
4858 (description
4859 "This package enables you to create interactive cluster heatmaps that can
4860 be saved as a stand-alone HTML file, embedded in R Markdown documents or in a
4861 Shiny app, and made available in the RStudio viewer pane. Hover the mouse
4862 pointer over a cell to show details or drag a rectangle to zoom. A heatmap is
4863 a popular graphical method for visualizing high-dimensional data, in which a
4864 table of numbers is encoded as a grid of colored cells. The rows and columns
4865 of the matrix are ordered to highlight patterns and are often accompanied by
4866 dendrograms.")
4867 ;; Either version of the license.
4868 (license (list license:gpl2 license:gpl3))))
4869
4870 (define-public r-h5
4871 (package
4872 (name "r-h5")
4873 (version "0.9.9")
4874 (source
4875 (origin
4876 (method url-fetch)
4877 (uri (cran-uri "h5" version))
4878 (sha256
4879 (base32
4880 "14p7i1sj24ky87kd7qr3n9fc9l64s0bp0rwbyl6i2x69xn75gpsx"))))
4881 (build-system r-build-system)
4882 (inputs
4883 `(("zlib" ,zlib)
4884 ("hdf5" ,hdf5)))
4885 (native-inputs
4886 `(("which" ,which)))
4887 (propagated-inputs
4888 `(("r-rcpp" ,r-rcpp)))
4889 (home-page "https://github.com/mannau/h5")
4890 (synopsis "Interface to the HDF5 Library")
4891 (description
4892 "This package provides an S4 interface to the HDF5 library supporting
4893 fast storage and retrieval of R-objects like vectors, matrices and arrays to
4894 binary files in a language independent format. The HDF5 format can therefore
4895 be used as an alternative to R's save/load mechanism. Since h5 is able to
4896 access only subsets of stored data it can also handle data sets which do not
4897 fit into memory.")
4898 (license license:bsd-2)))
4899
4900 (define-public r-cgdsr
4901 (package
4902 (name "r-cgdsr")
4903 (version "1.3.0")
4904 (source
4905 (origin
4906 (method url-fetch)
4907 (uri (cran-uri "cgdsr" version))
4908 (sha256
4909 (base32
4910 "07yc819hkabpzzh0g0cbqza6bcfy67b2marrzz1lj97f9iba78ja"))))
4911 (build-system r-build-system)
4912 (propagated-inputs
4913 `(("r-httr" ,r-httr)
4914 ("r-r-methodss3" ,r-r-methodss3)
4915 ("r-r-oo" ,r-r-oo)))
4916 (home-page "https://github.com/cBioPortal/cgdsr")
4917 (synopsis "R-based API for accessing the MSKCC Cancer Genomics Data Server")
4918 (description
4919 "This package provides a basic set of R functions for querying the Cancer
4920 Genomics Data Server (CGDS), hosted by the Computational Biology Center at
4921 Memorial-Sloan-Kettering Cancer Center (MSKCC).")
4922 (license license:lgpl3)))
4923
4924 (define-public r-import
4925 (package
4926 (name "r-import")
4927 (version "1.1.0")
4928 (source
4929 (origin
4930 (method url-fetch)
4931 (uri (cran-uri "import" version))
4932 (sha256
4933 (base32
4934 "0blf9539rbfwcmw8zsb4k58slb4pdnc075v34vmyjw752fznhcji"))))
4935 (build-system r-build-system)
4936 (home-page "https://github.com/smbache/import")
4937 (synopsis "Import mechanism for R")
4938 (description
4939 "This is an alternative mechanism for importing objects from packages.
4940 The syntax allows for importing multiple objects from a package with a single
4941 command in an expressive way. The import package bridges some of the gap
4942 between using @code{library} (or @code{require}) and direct (single-object)
4943 imports. Furthermore the imported objects are not placed in the current
4944 environment. It is also possible to import objects from stand-alone @code{.R}
4945 files.")
4946 (license license:expat)))
4947
4948 (define-public r-shinyace
4949 (package
4950 (name "r-shinyace")
4951 (version "0.4.1")
4952 (source
4953 (origin
4954 (method url-fetch)
4955 (uri (cran-uri "shinyAce" version))
4956 (sha256
4957 (base32
4958 "1m33dfm2kjirvgix7ybv1kbzgjkicdpv411g9c0q3fw6rnyhfxxn"))))
4959 (properties `((upstream-name . "shinyAce")))
4960 (build-system r-build-system)
4961 (propagated-inputs
4962 `(("r-shiny" ,r-shiny)
4963 ("r-jsonlite" ,r-jsonlite)))
4964 (home-page "https://cran.r-project.org/web/packages/shinyAce/")
4965 (synopsis "Ace editor bindings for Shiny")
4966 (description
4967 "This package provides Ace editor bindings to enable a rich text editing
4968 environment within Shiny.")
4969 (license license:expat)))
4970
4971 (define-public r-randomizr
4972 (package
4973 (name "r-randomizr")
4974 (version "0.20.0")
4975 (source
4976 (origin
4977 (method url-fetch)
4978 (uri (cran-uri "randomizr" version))
4979 (sha256
4980 (base32
4981 "0dljyfldnardaps3fq6vi5wcs9x6qfaq5apapa78c51lnaa6fn9h"))))
4982 (properties `((upstream-name . "randomizr")))
4983 (build-system r-build-system)
4984 (native-inputs
4985 `(("r-knitr" ,r-knitr)))
4986 (home-page "https://declaredesign.org/r/randomizr/")
4987 (synopsis "Tools for common forms of random assignment and sampling")
4988 (description
4989 "This package provides tools for generating random assignments for common
4990 experimental designs and random samples for common sampling designs.")
4991 (license license:expat)))
4992
4993 (define-public r-base64url
4994 (package
4995 (name "r-base64url")
4996 (version "1.4")
4997 (source
4998 (origin
4999 (method url-fetch)
5000 (uri (cran-uri "base64url" version))
5001 (sha256
5002 (base32
5003 "0n1c2b68vza1dh7sk38v6biiwm72c4jpl79kpdg1bsb0hq9qy18x"))))
5004 (build-system r-build-system)
5005 (propagated-inputs
5006 `(("r-backports" ,r-backports)))
5007 (home-page "https://github.com/mllg/base64url")
5008 (synopsis "Fast and URL-safe base64 encoder and decoder")
5009 (description
5010 "This package provides a URL-safe base64 encoder and decoder. In
5011 contrast to RFC3548, the 62nd character (@code{+}) is replaced with @code{-},
5012 the 63rd character (@code{/}) is replaced with @code{_}. Furthermore, the
5013 encoder does not fill the string with trailing @code{=}. The resulting
5014 encoded strings comply to the regular expression pattern @code{[A-Za-z0-9_-]}
5015 and thus are safe to use in URLs or for file names. The package also comes
5016 with a simple base32 encoder/decoder suited for case insensitive file
5017 systems.")
5018 (license license:gpl3)))
5019
5020 (define-public r-radiant-data
5021 (package
5022 (name "r-radiant-data")
5023 (version "1.3.4")
5024 (source
5025 (origin
5026 (method url-fetch)
5027 (uri (cran-uri "radiant.data" version))
5028 (sha256
5029 (base32
5030 "19sjjb49inrfl7jzq4zpwhdslni0zrp30bl58pisin29ka3ylpzs"))
5031 (modules '((guix build utils)))
5032 (snippet
5033 '(begin
5034 ;; Delete files that are under CC-NC-SA.
5035 (delete-file-recursively "inst/app/tools/help")
5036 #t))))
5037 (properties `((upstream-name . "radiant.data")))
5038 (build-system r-build-system)
5039 (propagated-inputs
5040 `(("r-base64enc" ,r-base64enc)
5041 ("r-broom" ,r-broom)
5042 ("r-car" ,r-car)
5043 ("r-curl" ,r-curl)
5044 ("r-dplyr" ,r-dplyr)
5045 ("r-dt" ,r-dt)
5046 ("r-glue" ,r-glue)
5047 ("r-ggplot2" ,r-ggplot2)
5048 ("r-import" ,r-import)
5049 ("r-jsonlite" ,r-jsonlite)
5050 ("r-knitr" ,r-knitr)
5051 ("r-lubridate" ,r-lubridate)
5052 ("r-magrittr" ,r-magrittr)
5053 ("r-markdown" ,r-markdown)
5054 ("r-mass" ,r-mass)
5055 ("r-patchwork" ,r-patchwork)
5056 ("r-plotly" ,r-plotly)
5057 ("r-psych" ,r-psych)
5058 ("r-randomizr" ,r-randomizr)
5059 ("r-readr" ,r-readr)
5060 ("r-readxl" ,r-readxl)
5061 ("r-rlang" ,r-rlang)
5062 ("r-rmarkdown" ,r-rmarkdown)
5063 ("r-rstudioapi" ,r-rstudioapi)
5064 ("r-scales" ,r-scales)
5065 ("r-shiny" ,r-shiny)
5066 ("r-shinyfiles" ,r-shinyfiles)
5067 ("r-shinyace" ,r-shinyace)
5068 ("r-stringi" ,r-stringi)
5069 ("r-tibble" ,r-tibble)
5070 ("r-tidyr" ,r-tidyr)
5071 ("r-writexl" ,r-writexl)))
5072 (home-page "https://github.com/radiant-rstats/radiant.data")
5073 (synopsis "Data menu for Radiant: business analytics using R and Shiny")
5074 (description
5075 "The Radiant Data menu includes interfaces for loading, saving, viewing,
5076 visualizing, summarizing, transforming, and combining data. It also contains
5077 functionality to generate reproducible reports of the analyses conducted in
5078 the application.")
5079 (license license:agpl3)))
5080
5081 (define-public r-algdesign
5082 (package
5083 (name "r-algdesign")
5084 (version "1.2.0")
5085 (source
5086 (origin
5087 (method url-fetch)
5088 (uri (cran-uri "AlgDesign" version))
5089 (sha256
5090 (base32 "0ammlg148gk0p24fh700116nd66636np0jb1wwh0axq5jphwk1pz"))))
5091 (properties `((upstream-name . "AlgDesign")))
5092 (build-system r-build-system)
5093 (home-page "https://github.com/jvbraun/AlgDesign")
5094 (synopsis "Algorithmic experimental design")
5095 (description
5096 "This package provides tools to calculate exact and approximate theory
5097 experimental designs for D, A, and I criteria. Very large designs may be
5098 created. Experimental designs may be blocked or blocked designs created from
5099 a candidate list, using several criteria. The blocking can be done when whole
5100 and within plot factors interact.")
5101 (license license:gpl2+)))
5102
5103 (define-public r-signal
5104 (package
5105 (name "r-signal")
5106 (version "0.7-6")
5107 (source
5108 (origin
5109 (method url-fetch)
5110 (uri (cran-uri "signal" version))
5111 (sha256
5112 (base32
5113 "1vsxramz5qd9q9s3vlqzmfdpmwl2rhlb2n904zw6f0fg0xxjfq3b"))))
5114 (build-system r-build-system)
5115 (propagated-inputs `(("r-mass" ,r-mass)))
5116 (native-inputs `(("gfortran" ,gfortran)))
5117 (home-page "https://cran.r-project.org/web/packages/signal/")
5118 (synopsis "Signal processing")
5119 (description
5120 "This package provides a set of signal processing functions originally
5121 written for Matlab and GNU Octave. It includes filter generation utilities,
5122 filtering functions, resampling routines, and visualization of filter models.
5123 It also includes interpolation functions.")
5124 (license license:gpl2)))
5125
5126 (define-public r-gsubfn
5127 (package
5128 (name "r-gsubfn")
5129 (version "0.7")
5130 (source
5131 (origin
5132 (method url-fetch)
5133 (uri (cran-uri "gsubfn" version))
5134 (sha256
5135 (base32
5136 "00j6b8b6xsx6v370h220x233rpk6asca78165y3d48jpwvwisdc9"))))
5137 (build-system r-build-system)
5138 (propagated-inputs `(("r-proto" ,r-proto)))
5139 (home-page "https://code.google.com/archive/p/gsubfn/")
5140 (synopsis "Utilities for strings and function arguments.")
5141 (description
5142 "This package provides @code{gsubfn} which is like @code{gsub} but can
5143 take a replacement function or certain other objects instead of the
5144 replacement string. Matches and back references are input to the replacement
5145 function and replaced by the function output. @code{gsubfn} can be used to
5146 split strings based on content rather than delimiters and for quasi-perl-style
5147 string interpolation. The package also has facilities for translating
5148 formulas to functions and allowing such formulas in function calls instead of
5149 functions.")
5150 (license license:gpl2+)))
5151
5152 (define-public r-sqldf
5153 (package
5154 (name "r-sqldf")
5155 (version "0.4-11")
5156 (source
5157 (origin
5158 (method url-fetch)
5159 (uri (cran-uri "sqldf" version))
5160 (sha256
5161 (base32
5162 "0q12vsb53p2wchgp8wfz5bk08wfnm0jxjrakclj4jyy6x3a7ksff"))))
5163 (build-system r-build-system)
5164 (propagated-inputs
5165 `(("r-chron" ,r-chron)
5166 ("r-dbi" ,r-dbi)
5167 ("r-gsubfn" ,r-gsubfn)
5168 ("r-proto" ,r-proto)
5169 ("r-rsqlite" ,r-rsqlite)))
5170 (home-page "https://github.com/ggrothendieck/sqldf")
5171 (synopsis "Manipulate R data frames using SQL")
5172 (description
5173 "The @code{sqldf} function is typically passed a single argument which is
5174 an SQL select statement where the table names are ordinary R data frame names.
5175 @code{sqldf} transparently sets up a database, imports the data frames into
5176 that database, performs the SQL statement and returns the result using a
5177 heuristic to determine which class to assign to each column of the returned
5178 data frame. The @code{sqldf} or @code{read.csv.sql} functions can also be
5179 used to read filtered files into R even if the original files are larger than
5180 R itself can handle.")
5181 (license license:gpl2)))
5182
5183 (define-public r-abind
5184 (package
5185 (name "r-abind")
5186 (version "1.4-5")
5187 (source
5188 (origin
5189 (method url-fetch)
5190 (uri (cran-uri "abind" version))
5191 (sha256
5192 (base32
5193 "0b1zd8jbnl6l292cr9rb50m09fy3ylxvzkpgi5lfb1nbzddcwfis"))))
5194 (build-system r-build-system)
5195 (home-page "https://cran.r-project.org/web/packages/abind/")
5196 (synopsis "Combine multidimensional arrays")
5197 (description
5198 "This package provides tools to combine multidimensional arrays into a
5199 single array. This is a generalization of @code{cbind} and @code{rbind}. It
5200 works with vectors, matrices, and higher-dimensional arrays. It also provides
5201 the functions @code{adrop}, @code{asub}, and @code{afill} for manipulating,
5202 extracting and replacing data in arrays.")
5203 (license license:lgpl2.0+)))
5204
5205 (define-public r-prroc
5206 (package
5207 (name "r-prroc")
5208 (version "1.3.1")
5209 (source
5210 (origin
5211 (method url-fetch)
5212 (uri (cran-uri "PRROC" version))
5213 (sha256
5214 (base32
5215 "1m28h8pcd78049lz2qixhkcr9h5b3jik3maqzfbvq9y58z71i4a7"))))
5216 (properties `((upstream-name . "PRROC")))
5217 (build-system r-build-system)
5218 (home-page "https://cran.r-project.org/web/packages/PRROC/")
5219 (synopsis "Precision-Recall and ROC curves for weighted and unweighted data")
5220 (description
5221 "This package computes the areas under the @dfn{precision-recall} (PR)
5222 and ROC curve for weighted (e.g. soft-labeled) and unweighted data. In
5223 contrast to other implementations, the interpolation between points of the PR
5224 curve is done by a non-linear piecewise function. In addition to the areas
5225 under the curves, the curves themselves can also be computed and plotted by a
5226 specific S3-method.")
5227 (license license:gpl3)))
5228
5229 (define-public r-vim
5230 (package
5231 (name "r-vim")
5232 (version "5.1.1")
5233 (source
5234 (origin
5235 (method url-fetch)
5236 (uri (cran-uri "VIM" version))
5237 (sha256
5238 (base32
5239 "0w22ir0gvym7gqd6nw2j7w5ivlb3az1dkfxv33imimkb7c83056a"))))
5240 (properties `((upstream-name . "VIM")))
5241 (build-system r-build-system)
5242 (propagated-inputs
5243 `(("r-car" ,r-car)
5244 ("r-colorspace" ,r-colorspace)
5245 ("r-data-table" ,r-data-table)
5246 ("r-e1071" ,r-e1071)
5247 ("r-laeken" ,r-laeken)
5248 ("r-magrittr" ,r-magrittr)
5249 ("r-mass" ,r-mass)
5250 ("r-nnet" ,r-nnet)
5251 ("r-ranger" ,r-ranger)
5252 ("r-rcpp" ,r-rcpp)
5253 ("r-robustbase" ,r-robustbase)
5254 ("r-sp" ,r-sp)
5255 ("r-vcd" ,r-vcd)))
5256 (home-page "https://github.com/alexkowa/VIM")
5257 (synopsis "Visualization and imputation of missing values")
5258 (description
5259 "This package provides tools for the visualization of missing and/or
5260 imputed values are introduced, which can be used for exploring the data and
5261 the structure of the missing and/or imputed values. Depending on this
5262 structure of the missing values, the corresponding methods may help to
5263 identify the mechanism generating the missing values and allows to explore the
5264 data including missing values. In addition, the quality of imputation can be
5265 visually explored using various univariate, bivariate, multiple and
5266 multivariate plot methods.")
5267 (license license:gpl2+)))
5268
5269 (define-public r-fnn
5270 (package
5271 (name "r-fnn")
5272 (version "1.1.3")
5273 (source
5274 (origin
5275 (method url-fetch)
5276 (uri (cran-uri "FNN" version))
5277 (sha256
5278 (base32
5279 "0cllqlnynm5yaj4r64mqyyfc8phkb38rwssq8k8ikgfgr4jklxny"))))
5280 (properties `((upstream-name . "FNN")))
5281 (build-system r-build-system)
5282 (home-page "https://cran.r-project.org/web/packages/FNN")
5283 (synopsis "Fast nearest neighbor search algorithms and applications")
5284 (description
5285 "This package provides cover-tree and kd-tree fast k-nearest neighbor
5286 search algorithms. Related applications including KNN classification,
5287 regression and information measures are implemented.")
5288 ;; The DESCRIPTION file erroneously states that GPL version 2.1 or
5289 ;; later can be used.
5290 (license license:gpl2+)))
5291
5292 (define-public r-smoother
5293 (package
5294 (name "r-smoother")
5295 (version "1.1")
5296 (source
5297 (origin
5298 (method url-fetch)
5299 (uri (cran-uri "smoother" version))
5300 (sha256
5301 (base32
5302 "0nqr1bvlr5bnasqg74zmknjjl4x28kla9h5cxpga3kq5z215pdci"))))
5303 (build-system r-build-system)
5304 (propagated-inputs
5305 `(("r-ttr" ,r-ttr)))
5306 (home-page "https://cran.r-project.org/web/packages/smoother")
5307 (synopsis "Functions relating to the smoothing of numerical data")
5308 (description
5309 "This package provides a collection of methods for smoothing numerical
5310 data, commencing with a port of the Matlab gaussian window smoothing function.
5311 In addition, several functions typically used in smoothing of financial data
5312 are included.")
5313 (license license:gpl2)))
5314
5315 (define-public r-riverplot
5316 (package
5317 (name "r-riverplot")
5318 (version "0.6")
5319 (source
5320 (origin
5321 (method url-fetch)
5322 (uri (cran-uri "riverplot" version))
5323 (sha256
5324 (base32
5325 "0q1icpny8nkxyjhawyjzwrw8qlz0ayn2xyrsqrm4vkxyv6c9xk8z"))))
5326 (build-system r-build-system)
5327 (home-page "https://logfc.wordpress.com")
5328 (synopsis "Sankey or ribbon plots")
5329 (description
5330 "Sankey plots are a type of diagram that is convenient to illustrate how
5331 flow of information, resources etc. separates and joins, much like observing
5332 how rivers split and merge. For example, they can be used to compare
5333 different clusterings. This package provides an implementation of Sankey
5334 plots for R.")
5335 (license license:gpl2+)))
5336
5337 (define-public r-dyn
5338 (package
5339 (name "r-dyn")
5340 (version "0.2-9.6")
5341 (source
5342 (origin
5343 (method url-fetch)
5344 (uri (cran-uri "dyn" version))
5345 (sha256
5346 (base32
5347 "16fqv9k7yxdgybwzafjkyqm16qpgqz13lcjpi6a1nc8xbzlzh0gb"))))
5348 (build-system r-build-system)
5349 (propagated-inputs
5350 `(("r-zoo" ,r-zoo)))
5351 (home-page "https://cran.r-project.org/web/packages/dyn")
5352 (synopsis "Time series regression")
5353 (description
5354 "This package provides the dyn class interfaces @code{ts}, @code{irts},
5355 @code{zoo} and @code{zooreg} time series classes to @code{lm}, @code{glm},
5356 @code{loess}, @code{quantreg::rq}, @code{MASS::rlm},
5357 @code{MCMCpack::MCMCregress()}, @code{quantreg::rq()},
5358 @code{randomForest::randomForest()} and other regression functions, allowing
5359 those functions to be used with time series including specifications that may
5360 contain lags, diffs and missing values.")
5361 ;; Any GPL version.
5362 (license license:gpl2+)))
5363
5364 (define-public r-catdap
5365 (package
5366 (name "r-catdap")
5367 (version "1.3.5")
5368 (source
5369 (origin
5370 (method url-fetch)
5371 (uri (cran-uri "catdap" version))
5372 (sha256
5373 (base32
5374 "0fyhl69z2lznymvpzxra9qvcg85ggzkfjy68c6mzdmf1ja44d2k5"))))
5375 (build-system r-build-system)
5376 (native-inputs
5377 `(("gfortran" ,gfortran)))
5378 (home-page "https://cran.r-project.org/web/packages/catdap/")
5379 (synopsis "Tools for categorical data analysis")
5380 (description
5381 "This package provides functions for analyzing multivariate data.
5382 Dependencies of the distribution of the specified variable (response
5383 variable) to other variables (explanatory variables) are derived and
5384 evaluated by the @dfn{Akaike Information Criterion} (AIC).")
5385 (license license:gpl2+)))
5386
5387 (define-public r-arules
5388 (package
5389 (name "r-arules")
5390 (version "1.6-4")
5391 (source
5392 (origin
5393 (method url-fetch)
5394 (uri (cran-uri "arules" version))
5395 (sha256
5396 (base32
5397 "003c5cd3xzq39h7c19px077ygm0n1v7k83icy5zzrnkagyds2p8n"))))
5398 (build-system r-build-system)
5399 (propagated-inputs
5400 `(("r-matrix" ,r-matrix)))
5401 (home-page "https://github.com/mhahsler/arules")
5402 (synopsis "Mining association rules and frequent itemsets")
5403 (description
5404 "This package provides an infrastructure for representing, manipulating
5405 and analyzing transaction data and patterns (frequent itemsets and association rules).
5406 It also provides C implementations of the association mining algorithms Apriori
5407 and Eclat.")
5408 (license license:gpl3)))
5409
5410 (define-public r-parsedate
5411 (package
5412 (name "r-parsedate")
5413 (version "1.2.0")
5414 (source
5415 (origin
5416 (method url-fetch)
5417 (uri (cran-uri "parsedate" version))
5418 (sha256
5419 (base32
5420 "0gb3w6hmwxayhijpf36p5dk4h6bbdps57x3cgikwvvxkgi83rarr"))))
5421 (build-system r-build-system)
5422 (propagated-inputs
5423 `(("r-rematch2" ,r-rematch2)))
5424 (home-page "https://github.com/gaborcsardi/parsedate")
5425 (synopsis
5426 "Recognize and parse dates in various formats")
5427 (description
5428 "This package provides three functions for dealing with dates:
5429 @code{parse_iso_8601} recognizes and parses all valid ISO 8601 date and
5430 time formats, @code{parse_date} parses dates in unspecified formats,
5431 and @code{format_iso_8601} formats a date in ISO 8601 format.")
5432 (license license:gpl2)))
5433
5434 (define-public r-abc-data
5435 (package
5436 (name "r-abc-data")
5437 (version "1.0")
5438 (source
5439 (origin
5440 (method url-fetch)
5441 (uri (cran-uri "abc.data" version))
5442 (sha256
5443 (base32
5444 "1bv1n68ah714ws58cf285n2s2v5vn7382lfjca4jxph57lyg8hmj"))))
5445 (properties `((upstream-name . "abc.data")))
5446 (build-system r-build-system)
5447 (home-page "https://cran.r-project.org/web/packages/abc.data/")
5448 (synopsis "Data for Approximate Bayesian Computation (ABC) package")
5449 (description
5450 "This package contains data which are used by functions of the abc
5451 package which implements several @dfn{Approximate Bayesian Computation} (ABC)
5452 algorithms for performing parameter estimation, model selection, and
5453 goodness-of-fit.")
5454 (license license:gpl3+)))
5455
5456 (define-public r-abc
5457 (package
5458 (name "r-abc")
5459 (version "2.1")
5460 (source
5461 (origin
5462 (method url-fetch)
5463 (uri (cran-uri "abc" version))
5464 (sha256
5465 (base32
5466 "0ngzaaz2y2s03fhngvwipmy4kq38xrmyddaz6a6l858rxvadrlhb"))))
5467 (build-system r-build-system)
5468 (propagated-inputs
5469 `(("r-abc-data" ,r-abc-data)
5470 ("r-locfit" ,r-locfit)
5471 ("r-mass" ,r-mass)
5472 ("r-nnet" ,r-nnet)
5473 ("r-quantreg" ,r-quantreg)))
5474 (home-page "https://cran.r-project.org/web/packages/abc/")
5475 (synopsis "Tools for Approximate Bayesian Computation (ABC)")
5476 (description
5477 "This package implements several @dfn{Approximate Bayesian
5478 Computation} (ABC) algorithms for performing parameter estimation, model
5479 selection, and goodness-of-fit. Cross-validation tools are also available for
5480 measuring the accuracy of ABC estimates, and to calculate the
5481 misclassification probabilities of different models.")
5482 (license license:gpl3+)))
5483
5484 (define-public r-zip
5485 (package
5486 (name "r-zip")
5487 (version "2.0.4")
5488 (source
5489 (origin
5490 (method url-fetch)
5491 (uri (cran-uri "zip" version))
5492 (sha256
5493 (base32
5494 "1c02amk3pl6xir5jnbfiwiv2wvpkpbkkb1w71y6lf2yk7g3d0pdb"))))
5495 (build-system r-build-system)
5496 (home-page "https://github.com/gaborcsardi/zip")
5497 (synopsis "Cross-platform Zip compression")
5498 (description
5499 "This package provides a cross-platform Zip compression library for R.
5500 It is a replacement for the @code{zip} function, that does not require any
5501 additional external tools on any platform.")
5502 (license license:cc0)))
5503
5504 (define-public r-openxlsx
5505 (package
5506 (name "r-openxlsx")
5507 (version "4.1.4")
5508 (source
5509 (origin
5510 (method url-fetch)
5511 (uri (cran-uri "openxlsx" version))
5512 (sha256
5513 (base32
5514 "1mwxldw9i9nfksx1i6h1kfs7vmsz9fgyllbsipar4vnfyqhqp8q7"))))
5515 (build-system r-build-system)
5516 (propagated-inputs
5517 `(("r-rcpp" ,r-rcpp)
5518 ("r-stringi" ,r-stringi)
5519 ("r-zip" ,r-zip)))
5520 (home-page "https://github.com/awalker89/openxlsx")
5521 (synopsis "Read, write and edit XLSX files")
5522 (description
5523 "This package simplifies the creation of Excel @code{.xlsx} files by
5524 providing a high level interface to writing, styling and editing worksheets.
5525 Through the use of Rcpp, read/write times are comparable to the @code{xlsx}
5526 and @code{XLConnect} packages with the added benefit of removing the
5527 dependency on Java.")
5528 (license license:gpl3)))
5529
5530 (define-public r-rio
5531 (package
5532 (name "r-rio")
5533 (version "0.5.16")
5534 (source
5535 (origin
5536 (method url-fetch)
5537 (uri (cran-uri "rio" version))
5538 (sha256
5539 (base32
5540 "0rfl56fdawlhc98451a9lcb6a6m56kw0i7dvd5hx58z025d8vsyk"))))
5541 (build-system r-build-system)
5542 (propagated-inputs
5543 `(("r-curl" ,r-curl)
5544 ("r-data-table" ,r-data-table)
5545 ("r-foreign" ,r-foreign)
5546 ("r-haven" ,r-haven)
5547 ("r-openxlsx" ,r-openxlsx)
5548 ("r-readxl" ,r-readxl)
5549 ("r-tibble" ,r-tibble)))
5550 (home-page "https://github.com/leeper/rio")
5551 (synopsis "Swiss-army knife for data I/O")
5552 (description
5553 "This package provides streamlined data import and export infrastructure
5554 by making assumptions that the user is probably willing to make: @code{import}
5555 and @code{export} determine the data structure from the file extension,
5556 reasonable defaults are used for data import and export (e.g.,
5557 @code{stringsAsFactors=FALSE}), web-based import is natively
5558 supported (including from SSL/HTTPS), compressed files can be read directly
5559 without explicit decompression, and fast import packages are used where
5560 appropriate. An additional convenience function, @code{convert}, provides a
5561 simple method for converting between file types.")
5562 (license license:gpl2)))
5563
5564 (define-public r-maptools
5565 (package
5566 (name "r-maptools")
5567 (version "0.9-9")
5568 (source
5569 (origin
5570 (method url-fetch)
5571 (uri (cran-uri "maptools" version))
5572 (sha256
5573 (base32
5574 "0v4llkxk8qs61vq4ykvaim4k23aagdaz0p62ns7zfq02sln3pfk9"))))
5575 (build-system r-build-system)
5576 (propagated-inputs
5577 `(("r-foreign" ,r-foreign)
5578 ("r-lattice" ,r-lattice)
5579 ("r-sp" ,r-sp)))
5580 (home-page "https://r-forge.r-project.org/projects/maptools/")
5581 (synopsis "Tools for reading and handling spatial objects")
5582 (description
5583 "This package provides a set of tools for manipulating and reading
5584 geographic data, in particular ESRI Shapefiles. It includes binary access to
5585 GSHHG shoreline files. The package also provides interface wrappers for
5586 exchanging spatial objects with other R packages.")
5587 ;; The C source files from shapelib are released under the Expat license.
5588 ;; The R code is released under GPL version 2 or later.
5589 (license (list license:gpl2+
5590 license:expat))))
5591
5592 (define-public r-later
5593 (package
5594 (name "r-later")
5595 (version "1.0.0")
5596 (source
5597 (origin
5598 (method url-fetch)
5599 (uri (cran-uri "later" version))
5600 (sha256
5601 (base32
5602 "11xjavj7siz0xv2ffq1ld4bwl35jyrcfpvvs4p3ilpifxx49hyr7"))))
5603 (build-system r-build-system)
5604 (propagated-inputs
5605 `(("r-bh" ,r-bh)
5606 ("r-rcpp" ,r-rcpp)
5607 ("r-rlang" ,r-rlang)))
5608 (home-page "https://github.com/r-lib/later")
5609 (synopsis "Utilities for delaying function execution")
5610 (description
5611 "This package provides tools to execute arbitrary R or C functions some
5612 time after the current time, after the R execution stack has emptied.")
5613 (license license:gpl2+)))
5614
5615 (define-public r-promises
5616 (package
5617 (name "r-promises")
5618 (version "1.1.0")
5619 (source
5620 (origin
5621 (method url-fetch)
5622 (uri (cran-uri "promises" version))
5623 (sha256
5624 (base32
5625 "01l0ydjvvy6afcg5d6pzvk1ikd3djq8n2flv8c831ksn68z0zsn8"))))
5626 (build-system r-build-system)
5627 (propagated-inputs
5628 `(("r-later" ,r-later)
5629 ("r-magrittr" ,r-magrittr)
5630 ("r-r6" ,r-r6)
5631 ("r-rcpp" ,r-rcpp)
5632 ("r-rlang" ,r-rlang)))
5633 (home-page "https://rstudio.github.io/promises")
5634 (synopsis "Abstractions for promise-based asynchronous programming")
5635 (description
5636 "This package provides fundamental abstractions for doing asynchronous
5637 programming in R using promises. Asynchronous programming is useful for
5638 allowing a single R process to orchestrate multiple tasks in the background
5639 while also attending to something else. Semantics are similar to JavaScript
5640 promises, but with a syntax that is idiomatic R.")
5641 (license license:expat)))
5642
5643 (define-public r-dosnow
5644 (package
5645 (name "r-dosnow")
5646 (version "1.0.18")
5647 (source
5648 (origin
5649 (method url-fetch)
5650 (uri (cran-uri "doSNOW" version))
5651 (sha256
5652 (base32
5653 "0rj72z5505cprh6wykhhiz08l9bmd966srqh2qypwivf321bvrvh"))))
5654 (properties `((upstream-name . "doSNOW")))
5655 (build-system r-build-system)
5656 (propagated-inputs
5657 `(("r-foreach" ,r-foreach)
5658 ("r-iterators" ,r-iterators)
5659 ("r-snow" ,r-snow)))
5660 (home-page "https://cran.r-project.org/web/packages/doSNOW")
5661 (synopsis "Foreach parallel adaptor for the snow package")
5662 (description
5663 "This package provides a parallel backend for the @code{%dopar%} function
5664 using the @code{snow} package.")
5665 (license license:gpl2)))
5666
5667 (define-public r-snowfall
5668 (package
5669 (name "r-snowfall")
5670 (version "1.84-6.1")
5671 (source (origin
5672 (method url-fetch)
5673 (uri (cran-uri "snowfall" version))
5674 (sha256
5675 (base32 "13941rlw1jsdjsndp1plzj1cq5aqravizkrqn6l25r9im7rnsi2w"))))
5676 (build-system r-build-system)
5677 (propagated-inputs
5678 `(("r-snow" ,r-snow)))
5679 (home-page "https://cran.r-project.org/web/packages/snowfall/")
5680 (synopsis "Easier cluster computing")
5681 (description "This package is a usability wrapper around snow for easier
5682 development of parallel R programs. This package offers e.g. extended error
5683 checks, and additional functions. All functions work in sequential mode, too,
5684 if no cluster is present or wished. The package is also designed as connector
5685 to the cluster management tool @code{sfCluster}, but can also used without
5686 it.")
5687 (license license:gpl2+)))
5688
5689 (define-public r-rappdirs
5690 (package
5691 (name "r-rappdirs")
5692 (version "0.3.1")
5693 (source
5694 (origin
5695 (method url-fetch)
5696 (uri (cran-uri "rappdirs" version))
5697 (sha256
5698 (base32
5699 "0ji6sg3bdn5gazkq14xmmcq7jnbsyxw4lzmmbgv6526j2vn93n1g"))))
5700 (build-system r-build-system)
5701 (home-page "https://cran.r-project.org/web/packages/rappdirs/")
5702 (synopsis "Determine where to save data, caches, and logs")
5703 (description
5704 "This package provides an easy way to determine which directories on the
5705 user's computer should be used to save data, caches and logs. It is a port of
5706 Python's @url{https://github.com/ActiveState/appdirs,Appdirs} to R.")
5707 (license license:expat)))
5708
5709 (define-public r-renv
5710 (package
5711 (name "r-renv")
5712 (version "0.9.3")
5713 (source
5714 (origin
5715 (method url-fetch)
5716 (uri (cran-uri "renv" version))
5717 (sha256
5718 (base32
5719 "02ayfgbpw4b58148dcxz31anaxncwczmxs1zzkskwj0rzhb2x60r"))))
5720 (properties `((upstream-name . "renv")))
5721 (build-system r-build-system)
5722 (home-page "https://rstudio.github.io/renv")
5723 (synopsis "Project environments")
5724 (description
5725 "This package provides a dependency management toolkit for R. Using
5726 renv, you can create and manage project-local R libraries, save the state of
5727 these libraries to a lockfile, and later restore your library as required.
5728 Together, these tools can help make your projects more isolated, portable, and
5729 reproducible.")
5730 (license license:expat)))
5731
5732 (define-public r-learnr
5733 (package
5734 (name "r-learnr")
5735 (version "0.10.1")
5736 (source
5737 (origin
5738 (method url-fetch)
5739 (uri (cran-uri "learnr" version))
5740 (sha256
5741 (base32
5742 "08xwmms6x58y3dsfbl9c6d03145hb4ij97nqr1cc9dxxilmr6x31"))))
5743 (build-system r-build-system)
5744 (propagated-inputs
5745 `(("r-checkmate" ,r-checkmate)
5746 ("r-ellipsis" ,r-ellipsis)
5747 ("r-evaluate" ,r-evaluate)
5748 ("r-htmltools" ,r-htmltools)
5749 ("r-htmlwidgets" ,r-htmlwidgets)
5750 ("r-jsonlite" ,r-jsonlite)
5751 ("r-knitr" ,r-knitr)
5752 ("r-markdown" ,r-markdown)
5753 ("r-rappdirs" ,r-rappdirs)
5754 ("r-renv" ,r-renv)
5755 ("r-rmarkdown" ,r-rmarkdown)
5756 ("r-rprojroot" ,r-rprojroot)
5757 ("r-shiny" ,r-shiny)
5758 ("r-withr" ,r-withr)))
5759 (home-page "https://rstudio.github.io/learnr/")
5760 (synopsis "Interactive tutorials for R")
5761 (description
5762 "This package provides tools to create interactive tutorials using R
5763 Markdown. Use a combination of narrative, figures, videos, exercises, and
5764 quizzes to create self-paced tutorials for learning about R and R packages.")
5765 (license license:asl2.0)))
5766
5767 (define-public r-analytics
5768 (package
5769 (name "r-analytics")
5770 (version "3.0")
5771 (source
5772 (origin
5773 (method url-fetch)
5774 (uri (cran-uri "analytics" version))
5775 (sha256
5776 (base32
5777 "0js3c8lwj3knccb55nq03cbjlf4w390p9aid2mi5x80l3ayd9in1"))))
5778 (build-system r-build-system)
5779 (propagated-inputs
5780 `(("r-car" ,r-car)
5781 ("r-cluster" ,r-cluster)
5782 ("r-fractal" ,r-fractal)
5783 ("r-lmtest" ,r-lmtest)
5784 ("r-mass" ,r-mass)
5785 ("r-np" ,r-np)
5786 ("r-powerplus" ,r-powerplus)
5787 ("r-robust" ,r-robust)
5788 ("r-trend" ,r-trend)
5789 ("r-tsa" ,r-tsa)
5790 ("r-urca" ,r-urca)
5791 ("r-vim" ,r-vim)))
5792 (home-page "https://cran.r-project.org/web/packages/analytics/")
5793 (synopsis "Collection of data analysis tools")
5794 (description
5795 "This package is a collection of data analysis tools. It includes tools
5796 for regression outlier detection in a fitted linear model, stationary
5797 bootstrap using a truncated geometric distribution, a comprehensive test for
5798 weak stationarity, column means by group, weighted biplots, and a heuristic to
5799 obtain a better initial configuration in non-metric MDS.")
5800 (license license:gpl2)))
5801
5802 (define-public r-reticulate
5803 (package
5804 (name "r-reticulate")
5805 (version "1.15")
5806 (source
5807 (origin
5808 (method url-fetch)
5809 (uri (cran-uri "reticulate" version))
5810 (sha256
5811 (base32
5812 "03dmnx9jhxx6vfbv2i5n6sln38kb9zkshz982pg3l9i4jjf3xns7"))))
5813 (build-system r-build-system)
5814 (inputs `(("python" ,python)))
5815 (propagated-inputs
5816 `(("r-rappdirs" ,r-rappdirs)
5817 ("r-jsonlite" ,r-jsonlite)
5818 ("r-matrix" ,r-matrix)
5819 ("r-rcpp" ,r-rcpp)))
5820 (native-inputs
5821 `(("r-knitr" ,r-knitr)))
5822 (home-page "https://github.com/rstudio/reticulate")
5823 (synopsis "R interface to Python")
5824 (description
5825 "This package provides an interface from R to Python modules, classes,
5826 and functions. When calling into Python, R data types are automatically
5827 converted to their equivalent Python types. When values are returned from
5828 Python to R they are converted back to R types.")
5829 (license license:asl2.0)))
5830
5831 (define-public r-bibtex
5832 (package
5833 (name "r-bibtex")
5834 (version "0.4.2.2")
5835 (source
5836 (origin
5837 (method url-fetch)
5838 (uri (cran-uri "bibtex" version))
5839 (sha256
5840 (base32
5841 "140hkjzdp3033cvji861rd06z1ixgpnn4n5amygqsmhnixk8ff07"))))
5842 (build-system r-build-system)
5843 (propagated-inputs `(("r-stringr" ,r-stringr)))
5844 (home-page "https://github.com/romainfrancois/bibtex")
5845 (synopsis "Bibtex parser")
5846 (description "This package provides a utility for R to parse a bibtex
5847 file.")
5848 (license license:gpl2+)))
5849
5850 (define-public r-ggseqlogo
5851 (package
5852 (name "r-ggseqlogo")
5853 (version "0.1")
5854 (source
5855 (origin
5856 (method url-fetch)
5857 (uri (cran-uri "ggseqlogo" version))
5858 (sha256
5859 (base32
5860 "13q6kcpxrqxqbji889fx63p0nsi08lk5yymkchig75r5k1d18ky1"))))
5861 (build-system r-build-system)
5862 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
5863 (home-page "https://github.com/omarwagih/ggseqlogo")
5864 (synopsis "ggplot2 extension for drawing genetic sequence logos")
5865 (description
5866 "The range of functions provided by this package makes it possible to
5867 draw highly versatile genomic sequence logos. Features include, but are not
5868 limited to, modifying colour schemes and fonts used to draw the logo,
5869 generating multiple logo plots, and aiding the visualisation with annotations.
5870 Sequence logos can easily be combined with other ggplot2 plots.")
5871 ;; Unspecified version of the LGPL.
5872 (license license:lgpl3+)))
5873
5874 (define-public r-ggsci
5875 (package
5876 (name "r-ggsci")
5877 (version "2.9")
5878 (source
5879 (origin
5880 (method url-fetch)
5881 (uri (cran-uri "ggsci" version))
5882 (sha256
5883 (base32
5884 "0g73x6grbka7ahjh6z23m3wrcifp5rdfdiasbl8lq4sp6rplxwaa"))))
5885 (build-system r-build-system)
5886 (propagated-inputs
5887 `(("r-ggplot2" ,r-ggplot2)
5888 ("r-scales" ,r-scales)))
5889 (home-page "https://nanx.me/ggsci/")
5890 (synopsis "Scientific journal and sci-fi themed color palettes for ggplot2")
5891 (description
5892 "This package provides a collection of ggplot2 color palettes inspired by
5893 plots in scientific journals, data visualization libraries, science fiction
5894 movies, and TV shows.")
5895 (license license:gpl3)))
5896
5897 (define-public r-ggsignif
5898 (package
5899 (name "r-ggsignif")
5900 (version "0.6.0")
5901 (source
5902 (origin
5903 (method url-fetch)
5904 (uri (cran-uri "ggsignif" version))
5905 (sha256
5906 (base32
5907 "17j9hg967k1wp9xw3x84mqss58jkb8pvlrnlchz4i1hklgykxqbg"))))
5908 (build-system r-build-system)
5909 (native-inputs
5910 `(("r-knitr" ,r-knitr)))
5911 (propagated-inputs
5912 `(("r-ggplot2" ,r-ggplot2)))
5913 (home-page "https://github.com/const-ae/ggsignif")
5914 (synopsis "Significance brackets for ggplot2")
5915 (description
5916 "Enrich your ggplots with group-wise comparisons. This package provides
5917 an easy way to indicate if two groups are significantly different. Commonly
5918 this is shown by a bracket on top connecting the groups of interest which
5919 itself is annotated with the level of significance. The package provides a
5920 single layer that takes the groups for comparison and the test as arguments
5921 and adds the annotation to the plot.")
5922 (license license:gpl3)))
5923
5924 (define-public r-ggpubr
5925 (package
5926 (name "r-ggpubr")
5927 (version "0.2.5")
5928 (source
5929 (origin
5930 (method url-fetch)
5931 (uri (cran-uri "ggpubr" version))
5932 (sha256
5933 (base32
5934 "0kb3hpmnhj4mkbx1kx0kv5y22himr8dijqx7ra0h8hi0pf2l2ha7"))))
5935 (build-system r-build-system)
5936 (propagated-inputs
5937 `(("r-cowplot" ,r-cowplot)
5938 ("r-dplyr" ,r-dplyr)
5939 ("r-ggplot2" ,r-ggplot2)
5940 ("r-ggrepel" ,r-ggrepel)
5941 ("r-ggsci" ,r-ggsci)
5942 ("r-ggsignif" ,r-ggsignif)
5943 ("r-glue" ,r-glue)
5944 ("r-gridextra" ,r-gridextra)
5945 ("r-magrittr" ,r-magrittr)
5946 ("r-polynom" ,r-polynom)
5947 ("r-purrr" ,r-purrr)
5948 ("r-rlang" ,r-rlang)
5949 ("r-scales" ,r-scales)
5950 ("r-tidyr" ,r-tidyr)))
5951 (home-page "http://www.sthda.com/english/rpkgs/ggpubr")
5952 (synopsis "ggplot2-based publication-ready plots")
5953 (description
5954 "The ggplot2 package is an excellent and flexible package for elegant
5955 data visualization in R. However the default generated plots require some
5956 formatting before we can send them for publication. The ggpubr package
5957 provides some easy-to-use functions for creating and customizing ggplot2-based
5958 publication-ready plots.")
5959 (license license:gpl2)))
5960
5961 (define-public r-ellipse
5962 (package
5963 (name "r-ellipse")
5964 (version "0.4.1")
5965 (source
5966 (origin
5967 (method url-fetch)
5968 (uri (cran-uri "ellipse" version))
5969 (sha256
5970 (base32
5971 "0g82vc51m3c1k0hnpp2zla6amxxgk2mmkl8ssnsc49jv3599r6hs"))))
5972 (build-system r-build-system)
5973 (home-page "https://cran.r-project.org/web/packages/ellipse/")
5974 (synopsis "Functions for drawing ellipses and ellipse-like confidence regions")
5975 (description
5976 "This package contains various routines for drawing ellipses and
5977 ellipse-like confidence regions, implementing the plots described in Murdoch
5978 and Chow (1996), A graphical display of large correlation matrices, The
5979 American Statistician 50, 178-180. There are also routines implementing the
5980 profile plots described in Bates and Watts (1988), Nonlinear Regression
5981 Analysis and its Applications.")
5982 (license license:gpl2+)))
5983
5984 (define-public r-flashclust
5985 (package
5986 (name "r-flashclust")
5987 (version "1.01-2")
5988 (source
5989 (origin
5990 (method url-fetch)
5991 (uri (cran-uri "flashClust" version))
5992 (sha256
5993 (base32
5994 "0l4lpz451ll7f7lfxmb7ds24ppzhfg1c3ypvydglcc35p2dq99s8"))))
5995 (properties `((upstream-name . "flashClust")))
5996 (build-system r-build-system)
5997 (native-inputs `(("gfortran" ,gfortran)))
5998 (home-page "https://cran.r-project.org/web/packages/flashClust/")
5999 (synopsis "Implementation of optimal hierarchical clustering")
6000 (description
6001 "This package provides a fast implementation of hierarchical
6002 clustering.")
6003 (license license:gpl2+)))
6004
6005 (define-public r-factominer
6006 (package
6007 (name "r-factominer")
6008 (version "2.3")
6009 (source
6010 (origin
6011 (method url-fetch)
6012 (uri (cran-uri "FactoMineR" version))
6013 (sha256
6014 (base32
6015 "0ldgf3daksh6lpblhqys67m4mxqx3q9s9n5plfam6dwshfik0ky6"))))
6016 (properties `((upstream-name . "FactoMineR")))
6017 (build-system r-build-system)
6018 (propagated-inputs
6019 `(("r-car" ,r-car)
6020 ("r-cluster" ,r-cluster)
6021 ("r-ellipse" ,r-ellipse)
6022 ("r-flashclust" ,r-flashclust)
6023 ("r-ggplot2" ,r-ggplot2)
6024 ("r-ggrepel" ,r-ggrepel)
6025 ("r-lattice" ,r-lattice)
6026 ("r-leaps" ,r-leaps)
6027 ("r-mass" ,r-mass)
6028 ("r-scatterplot3d" ,r-scatterplot3d)))
6029 (home-page "http://factominer.free.fr")
6030 (synopsis "Multivariate exploratory data analysis and data mining")
6031 (description
6032 "This package provides exploratory data analysis methods to summarize,
6033 visualize and describe datasets. The main principal component methods are
6034 available, those with the largest potential in terms of applications:
6035 principal component analysis (PCA) when variables are quantitative,
6036 correspondence analysis (CA) and multiple correspondence analysis (MCA) when
6037 variables are categorical, Multiple Factor Analysis when variables are
6038 structured in groups, etc. and hierarchical cluster analysis.")
6039 (license license:gpl2+)))
6040
6041 (define-public r-factoextra
6042 (package
6043 (name "r-factoextra")
6044 (version "1.0.7")
6045 (source
6046 (origin
6047 (method url-fetch)
6048 (uri (cran-uri "factoextra" version))
6049 (sha256
6050 (base32
6051 "1allvdjhd3pq8xz30b1cymwcik5iaahghrjrlnn54cwkfhfg0kv2"))))
6052 (build-system r-build-system)
6053 (propagated-inputs
6054 `(("r-abind" ,r-abind)
6055 ("r-cluster" ,r-cluster)
6056 ("r-dendextend" ,r-dendextend)
6057 ("r-factominer" ,r-factominer)
6058 ("r-ggplot2" ,r-ggplot2)
6059 ("r-ggpubr" ,r-ggpubr)
6060 ("r-ggrepel" ,r-ggrepel)
6061 ("r-reshape2" ,r-reshape2)
6062 ("r-tidyr" ,r-tidyr)))
6063 (home-page "http://www.sthda.com/english/rpkgs/factoextra")
6064 (synopsis "Extract and visualize the results of multivariate data analyses")
6065 (description
6066 "This package provides some easy-to-use functions to extract and
6067 visualize the output of multivariate data analyses, including
6068 @code{PCA} (Principal Component Analysis), @code{CA} (Correspondence
6069 Analysis), @code{MCA} (Multiple Correspondence Analysis), @code{FAMD} (Factor
6070 Analysis of Mixed Data), @code{MFA} (Multiple Factor Analysis) and
6071 @code{HMFA} (Hierarchical Multiple Factor Analysis) functions from different R
6072 packages. It contains also functions for simplifying some clustering analysis
6073 steps and provides ggplot2-based elegant data visualization.")
6074 (license license:gpl2)))
6075
6076 (define-public r-fansi
6077 (package
6078 (name "r-fansi")
6079 (version "0.4.1")
6080 (source
6081 (origin
6082 (method url-fetch)
6083 (uri (cran-uri "fansi" version))
6084 (sha256
6085 (base32
6086 "028ywjy538psnmdnddvy5jr3idzffr4hikzr4x97x0m30g4fws9w"))))
6087 (build-system r-build-system)
6088 (native-inputs
6089 `(("r-knitr" ,r-knitr))) ; for vignettes
6090 (home-page "https://github.com/brodieG/fansi")
6091 (synopsis "ANSI control sequence aware string functions")
6092 (description
6093 "This package provides counterparts to R string manipulation functions
6094 that account for the effects of ANSI text formatting control sequences.")
6095 (license license:gpl2+)))
6096
6097 (define-public r-nbclust
6098 (package
6099 (name "r-nbclust")
6100 (version "3.0")
6101 (source
6102 (origin
6103 (method url-fetch)
6104 (uri (cran-uri "NbClust" version))
6105 (sha256
6106 (base32
6107 "1vwb48zy6ln1ddpqmfngii1i80n8qmqyxnzdp6gbaq96lakl3w3c"))))
6108 (properties `((upstream-name . "NbClust")))
6109 (build-system r-build-system)
6110 (home-page "https://sites.google.com/site/malikacharrad/research/nbclust-package")
6111 (synopsis "Determine the best number of clusters in a data set")
6112 (description
6113 "NbClust provides 30 indexes for determining the optimal number of
6114 clusters in a data set and offers the best clustering scheme from different
6115 results to the user.")
6116 (license license:gpl2)))
6117
6118 (define-public r-hdf5r
6119 (package
6120 (name "r-hdf5r")
6121 (version "1.3.2")
6122 (source
6123 (origin
6124 (method url-fetch)
6125 (uri (cran-uri "hdf5r" version))
6126 (sha256
6127 (base32
6128 "0c2p06k9bp9rf0fyavnxw5d8jr2bbgx3gjblahz581cpvsfksj9i"))))
6129 (build-system r-build-system)
6130 (inputs
6131 `(("hdf5" ,hdf5)
6132 ("zlib" ,zlib)))
6133 (propagated-inputs
6134 `(("r-bit64" ,r-bit64)
6135 ("r-r6" ,r-r6)))
6136 (native-inputs
6137 `(("r-knitr" ,r-knitr)))
6138 (home-page "https://hhoeflin.github.io/hdf5r")
6139 (synopsis "Interface to the HDF5 binary data format")
6140 (description
6141 "HDF5 is a data model, library and file format for storing and managing
6142 large amounts of data. This package provides a nearly feature complete,
6143 object oriented wrapper for the HDF5 API using R6 classes. Additionally,
6144 functionality is added so that HDF5 objects behave very similar to their
6145 corresponding R counterparts.")
6146 (license license:asl2.0)))
6147
6148 (define-public r-itertools
6149 (package
6150 (name "r-itertools")
6151 (version "0.1-3")
6152 (source
6153 (origin
6154 (method url-fetch)
6155 (uri (cran-uri "itertools" version))
6156 (sha256
6157 (base32
6158 "1ls5biiva10pb1dj3ph4griykb9vam02hkrdmlr5a5wf660hg6xn"))))
6159 (build-system r-build-system)
6160 (propagated-inputs
6161 `(("r-iterators" ,r-iterators)))
6162 (home-page "https://cran.r-project.org/web/packages/itertools/")
6163 (synopsis "Iterator tools")
6164 (description
6165 "This package provides various tools for creating iterators, many
6166 patterned after functions in the Python @code{itertools} module, and others
6167 patterned after functions in the snow package.")
6168 (license license:gpl2)))
6169
6170 (define-public r-polynom
6171 (package
6172 (name "r-polynom")
6173 (version "1.4-0")
6174 (source
6175 (origin
6176 (method url-fetch)
6177 (uri (cran-uri "polynom" version))
6178 (sha256
6179 (base32
6180 "1pflscwc0qzdf0y60j7s0dkglgmz18xajywfbn6s263idyr8idy5"))))
6181 (build-system r-build-system)
6182 (home-page "https://cran.r-project.org/web/packages/polynom/")
6183 (synopsis "Functions for univariate polynomial manipulations")
6184 (description
6185 "This package provides a collection of functions to implement a class for
6186 univariate polynomial manipulations.")
6187 (license license:gpl2)))
6188
6189 (define-public r-gbrd
6190 (package
6191 (name "r-gbrd")
6192 (version "0.4-11")
6193 (source
6194 (origin
6195 (method url-fetch)
6196 (uri (cran-uri "gbRd" version))
6197 (sha256
6198 (base32
6199 "06x97rw5i6v6cgjxkfhxnw4dn7lghn5q6ra7ri5ag1x9dkfzcl82"))))
6200 (properties `((upstream-name . "gbRd")))
6201 (build-system r-build-system)
6202 (home-page "https://cran.r-project.org/web/packages/gbRd/")
6203 (synopsis "Utilities for processing Rd objects and files")
6204 (description
6205 "This package provides utilities for processing Rd objects and files.
6206 Extract argument descriptions and other parts of the help pages of
6207 functions.")
6208 (license license:gpl2+)))
6209
6210 (define-public r-rjags
6211 (package
6212 (name "r-rjags")
6213 (version "4-10")
6214 (source
6215 (origin
6216 (method url-fetch)
6217 (uri (cran-uri "rjags" version))
6218 (sha256
6219 (base32
6220 "1nhaim84ww8fd6m8xlpmngqcnp2qpql29ahc38366fxja3ghngmx"))))
6221 (build-system r-build-system)
6222 (propagated-inputs
6223 `(("r-coda" ,r-coda)))
6224 (inputs
6225 `(("jags" ,jags)))
6226 (native-inputs
6227 `(("pkg-config" ,pkg-config)))
6228 (home-page "http://mcmc-jags.sourceforge.net")
6229 (synopsis "Bayesian graphical models using MCMC")
6230 (description
6231 "This package provides an R interface to the JAGS MCMC library. JAGS is
6232 Just Another Gibbs Sampler. It is a program for analysis of Bayesian
6233 hierarchical models using Markov Chain Monte Carlo (MCMC) simulation.")
6234 (license license:gpl2)))
6235
6236 (define-public r-rdpack
6237 (package
6238 (name "r-rdpack")
6239 (version "0.11-1")
6240 (source
6241 (origin
6242 (method url-fetch)
6243 (uri (cran-uri "Rdpack" version))
6244 (sha256
6245 (base32
6246 "080y15p2hl4jsq91ak2f1y2kx1iqq5c5wzyx3zyhjwp01cahy0jq"))))
6247 (properties `((upstream-name . "Rdpack")))
6248 (build-system r-build-system)
6249 (propagated-inputs
6250 `(("r-bibtex" ,r-bibtex)
6251 ("r-gbrd" ,r-gbrd)))
6252 (home-page "https://github.com/GeoBosh/Rdpack")
6253 (synopsis "Update and manipulate Rd documentation objects")
6254 (description
6255 "This package provides functions for manipulation of R documentation
6256 objects, including functions @code{reprompt()} and @code{ereprompt()} for
6257 updating Rd documentation for functions, methods and classes; it also includes
6258 Rd macros for citations and import of references from bibtex files for use in
6259 Rd files and roxygen2 comments, as well as many functions for manipulation of
6260 references and Rd files.")
6261 (license license:gpl2+)))
6262
6263 (define-public r-officer
6264 (package
6265 (name "r-officer")
6266 (version "0.3.8")
6267 (source
6268 (origin
6269 (method url-fetch)
6270 (uri (cran-uri "officer" version))
6271 (sha256
6272 (base32
6273 "0xhx5n6qksyh2s9hvwhnc8y0hn362asc5y94ld06snad786hz0rw"))))
6274 (build-system r-build-system)
6275 (propagated-inputs
6276 `(("r-magrittr" ,r-magrittr)
6277 ("r-r6" ,r-r6)
6278 ("r-uuid" ,r-uuid)
6279 ("r-xml2" ,r-xml2)
6280 ("r-zip" ,r-zip)))
6281 (native-inputs
6282 `(("r-knitr" ,r-knitr)))
6283 (home-page "https://davidgohel.github.io/officer")
6284 (synopsis "Manipulation of Word and PowerPoint documents")
6285 (description
6286 "This package provides tools to access and manipulate Word and PowerPoint
6287 documents from R. The package focuses on tabular and graphical reporting from
6288 R; it also provides two functions that let users get document content into
6289 data objects. A set of functions lets add and remove images, tables and
6290 paragraphs of text in new or existing documents. When working with PowerPoint
6291 presentations, slides can be added or removed; shapes inside slides can also
6292 be added or removed. When working with Word documents, a cursor can be used
6293 to help insert or delete content at a specific location in the document.")
6294 (license license:gpl3)))
6295
6296 (define-public r-abn
6297 (package
6298 (name "r-abn")
6299 (version "2.2")
6300 (source
6301 (origin
6302 (method url-fetch)
6303 (uri (cran-uri "abn" version))
6304 (sha256
6305 (base32
6306 "19w6bdjyp4zwqs6p0flry4qxqynf9rh8ykdrfrp61wrdf7kysw0d"))))
6307 (build-system r-build-system)
6308 (inputs
6309 `(("gsl" ,gsl)))
6310 (propagated-inputs
6311 `(("r-lme4" ,r-lme4)
6312 ("r-mass" ,r-mass)
6313 ("r-nnet" ,r-nnet)
6314 ("r-rcpp" ,r-rcpp)
6315 ("r-rcpparmadillo" ,r-rcpparmadillo)
6316 ("r-rjags" ,r-rjags)))
6317 (home-page "https://r-bayesian-networks.org/")
6318 (synopsis "Modelling multivariate data with additive bayesian networks")
6319 (description
6320 "Bayesian network analysis is a form of probabilistic graphical models
6321 which derives from empirical data a directed acyclic graph, DAG, describing
6322 the dependency structure between random variables. An additive Bayesian
6323 network model consists of a form of a DAG where each node comprises a
6324 @dfn{generalized linear model} (GLM). Additive Bayesian network models are
6325 equivalent to Bayesian multivariate regression using graphical modelling, they
6326 generalises the usual multivariable regression, GLM, to multiple dependent
6327 variables. This package provides routines to help determine optimal Bayesian
6328 network models for a given data set, where these models are used to identify
6329 statistical dependencies in messy, complex data.")
6330 (license license:gpl2+)))
6331
6332 (define-public r-acd
6333 (package
6334 (name "r-acd")
6335 (version "1.5.3")
6336 (source
6337 (origin
6338 (method url-fetch)
6339 (uri (cran-uri "ACD" version))
6340 (sha256
6341 (base32
6342 "1a67bi3hklq8nlc50r0qnyr4k7m9kpvijy8sqqpm54by5hsysfd6"))))
6343 (properties `((upstream-name . "ACD")))
6344 (build-system r-build-system)
6345 (home-page "https://cran.r-project.org/web/packages/ACD/")
6346 (synopsis "Categorical data analysis with complete or missing responses")
6347 (description
6348 "This package provides tools for categorical data analysis with complete
6349 or missing responses.")
6350 (license license:gpl2+)))
6351
6352 (define-public r-acdm
6353 (package
6354 (name "r-acdm")
6355 (version "1.0.4")
6356 (source
6357 (origin
6358 (method url-fetch)
6359 (uri (cran-uri "ACDm" version))
6360 (sha256
6361 (base32
6362 "0b4f02ga5ra66mbrm79g0bnlzmii82rks9kmxixxqgf18yhlyjil"))))
6363 (properties `((upstream-name . "ACDm")))
6364 (build-system r-build-system)
6365 (propagated-inputs
6366 `(("r-dplyr" ,r-dplyr)
6367 ("r-ggplot2" ,r-ggplot2)
6368 ("r-plyr" ,r-plyr)
6369 ("r-rsolnp" ,r-rsolnp)
6370 ("r-zoo" ,r-zoo)))
6371 (home-page "https://cran.r-project.org/web/packages/ACDm/")
6372 (synopsis "Tools for Autoregressive Conditional Duration Models")
6373 (description
6374 "ACDm is a package for Autoregressive Conditional Duration (ACD, Engle
6375 and Russell, 1998) models. It creates trade, price or volume durations from
6376 transactions (tic) data, performs diurnal adjustments, fits various ACD models
6377 and tests them.")
6378 (license license:gpl2+)))
6379
6380 (define-public r-overlap
6381 (package
6382 (name "r-overlap")
6383 (version "0.3.2")
6384 (source
6385 (origin
6386 (method url-fetch)
6387 (uri (cran-uri "overlap" version))
6388 (sha256
6389 (base32
6390 "1j3m6ir1chdz0si2fhcw6gs7c9h09bv0chz18rpzxsywww6d4rzy"))))
6391 (build-system r-build-system)
6392 (home-page "https://cran.r-project.org/web/packages/overlap/")
6393 (synopsis "Estimates of coefficient of overlapping for animal activity patterns")
6394 (description
6395 "This package provides functions to fit kernel density functions to data
6396 on temporal activity patterns of animals; estimate coefficients of overlapping
6397 of densities for two species; and calculate bootstrap estimates of confidence
6398 intervals.")
6399 (license license:gpl3+)))
6400
6401 (define-public r-snakecase
6402 (package
6403 (name "r-snakecase")
6404 (version "0.11.0")
6405 (source
6406 (origin
6407 (method url-fetch)
6408 (uri (cran-uri "snakecase" version))
6409 (sha256
6410 (base32
6411 "1ky1x2cp5rd0ffd9m1fji9sq4z4jsrpxzg30brw8bb4ihfjj114r"))))
6412 (build-system r-build-system)
6413 (propagated-inputs
6414 `(("r-stringi" ,r-stringi)
6415 ("r-stringr" ,r-stringr)))
6416 (home-page "https://github.com/Tazinho/snakecase")
6417 (synopsis "Convert strings into any case")
6418 (description
6419 "This package provides a consistent, flexible and easy to use tool to
6420 parse and convert strings into cases like snake or camel among others.")
6421 (license license:gpl3)))
6422
6423 (define-public r-prediction
6424 (package
6425 (name "r-prediction")
6426 (version "0.3.14")
6427 (source
6428 (origin
6429 (method url-fetch)
6430 (uri (cran-uri "prediction" version))
6431 (sha256
6432 (base32
6433 "0awlq5lxfia6m2b91w73rksp93rbwv5gwqb36wbji4rgq41rzbrx"))))
6434 (build-system r-build-system)
6435 (propagated-inputs
6436 `(("r-data-table" ,r-data-table)))
6437 (home-page "https://github.com/leeper/prediction")
6438 (synopsis "Tidy, type-safe prediction methods")
6439 (description
6440 "This package provides the @code{prediction()} function, a type-safe
6441 alternative to @code{predict()} that always returns a data frame. The package
6442 currently supports common model types (e.g., @code{\"lm\"}, @code{\"glm\"})
6443 from the @code{stats} package, as well as numerous other model classes from
6444 other add-on packages.")
6445 (license license:expat)))
6446
6447 (define-public r-insight
6448 (package
6449 (name "r-insight")
6450 (version "0.8.2")
6451 (source
6452 (origin
6453 (method url-fetch)
6454 (uri (cran-uri "insight" version))
6455 (sha256
6456 (base32
6457 "0fjf7dwpv1a7qfbzixppg348z1ksq19kdjm08vcb2am7w0k3plcj"))))
6458 (build-system r-build-system)
6459 (native-inputs
6460 `(("r-knitr" ,r-knitr)))
6461 (home-page "https://easystats.github.io/insight/")
6462 (synopsis "Easy access to model information for various model objects")
6463 (description
6464 "This package provides a tool to provide an easy, intuitive and
6465 consistent access to information contained in various R models, like model
6466 formulas, model terms, information about random effects, data that was used to
6467 fit the model or data from response variables. The package mainly revolves
6468 around two types of functions: Functions that find (the names of) information,
6469 starting with @code{find_}, and functions that get the underlying data,
6470 starting with @code{get_}. The package has a consistent syntax and works with
6471 many different model objects, where otherwise functions to access these
6472 information are missing.")
6473 (license license:gpl3)))
6474
6475 (define-public r-sjlabelled
6476 (package
6477 (name "r-sjlabelled")
6478 (version "1.1.3")
6479 (source
6480 (origin
6481 (method url-fetch)
6482 (uri (cran-uri "sjlabelled" version))
6483 (sha256
6484 (base32
6485 "1amq7i9sxf0pkxhskqc53xq5wvc9rdxm7cxyb4b6xh6qsskjnlsj"))))
6486 (build-system r-build-system)
6487 (propagated-inputs
6488 `(("r-haven" ,r-haven)
6489 ("r-insight" ,r-insight)))
6490 (home-page "https://github.com/strengejacke/sjlabelled")
6491 (synopsis "Labelled data utility functions")
6492 (description
6493 "This package provides a collection of functions dealing with labelled
6494 data, like reading and writing data between R and other statistical software
6495 packages. This includes easy ways to get, set or change value and variable
6496 label attributes, to convert labelled vectors into factors or numeric (and
6497 vice versa), or to deal with multiple declared missing values.")
6498 (license license:gpl3)))
6499
6500 (define-public r-sjmisc
6501 (package
6502 (name "r-sjmisc")
6503 (version "2.8.3")
6504 (source
6505 (origin
6506 (method url-fetch)
6507 (uri (cran-uri "sjmisc" version))
6508 (sha256
6509 (base32
6510 "0w8l9grmp4q775jrf4q6rxx36ld5daz9b0gdxyyh42xfihk6m62h"))))
6511 (build-system r-build-system)
6512 (propagated-inputs
6513 `(("r-dplyr" ,r-dplyr)
6514 ("r-insight" ,r-insight)
6515 ("r-magrittr" ,r-magrittr)
6516 ("r-purrr" ,r-purrr)
6517 ("r-rlang" ,r-rlang)
6518 ("r-sjlabelled" ,r-sjlabelled)
6519 ("r-tidyselect" ,r-tidyselect)))
6520 (home-page "https://github.com/strengejacke/sjmisc")
6521 (synopsis "Data and variable transformation functions")
6522 (description
6523 "This package is a collection of miscellaneous utility functions,
6524 supporting data transformation tasks like recoding, dichotomizing or grouping
6525 variables, setting and replacing missing values. The data transformation
6526 functions also support labelled data, and all integrate seamlessly into a
6527 tidyverse workflow.")
6528 (license license:gpl3)))
6529
6530 (define-public r-nortest
6531 (package
6532 (name "r-nortest")
6533 (version "1.0-4")
6534 (source
6535 (origin
6536 (method url-fetch)
6537 (uri (cran-uri "nortest" version))
6538 (sha256
6539 (base32
6540 "17r0wpz72z9312c70nwi1i1kp1v9fm1h6jg7q5cx1mc1h420m1d3"))))
6541 (build-system r-build-system)
6542 (home-page "https://cran.r-project.org/web/packages/nortest/")
6543 (synopsis "Tests for normality")
6544 (description
6545 "This package provides five omnibus tests for testing the composite
6546 hypothesis of normality.")
6547 (license license:gpl2+)))
6548
6549 (define-public r-moonbook
6550 (package
6551 (name "r-moonbook")
6552 (version "0.2.3")
6553 (source
6554 (origin
6555 (method url-fetch)
6556 (uri (cran-uri "moonBook" version))
6557 (sha256
6558 (base32
6559 "0hys56mwbm776ff7dibi8wzyf69qiais9rs1jazv79lk6h56s9s6"))))
6560 (properties `((upstream-name . "moonBook")))
6561 (build-system r-build-system)
6562 (propagated-inputs
6563 `(("r-magrittr" ,r-magrittr)
6564 ("r-nortest" ,r-nortest)
6565 ("r-purrr" ,r-purrr)
6566 ("r-sjmisc" ,r-sjmisc)
6567 ("r-stringr" ,r-stringr)
6568 ("r-survival" ,r-survival)))
6569 (home-page "https://github.com/cardiomoon/moonBook")
6570 (synopsis "Functions and datasets for the book by Keon-Woong Moon")
6571 (description
6572 "This package provides several analysis-related functions for the book
6573 entitled \"R statistics and graph for medical articles\" (written in Korean),
6574 version 1, by Keon-Woong Moon with Korean demographic data with several plot
6575 functions.")
6576 (license license:gpl2)))
6577
6578 (define-public r-flextable
6579 (package
6580 (name "r-flextable")
6581 (version "0.5.9")
6582 (source
6583 (origin
6584 (method url-fetch)
6585 (uri (cran-uri "flextable" version))
6586 (sha256
6587 (base32
6588 "1rkz0nhwjy1l8sb0kmna5v492n2ydnk7gydswnmf88r8vfyjczhw"))))
6589 (build-system r-build-system)
6590 (propagated-inputs
6591 `(("r-base64enc" ,r-base64enc)
6592 ("r-data-table" ,r-data-table)
6593 ("r-gdtools" ,r-gdtools)
6594 ("r-htmltools" ,r-htmltools)
6595 ("r-knitr" ,r-knitr)
6596 ("r-officer" ,r-officer)
6597 ("r-rlang" ,r-rlang)
6598 ("r-rmarkdown" ,r-rmarkdown)
6599 ("r-xml2" ,r-xml2)))
6600 (home-page "https://davidgohel.github.io/flextable")
6601 (synopsis "Functions for tabular reporting")
6602 (description
6603 "This package provides tools to create pretty tables for HTML documents
6604 and other formats. Functions are provided to let users create tables, modify
6605 and format their content. It extends the @code{officer} package and can be
6606 used within R markdown documents when rendering to HTML and to Word
6607 documents.")
6608 (license license:gpl3)))
6609
6610 (define-public r-writexl
6611 (package
6612 (name "r-writexl")
6613 (version "1.2")
6614 (source
6615 (origin
6616 (method url-fetch)
6617 (uri (cran-uri "writexl" version))
6618 (sha256
6619 (base32
6620 "09fhdip6igcg97fjx4c7727cx2lb49l4d74l4i8rg2bag2s5lrj3"))))
6621 (build-system r-build-system)
6622 (inputs `(("zlib" ,zlib)))
6623 (home-page "https://github.com/ropensci/writexl")
6624 (synopsis "Export data frames to xlsx format")
6625 (description
6626 "This package provides a data frame to xlsx exporter based on
6627 libxlsxwriter.")
6628 (license license:bsd-2)))
6629
6630 (define-public r-biasedurn
6631 (package
6632 (name "r-biasedurn")
6633 (version "1.07")
6634 (source
6635 (origin
6636 (method url-fetch)
6637 (uri (cran-uri "BiasedUrn" version))
6638 (sha256
6639 (base32
6640 "13i2lgfnjhlbbm2yxfc2l5hswqw6x03pwba5csjmirv8kpjw4xr3"))))
6641 (properties `((upstream-name . "BiasedUrn")))
6642 (build-system r-build-system)
6643 (home-page "https://cran.r-project.org/web/packages/BiasedUrn/")
6644 (synopsis "Biased Urn model distributions")
6645 (description
6646 "This package provides statistical models of biased sampling in the form
6647 of univariate and multivariate noncentral hypergeometric distributions,
6648 including Wallenius' noncentral hypergeometric distribution and Fisher's
6649 noncentral hypergeometric distribution (also called extended hypergeometric
6650 distribution).")
6651 (license license:gpl3)))
6652
6653 (define-public r-goplot
6654 (package
6655 (name "r-goplot")
6656 (version "1.0.2")
6657 (source
6658 (origin
6659 (method url-fetch)
6660 (uri (cran-uri "GOplot" version))
6661 (sha256
6662 (base32
6663 "1y8dv0kbzpr9za91njw0x233vx5d13vqml9hmpddcyi9s6va5nix"))))
6664 (properties `((upstream-name . "GOplot")))
6665 (build-system r-build-system)
6666 (propagated-inputs
6667 `(("r-ggdendro" ,r-ggdendro)
6668 ("r-ggplot2" ,r-ggplot2)
6669 ("r-gridextra" ,r-gridextra)
6670 ("r-rcolorbrewer" ,r-rcolorbrewer)))
6671 (home-page "https://github.com/wencke/wencke.github.io")
6672 (synopsis "Visualization of functional analysis data")
6673 (description
6674 "This package provides an implementation of multilayered visualizations
6675 for enhanced graphical representation of functional analysis data. It
6676 combines and integrates omics data derived from expression and functional
6677 annotation enrichment analyses. Its plotting functions have been developed
6678 with an hierarchical structure in mind: starting from a general overview to
6679 identify the most enriched categories (modified bar plot, bubble plot) to a
6680 more detailed one displaying different types of relevant information for the
6681 molecules in a given set of categories (circle plot, chord plot, cluster plot,
6682 Venn diagram, heatmap).")
6683 (license license:gpl2)))
6684
6685 (define-public r-getopt
6686 (package
6687 (name "r-getopt")
6688 (version "1.20.3")
6689 (source
6690 (origin
6691 (method url-fetch)
6692 (uri (cran-uri "getopt" version))
6693 (sha256
6694 (base32
6695 "0zzmzgwl9a4y3s34600vmih22d6y32294f9bvxrnmffnvkgmy7sk"))))
6696 (build-system r-build-system)
6697 (home-page "https://github.com/trevorld/getopt")
6698 (synopsis "Command-line option processor for R")
6699 (description
6700 "This package is designed to be used with Rscript to write shebang
6701 scripts that accept short and long options. Many users will prefer to
6702 use the packages @code{optparse} or @code{argparse} which add extra
6703 features like automatically generated help options and usage texts,
6704 support for default values, positional argument support, etc.")
6705 (license license:gpl2+)))
6706
6707 (define-public r-findpython
6708 (package
6709 (name "r-findpython")
6710 (version "1.0.5")
6711 (source
6712 (origin
6713 (method url-fetch)
6714 (uri (cran-uri "findpython" version))
6715 (sha256
6716 (base32
6717 "0icifm4z6hhpmcjrg75a875iph0ci890ss02kdv3725pijc236iy"))))
6718 (build-system r-build-system)
6719 (home-page "https://github.com/trevorld/findpython")
6720 (synopsis "Functions to find an acceptable Python binary")
6721 (description
6722 "This package was designed to find an acceptable Python binary that
6723 matches version and feature constraints.")
6724 (license license:expat)))
6725
6726 ;; This in not the same as "r-argparser"
6727 (define-public r-argparse
6728 (package
6729 (name "r-argparse")
6730 (version "2.0.1")
6731 (source
6732 (origin
6733 (method url-fetch)
6734 (uri (cran-uri "argparse" version))
6735 (sha256
6736 (base32
6737 "1as7h6z7kzgv0fqzpnp76qbm96b4jcd37azd58b7rz0l1n94764l"))))
6738 (build-system r-build-system)
6739 (inputs `(("python" ,python)))
6740 (propagated-inputs
6741 `(("r-findpython" ,r-findpython)
6742 ("r-jsonlite" ,r-jsonlite)
6743 ("r-r6" ,r-r6)))
6744 (home-page "https://github.com/trevorld/argparse")
6745 (synopsis "Command line optional and positional argument parser")
6746 (description
6747 "This package provides a command line parser to be used with Rscript to
6748 write shebang scripts that gracefully accept positional and optional arguments
6749 and automatically generate usage notices.")
6750 (license license:gpl2+)))
6751
6752 (define-public r-hash
6753 (package
6754 (name "r-hash")
6755 (version "2.2.6.1")
6756 (source
6757 (origin
6758 (method url-fetch)
6759 (uri (cran-uri "hash" version))
6760 (sha256
6761 (base32
6762 "0b3fl0rvgwb992knl81vm99lsldg5clvaqjh6mamm6zqmb6dz056"))))
6763 (build-system r-build-system)
6764 (home-page "https://cran.r-project.org/web/packages/hash/")
6765 (synopsis "Implementation of hash/associated arrays/dictionaries")
6766 (description
6767 "This package implements a data structure similar to hashes in Perl and
6768 dictionaries in Python but with a purposefully R flavor. For objects of
6769 appreciable size, access using hashes outperforms native named lists and
6770 vectors.")
6771 (license license:gpl2+)))
6772
6773 (define-public r-orddom
6774 (package
6775 (name "r-orddom")
6776 (version "3.1")
6777 (source
6778 (origin
6779 (method url-fetch)
6780 (uri (cran-uri "orddom" version))
6781 (sha256
6782 (base32
6783 "165axs15fvwhrp89xd87l81q3h2qjll1vrwcsap645cwvb85nwsh"))))
6784 (build-system r-build-system)
6785 (propagated-inputs `(("r-psych" ,r-psych)))
6786 (home-page "https://cran.r-project.org/web/packages/orddom/")
6787 (synopsis "Ordinal dominance statistics")
6788 (description
6789 "This package provides tools to compute ordinal, statistics and effect
6790 sizes as an alternative to mean comparison: Cliff's delta or success rate
6791 difference (SRD), Vargha and Delaney's A or the Area Under a Receiver
6792 Operating Characteristic Curve (AUC), the discrete type of McGraw & Wong's
6793 Common Language Effect Size (CLES) or Grissom & Kim's Probability of
6794 Superiority (PS), and the Number needed to treat (NNT) effect size. Moreover,
6795 comparisons to Cohen's d are offered based on Huberty & Lowman's Percentage of
6796 Group (Non-)Overlap considerations.")
6797 (license license:gpl2)))
6798
6799 (define-public r-deriv
6800 (package
6801 (name "r-deriv")
6802 (version "4.0")
6803 (source
6804 (origin
6805 (method url-fetch)
6806 (uri (cran-uri "Deriv" version))
6807 (sha256
6808 (base32
6809 "03mlfy8jzzzbh2l18gnmw0a71n9savx4cw72yhkxq93v2xj8fy3n"))))
6810 (properties `((upstream-name . "Deriv")))
6811 (build-system r-build-system)
6812 (home-page "https://cran.r-project.org/web/packages/Deriv")
6813 (synopsis "Symbolic differentiation")
6814 (description
6815 "This package provides an R-based solution for symbolic differentiation.
6816 It admits user-defined functions as well as function substitution in arguments
6817 of functions to be differentiated. Some symbolic simplification is part of
6818 the work.")
6819 (license license:gpl3+)))
6820
6821 (define-public r-doby
6822 (package
6823 (name "r-doby")
6824 (version "4.6.5")
6825 (source
6826 (origin
6827 (method url-fetch)
6828 (uri (cran-uri "doBy" version))
6829 (sha256
6830 (base32
6831 "1ckazh701b4ilg8bj17ji903538jmb49d997gm49ah5j5jc1x0g7"))))
6832 (properties `((upstream-name . "doBy")))
6833 (build-system r-build-system)
6834 (propagated-inputs
6835 `(("r-broom" ,r-broom)
6836 ("r-deriv" ,r-deriv)
6837 ("r-dplyr" ,r-dplyr)
6838 ("r-magrittr" ,r-magrittr)
6839 ("r-mass" ,r-mass)
6840 ("r-matrix" ,r-matrix)
6841 ("r-plyr" ,r-plyr)
6842 ("r-pbkrtest" ,r-pbkrtest)
6843 ("r-tibble" ,r-tibble)))
6844 (home-page "http://people.math.aau.dk/~sorenh/software/doBy/")
6845 (synopsis "Groupwise statistics, LSmeans, linear contrasts, and utilities")
6846 (description
6847 "This package contains:
6848
6849 @itemize
6850 @item facilities for working with grouped data: @code{do}
6851 something to data stratified @code{by} some variables.
6852 @item implementations of least-squares means, general linear contrasts, and
6853 @item miscellaneous other utilities.
6854 @end itemize\n")
6855 (license license:gpl2+)))
6856
6857 (define-public r-refgenome
6858 (package
6859 (name "r-refgenome")
6860 (version "1.7.7")
6861 (source
6862 (origin
6863 (method url-fetch)
6864 (uri (cran-uri "refGenome" version))
6865 (sha256
6866 (base32
6867 "1za89bn3am1zgvm641qi1ab6kaqpll4rb9p9f1sjwvcgqq6065g5"))))
6868 (properties `((upstream-name . "refGenome")))
6869 (build-system r-build-system)
6870 (propagated-inputs
6871 `(("r-dbi" ,r-dbi)
6872 ("r-doby" ,r-doby)
6873 ("r-rsqlite" ,r-rsqlite)))
6874 (home-page "https://cran.r-project.org/web/packages/refGenome/")
6875 (synopsis
6876 "Gene and splice site annotation using annotation data from Ensembl and UCSC")
6877 (description
6878 "This package contains functionality for importing and managing of
6879 downloaded genome annotation data from the Ensembl genome browser (European
6880 Bioinformatics Institute) and from the UCSC genome browser (University of
6881 California, Santa Cruz) and annotation routines for genomic positions and
6882 splice site positions.")
6883 (license license:gpl2)))
6884
6885 (define-public r-basix
6886 (package
6887 (name "r-basix")
6888 (version "1.1")
6889 (source
6890 (origin
6891 (method url-fetch)
6892 (uri (cran-uri "BASIX" version))
6893 (sha256
6894 (base32
6895 "18dkvv1iwskfnlpl6xridcgqpalbbpm2616mvc3hfrc0b26v01id"))))
6896 (properties `((upstream-name . "BASIX")))
6897 (build-system r-build-system)
6898 (home-page "https://cran.r-project.org/web/packages/BASIX/")
6899 (synopsis "Efficient C/C++ toolset for R")
6900 (description
6901 "BASIX provides some efficient C/C++ implementations of native R
6902 procedures to speed up calculations in R.")
6903 (license license:gpl2)))
6904
6905 (define-public r-blockfest
6906 (package
6907 (name "r-blockfest")
6908 (version "1.6")
6909 (source
6910 (origin
6911 (method url-fetch)
6912 (uri (cran-uri "BlockFeST" version))
6913 (sha256
6914 (base32
6915 "0hj7a5as7nxbgjac7lbj6qfwffx3g8x8phpf9a55f1c9cdzi73a5"))))
6916 (properties `((upstream-name . "BlockFeST")))
6917 (build-system r-build-system)
6918 (propagated-inputs `(("r-basix" ,r-basix)))
6919 (home-page "https://cran.r-project.org/web/packages/BlockFeST/")
6920 (synopsis "Bayesian calculation of region-specific fixation index")
6921 (description
6922 "This package provides an R implementation of an extension of the
6923 BayeScan software for codominant markers, adding the option to group
6924 individual SNPs into pre-defined blocks. A typical application of this new
6925 approach is the identification of genomic regions, genes, or gene sets
6926 containing one or more SNPs that evolved under directional selection.")
6927 (license license:gpl2)))
6928
6929 (define-public r-proc
6930 (package
6931 (name "r-proc")
6932 (version "1.16.2")
6933 (source
6934 (origin
6935 (method url-fetch)
6936 (uri (cran-uri "pROC" version))
6937 (sha256
6938 (base32
6939 "0apwa5zzqh74pjnvf5a1s5qf6i9r5h44jdllfrwymkd2v479d2xn"))))
6940 (properties `((upstream-name . "pROC")))
6941 (build-system r-build-system)
6942 (propagated-inputs
6943 `(("r-plyr" ,r-plyr)
6944 ("r-rcpp" ,r-rcpp)))
6945 (home-page "https://web.expasy.org/pROC/")
6946 (synopsis "Display and analyze ROC curves")
6947 (description
6948 "This package provides tools for visualizing, smoothing and comparing
6949 receiver operating characteristic (ROC curves). The area under the
6950 curve (AUC) can be compared with statistical tests based on U-statistics or
6951 bootstrap. Confidence intervals can be computed for (p)AUC or ROC curves.")
6952 (license license:gpl3+)))
6953
6954 (define-public r-rootsolve
6955 (package
6956 (name "r-rootsolve")
6957 (version "1.8.2")
6958 (source
6959 (origin
6960 (method url-fetch)
6961 (uri (cran-uri "rootSolve" version))
6962 (sha256
6963 (base32
6964 "0rj7c4zcrzgz7sb0vgvh7swpfafnw4040cxp7ypas3s8fnihn54l"))))
6965 (properties `((upstream-name . "rootSolve")))
6966 (build-system r-build-system)
6967 (native-inputs `(("gfortran" ,gfortran)))
6968 (home-page "https://cran.r-project.org/web/packages/rootSolve/")
6969 (synopsis "Tools for the analysis of ordinary differential equations")
6970 (description
6971 "This package provides routines to find the root of nonlinear functions,
6972 and to perform steady-state and equilibrium analysis of @dfn{ordinary
6973 differential equations} (ODE). It includes routines that:
6974
6975 @enumerate
6976 @item generate gradient and jacobian matrices (full and banded),
6977 @item find roots of non-linear equations by the Newton-Raphson method,
6978 @item estimate steady-state conditions of a system of (differential) equations
6979 in full, banded or sparse form, using the Newton-Raphson method, or by
6980 dynamically running,
6981 @item solve the steady-state conditions for uni- and multicomponent 1-D, 2-D,
6982 and 3-D partial differential equations, that have been converted to ordinary
6983 differential equations by numerical differencing (using the method-of-lines
6984 approach).
6985 @end enumerate\n")
6986 (license license:gpl2+)))
6987
6988 (define-public r-abcanalysis
6989 (package
6990 (name "r-abcanalysis")
6991 (version "1.2.1")
6992 (source
6993 (origin
6994 (method url-fetch)
6995 (uri (cran-uri "ABCanalysis" version))
6996 (sha256
6997 (base32 "0wac1ksmnxa36v99ca4hv8k0rsh3igwpcllmlv9wf7i9kgqviqwi"))))
6998 (properties `((upstream-name . "ABCanalysis")))
6999 (build-system r-build-system)
7000 (propagated-inputs `(("r-plotrix" ,r-plotrix)))
7001 (home-page "https://www.uni-marburg.de/fb12/arbeitsgruppen/datenbionik/software-en/")
7002 (synopsis "Computed ABC Analysis")
7003 (description
7004 "Multivariate data sets often differ in several factors or derived statistical
7005 parameters, which have to be selected for a valid interpretation. Basing this
7006 selection on traditional statistical limits leads occasionally to the perception
7007 of losing information from a data set. This package provides tools to calculate
7008 these limits on the basis of the mathematical properties of the distribution of
7009 the analyzed items.")
7010 (license license:gpl3)))
7011
7012 (define-public r-slam
7013 (package
7014 (name "r-slam")
7015 (version "0.1-47")
7016 (source
7017 (origin
7018 (method url-fetch)
7019 (uri (cran-uri "slam" version))
7020 (sha256
7021 (base32 "12fggw2c7hz3bpvsaqm24g3r6lbpq6jgli24g7x5j859iak5cqv9"))))
7022 (build-system r-build-system)
7023 (home-page "https://cran.r-project.org/web/packages/slam/")
7024 (synopsis "Sparse lightweight arrays and matrices")
7025 (description
7026 "This package contains data structures and algorithms for sparse arrays and matrices,
7027 based on index arrays and simple triplet representations, respectively.")
7028 (license license:gpl2)))
7029
7030 (define-public r-manipulatewidget
7031 (package
7032 (name "r-manipulatewidget")
7033 (version "0.10.1")
7034 (source
7035 (origin
7036 (method url-fetch)
7037 (uri (cran-uri "manipulateWidget" version))
7038 (sha256
7039 (base32 "1vi71sjh7z1a880wffk8qqw7iysvk42q78giqxmm2sqz2a912qlx"))))
7040 (properties
7041 `((upstream-name . "manipulateWidget")))
7042 (build-system r-build-system)
7043 (propagated-inputs
7044 `(("r-base64enc" ,r-base64enc)
7045 ("r-codetools" ,r-codetools)
7046 ("r-htmltools" ,r-htmltools)
7047 ("r-htmlwidgets" ,r-htmlwidgets)
7048 ("r-knitr" ,r-knitr)
7049 ("r-miniui" ,r-miniui)
7050 ("r-shiny" ,r-shiny)
7051 ("r-webshot" ,r-webshot)))
7052 (home-page "https://github.com/rte-antares-rpackage/manipulateWidget/")
7053 (synopsis "Add even more interactivity to interactive charts")
7054 (description
7055 "This package lets you create in just a few lines of R code a nice user interface to
7056 modify the data or the graphical parameters of one or multiple interactive
7057 charts. It is useful to quickly explore visually some data or for package
7058 developers to generate user interfaces easy to maintain.")
7059 (license license:gpl2+)))
7060
7061 (define-public r-a3
7062 (package
7063 (name "r-a3")
7064 (version "1.0.0")
7065 (source
7066 (origin
7067 (method url-fetch)
7068 (uri (cran-uri "A3" version))
7069 (sha256
7070 (base32 "017hq9pjsv1h9i7cqk5cfx27as54shlhdsdvr6jkhb8jfkpdb6cw"))))
7071 (properties `((upstream-name . "A3")))
7072 (build-system r-build-system)
7073 (propagated-inputs
7074 `(("r-pbapply" ,r-pbapply)
7075 ("r-xtable" ,r-xtable)))
7076 (home-page "https://cran.r-project.org/web/packages/A3/")
7077 (synopsis "Error metrics for predictive models")
7078 (description
7079 "This package supplies tools for tabulating and analyzing the results of predictive
7080 models. The methods employed are applicable to virtually any predictive model
7081 and make comparisons between different methodologies straightforward.")
7082 (license license:gpl2+)))
7083
7084 (define-public r-infotheo
7085 (package
7086 (name "r-infotheo")
7087 (version "1.2.0")
7088 (source
7089 (origin
7090 (method url-fetch)
7091 (uri (cran-uri "infotheo" version))
7092 (sha256
7093 (base32
7094 "18xacczfq3z3xpy434js4nf3l19lczngzd0lq26wh22pvg1yniwv"))))
7095 (build-system r-build-system)
7096 (home-page "http://homepage.meyerp.com/software")
7097 (synopsis "Information-theoretic measures")
7098 (description
7099 "This package implements various measures of information theory based on
7100 several entropy estimators.")
7101 (license license:gpl3+)))
7102
7103 (define-public r-abcoptim
7104 (package
7105 (name "r-abcoptim")
7106 (version "0.15.0")
7107 (source
7108 (origin
7109 (method url-fetch)
7110 (uri (cran-uri "ABCoptim" version))
7111 (sha256
7112 (base32 "1ih0xk88qhsmpvnxf56041wx5sk8as2f4f2gdnpnwdym9mbr9n4b"))))
7113 (properties `((upstream-name . "ABCoptim")))
7114 (build-system r-build-system)
7115 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
7116 (home-page "https://github.com/gvegayon/ABCoptim/")
7117 (synopsis "Optimization of Artificial Bee Colony algorithm")
7118 (description
7119 "Artificial Bee Colony (ABC) is one of the most recently defined algorithms by Dervis
7120 Karaboga in 2005, motivated by the intelligent behavior of honey bees. It is as
7121 simple as Particle Swarm Optimization (PSO) and Differential Evolution (DE)
7122 algorithms, and uses only common control parameters such as colony size and
7123 maximum cycle number. The @code{r-abcoptim} implements the Artificial bee
7124 colony optimization algorithm @url{http://mf.erciyes.edu.tr/abc/pub/tr06_2005.pdf}.
7125 This version is a work-in-progress and is written in R code.")
7126 (license license:expat)))
7127
7128 (define-public r-abcp2
7129 (package
7130 (name "r-abcp2")
7131 (version "1.2")
7132 (source
7133 (origin
7134 (method url-fetch)
7135 (uri (cran-uri "ABCp2" version))
7136 (sha256
7137 (base32 "1s2skkxpzss7c29i8600psgrp0hl46jcrxqrmy2b4db8hc0kcnbx"))))
7138 (properties `((upstream-name . "ABCp2")))
7139 (build-system r-build-system)
7140 (propagated-inputs `(("r-mass" ,r-mass)))
7141 (home-page "https://cran.r-project.org/web/packages/ABCp2/")
7142 (synopsis "Approximate Bayesian Computational Model for Estimating P2")
7143 (description
7144 "This package tests the goodness of fit of a distribution of offspring to the Normal,
7145 Poisson, and Gamma distribution and estimates the proportional paternity of the
7146 second male (P2) based on the best fit distribution.")
7147 (license license:gpl2)))
7148
7149 (define-public r-abcrf
7150 (package
7151 (name "r-abcrf")
7152 (version "1.8.1")
7153 (source
7154 (origin
7155 (method url-fetch)
7156 (uri (cran-uri "abcrf" version))
7157 (sha256
7158 (base32 "1ghbd24yhqy3xhdxas6ccn84nkavqpgldx5ck8kijknc7qjm8k27"))))
7159 (build-system r-build-system)
7160 (propagated-inputs
7161 `(("r-doparallel" ,r-doparallel)
7162 ("r-foreach" ,r-foreach)
7163 ("r-mass" ,r-mass)
7164 ("r-matrixstats" ,r-matrixstats)
7165 ("r-ranger" ,r-ranger)
7166 ("r-rcpp" ,r-rcpp)
7167 ("r-rcpparmadillo" ,r-rcpparmadillo)
7168 ("r-readr" ,r-readr)
7169 ("r-stringr" ,r-stringr)))
7170 (home-page "https://cran.r-project.org/web/packages/abcrf/")
7171 (synopsis "Approximate bayesian computation via random forests")
7172 (description
7173 "This package performs approximate bayesian computation (ABC) model choice and
7174 parameter inference via random forests. This machine learning tool named random
7175 forests (RF) can conduct selection among the highly complex models covered by
7176 ABC algorithms.")
7177 (license license:gpl2+)))
7178
7179 (define-public r-abctools
7180 (package
7181 (name "r-abctools")
7182 (version "1.1.3")
7183 (source
7184 (origin
7185 (method url-fetch)
7186 (uri (cran-uri "abctools" version))
7187 (sha256
7188 (base32 "07s9dg10i8lsxl73b4n2hynca2fjgb0ykb0dz8c3zv6cgw3cyx97"))))
7189 (build-system r-build-system)
7190 (propagated-inputs
7191 `(("r-abc" ,r-abc)
7192 ("r-abind" ,r-abind)
7193 ("r-hmisc" ,r-hmisc)
7194 ("r-plyr" ,r-plyr)))
7195 (home-page "https://github.com/dennisprangle/abctools/")
7196 (synopsis "Tools for ABC analyses")
7197 (description
7198 "This @code{r-abctools} package provides tools for approximate Bayesian computation
7199 including summary statistic selection and assessing coverage. This includes
7200 recent dimension reduction algorithms to tune the choice of summary statistics,
7201 and coverage methods to tune the choice of threshold.")
7202 (license license:gpl2+)))
7203
7204 (define-public r-ggstance
7205 (package
7206 (name "r-ggstance")
7207 (version "0.3.4")
7208 (source
7209 (origin
7210 (method url-fetch)
7211 (uri (cran-uri "ggstance" version))
7212 (sha256
7213 (base32 "0aqz3dn02cgij018a4sglqwrwr9dzzj12l8xr1064q7hfd4f64m1"))))
7214 (build-system r-build-system)
7215 (propagated-inputs
7216 `(("r-ggplot2" ,r-ggplot2)
7217 ("r-plyr" ,r-plyr)
7218 ("r-rlang" ,r-rlang)
7219 ("r-withr" ,r-withr)))
7220 (home-page "https://cran.r-project.org/web/packages/ggstance/")
7221 (synopsis "Horizontal and vertical versions of @code{r-ggplot2}")
7222 (description
7223 "This package is a @code{r-ggplot2} extension that provides flipped components:
7224 @enumerate
7225 @item horizontal versions of @code{r-ggplot2} stats and @code{r-ggplot2} geoms;
7226 @item vertical versions of @code{r-ggplot2} positions.
7227 @end enumerate")
7228 (license license:gpl3)))
7229
7230 (define-public r-mosaiccore
7231 (package
7232 (name "r-mosaiccore")
7233 (version "0.6.0")
7234 (source
7235 (origin
7236 (method url-fetch)
7237 (uri (cran-uri "mosaicCore" version))
7238 (sha256
7239 (base32 "1klw97h6lchw1cpcl8s637ikcl428cckmjq0czi7mibh9q9mw72z"))))
7240 (properties `((upstream-name . "mosaicCore")))
7241 (build-system r-build-system)
7242 (propagated-inputs
7243 `(("r-dplyr" ,r-dplyr)
7244 ("r-lazyeval" ,r-lazyeval)
7245 ("r-mass" ,r-mass)
7246 ("r-rlang" ,r-rlang)
7247 ("r-tidyr" ,r-tidyr)))
7248 (home-page "https://github.com/ProjectMOSAIC/mosaicCore/")
7249 (synopsis "Common utilities for mosaic family packages")
7250 (description
7251 "Common utilities used in other Mosaic family packages are collected here.")
7252 (license license:gpl2+)))
7253
7254 (define-public r-ggformula
7255 (package
7256 (name "r-ggformula")
7257 (version "0.9.4")
7258 (source
7259 (origin
7260 (method url-fetch)
7261 (uri (cran-uri "ggformula" version))
7262 (sha256
7263 (base32 "04vdhg1bbc1psrx9ggaphz7cx4fw5xsmhkqpqfcg2w4ba2bjy46f"))))
7264 (build-system r-build-system)
7265 (propagated-inputs
7266 `(("r-ggforce" ,r-ggforce)
7267 ("r-ggplot2" ,r-ggplot2)
7268 ("r-ggstance" ,r-ggstance)
7269 ("r-magrittr" ,r-magrittr)
7270 ("r-mosaiccore" ,r-mosaiccore)
7271 ("r-rlang" ,r-rlang)
7272 ("r-stringr" ,r-stringr)
7273 ("r-tibble" ,r-tibble)))
7274 (home-page "https://github.com/ProjectMOSAIC/ggformula/")
7275 (synopsis "Formula interface for the @code{r-ggplot2}")
7276 (description
7277 "The @code{r-ggformula} introduces a family of graphics functions, gf_point(),
7278 gf_density(), and so on, bring the formula interface to ggplot(). This captures
7279 and extends the excellent simplicity of the lattice-graphics formula interface,
7280 while providing the intuitive capabilities of @code{r-ggplot2}.")
7281 (license license:expat)))
7282
7283 (define-public r-mosaicdata
7284 (package
7285 (name "r-mosaicdata")
7286 (version "0.17.0")
7287 (source
7288 (origin
7289 (method url-fetch)
7290 (uri (cran-uri "mosaicData" version))
7291 (sha256
7292 (base32 "04z0mdm52mykqsxsinhmsihn181zf6cw321gayk2rjp7lj7mwdq9"))))
7293 (properties `((upstream-name . "mosaicData")))
7294 (build-system r-build-system)
7295 (home-page "https://cran.r-project.org/web/packages/mosaicData/")
7296 (synopsis "Data sets for project Mosaic")
7297 (description
7298 "This package provides data sets from project Mosaic @url{http://mosaic-web.org}
7299 used to teach mathematics, statistics, computation and modeling.")
7300 (license license:gpl2+)))
7301
7302 (define-public r-raster
7303 (package
7304 (name "r-raster")
7305 (version "3.0-12")
7306 (source
7307 (origin
7308 (method url-fetch)
7309 (uri (cran-uri "raster" version))
7310 (sha256
7311 (base32
7312 "0rrbsigkqxsdic8fly6nrsc79zsliwvr1x2b4xqpl9d34vr50dvg"))))
7313 (build-system r-build-system)
7314 (propagated-inputs
7315 `(("r-rcpp" ,r-rcpp)
7316 ("r-sp" ,r-sp)))
7317 (home-page "https://www.rspatial.org/")
7318 (synopsis "Geographic data analysis and modeling")
7319 (description
7320 "The package implements basic and high-level functions for reading,
7321 writing, manipulating, analyzing and modeling of gridded spatial data.
7322 Processing of very large files is supported.")
7323 (license license:gpl3+)))
7324
7325 (define-public r-mosaic
7326 (package
7327 (name "r-mosaic")
7328 (version "1.4.0")
7329 (source
7330 (origin
7331 (method url-fetch)
7332 (uri (cran-uri "mosaic" version))
7333 (sha256
7334 (base32 "10jbrg8kli00kfgbh2f67bymm5cnlancc9dplb1j7fl552yjddn2"))))
7335 (build-system r-build-system)
7336 (propagated-inputs
7337 `(("r-broom" ,r-broom)
7338 ("r-dplyr" ,r-dplyr)
7339 ("r-ggdendro" ,r-ggdendro)
7340 ("r-ggformula" ,r-ggformula)
7341 ("r-ggplot2" ,r-ggplot2)
7342 ("r-ggrepel" ,r-ggrepel)
7343 ("r-glue" ,r-glue)
7344 ("r-gridextra" ,r-gridextra)
7345 ("r-lattice" ,r-lattice)
7346 ("r-latticeextra" ,r-latticeextra)
7347 ("r-lazyeval" ,r-lazyeval)
7348 ("r-mass" ,r-mass)
7349 ("r-matrix" ,r-matrix)
7350 ("r-mosaiccore" ,r-mosaiccore)
7351 ("r-mosaicdata" ,r-mosaicdata)
7352 ("r-readr" ,r-readr)
7353 ("r-tidyr" ,r-tidyr)))
7354 (native-inputs
7355 `(("r-knitr" ,r-knitr)))
7356 (home-page "https://github.com/ProjectMOSAIC/mosaic/")
7357 (synopsis "Mathematics, statistics, and computation teaching utilities")
7358 (description
7359 "This package contain data sets and utilities from
7360 @url{http://mosaic-web.org, Project MOSAIC} used to teach mathematics,
7361 statistics, computation and modeling. Project MOSAIC is a community of
7362 educators working to tie together aspects of quantitative work that students
7363 in science, technology, engineering and mathematics will need in their
7364 professional lives, but which are usually taught in isolation, if at all.")
7365 (license license:gpl2+)))
7366
7367 (define-public r-abd
7368 (package
7369 (name "r-abd")
7370 (version "0.2-8")
7371 (source
7372 (origin
7373 (method url-fetch)
7374 (uri (cran-uri "abd" version))
7375 (sha256
7376 (base32 "191gspqzdv573vaw624ri0f5cm6v4j524bjs74d4a1hn3kn6r9b7"))))
7377 (build-system r-build-system)
7378 (propagated-inputs
7379 `(("r-lattice" ,r-lattice)
7380 ("r-mosaic" ,r-mosaic)
7381 ("r-nlme" ,r-nlme)))
7382 (home-page "https://cran.r-project.org/web/packages/abd/")
7383 (synopsis "Analysis of biological data")
7384 (description
7385 "The @code{r-abd} package contains data sets and sample code for the Analysis of
7386 biological data by Michael Whitlock and Dolph Schluter.")
7387 (license license:gpl2)))
7388
7389 (define-public r-svgui
7390 (package
7391 (name "r-svgui")
7392 (version "1.0.0")
7393 (source
7394 (origin
7395 (method url-fetch)
7396 (uri (cran-uri "svGUI" version))
7397 (sha256
7398 (base32 "1r7ab0p4yr8q03gj02hmj7k1ghksgkg4nx750c0ajfs2q9y1dxfc"))))
7399 (properties `((upstream-name . "svGUI")))
7400 (build-system r-build-system)
7401 (home-page "https://github.com/SciViews/svGUI/")
7402 (synopsis "Functions for managing GUI clients in R")
7403 (description
7404 "The SciViews @code{svGUI} package eases the management of Graphical User
7405 Interfaces (GUI) in R. It is independent from any particular GUI widgets. It
7406 centralizes info about GUI elements currently used, and it dispatches GUI
7407 calls to the particular toolkits in use in function of the context.")
7408 (license license:gpl2)))
7409
7410 (define-public r-svdialogs
7411 (package
7412 (name "r-svdialogs")
7413 (version "1.0.0")
7414 (source
7415 (origin
7416 (method url-fetch)
7417 (uri (cran-uri "svDialogs" version))
7418 (sha256
7419 (base32 "0xqppydfawnwk84kb5qiybwbcmv38vn4imgz01mz2pnq4xb80p97"))))
7420 (properties `((upstream-name . "svDialogs")))
7421 (build-system r-build-system)
7422 (inputs
7423 `(("yad" ,yad)
7424 ("zenity" ,zenity)))
7425 (propagated-inputs
7426 `(("r-rstudioapi" ,r-rstudioapi)
7427 ("r-svgui" ,r-svgui)))
7428 (home-page "https://github.com/SciViews/svDialogs/")
7429 (synopsis "Portable dialog boxes")
7430 (description
7431 "This package helps to construct standard dialog boxes for your GUI, including
7432 message boxes, input boxes, list, file or directory selection, and others. In
7433 case R cannot display GUI dialog boxes, a simpler command line version of these
7434 interactive elements is also provided as a fallback solution.")
7435 (license license:gpl2)))
7436
7437 (define-public r-abe
7438 (package
7439 (name "r-abe")
7440 (version "3.0.1")
7441 (source
7442 (origin
7443 (method url-fetch)
7444 (uri (cran-uri "abe" version))
7445 (sha256
7446 (base32
7447 "1f19h3xzzmjhvwc1rrb8z0rai3ip03y4gdi2gg9bfr5sg2nfklk6"))))
7448 (build-system r-build-system)
7449 (home-page "https://cran.r-project.org/web/packages/abe/")
7450 (synopsis "Augmented backward elimination")
7451 (description
7452 "This package performs augmented backward elimination and checks the
7453 stability of the obtained model. Augmented backward elimination combines
7454 significance or information based criteria with the change in estimate to
7455 either select the optimal model for prediction purposes or to serve as a tool
7456 to obtain a practically sound, highly interpretable model.")
7457 (license license:gpl2+)))
7458
7459 (define-public r-abf2
7460 (package
7461 (name "r-abf2")
7462 (version "0.7-1")
7463 (source
7464 (origin
7465 (method url-fetch)
7466 (uri (cran-uri "abf2" version))
7467 (sha256
7468 (base32 "0d65mc1w4pbiv7xaqzdlw1bfsxf25587rv597hh41vs0j0zlfpxx"))))
7469 (build-system r-build-system)
7470 (home-page "https://cran.r-project.org/web/packages/abf2/")
7471 (synopsis "Load gap-free axon @code{r-abf2} files")
7472 (description
7473 "This package loads electrophysiology data from ABF2 files, as created by
7474 Axon Instruments/Molecular Devices software. Only files recorded in gap-free
7475 mode are currently supported.")
7476 (license license:artistic2.0)))
7477
7478 (define-public r-abhgenotyper
7479 (package
7480 (name "r-abhgenotyper")
7481 (version "1.0.1")
7482 (source
7483 (origin
7484 (method url-fetch)
7485 (uri (cran-uri "ABHgenotypeR" version))
7486 (sha256
7487 (base32 "08cpmnaaxsm5c5bjifnfxdlvg5inrf13biqpcl2yq5zpqjmiki0l"))))
7488 (properties `((upstream-name . "ABHgenotypeR")))
7489 (build-system r-build-system)
7490 (propagated-inputs
7491 `(("r-ggplot2" ,r-ggplot2)
7492 ("r-reshape2" ,r-reshape2)))
7493 (home-page "https://github.com/StefanReuscher/ABHgenotypeR/")
7494 (synopsis "Visualize and manipulate ABH genotypes")
7495 (description
7496 "The @code{r-abhgenotyper} package provides simple imputation,
7497 error-correction and plotting capacities for genotype data. The package is
7498 supposed to serve as an intermediate but independent analysis tool between the
7499 TASSEL GBS pipeline and the @code{r-qtl} package. It provides functionalities
7500 not found in either TASSEL or @code{r-qtl} in addition to visualization of
7501 genotypes as \"graphical genotypes\".")
7502 (license license:gpl3)))
7503
7504 (define-public r-furrr
7505 (package
7506 (name "r-furrr")
7507 (version "0.1.0")
7508 (source
7509 (origin
7510 (method url-fetch)
7511 (uri (cran-uri "furrr" version))
7512 (sha256
7513 (base32
7514 "1ld9aa9hydna94hgm6p91zjbfv1dz1vsgchjlpknkg6irbvkfafx"))))
7515 (build-system r-build-system)
7516 (propagated-inputs
7517 `(("r-future" ,r-future)
7518 ("r-globals" ,r-globals)
7519 ("r-purrr" ,r-purrr)
7520 ("r-rlang" ,r-rlang)))
7521 (home-page "https://github.com/DavisVaughan/furrr")
7522 (synopsis "Apply mapping functions in parallel using futures")
7523 (description
7524 "This package provides implementations of the family of @code{map()}
7525 functions from the @code{purrr} package that can be resolved using any
7526 @code{future}-supported backend, e.g. parallel on the local machine or
7527 distributed on a compute cluster.")
7528 (license license:lgpl2.1+)))
7529
7530 (define-public r-abjutils
7531 (package
7532 (name "r-abjutils")
7533 (version "0.2.3")
7534 (source
7535 (origin
7536 (method url-fetch)
7537 (uri (cran-uri "abjutils" version))
7538 (sha256
7539 (base32 "0n4zps65y3zg0gfzlv97w91si52a9izkncirskbkj5x9hk0nhxcv"))))
7540 (build-system r-build-system)
7541 (propagated-inputs
7542 `(("r-devtools" ,r-devtools)
7543 ("r-dplyr" ,r-dplyr)
7544 ("r-furrr" ,r-furrr)
7545 ("r-future" ,r-future)
7546 ("r-glue" ,r-glue)
7547 ("r-httr" ,r-httr)
7548 ("r-magrittr" ,r-magrittr)
7549 ("r-progress" ,r-progress)
7550 ("r-purrr" ,r-purrr)
7551 ("r-readr" ,r-readr)
7552 ("r-rlang" ,r-rlang)
7553 ("r-rstudioapi" ,r-rstudioapi)
7554 ("r-scales" ,r-scales)
7555 ("r-stringi" ,r-stringi)
7556 ("r-stringr" ,r-stringr)
7557 ("r-tibble" ,r-tibble)
7558 ("r-tidyr" ,r-tidyr)))
7559 (home-page "https://github.com/abjur/abjutils/")
7560 (synopsis "Collection of tools for jurimetrical analysis")
7561 (description
7562 "This package implements general purpose tools, such as functions for
7563 sampling and basic manipulation of Brazilian lawsuits identification number.
7564 It also implements functions for text cleaning, such as accentuation
7565 removal.")
7566 (license license:expat)))
7567
7568 (define-public r-abnormality
7569 (package
7570 (name "r-abnormality")
7571 (version "0.1.0")
7572 (source
7573 (origin
7574 (method url-fetch)
7575 (uri (cran-uri "abnormality" version))
7576 (sha256
7577 (base32 "1fzfskl9akl06nliy8hkv2a0pznpj8pwcypg3gj5r2nzvr3kan9v"))))
7578 (build-system r-build-system)
7579 (propagated-inputs
7580 `(("r-mass" ,r-mass)
7581 ("r-matrix" ,r-matrix)))
7582 (home-page "https://cran.r-project.org/web/packages/abnormality/")
7583 (synopsis "Measure a subject's abnormality with respect to a reference population")
7584 (description
7585 "This package contains functions to implement the methodology and
7586 considerations laid out by Marks et al. in the article \"Measuring abnormality
7587 in high dimensional spaces: applications in biomechanical gait analysis\".
7588 Using high-dimensional datasets to measure a subject's overall level of
7589 abnormality as compared to a reference population is often needed in outcomes
7590 research.")
7591 (license license:expat)))
7592
7593 (define-public r-abodoutlier
7594 (package
7595 (name "r-abodoutlier")
7596 (version "0.1")
7597 (source
7598 (origin
7599 (method url-fetch)
7600 (uri (cran-uri "abodOutlier" version))
7601 (sha256
7602 (base32 "1pvhgxmh23br84r0fbmv7g53z2427birdja96a67vqgz18r3fdvj"))))
7603 (properties `((upstream-name . "abodOutlier")))
7604 (build-system r-build-system)
7605 (propagated-inputs
7606 `(("r-cluster" ,r-cluster)))
7607 (home-page "https://cran.r-project.org/web/packages/abodOutlier/")
7608 (synopsis "Angle-based outlier detection")
7609 (description
7610 "This package performs angle-based outlier detection on a given data
7611 frame. It offers three methods to process data:
7612 @enumerate
7613 @item full but slow implementation using all the data that has cubic
7614 complexity;
7615 @item a fully randomized method;
7616 @item a method using k-nearest neighbours.
7617 @end enumerate
7618 These algorithms are well suited for high dimensional data outlier
7619 detection.")
7620 (license license:expat)))
7621
7622 (define-public r-abps
7623 (package
7624 (name "r-abps")
7625 (version "0.3")
7626 (source
7627 (origin
7628 (method url-fetch)
7629 (uri (cran-uri "ABPS" version))
7630 (sha256
7631 (base32 "0n3f66nmfi5v94il1mxy026mi84w01ph2aljk60vn3mrz8kwf2ll"))))
7632 (properties `((upstream-name . "ABPS")))
7633 (build-system r-build-system)
7634 (propagated-inputs `(("r-kernlab" ,r-kernlab)))
7635 (home-page "https://cran.r-project.org/web/packages/ABPS/")
7636 (synopsis "Abnormal blood profile score to detect blood doping")
7637 (description
7638 "This package offers an implementation of the @dfn{Abnormal blood profile score} (ABPS).
7639 The ABPS is a part of the Athlete biological passport program of the World
7640 anti-doping agency, which combines several blood parameters into a single
7641 score in order to detect blood doping. The package also contains functions to
7642 calculate other scores used in anti-doping programs, such as the ratio of
7643 hemoglobin to reticulocytes (OFF-score), as well as example data.")
7644 (license license:gpl2+)))
7645
7646 (define-public r-parmigene
7647 (package
7648 (name "r-parmigene")
7649 (version "1.0.2")
7650 (source
7651 (origin
7652 (method url-fetch)
7653 (uri (cran-uri "parmigene" version))
7654 (sha256
7655 (base32
7656 "1fsm6pkr17jcbzkj1hbn91jf890fviqk1lq6ls8pihsdgah1zb4d"))))
7657 (build-system r-build-system)
7658 (home-page "https://cran.r-project.org/web/packages/parmigene/")
7659 (synopsis "Mutual information estimation for gene network reconstruction")
7660 (description
7661 "This package provides a parallel estimation of the mutual information
7662 based on entropy estimates from k-nearest neighbors distances and algorithms
7663 for the reconstruction of gene regulatory networks.")
7664 (license license:agpl3+)))
7665
7666 (define-public r-pscl
7667 (package
7668 (name "r-pscl")
7669 (version "1.5.5")
7670 (source
7671 (origin
7672 (method url-fetch)
7673 (uri (cran-uri "pscl" version))
7674 (sha256
7675 (base32 "0vzf5wazs92bhqhqd66v3vwmbfmnh67gb2466g1xxawim649nk05"))))
7676 (build-system r-build-system)
7677 (propagated-inputs
7678 `(("r-mass" ,r-mass)))
7679 (home-page "https://github.com/atahk/pscl/")
7680 (synopsis "Political science computational laboratory")
7681 (description
7682 "The @code{pscl} is an R package providing classes and methods for:
7683 @enumerate
7684 @item Bayesian analysis of roll call data (item-response models);
7685 @item elementary Bayesian statistics;
7686 @item maximum likelihood estimation of zero-inflated and hurdle models for count
7687 data;
7688 @item utility functions.
7689 @end enumerate")
7690 (license license:gpl2)))
7691
7692 (define-public r-accelmissing
7693 (package
7694 (name "r-accelmissing")
7695 (version "1.4")
7696 (source
7697 (origin
7698 (method url-fetch)
7699 (uri (cran-uri "accelmissing" version))
7700 (sha256
7701 (base32 "1nql9inx6azdzi3z4sfm2vdml2mms6krl8wzlf1dn1c97ahn57fy"))))
7702 (build-system r-build-system)
7703 (propagated-inputs
7704 `(("r-mice" ,r-mice)
7705 ("r-pscl" ,r-pscl)))
7706 (home-page "https://cran.r-project.org/web/packages/accelmissing/")
7707 (synopsis "Missing value imputation for accelerometer data")
7708 (description
7709 "This package provides a statistical method to impute the missing values in
7710 accelerometer data. The methodology includes both parametric and
7711 semi-parametric multiple imputations under the zero-inflated Poisson lognormal
7712 model. It also provides multiple functions to preprocess the accelerometer data
7713 previous to the missing data imputation. These include detecting the wearing
7714 and the non-wearing time, selecting valid days and subjects, and creating plots.")
7715 (license license:gpl2+)))
7716
7717 (define-public r-mhsmm
7718 (package
7719 (name "r-mhsmm")
7720 (version "0.4.16")
7721 (source
7722 (origin
7723 (method url-fetch)
7724 (uri (cran-uri "mhsmm" version))
7725 (sha256
7726 (base32 "009dj0zkj1zry7jr9hf4cknb686z50a2l967if64xm0dvjmp7dgs"))))
7727 (build-system r-build-system)
7728 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
7729 (home-page "https://github.com/jaredo/mhsmm/")
7730 (synopsis "Inference for hidden Markov and semi-Markov models")
7731 (description
7732 "The @code{r-mhsmm} package implements estimation and prediction methods for
7733 hidden Markov and semi-Markov models for multiple observation sequences. Such
7734 techniques are of interest when observed data is thought to be dependent on some
7735 unobserved (or hidden) state. Also, this package is suitable for equidistant
7736 time series data, with multivariate and/or missing data. Allows user defined
7737 emission distributions.")
7738 (license license:gpl2+)))
7739
7740 (define-public r-nleqslv
7741 (package
7742 (name "r-nleqslv")
7743 (version "3.3.2")
7744 (source
7745 (origin
7746 (method url-fetch)
7747 (uri (cran-uri "nleqslv" version))
7748 (sha256
7749 (base32 "1v9znvncyigw9r25wx2ma0b7ib179b488dl0qsrhp5zrcz7mcjgm"))))
7750 (build-system r-build-system)
7751 (native-inputs `(("gfortran" ,gfortran)))
7752 (home-page "https://cran.r-project.org/web/packages/nleqslv/")
7753 (synopsis "Solve systems of nonlinear equations")
7754 (description
7755 "The @code{r-nleqslv} package solves a system of nonlinear equations using a
7756 Broyden or a Newton method with a choice of global strategies such as line
7757 search and trust region. There are options for using a numerical or user
7758 supplied Jacobian, for specifying a banded numerical Jacobian and for allowing a
7759 singular or ill-conditioned Jacobian.")
7760 (license license:gpl2+)))
7761
7762 (define-public r-physicalactivity
7763 (package
7764 (name "r-physicalactivity")
7765 (version "0.2-2")
7766 (source
7767 (origin
7768 (method url-fetch)
7769 (uri (cran-uri "PhysicalActivity" version))
7770 (sha256
7771 (base32 "14z6plgwyr46vs9m997rvlz8sdglfs9g087an8668zqkzzs2w4ln"))))
7772 (properties
7773 `((upstream-name . "PhysicalActivity")))
7774 (build-system r-build-system)
7775 (home-page "https://cran.r-project.org/web/packages/PhysicalActivity/")
7776 (synopsis "Procesing accelerometer data for physical activity measurement")
7777 (description
7778 "This @code{r-physicalactivity} package provides a function @code{wearingMarking}
7779 for classification of monitor wear and nonwear time intervals in accelerometer
7780 data collected to assess physical activity. The package also contains functions
7781 for making plots of accelerometer data and obtaining the summary of various
7782 information including daily monitor wear time and the mean monitor wear time
7783 during valid days. The revised package version 0.2-1 improved the functions
7784 regarding speed, robustness and add better support for time zones and daylight
7785 saving. In addition, several functions were added:
7786 @enumerate
7787 @item the @code{markDelivery} can classify days for ActiGraph delivery by mail;
7788 @item the @code{markPAI} can categorize physical activity intensity level based
7789 on user-defined cut-points of accelerometer counts.
7790 @end enumerate
7791 It also supports importing ActiGraph (AGD) files with @code{readActigraph} and
7792 @code{queryActigraph} functions.")
7793 (license license:gpl3+)))
7794
7795 (define-public r-acc
7796 (package
7797 (name "r-acc")
7798 (version "1.3.3")
7799 (source
7800 (origin
7801 (method url-fetch)
7802 (uri (cran-uri "acc" version))
7803 (sha256
7804 (base32 "1ii2vm47djxbixa75h690q1s2f9m9x6i8nkygik93j6dayr6kr1m"))))
7805 (build-system r-build-system)
7806 (propagated-inputs
7807 `(("r-circlize" ,r-circlize)
7808 ("r-dbi" ,r-dbi)
7809 ("r-ggplot2" ,r-ggplot2)
7810 ("r-iterators" ,r-iterators)
7811 ("r-mhsmm" ,r-mhsmm)
7812 ("r-nleqslv" ,r-nleqslv)
7813 ("r-physicalactivity" ,r-physicalactivity)
7814 ("r-plyr" ,r-plyr)
7815 ("r-r-utils" ,r-r-utils)
7816 ("r-rcpp" ,r-rcpp)
7817 ("r-rcpparmadillo" ,r-rcpparmadillo)
7818 ("r-rsqlite" ,r-rsqlite)
7819 ("r-zoo" ,r-zoo)))
7820 (home-page "https://cran.r-project.org/web/packages/acc/")
7821 (synopsis "Exploring accelerometer data")
7822 (description
7823 "This package processes accelerometer data from uni-axial and tri-axial devices
7824 and generates data summaries. Also, includes functions to plot, analyze, and
7825 simulate accelerometer data.")
7826 (license license:gpl2+)))
7827
7828 (define-public r-rbenchmark
7829 (package
7830 (name "r-rbenchmark")
7831 (version "1.0.0")
7832 (source
7833 (origin
7834 (method url-fetch)
7835 (uri (cran-uri "rbenchmark" version))
7836 (sha256
7837 (base32 "010fn3qwnk2k411cbqyvra1d12c3bhhl3spzm8kxffmirj4p2al9"))))
7838 (build-system r-build-system)
7839 (home-page "https://cran.r-project.org/web/packages/rbenchmark/")
7840 (synopsis "Benchmarking routine for R")
7841 (description
7842 "This @code{r-rbenchmark} package is inspired by the Perl module Benchmark,
7843 and is intended to facilitate benchmarking of arbitrary R code. The library
7844 consists of just one function, benchmark, which is a simple wrapper around
7845 system.time. Given a specification of the benchmarking process (counts of
7846 replications, evaluation environment) and an arbitrary number of expressions,
7847 benchmark evaluates each of the expressions in the specified environment,
7848 replicating the evaluation as many times as specified, and returning the results
7849 conveniently wrapped into a data frame.")
7850 (license license:gpl2+)))
7851
7852 (define-public r-mitools
7853 (package
7854 (name "r-mitools")
7855 (version "2.4")
7856 (source
7857 (origin
7858 (method url-fetch)
7859 (uri (cran-uri "mitools" version))
7860 (sha256
7861 (base32
7862 "0c2x2n1p53lcw0vx4vmy5j7m2f95i7g2iwbryl89imr99rvz617j"))))
7863 (build-system r-build-system)
7864 (propagated-inputs `(("r-dbi" ,r-dbi)))
7865 (home-page "https://cran.r-project.org/web/packages/mitools/")
7866 (synopsis "Tools for multiple imputation of missing data")
7867 (description
7868 "This package provides tools to perform analyses and combine results from
7869 multiple-imputation datasets.")
7870 (license license:gpl2)))
7871
7872 (define-public r-magick
7873 (package
7874 (name "r-magick")
7875 (version "2.3")
7876 (source
7877 (origin
7878 (method url-fetch)
7879 (uri (cran-uri "magick" version))
7880 (sha256
7881 (base32
7882 "182b4wahkq9q0scn99mql4vm9fp92nja0r5yizc4x9rjl492ahd8"))))
7883 (build-system r-build-system)
7884 (inputs
7885 `(("imagemagick" ,imagemagick)
7886 ("zlib" ,zlib)))
7887 (propagated-inputs
7888 `(("r-curl" ,r-curl)
7889 ("r-magrittr" ,r-magrittr)
7890 ("r-rcpp" ,r-rcpp)))
7891 (native-inputs
7892 `(("pkg-config" ,pkg-config)))
7893 (home-page "https://github.com/ropensci/magick")
7894 (synopsis "Advanced graphics and image-processing in R")
7895 (description
7896 "This package provides bindings to ImageMagick, a comprehensive image
7897 processing library. It supports many common formats (PNG, JPEG, TIFF, PDF,
7898 etc.) and manipulations (rotate, scale, crop, trim, flip, blur, etc). All
7899 operations are vectorized via the Magick++ STL meaning they operate either on
7900 a single frame or a series of frames for working with layers, collages, or
7901 animation. In RStudio, images are automatically previewed when printed to the
7902 console, resulting in an interactive editing environment.")
7903 (license license:expat)))
7904
7905 (define-public r-survey
7906 (package
7907 (name "r-survey")
7908 (version "3.37")
7909 (source
7910 (origin
7911 (method url-fetch)
7912 (uri (cran-uri "survey" version))
7913 (sha256
7914 (base32
7915 "1f31dvh48gzzan13pdrwh84ls35x9116095i7mdrcbrhz809r8dy"))))
7916 (build-system r-build-system)
7917 (propagated-inputs
7918 `(("r-lattice" ,r-lattice)
7919 ("r-matrix" ,r-matrix)
7920 ("r-minqa" ,r-minqa)
7921 ("r-mitools" ,r-mitools)
7922 ("r-numderiv" ,r-numderiv)
7923 ("r-survival" ,r-survival)))
7924 (home-page "http://r-survey.r-forge.r-project.org/survey/")
7925 (synopsis "Analysis of complex survey samples")
7926 (description
7927 "This package provides tools for the analysis of complex survey samples.
7928 The provided features include: summary statistics, two-sample tests, rank
7929 tests, generalised linear models, cumulative link models, Cox models,
7930 loglinear models, and general maximum pseudolikelihood estimation for
7931 multistage stratified, cluster-sampled, unequally weighted survey samples;
7932 variances by Taylor series linearisation or replicate weights;
7933 post-stratification, calibration, and raking; two-phase subsampling designs;
7934 graphics; PPS sampling without replacement; principal components, and factor
7935 analysis.")
7936 ;; Either version of the GPL.
7937 (license (list license:gpl2 license:gpl3))))
7938
7939 (define-public r-gee
7940 (package
7941 (name "r-gee")
7942 (version "4.13-20")
7943 (source
7944 (origin
7945 (method url-fetch)
7946 (uri (cran-uri "gee" version))
7947 (sha256
7948 (base32
7949 "167pzgnmj4cjc41ykps1mfwi6s7y32zxyycn5z17vn4v0pp4q0ak"))))
7950 (properties `((upstream-name . "gee")))
7951 (build-system r-build-system)
7952 (native-inputs
7953 `(("gfortran" ,gfortran)))
7954 (home-page "https://cran.r-project.org/web/packages/gee/")
7955 (synopsis "Generalized estimation equation solver")
7956 (description
7957 "This package provides a solver for generalized estimation equations.")
7958 (license license:gpl2)))
7959
7960 (define-public r-tab
7961 (package
7962 (name "r-tab")
7963 (version "4.1.1")
7964 (source
7965 (origin
7966 (method url-fetch)
7967 (uri (cran-uri "tab" version))
7968 (sha256
7969 (base32
7970 "0ds8n6gncidb66in7hlqkcmil5yfsf7ihqvmls789hrm2iz9xlfm"))))
7971 (properties `((upstream-name . "tab")))
7972 (build-system r-build-system)
7973 (propagated-inputs
7974 `(("r-dplyr" ,r-dplyr)
7975 ("r-gee" ,r-gee)
7976 ("r-knitr" ,r-knitr)
7977 ("r-mass" ,r-mass)
7978 ("r-survey" ,r-survey)
7979 ("r-survival" ,r-survival)
7980 ("r-xtable" ,r-xtable)))
7981 (home-page "https://cran.r-project.org/web/packages/tab/")
7982 (synopsis "Create summary tables for statistical reports")
7983 (description
7984 "This package contains functions for creating various types of summary
7985 tables, e.g. comparing characteristics across levels of a categorical variable
7986 and summarizing fitted generalized linear models, generalized estimating
7987 equations, and Cox proportional hazards models. Functions are available to
7988 handle data from simple random samples as well as complex surveys.")
7989 (license license:gpl3+)))
7990
7991 (define-public r-dvmisc
7992 (package
7993 (name "r-dvmisc")
7994 (version "1.1.4")
7995 (source
7996 (origin
7997 (method url-fetch)
7998 (uri (cran-uri "dvmisc" version))
7999 (sha256
8000 (base32 "01v6sixx0f3nrn6ymfifb3pvd2msfrwm21kmdv38laxq29vc4rsi"))))
8001 (build-system r-build-system)
8002 (propagated-inputs
8003 `(("r-cubature" ,r-cubature)
8004 ("r-data-table" ,r-data-table)
8005 ("r-dplyr" ,r-dplyr)
8006 ("r-ggplot2" ,r-ggplot2)
8007 ("r-mass" ,r-mass)
8008 ("r-mvtnorm" ,r-mvtnorm)
8009 ("r-pracma" ,r-pracma)
8010 ("r-rbenchmark" ,r-rbenchmark)
8011 ("r-rcpp" ,r-rcpp)
8012 ("r-survey" ,r-survey)
8013 ("r-tab" ,r-tab)))
8014 (home-page "https://cran.r-project.org/web/packages/dvmisc/")
8015 (synopsis "Faster computation of common statistics and miscellaneous functions")
8016 (description
8017 "This package implements faster versions of base R functions (e.g. mean, standard
8018 deviation, covariance, weighted mean), mostly written in C++, along with
8019 miscellaneous functions for various purposes (e.g. create the histogram with
8020 fitted probability density function or probability mass function curve, create
8021 the body mass index groups, assess the linearity assumption in logistic
8022 regression).")
8023 (license license:gpl2)))
8024
8025 (define-public r-accelerometry
8026 (package
8027 (name "r-accelerometry")
8028 (version "3.1.2")
8029 (source
8030 (origin
8031 (method url-fetch)
8032 (uri (cran-uri "accelerometry" version))
8033 (sha256
8034 (base32 "13xzrwhr4i1nj9c8vrmfdg2rmrc8n446iihcyxmy99sm99hpzyip"))))
8035 (build-system r-build-system)
8036 (propagated-inputs
8037 `(("r-dvmisc" ,r-dvmisc)
8038 ("r-rcpp" ,r-rcpp)))
8039 (home-page "https://cran.r-project.org/web/packages/accelerometry/")
8040 (synopsis "Functions for processing accelerometer data")
8041 (description
8042 "This package provides a collection of functions that perform operations on
8043 time-series accelerometer data, such as identify the non-wear time, flag minutes
8044 that are part of an activity bout, and find the maximum 10-minute average count
8045 value. The functions are generally very flexible, allowing for a variety of
8046 algorithms to be implemented.")
8047 (license license:gpl3)))
8048
8049 (define-public r-absim
8050 (package
8051 (name "r-absim")
8052 (version "0.2.6")
8053 (source
8054 (origin
8055 (method url-fetch)
8056 (uri (cran-uri "AbSim" version))
8057 (sha256
8058 (base32 "16ddjk8b6xw80ch4jis1y751i9561wdxh0gifbf15qiz3vjckq8m"))))
8059 (properties `((upstream-name . "AbSim")))
8060 (build-system r-build-system)
8061 (propagated-inputs
8062 `(("r-ape" ,r-ape)
8063 ("r-powerlaw" ,r-powerlaw)))
8064 (home-page "https://cran.r-project.org/web/packages/AbSim/")
8065 (synopsis "Time resolved simulations of antibody repertoires")
8066 (description
8067 "This package provides simulation methods for the evolution of antibody repertoires.
8068 The heavy and light chain variable region of both human and C57BL/6 mice can
8069 be simulated in a time-dependent fashion. Both single lineages using one set of
8070 V-, D-, and J-genes or full repertoires can be simulated. The algorithm begins
8071 with an initial V-D-J recombination event, starting the first phylogenetic tree.
8072 Upon completion, the main loop of the algorithm begins, with each iteration
8073 representing one simulated time step. Various mutation events are possible at
8074 each time step, contributing to a diverse final repertoire.")
8075 (license license:gpl2)))
8076
8077 (define-public r-quic
8078 (package
8079 (name "r-quic")
8080 (version "1.1")
8081 (source
8082 (origin
8083 (method url-fetch)
8084 (uri (cran-uri "QUIC" version))
8085 (sha256
8086 (base32 "021bp9xbaih60qmss015ycblbv6d1dvb1z89y93zpqqnc2qhpv3c"))))
8087 (properties `((upstream-name . "QUIC")))
8088 (build-system r-build-system)
8089 (home-page "https://www.cs.utexas.edu/users/sustik/QUIC/")
8090 (synopsis "Regularized sparse inverse covariance matrix estimation")
8091 (description
8092 "This package implements the regularized Gaussian maximum likelihood
8093 estimation of the inverse of a covariance matrix. It uses Newton's method and
8094 coordinate descent to solve the regularized inverse covariance matrix
8095 estimation problem.")
8096 ;; The project home page states that the release is under GPLv3 or later.
8097 ;; The CRAN page only says GPL-3.
8098 (license license:gpl3+)))
8099
8100 (define-public r-abundant
8101 (package
8102 (name "r-abundant")
8103 (version "1.1")
8104 (source
8105 (origin
8106 (method url-fetch)
8107 (uri (cran-uri "abundant" version))
8108 (sha256
8109 (base32 "1m76qdmqvwpgm0sihazi2dna7cgsz9rljal18vgffb5wamwmg9k7"))))
8110 (build-system r-build-system)
8111 (propagated-inputs
8112 `(("r-quic" ,r-quic)))
8113 (home-page "https://cran.r-project.org/web/packages/abundant/")
8114 (synopsis "Abundant regression and high-dimensional principal fitted components")
8115 (description
8116 "This package provides tools to fit and predict with the high-dimensional
8117 principal fitted components model. This model is described by Cook, Forzani,
8118 and Rothman (2012) @url{doi:10.1214/11-AOS962}.")
8119 ;; The DESCRIPTION file states GPL-2, but since it directly depends on a
8120 ;; GPLv3+ package (QUIC) this likely means GPLv2+.
8121 (license license:gpl2+)))
8122
8123 (define-public r-ac3net
8124 (package
8125 (name "r-ac3net")
8126 (version "1.2.2")
8127 (source
8128 (origin
8129 (method url-fetch)
8130 (uri (cran-uri "Ac3net" version))
8131 (sha256
8132 (base32 "1ns4n0xxz6p34c11bj0k7nzgmyqr9mis2b0g5nfz37dbikndyqyz"))))
8133 (properties `((upstream-name . "Ac3net")))
8134 (build-system r-build-system)
8135 (propagated-inputs
8136 `(("r-data-table" ,r-data-table)))
8137 (home-page "https://cran.r-project.org/web/packages/Ac3net/")
8138 (synopsis "Inferring directional conservative causal core gene networks")
8139 (description "This package infers directional Conservative causal core
8140 (gene) networks (C3NET). This is a version of the algorithm C3NET with
8141 directional network.")
8142 (license license:gpl3+)))
8143
8144 (define-public r-aca
8145 (package
8146 (name "r-aca")
8147 (version "1.1")
8148 (source
8149 (origin
8150 (method url-fetch)
8151 (uri (cran-uri "ACA" version))
8152 (sha256
8153 (base32 "1i3hm27nvnkvc39xlh0d1blq8q0q02czmvgi3cazmjx3jvxay0vq"))))
8154 (properties `((upstream-name . "ACA")))
8155 (build-system r-build-system)
8156 (home-page "https://cran.r-project.org/web/packages/ACA/")
8157 (synopsis "Abrupt change-point or aberration detection in point series")
8158 (description
8159 "This package offers an interactive function for the detection of breakpoints in
8160 series.")
8161 ;; Any version of the GPL
8162 (license (list license:gpl2+ license:gpl3+))))
8163
8164 (define-public r-acceptancesampling
8165 (package
8166 (name "r-acceptancesampling")
8167 (version "1.0-6")
8168 (source
8169 (origin
8170 (method url-fetch)
8171 (uri (cran-uri "AcceptanceSampling" version))
8172 (sha256
8173 (base32 "1z3rmln63ki2kik9kinbwr9qhr32ggbmh4mm3xqy6di119n47ca9"))))
8174 (properties
8175 `((upstream-name . "AcceptanceSampling")))
8176 (build-system r-build-system)
8177 (home-page "https://cran.r-project.org/web/packages/AcceptanceSampling/")
8178 (synopsis "Creation and evaluation of acceptance sampling plans")
8179 (description
8180 "This @code{r-acceptancesampling} provides functionality for creating and evaluating
8181 acceptance sampling plans. Acceptance sampling is a methodology commonly used
8182 in quality control and improvement. International standards of acceptance
8183 sampling provide sampling plans for specific circumstances. The aim of this
8184 package is to provide an easy-to-use interface to visualize single, double or
8185 multiple sampling plans. In addition, methods have been provided to enable the
8186 user to assess sampling plans against pre-specified levels of performance, as
8187 measured by the probability of acceptance for a given level of quality in the
8188 lot.")
8189 (license license:gpl3+)))
8190
8191 (define-public r-acclma
8192 (package
8193 (name "r-acclma")
8194 (version "1.0")
8195 (source
8196 (origin
8197 (method url-fetch)
8198 (uri (cran-uri "ACCLMA" version))
8199 (sha256
8200 (base32 "1na27sp18fq12gp6vxgqw1ffsz2yi1d8xvrxbrzx5g1kqxrayy0v"))))
8201 (properties `((upstream-name . "ACCLMA")))
8202 (build-system r-build-system)
8203 (home-page "https://cran.r-project.org/web/packages/ACCLMA/")
8204 (synopsis "ACC & LMA graph plotting")
8205 (description
8206 "This package contains a function that imports data from a @acronym{CSV,
8207 Comma-Separated Values} file, or uses manually entered data from the format (x,
8208 y, weight) and plots the appropriate @acronym{ACC, Absolute Concentration
8209 Curve} vs @acronym{LOI, Line of Independence} graph and
8210 @acronym{LMA, @acronym{LOI} Minus @acronym{ACC}} graph. The main
8211 function is @code{plotLMA} (source file, header) that takes a data set and plots the
8212 appropriate @acronym{LMA} and @acronym{ACC} graphs. If no source file (a
8213 string) was passed, a manual data entry window is opened. The header parameter
8214 indicates by TRUE/FALSE (false by default) if the source @acronym{CSV} file has
8215 a header row or not. The dataset should contain only one independent variable
8216 (x) and one dependent variable (y) and can contain a weight for each
8217 observation.")
8218 (license license:gpl2)))
8219
8220 (define-public r-aspi
8221 (package
8222 (name "r-aspi")
8223 (version "0.2.0")
8224 (source
8225 (origin
8226 (method url-fetch)
8227 (uri (cran-uri "aspi" version))
8228 (sha256
8229 (base32 "0rhvxw243vvdv3hxa6pi343gcjc2cbxq1jzqirl9k1l4i3897l87"))))
8230 (build-system r-build-system)
8231 (home-page
8232 "https://cran.r-project.org/web/packages/aspi/")
8233 (synopsis
8234 "Analysis of symmetry of parasitic infections")
8235 (description
8236 "This package provides tools for the analysis and visualization of bilateral
8237 asymmetry in parasitic infections.")
8238 (license license:gpl3+)))
8239
8240 (define-public r-sandwich
8241 (package
8242 (name "r-sandwich")
8243 (version "2.5-1")
8244 (source
8245 (origin
8246 (method url-fetch)
8247 (uri (cran-uri "sandwich" version))
8248 (sha256
8249 (base32
8250 "1mk685b9wq7k566pbml52rj96i5h6b3vf215k9picgmq296nzvyv"))))
8251 (build-system r-build-system)
8252 (propagated-inputs
8253 `(("r-zoo" ,r-zoo)))
8254 (home-page "https://cran.r-project.org/web/packages/sandwich/")
8255 (synopsis "Robust Covariance Matrix Estimators")
8256 (description
8257 "This package provides model-robust standard error estimators for
8258 cross-sectional, time series, clustered, panel, and longitudinal data.")
8259 ;; Either version of the license.
8260 (license (list license:gpl2 license:gpl3))))
8261
8262 (define-public r-th-data
8263 (package
8264 (name "r-th-data")
8265 (version "1.0-10")
8266 (source
8267 (origin
8268 (method url-fetch)
8269 (uri (cran-uri "TH.data" version))
8270 (sha256
8271 (base32
8272 "0mgz7aj2d9abbmdr65zgmg1ddp3fdbs3mfj83r5xadh5ldkir2k1"))))
8273 (properties `((upstream-name . "TH.data")))
8274 (build-system r-build-system)
8275 (propagated-inputs
8276 `(("r-mass" ,r-mass)
8277 ("r-survival" ,r-survival)))
8278 (home-page "https://cran.r-project.org/web/packages/TH.data/")
8279 (synopsis "Shared data sets")
8280 (description
8281 "This package contains supporting data sets that are used in other
8282 packages maintained by Torsten Hothorn.")
8283 (license license:gpl3)))
8284
8285 (define-public r-multcomp
8286 (package
8287 (name "r-multcomp")
8288 (version "1.4-12")
8289 (source
8290 (origin
8291 (method url-fetch)
8292 (uri (cran-uri "multcomp" version))
8293 (sha256
8294 (base32
8295 "14c2f10rz546w7ly5f4r6wnd07yj5gic38an17gxny1vf2nsff0b"))))
8296 (build-system r-build-system)
8297 (propagated-inputs
8298 `(("r-codetools" ,r-codetools)
8299 ("r-mvtnorm" ,r-mvtnorm)
8300 ("r-sandwich" ,r-sandwich)
8301 ("r-survival" ,r-survival)
8302 ("r-th-data" ,r-th-data)))
8303 (home-page "https://cran.r-project.org/web/packages/multcomp/")
8304 (synopsis "Simultaneous inference in general parametric models")
8305 (description
8306 "Simultaneous tests and confidence intervals for general linear
8307 hypotheses in parametric models, including linear, generalized linear, linear
8308 mixed effects, and survival models. The package includes demos reproducing
8309 analyzes presented in the book \"Multiple Comparisons Using R\" (Bretz,
8310 Hothorn, Westfall, 2010, CRC Press).")
8311 (license license:gpl2)))
8312
8313 (define-public r-emmeans
8314 (package
8315 (name "r-emmeans")
8316 (version "1.4.5")
8317 (source
8318 (origin
8319 (method url-fetch)
8320 (uri (cran-uri "emmeans" version))
8321 (sha256
8322 (base32
8323 "10fmvmd6q4zjr6b18hhc85mwrzv778qzj6lwl9kbs2fsfvsgw7mm"))))
8324 (build-system r-build-system)
8325 (propagated-inputs
8326 `(("r-estimability" ,r-estimability)
8327 ("r-mvtnorm" ,r-mvtnorm)
8328 ("r-numderiv" ,r-numderiv)
8329 ("r-plyr" ,r-plyr)
8330 ("r-xtable" ,r-xtable)))
8331 (home-page "https://github.com/rvlenth/emmeans")
8332 (synopsis "Estimated marginal means, aka least-squares means")
8333 (description
8334 "This package provides tools to obtain @dfn{estimated marginal
8335 means} (EMMs) for many linear, generalized linear, and mixed models. It can
8336 be used to compute contrasts or linear functions of EMMs, trends, and
8337 comparisons of slopes.")
8338 ;; Either version of the license.
8339 (license (list license:gpl2 license:gpl3))))
8340
8341 (define-public r-pwr
8342 (package
8343 (name "r-pwr")
8344 (version "1.3-0")
8345 (source
8346 (origin
8347 (method url-fetch)
8348 (uri (cran-uri "pwr" version))
8349 (sha256
8350 (base32
8351 "1kfzy73v3z6ipc3kdfkcjrp4b4p5k54nwk796gqi36srm93hgc2v"))))
8352 (build-system r-build-system)
8353 (native-inputs
8354 `(("r-knitr" ,r-knitr)))
8355 (home-page "https://github.com/heliosdrm/pwr")
8356 (synopsis "Basic functions for power analysis")
8357 (description
8358 "This package provides power analysis functions along the lines of
8359 Cohen (1988).")
8360 (license license:gpl3+)))
8361
8362 (define-public r-libcoin
8363 (package
8364 (name "r-libcoin")
8365 (version "1.0-5")
8366 (source
8367 (origin
8368 (method url-fetch)
8369 (uri (cran-uri "libcoin" version))
8370 (sha256
8371 (base32
8372 "1cm9x1dlg9f7fh7n5nw3x4a7rl88c7ylrlc8x3rx4mq5w1j42x0a"))))
8373 (build-system r-build-system)
8374 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
8375 (home-page "https://cran.r-project.org/web/packages/libcoin")
8376 (synopsis "Linear test statistics for permutation inference")
8377 (description
8378 "This package provides basic infrastructure for linear test statistics
8379 and permutation inference in the framework of Strasser and Weber (1999).")
8380 (license license:gpl2)))
8381
8382 (define-public r-coin
8383 (package
8384 (name "r-coin")
8385 (version "1.3-1")
8386 (source
8387 (origin
8388 (method url-fetch)
8389 (uri (cran-uri "coin" version))
8390 (sha256
8391 (base32
8392 "0qi03fyqw42a2vnqcia5l2m1mzyarj2q1iblknx9n19bdsd53qjx"))))
8393 (build-system r-build-system)
8394 (propagated-inputs
8395 `(("r-libcoin" ,r-libcoin)
8396 ("r-matrixstats" ,r-matrixstats)
8397 ("r-modeltools" ,r-modeltools)
8398 ("r-multcomp" ,r-multcomp)
8399 ("r-mvtnorm" ,r-mvtnorm)
8400 ("r-survival" ,r-survival)))
8401 (home-page "http://coin.r-forge.r-project.org")
8402 (synopsis "Conditional inference procedures in a permutation test framework")
8403 (description
8404 "This package provides conditional inference procedures for the general
8405 independence problem including two-sample, K-sample (non-parametric ANOVA),
8406 correlation, censored, ordered and multivariate problems.")
8407 (license license:gpl2)))
8408
8409 (define-public r-bayesplot
8410 (package
8411 (name "r-bayesplot")
8412 (version "1.7.1")
8413 (source
8414 (origin
8415 (method url-fetch)
8416 (uri (cran-uri "bayesplot" version))
8417 (sha256
8418 (base32
8419 "0sq0ajnm96hmlqf1cv5n2gshh3qdij4n1zbm7qrniz2q6b5aj342"))))
8420 (build-system r-build-system)
8421 (inputs
8422 `(("pandoc" ,ghc-pandoc)
8423 ("pandoc-citeproc" ,ghc-pandoc-citeproc)))
8424 (propagated-inputs
8425 `(("r-dplyr" ,r-dplyr)
8426 ("r-ggplot2" ,r-ggplot2)
8427 ("r-ggridges" ,r-ggridges)
8428 ("r-glue" ,r-glue)
8429 ("r-reshape2" ,r-reshape2)
8430 ("r-rlang" ,r-rlang)
8431 ("r-tibble" ,r-tibble)
8432 ("r-tidyselect" ,r-tidyselect)))
8433 (home-page "https://mc-stan.org/bayesplot")
8434 (synopsis "Plotting for Bayesian models")
8435 (description
8436 "This package provides plotting functions for posterior analysis, model
8437 checking, and MCMC diagnostics. The package is designed not only to provide
8438 convenient functionality for users, but also a common set of functions that
8439 can be easily used by developers working on a variety of R packages for
8440 Bayesian modeling.")
8441 (license license:gpl3+)))
8442
8443 (define-public r-tmb
8444 (package
8445 (name "r-tmb")
8446 (version "1.7.16")
8447 (source
8448 (origin
8449 (method url-fetch)
8450 (uri (cran-uri "TMB" version))
8451 (sha256
8452 (base32
8453 "0lly12hdi99iklwr0vg9xkyhi038w4gncbf895qcwbndmqp0lx44"))))
8454 (properties `((upstream-name . "TMB")))
8455 (build-system r-build-system)
8456 (propagated-inputs
8457 `(("r-matrix" ,r-matrix)
8458 ("r-rcppeigen" ,r-rcppeigen)))
8459 (home-page "http://tmb-project.org")
8460 (synopsis "Template model builder: a general random effect tool")
8461 (description
8462 "With this tool, a user should be able to quickly implement complex
8463 random effect models through simple C++ templates. The package combines
8464 @code{CppAD} (C++ automatic differentiation), @code{Eigen} (templated
8465 matrix-vector library) and @code{CHOLMOD} (sparse matrix routines available
8466 from R) to obtain an efficient implementation of the applied Laplace
8467 approximation with exact derivatives. Key features are: Automatic sparseness
8468 detection, parallelism through BLAS and parallel user templates.")
8469 (license license:gpl2)))
8470
8471 (define-public r-sjstats
8472 (package
8473 (name "r-sjstats")
8474 (version "0.17.9")
8475 (source
8476 (origin
8477 (method url-fetch)
8478 (uri (cran-uri "sjstats" version))
8479 (sha256
8480 (base32 "0938ac6ixvkif07azd2msa8g3qnn9rabj6jg17almbysl83kg4nm"))))
8481 (build-system r-build-system)
8482 (propagated-inputs
8483 `(("r-bayestestr" ,r-bayestestr)
8484 ("r-broom" ,r-broom)
8485 ("r-dplyr" ,r-dplyr)
8486 ("r-effectsize" ,r-effectsize)
8487 ("r-emmeans" ,r-emmeans)
8488 ("r-insight" ,r-insight)
8489 ("r-lme4" ,r-lme4)
8490 ("r-magrittr" ,r-magrittr)
8491 ("r-mass" ,r-mass)
8492 ("r-modelr" ,r-modelr)
8493 ("r-parameters" ,r-parameters)
8494 ("r-performance" ,r-performance)
8495 ("r-purrr" ,r-purrr)
8496 ("r-rlang" ,r-rlang)
8497 ("r-sjlabelled" ,r-sjlabelled)
8498 ("r-sjmisc" ,r-sjmisc)
8499 ("r-tidyr" ,r-tidyr)))
8500 (home-page "https://github.com/strengejacke/sjstats")
8501 (synopsis "Functions for common statistical computations")
8502 (description
8503 "This package provides a collection of convenient functions for common
8504 statistical computations, which are not directly provided by R's @code{base}
8505 or @code{stats} packages. This package aims at providing, first, shortcuts
8506 for statistical measures, which otherwise could only be calculated with
8507 additional effort. Second, these shortcut functions are generic, and can be
8508 applied not only to vectors, but also to other objects as well. The focus of
8509 most functions lies on summary statistics or fit measures for regression
8510 models, including generalized linear models, mixed effects models and Bayesian
8511 models.")
8512 (license license:gpl3)))
8513
8514 (define-public r-glmmtmb
8515 (package
8516 (name "r-glmmtmb")
8517 (version "1.0.1")
8518 (source
8519 (origin
8520 (method url-fetch)
8521 (uri (cran-uri "glmmTMB" version))
8522 (sha256
8523 (base32
8524 "0sdx1q7wc7895xh8747r4p0wkij0xjgn5ij62ipi9423zd0sr0mm"))))
8525 (properties `((upstream-name . "glmmTMB")))
8526 (build-system r-build-system)
8527 (propagated-inputs
8528 `(("r-lme4" ,r-lme4)
8529 ("r-matrix" ,r-matrix)
8530 ("r-nlme" ,r-nlme)
8531 ("r-rcppeigen" ,r-rcppeigen)
8532 ("r-tmb" ,r-tmb)))
8533 (native-inputs
8534 `(("r-knitr" ,r-knitr))) ; for vignettes
8535 (home-page "https://github.com/glmmTMB")
8536 (synopsis "Generalized linear mixed models")
8537 (description
8538 "Fit linear and generalized linear mixed models with various extensions,
8539 including zero-inflation. The models are fitted using maximum likelihood
8540 estimation via the Template Model Builder. Random effects are assumed to be
8541 Gaussian on the scale of the linear predictor and are integrated out using the
8542 Laplace approximation. Gradients are calculated using automatic
8543 differentiation.")
8544 (license license:agpl3+)))
8545
8546 (define-public r-bayestestr
8547 (package
8548 (name "r-bayestestr")
8549 (version "0.5.3")
8550 (source
8551 (origin
8552 (method url-fetch)
8553 (uri (cran-uri "bayestestR" version))
8554 (sha256
8555 (base32
8556 "1q24qh5p6bz4nbf4546kckh7d518x5pm1yhhbc8fwcnbca4kgqjz"))))
8557 (properties `((upstream-name . "bayestestR")))
8558 (build-system r-build-system)
8559 (propagated-inputs
8560 `(("r-insight" ,r-insight)))
8561 (native-inputs
8562 `(("r-knitr" ,r-knitr)))
8563 (home-page "https://github.com/easystats/bayestestR")
8564 (synopsis "Describe Bayesian models and posterior distributions")
8565 (description
8566 "This package provides utilities to understand and describe posterior
8567 distributions and Bayesian models. It includes point-estimates such as
8568 @dfn{Maximum A Posteriori} (MAP), measures of dispersion such as @dfn{Highest
8569 Density Interval} (HDI), and indices used for null-hypothesis testing (such as
8570 ROPE percentage and pd).")
8571 (license license:gpl3)))
8572
8573 (define-public r-performance
8574 (package
8575 (name "r-performance")
8576 (version "0.4.5")
8577 (source
8578 (origin
8579 (method url-fetch)
8580 (uri (cran-uri "performance" version))
8581 (sha256
8582 (base32
8583 "0j6wmnwhfdd3v1a17qmg491q50579knjzscmyr4yk3xr0jbsbg8x"))))
8584 (build-system r-build-system)
8585 (propagated-inputs
8586 `(("r-bayestestr" ,r-bayestestr)
8587 ("r-insight" ,r-insight)))
8588 (home-page "https://easystats.github.io/performance/")
8589 (synopsis "Assessment of regression models performance")
8590 (description
8591 "This package provides utilities for computing measures to assess model
8592 quality, which are not directly provided by R's @code{base} or @code{stats}
8593 packages. These include e.g. measures like r-squared, intraclass correlation
8594 coefficient, root mean squared error or functions to check models for
8595 overdispersion, singularity or zero-inflation and more. Functions apply to a
8596 large variety of regression models, including generalized linear models, mixed
8597 effects models and Bayesian models.")
8598 (license license:gpl3)))
8599
8600 (define-public r-ggeffects
8601 (package
8602 (name "r-ggeffects")
8603 (version "0.14.2")
8604 (source
8605 (origin
8606 (method url-fetch)
8607 (uri (cran-uri "ggeffects" version))
8608 (sha256
8609 (base32
8610 "1y3yfb07jrr6vkc8hk6rp52l70dj7042jvqgjzllslzy7hx2jhyw"))))
8611 (build-system r-build-system)
8612 (propagated-inputs
8613 `(("r-insight" ,r-insight)
8614 ("r-mass" ,r-mass)
8615 ("r-sjlabelled" ,r-sjlabelled)))
8616 (native-inputs
8617 `(("r-knitr" ,r-knitr)))
8618 (home-page "https://github.com/strengejacke/ggeffects")
8619 (synopsis "Create tidy data frames of marginal effects for ggplot")
8620 (description
8621 "This package provides tools to compute marginal effects from statistical
8622 models and return the result as tidy data frames. These data frames are ready
8623 to use with the @code{ggplot2} package. Marginal effects can be calculated
8624 for many different models. Interaction terms, splines and polynomial terms
8625 are also supported. The two main functions are @code{ggpredict()} and
8626 @code{ggeffect()}. There is a generic @code{plot()} method to plot the
8627 results using @code{ggplot2}.")
8628 (license license:gpl3)))
8629
8630 (define-public r-effectsize
8631 (package
8632 (name "r-effectsize")
8633 (version "0.2.0")
8634 (source
8635 (origin
8636 (method url-fetch)
8637 (uri (cran-uri "effectsize" version))
8638 (sha256
8639 (base32
8640 "1liix8rf8xq3hzi7684bl0s20iflsq6g5mxr5k59wp2qwn1i6aww"))))
8641 (properties `((upstream-name . "effectsize")))
8642 (build-system r-build-system)
8643 (propagated-inputs
8644 `(("r-bayestestr" ,r-bayestestr)
8645 ("r-insight" ,r-insight)
8646 ("r-parameters" ,r-parameters)))
8647 (home-page "https://github.com/easystats/effectsize")
8648 (synopsis "Indices of effect size and standardized parameters")
8649 (description
8650 "This package provides utilities to work with indices of effect size and
8651 standardized parameters for a wide variety of models, allowing computation and
8652 conversion of indices such as Cohen's d, r, odds, etc.")
8653 (license license:gpl3)))
8654
8655 (define-public r-sjplot
8656 (package
8657 (name "r-sjplot")
8658 (version "2.8.3")
8659 (source
8660 (origin
8661 (method url-fetch)
8662 (uri (cran-uri "sjPlot" version))
8663 (sha256
8664 (base32 "0ip1rkjlhyf3axlc8qqss1qq1f0xrda890c1jmcbhm98wwjw264f"))))
8665 (properties `((upstream-name . "sjPlot")))
8666 (build-system r-build-system)
8667 (propagated-inputs
8668 `(("r-bayestestr" ,r-bayestestr)
8669 ("r-dplyr" ,r-dplyr)
8670 ("r-effectsize" ,r-effectsize)
8671 ("r-ggeffects" ,r-ggeffects)
8672 ("r-ggplot2" ,r-ggplot2)
8673 ("r-insight" ,r-insight)
8674 ("r-knitr" ,r-knitr)
8675 ("r-mass" ,r-mass)
8676 ("r-parameters" ,r-parameters)
8677 ("r-performance" ,r-performance)
8678 ("r-purrr" ,r-purrr)
8679 ("r-rlang" ,r-rlang)
8680 ("r-scales" ,r-scales)
8681 ("r-sjlabelled" ,r-sjlabelled)
8682 ("r-sjmisc" ,r-sjmisc)
8683 ("r-sjstats" ,r-sjstats)
8684 ("r-tidyr" ,r-tidyr)))
8685 (native-inputs
8686 `(("r-knitr" ,r-knitr)))
8687 (home-page "https://strengejacke.github.io/sjPlot/")
8688 (synopsis "Data visualization for statistics in social science")
8689 (description
8690 "This package represents a collection of plotting and table output
8691 functions for data visualization. Results of various statistical
8692 analyses (that are commonly used in social sciences) can be visualized using
8693 this package, including simple and cross tabulated frequencies, histograms,
8694 box plots, (generalized) linear models, mixed effects models, principal
8695 component analysis and correlation matrices, cluster analyses, scatter plots,
8696 stacked scales, effects plots of regression models (including interaction
8697 terms) and much more. This package supports labelled data.")
8698 (license license:gpl3)))
8699
8700 (define-public r-ini
8701 (package
8702 (name "r-ini")
8703 (version "0.3.1")
8704 (source
8705 (origin
8706 (method url-fetch)
8707 (uri (cran-uri "ini" version))
8708 (sha256
8709 (base32
8710 "04yqij344dwm0xqgara8xia42mlmij3i8711qbb5534w05a1l6bv"))))
8711 (build-system r-build-system)
8712 (home-page "https://github.com/dvdscripter/ini")
8713 (synopsis "Read and write configuration files")
8714 (description
8715 "This package provides tools to parse simple @code{.ini} configuration
8716 files to an structured list. Users can manipulate this resulting list with
8717 @code{lapply()} functions. This same structured list can be used to write
8718 back to file after modifications.")
8719 (license license:gpl3)))
8720
8721 (define-public r-gh
8722 (package
8723 (name "r-gh")
8724 (version "1.1.0")
8725 (source
8726 (origin
8727 (method url-fetch)
8728 (uri (cran-uri "gh" version))
8729 (sha256
8730 (base32
8731 "1bc9bn1078s664hc806dh0y1ncxif77q479rfmxfir9z7hwaz7yy"))))
8732 (build-system r-build-system)
8733 (propagated-inputs
8734 `(("r-cli" ,r-cli)
8735 ("r-httr" ,r-httr)
8736 ("r-ini" ,r-ini)
8737 ("r-jsonlite" ,r-jsonlite)))
8738 (home-page "https://github.com/r-lib/gh#readme")
8739 (synopsis "Access the GitHub API via R")
8740 (description
8741 "This package provides a minimal R client to access the GitHub API.")
8742 (license license:expat)))
8743
8744 (define-public r-fs
8745 (package
8746 (name "r-fs")
8747 (version "1.4.0")
8748 (source
8749 (origin
8750 (method url-fetch)
8751 (uri (cran-uri "fs" version))
8752 (sha256
8753 (base32
8754 "1ishdxrxy88w1lrn657a573wdra5v7xf1yfa1c4kss07rlynwrj7"))))
8755 (build-system r-build-system)
8756 (native-inputs
8757 `(("pkg-config" ,pkg-config)
8758 ("r-knitr" ,r-knitr)))
8759 (home-page "https://fs.r-lib.org")
8760 (synopsis "Cross-platform file system operations based on libuv")
8761 (description
8762 "This package provides a cross-platform interface to file system
8763 operations, built on top of the libuv C library.")
8764 (license license:gpl3)))
8765
8766 (define-public r-clisymbols
8767 (package
8768 (name "r-clisymbols")
8769 (version "1.2.0")
8770 (source
8771 (origin
8772 (method url-fetch)
8773 (uri (cran-uri "clisymbols" version))
8774 (sha256
8775 (base32
8776 "1q7gi2zmykhzas9v8fdnbpdq7pzdcpbhim1yxvd2062l777g4j86"))))
8777 (build-system r-build-system)
8778 (home-page "https://github.com/gaborcsardi/clisymbols")
8779 (synopsis "Unicode symbols at the R prompt")
8780 (description
8781 "This package provides a small subset of Unicode symbols, that are useful
8782 when building command line applications. They fall back to alternatives on
8783 terminals that do not support Unicode.")
8784 (license license:expat)))
8785
8786 (define-public r-usethis
8787 (package
8788 (name "r-usethis")
8789 (version "1.5.1")
8790 (source
8791 (origin
8792 (method url-fetch)
8793 (uri (cran-uri "usethis" version))
8794 (sha256
8795 (base32
8796 "07an5wbikilg7cb3q6x5aykw8dfqnjrc3wpfb7gjmy0d9fh20fcy"))))
8797 (build-system r-build-system)
8798 (propagated-inputs
8799 `(("r-clipr" ,r-clipr)
8800 ("r-clisymbols" ,r-clisymbols)
8801 ("r-crayon" ,r-crayon)
8802 ("r-curl" ,r-curl)
8803 ("r-desc" ,r-desc)
8804 ("r-fs" ,r-fs)
8805 ("r-gh" ,r-gh)
8806 ("r-git2r" ,r-git2r)
8807 ("r-glue" ,r-glue)
8808 ("r-purrr" ,r-purrr)
8809 ("r-rlang" ,r-rlang)
8810 ("r-rprojroot" ,r-rprojroot)
8811 ("r-rstudioapi" ,r-rstudioapi)
8812 ("r-whisker" ,r-whisker)
8813 ("r-withr" ,r-withr)
8814 ("r-yaml" ,r-yaml)))
8815 (home-page "https://github.com/r-lib/usethis")
8816 (synopsis "Automate R package and project setup")
8817 (description
8818 "This package helps you to automate R package and project setup tasks
8819 that are otherwise performed manually. This includes setting up unit testing,
8820 test coverage, continuous integration, Git, GitHub integration, licenses,
8821 Rcpp, RStudio projects, and more.")
8822 (license license:gpl3)))
8823
8824 (define-public r-sessioninfo
8825 (package
8826 (name "r-sessioninfo")
8827 (version "1.1.1")
8828 (source
8829 (origin
8830 (method url-fetch)
8831 (uri (cran-uri "sessioninfo" version))
8832 (sha256
8833 (base32
8834 "0j5f3l58fynxx3v0w62vqpii7miabszgljpja36xx9s8hikh8sqn"))))
8835 (build-system r-build-system)
8836 (propagated-inputs
8837 `(("r-cli" ,r-cli)
8838 ("r-withr" ,r-withr)))
8839 (home-page "https://github.com/r-lib/sessioninfo#readme")
8840 (synopsis "R session information")
8841 (description
8842 "This package provides tools to query and print information about the
8843 current R session. It is similar to @code{utils::sessionInfo()}, but includes
8844 more information about packages, and where they were installed from.")
8845 (license license:gpl2)))
8846
8847 (define-public r-remotes
8848 (package
8849 (name "r-remotes")
8850 (version "2.1.1")
8851 (source
8852 (origin
8853 (method url-fetch)
8854 (uri (cran-uri "remotes" version))
8855 (sha256
8856 (base32
8857 "12qinl7jv54f2524ri13gcrv6d523rg1harpi500j676zi30fnaf"))))
8858 (build-system r-build-system)
8859 (home-page "https://github.com/r-lib/remotes#readme")
8860 (synopsis "R package installation from remote repositories")
8861 (description
8862 "Download and install R packages stored in GitHub, BitBucket, or plain
8863 subversion or git repositories. This package is a lightweight replacement of
8864 the @code{install_*} functions in the @code{devtools} package. Indeed most of
8865 the code was copied over from @code{devtools}.")
8866 (license license:gpl2+)))
8867
8868 (define-public r-xopen
8869 (package
8870 (name "r-xopen")
8871 (version "1.0.0")
8872 (source
8873 (origin
8874 (method url-fetch)
8875 (uri (cran-uri "xopen" version))
8876 (sha256
8877 (base32
8878 "1vrvgdika1d63dwygynbv2wmd87ll8dji5dy89hj576n8hw601z2"))))
8879 (build-system r-build-system)
8880 (propagated-inputs
8881 `(("r-processx" ,r-processx)))
8882 (home-page "https://github.com/r-lib/xopen#readme")
8883 (synopsis "Open system files, URLs, anything")
8884 (description
8885 "This package provides a cross-platform solution to open files,
8886 directories or URLs with their associated programs.")
8887 (license license:expat)))
8888
8889 (define-public r-rcmdcheck
8890 (package
8891 (name "r-rcmdcheck")
8892 (version "1.3.3")
8893 (source
8894 (origin
8895 (method url-fetch)
8896 (uri (cran-uri "rcmdcheck" version))
8897 (sha256
8898 (base32
8899 "1d4kzgfqy72r6b7bn1j4znyksrycgypx1jjvpv9lrmvn37mpkdhs"))))
8900 (build-system r-build-system)
8901 (propagated-inputs
8902 `(("r-callr" ,r-callr)
8903 ("r-cli" ,r-cli)
8904 ("r-crayon" ,r-crayon)
8905 ("r-desc" ,r-desc)
8906 ("r-digest" ,r-digest)
8907 ("r-pkgbuild" ,r-pkgbuild)
8908 ("r-prettyunits" ,r-prettyunits)
8909 ("r-r6" ,r-r6)
8910 ("r-rprojroot" ,r-rprojroot)
8911 ("r-sessioninfo" ,r-sessioninfo)
8912 ("r-withr" ,r-withr)
8913 ("r-xopen" ,r-xopen)))
8914 (home-page "https://github.com/r-Lib/rcmdcheck#readme")
8915 (synopsis "Run R CMD check from R and capture results")
8916 (description
8917 "Run @code{R CMD check} from R programmatically, and capture the results
8918 of the individual checks.")
8919 (license license:expat)))
8920
8921 (define-public r-rapportools
8922 (package
8923 (name "r-rapportools")
8924 (version "1.0")
8925 (source
8926 (origin
8927 (method url-fetch)
8928 (uri (cran-uri "rapportools" version))
8929 (sha256
8930 (base32
8931 "1sgv4sc737i12arh5dc3263kjsz3dzg06qihfmrqyax94mv2d01b"))))
8932 (build-system r-build-system)
8933 (propagated-inputs
8934 `(("r-pander" ,r-pander)
8935 ("r-plyr" ,r-plyr)
8936 ("r-reshape" ,r-reshape)))
8937 (home-page "https://cran.r-project.org/web/packages/rapportools/")
8938 (synopsis "Miscellaneous helper functions with sane defaults for reporting")
8939 (description
8940 "This package provides helper functions that act as wrappers to more
8941 advanced statistical methods with the advantage of having sane defaults for
8942 quick reporting.")
8943 (license license:agpl3+)))
8944
8945 (define-public r-pander
8946 (package
8947 (name "r-pander")
8948 (version "0.6.3")
8949 (source
8950 (origin
8951 (method url-fetch)
8952 (uri (cran-uri "pander" version))
8953 (sha256
8954 (base32
8955 "1bd9sdghlsppmff18k5fg3i0visq9f4wc82rlhwq5m82bmgdgnyi"))))
8956 (build-system r-build-system)
8957 (propagated-inputs
8958 `(("r-digest" ,r-digest)
8959 ("r-rcpp" ,r-rcpp)))
8960 (home-page "https://rapporter.github.io/pander")
8961 (synopsis "Render R objects into Pandoc's markdown")
8962 (description
8963 "The main aim of the pander R package is to provide a minimal and easy
8964 tool for rendering R objects into Pandoc's markdown. The package is also
8965 capable of exporting/converting complex Pandoc documents (reports) in various
8966 ways.")
8967 ;; This package is licensed under either the AGPLv3+ or the very rarely
8968 ;; used OSL 3.0.
8969 (license license:agpl3+)))
8970
8971 (define-public r-summarytools
8972 (package
8973 (name "r-summarytools")
8974 (version "0.9.6")
8975 (source
8976 (origin
8977 (method url-fetch)
8978 (uri (cran-uri "summarytools" version))
8979 (sha256
8980 (base32
8981 "03pcb2ild1rb9f15yq8b68p9bg10z5wk2x7ahgyzkwdh5f81vbq2"))))
8982 (build-system r-build-system)
8983 (propagated-inputs
8984 `(("r-base64enc" ,r-base64enc)
8985 ("r-checkmate" ,r-checkmate)
8986 ("r-dplyr" ,r-dplyr)
8987 ("r-htmltools" ,r-htmltools)
8988 ("r-lubridate" ,r-lubridate)
8989 ("r-magick" ,r-magick)
8990 ("r-matrixstats" ,r-matrixstats)
8991 ("r-pander" ,r-pander)
8992 ("r-pryr" ,r-pryr)
8993 ("r-rapportools" ,r-rapportools)
8994 ("r-tibble" ,r-tibble)
8995 ("r-tidyr" ,r-tidyr)))
8996 (home-page "https://github.com/dcomtois/summarytools")
8997 (synopsis "Tools to quickly and neatly summarize data")
8998 (description
8999 "This package provides tools for data frame summaries, cross-tabulations,
9000 weight-enabled frequency tables and common univariate statistics in concise
9001 tables available in a variety of formats (plain ASCII, Markdown and HTML). A
9002 good point-of-entry for exploring data, both for experienced and new R
9003 users.")
9004 (license license:gpl2)))
9005
9006 (define-public r-lsei
9007 (package
9008 (name "r-lsei")
9009 (version "1.2-0")
9010 (source
9011 (origin
9012 (method url-fetch)
9013 (uri (cran-uri "lsei" version))
9014 (sha256
9015 (base32
9016 "1xl06fb3is744pxlh42wx5hn1h0ab1k31wnmsmh0524kxzcyp0a7"))))
9017 (build-system r-build-system)
9018 (native-inputs
9019 `(("gfortran" ,gfortran)))
9020 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
9021 (synopsis "Solve regression problems under equality/inequality constraints")
9022 (description
9023 "It contains functions that solve least squares linear regression
9024 problems under linear equality/inequality constraints. Functions for solving
9025 quadratic programming problems are also available, which transform such
9026 problems into least squares ones first.")
9027 (license license:gpl2+)))
9028
9029 (define-public r-npsurv
9030 (package
9031 (name "r-npsurv")
9032 (version "0.4-0")
9033 (source
9034 (origin
9035 (method url-fetch)
9036 (uri (cran-uri "npsurv" version))
9037 (sha256
9038 (base32
9039 "1wq4c9yfha5azjhrn40iiqkshmvh611sa90jp3lh82n4bl9zfk20"))))
9040 (build-system r-build-system)
9041 (propagated-inputs
9042 `(("r-lsei" ,r-lsei)))
9043 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
9044 (synopsis "Nonparametric survival analysis")
9045 (description
9046 "This package contains functions for non-parametric survival analysis of
9047 exact and interval-censored observations.")
9048 (license license:gpl2+)))
9049
9050 (define-public r-clusteval
9051 (package
9052 (name "r-clusteval")
9053 (version "0.1")
9054 (source
9055 (origin
9056 (method url-fetch)
9057 (uri (cran-uri "clusteval" version))
9058 (sha256
9059 (base32
9060 "1ld0bdl4fy8dsfzm3k7a37cyxc6pfc9qs31x4pxd3z5rslghz7rj"))))
9061 (build-system r-build-system)
9062 (propagated-inputs
9063 `(("r-mvtnorm" ,r-mvtnorm)
9064 ("r-rcpp" ,r-rcpp)))
9065 (home-page "https://cran.r-project.org/web/packages/clusteval/")
9066 (synopsis "Evaluation of clustering algorithms")
9067 (description
9068 "This R package provides a suite of tools to evaluate clustering
9069 algorithms, clusterings, and individual clusters.")
9070 (license license:expat)))
9071
9072 (define-public r-tweedie
9073 (package
9074 (name "r-tweedie")
9075 (version "2.3.2")
9076 (source
9077 (origin
9078 (method url-fetch)
9079 (uri (cran-uri "tweedie" version))
9080 (sha256
9081 (base32
9082 "10fv998qjxsyx0h94fi0xbh6xbf24nwgh254n9zfnmix9vk2cqls"))))
9083 (build-system r-build-system)
9084 (native-inputs `(("gfortran" ,gfortran)))
9085 (home-page "https://cran.r-project.org/web/packages/tweedie/")
9086 (synopsis "Evaluation of Tweedie exponential family models")
9087 (description
9088 "Maximum likelihood computations for Tweedie families, including the
9089 series expansion (Dunn and Smyth, 2005; <doi10.1007/s11222-005-4070-y>) and
9090 the Fourier inversion (Dunn and Smyth, 2008; <doi:10.1007/s11222-007-9039-6>),
9091 and related methods.")
9092 (license license:gpl2+)))
9093
9094 (define-public r-rcppgsl
9095 (package
9096 (name "r-rcppgsl")
9097 (version "0.3.7")
9098 (source
9099 (origin
9100 (method url-fetch)
9101 (uri (cran-uri "RcppGSL" version))
9102 (sha256
9103 (base32 "0cnw2k7cfqrm79r6j283aybflxig80x4n4rjkfp2317wf10mrsa5"))))
9104 (properties `((upstream-name . "RcppGSL")))
9105 (build-system r-build-system)
9106 (propagated-inputs
9107 `(("r-rcpp" ,r-rcpp)
9108 ("gsl" ,gsl)))
9109 (native-inputs
9110 `(("r-knitr" ,r-knitr))) ; for vignettes
9111 (home-page "https://cran.r-project.org/web/packages/RcppGSL/")
9112 (synopsis "Rcpp integration for GSL vectors and matrices")
9113 (description
9114 "The GNU Scientific Library (or GSL) is a collection of numerical
9115 routines for scientific computing. It is particularly useful for C and C++
9116 programs as it provides a standard C interface to a wide range of mathematical
9117 routines. There are over 1000 functions in total with an extensive test
9118 suite. The RcppGSL package provides an easy-to-use interface between GSL data
9119 structures and R using concepts from Rcpp which is itself a package that eases
9120 the interfaces between R and C++.")
9121 (license license:gpl2+)))
9122
9123 (define-public r-mvabund
9124 (package
9125 (name "r-mvabund")
9126 (version "4.1.3")
9127 (source
9128 (origin
9129 (method url-fetch)
9130 (uri (cran-uri "mvabund" version))
9131 (sha256
9132 (base32
9133 "1z58h4dk3mc2hfnfvc7pghk471cbp7ah2s1z2ria5igw4s80962b"))))
9134 (build-system r-build-system)
9135 (propagated-inputs
9136 `(("r-mass" ,r-mass)
9137 ("r-rcpp" ,r-rcpp)
9138 ("r-rcppgsl" ,r-rcppgsl)
9139 ("r-statmod" ,r-statmod)
9140 ("r-tweedie" ,r-tweedie)))
9141 (home-page "https://cran.r-project.org/web/packages/mvabund/")
9142 (synopsis "Statistical methods for analysing multivariate abundance data")
9143 (description
9144 "This package provides a set of tools for displaying, modeling and
9145 analysing multivariate abundance data in community ecology.")
9146 (license license:lgpl2.1+)))
9147
9148 (define-public r-afex
9149 (package
9150 (name "r-afex")
9151 (version "0.27-2")
9152 (source
9153 (origin
9154 (method url-fetch)
9155 (uri (cran-uri "afex" version))
9156 (sha256
9157 (base32
9158 "0qsmcddy4449qjj3ajmqvdiqdkhkswmz5dqf150wxwq897p3bvf2"))))
9159 (build-system r-build-system)
9160 (propagated-inputs
9161 `(("r-car" ,r-car)
9162 ("r-lme4" ,r-lme4)
9163 ("r-lmertest" ,r-lmertest)
9164 ("r-pbkrtest" ,r-pbkrtest)
9165 ("r-reshape2" ,r-reshape2)))
9166 (native-inputs
9167 `(("r-knitr" ,r-knitr)))
9168 (home-page "https://afex.singmann.science/")
9169 (synopsis "Analysis of factorial experiments")
9170 (description
9171 "This package provides convenience functions for analyzing factorial
9172 experiments using ANOVA or mixed models.")
9173 (license license:gpl2+)))
9174
9175 (define-public r-lmertest
9176 (package
9177 (name "r-lmertest")
9178 (version "3.1-1")
9179 (source
9180 (origin
9181 (method url-fetch)
9182 (uri (cran-uri "lmerTest" version))
9183 (sha256
9184 (base32
9185 "0r2vvs3nl6p8xla3gd943khb4ixp0alvspqpnz2y6n3wk8zgh3jj"))))
9186 (properties `((upstream-name . "lmerTest")))
9187 (build-system r-build-system)
9188 (propagated-inputs
9189 `(("r-ggplot2" ,r-ggplot2)
9190 ("r-lme4" ,r-lme4)
9191 ("r-mass" ,r-mass)
9192 ("r-numderiv" ,r-numderiv)))
9193 (home-page "https://github.com/runehaubo/lmerTestR")
9194 (synopsis "Tests in linear mixed effects models")
9195 (description
9196 "This package provides p-values in type I, II or III anova and summary
9197 tables for @code{lmer} model fits via Satterthwaite's degrees of freedom
9198 method. A Kenward-Roger method is also available via the @code{pbkrtest}
9199 package. Model selection methods include step, drop1 and anova-like tables
9200 for random effects (ranova). Methods for Least-Square means (LS-means) and
9201 tests of linear contrasts of fixed effects are also available.")
9202 (license license:gpl2+)))
9203
9204 (define-public r-r2glmm
9205 (package
9206 (name "r-r2glmm")
9207 (version "0.1.2")
9208 (source
9209 (origin
9210 (method url-fetch)
9211 (uri (cran-uri "r2glmm" version))
9212 (sha256
9213 (base32
9214 "0iim92blpa59vgz97c2pi05yhbjjmaffdbkbmk5kplfb2vmazgiy"))))
9215 (build-system r-build-system)
9216 (propagated-inputs
9217 `(("r-afex" ,r-afex)
9218 ("r-data-table" ,r-data-table)
9219 ("r-dplyr" ,r-dplyr)
9220 ("r-ggplot2" ,r-ggplot2)
9221 ("r-gridextra" ,r-gridextra)
9222 ("r-lmertest" ,r-lmertest)
9223 ("r-mass" ,r-mass)
9224 ("r-matrix" ,r-matrix)
9225 ("r-mgcv" ,r-mgcv)
9226 ("r-pbkrtest" ,r-pbkrtest)))
9227 (home-page "https://github.com/bcjaeger/r2glmm")
9228 (synopsis "Compute R squared for mixed (multilevel) models")
9229 (description
9230 "This package computes model and semi partial R squared with confidence
9231 limits for the linear and generalized linear mixed model (LMM and GLMM). The
9232 R squared measure from L. J. Edwards et al. (2008) is extended to the GLMM
9233 using @dfn{penalized quasi-likelihood} (PQL) estimation (see Jaeger et
9234 al. (2016)).")
9235 (license license:gpl2)))
9236
9237 (define-public r-weights
9238 (package
9239 (name "r-weights")
9240 (version "1.0.1")
9241 (source
9242 (origin
9243 (method url-fetch)
9244 (uri (cran-uri "weights" version))
9245 (sha256
9246 (base32
9247 "1ka2kvzg464vn80qziqy4mrciy9wwd3jfasgq0d33wbiblhmxkj5"))))
9248 (build-system r-build-system)
9249 (propagated-inputs
9250 `(("r-gdata" ,r-gdata)
9251 ("r-hmisc" ,r-hmisc)
9252 ("r-mice" ,r-mice)))
9253 (home-page
9254 "https://cran.r-project.org/web/packages/weights/")
9255 (synopsis "Weighting and weighted statistics")
9256 (description "This package Provides a variety of functions for producing
9257 simple weighted statistics, such as weighted Pearson's correlations, partial
9258 correlations, Chi-Squared statistics, histograms, and t-tests. Also now
9259 includes some software for quickly recoding survey data and plotting point
9260 estimates from interaction terms in regressions (and multiply imputed
9261 regressions). NOTE: Weighted partial correlation calculations pulled to
9262 address a bug.")
9263 (license license:gpl2+)))
9264
9265 (define-public r-rcppannoy
9266 (package
9267 (name "r-rcppannoy")
9268 (version "0.0.16")
9269 (source
9270 (origin
9271 (method url-fetch)
9272 (uri (cran-uri "RcppAnnoy" version))
9273 (sha256
9274 (base32
9275 "0bfa35lp6vc4b0h3ymvdx50br233q8vvyjml34ngi81rj0imz3fr"))))
9276 (properties `((upstream-name . "RcppAnnoy")))
9277 (build-system r-build-system)
9278 (propagated-inputs
9279 `(("r-rcpp" ,r-rcpp)))
9280 (home-page "https://cran.r-project.org/web/packages/RcppAnnoy/")
9281 (synopsis "Rcpp bindings for Annoy, a library for Approximate Nearest Neighbors")
9282 (description
9283 "Annoy is a small C++ library for Approximate Nearest Neighbors written
9284 for efficient memory usage as well an ability to load from and save to disk.
9285 This package provides an R interface.")
9286 ;; Annoy is released under ASL 2.0, but this wrapper is released under
9287 ;; GPLv2+.
9288 (license (list license:gpl2+ license:asl2.0))))
9289
9290 (define-public r-rcpphnsw
9291 (package
9292 (name "r-rcpphnsw")
9293 (version "0.2.0")
9294 (source
9295 (origin
9296 (method url-fetch)
9297 (uri (cran-uri "RcppHNSW" version))
9298 (sha256
9299 (base32
9300 "0gqdkw7vkcm544rz45g0hplg836ygzbfwk9gh9wr0817icvdb3qv"))))
9301 (properties `((upstream-name . "RcppHNSW")))
9302 (build-system r-build-system)
9303 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9304 (home-page "https://cran.r-project.org/web/packages/RcppHNSW/")
9305 (synopsis "Rcpp bindings for hnswlib, a library for approximate nearest neighbors")
9306 (description
9307 "Hnswlib is a C++ library for approximate nearest neighbors. This
9308 package provides a minimal R interface by relying on the Rcpp package.")
9309 ;; hnswlib is released under Version 2.0 of the Apache License.
9310 (license (list license:gpl3 license:asl2.0))))
9311
9312 (define-public r-rcppparallel
9313 (package
9314 (name "r-rcppparallel")
9315 (version "5.0.0")
9316 (source
9317 (origin
9318 (method url-fetch)
9319 (uri (cran-uri "RcppParallel" version))
9320 (sha256
9321 (base32
9322 "1mhd6vp47xmfw533h0pkvydv96m57fspvd85g8m7iqb5rcxvhhdb"))))
9323 (properties `((upstream-name . "RcppParallel")))
9324 (build-system r-build-system)
9325 (home-page "https://rcppcore.github.io/RcppParallel/")
9326 (synopsis "Parallel programming tools for Rcpp")
9327 (description
9328 "This package provides high level functions for parallel programming with
9329 Rcpp. For example, the @code{parallelFor()} function can be used to convert
9330 the work of a standard serial @code{for} loop into a parallel one and the
9331 @code{parallelReduce()} function can be used for accumulating aggregates or
9332 other values.")
9333 (license license:gpl2)))
9334
9335 (define-public r-ncdf4
9336 (package
9337 (name "r-ncdf4")
9338 (version "1.17")
9339 (source
9340 (origin
9341 (method url-fetch)
9342 (uri (cran-uri "ncdf4" version))
9343 (sha256
9344 (base32
9345 "1xls44ln2zjrrlimxl8v4bk2ni3g45c9j0gxdnjx31rikmrc95fv"))))
9346 (build-system r-build-system)
9347 (inputs
9348 `(("netcdf" ,netcdf)
9349 ("zlib" ,zlib)))
9350 (home-page "https://cran.r-project.org/web/packages/ncdf4/index.html")
9351 (synopsis "R interface to Unidata netCDF format data files")
9352 (description
9353 "This package provides a high-level R interface to data files written
9354 using Unidata's netCDF library (version 4 or earlier), which are binary data
9355 files that are portable across platforms and include metadata information in
9356 addition to the data sets. Using this package, netCDF files can be opened and
9357 data sets read in easily. It is also easy to create new netCDF dimensions,
9358 variables, and files, in either version 3 or 4 format, and manipulate existing
9359 netCDF files.")
9360 (license license:gpl3+)))
9361
9362 (define-public r-biocmanager
9363 (package
9364 (name "r-biocmanager")
9365 (version "1.30.10")
9366 (source
9367 (origin
9368 (method url-fetch)
9369 (uri (cran-uri "BiocManager" version))
9370 (sha256
9371 (base32 "03n9s2vf7vgpgb5alpxwamf9xfkn32cbzngwyn6spq1bnh9a9dzk"))))
9372 (properties `((upstream-name . "BiocManager")))
9373 (build-system r-build-system)
9374 (home-page "https://cran.r-project.org/web/packages/BiocManager/")
9375 (synopsis "Access the Bioconductor project package repository")
9376 (description
9377 "This package provides a convenient tool to install and update
9378 Bioconductor packages.")
9379 (license license:artistic2.0)))
9380
9381 (define-public r-rgl
9382 (package
9383 (name "r-rgl")
9384 (version "0.100.50")
9385 (source
9386 (origin
9387 (method url-fetch)
9388 (uri (cran-uri "rgl" version))
9389 (sha256
9390 (base32
9391 "165p932ml7dpjkm41zc47p5cdxar69il0m5yvg0avi8q01vr17ay"))))
9392 (build-system r-build-system)
9393 (native-inputs
9394 `(("pkg-config" ,pkg-config)))
9395 (inputs
9396 `(("freetype" ,freetype)
9397 ("libpng" ,libpng)
9398 ("glu" ,glu)
9399 ("libx11" ,libx11)
9400 ("ghc-pandoc" ,ghc-pandoc)
9401 ("zlib" ,zlib)))
9402 (propagated-inputs
9403 `(("r-crosstalk" ,r-crosstalk)
9404 ("r-htmltools" ,r-htmltools)
9405 ("r-htmlwidgets" ,r-htmlwidgets)
9406 ("r-jsonlite" ,r-jsonlite)
9407 ("r-knitr" ,r-knitr)
9408 ("r-magrittr" ,r-magrittr)
9409 ("r-manipulatewidget" ,r-manipulatewidget)
9410 ("r-shiny" ,r-shiny)))
9411 (home-page "https://r-forge.r-project.org/projects/rgl/")
9412 (synopsis "3D visualization using OpenGL")
9413 (description
9414 "This package provides medium to high level functions for 3D interactive graphics,
9415 including functions modelled on base graphics (@code{plot3d()}, etc.) as well
9416 as functions for constructing representations of geometric
9417 objects (@code{cube3d()}, etc.). Output may be on screen using OpenGL, or to
9418 various standard 3D file formats including WebGL, PLY, OBJ, STL as well as 2D
9419 image formats, including PNG, Postscript, SVG, PGF.")
9420 ;; Any version of the GPL.
9421 (license (list license:gpl2+ license:gpl3+))))
9422
9423 (define-public r-multicool
9424 (package
9425 (name "r-multicool")
9426 (version "0.1-11")
9427 (source
9428 (origin
9429 (method url-fetch)
9430 (uri (cran-uri "multicool" version))
9431 (sha256
9432 (base32
9433 "0xk408qbz9cxwf51j3pmy55gcjcnws8mc6j3vyn9zhramxj7x40w"))))
9434 (build-system r-build-system)
9435 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9436 (home-page "https://cran.r-project.org/web/packages/multicool/")
9437 (synopsis "Permutations of multisets in cool-lex order")
9438 (description
9439 "This package provides a set of tools to permute multisets without loops
9440 or hash tables and to generate integer partitions. Cool-lex order is similar
9441 to colexicographical order.")
9442 (license license:gpl2)))
9443
9444 (define-public r-misc3d
9445 (package
9446 (name "r-misc3d")
9447 (version "0.8-4")
9448 (source
9449 (origin
9450 (method url-fetch)
9451 (uri (cran-uri "misc3d" version))
9452 (sha256
9453 (base32
9454 "0qjzpw3h09qi2gfz52b7nhzd95p7yyxsd03fldc9wzzn6wi3vpkm"))))
9455 (build-system r-build-system)
9456 (home-page "https://cran.r-project.org/web/packages/misc3d/")
9457 (synopsis "Miscellaneous 3D Plots")
9458 (description
9459 "This package provides a collection of miscellaneous 3d plots, including
9460 isosurfaces.")
9461 ;; Any version of the GPL.
9462 (license (list license:gpl2+ license:gpl3+))))
9463
9464 (define-public r-ks
9465 (package
9466 (name "r-ks")
9467 (version "1.11.7")
9468 (source
9469 (origin
9470 (method url-fetch)
9471 (uri (cran-uri "ks" version))
9472 (sha256
9473 (base32 "1f6jvxy0hmngyvnvrknzbmhl42njk0vqyycvydm4qnp8cqirqvba"))))
9474 (build-system r-build-system)
9475 (propagated-inputs
9476 `(("r-fnn" ,r-fnn)
9477 ("r-kernlab" ,r-kernlab)
9478 ("r-kernsmooth" ,r-kernsmooth)
9479 ("r-matrix" ,r-matrix)
9480 ("r-mclust" ,r-mclust)
9481 ("r-mgcv" ,r-mgcv)
9482 ("r-multicool" ,r-multicool)
9483 ("r-mvtnorm" ,r-mvtnorm)))
9484 (home-page "http://www.mvstat.net/tduong/")
9485 (synopsis "Kernel smoothing")
9486 (description
9487 "This package provides kernel smoothers for univariate and multivariate
9488 data, including density functions, density derivatives, cumulative
9489 distributions, modal clustering, discriminant analysis, and two-sample
9490 hypothesis testing.")
9491 ;; Either version of the GPL.
9492 (license (list license:gpl2 license:gpl3))))
9493
9494 (define-public r-feature
9495 (package
9496 (name "r-feature")
9497 (version "1.2.13")
9498 (source
9499 (origin
9500 (method url-fetch)
9501 (uri (cran-uri "feature" version))
9502 (sha256
9503 (base32
9504 "07hkw0bv38naj2hdsx4xxrm2dngi6w3rbvgr7s50bjic8hlgy1ra"))))
9505 (build-system r-build-system)
9506 (propagated-inputs
9507 `(("r-ks" ,r-ks)
9508 ("r-misc3d" ,r-misc3d)
9509 ("r-rgl" ,r-rgl)))
9510 (home-page "http://www.mvstat.net/tduong/")
9511 (synopsis "Inferential feature significance for kernel density estimation")
9512 (description
9513 "The feature package contains functions to display and compute kernel
9514 density estimates, significant gradient and significant curvature regions.
9515 Significant gradient and/or curvature regions often correspond to significant
9516 features (e.g. local modes).")
9517 ;; Either version of the GPL.
9518 (license (list license:gpl2 license:gpl3))))
9519
9520 (define-public r-arm
9521 (package
9522 (name "r-arm")
9523 (version "1.10-1")
9524 (source
9525 (origin
9526 (method url-fetch)
9527 (uri (cran-uri "arm" version))
9528 (sha256
9529 (base32
9530 "0vvp90jygajd6ydky57z66wqjq9msfbl88irj5jbsray574mh4bg"))))
9531 (build-system r-build-system)
9532 (propagated-inputs
9533 `(("r-abind" ,r-abind)
9534 ("r-coda" ,r-coda)
9535 ("r-lme4" ,r-lme4)
9536 ("r-mass" ,r-mass)
9537 ("r-matrix" ,r-matrix)
9538 ("r-nlme" ,r-nlme)))
9539 (home-page "https://cran.r-project.org/web/packages/arm/")
9540 (synopsis "Data analysis using regression and multilevel/hierarchical models")
9541 (description
9542 "This package provides functions to accompany A. Gelman and J. Hill,
9543 Data Analysis Using Regression and Multilevel/Hierarchical Models, Cambridge
9544 University Press, 2007.")
9545 (license license:gpl3+)))
9546
9547 (define-public r-circular
9548 (package
9549 (name "r-circular")
9550 (version "0.4-93")
9551 (source
9552 (origin
9553 (method url-fetch)
9554 (uri (cran-uri "circular" version))
9555 (sha256
9556 (base32
9557 "0hki85rs8wc5950pjaw28q54rly2napfbcrx3pchlfap6wwy5kkn"))))
9558 (build-system r-build-system)
9559 (propagated-inputs
9560 `(("r-boot" ,r-boot)
9561 ("r-mvtnorm" ,r-mvtnorm)))
9562 (native-inputs
9563 `(("gfortran" ,gfortran)))
9564 (home-page "https://cran.r-project.org/web/packages/circular/")
9565 (synopsis "Circular statistics")
9566 (description
9567 "This package provides tools for circular statistics, from \"Topics in
9568 circular Statistics\" (2001) S. Rao Jammalamadaka and A. SenGupta, World
9569 Scientific.")
9570 (license license:gpl2+)))
9571
9572 (define-public r-activity
9573 (package
9574 (name "r-activity")
9575 (version "1.3")
9576 (source
9577 (origin
9578 (method url-fetch)
9579 (uri (cran-uri "activity" version))
9580 (sha256
9581 (base32
9582 "12imqj366dp6pam5gap6ji56p5wf1073xz5g4iikfxf5l8snxw92"))))
9583 (build-system r-build-system)
9584 (propagated-inputs
9585 `(("r-circular" ,r-circular)
9586 ("r-insol" ,r-insol)
9587 ("r-pbapply" ,r-pbapply)))
9588 (home-page "https://cran.r-project.org/web/packages/activity/")
9589 (synopsis "Animal activity statistics")
9590 (description
9591 "This package provides functions to fit kernel density functions to
9592 animal activity time data; plot activity distributions; quantify overall
9593 levels of activity; statistically compare activity metrics through
9594 bootstrapping; and evaluate variation in linear variables with time (or other
9595 circular variables).")
9596 (license license:gpl3)))
9597
9598 (define-public r-ouch
9599 (package
9600 (name "r-ouch")
9601 (version "2.14-1")
9602 (source
9603 (origin
9604 (method url-fetch)
9605 (uri (cran-uri "ouch" version))
9606 (sha256
9607 (base32
9608 "0ddf9bw5lhj8vb0ja78jf99i0smq4rgmm842k4a4ygap41vdyn2b"))))
9609 (build-system r-build-system)
9610 (propagated-inputs `(("r-subplex" ,r-subplex)))
9611 (home-page "https://kingaa.github.io/ouch/")
9612 (synopsis "Ornstein-Uhlenbeck models for phylogenetic comparative hypotheses")
9613 (description
9614 "This package provides tools to fit and compare Ornstein-Uhlenbeck models
9615 for evolution along a phylogenetic tree.")
9616 (license license:gpl2+)))
9617
9618 (define-public r-fmsb
9619 (package
9620 (name "r-fmsb")
9621 (version "0.7.0")
9622 (source
9623 (origin
9624 (method url-fetch)
9625 (uri (cran-uri "fmsb" version))
9626 (sha256
9627 (base32
9628 "0x1wkzfdvv4s5xmr0whcwjz4aac71gacwymj2c3mzj2bbswwlw45"))))
9629 (build-system r-build-system)
9630 (home-page "http://minato.sip21c.org/msb/")
9631 (synopsis "Functions for medical statistics book with demographic data")
9632 (description
9633 "This package provides several utility functions for the book entitled
9634 \"Practices of Medical and Health Data Analysis using R\" (Pearson Education
9635 Japan, 2007) with Japanese demographic data and some demographic analysis
9636 related functions.")
9637 (license license:gpl2+)))
9638
9639 (define-public r-stabledist
9640 (package
9641 (name "r-stabledist")
9642 (version "0.7-1")
9643 (source
9644 (origin
9645 (method url-fetch)
9646 (uri (cran-uri "stabledist" version))
9647 (sha256
9648 (base32
9649 "0scar396wiq6wkbkvwp4qrxqc1m075y56p37i6iry5rw796p1i86"))))
9650 (build-system r-build-system)
9651 (home-page "https://www.rmetrics.org")
9652 (synopsis "Stable distribution functions")
9653 (description
9654 "This package provides density, probability and quantile functions, and
9655 random number generation for (skew) stable distributions, using the
9656 parametrizations of Nolan.")
9657 (license license:gpl2+)))
9658
9659 (define-public r-gsl
9660 (package
9661 (name "r-gsl")
9662 (version "2.1-6")
9663 (source
9664 (origin
9665 (method url-fetch)
9666 (uri (cran-uri "gsl" version))
9667 (sha256
9668 (base32
9669 "0p4rh7npp6qbfc5sxjq86xjn7c9ivf3pd60qf1hldwckjqin7m7m"))))
9670 (build-system r-build-system)
9671 (inputs
9672 `(("gsl" ,gsl)))
9673 (home-page "https://cran.r-project.org/web/packages/gsl")
9674 (synopsis "Wrapper for the GNU Scientific Library")
9675 (description
9676 "This package provides an R wrapper for the special functions and quasi
9677 random number generators of the GNU Scientific Library.")
9678 (license license:gpl2+)))
9679
9680 (define-public r-adgoftest
9681 (package
9682 (name "r-adgoftest")
9683 (version "0.3")
9684 (source
9685 (origin
9686 (method url-fetch)
9687 (uri (cran-uri "ADGofTest" version))
9688 (sha256
9689 (base32
9690 "0ik817qzqp6kfbckjp1z7srlma0w6z2zcwykh0jdiv7nahwk3ncw"))))
9691 (properties `((upstream-name . "ADGofTest")))
9692 (build-system r-build-system)
9693 (home-page "https://cran.r-project.org/web/packages/ADGofTest")
9694 (synopsis "Anderson-Darling GoF test")
9695 (description
9696 "This package provides an implementation of the Anderson-Darling GoF test
9697 with p-value calculation based on Marsaglia's 2004 paper \"Evaluating the
9698 Anderson-Darling Distribution\".")
9699 ;; Any version of the GPL.
9700 (license license:gpl3+)))
9701
9702 (define-public r-softimpute
9703 (package
9704 (name "r-softimpute")
9705 (version "1.4")
9706 (source
9707 (origin
9708 (method url-fetch)
9709 (uri (cran-uri "softImpute" version))
9710 (sha256
9711 (base32
9712 "07cxbzkl08q58m1455i139952rmryjlic4s2f2hscl5zxxmfdxcq"))))
9713 (properties `((upstream-name . "softImpute")))
9714 (build-system r-build-system)
9715 (propagated-inputs
9716 `(("r-matrix" ,r-matrix)))
9717 (native-inputs
9718 `(("gfortran" ,gfortran)))
9719 (home-page "https://cran.r-project.org/web/packages/softImpute")
9720 (synopsis "Matrix completion via iterative soft-thresholded SVD")
9721 (description
9722 "This package provides iterative methods for matrix completion that use
9723 nuclear-norm regularization. The package includes procedures for centering
9724 and scaling rows, columns or both, and for computing low-rank @dfn{single
9725 value decompositions} (SVDs) on large sparse centered matrices (i.e. principal
9726 components).")
9727 (license license:gpl2)))
9728
9729 (define-public r-fftwtools
9730 (package
9731 (name "r-fftwtools")
9732 (version "0.9-8")
9733 (source
9734 (origin
9735 (method url-fetch)
9736 (uri (cran-uri "fftwtools" version))
9737 (sha256
9738 (base32
9739 "1nqvpzda281rxi1cmwajxxsn3sc3gz7scv8bvs5jm34kf36whha6"))))
9740 (build-system r-build-system)
9741 (inputs `(("fftw" ,fftw)))
9742 (home-page "https://github.com/krahim/fftwtools")
9743 (synopsis "Wrapper for FFTW3")
9744 (description
9745 "This package provides a wrapper for several FFTW functions. It provides
9746 access to the two-dimensional FFT, the multivariate FFT, and the
9747 one-dimensional real to complex FFT using the FFTW3 library. The package
9748 includes the functions @code{fftw()} and @code{mvfftw()} which are designed to
9749 mimic the functionality of the R functions @code{fft()} and @code{mvfft()}.
9750 The FFT functions have a parameter that allows them to not return the
9751 redundant complex conjugate when the input is real data.")
9752 (license license:gpl2+)))
9753
9754 (define-public r-tiff
9755 (package
9756 (name "r-tiff")
9757 (version "0.1-5")
9758 (source
9759 (origin
9760 (method url-fetch)
9761 (uri (cran-uri "tiff" version))
9762 (sha256
9763 (base32
9764 "0asf2bws3x3yd3g3ixvk0f86b0mdf882pl8xrqlxrkbgjalyc54m"))))
9765 (build-system r-build-system)
9766 (inputs
9767 `(("libtiff" ,libtiff)
9768 ("libjpeg" ,libjpeg-turbo)
9769 ("zlib" ,zlib)))
9770 (home-page "https://www.rforge.net/tiff/")
9771 (synopsis "Read and write TIFF images")
9772 (description
9773 "This package provides an easy and simple way to read, write and display
9774 bitmap images stored in the TIFF format. It can read and write both files and
9775 in-memory raw vectors.")
9776 ;; Either of these two license versions.
9777 (license (list license:gpl2 license:gpl3))))
9778
9779 (define-public r-nlp
9780 (package
9781 (name "r-nlp")
9782 (version "0.2-0")
9783 (source
9784 (origin
9785 (method url-fetch)
9786 (uri (cran-uri "NLP" version))
9787 (sha256
9788 (base32
9789 "0xbhkrnxcbf322jfw31xcn4y2gnk5y7ccq1bz4h3prf44h0whr7w"))))
9790 (properties `((upstream-name . "NLP")))
9791 (build-system r-build-system)
9792 (home-page "https://cran.r-project.org/web/packages/NLP/")
9793 (synopsis "Natural language processing infrastructure")
9794 (description
9795 "This package provides basic classes and methods for Natural Language
9796 Processing.")
9797 (license license:gpl3)))
9798
9799 (define-public r-tm
9800 (package
9801 (name "r-tm")
9802 (version "0.7-7")
9803 (source
9804 (origin
9805 (method url-fetch)
9806 (uri (cran-uri "tm" version))
9807 (sha256
9808 (base32
9809 "0pyics8j7a4wkh5gzin46l0qars5vgbb1886xqpdqjs1z0gy9nyh"))))
9810 (properties `((upstream-name . "tm")))
9811 (build-system r-build-system)
9812 (propagated-inputs
9813 `(("r-bh" ,r-bh)
9814 ("r-nlp" ,r-nlp)
9815 ("r-rcpp" ,r-rcpp)
9816 ("r-slam" ,r-slam)
9817 ("r-xml2" ,r-xml2)))
9818 (home-page "http://tm.r-forge.r-project.org/")
9819 (synopsis "Text mining package")
9820 (description
9821 "This package provides a framework for text mining applications within R.")
9822 (license license:gpl3)))
9823
9824 (define-public r-waveslim
9825 (package
9826 (name "r-waveslim")
9827 (version "1.8.2")
9828 (source
9829 (origin
9830 (method url-fetch)
9831 (uri (cran-uri "waveslim" version))
9832 (sha256
9833 (base32
9834 "0ibivnhz0l06sss5rrrcvyiwg3qpbyk3qn4vx4pp90kj09x4yg0k"))))
9835 (build-system r-build-system)
9836 (native-inputs
9837 `(("gfortran" ,gfortran)))
9838 (home-page "http://waveslim.blogspot.com")
9839 (synopsis "Basic wavelet routines for signal processing")
9840 (description
9841 "This package provides basic wavelet routines for time series (1D),
9842 image (2D) and array (3D) analysis. The code provided here is based on
9843 wavelet methodology developed in Percival and Walden (2000); Gencay, Selcuk
9844 and Whitcher (2001); the dual-tree complex wavelet transform (DTCWT) from
9845 Kingsbury (1999, 2001) as implemented by Selesnick; and Hilbert wavelet
9846 pairs (Selesnick 2001, 2002).")
9847 (license license:bsd-3)))
9848
9849 (define-public r-wordcloud
9850 (package
9851 (name "r-wordcloud")
9852 (version "2.6")
9853 (source
9854 (origin
9855 (method url-fetch)
9856 (uri (cran-uri "wordcloud" version))
9857 (sha256
9858 (base32
9859 "0j96yyvm6bcrrpbdx4w26piqx44a0vbsr3px9cb4zk8a8da6jwak"))))
9860 (build-system r-build-system)
9861 (propagated-inputs
9862 `(("r-rcolorbrewer" ,r-rcolorbrewer)
9863 ("r-rcpp" ,r-rcpp)
9864 ;; The "tm" package is only "suggested" according to CRAN, but the
9865 ;; wordcloud package cannot be loaded without it.
9866 ("r-tm" ,r-tm)))
9867 (home-page "https://cran.r-project.org/web/packages/wordcloud")
9868 (synopsis "Word clouds")
9869 (description
9870 "This package provides functionality to create pretty word clouds,
9871 visualize differences and similarity between documents, and avoid
9872 over-plotting in scatter plots with text.")
9873 (license license:lgpl2.1)))
9874
9875 (define-public r-colorramps
9876 (package
9877 (name "r-colorramps")
9878 (version "2.3")
9879 (source
9880 (origin
9881 (method url-fetch)
9882 (uri (cran-uri "colorRamps" version))
9883 (sha256
9884 (base32
9885 "0shbjh83x1axv4drm5r3dwgbyv70idih8z4wlzjs4hiac2qfl41z"))))
9886 (properties `((upstream-name . "colorRamps")))
9887 (build-system r-build-system)
9888 (home-page "https://cran.r-project.org/web/packages/colorRamps")
9889 (synopsis "Build color tables")
9890 (description "This package provides features to build gradient color
9891 maps.")
9892 ;; Any version of the GPL
9893 (license license:gpl3+)))
9894
9895 (define-public r-tidytree
9896 (package
9897 (name "r-tidytree")
9898 (version "0.3.3")
9899 (source
9900 (origin
9901 (method url-fetch)
9902 (uri (cran-uri "tidytree" version))
9903 (sha256
9904 (base32 "05b53dap0f784kl6s1wgck6m7brwmy6ifqp7v5l06s1spfspagl6"))))
9905 (build-system r-build-system)
9906 (propagated-inputs
9907 `(("r-ape" ,r-ape)
9908 ("r-dplyr" ,r-dplyr)
9909 ("r-lazyeval" ,r-lazyeval)
9910 ("r-magrittr" ,r-magrittr)
9911 ("r-rlang" ,r-rlang)
9912 ("r-tibble" ,r-tibble)))
9913 (native-inputs
9914 `(("r-knitr" ,r-knitr)))
9915 (home-page "https://github.com/GuangchuangYu/tidytree")
9916 (synopsis "Tidy tool for phylogenetic tree data manipulation")
9917 (description
9918 "Phylogenetic trees generally contain multiple components including nodes,
9919 edges, branches and associated data. This package provides an approach to
9920 convert tree objects to tidy data frames. It also provides tidy interfaces to
9921 manipulate tree data.")
9922 (license license:artistic2.0)))
9923
9924 (define-public r-rvcheck
9925 (package
9926 (name "r-rvcheck")
9927 (version "0.1.8")
9928 (source
9929 (origin
9930 (method url-fetch)
9931 (uri (cran-uri "rvcheck" version))
9932 (sha256
9933 (base32 "0627bc8qmhxmd63yh6f90qni3qw1zwdpxjln2qbychzmzd4am9ac"))))
9934 (build-system r-build-system)
9935 (propagated-inputs
9936 `(("r-biocmanager" ,r-biocmanager)
9937 ("r-rlang" ,r-rlang)))
9938 (home-page "https://cran.r-project.org/web/packages/rvcheck")
9939 (synopsis "R package version check")
9940 (description
9941 "This package provides tools to check the latest release version of R and
9942 R packages (on CRAN, Bioconductor or Github).")
9943 (license license:artistic2.0)))
9944
9945 (define-public r-docopt
9946 (package
9947 (name "r-docopt")
9948 (version "0.6.1")
9949 (source
9950 (origin
9951 (method url-fetch)
9952 (uri (cran-uri "docopt" version))
9953 (sha256
9954 (base32
9955 "06zknnd0c5s2y0hbddzdlr3m63ib783izpck6pgz7sjbab5pd068"))))
9956 (build-system r-build-system)
9957 (home-page "https://github.com/docopt/docopt.R")
9958 (synopsis "Command-line interface specification language")
9959 (description
9960 "This package enables you to define a command-line interface by just
9961 giving it a description in the specific format.")
9962 (license license:expat)))
9963
9964 (define-public r-sparsesvd
9965 (package
9966 (name "r-sparsesvd")
9967 (version "0.2")
9968 (source
9969 (origin
9970 (method url-fetch)
9971 (uri (cran-uri "sparsesvd" version))
9972 (sha256
9973 (base32
9974 "1xm969fjq3fv1p2sqza2apz8picibj4s2agpwf1sx9nwn3b587qs"))))
9975 (build-system r-build-system)
9976 (propagated-inputs `(("r-matrix" ,r-matrix)))
9977 (home-page "http://tedlab.mit.edu/~dr/SVDLIBC/")
9978 (synopsis "Sparse truncated singular value decomposition")
9979 (description
9980 "This package provides a Wrapper around the SVDLIBC library
9981 for (truncated) singular value decomposition of a sparse matrix. Currently,
9982 only sparse real matrices in Matrix package format are supported.")
9983 ;; SVDLIBC is released under BSD-2. The R interface is released under
9984 ;; BSD-3.
9985 (license (list license:bsd-3 license:bsd-2))))
9986
9987 (define-public r-speedglm
9988 (package
9989 (name "r-speedglm")
9990 (version "0.3-2")
9991 (source
9992 (origin
9993 (method url-fetch)
9994 (uri (cran-uri "speedglm" version))
9995 (sha256
9996 (base32
9997 "1b25zimk0z7ad62yacqdg0zk0qs0jja4i918ym942xfw4j1z3jjz"))))
9998 (build-system r-build-system)
9999 (propagated-inputs
10000 `(("r-mass" ,r-mass)
10001 ("r-matrix" ,r-matrix)))
10002 (home-page "https://cran.r-project.org/web/packages/speedglm")
10003 (synopsis "Fit linear and generalized linear models to large data sets")
10004 (description
10005 "This package provides tools for fitting linear models and generalized
10006 linear models to large data sets by updating algorithms.")
10007 ;; Any version of the GPL
10008 (license license:gpl2+)))
10009
10010 (define-public r-densityclust
10011 (package
10012 (name "r-densityclust")
10013 (version "0.3")
10014 (source
10015 (origin
10016 (method url-fetch)
10017 (uri (cran-uri "densityClust" version))
10018 (sha256
10019 (base32
10020 "1zry0vafajzmr37aylglxfvwplhdygbkb9cvzvh8cy0xgnjrnx13"))))
10021 (properties `((upstream-name . "densityClust")))
10022 (build-system r-build-system)
10023 (propagated-inputs
10024 `(("r-fnn" ,r-fnn)
10025 ("r-ggplot2" ,r-ggplot2)
10026 ("r-ggrepel" ,r-ggrepel)
10027 ("r-gridextra" ,r-gridextra)
10028 ("r-rcolorbrewer" ,r-rcolorbrewer)
10029 ("r-rcpp" ,r-rcpp)
10030 ("r-rtsne" ,r-rtsne)))
10031 (home-page "https://cran.r-project.org/web/packages/densityClust")
10032 (synopsis "Clustering by fast search and find of density peaks")
10033 (description
10034 "This package provides an improved implementation (based on k-nearest
10035 neighbors) of the density peak clustering algorithm, originally described by
10036 Alex Rodriguez and Alessandro Laio (Science, 2014 vol. 344). It can handle
10037 large datasets (> 100,000 samples) very efficiently.")
10038 (license license:gpl2+)))
10039
10040 (define-public r-combinat
10041 (package
10042 (name "r-combinat")
10043 (version "0.0-8")
10044 (source
10045 (origin
10046 (method url-fetch)
10047 (uri (cran-uri "combinat" version))
10048 (sha256
10049 (base32
10050 "1h9hr88gigihc4na7lb5i7rn4az1xa7sb34zvnznaj6pdrmwy4qm"))))
10051 (build-system r-build-system)
10052 (home-page "https://cran.r-project.org/web/packages/combinat")
10053 (synopsis "Combinatorics utilities")
10054 (description "This package provides assorted routines for combinatorics.")
10055 (license license:gpl2)))
10056
10057 (define-public r-qlcmatrix
10058 (package
10059 (name "r-qlcmatrix")
10060 (version "0.9.7")
10061 (source
10062 (origin
10063 (method url-fetch)
10064 (uri (cran-uri "qlcMatrix" version))
10065 (sha256
10066 (base32
10067 "0iqkcvvy8rxlk0s83sjq57dd6fadb18p5z31lzy0gnzv1hsy1x8y"))))
10068 (properties `((upstream-name . "qlcMatrix")))
10069 (build-system r-build-system)
10070 (propagated-inputs
10071 `(("r-docopt" ,r-docopt)
10072 ("r-matrix" ,r-matrix)
10073 ("r-slam" ,r-slam)
10074 ("r-sparsesvd" ,r-sparsesvd)))
10075 (home-page "https://cran.r-project.org/web/packages/qlcMatrix")
10076 (synopsis "Sparse matrix functions for quantitative language comparison")
10077 (description
10078 "This package provides an extension of the functionality of the Matrix
10079 package for using sparse matrices. Some of the functions are very general,
10080 while other are highly specific for the special data format used for
10081 @dfn{quantitative language comparison} (QLC).")
10082 (license license:gpl3)))
10083
10084 (define-public r-ddrtree
10085 (package
10086 (name "r-ddrtree")
10087 (version "0.1.5")
10088 (source
10089 (origin
10090 (method url-fetch)
10091 (uri (cran-uri "DDRTree" version))
10092 (sha256
10093 (base32
10094 "16s5fjw7kwlxhrkzdny62sx32fvmg3rxjc3wrh6krd31jh1fqlfk"))))
10095 (properties `((upstream-name . "DDRTree")))
10096 (build-system r-build-system)
10097 (propagated-inputs
10098 `(("r-bh" ,r-bh)
10099 ("r-irlba" ,r-irlba)
10100 ("r-rcpp" ,r-rcpp)
10101 ("r-rcppeigen" ,r-rcppeigen)))
10102 (home-page "https://cran.r-project.org/web/packages/DDRTree")
10103 (synopsis "Learning principal graphs with DDRTree")
10104 (description
10105 "This package provides an implementation of the framework of
10106 @dfn{reversed graph embedding} (RGE) which projects data into a reduced
10107 dimensional space while constructs a principal tree which passes through the
10108 middle of the data simultaneously. DDRTree shows superiority to
10109 alternatives (Wishbone, DPT) for inferring the ordering as well as the
10110 intrinsic structure of single cell genomics data. In general, it could be
10111 used to reconstruct the temporal progression as well as the bifurcation
10112 structure of any data type.")
10113 (license license:asl2.0)))
10114
10115 (define-public r-corpcor
10116 (package
10117 (name "r-corpcor")
10118 (version "1.6.9")
10119 (source
10120 (origin
10121 (method url-fetch)
10122 (uri (cran-uri "corpcor" version))
10123 (sha256
10124 (base32
10125 "1hi3i9d3841snppq1ks5pd8cliq1b4rm4dpsczmfqvwksg8snkrf"))))
10126 (build-system r-build-system)
10127 (home-page "http://strimmerlab.org/software/corpcor/")
10128 (synopsis "Efficient estimation of covariance and (partial) correlation")
10129 (description
10130 "This package implements a James-Stein-type shrinkage estimator for the
10131 covariance matrix, with separate shrinkage for variances and correlations.
10132 Furthermore, functions are available for fast singular value decomposition,
10133 for computing the pseudoinverse, and for checking the rank and positive
10134 definiteness of a matrix.")
10135 (license license:gpl3+)))
10136
10137 (define-public r-rspectra
10138 (package
10139 (name "r-rspectra")
10140 (version "0.16-0")
10141 (source
10142 (origin
10143 (method url-fetch)
10144 (uri (cran-uri "RSpectra" version))
10145 (sha256
10146 (base32
10147 "1ab45as2ysjrvkhvmx7y3nbhd0y1w4j9k2a789lcd973zz4wzwda"))))
10148 (properties `((upstream-name . "RSpectra")))
10149 (build-system r-build-system)
10150 (propagated-inputs
10151 `(("r-matrix" ,r-matrix)
10152 ("r-rcpp" ,r-rcpp)
10153 ("r-rcppeigen" ,r-rcppeigen)))
10154 (home-page "https://github.com/yixuan/RSpectra")
10155 (synopsis "Solvers for large-scale Eigenvalue and SVD problems")
10156 (description
10157 "This package provides an R interface to the Spectra library for
10158 large-scale eigenvalue and SVD problems. It is typically used to compute a
10159 few eigenvalues/vectors of an n by n matrix, e.g., the k largest eigenvalues,
10160 which is usually more efficient than @code{eigen()} if k << n.")
10161 ;; MPL 2 or later.
10162 (license license:mpl2.0)))
10163
10164 (define-public r-vbsr
10165 (package
10166 (name "r-vbsr")
10167 (version "0.0.5")
10168 (source
10169 (origin
10170 (method url-fetch)
10171 (uri (cran-uri "vbsr" version))
10172 (sha256
10173 (base32
10174 "1avskbxxyinjjdga4rnghcfvd4sypv4m39ysfaij5avvmi89bx3b"))))
10175 (build-system r-build-system)
10176 (home-page "https://cran.r-project.org/web/packages/vbsr")
10177 (synopsis "Variational Bayes spike regression regularized linear models")
10178 (description
10179 "This package provides an efficient algorithm for solving ultra-sparse
10180 regularized regression models using a variational Bayes algorithm with a spike
10181 prior. The algorithm is solved on a path, with coordinate updates, and is
10182 capable of generating very sparse models. Very general model
10183 diagnostics for controlling type-1 errors are also provided.")
10184 (license license:gpl2)))
10185
10186 (define-public r-flare
10187 (package
10188 (name "r-flare")
10189 (version "1.6.0.2")
10190 (source
10191 (origin
10192 (method url-fetch)
10193 (uri (cran-uri "flare" version))
10194 (sha256
10195 (base32
10196 "1ybrsx1djqldw0l5l1iz4pfh6xxb8ckkg1ric7wnsr51wm9ljlh5"))))
10197 (build-system r-build-system)
10198 (propagated-inputs
10199 `(("r-igraph" ,r-igraph)
10200 ("r-lattice" ,r-lattice)
10201 ("r-mass" ,r-mass)
10202 ("r-matrix" ,r-matrix)))
10203 (home-page "https://cran.r-project.org/web/packages/flare")
10204 (synopsis "Family of Lasso regression implementations")
10205 (description
10206 "This package provides implementations of a family of Lasso variants
10207 including Dantzig Selector, LAD Lasso, SQRT Lasso, Lq Lasso for estimating
10208 high dimensional sparse linear models.")
10209 (license license:gpl2)))
10210
10211 (define-public r-lassopv
10212 (package
10213 (name "r-lassopv")
10214 (version "0.2.0")
10215 (source
10216 (origin
10217 (method url-fetch)
10218 (uri (cran-uri "lassopv" version))
10219 (sha256
10220 (base32
10221 "0yawnjw063jypk3riy9xab9cmliv6c9dnabi18670khd3gzb2r9z"))))
10222 (build-system r-build-system)
10223 (propagated-inputs `(("r-lars" ,r-lars)))
10224 (home-page "https://github.com/lingfeiwang/lassopv")
10225 (synopsis "Non-parametric p-value estimation for predictors in Lasso")
10226 (description
10227 "This package enables you to estimate the p-values for predictors x
10228 against target variable y in Lasso regression, using the regularization
10229 strength when each predictor enters the active set of regularization path for
10230 the first time as the statistic.")
10231 (license license:gpl3)))
10232
10233 (define-public r-splitstackshape
10234 (package
10235 (name "r-splitstackshape")
10236 (version "1.4.8")
10237 (source
10238 (origin
10239 (method url-fetch)
10240 (uri (cran-uri "splitstackshape" version))
10241 (sha256
10242 (base32
10243 "0mpyf2kkfdl69pdc6brl1r6101vyc6pgr7z17s55ppg3y71k4q35"))))
10244 (build-system r-build-system)
10245 (propagated-inputs
10246 `(("r-data-table" ,r-data-table)))
10247 (home-page "https://github.com/mrdwab/splitstackshape")
10248 (synopsis "Stack and reshape datasets after splitting concatenated values")
10249 (description
10250 "Online data collection tools like Google Forms often export
10251 multiple-response questions with data concatenated in cells. The
10252 @code{concat.split} (cSplit) family of functions provided by this package
10253 splits such data into separate cells. This package also includes functions to
10254 stack groups of columns and to reshape wide data, even when the data are
10255 \"unbalanced\"---something which @code{reshape} (from base R) does not handle,
10256 and which @code{melt} and @code{dcast} from @code{reshape2} do not easily
10257 handle.")
10258 (license license:gpl3)))
10259
10260 (define-public r-tfmpvalue
10261 (package
10262 (name "r-tfmpvalue")
10263 (version "0.0.8")
10264 (source
10265 (origin
10266 (method url-fetch)
10267 (uri (cran-uri "TFMPvalue" version))
10268 (sha256
10269 (base32
10270 "0h9qkl15k8v17v3g9bdnfwvh2s04ywjgg5y0xn2077dmywlja1bd"))))
10271 (properties `((upstream-name . "TFMPvalue")))
10272 (build-system r-build-system)
10273 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
10274 (home-page "https://github.com/ge11232002/TFMPvalue")
10275 (synopsis "P-value computation for position weight matrices")
10276 (description
10277 "In putative @dfn{Transcription Factor Binding Sites} (TFBSs)
10278 identification from sequence/alignments, we are interested in the significance
10279 of certain match scores. TFMPvalue provides the accurate calculation of a
10280 p-value with a score threshold for position weight matrices, or the score with
10281 a given p-value. It is an interface to code originally made available by
10282 Helene Touzet and Jean-Stephane Varre, 2007, Algorithms Mol Biol:2, 15.
10283 Touzet and Varre (2007).")
10284 (license license:gpl2)))
10285
10286 (define-public r-rnifti
10287 (package
10288 (name "r-rnifti")
10289 (version "1.1.0")
10290 (source
10291 (origin
10292 (method url-fetch)
10293 (uri (cran-uri "RNifti" version))
10294 (sha256
10295 (base32
10296 "1z8ninp3aq18w0slcfn8r2fp48cdz8l0k0namsrnvgyp8lzcpqpn"))))
10297 (properties `((upstream-name . "RNifti")))
10298 (build-system r-build-system)
10299 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
10300 (home-page "https://github.com/jonclayden/RNifti")
10301 (synopsis "Fast R and C++ access to NIfTI images")
10302 (description
10303 "This package provides very fast read and write access to images stored
10304 in the NIfTI-1 and ANALYZE-7.5 formats, with seamless synchronisation between
10305 compiled C and interpreted R code. It also provides a C/C++ API that can be
10306 used by other packages.")
10307 (license license:gpl2)))
10308
10309 (define-public r-shades
10310 (package
10311 (name "r-shades")
10312 (version "1.4.0")
10313 (source
10314 (origin
10315 (method url-fetch)
10316 (uri (cran-uri "shades" version))
10317 (sha256
10318 (base32
10319 "1zg95sjhrfvbdlfc387g9p0vnb8nb6agdk1mb3wq3kwkm2da0bqj"))))
10320 (build-system r-build-system)
10321 (home-page "https://github.com/jonclayden/shades")
10322 (synopsis "Simple color manipulation")
10323 (description
10324 "This package provides functions for easily manipulating colors,
10325 creating color scales and calculating color distances.")
10326 (license license:bsd-3)))
10327
10328 (define-public r-ore
10329 (package
10330 (name "r-ore")
10331 (version "1.6.3")
10332 (source
10333 (origin
10334 (method url-fetch)
10335 (uri (cran-uri "ore" version))
10336 (sha256
10337 (base32 "1vh6w3arrhgkfjjjw7ci91xmz4wpfr3cmwd5zkqch89dgn07skkv"))))
10338 (build-system r-build-system)
10339 (home-page "https://github.com/jonclayden/ore")
10340 (synopsis "R interface to the Onigmo regular expression library")
10341 (description
10342 "This package provides an alternative to R's built-in functionality for
10343 handling regular expressions, based on the Onigmo library. It offers
10344 first-class compiled regex objects, partial matching and function-based
10345 substitutions, amongst other features.")
10346 (license license:bsd-3)))
10347
10348 (define-public r-reportr
10349 (package
10350 (name "r-reportr")
10351 (version "1.3.0")
10352 (source
10353 (origin
10354 (method url-fetch)
10355 (uri (cran-uri "reportr" version))
10356 (sha256
10357 (base32
10358 "0zynplxqvbmf23cm2rsz3wz2jx6mv55z94mn1k44ny3lx625cnpw"))))
10359 (build-system r-build-system)
10360 (propagated-inputs `(("r-ore" ,r-ore)))
10361 (home-page "https://github.com/jonclayden/reportr")
10362 (synopsis "General message and error reporting system")
10363 (description
10364 "This package provides a system for reporting messages, which offers
10365 certain useful features over the standard R system, such as the incorporation
10366 of output consolidation, message filtering, assertions, expression
10367 substitution, automatic generation of stack traces for debugging, and
10368 conditional reporting based on the current \"output level\".")
10369 (license license:gpl2)))
10370
10371 (define-public r-tractor-base
10372 (package
10373 (name "r-tractor-base")
10374 (version "3.3.2")
10375 (source
10376 (origin
10377 (method url-fetch)
10378 (uri (cran-uri "tractor.base" version))
10379 (sha256
10380 (base32
10381 "0y5gm0y4chl30f5qqq8qiiw4j8g32s4i9xrvyp3cwg902kf2p86i"))))
10382 (properties `((upstream-name . "tractor.base")))
10383 (build-system r-build-system)
10384 (propagated-inputs
10385 `(("r-ore" ,r-ore)
10386 ("r-reportr" ,r-reportr)
10387 ("r-rnifti" ,r-rnifti)
10388 ("r-shades" ,r-shades)))
10389 (home-page "https://www.tractor-mri.org.uk")
10390 (synopsis "Read, manipulate and visualize magnetic resonance images")
10391 (description
10392 "This package provides functions for working with magnetic resonance
10393 images. It supports reading and writing of popular file formats (DICOM,
10394 Analyze, NIfTI-1, NIfTI-2, MGH); interactive and non-interactive
10395 visualization; flexible image manipulation; metadata and sparse image
10396 handling.")
10397 (license license:gpl2)))
10398
10399 (define-public r-grimport
10400 (package
10401 (name "r-grimport")
10402 (version "0.9-3")
10403 (source
10404 (origin
10405 (method url-fetch)
10406 (uri (cran-uri "grImport" version))
10407 (sha256
10408 (base32
10409 "109mrdvq06xq3zgn9ngz0c7zzgqkv5zbpvsb2i636vmlk6y4dpkd"))))
10410 (properties `((upstream-name . "grImport")))
10411 (build-system r-build-system)
10412 (inputs
10413 `(("ghostscript" ,ghostscript)))
10414 (propagated-inputs
10415 `(("r-xml" ,r-xml)))
10416 (home-page "https://cran.r-project.org/web/packages/grImport")
10417 (synopsis "Convert, import, and draw PostScript pictures")
10418 (description
10419 "This package provides functions for converting, importing, and drawing
10420 PostScript pictures in R plots.")
10421 (license license:gpl2+)))
10422
10423 (define-public r-grimport2
10424 (package
10425 (name "r-grimport2")
10426 (version "0.2-0")
10427 (source
10428 (origin
10429 (method url-fetch)
10430 (uri (cran-uri "grImport2" version))
10431 (sha256
10432 (base32
10433 "19q0dd8fpp1g4xf6sg5f8dxybwxjfw553ra6wgjd8b74fzca40m1"))))
10434 (properties `((upstream-name . "grImport2")))
10435 (build-system r-build-system)
10436 (propagated-inputs
10437 `(("r-base64enc" ,r-base64enc)
10438 ("r-jpeg" ,r-jpeg)
10439 ("r-png" ,r-png)
10440 ("r-xml" ,r-xml)))
10441 (home-page "https://cran.r-project.org/web/packages/grImport2/")
10442 (synopsis "Import SVG graphics")
10443 (description
10444 "This package provides functions for importing external vector images and
10445 drawing them as part of R plots. This package is different from the
10446 @code{grImport} package because, where that package imports PostScript format
10447 images, this package imports SVG format images. Furthermore, this package
10448 imports a specific subset of SVG, so external images must be preprocessed
10449 using a package like @code{rsvg} to produce SVG that this package can import.
10450 SVG features that are not supported by R graphics, such as gradient fills, can
10451 be imported and then exported via the @code{gridSVG} package.")
10452 (license license:gpl2+)))
10453
10454 (define-public r-kohonen
10455 (package
10456 (name "r-kohonen")
10457 (version "3.0.10")
10458 (source
10459 (origin
10460 (method url-fetch)
10461 (uri (cran-uri "kohonen" version))
10462 (sha256
10463 (base32
10464 "1ck7j13x701g67bx81x7plszz804jfhl1yg42krcj9x88vm5cscr"))))
10465 (build-system r-build-system)
10466 (propagated-inputs
10467 `(("r-rcpp" ,r-rcpp)))
10468 (home-page "https://cran.r-project.org/web/packages/kohonen")
10469 (synopsis "Supervised and unsupervised self-organising maps")
10470 (description
10471 "This package provides functions to train @dfn{self-organising
10472 maps} (SOMs). Also interrogation of the maps and prediction using trained
10473 maps are supported. The name of the package refers to Teuvo Kohonen, the
10474 inventor of the SOM.")
10475 (license license:gpl2+)))
10476
10477 (define-public r-nnls
10478 (package
10479 (name "r-nnls")
10480 (version "1.4")
10481 (source
10482 (origin
10483 (method url-fetch)
10484 (uri (cran-uri "nnls" version))
10485 (sha256
10486 (base32
10487 "07vcrrxvswrvfiha6f3ikn640yg0m2b4yd9lkmim1g0jmsmpfp8f"))))
10488 (build-system r-build-system)
10489 (native-inputs `(("gfortran" ,gfortran)))
10490 (home-page "https://cran.r-project.org/web/packages/nnls")
10491 (synopsis "Lawson-Hanson algorithm for non-negative least squares")
10492 (description
10493 "This package provides an R interface to the Lawson-Hanson implementation
10494 of an algorithm for @dfn{non-negative least squares} (NNLS). It also allows
10495 the combination of non-negative and non-positive constraints.")
10496 (license license:gpl2+)))
10497
10498 (define-public r-iso
10499 (package
10500 (name "r-iso")
10501 (version "0.0-18")
10502 (source
10503 (origin
10504 (method url-fetch)
10505 (uri (cran-uri "Iso" version))
10506 (sha256
10507 (base32
10508 "014mm5b1f7i6nwlz3kyg1biph0y542kcx5bd13p68cv5a928qzid"))))
10509 (properties `((upstream-name . "Iso")))
10510 (build-system r-build-system)
10511 (native-inputs `(("gfortran" ,gfortran)))
10512 (home-page "https://www.stat.auckland.ac.nz/~rolf/")
10513 (synopsis "Functions to perform isotonic regression")
10514 (description
10515 "This package provides support for linear order and unimodal
10516 order (univariate) isotonic regression and bivariate isotonic regression with
10517 linear order on both variables.")
10518 (license license:gpl2+)))
10519
10520 (define-public r-chemometricswithr
10521 (package
10522 (name "r-chemometricswithr")
10523 (version "0.1.13")
10524 (source
10525 (origin
10526 (method url-fetch)
10527 (uri (cran-uri "ChemometricsWithR" version))
10528 (sha256
10529 (base32
10530 "166va1g3m1wv21qkmw4wpz0bsrclh3jih8smxphdc13l9pqgclpq"))))
10531 (properties
10532 `((upstream-name . "ChemometricsWithR")))
10533 (build-system r-build-system)
10534 (propagated-inputs
10535 `(("r-devtools" ,r-devtools)
10536 ("r-kohonen" ,r-kohonen)
10537 ("r-mass" ,r-mass)
10538 ("r-pls" ,r-pls)))
10539 (home-page "https://github.com/rwehrens/CWR")
10540 (synopsis "Chemometrics with R")
10541 (description
10542 "This package provides functions and scripts used in the book
10543 \"Chemometrics with R - Multivariate Data Analysis in the Natural Sciences and
10544 Life Sciences\" by Ron Wehrens, Springer (2011).")
10545 (license license:gpl2+)))
10546
10547 (define-public r-als
10548 (package
10549 (name "r-als")
10550 (version "0.0.6")
10551 (source
10552 (origin
10553 (method url-fetch)
10554 (uri (cran-uri "ALS" version))
10555 (sha256
10556 (base32
10557 "1swrn39vy50fazkpf97r7c542gkj6mlvy8gmcxllg7mf2mqx546a"))))
10558 (properties `((upstream-name . "ALS")))
10559 (build-system r-build-system)
10560 (propagated-inputs
10561 `(("r-iso" ,r-iso)
10562 ("r-nnls" ,r-nnls)))
10563 (home-page "https://cran.r-project.org/web/packages/ALS")
10564 (synopsis "Multivariate curve resolution alternating least squares")
10565 (description
10566 "Alternating least squares is often used to resolve components
10567 contributing to data with a bilinear structure; the basic technique may be
10568 extended to alternating constrained least squares. This package provides an
10569 implementation of @dfn{multivariate curve resolution alternating least
10570 squares} (MCR-ALS).
10571
10572 Commonly applied constraints include unimodality, non-negativity, and
10573 normalization of components. Several data matrices may be decomposed
10574 simultaneously by assuming that one of the two matrices in the bilinear
10575 decomposition is shared between datasets.")
10576 (license license:gpl2+)))
10577
10578 (define-public r-strucchange
10579 (package
10580 (name "r-strucchange")
10581 (version "1.5-2")
10582 (source
10583 (origin
10584 (method url-fetch)
10585 (uri (cran-uri "strucchange" version))
10586 (sha256
10587 (base32
10588 "1y022363a4pp0mnji91sjh1qiyspkh09sybqwj03r9pmwrd7q93x"))))
10589 (build-system r-build-system)
10590 (propagated-inputs
10591 `(("r-sandwich" ,r-sandwich)
10592 ("r-zoo" ,r-zoo)))
10593 (home-page "https://cran.r-project.org/web/packages/strucchange")
10594 (synopsis "Testing, monitoring, and dating structural changes")
10595 (description
10596 "This package provides tools for testing, monitoring and dating
10597 structural changes in (linear) regression models. It features tests/methods
10598 from the generalized fluctuation test framework as well as from the F
10599 test (Chow test) framework. This includes methods to fit, plot and test
10600 fluctuation processes (e.g., CUSUM, MOSUM, recursive/moving estimates) and F
10601 statistics, respectively. It is possible to monitor incoming data online
10602 using fluctuation processes. Finally, the breakpoints in regression models
10603 with structural changes can be estimated together with confidence intervals.
10604 Emphasis is always given to methods for visualizing the data.")
10605 ;; Either of these two GPL versions
10606 (license (list license:gpl2 license:gpl3))))
10607
10608 (define-public r-pixmap
10609 (package
10610 (name "r-pixmap")
10611 (version "0.4-11")
10612 (source
10613 (origin
10614 (method url-fetch)
10615 (uri (cran-uri "pixmap" version))
10616 (sha256
10617 (base32
10618 "04klxp6jndw1bp6z40v20fbmdmdpfca2g0czmmmgbkark9s1183g"))))
10619 (build-system r-build-system)
10620 (home-page "https://cran.r-project.org/web/packages/pixmap")
10621 (synopsis "Tools for bitmap images")
10622 (description
10623 "This package provides functions for importing, exporting, plotting and
10624 other manipulations of bitmapped images.")
10625 (license license:gpl2)))
10626
10627 (define-public r-rapidjsonr
10628 (package
10629 (name "r-rapidjsonr")
10630 (version "1.2.0")
10631 (source
10632 (origin
10633 (method url-fetch)
10634 (uri (cran-uri "rapidjsonr" version))
10635 (sha256
10636 (base32
10637 "07zdirhbzmvq3cp4xn8ngk1lgxbbabzays315zxbs3sxrz6lzjb2"))))
10638 (build-system r-build-system)
10639 (home-page "https://cran.r-project.org/web/packages/rapidjsonr")
10640 (synopsis "JSON parser")
10641 (description
10642 "This package provides JSON parsing capability through the Rapidjson
10643 library.")
10644 (license license:expat)))
10645
10646 (define-public r-ontologyindex
10647 (package
10648 (name "r-ontologyindex")
10649 (version "2.5")
10650 (source
10651 (origin
10652 (method url-fetch)
10653 (uri (cran-uri "ontologyIndex" version))
10654 (sha256
10655 (base32
10656 "127hlf0z5fmbgnq4p9h8nvn6p72d2fpcn846zzb99s213421jnry"))))
10657 (properties `((upstream-name . "ontologyIndex")))
10658 (build-system r-build-system)
10659 (home-page "https://cran.r-project.org/web/packages/ontologyIndex")
10660 (synopsis "Functions for processing ontologies in R")
10661 (description
10662 "This package provides functions for reading ontologies into R as lists
10663 and manipulating sets of ontological terms.")
10664 (license license:gpl2+)))
10665
10666 (define-public r-gargle
10667 (package
10668 (name "r-gargle")
10669 (version "0.4.0")
10670 (source
10671 (origin
10672 (method url-fetch)
10673 (uri (cran-uri "gargle" version))
10674 (sha256
10675 (base32
10676 "08zhfk2sl342w35i5n2c93ayypg3z0kbl0020l3y9adqka1vazgx"))))
10677 (build-system r-build-system)
10678 (propagated-inputs
10679 `(("r-fs" ,r-fs)
10680 ("r-glue" ,r-glue)
10681 ("r-httr" ,r-httr)
10682 ("r-jsonlite" ,r-jsonlite)
10683 ("r-rlang" ,r-rlang)
10684 ("r-withr" ,r-withr)))
10685 (home-page "https://gargle.r-lib.org")
10686 (synopsis "Utilities for working with Google APIs")
10687 (description
10688 "This package provides utilities for working with Google APIs. This
10689 includes functions and classes for handling common credential types and for
10690 preparing, executing, and processing HTTP requests.")
10691 (license license:expat)))
10692
10693 (define-public r-bigrquery
10694 (package
10695 (name "r-bigrquery")
10696 (version "1.2.0")
10697 (source
10698 (origin
10699 (method url-fetch)
10700 (uri (cran-uri "bigrquery" version))
10701 (sha256
10702 (base32
10703 "1ggh2gngr5x0g6y7d55y6kvn94anf7qi1bkc28cjmw61hxjq38fb"))))
10704 (build-system r-build-system)
10705 (propagated-inputs
10706 `(("r-assertthat" ,r-assertthat)
10707 ("r-bit64" ,r-bit64)
10708 ("r-curl" ,r-curl)
10709 ("r-dbi" ,r-dbi)
10710 ("r-gargle" ,r-gargle)
10711 ("r-glue" ,r-glue)
10712 ("r-httr" ,r-httr)
10713 ("r-jsonlite" ,r-jsonlite)
10714 ("r-prettyunits" ,r-prettyunits)
10715 ("r-progress" ,r-progress)
10716 ("r-rapidjsonr" ,r-rapidjsonr)
10717 ("r-rcpp" ,r-rcpp)
10718 ("r-rlang" ,r-rlang)
10719 ("r-tibble" ,r-tibble)))
10720 (home-page "https://github.com/rstats-db/bigrquery")
10721 (synopsis "R interface to Google's BigQuery API")
10722 (description
10723 "This package provides an R interface to Google's BigQuery database.")
10724 (license license:gpl3)))
10725
10726 (define-public r-gmp
10727 (package
10728 (name "r-gmp")
10729 (version "0.5-13.6")
10730 (source
10731 (origin
10732 (method url-fetch)
10733 (uri (cran-uri "gmp" version))
10734 (sha256
10735 (base32
10736 "0j2sz2nw41y9306rl1b8hbn0spz7453z5iawcq0bvslyrhc1d9ir"))))
10737 (build-system r-build-system)
10738 (arguments
10739 '(#:phases
10740 (modify-phases %standard-phases
10741 (add-after 'unpack 'set-CC
10742 (lambda _ (setenv "CC" "gcc") #t)))))
10743 (inputs `(("gmp" ,gmp)))
10744 (home-page "https://cran.r-project.org/web/packages/gmp")
10745 (synopsis "Multiple precision arithmetic")
10746 (description
10747 "This package supports multiple precision arithmetic (big integers and
10748 rationals, prime number tests, matrix computation), \"arithmetic without
10749 limitations\" using the GNU Multiple Precision library.")
10750 ;; Any version of the GPL.
10751 (license license:gpl3+)))
10752
10753 (define-public r-rmpfr
10754 (package
10755 (name "r-rmpfr")
10756 (version "0.8-1")
10757 (source
10758 (origin
10759 (method url-fetch)
10760 (uri (cran-uri "Rmpfr" version))
10761 (sha256
10762 (base32
10763 "09kw7hyca8xc09r2d88qj81cclar8acaq5q9q5rw9f49iffda0rr"))))
10764 (properties `((upstream-name . "Rmpfr")))
10765 (build-system r-build-system)
10766 (inputs
10767 `(("mpfr" ,mpfr)
10768 ("gmp" ,gmp)))
10769 (propagated-inputs
10770 `(("r-gmp" ,r-gmp)))
10771 (native-inputs
10772 `(("pkg-config" ,pkg-config)))
10773 (home-page "http://rmpfr.r-forge.r-project.org/")
10774 (synopsis "R bindings to the MPFR library")
10775 (description
10776 "This package supports arithmetic (via S4 classes and methods) for
10777 arbitrary precision floating point numbers, including transcendental
10778 functions. To this end, the package interfaces with the @dfn{Multiple
10779 Precision Floating-Point Reliable} (MPFR) library.")
10780 (license license:gpl2+)))
10781
10782 (define-public r-assertive-base
10783 (package
10784 (name "r-assertive-base")
10785 (version "0.0-7")
10786 (source
10787 (origin
10788 (method url-fetch)
10789 (uri (cran-uri "assertive.base" version))
10790 (sha256
10791 (base32
10792 "1xs3ysvj0z57c58jw57pckq2rynia6ks4rmjmc02alczhk54wbgh"))))
10793 (properties
10794 `((upstream-name . "assertive.base")))
10795 (build-system r-build-system)
10796 (home-page "https://bitbucket.org/richierocks/assertive.base")
10797 (synopsis "Core of the assertive package")
10798 (description
10799 "This package provides a minimal set of predicates and assertions used by
10800 the assertive package. This is mainly for use by other package developers who
10801 want to include run-time testing features in their own packages.")
10802 (license license:gpl3+)))
10803
10804 (define-public r-assertive-properties
10805 (package
10806 (name "r-assertive-properties")
10807 (version "0.0-4")
10808 (source
10809 (origin
10810 (method url-fetch)
10811 (uri (cran-uri "assertive.properties" version))
10812 (sha256
10813 (base32
10814 "0sqs54acs9qk9kvm32rxzfbzxz1l8mjahpfnw7r30z2brgz661jw"))))
10815 (properties
10816 `((upstream-name . "assertive.properties")))
10817 (build-system r-build-system)
10818 (propagated-inputs
10819 `(("r-assertive-base" ,r-assertive-base)))
10820 (home-page "https://bitbucket.org/richierocks/assertive.properties")
10821 (synopsis "Assertions to check properties of variables")
10822 (description
10823 "This package provides a set of predicates and assertions for checking
10824 the properties of variables, such as length, names and attributes. This is
10825 mainly for use by other package developers who want to include run-time
10826 testing features in their own packages.")
10827 (license license:gpl3+)))
10828
10829 (define-public r-assertive-numbers
10830 (package
10831 (name "r-assertive-numbers")
10832 (version "0.0-2")
10833 (source
10834 (origin
10835 (method url-fetch)
10836 (uri (cran-uri "assertive.numbers" version))
10837 (sha256
10838 (base32
10839 "0jc3ss64j4m7bjydhagwwmka5n7c72vpw4kfcch0m5jvkq5qrqds"))))
10840 (properties
10841 `((upstream-name . "assertive.numbers")))
10842 (build-system r-build-system)
10843 (propagated-inputs
10844 `(("r-assertive-base" ,r-assertive-base)))
10845 (home-page "https://bitbucket.org/richierocks/assertive.numbers")
10846 (synopsis "Assertions to check properties of numbers")
10847 (description
10848 "This package provides a set of predicates and assertions for checking
10849 the properties of numbers. This is mainly for use by other package developers
10850 who want to include run-time testing features in their own packages.")
10851 (license license:gpl3+)))
10852
10853 (define-public r-assertive-sets
10854 (package
10855 (name "r-assertive-sets")
10856 (version "0.0-3")
10857 (source
10858 (origin
10859 (method url-fetch)
10860 (uri (cran-uri "assertive.sets" version))
10861 (sha256
10862 (base32
10863 "1cqvh2syvh5b6d85h601zjmsdbbf3h8q98ids4dfl4frdshpasc7"))))
10864 (properties
10865 `((upstream-name . "assertive.sets")))
10866 (build-system r-build-system)
10867 (propagated-inputs
10868 `(("r-assertive-base" ,r-assertive-base)))
10869 (home-page "https://bitbucket.org/richierocks/assertive.sets")
10870 (synopsis "Assertions to check properties of sets")
10871 (description
10872 "This package provides a set of predicates and assertions for checking
10873 the properties of sets. This is mainly for use by other package developers
10874 who want to include run-time testing features in their own packages.")
10875 (license license:gpl3+)))
10876
10877 (define-public r-assertive-matrices
10878 (package
10879 (name "r-assertive-matrices")
10880 (version "0.0-2")
10881 (source
10882 (origin
10883 (method url-fetch)
10884 (uri (cran-uri "assertive.matrices" version))
10885 (sha256
10886 (base32
10887 "16sykzcndv6y2d43x6v9n7m95kv76364h39kh10w4z0xw6ksfqil"))))
10888 (properties
10889 `((upstream-name . "assertive.matrices")))
10890 (build-system r-build-system)
10891 (propagated-inputs
10892 `(("r-assertive-base" ,r-assertive-base)))
10893 (home-page "https://bitbucket.org/richierocks/assertive.matrices")
10894 (synopsis "Assertions to check properties of matrices")
10895 (description
10896 "This package provides a set of predicates and assertions for checking
10897 the properties of matrices. This is mainly for use by other package
10898 developers who want to include run-time testing features in their own
10899 packages.")
10900 (license license:gpl3+)))
10901
10902 (define-public r-assertive-models
10903 (package
10904 (name "r-assertive-models")
10905 (version "0.0-2")
10906 (source
10907 (origin
10908 (method url-fetch)
10909 (uri (cran-uri "assertive.models" version))
10910 (sha256
10911 (base32
10912 "0bn4j4v5qvb2d672cgri61p8d9v258pmz35y3lvm6b9mdxwdi9mr"))))
10913 (properties
10914 `((upstream-name . "assertive.models")))
10915 (build-system r-build-system)
10916 (propagated-inputs
10917 `(("r-assertive-base" ,r-assertive-base)))
10918 (home-page "https://bitbucket.org/richierocks/assertive.models")
10919 (synopsis "Assertions to check properties of models")
10920 (description
10921 "This package provides a set of predicates and assertions for checking
10922 the properties of models. This is mainly for use by other package developers
10923 who want to include run-time testing features in their own packages.")
10924 (license license:gpl3+)))
10925
10926 (define-public r-assertive-reflection
10927 (package
10928 (name "r-assertive-reflection")
10929 (version "0.0-4")
10930 (source
10931 (origin
10932 (method url-fetch)
10933 (uri (cran-uri "assertive.reflection" version))
10934 (sha256
10935 (base32
10936 "19zmsbn00crfqm0kwd9ys5gv87xs3gi6wmlikrz9xiwzm7hp4dhj"))))
10937 (properties
10938 `((upstream-name . "assertive.reflection")))
10939 (build-system r-build-system)
10940 (propagated-inputs
10941 `(("r-assertive-base" ,r-assertive-base)))
10942 (home-page "https://bitbucket.org/richierocks/assertive.reflection")
10943 (synopsis "Assertions for checking the state of R")
10944 (description
10945 "This package provides a set of predicates and assertions for checking
10946 the state and capabilities of R, the operating system it is running on, and
10947 the IDE being used. This is mainly for use by other package developers who
10948 want to include run-time testing features in their own packages.")
10949 (license license:gpl3+)))
10950
10951 (define-public r-assertive-types
10952 (package
10953 (name "r-assertive-types")
10954 (version "0.0-3")
10955 (source
10956 (origin
10957 (method url-fetch)
10958 (uri (cran-uri "assertive.types" version))
10959 (sha256
10960 (base32
10961 "0zxq1jfrzgw95ll7alvm0xnk7aihjdksngq4ya2whyvfjbmv4vdb"))))
10962 (properties
10963 `((upstream-name . "assertive.types")))
10964 (build-system r-build-system)
10965 (propagated-inputs
10966 `(("r-assertive-base" ,r-assertive-base)
10967 ("r-assertive-properties" ,r-assertive-properties)
10968 ("r-codetools" ,r-codetools)))
10969 (home-page "https://bitbucket.org/richierocks/assertive.types")
10970 (synopsis "Assertions to check types of variables")
10971 (description
10972 "This package provides a set of predicates and assertions for checking
10973 the types of variables. This is mainly for use by other package developers
10974 who want to include run-time testing features in their own packages.")
10975 (license license:gpl3+)))
10976
10977 (define-public r-assertive-files
10978 (package
10979 (name "r-assertive-files")
10980 (version "0.0-2")
10981 (source
10982 (origin
10983 (method url-fetch)
10984 (uri (cran-uri "assertive.files" version))
10985 (sha256
10986 (base32
10987 "02pfz8j5vwcj5kl6zca46894li7lxwnlrr29j922f14ay6kdssmy"))))
10988 (properties
10989 `((upstream-name . "assertive.files")))
10990 (build-system r-build-system)
10991 (propagated-inputs
10992 `(("r-assertive-base" ,r-assertive-base)
10993 ("r-assertive-numbers" ,r-assertive-numbers)))
10994 (home-page "https://bitbucket.org/richierocks/assertive.files")
10995 (synopsis "Assertions to check properties of files")
10996 (description
10997 "This package provides a set of predicates and assertions for checking
10998 the properties of files and connections. This is mainly for use by other
10999 package developers who want to include run-time testing features in their own
11000 packages.")
11001 (license license:gpl3+)))
11002
11003 (define-public r-assertive-code
11004 (package
11005 (name "r-assertive-code")
11006 (version "0.0-3")
11007 (source
11008 (origin
11009 (method url-fetch)
11010 (uri (cran-uri "assertive.code" version))
11011 (sha256
11012 (base32
11013 "1qhbp668zfvhqs8avkhg9amp4zyazz6dsy4fc6kpdmw3sv8yi07g"))))
11014 (properties
11015 `((upstream-name . "assertive.code")))
11016 (build-system r-build-system)
11017 (propagated-inputs
11018 `(("r-assertive-base" ,r-assertive-base)
11019 ("r-assertive-properties" ,r-assertive-properties)
11020 ("r-assertive-types" ,r-assertive-types)))
11021 (home-page "https://bitbucket.org/richierocks/assertive.code")
11022 (synopsis "Assertions to check properties of code")
11023 (description
11024 "This package provides a set of predicates and assertions for checking
11025 the properties of code. This is mainly for use by other package developers
11026 who want to include run-time testing features in their own packages.")
11027 (license license:gpl3+)))
11028
11029 (define-public r-assertive-datetimes
11030 (package
11031 (name "r-assertive-datetimes")
11032 (version "0.0-2")
11033 (source
11034 (origin
11035 (method url-fetch)
11036 (uri (cran-uri "assertive.datetimes" version))
11037 (sha256
11038 (base32
11039 "00a98fx8p3pr3ckayh8wmxmm4rz01s67wah9697m92yci6pv3m78"))))
11040 (properties
11041 `((upstream-name . "assertive.datetimes")))
11042 (build-system r-build-system)
11043 (propagated-inputs
11044 `(("r-assertive-base" ,r-assertive-base)
11045 ("r-assertive-types" ,r-assertive-types)))
11046 (home-page "https://bitbucket.org/richierocks/assertive.datetimes")
11047 (synopsis "Assertions to check properties of dates and times")
11048 (description
11049 "This package provides a set of predicates and assertions for checking
11050 the properties of dates and times. This is mainly for use by other package
11051 developers who want to include run-time testing features in their own
11052 packages.")
11053 (license license:gpl3+)))
11054
11055 (define-public r-assertive-strings
11056 (package
11057 (name "r-assertive-strings")
11058 (version "0.0-3")
11059 (source
11060 (origin
11061 (method url-fetch)
11062 (uri (cran-uri "assertive.strings" version))
11063 (sha256
11064 (base32
11065 "0n6jrk88670g4ym0r8ii40a08a90z1xadj8wcryk8h0nl04dchfm"))))
11066 (properties
11067 `((upstream-name . "assertive.strings")))
11068 (build-system r-build-system)
11069 (propagated-inputs
11070 `(("r-assertive-base" ,r-assertive-base)
11071 ("r-assertive-types" ,r-assertive-types)
11072 ("r-stringi" ,r-stringi)))
11073 (home-page "https://bitbucket.org/richierocks/assertive.strings")
11074 (synopsis "Assertions to check properties of strings")
11075 (description
11076 "This package provides a set of predicates and assertions for checking
11077 the properties of strings. This is mainly for use by other package developers
11078 who want to include run-time testing features in their own packages.")
11079 (license license:gpl3+)))
11080
11081 (define-public r-assertive-data-us
11082 (package
11083 (name "r-assertive-data-us")
11084 (version "0.0-2")
11085 (source
11086 (origin
11087 (method url-fetch)
11088 (uri (cran-uri "assertive.data.us" version))
11089 (sha256
11090 (base32
11091 "1bgspn0sccmp9z7s7djvdvprgxlyc5vrxznp4zfjb79kwvgn83hq"))))
11092 (properties
11093 `((upstream-name . "assertive.data.us")))
11094 (build-system r-build-system)
11095 (propagated-inputs
11096 `(("r-assertive-base" ,r-assertive-base)
11097 ("r-assertive-strings" ,r-assertive-strings)))
11098 (home-page "https://bitbucket.org/richierocks/assertive.data.us")
11099 (synopsis "Assertions to check properties of strings")
11100 (description
11101 "This package provides a set of predicates and assertions for checking
11102 the properties of US-specific complex data types. This is mainly for use by
11103 other package developers who want to include run-time testing features in
11104 their own packages.")
11105 (license license:gpl3+)))
11106
11107 (define-public r-assertive-data-uk
11108 (package
11109 (name "r-assertive-data-uk")
11110 (version "0.0-2")
11111 (source
11112 (origin
11113 (method url-fetch)
11114 (uri (cran-uri "assertive.data.uk" version))
11115 (sha256
11116 (base32
11117 "1fzjvhwp7mwkqqix29khvs6zcrc82n6j4czvzzb473vyjyvdlj5b"))))
11118 (properties
11119 `((upstream-name . "assertive.data.uk")))
11120 (build-system r-build-system)
11121 (propagated-inputs
11122 `(("r-assertive-base" ,r-assertive-base)
11123 ("r-assertive-strings" ,r-assertive-strings)))
11124 (home-page "https://bitbucket.org/richierocks/assertive.data.uk")
11125 (synopsis "Assertions to check properties of strings")
11126 (description
11127 "This package provides a set of predicates and assertions for checking
11128 the properties of UK-specific complex data types. This is mainly for use by
11129 other package developers who want to include run-time testing features in
11130 their own packages.")
11131 (license license:gpl3+)))
11132
11133 (define-public r-assertive-data
11134 (package
11135 (name "r-assertive-data")
11136 (version "0.0-3")
11137 (source
11138 (origin
11139 (method url-fetch)
11140 (uri (cran-uri "assertive.data" version))
11141 (sha256
11142 (base32
11143 "00cvg2g36mdl8plrzx40m63qd55742mddqrchwy9n3c7mm4gn02s"))))
11144 (properties
11145 `((upstream-name . "assertive.data")))
11146 (build-system r-build-system)
11147 (propagated-inputs
11148 `(("r-assertive-base" ,r-assertive-base)
11149 ("r-assertive-strings" ,r-assertive-strings)))
11150 (home-page "https://bitbucket.org/richierocks/assertive.data")
11151 (synopsis "Assertions to check properties of data")
11152 (description
11153 "This package provides a set of predicates and assertions for checking
11154 the properties of (country independent) complex data types. This is mainly
11155 for use by other package developers who want to include run-time testing
11156 features in their own packages.")
11157 (license license:gpl3+)))
11158
11159 (define-public r-assertive
11160 (package
11161 (name "r-assertive")
11162 (version "0.3-5")
11163 (source
11164 (origin
11165 (method url-fetch)
11166 (uri (cran-uri "assertive" version))
11167 (sha256
11168 (base32
11169 "0blbbhlxcb5ffdxqxi62xs33ljiawh6s22a0pyvbbh79jf46rzr3"))))
11170 (build-system r-build-system)
11171 (propagated-inputs
11172 `(("r-assertive-base" ,r-assertive-base)
11173 ("r-assertive-code" ,r-assertive-code)
11174 ("r-assertive-data" ,r-assertive-data)
11175 ("r-assertive-data-uk" ,r-assertive-data-uk)
11176 ("r-assertive-data-us" ,r-assertive-data-us)
11177 ("r-assertive-datetimes" ,r-assertive-datetimes)
11178 ("r-assertive-files" ,r-assertive-files)
11179 ("r-assertive-matrices" ,r-assertive-matrices)
11180 ("r-assertive-models" ,r-assertive-models)
11181 ("r-assertive-numbers" ,r-assertive-numbers)
11182 ("r-assertive-properties" ,r-assertive-properties)
11183 ("r-assertive-reflection" ,r-assertive-reflection)
11184 ("r-assertive-sets" ,r-assertive-sets)
11185 ("r-assertive-strings" ,r-assertive-strings)
11186 ("r-assertive-types" ,r-assertive-types)
11187 ("r-knitr" ,r-knitr)))
11188 (home-page "https://bitbucket.org/richierocks/assertive")
11189 (synopsis "Readable check functions to ensure code integrity")
11190 (description
11191 "This package provides lots of predicates (@code{is_*} functions) to
11192 check the state of your variables, and assertions (@code{assert_*} functions)
11193 to throw errors if they aren't in the right form.")
11194 (license license:gpl3+)))
11195
11196 (define-public r-dotcall64
11197 (package
11198 (name "r-dotcall64")
11199 (version "1.0-0")
11200 (source
11201 (origin
11202 (method url-fetch)
11203 (uri (cran-uri "dotCall64" version))
11204 (sha256
11205 (base32
11206 "1b8p7m3w0m7bp977c6jz74xkd611cxg11j49yza59k5fp338scb9"))))
11207 (properties `((upstream-name . "dotCall64")))
11208 (build-system r-build-system)
11209 (native-inputs `(("gfortran" ,gfortran)))
11210 (home-page "https://git.math.uzh.ch/reinhard.furrer/dotCall64")
11211 (synopsis "Enhanced foreign function interface supporting long vectors")
11212 (description
11213 "This package provides @code{.C64()}, an enhanced version of @code{.C()}
11214 and @code{.Fortran()} from the R foreign function interface. @code{.C64()}
11215 supports long vectors, arguments of type 64-bit integer, and provides a
11216 mechanism to avoid unnecessary copies of read-only and write-only arguments.
11217 This makes it a convenient and fast interface to C/C++ and Fortran code.")
11218 (license license:gpl2+)))
11219
11220 (define-public r-spam
11221 (package
11222 (name "r-spam")
11223 (version "2.5-1")
11224 (source
11225 (origin
11226 (method url-fetch)
11227 (uri (cran-uri "spam" version))
11228 (sha256
11229 (base32 "0ry0a76cljlmilrzcriiizcidxyhq1i7i9bqhvl1qda81ld8hifi"))))
11230 (build-system r-build-system)
11231 (propagated-inputs
11232 `(("r-dotcall64" ,r-dotcall64)))
11233 (native-inputs `(("gfortran" ,gfortran)))
11234 (home-page "https://www.math.uzh.ch/pages/spam/")
11235 (synopsis "Sparse matrix algebra")
11236 (description
11237 "This package provides a set of functions for sparse matrix algebra.
11238 Differences with other sparse matrix packages are:
11239
11240 @enumerate
11241 @item it only supports (essentially) one sparse matrix format;
11242 @item it is based on transparent and simple structure(s);
11243 @item it is tailored for MCMC calculations within G(M)RF;
11244 @item and it is fast and scalable (with the extension package @code{spam64}).
11245 @end enumerate\n")
11246 ;; Either of these licenses
11247 (license (list license:bsd-3 license:lgpl2.0))))
11248
11249 (define-public r-fields
11250 (package
11251 (name "r-fields")
11252 (version "10.3")
11253 (source
11254 (origin
11255 (method url-fetch)
11256 (uri (cran-uri "fields" version))
11257 (sha256
11258 (base32 "12k97vfjlz5h8vynirnvik1nyj1iw25n8xl7awmx9mpd6wvgy2s9"))))
11259 (build-system r-build-system)
11260 (propagated-inputs
11261 `(("r-maps" ,r-maps)
11262 ("r-spam" ,r-spam)))
11263 (native-inputs
11264 `(("gfortran" ,gfortran)))
11265 (home-page "https://www.image.ucar.edu/fields")
11266 (synopsis "Tools for spatial data")
11267 (description
11268 "This is a package for curve, surface and function fitting with an
11269 emphasis on splines, spatial data and spatial statistics. The major methods
11270 include cubic, and thin plate splines, Kriging, and compactly supported
11271 covariance functions for large data sets.")
11272 (license license:gpl2+)))
11273
11274 (define-public r-spatialextremes
11275 (package
11276 (name "r-spatialextremes")
11277 (version "2.0-8")
11278 (source
11279 (origin
11280 (method url-fetch)
11281 (uri (cran-uri "SpatialExtremes" version))
11282 (sha256
11283 (base32
11284 "0r2byz5xxc46zqnigdax28q7446ibmzmsmi10lmm2hdks3ml6sl3"))))
11285 (properties
11286 `((upstream-name . "SpatialExtremes")))
11287 (build-system r-build-system)
11288 (propagated-inputs
11289 `(("r-fields" ,r-fields)
11290 ("r-maps" ,r-maps)))
11291 (home-page "http://spatialextremes.r-forge.r-project.org/")
11292 (synopsis "Modelling spatial extremes")
11293 (description
11294 "This package provides tools for the statistical modelling of spatial
11295 extremes using max-stable processes, copula or Bayesian hierarchical models.
11296 More precisely, this package allows (conditional) simulations from various
11297 parametric max-stable models, analysis of the extremal spatial dependence, the
11298 fitting of such processes using composite likelihoods or least square (simple
11299 max-stable processes only), model checking and selection and prediction.")
11300 (license license:gpl2+)))
11301
11302 (define-public r-drc
11303 (package
11304 (name "r-drc")
11305 (version "3.0-1")
11306 (source
11307 (origin
11308 (method url-fetch)
11309 (uri (cran-uri "drc" version))
11310 (sha256
11311 (base32
11312 "0c8xn8ripzq270hy8d16fcnx02l02alddznd7fqwk3jyi6113h1y"))))
11313 (build-system r-build-system)
11314 (propagated-inputs
11315 `(("r-car" ,r-car)
11316 ("r-gtools" ,r-gtools)
11317 ("r-mass" ,r-mass)
11318 ("r-multcomp" ,r-multcomp)
11319 ("r-plotrix" ,r-plotrix)
11320 ("r-scales" ,r-scales)))
11321 (home-page "https://cran.r-project.org/web/packages/drc")
11322 (synopsis "Analysis of dose-response curves")
11323 (description
11324 "This package provides a suite of flexible and versatile model fitting
11325 and after-fitting functions for the analysis of dose-response data.")
11326 (license license:gpl2+)))
11327
11328 (define-public r-rmeta
11329 (package
11330 (name "r-rmeta")
11331 (version "3.0")
11332 (source
11333 (origin
11334 (method url-fetch)
11335 (uri (cran-uri "rmeta" version))
11336 (sha256
11337 (base32
11338 "0vkbnxp579v8zmcv1isdbzj5swpr6fq17zwparxcvzswjc2x9ydr"))))
11339 (build-system r-build-system)
11340 (home-page "https://cran.r-project.org/web/packages/rmeta")
11341 (synopsis "Tools for meta-analysis")
11342 (description
11343 "This package provides functions for simple fixed and random effects
11344 meta-analysis for two-sample comparisons and cumulative meta-analyses. It
11345 draws standard summary plots, funnel plots, and computes summaries and tests
11346 for association and heterogeneity.")
11347 (license license:gpl2)))
11348
11349 (define-public r-bootstrap
11350 (package
11351 (name "r-bootstrap")
11352 (version "2019.6")
11353 (source
11354 (origin
11355 (method url-fetch)
11356 (uri (cran-uri "bootstrap" version))
11357 (sha256
11358 (base32
11359 "1546jqhhw5h177ii8jkdikyd26rv6gwkav816np1zks4p7zgsljj"))))
11360 (build-system r-build-system)
11361 (native-inputs `(("gfortran" ,gfortran)))
11362 (home-page "https://cran.r-project.org/web/packages/bootstrap")
11363 (synopsis "Functions for the book \"An Introduction to the Bootstrap\"")
11364 (description
11365 "This package provides software and data for the book \"An Introduction
11366 to the Bootstrap\" by B. Efron and R. Tibshirani, 1993, Chapman and Hall.
11367 This package is primarily provided for projects already based on it, and for
11368 support of the book. New projects should preferentially use the recommended
11369 package \"boot\".")
11370 (license license:bsd-3)))
11371
11372 (define-public r-survivalroc
11373 (package
11374 (name "r-survivalroc")
11375 (version "1.0.3")
11376 (source
11377 (origin
11378 (method url-fetch)
11379 (uri (cran-uri "survivalROC" version))
11380 (sha256
11381 (base32
11382 "0wnd65ff5w679hxa1zrpfrx9qg47q21pjxppsga6m3h4iq1yfj8l"))))
11383 (properties `((upstream-name . "survivalROC")))
11384 (build-system r-build-system)
11385 (home-page "https://cran.r-project.org/web/packages/survivalROC")
11386 (synopsis "Time-dependent ROC curve estimation from censored survival data")
11387 (description
11388 "Compute time-dependent ROC curve from censored survival data using
11389 Kaplan-Meier (KM) or Nearest Neighbor Estimation (NNE) method of Heagerty,
11390 Lumley & Pepe (Biometrics, Vol 56 No 2, 2000, PP 337-344)")
11391 (license license:gpl2+)))
11392
11393 (define-public r-longitudinal
11394 (package
11395 (name "r-longitudinal")
11396 (version "1.1.12")
11397 (source
11398 (origin
11399 (method url-fetch)
11400 (uri (cran-uri "longitudinal" version))
11401 (sha256
11402 (base32
11403 "1d83ws28nxi3kw5lgd5n5y7865djq7ky72fw3ddi1fkkhg1r9y6l"))))
11404 (build-system r-build-system)
11405 (propagated-inputs `(("r-corpcor" ,r-corpcor)))
11406 (home-page "http://strimmerlab.org/software/longitudinal/")
11407 (synopsis "Analysis of multiple time course data")
11408 (description
11409 "This package contains general data structures and functions for
11410 longitudinal data with multiple variables, repeated measurements, and
11411 irregularly spaced time points. It also implements a shrinkage estimator of
11412 dynamical correlation and dynamical covariance.")
11413 (license license:gpl3+)))
11414
11415 (define-public r-genenet
11416 (package
11417 (name "r-genenet")
11418 (version "1.2.14")
11419 (source
11420 (origin
11421 (method url-fetch)
11422 (uri (cran-uri "GeneNet" version))
11423 (sha256
11424 (base32
11425 "0cdhrj15rz0w0pyw3r8mikrzsdh95y5i1c0pa3cn0c2bjnjx3x3n"))))
11426 (properties `((upstream-name . "GeneNet")))
11427 (build-system r-build-system)
11428 (propagated-inputs
11429 `(("r-corpcor" ,r-corpcor)
11430 ("r-fdrtool" ,r-fdrtool)
11431 ("r-longitudinal" ,r-longitudinal)))
11432 (home-page "http://strimmerlab.org/software/genenet/")
11433 (synopsis "Modeling and inferring gene networks")
11434 (description
11435 "This package analyzes gene expression (time series) data with focus on
11436 the inference of gene networks. In particular, GeneNet implements the methods
11437 of Schaefer and Strimmer (2005a,b,c) and Opgen-Rhein and Strimmer (2006, 2007)
11438 for learning large-scale gene association networks (including assignment of
11439 putative directions).")
11440 (license license:gpl3+)))
11441
11442 (define-public r-rbamtools
11443 (package
11444 (name "r-rbamtools")
11445 (version "2.16.17")
11446 (source
11447 (origin
11448 (method url-fetch)
11449 (uri (cran-uri "rbamtools" version))
11450 (sha256
11451 (base32
11452 "0qj37ljdva3v29s01dkrbg31mcfzy3bl145cp40d54v4h9xhcghc"))))
11453 (build-system r-build-system)
11454 (inputs `(("zlib" ,zlib)))
11455 (propagated-inputs
11456 `(("r-refgenome" ,r-refgenome)))
11457 (home-page "https://cran.r-project.org/web/packages/rbamtools")
11458 (synopsis "Read and write BAM (binary alignment) files")
11459 (description
11460 "This package provides an R interface to functions of the SAMtools
11461 library.")
11462 (license license:artistic2.0)))
11463
11464 (define-public r-protviz
11465 (package
11466 (name "r-protviz")
11467 (version "0.6.3")
11468 (source
11469 (origin
11470 (method url-fetch)
11471 (uri (cran-uri "protViz" version))
11472 (sha256
11473 (base32
11474 "1ldciqh3f43xr9663yyhd9r6qwrg4c4vmkprlcancbnd460wakg7"))))
11475 (properties `((upstream-name . "protViz")))
11476 (build-system r-build-system)
11477 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
11478 (home-page "https://github.com/protViz/protViz/")
11479 (synopsis "Visualizing and analyzing mass spectrometry data in proteomics")
11480 (description
11481 "This package helps with quality checks, visualizations and analysis of
11482 mass spectrometry data, coming from proteomics experiments. The package is
11483 developed, tested and used at the Functional Genomics Center Zurich, where it
11484 is used mainly for prototyping, teaching, and having fun with proteomics data.
11485 But it can also be used to do data analysis for small scale data sets.")
11486 (license license:gpl3)))
11487
11488 (define-public r-cmprsk
11489 (package
11490 (name "r-cmprsk")
11491 (version "2.2-9")
11492 (source
11493 (origin
11494 (method url-fetch)
11495 (uri (cran-uri "cmprsk" version))
11496 (sha256
11497 (base32 "0xhgfg5b4i9skkaxp7gzkafgg5bqs5q1rp4hpw2jjmykg2nifn99"))))
11498 (build-system r-build-system)
11499 (propagated-inputs
11500 `(("r-survival" ,r-survival)))
11501 (native-inputs
11502 `(("gfortran" ,gfortran)))
11503 (home-page "https://cran.r-project.org/web/packages/cmprsk")
11504 (synopsis "Subdistribution analysis of competing risks")
11505 (description
11506 "This package provides tool for estimation, testing and regression
11507 modeling of subdistribution functions in competing risks, as described in
11508 Gray (1988), A class of K-sample tests for comparing the cumulative incidence
11509 of a competing risk, Ann. Stat. 16:1141-1154, and Fine JP and Gray RJ (1999),
11510 A proportional hazards model for the subdistribution of a competing risk,
11511 JASA, 94:496-509.")
11512 (license license:gpl2+)))
11513
11514 (define-public r-etm
11515 (package
11516 (name "r-etm")
11517 (version "1.0.5.1")
11518 (source
11519 (origin
11520 (method url-fetch)
11521 (uri (cran-uri "etm" version))
11522 (sha256
11523 (base32
11524 "0m41pm277sd50pharigcqzr1a2g92wnmdf6fcab6fx16ia2fzrm7"))))
11525 (build-system r-build-system)
11526 (propagated-inputs
11527 `(("r-data-table" ,r-data-table)
11528 ("r-lattice" ,r-lattice)
11529 ("r-rcpp" ,r-rcpp)
11530 ("r-rcpparmadillo" ,r-rcpparmadillo)
11531 ("r-survival" ,r-survival)))
11532 (home-page "https://cran.r-project.org/web/packages/etm")
11533 (synopsis "Empirical transition matrix")
11534 (description
11535 "The @dfn{empirical transition matrix} (etm) package estimates
11536 the matrix of transition probabilities for any time-inhomogeneous multistate
11537 model with finite state space using the Aalen-Johansen estimator.")
11538 (license license:expat)))
11539
11540 (define-public r-epi
11541 (package
11542 (name "r-epi")
11543 (version "2.40")
11544 (source
11545 (origin
11546 (method url-fetch)
11547 (uri (cran-uri "Epi" version))
11548 (sha256
11549 (base32
11550 "046y10vwks5y84pzccmrn6d4pd6qz70imvp1hw5ywp8fnwzfh4g5"))))
11551 (properties `((upstream-name . "Epi")))
11552 (build-system r-build-system)
11553 (propagated-inputs
11554 `(("r-cmprsk" ,r-cmprsk)
11555 ("r-data-table" ,r-data-table)
11556 ("r-etm" ,r-etm)
11557 ("r-mass" ,r-mass)
11558 ("r-matrix" ,r-matrix)
11559 ("r-mgcv" ,r-mgcv)
11560 ("r-numderiv" ,r-numderiv)
11561 ("r-plyr" ,r-plyr)
11562 ("r-survival" ,r-survival)
11563 ("r-zoo" ,r-zoo)))
11564 (home-page "https://BendixCarstensen.com/Epi/")
11565 (synopsis "Statistical analysis in epidemiology")
11566 (description
11567 "This package provides functions for demographic and epidemiological
11568 analysis in the Lexis diagram, i.e. register and cohort follow-up data, in
11569 particular representation, manipulation and simulation of multistate data -
11570 the Lexis suite of functions, which includes interfaces to the @code{mstate},
11571 @code{etm} and @code{cmprsk} packages. It also contains functions for
11572 Age-Period-Cohort and Lee-Carter modeling and a function for interval censored
11573 data and some useful functions for tabulation and plotting, as well as a
11574 number of epidemiological data sets.")
11575 (license license:gpl2)))
11576
11577 (define-public r-ppls
11578 (package
11579 (name "r-ppls")
11580 (version "1.6-1.1")
11581 (source
11582 (origin
11583 (method url-fetch)
11584 (uri (cran-uri "ppls" version))
11585 (sha256
11586 (base32
11587 "1zyrisy3c4cz896j1bjh61sf57wdl9p8ywdq268cl819szfq78mx"))))
11588 (build-system r-build-system)
11589 (propagated-inputs `(("r-mass" ,r-mass)))
11590 (home-page "https://cran.r-project.org/web/packages/ppls")
11591 (synopsis "Penalized partial least squares")
11592 (description
11593 "This package contains linear and nonlinear regression methods based on
11594 partial least squares and penalization techniques. Model parameters are
11595 selected via cross-validation, and confidence intervals ans tests for the
11596 regression coefficients can be conducted via jackknifing.")
11597 (license license:gpl2+)))
11598
11599 (define-public r-huge
11600 (package
11601 (name "r-huge")
11602 (version "1.3.4.1")
11603 (source
11604 (origin
11605 (method url-fetch)
11606 (uri (cran-uri "huge" version))
11607 (sha256
11608 (base32 "11m80dnaxqw5v006q6kvhndl2y5ih5553fcqg4jcaljd8sp9xvvq"))))
11609 (build-system r-build-system)
11610 (propagated-inputs
11611 `(("r-igraph" ,r-igraph)
11612 ("r-mass" ,r-mass)
11613 ("r-matrix" ,r-matrix)
11614 ("r-rcpp" ,r-rcpp)
11615 ("r-rcppeigen" ,r-rcppeigen)))
11616 (home-page "https://cran.r-project.org/web/packages/huge")
11617 (synopsis "High-dimensional undirected graph estimation")
11618 (description
11619 "This package provides a general framework for high-dimensional
11620 undirected graph estimation. It integrates data preprocessing, neighborhood
11621 screening, graph estimation, and model selection techniques into a pipeline.")
11622 (license license:gpl2)))
11623
11624 (define-public r-parcor
11625 (package
11626 (name "r-parcor")
11627 (version "0.2-6")
11628 (source
11629 (origin
11630 (method url-fetch)
11631 (uri (cran-uri "parcor" version))
11632 (sha256
11633 (base32
11634 "0vgs6k92vdr0cmb8cwbv2ff6qavw30agskfd8bfh17hsskrisvx0"))))
11635 (build-system r-build-system)
11636 (propagated-inputs
11637 `(("r-epi" ,r-epi)
11638 ("r-genenet" ,r-genenet)
11639 ("r-glmnet" ,r-glmnet)
11640 ("r-mass" ,r-mass)
11641 ("r-ppls" ,r-ppls)))
11642 (home-page "https://cran.r-project.org/web/packages/parcor")
11643 (synopsis "Regularized estimation of partial correlation matrices")
11644 (description
11645 "This package estimates the matrix of partial correlations based on
11646 different regularized regression methods: lasso, adaptive lasso, PLS, and
11647 Ridge Regression. In addition, the package provides model selection for
11648 lasso, adaptive lasso and Ridge regression based on cross-validation.")
11649 (license license:gpl2+)))
11650
11651 (define-public r-mcmc
11652 (package
11653 (name "r-mcmc")
11654 (version "0.9-7")
11655 (source
11656 (origin
11657 (method url-fetch)
11658 (uri (cran-uri "mcmc" version))
11659 (sha256
11660 (base32
11661 "0q42m8ab7b6bxhns494ksjdss5f3c5m2jjfdlfj6fk1nz7ax7i5p"))))
11662 (build-system r-build-system)
11663 (home-page "https://www.stat.umn.edu/geyer/mcmc/")
11664 (synopsis "Markov chain Monte Carlo")
11665 (description
11666 "This package simulates continuous distributions of random vectors using
11667 @dfn{Markov chain Monte Carlo} (MCMC). Users specify the distribution by an R
11668 function that evaluates the log unnormalized density. Algorithms are random
11669 walk Metropolis algorithm (function @code{metrop}), simulated
11670 tempering (function @code{temper}), and morphometric random walk
11671 Metropolis (function @code{morph.metrop}), which achieves geometric ergodicity
11672 by change of variable.")
11673 (license license:expat)))
11674
11675 (define-public r-listenv
11676 (package
11677 (name "r-listenv")
11678 (version "0.8.0")
11679 (source
11680 (origin
11681 (method url-fetch)
11682 (uri (cran-uri "listenv" version))
11683 (sha256
11684 (base32
11685 "0ps8bk7zlhbviawrw7vw25skjq81hkk3ijyi6g74dmfqy8zsyapx"))))
11686 (build-system r-build-system)
11687 (native-inputs
11688 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
11689 (home-page "https://github.com/HenrikBengtsson/listenv")
11690 (synopsis "Environments behaving (almost) as lists")
11691 (description
11692 "This package implements list environments. List environments are
11693 environments that have list-like properties. For instance, the elements of a
11694 list environment are ordered and can be accessed and iterated over using index
11695 subsetting.")
11696 (license license:lgpl2.1+)))
11697
11698 (define-public r-globals
11699 (package
11700 (name "r-globals")
11701 (version "0.12.5")
11702 (source
11703 (origin
11704 (method url-fetch)
11705 (uri (cran-uri "globals" version))
11706 (sha256
11707 (base32
11708 "1ha8iasgijp4q3v2b0b17y1wh7cd3nvzd9b03w49qm2bidkaf68m"))))
11709 (build-system r-build-system)
11710 (propagated-inputs
11711 `(("r-codetools" ,r-codetools)))
11712 (home-page "https://github.com/HenrikBengtsson/globals")
11713 (synopsis "Identify global objects in R expressions")
11714 (description
11715 "This package provides tools to identify global (\"unknown\" or \"free\")
11716 objects in R expressions by code inspection using various strategies, e.g.
11717 conservative or liberal. The objective of this package is to make it as
11718 simple as possible to identify global objects for the purpose of exporting
11719 them in distributed compute environments.")
11720 (license license:lgpl2.1+)))
11721
11722 (define-public r-future
11723 (package
11724 (name "r-future")
11725 (version "1.16.0")
11726 (source
11727 (origin
11728 (method url-fetch)
11729 (uri (cran-uri "future" version))
11730 (sha256
11731 (base32
11732 "1xaqh0b2knf5bp23mc0kriq0iqhqna31q3b7d960piqjhzrb03dm"))))
11733 (build-system r-build-system)
11734 (propagated-inputs
11735 `(("r-digest" ,r-digest)
11736 ("r-globals" ,r-globals)
11737 ("r-listenv" ,r-listenv)))
11738 (native-inputs
11739 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
11740 (home-page "https://github.com/HenrikBengtsson/future")
11741 (synopsis "Unified parallel and distributed processing in R")
11742 (description
11743 "The purpose of this package is to provide a lightweight and unified
11744 Future API for sequential and parallel processing of R expression via futures.
11745 This package implements sequential, multicore, multisession, and cluster
11746 futures. With these, R expressions can be evaluated on the local machine, in
11747 parallel a set of local machines, or distributed on a mix of local and remote
11748 machines. Extensions to this package implement additional backends for
11749 processing futures via compute cluster schedulers etc. Because of its unified
11750 API, there is no need to modify any code in order to switch from sequential on
11751 the local machine to, say, distributed processing on a remote compute cluster.")
11752 (license license:lgpl2.1+)))
11753
11754 (define-public r-future-apply
11755 (package
11756 (name "r-future-apply")
11757 (version "1.4.0")
11758 (source
11759 (origin
11760 (method url-fetch)
11761 (uri (cran-uri "future.apply" version))
11762 (sha256
11763 (base32
11764 "1kgq6dv96hdy35kysqkn606nj7s9dp4ibgpm6n46gqhc5n75lzkk"))))
11765 (properties `((upstream-name . "future.apply")))
11766 (build-system r-build-system)
11767 (propagated-inputs
11768 `(("r-future" ,r-future)
11769 ("r-globals" ,r-globals)))
11770 (native-inputs
11771 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
11772 (home-page "https://github.com/HenrikBengtsson/future.apply")
11773 (synopsis "Apply function to elements in parallel using futures")
11774 (description
11775 "This package provides implementations of @code{apply()},
11776 @code{eapply()}, @code{lapply()}, @code{Map()}, @code{mapply()},
11777 @code{replicate()}, @code{sapply()}, @code{tapply()}, and @code{vapply()} that
11778 can be resolved using any future-supported backend, e.g. parallel on the local
11779 machine or distributed on a compute cluster.")
11780 (license license:gpl2+)))
11781
11782 (define-public r-rsvd
11783 (package
11784 (name "r-rsvd")
11785 (version "1.0.3")
11786 (source
11787 (origin
11788 (method url-fetch)
11789 (uri (cran-uri "rsvd" version))
11790 (sha256
11791 (base32
11792 "1fvrw46fl5xb2akaa4mp8nja4h7nn4bdhnjdrk22fsdfqc7hwmhk"))))
11793 (build-system r-build-system)
11794 (propagated-inputs
11795 `(("r-matrix" ,r-matrix)))
11796 (home-page "https://github.com/erichson/rSVD")
11797 (synopsis "Randomized singular value decomposition")
11798 (description
11799 "Low-rank matrix decompositions are fundamental tools and widely used for
11800 data analysis, dimension reduction, and data compression. Classically, highly
11801 accurate deterministic matrix algorithms are used for this task. However, the
11802 emergence of large-scale data has severely challenged our computational
11803 ability to analyze big data. The concept of randomness has been demonstrated
11804 as an effective strategy to quickly produce approximate answers to familiar
11805 problems such as the @dfn{singular value decomposition} (SVD). This package
11806 provides several randomized matrix algorithms such as the randomized singular
11807 value decomposition (@code{rsvd}), randomized principal component
11808 analysis (@code{rpca}), randomized robust principal component
11809 analysis (@code{rrpca}), randomized interpolative decomposition (@code{rid}),
11810 and the randomized CUR decomposition (@code{rcur}). In addition several plot
11811 functions are provided.")
11812 (license license:gpl3+)))
11813
11814 (define-public r-sloop
11815 (package
11816 (name "r-sloop")
11817 (version "1.0.1")
11818 (source
11819 (origin
11820 (method url-fetch)
11821 (uri (cran-uri "sloop" version))
11822 (sha256
11823 (base32
11824 "00fk5fr5zsk2qxc1kfhmshhjxgnamm3401089sx8m2l529zd6r8j"))))
11825 (build-system r-build-system)
11826 (propagated-inputs
11827 `(("r-codetools" ,r-codetools)
11828 ("r-crayon" ,r-crayon)
11829 ("r-purrr" ,r-purrr)
11830 ("r-rlang" ,r-rlang)
11831 ("r-tibble" ,r-tibble)))
11832 (home-page "https://github.com/r-lib/sloop")
11833 (synopsis "Helpers for object-oriented programming in R")
11834 (description
11835 "This package provides a collection of helper functions designed to
11836 help you to better understand object oriented programming in R, particularly
11837 using @code{S3}.")
11838 (license license:gpl3)))
11839
11840 (define-public r-capushe
11841 (package
11842 (name "r-capushe")
11843 (version "1.1.1")
11844 (source
11845 (origin
11846 (method url-fetch)
11847 (uri (cran-uri "capushe" version))
11848 (sha256
11849 (base32
11850 "1aa76ir1kp67hiz7dr60azyc71yzslshyc640fjh0fpw0sp5kwbc"))))
11851 (build-system r-build-system)
11852 (propagated-inputs `(("r-mass" ,r-mass)))
11853 (home-page "https://cran.r-project.org/web/packages/capushe/index.html")
11854 (synopsis "Calibrating penalties using slope heuristics")
11855 (description
11856 "This package provides tools for the calibration of penalized criteria
11857 for model selection. The calibration methods available are based on the slope
11858 heuristics.")
11859 (license license:gpl2+)))
11860
11861 (define-public r-dorng
11862 (package
11863 (name "r-dorng")
11864 (version "1.8.2")
11865 (source
11866 (origin
11867 (method url-fetch)
11868 (uri (cran-uri "doRNG" version))
11869 (sha256
11870 (base32
11871 "1jff27zzrvd1fd61x2m9468h8xn3s1c9f6wibviy5zdhj5dx9s9k"))))
11872 (properties `((upstream-name . "doRNG")))
11873 (build-system r-build-system)
11874 (propagated-inputs
11875 `(("r-foreach" ,r-foreach)
11876 ("r-iterators" ,r-iterators)
11877 ("r-rngtools" ,r-rngtools)))
11878 (home-page "https://renozao.github.io/doRNG/")
11879 (synopsis "Generic reproducible parallel backend for foreach loops")
11880 (description
11881 "This package provides functions to perform reproducible parallel
11882 @code{foreach} loops, using independent random streams as generated by
11883 L'Ecuyer's combined multiple-recursive generator. It enables to easily
11884 convert standard @code{%dopar%} loops into fully reproducible loops,
11885 independently of the number of workers, the task scheduling strategy, or the
11886 chosen parallel environment and associated foreach backend.")
11887 (license license:gpl2+)))
11888
11889 (define-public r-blockmodeling
11890 (package
11891 (name "r-blockmodeling")
11892 (version "0.3.6")
11893 (source
11894 (origin
11895 (method url-fetch)
11896 (uri (cran-uri "blockmodeling" version))
11897 (sha256
11898 (base32
11899 "12paf76l3wlxad14bkxn37lw9rg6ka473m86wlcf3yhriw8kbaiz"))))
11900 (build-system r-build-system)
11901 (propagated-inputs
11902 `(("r-matrix" ,r-matrix)))
11903 (native-inputs `(("gfortran" ,gfortran)))
11904 (home-page "https://cran.r-project.org/web/packages/blockmodeling")
11905 (synopsis "Generalized and classical blockmodeling of valued networks")
11906 (description
11907 "This package is primarily meant as an implementation of generalized
11908 blockmodeling for valued networks. In addition, measures of similarity or
11909 dissimilarity based on structural equivalence and regular equivalence (REGE
11910 algorithms) can be computed and partitioned matrices can be plotted.")
11911 (license license:gpl2+)))
11912
11913 (define-public r-upsetr
11914 (package
11915 (name "r-upsetr")
11916 (version "1.4.0")
11917 (source
11918 (origin
11919 (method url-fetch)
11920 (uri (cran-uri "UpSetR" version))
11921 (sha256
11922 (base32
11923 "007i0njnjjy7vbrxabwav7a1kk2n0hn2mkvqsdzzfk10ckp5y7im"))))
11924 (properties `((upstream-name . "UpSetR")))
11925 (build-system r-build-system)
11926 (propagated-inputs
11927 `(("r-ggplot2" ,r-ggplot2)
11928 ("r-gridextra" ,r-gridextra)
11929 ("r-plyr" ,r-plyr)
11930 ("r-scales" ,r-scales)))
11931 (home-page "https://github.com/hms-dbmi/UpSetR")
11932 (synopsis "Visualize intersecting sets")
11933 (description
11934 "This package provides a more scalable alternative to Venn and Euler
11935 diagrams for visualizing intersecting sets. Create visualizations of
11936 intersecting sets using a novel matrix design, along with visualizations of
11937 several common set, element and attribute related tasks.")
11938 (license license:expat)))
11939
11940 ;; This package includes a JavaScript file, which is not minified. When
11941 ;; upgrading please check that there are no new minified JavaScript files.
11942 (define-public r-shinybs
11943 (package
11944 (name "r-shinybs")
11945 (version "0.61")
11946 (source
11947 (origin
11948 (method url-fetch)
11949 (uri (cran-uri "shinyBS" version))
11950 (sha256
11951 (base32
11952 "0rhim4mbp4x9vvm7xkmpl7mhb9qd1gr96cr4dv330v863ra2kgji"))))
11953 (properties `((upstream-name . "shinyBS")))
11954 (build-system r-build-system)
11955 ;; The tests spawn Shiny browser apps. They cannot be run
11956 ;; non-interactively.
11957 (arguments '(#:tests? #f))
11958 (propagated-inputs
11959 `(("r-htmltools" ,r-htmltools)
11960 ("r-shiny" ,r-shiny)))
11961 (home-page "https://ebailey78.github.io/shinyBS/")
11962 (synopsis "Twitter Bootstrap components for Shiny")
11963 (description
11964 "This package adds additional Twitter Bootstrap components to Shiny.")
11965 (license license:gpl3)))
11966
11967 (define-public r-outliers
11968 (package
11969 (name "r-outliers")
11970 (version "0.14")
11971 (source
11972 (origin
11973 (method url-fetch)
11974 (uri (cran-uri "outliers" version))
11975 (sha256
11976 (base32
11977 "0vcqfqmmv4yblyp3s6bd25r49pxb7hjzipiic5a82924nqfqzkmn"))))
11978 (build-system r-build-system)
11979 (home-page "https://cran.r-project.org/web/packages/outliers/index.html")
11980 (synopsis "Tests for outliers")
11981 (description
11982 "This package provides a collection of some tests commonly used for
11983 identifying outliers.")
11984 (license license:gpl2+)))
11985
11986 (define-public r-bayesm
11987 (package
11988 (name "r-bayesm")
11989 (version "3.1-4")
11990 (source
11991 (origin
11992 (method url-fetch)
11993 (uri (cran-uri "bayesm" version))
11994 (sha256
11995 (base32 "154glks7rsjkza0sfi1kj7wj727py9sl1ba6sswflwmwc9n226q6"))))
11996 (build-system r-build-system)
11997 (propagated-inputs
11998 `(("r-rcpp" ,r-rcpp)
11999 ("r-rcpparmadillo" ,r-rcpparmadillo)))
12000 (home-page "http://www.perossi.org/home/bsm-1")
12001 (synopsis "Bayesian inference for marketing/micro-econometrics")
12002 (description
12003 "This package covers many important models used in marketing and
12004 micro-econometrics applications, including Bayes Regression (univariate or
12005 multivariate dep var), Bayes Seemingly Unrelated Regression (SUR), Binary and
12006 Ordinal Probit, Multinomial Logit (MNL) and Multinomial Probit (MNP),
12007 Multivariate Probit, Negative Binomial (Poisson) Regression, Multivariate
12008 Mixtures of Normals (including clustering), Dirichlet Process Prior Density
12009 Estimation with normal base, Hierarchical Linear Models with normal prior and
12010 covariates, Hierarchical Linear Models with a mixture of normals prior and
12011 covariates, Hierarchical Multinomial Logits with a mixture of normals prior
12012 and covariates, Hierarchical Multinomial Logits with a Dirichlet Process prior
12013 and covariates, Hierarchical Negative Binomial Regression Models, Bayesian
12014 analysis of choice-based conjoint data, Bayesian treatment of linear
12015 instrumental variables models, Analysis of Multivariate Ordinal survey data
12016 with scale usage heterogeneity, and Bayesian Analysis of Aggregate Random
12017 Coefficient Logit Models.")
12018 (license license:gpl2+)))
12019
12020 (define-public r-tensora
12021 (package
12022 (name "r-tensora")
12023 (version "0.36.1")
12024 (source
12025 (origin
12026 (method url-fetch)
12027 (uri (cran-uri "tensorA" version))
12028 (sha256
12029 (base32
12030 "176hjy3bvg3in62r97wxbhq187sjz6c1gwy9x6spaxl6k4my3zy7"))))
12031 (properties `((upstream-name . "tensorA")))
12032 (build-system r-build-system)
12033 (home-page "http://www.stat.boogaart.de/tensorA")
12034 (synopsis "Advanced tensor arithmetic with named indices")
12035 (description
12036 "This package provides convenience functions for advanced linear algebra
12037 with tensors and computation with datasets of tensors on a higher level
12038 abstraction. It includes Einstein and Riemann summing conventions, dragging,
12039 co- and contravariate indices, and parallel computations on sequences of
12040 tensors.")
12041 (license license:gpl2+)))
12042
12043 (define-public r-rarpack
12044 (package
12045 (name "r-rarpack")
12046 (version "0.11-0")
12047 (source
12048 (origin
12049 (method url-fetch)
12050 (uri (cran-uri "rARPACK" version))
12051 (sha256
12052 (base32
12053 "12h2y46xcfldhjdmm960swgn9b23zvkj5vg2bi42s9qxwgi02d63"))))
12054 (properties `((upstream-name . "rARPACK")))
12055 (build-system r-build-system)
12056 (propagated-inputs `(("r-rspectra" ,r-rspectra)))
12057 (home-page "https://github.com/yixuan/rARPACK")
12058 (synopsis "Solvers for large scale eigenvalue and SVD problems")
12059 (description
12060 "This package was previously an R wrapper of the ARPACK library, and now
12061 a shell of the R package RSpectra, an R interface to the Spectra library for
12062 solving large scale eigenvalue/vector problems. The current version of
12063 rARPACK simply imports and exports the functions provided by RSpectra. New
12064 users of rARPACK are advised to switch to the RSpectra package.")
12065 (license license:bsd-3)))
12066
12067 (define-public r-compositions
12068 (package
12069 (name "r-compositions")
12070 (version "1.40-4")
12071 (source
12072 (origin
12073 (method url-fetch)
12074 (uri (cran-uri "compositions" version))
12075 (sha256
12076 (base32
12077 "0z40llyij3cc80ac1vzzrpykk6ysp89bn6dyyh40fbnc4anwx69a"))))
12078 (build-system r-build-system)
12079 (propagated-inputs
12080 `(("r-bayesm" ,r-bayesm)
12081 ("r-robustbase" ,r-robustbase)
12082 ("r-tensora" ,r-tensora)))
12083 (home-page "http://www.stat.boogaart.de/compositions")
12084 (synopsis "Compositional data analysis")
12085 (description
12086 "This package provides functions for the consistent analysis of
12087 compositional data (e.g. portions of substances) and positive
12088 numbers (e.g. concentrations).")
12089 (license license:gpl2+)))
12090
12091 (define-public r-cobs
12092 (package
12093 (name "r-cobs")
12094 (version "1.3-4")
12095 (source
12096 (origin
12097 (method url-fetch)
12098 (uri (cran-uri "cobs" version))
12099 (sha256
12100 (base32
12101 "0hiw5smk6kgk0gb9840kcqkhkybl7n30s77xhjc395x09izbgix1"))))
12102 (build-system r-build-system)
12103 (propagated-inputs
12104 `(("r-quantreg" ,r-quantreg)
12105 ("r-sparsem" ,r-sparsem)))
12106 (home-page "https://cran.r-project.org/web/packages/cobs")
12107 (synopsis "Constrained B-Splines (sparse matrix based)")
12108 (description
12109 "This package provides qualitatively constrained (regression) smoothing
12110 splines via linear programming and sparse matrices.")
12111 (license license:gpl2+)))
12112
12113 (define-public r-drimpute
12114 (package
12115 (name "r-drimpute")
12116 (version "1.0")
12117 (source
12118 (origin
12119 (method url-fetch)
12120 (uri (cran-uri "DrImpute" version))
12121 (sha256
12122 (base32
12123 "1adzarrwqb282pqgx2yqswp9rpwd1naxsmar54kddr6qyd6b923b"))))
12124 (properties `((upstream-name . "DrImpute")))
12125 (build-system r-build-system)
12126 (propagated-inputs
12127 `(("r-rcpp" ,r-rcpp)
12128 ("r-rcpparmadillo" ,r-rcpparmadillo)))
12129 (home-page "https://github.com/ikwak2/DrImpute")
12130 (synopsis "Imputing dropout events in single-cell RNA-Seq data")
12131 (description
12132 "This is an R package for imputing dropout events. Many statistical
12133 methods in cell type identification, visualization and lineage reconstruction
12134 do not account for dropout events. DrImpute can improve the performance of
12135 such software by imputing dropout events.")
12136 (license license:gpl3)))
12137
12138 (define-public r-gamlss-dist
12139 (package
12140 (name "r-gamlss-dist")
12141 (version "5.1-6")
12142 (source
12143 (origin
12144 (method url-fetch)
12145 (uri (cran-uri "gamlss.dist" version))
12146 (sha256
12147 (base32 "1p904x0b07z4amaqdn2xhs7qzbq8lisr6lqc844s3pkxzmny7w1z"))))
12148 (properties `((upstream-name . "gamlss.dist")))
12149 (build-system r-build-system)
12150 (propagated-inputs `(("r-mass" ,r-mass)))
12151 (home-page "http://www.gamlss.org/")
12152 (synopsis "Distributions for Generalized Additive Models for location scale and shape")
12153 (description
12154 "This package provides a set of distributions which can be used for
12155 modelling the response variables in Generalized Additive Models for Location
12156 Scale and Shape. The distributions can be continuous, discrete or mixed
12157 distributions. Extra distributions can be created, by transforming, any
12158 continuous distribution defined on the real line, to a distribution defined on
12159 ranges 0 to infinity or 0 to 1, by using a @code{log} or a @code{logit}
12160 transformation, respectively.")
12161 ;; Either version of the GPL.
12162 (license (list license:gpl2 license:gpl3))))
12163
12164 ;; This package includes JavaScript files, which are not minified. When
12165 ;; upgrading please check that there are no new minified JavaScript files.
12166 (define-public r-shinyjs
12167 (package
12168 (name "r-shinyjs")
12169 (version "1.1")
12170 (source
12171 (origin
12172 (method url-fetch)
12173 (uri (cran-uri "shinyjs" version))
12174 (sha256
12175 (base32
12176 "14k8y313ppj23m9rhlk8jc94x6sbn3qrsnx6xrijiyv8m8dii1l9"))))
12177 (build-system r-build-system)
12178 (propagated-inputs
12179 `(("r-digest" ,r-digest)
12180 ("r-htmltools" ,r-htmltools)
12181 ("r-jsonlite" ,r-jsonlite)
12182 ("r-shiny" ,r-shiny)))
12183 (home-page "https://deanattali.com/shinyjs")
12184 (synopsis "Improve the user experience of your Shiny apps")
12185 (description
12186 "Perform common useful JavaScript operations in Shiny apps that will
12187 greatly improve your apps without having to know any JavaScript. Examples
12188 include: hiding an element, disabling an input, resetting an input back to its
12189 original value, delaying code execution by a few seconds, and many more useful
12190 functions for both the end user and the developer. Shinyjs can also be used
12191 to easily call your own custom JavaScript functions from R.")
12192 (license license:agpl3+)))
12193
12194 ;; This package includes minified JavaScript files. When upgrading please
12195 ;; check that there are no new minified JavaScript files.
12196 (define-public r-colourpicker
12197 (package
12198 (name "r-colourpicker")
12199 (version "1.0")
12200 (source
12201 (origin
12202 (method url-fetch)
12203 (uri (cran-uri "colourpicker" version))
12204 (sha256
12205 (base32
12206 "0z3v2083g7kwdp21x9s2n1crfh24agpdq3yxkcdzc2awn2pwpnpi"))))
12207 (build-system r-build-system)
12208 (arguments
12209 `(#:modules ((guix build utils)
12210 (guix build r-build-system)
12211 (srfi srfi-1)
12212 (ice-9 popen))
12213 #:phases
12214 (modify-phases %standard-phases
12215 (add-after 'unpack 'process-javascript
12216 (lambda* (#:key inputs #:allow-other-keys)
12217 (with-directory-excursion "inst"
12218 (call-with-values
12219 (lambda ()
12220 (unzip2
12221 `((,(assoc-ref inputs "js-salvattore")
12222 "examples/colourInput/www/salvattore.min.js")
12223 (,(assoc-ref inputs "js-jquery")
12224 "htmlwidgets/lib/jquery/jquery.min.js")
12225 ("www/shared/colourpicker/js/colourpicker.js"
12226 "www/shared/colourpicker/js/colourpicker.min.js"))))
12227 (lambda (sources targets)
12228 (for-each (lambda (source target)
12229 (format #t "Processing ~a --> ~a~%"
12230 source target)
12231 (delete-file target)
12232 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
12233 (call-with-output-file target
12234 (lambda (port)
12235 (dump-port minified port)))))
12236 sources targets))))
12237 #t)))))
12238 (propagated-inputs
12239 `(("r-ggplot2" ,r-ggplot2)
12240 ("r-htmltools" ,r-htmltools)
12241 ("r-htmlwidgets" ,r-htmlwidgets)
12242 ("r-jsonlite" ,r-jsonlite)
12243 ("r-miniui" ,r-miniui)
12244 ("r-shiny" ,r-shiny)
12245 ("r-shinyjs" ,r-shinyjs)))
12246 (native-inputs
12247 `(("uglify-js" ,uglify-js)
12248 ("js-jquery"
12249 ,(origin
12250 (method url-fetch)
12251 (uri "https://code.jquery.com/jquery-3.3.1.js")
12252 (sha256
12253 (base32
12254 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))
12255 ("js-salvattore"
12256 ,(origin
12257 (method url-fetch)
12258 (uri "https://raw.githubusercontent.com/rnmp/salvattore/v1.0.9/dist/salvattore.js")
12259 (sha256
12260 (base32
12261 "0lfrbx7l9w5x89jpc6njmd0pk7h8fpvg537vklai2vf7b1r2nnk5"))))))
12262 (home-page "https://github.com/daattali/colourpicker")
12263 (synopsis "Color picker tool for Shiny and for selecting colors in plots")
12264 (description
12265 "This package provides a color picker that can be used as an input in
12266 Shiny apps or Rmarkdown documents. The color picker supports alpha opacity,
12267 custom color palettes, and many more options. A plot color helper tool is
12268 available as an RStudio Addin, which helps you pick colors to use in your
12269 plots. A more generic color picker RStudio Addin is also provided to let you
12270 select colors to use in your R code.")
12271 (license license:expat)))
12272
12273 (define-public r-ggextra
12274 (package
12275 (name "r-ggextra")
12276 (version "0.9")
12277 (source
12278 (origin
12279 (method url-fetch)
12280 (uri (cran-uri "ggExtra" version))
12281 (sha256
12282 (base32
12283 "18mbi6gblqmrsciad1d2c9ngllk6mayaqj43k40hjq9ydqnvjbgj"))))
12284 (properties `((upstream-name . "ggExtra")))
12285 (build-system r-build-system)
12286 (propagated-inputs
12287 `(("r-colourpicker" ,r-colourpicker)
12288 ("r-ggplot2" ,r-ggplot2)
12289 ("r-gtable" ,r-gtable)
12290 ("r-miniui" ,r-miniui)
12291 ("r-r6" ,r-r6)
12292 ("r-scales" ,r-scales)
12293 ("r-shiny" ,r-shiny)
12294 ("r-shinyjs" ,r-shinyjs)))
12295 (home-page "https://github.com/daattali/ggExtra")
12296 (synopsis "Marginal histograms for ggplot2 and other enhancements")
12297 (description
12298 "This package is a collection of functions and layers to enhance ggplot2.
12299 The flagship function is @code{ggMarginal()}, which can be used to add
12300 marginal histograms/boxplots/density plots to ggplot2 scatterplots.")
12301 (license license:expat)))
12302
12303 (define-public r-minpack-lm
12304 (package
12305 (name "r-minpack-lm")
12306 (version "1.2-1")
12307 (source
12308 (origin
12309 (method url-fetch)
12310 (uri (cran-uri "minpack.lm" version))
12311 (sha256
12312 (base32
12313 "18ym2pdql5vzngc7q5gn66d153hrfrnd8ilv8yh6vd7j7sx7vjql"))))
12314 (properties `((upstream-name . "minpack.lm")))
12315 (build-system r-build-system)
12316 (native-inputs `(("gfortran" ,gfortran)))
12317 (home-page "https://cran.r-project.org/web/packages/minpack.lm")
12318 (synopsis "Levenberg-Marquardt Nonlinear Least-Squares algorithm")
12319 (description
12320 "The @code{nls.lm} function provides an R interface to @code{lmder} and
12321 @code{lmdif} from the MINPACK library, for solving nonlinear least-squares
12322 problems by a modification of the Levenberg-Marquardt algorithm, with support
12323 for lower and upper parameter bounds. The implementation can be used via
12324 @code{nls}-like calls using the @code{nlsLM} function.")
12325 (license license:gpl3)))
12326
12327 (define-public r-moments
12328 (package
12329 (name "r-moments")
12330 (version "0.14")
12331 (source
12332 (origin
12333 (method url-fetch)
12334 (uri (cran-uri "moments" version))
12335 (sha256
12336 (base32
12337 "0f9y58w1hxcz4bqivirx25ywlmc80gbi6dfx5cnhkpdg1pk82fra"))))
12338 (build-system r-build-system)
12339 (home-page "https://cran.r-project.org/web/packages/moments")
12340 (synopsis "Moments, cumulants, skewness, kurtosis and related tests")
12341 (description
12342 "This package provides functions to calculate: moments, Pearson's
12343 kurtosis, Geary's kurtosis and skewness; it also includes tests related to
12344 them (Anscombe-Glynn, D'Agostino, Bonett-Seier).")
12345 (license license:gpl2+)))
12346
12347 (define-public r-msir
12348 (package
12349 (name "r-msir")
12350 (version "1.3.2")
12351 (source
12352 (origin
12353 (method url-fetch)
12354 (uri (cran-uri "msir" version))
12355 (sha256
12356 (base32
12357 "0pvc3q162vqq3k39nni732x05zzfz4y9y2zf56d83185ypszv9kb"))))
12358 (build-system r-build-system)
12359 (propagated-inputs
12360 `(("r-mclust" ,r-mclust)))
12361 (home-page "https://cran.r-project.org/web/packages/msir")
12362 (synopsis "Model-based sliced inverse regression")
12363 (description
12364 "This is an R package for dimension reduction based on finite Gaussian
12365 mixture modeling of inverse regression.")
12366 (license license:gpl2+)))
12367
12368 (define-public r-pbivnorm
12369 (package
12370 (name "r-pbivnorm")
12371 (version "0.6.0")
12372 (source
12373 (origin
12374 (method url-fetch)
12375 (uri (cran-uri "pbivnorm" version))
12376 (sha256
12377 (base32
12378 "05jzrjqxzbcf6z245hlk7sjxiszv9paadaaimvcx5y5qgi87vhq7"))))
12379 (build-system r-build-system)
12380 (native-inputs `(("gfortran" ,gfortran)))
12381 (home-page "https://github.com/brentonk/pbivnorm")
12382 (synopsis "Vectorized bivariate normal CDF")
12383 (description
12384 "This package provides a vectorized R function for calculating
12385 probabilities from a standard bivariate normal CDF.")
12386 (license license:gpl2+)))
12387
12388 (define-public r-lavaan
12389 (package
12390 (name "r-lavaan")
12391 (version "0.6-5")
12392 (source
12393 (origin
12394 (method url-fetch)
12395 (uri (cran-uri "lavaan" version))
12396 (sha256
12397 (base32
12398 "04kvsh2m6mnzlhv83phr3hjzy4sx1ck6f7dgsm7xb8cs84dnxszy"))))
12399 (build-system r-build-system)
12400 (propagated-inputs
12401 `(("r-mass" ,r-mass)
12402 ("r-mnormt" ,r-mnormt)
12403 ("r-numderiv" ,r-numderiv)
12404 ("r-pbivnorm" ,r-pbivnorm)))
12405 (home-page "http://lavaan.ugent.be")
12406 (synopsis "Latent variable analysis")
12407 (description
12408 "This package provides tools to fit a variety of latent variable models,
12409 including confirmatory factor analysis, structural equation modeling and
12410 latent growth curve models.")
12411 (license license:gpl2+)))
12412
12413 (define-public r-nonnest2
12414 (package
12415 (name "r-nonnest2")
12416 (version "0.5-3")
12417 (source
12418 (origin
12419 (method url-fetch)
12420 (uri (cran-uri "nonnest2" version))
12421 (sha256
12422 (base32
12423 "1mnv4pa583ir9s03h952hk40lwdywr3g88g76sk1zsa54rcmn82c"))))
12424 (build-system r-build-system)
12425 (propagated-inputs
12426 `(("r-compquadform" ,r-compquadform)
12427 ("r-lavaan" ,r-lavaan)
12428 ("r-mvtnorm" ,r-mvtnorm)
12429 ("r-sandwich" ,r-sandwich)))
12430 (native-inputs
12431 `(("r-knitr" ,r-knitr)))
12432 (home-page "https://cran.r-project.org/web/packages/nonnest2/")
12433 (synopsis "Tests of non-nested models")
12434 (description
12435 "This package allows for testing of non-nested models. It includes tests
12436 of model distinguishability and of model fit that can be applied to both
12437 nested and non-nested models. The package also includes functionality to
12438 obtain confidence intervals associated with AIC and BIC.")
12439 ;; Either version of the GPL.
12440 (license (list license:gpl2 license:gpl3))))
12441
12442 (define-public r-penalized
12443 (package
12444 (name "r-penalized")
12445 (version "0.9-51")
12446 (source
12447 (origin
12448 (method url-fetch)
12449 (uri (cran-uri "penalized" version))
12450 (sha256
12451 (base32
12452 "1zcrwa93mc27qj3g4ayc2k895r6g8q0g6qb2azmvj7wqk750va7a"))))
12453 (build-system r-build-system)
12454 (propagated-inputs
12455 `(("r-rcpp" ,r-rcpp)
12456 ("r-rcpparmadillo" ,r-rcpparmadillo)
12457 ("r-survival" ,r-survival)))
12458 (home-page "https://cran.r-project.org/web/packages/penalized/")
12459 (synopsis "Penalized estimation in GLMs and in the Cox model")
12460 (description
12461 "This package provides tools for fitting possibly high dimensional
12462 penalized regression models. The penalty structure can be any combination of
12463 an L1 penalty (lasso and fused lasso), an L2 penalty (ridge) and a positivity
12464 constraint on the regression coefficients. The supported regression models
12465 are linear, logistic and Poisson regression and the Cox Proportional Hazards
12466 model. Cross-validation routines allow optimization of the tuning
12467 parameters.")
12468 (license license:gpl2+)))
12469
12470 (define-public r-zim
12471 (package
12472 (name "r-zim")
12473 (version "1.1.0")
12474 (source
12475 (origin
12476 (method url-fetch)
12477 (uri (cran-uri "ZIM" version))
12478 (sha256
12479 (base32
12480 "0scyfjn4ilsvha3x41c3b8bcfi31hlhwm77wn2a8hj5dsvnnmzig"))))
12481 (properties `((upstream-name . "ZIM")))
12482 (build-system r-build-system)
12483 (propagated-inputs `(("r-mass" ,r-mass)))
12484 (home-page "https://github.com/biostatstudio/ZIM")
12485 (synopsis "Zero-inflated models (ZIM) for count time series with excess zeros")
12486 (description
12487 "Analyze count time series with excess zeros. Two types of statistical
12488 models are supported: Markov regression and state-space models. They are also
12489 known as observation-driven and parameter-driven models respectively in the
12490 time series literature. The functions used for Markov regression or
12491 observation-driven models can also be used to fit ordinary regression models
12492 with independent data under the zero-inflated Poisson (ZIP) or zero-inflated
12493 negative binomial (ZINB) assumption. The package also contains miscellaneous
12494 functions to compute density, distribution, quantile, and generate random
12495 numbers from ZIP and ZINB distributions.")
12496 (license license:gpl3)))
12497
12498 (define-public r-nor1mix
12499 (package
12500 (name "r-nor1mix")
12501 (version "1.3-0")
12502 (source
12503 (origin
12504 (method url-fetch)
12505 (uri (cran-uri "nor1mix" version))
12506 (sha256
12507 (base32
12508 "1817wcvlmxs70vs4db0jkxd7i037744zz8ay3c2a9949z29fxr4w"))))
12509 (build-system r-build-system)
12510 (home-page "https://cran.r-project.org/web/packages/nor1mix/")
12511 (synopsis "Normal (1-d) mixture models")
12512 (description
12513 "This package provides S3 classes and methods for one-dimensional normal
12514 mixture models, for, e.g., density estimation or clustering algorithms
12515 research and teaching; it provides the widely used Marron-Wand densities. It
12516 also provides tools for efficient random number generation and graphics.")
12517 (license license:gpl2+)))
12518
12519 (define-public r-beanplot
12520 (package
12521 (name "r-beanplot")
12522 (version "1.2")
12523 (source
12524 (origin
12525 (method url-fetch)
12526 (uri (cran-uri "beanplot" version))
12527 (sha256
12528 (base32
12529 "0wmkr704fl8kdxkjwmaxw2a2h5dwzfgsgpncnk2p2wd4768jknj9"))))
12530 (build-system r-build-system)
12531 (home-page "https://cran.r-project.org/web/packages/beanplot/")
12532 (synopsis "Visualization via beanplots")
12533 (description
12534 "This package provides beanplots, an alternative to
12535 boxplot/stripchart/violin plots. It can be used to plot univariate comparison
12536 graphs.")
12537 (license license:gpl2)))
12538
12539 (define-public r-pbdzmq
12540 (package
12541 (name "r-pbdzmq")
12542 (version "0.3-3")
12543 (source
12544 (origin
12545 (method url-fetch)
12546 (uri (cran-uri "pbdZMQ" version))
12547 (sha256
12548 (base32
12549 "1jkfcfhspvqra7vbllrvkz3jx8j7d0ang6zzcdjgpb7200sc29mf"))))
12550 (properties `((upstream-name . "pbdZMQ")))
12551 (build-system r-build-system)
12552 (inputs
12553 `(("zeromq" ,zeromq)
12554 ("zlib" ,zlib)))
12555 (native-inputs
12556 `(("pkg-config" ,pkg-config)))
12557 (home-page "https://pbdr.org/")
12558 (synopsis "R interface to ZeroMQ")
12559 (description
12560 "ZeroMQ is a well-known library for high-performance asynchronous
12561 messaging in scalable, distributed applications. This package provides high
12562 level R wrapper functions to easily utilize ZeroMQ. The main focus is on
12563 interactive client/server programming frameworks. A few wrapper functions
12564 compatible with @code{rzmq} are also provided.")
12565 (license license:gpl3)))
12566
12567 (define-public r-repr
12568 (package
12569 (name "r-repr")
12570 (version "1.1.0")
12571 (source
12572 (origin
12573 (method url-fetch)
12574 (uri (cran-uri "repr" version))
12575 (sha256
12576 (base32
12577 "15jz780w4nd9qjd1g3gq8f5lkh60p2v3ig3hm5kl1rg3z4cf0gvl"))))
12578 (build-system r-build-system)
12579 (propagated-inputs
12580 `(("r-base64enc" ,r-base64enc)
12581 ("r-htmltools" ,r-htmltools)
12582 ("r-jsonlite" ,r-jsonlite)
12583 ("r-pillar" ,r-pillar)))
12584 (home-page "https://cran.r-project.org/web/packages/repr/")
12585 (synopsis "Serializable representations")
12586 (description
12587 "This package provides string and binary representations of objects for
12588 several formats and MIME types.")
12589 (license license:gpl3)))
12590
12591 (define-public r-irdisplay
12592 (package
12593 (name "r-irdisplay")
12594 (version "0.7.0")
12595 (source
12596 (origin
12597 (method url-fetch)
12598 (uri (cran-uri "IRdisplay" version))
12599 (sha256
12600 (base32
12601 "12chk53nf4zckgc4yl7gbvd7m5dvli52inp5b3f0zvcjvfncksli"))))
12602 (properties `((upstream-name . "IRdisplay")))
12603 (build-system r-build-system)
12604 (propagated-inputs
12605 `(("r-repr" ,r-repr)))
12606 (home-page "https://cran.r-project.org/web/packages/IRdisplay/")
12607 (synopsis "Jupyter display machinery")
12608 (description
12609 "This package provides an interface to the rich display capabilities of
12610 Jupyter front-ends (e.g. Jupyter Notebook). It is designed to be used from a
12611 running IRkernel session.")
12612 (license license:expat)))
12613
12614 (define-public r-irkernel
12615 (package
12616 (name "r-irkernel")
12617 (version "1.1")
12618 (source
12619 (origin
12620 (method url-fetch)
12621 (uri (cran-uri "IRkernel" version))
12622 (sha256
12623 (base32
12624 "1viqxs91dys1z4cf7gb59rmqvzb8lc7jdp4azrpmhgwa8qf46s94"))))
12625 (properties `((upstream-name . "IRkernel")))
12626 (build-system r-build-system)
12627 (arguments
12628 `(#:phases
12629 (modify-phases %standard-phases
12630 (add-after 'install 'install-kernelspec
12631 (lambda* (#:key outputs #:allow-other-keys)
12632 (let ((out (assoc-ref outputs "out")))
12633 (setenv "HOME" "/tmp")
12634 (invoke "jupyter" "kernelspec" "install"
12635 "--name" "ir"
12636 "--prefix" out
12637 (string-append out "/site-library/IRkernel/kernelspec"))
12638 ;; Record the absolute file name of the 'R' executable in
12639 ;; 'kernel.json'.
12640 (substitute* (string-append out "/share/jupyter"
12641 "/kernels/ir/kernel.json")
12642 (("\\[\"R\",")
12643 (string-append "[\"" (which "R") "\",")))
12644 #t))))))
12645 (inputs
12646 `(("jupyter" ,jupyter)))
12647 (propagated-inputs
12648 `(("r-crayon" ,r-crayon)
12649 ("r-digest" ,r-digest)
12650 ("r-evaluate" ,r-evaluate)
12651 ("r-irdisplay" ,r-irdisplay)
12652 ("r-jsonlite" ,r-jsonlite)
12653 ;; sets R_LIBS_SITE, so R can actually find this package (IRkernel)
12654 ("r-minimal" ,r-minimal)
12655 ("r-pbdzmq" ,r-pbdzmq)
12656 ("r-repr" ,r-repr)
12657 ("r-uuid" ,r-uuid)))
12658 (home-page "https://cran.r-project.org/web/packages/IRkernel/")
12659 (synopsis "Native R kernel for Jupyter")
12660 (description
12661 "The R kernel for the Jupyter environment executes R code which the
12662 front-end (Jupyter Notebook or other front-ends) submits to the kernel via the
12663 network.")
12664 (license license:expat)))
12665
12666 (define-public r-gmodels
12667 (package
12668 (name "r-gmodels")
12669 (version "2.18.1")
12670 (source
12671 (origin
12672 (method url-fetch)
12673 (uri (cran-uri "gmodels" version))
12674 (sha256
12675 (base32
12676 "0s8kd8krqk4kwv2zqxpsfy3w8qdwf5naf4b5l383vidq9sil0qb2"))))
12677 (build-system r-build-system)
12678 (propagated-inputs
12679 `(("r-gdata" ,r-gdata)
12680 ("r-mass" ,r-mass)))
12681 (home-page "https://cran.r-project.org/web/packages/gmodels/")
12682 (synopsis "Various R programming tools for model fitting")
12683 (description
12684 "This package provides various R programming tools for model fitting.")
12685 (license license:gpl2)))
12686
12687 (define-public r-apcluster
12688 (package
12689 (name "r-apcluster")
12690 (version "1.4.8")
12691 (source
12692 (origin
12693 (method url-fetch)
12694 (uri (cran-uri "apcluster" version))
12695 (sha256
12696 (base32
12697 "0lzf2jqm56i74wif6x5sw3j0w2qc4sni49zq2fgbl89b7lwkvchj"))))
12698 (build-system r-build-system)
12699 (propagated-inputs
12700 `(("r-matrix" ,r-matrix)
12701 ("r-rcpp" ,r-rcpp)))
12702 (home-page "https://cran.r-project.org/web/packages/apcluster/")
12703 (synopsis "Affinity propagation clustering")
12704 (description
12705 "This package implements affinity propagation clustering introduced by
12706 Frey and Dueck (2007). The package further provides leveraged affinity
12707 propagation and an algorithm for exemplar-based agglomerative clustering that
12708 can also be used to join clusters obtained from affinity propagation. Various
12709 plotting functions are available for analyzing clustering results.")
12710 (license license:gpl2+)))
12711
12712 (define-public r-valr
12713 (package
12714 (name "r-valr")
12715 (version "0.5.0")
12716 (source
12717 (origin
12718 (method url-fetch)
12719 (uri (cran-uri "valr" version))
12720 (sha256
12721 (base32
12722 "14jhrwkiwmha3vlmm7b50n2xxyizj6ddmy89gb20mpzq7qhz1ika"))))
12723 (build-system r-build-system)
12724 (propagated-inputs
12725 `(("r-broom" ,r-broom)
12726 ("r-dplyr" ,r-dplyr)
12727 ("r-ggplot2" ,r-ggplot2)
12728 ("r-rcpp" ,r-rcpp)
12729 ("r-readr" ,r-readr)
12730 ("r-rlang" ,r-rlang)
12731 ("r-stringr" ,r-stringr)
12732 ("r-tibble" ,r-tibble)))
12733 (home-page "http://github.com/rnabioco/valr")
12734 (synopsis "Genome interval arithmetic in R")
12735 (description
12736 "This package enables you to read and manipulate genome intervals and
12737 signals. It provides functionality similar to command-line tool suites within
12738 R, enabling interactive analysis and visualization of genome-scale data.")
12739 (license license:expat)))
12740
12741 (define-public r-rematch2
12742 (package
12743 (name "r-rematch2")
12744 (version "2.1.1")
12745 (source
12746 (origin
12747 (method url-fetch)
12748 (uri (cran-uri "rematch2" version))
12749 (sha256
12750 (base32
12751 "13siaa8s2ji9q6hykhb2r34ag76335ypmbqr90xaqilbir0klhnh"))))
12752 (build-system r-build-system)
12753 (propagated-inputs
12754 `(("r-tibble" ,r-tibble)))
12755 (home-page "https://github.com/r-lib/rematch2")
12756 (synopsis "Tidy output from regular expression matching")
12757 (description
12758 "This package provides wrappers on @code{regexpr} and @code{gregexpr} to
12759 return the match results in tidy data frames.")
12760 (license license:expat)))
12761
12762 (define-public r-picante
12763 (package
12764 (name "r-picante")
12765 (version "1.8.1")
12766 (source
12767 (origin
12768 (method url-fetch)
12769 (uri (cran-uri "picante" version))
12770 (sha256
12771 (base32
12772 "1b16zm8zjjsl181b8krkdcrbcw347kf772c4w7y5332qmfi7jhz0"))))
12773 (build-system r-build-system)
12774 (propagated-inputs
12775 `(("r-ape" ,r-ape)
12776 ("r-nlme" ,r-nlme)
12777 ("r-vegan" ,r-vegan)))
12778 (home-page "https://cran.r-project.org/web/packages/picante/")
12779 (synopsis "Integrating phylogenies and ecology")
12780 (description
12781 "This package provides functions for phylocom integration, community
12782 analyses, null-models, traits and evolution. It implements numerous
12783 ecophylogenetic approaches including measures of community phylogenetic and
12784 trait diversity, phylogenetic signal, estimation of trait values for
12785 unobserved taxa, null models for community and phylogeny randomizations, and
12786 utility functions for data input/output and phylogeny plotting. A full
12787 description of package functionality and methods are provided by Kembel et
12788 al. (2010).")
12789 (license license:gpl2)))
12790
12791 (define-public r-reinforcelearn
12792 (package
12793 (name "r-reinforcelearn")
12794 (version "0.2.1")
12795 (source
12796 (origin
12797 (method url-fetch)
12798 (uri (cran-uri "reinforcelearn" version))
12799 (sha256
12800 (base32
12801 "176z2q69p24i29a8sh19xxn2zl3h1z2ixdssr5i6m4yvkvdrvv3b"))))
12802 (build-system r-build-system)
12803 (propagated-inputs
12804 `(("r-checkmate" ,r-checkmate)
12805 ("r-nnet" ,r-nnet)
12806 ("r-purrr" ,r-purrr)
12807 ("r-r6" ,r-r6)))
12808 (home-page "https://markusdumke.github.io/reinforcelearn")
12809 (synopsis "Reinforcement learning")
12810 (description
12811 "This package implements reinforcement learning environments and
12812 algorithms as described in Sutton & Barto (1998). The Q-Learning algorithm
12813 can be used with function approximation, eligibility traces (Singh & Sutton,
12814 1996) and experience replay (Mnih et al., 2013).")
12815 (license license:expat)))
12816
12817 (define-public r-lemon
12818 (package
12819 (name "r-lemon")
12820 (version "0.4.3")
12821 (source
12822 (origin
12823 (method url-fetch)
12824 (uri (cran-uri "lemon" version))
12825 (sha256
12826 (base32
12827 "0wsn5bfg10wq4dnrgpyraz2bzx9p19c7hf1pwj3h4zmpqfgsdbpw"))))
12828 (build-system r-build-system)
12829 (propagated-inputs
12830 `(("r-ggplot2" ,r-ggplot2)
12831 ("r-gridextra" ,r-gridextra)
12832 ("r-gtable" ,r-gtable)
12833 ("r-knitr" ,r-knitr)
12834 ("r-lattice" ,r-lattice)
12835 ("r-plyr" ,r-plyr)
12836 ("r-scales" ,r-scales)))
12837 (home-page "https://github.com/stefanedwards/lemon")
12838 (synopsis "Freshen up your ggplot2 plots")
12839 (description
12840 "This package provides functions for working with legends and axis lines
12841 of ggplot2, facets that repeat axis lines on all panels, and some knitr
12842 extensions.")
12843 (license license:gpl3)))
12844
12845 (define-public r-wgaim
12846 (package
12847 (name "r-wgaim")
12848 (version "2.0-1")
12849 (source
12850 (origin
12851 (method url-fetch)
12852 (uri (cran-uri "wgaim" version))
12853 (sha256
12854 (base32 "1qiyfkpsbzjr9xsq5kqq6rlqpndngkn2irdfh3gyi45h6hn118j4"))))
12855 (build-system r-build-system)
12856 (propagated-inputs
12857 `(("r-ggplot2" ,r-ggplot2)
12858 ("r-qtl" ,r-qtl)))
12859 (home-page "https://cran.r-project.org/web/packages/wgaim")
12860 (synopsis "Whole genome average interval mapping for QTL detection")
12861 (description
12862 "This package integrates sophisticated mixed modelling methods with a
12863 whole genome approach to detecting significant QTL in linkage maps.")
12864 (license license:gpl2+)))
12865
12866 (define-public r-bedr
12867 (package
12868 (name "r-bedr")
12869 (version "1.0.7")
12870 (source
12871 (origin
12872 (method url-fetch)
12873 (uri (cran-uri "bedr" version))
12874 (sha256
12875 (base32
12876 "0zpqvyjgwyqawxm8qrhcv8zq2b3yxgcqkkc87br29yrl7sjb8h6j"))))
12877 (build-system r-build-system)
12878 (propagated-inputs
12879 `(("r-data-table" ,r-data-table)
12880 ("r-r-utils" ,r-r-utils)
12881 ("r-testthat" ,r-testthat)
12882 ("r-venndiagram" ,r-venndiagram)
12883 ("r-yaml" ,r-yaml)
12884 ("bedops" ,bedops)
12885 ("bedtools" ,bedtools)
12886 ("htslib" ,htslib))) ; for tabix
12887 (native-inputs
12888 `(("r-knitr" ,r-knitr))) ; for vignettes
12889 (home-page "https://cran.r-project.org/web/packages/bedr")
12890 (synopsis "Genomic region processing")
12891 (description
12892 "This package is for genomic regions processing using command line tools
12893 such as BEDTools, BEDOPS and Tabix. These tools offer scalable and efficient
12894 utilities to perform genome arithmetic e.g indexing, formatting and merging.
12895 The bedr package's API enhances access to these tools as well as offers
12896 additional utilities for genomic regions processing.")
12897 (license license:gpl2)))
12898
12899 (define-public r-sets
12900 (package
12901 (name "r-sets")
12902 (version "1.0-18")
12903 (source
12904 (origin
12905 (method url-fetch)
12906 (uri (cran-uri "sets" version))
12907 (sha256
12908 (base32
12909 "16v7650p47khqrbbw0z98llmwmmhswqmhri0n7nrfhdqwmby1lbl"))))
12910 (properties `((upstream-name . "sets")))
12911 (build-system r-build-system)
12912 (home-page "https://cran.r-project.org/web/packages/sets")
12913 (synopsis "Sets, generalized sets, customizable sets and intervals")
12914 (description
12915 "This package provides data structures and basic operations for ordinary
12916 sets, generalizations such as fuzzy sets, multisets, and fuzzy multisets,
12917 customizable sets, and intervals.")
12918 (license license:gpl2)))
12919
12920 (define-public r-partitions
12921 (package
12922 (name "r-partitions")
12923 (version "1.9-22")
12924 (source
12925 (origin
12926 (method url-fetch)
12927 (uri (cran-uri "partitions" version))
12928 (sha256
12929 (base32
12930 "1qqy4df28wy4q0g572azrj171jlhvrnzbh7x0wr2g7v6gr20y0ns"))))
12931 (build-system r-build-system)
12932 (propagated-inputs
12933 `(("r-gmp" ,r-gmp)
12934 ("r-polynom" ,r-polynom)
12935 ("r-sets" ,r-sets)))
12936 (home-page "https://cran.r-project.org/web/packages/partitions")
12937 (synopsis "Additive partitions of integers")
12938 (description
12939 "This package provides tools to enumerates the partitions, unequal
12940 partitions, and restricted partitions of an integer; the three corresponding
12941 partition functions are also given.")
12942 ;; Any version of the GPL
12943 (license license:gpl2+)))
12944
12945 (define-public r-brobdingnag
12946 (package
12947 (name "r-brobdingnag")
12948 (version "1.2-6")
12949 (source
12950 (origin
12951 (method url-fetch)
12952 (uri (cran-uri "Brobdingnag" version))
12953 (sha256
12954 (base32
12955 "1m3ajvcksqfck5l5hj5xiflj4ry6d896ybv4f0xxks8chgnwmv0r"))))
12956 (properties `((upstream-name . "Brobdingnag")))
12957 (build-system r-build-system)
12958 (home-page "https://github.com/RobinHankin/Brobdingnag.git")
12959 (synopsis "Very large numbers in R")
12960 (description
12961 "This package handles very large numbers in R. Real numbers are held
12962 using their natural logarithms, plus a logical flag indicating sign. The
12963 package includes a vignette that gives a step-by-step introduction to using S4
12964 methods.")
12965 ;; Any version of the GPL
12966 (license license:gpl2+)))
12967
12968 (define-public r-untb
12969 (package
12970 (name "r-untb")
12971 (version "1.7-4")
12972 (source
12973 (origin
12974 (method url-fetch)
12975 (uri (cran-uri "untb" version))
12976 (sha256
12977 (base32
12978 "1i7m4vfslsix98dwx4jlrsldm7fhhfp25gr7aapcxqxms7ryaby6"))))
12979 (build-system r-build-system)
12980 (propagated-inputs
12981 `(("r-brobdingnag" ,r-brobdingnag)
12982 ("r-partitions" ,r-partitions)
12983 ("r-polynom" ,r-polynom)))
12984 (home-page "https://github.com/RobinHankin/untb.git")
12985 (synopsis "Ecological drift under the UNTB")
12986 (description
12987 "This package provides numerical simulations, and visualizations, of
12988 Hubbell's @dfn{Unified Neutral Theory of Biodiversity} (UNTB).")
12989 (license license:gpl2+)))
12990
12991 (define-public r-stepwise
12992 (package
12993 (name "r-stepwise")
12994 (version "0.3")
12995 (source
12996 (origin
12997 (method url-fetch)
12998 (uri (cran-uri "stepwise" version))
12999 (sha256
13000 (base32
13001 "1lbx1bxwkf9dw6q46w40pp7h5nkxgghmx8rkpaymm6iybc7gyir2"))))
13002 (build-system r-build-system)
13003 (home-page "https://stat.sfu.ca/statgen/research/stepwise.html")
13004 (synopsis "Stepwise detection of recombination breakpoints")
13005 (description
13006 "This package provides a stepwise approach to identifying recombination
13007 breakpoints in a genomic sequence alignment.")
13008 (license license:gpl2+)))
13009
13010 (define-public r-snpmaxsel
13011 (package
13012 (name "r-snpmaxsel")
13013 (version "1.0-3")
13014 (source
13015 (origin
13016 (method url-fetch)
13017 (uri (cran-uri "SNPmaxsel" version))
13018 (sha256
13019 (base32
13020 "0pjvixwqzjd3jwccc8yqq9c76afvbmfq0z1w0cwyj8bblrjpx13z"))))
13021 (properties `((upstream-name . "SNPmaxsel")))
13022 (build-system r-build-system)
13023 (propagated-inputs
13024 `(("r-combinat" ,r-combinat)
13025 ("r-mvtnorm" ,r-mvtnorm)))
13026 (home-page "https://cran.r-project.org/web/packages/SNPmaxsel/index.html")
13027 (synopsis "Maximally selected statistics for SNP data")
13028 (description
13029 "This package implements asymptotic methods related to maximally selected
13030 statistics, with applications to @dfn{single-nucleotide polymorphism} (SNP)
13031 data.")
13032 (license license:gpl2+)))
13033
13034 (define-public r-acsnminer
13035 (package
13036 (name "r-acsnminer")
13037 (version "0.16.8.25")
13038 (source (origin
13039 (method url-fetch)
13040 (uri (cran-uri "ACSNMineR" version))
13041 (sha256
13042 (base32
13043 "0gh604s8qall6zfjlwcg2ilxjvz08dplf9k5g47idhv43scm748l"))))
13044 (properties `((upstream-name . "ACSNMineR")))
13045 (build-system r-build-system)
13046 (propagated-inputs
13047 `(("r-ggplot2" ,r-ggplot2)
13048 ("r-gridextra" ,r-gridextra)))
13049 (home-page "https://cran.r-project.org/web/packages/ACSNMineR")
13050 (synopsis "Gene enrichment analysis")
13051 (description
13052 "This package provides tools to compute and represent gene set enrichment
13053 or depletion from your data based on pre-saved maps from the @dfn{Atlas of
13054 Cancer Signalling Networks} (ACSN) or user imported maps. The gene set
13055 enrichment can be run with hypergeometric test or Fisher exact test, and can
13056 use multiple corrections. Visualization of data can be done either by
13057 barplots or heatmaps.")
13058 (license license:gpl2+)))
13059
13060 (define-public r-seqinr
13061 (package
13062 (name "r-seqinr")
13063 (version "3.6-1")
13064 (source
13065 (origin
13066 (method url-fetch)
13067 (uri (cran-uri "seqinr" version))
13068 (sha256
13069 (base32
13070 "0j30za6kji6y3v09cvcydiacnp65pv6ig8aw7cydl47l5s9chky4"))))
13071 (build-system r-build-system)
13072 (propagated-inputs
13073 `(("r-ade4" ,r-ade4)
13074 ("r-segmented" ,r-segmented)))
13075 (inputs
13076 `(("zlib" ,zlib)))
13077 (home-page "http://seqinr.r-forge.r-project.org/")
13078 (synopsis "Biological sequences retrieval and analysis")
13079 (description
13080 "This package provides tools for exploratory data analysis and data
13081 visualization of biological sequence (DNA and protein) data. It also includes
13082 utilities for sequence data management under the ACNUC system.")
13083 (license license:gpl2+)))
13084
13085 (define-public r-units
13086 (package
13087 (name "r-units")
13088 (version "0.6-6")
13089 (source
13090 (origin
13091 (method url-fetch)
13092 (uri (cran-uri "units" version))
13093 (sha256
13094 (base32
13095 "11x6xz1fbml28xmrhgn4sii9vfyj3gyfc1dfxahdg9cszdmcgdnh"))))
13096 (build-system r-build-system)
13097 (inputs
13098 `(("udunits" ,udunits)))
13099 (propagated-inputs
13100 `(("r-rcpp" ,r-rcpp)))
13101 (native-inputs
13102 `(("r-knitr" ,r-knitr)))
13103 (home-page "https://github.com/r-quantities/units/")
13104 (synopsis "Measurement Units for R Vectors")
13105 (description
13106 "This package provides support for measurement units in R vectors,
13107 matrices and arrays: automatic propagation, conversion, derivation and
13108 simplification of units; raising errors in case of unit incompatibility. It
13109 is compatible with the @code{POSIXct}, @code{Date} and @code{difftime}
13110 classes.")
13111 (license license:gpl2)))
13112
13113 (define-public r-classint
13114 (package
13115 (name "r-classint")
13116 (version "0.4-2")
13117 (source
13118 (origin
13119 (method url-fetch)
13120 (uri (cran-uri "classInt" version))
13121 (sha256
13122 (base32
13123 "0w980hrw8sgfdfyd5dsimalq7gwhvqm7507abk7k363pvgks23dv"))))
13124 (properties `((upstream-name . "classInt")))
13125 (build-system r-build-system)
13126 (propagated-inputs
13127 `(("r-class" ,r-class)
13128 ("r-e1071" ,r-e1071)
13129 ("r-kernsmooth" ,r-kernsmooth)))
13130 (native-inputs `(("gfortran" ,gfortran)))
13131 (home-page "https://github.com/r-spatial/classInt/")
13132 (synopsis "Choose univariate class intervals")
13133 (description
13134 "This package provides selected commonly used methods for choosing
13135 univariate class intervals for mapping or other graphics purposes.")
13136 (license license:gpl2+)))
13137
13138 (define-public r-spdata
13139 (package
13140 (name "r-spdata")
13141 (version "0.3.3")
13142 (source
13143 (origin
13144 (method url-fetch)
13145 (uri (cran-uri "spData" version))
13146 (sha256
13147 (base32
13148 "1v66qkvsx77hvv5c78v760yp0hknf7xzcjir2ri3ha456mz79yl5"))))
13149 (properties `((upstream-name . "spData")))
13150 (build-system r-build-system)
13151 (propagated-inputs
13152 `(("r-raster" ,r-raster)
13153 ("r-sp" ,r-sp)))
13154 (home-page "https://github.com/Nowosad/spData")
13155 (synopsis "Datasets for spatial analysis")
13156 (description
13157 "This a package containing diverse spatial datasets for demonstrating,
13158 benchmarking and teaching spatial data analysis. It includes R data of class
13159 @code{sf}, @code{Spatial}, and @code{nb}. It also contains data stored in a
13160 range of file formats including GeoJSON, ESRI Shapefile and GeoPackage. Some
13161 of the datasets are designed to illustrate specific analysis techniques.
13162 @code{cycle_hire()} and @code{cycle_hire_osm()}, for example, are designed to
13163 illustrate point pattern analysis techniques.")
13164 (license license:cc0)))
13165
13166 (define-public r-learnbayes
13167 (package
13168 (name "r-learnbayes")
13169 (version "2.15.1")
13170 (source
13171 (origin
13172 (method url-fetch)
13173 (uri (cran-uri "LearnBayes" version))
13174 (sha256
13175 (base32
13176 "0ch54v2zz2yyyk0lvn5rfikdmyz1qh9j1wk3585wl8v58mc0h4cv"))))
13177 (properties `((upstream-name . "LearnBayes")))
13178 (build-system r-build-system)
13179 (home-page "https://cran.r-project.org/web/packages/LearnBayes")
13180 (synopsis "Functions for learning Bayesian inference")
13181 (description
13182 "This package provides a collection of functions helpful in learning the
13183 basic tenets of Bayesian statistical inference. It contains functions for
13184 summarizing basic one and two parameter posterior distributions and predictive
13185 distributions. It contains MCMC algorithms for summarizing posterior
13186 distributions defined by the user. It also contains functions for regression
13187 models, hierarchical models, Bayesian tests, and illustrations of Gibbs
13188 sampling.")
13189 (license license:gpl2+)))
13190
13191 (define-public r-deldir
13192 (package
13193 (name "r-deldir")
13194 (version "0.1-25")
13195 (source
13196 (origin
13197 (method url-fetch)
13198 (uri (cran-uri "deldir" version))
13199 (sha256
13200 (base32
13201 "0kdglv8rc1pb4ilcid4xc9wpv5kkj2y6x6wg7919k3hya7mz58ph"))))
13202 (build-system r-build-system)
13203 (native-inputs `(("gfortran" ,gfortran)))
13204 (home-page "https://cran.r-project.org/web/packages/deldir")
13205 (synopsis "Delaunay triangulation and Dirichlet (Voronoi) tessellation")
13206 (description
13207 "This package provides tools for calculating the Delaunay triangulation
13208 and the Dirichlet or Voronoi tessellation (with respect to the entire plane)
13209 of a planar point set. It plots triangulations and tessellations in various
13210 ways, clips tessellations to sub-windows, calculates perimeters of
13211 tessellations, and summarizes information about the tiles of the
13212 tessellation.")
13213 (license license:gpl2+)))
13214
13215 (define-public r-sf
13216 (package
13217 (name "r-sf")
13218 (version "0.9-0")
13219 (source
13220 (origin
13221 (method url-fetch)
13222 (uri (cran-uri "sf" version))
13223 (sha256
13224 (base32
13225 "117r9l3v7nkdj9bfy6qr0yz0gd5bv0pwnkc9vk2gv3xqj0h1fpf6"))))
13226 (build-system r-build-system)
13227 (inputs
13228 `(("gdal" ,gdal)
13229 ("geos" ,geos)
13230 ("proj" ,proj.4)
13231 ("zlib" ,zlib)))
13232 (propagated-inputs
13233 `(("r-classint" ,r-classint)
13234 ("r-dbi" ,r-dbi)
13235 ("r-magrittr" ,r-magrittr)
13236 ("r-rcpp" ,r-rcpp)
13237 ("r-units" ,r-units)))
13238 (native-inputs
13239 `(("pkg-config" ,pkg-config)
13240 ("r-knitr" ,r-knitr)))
13241 (home-page "https://github.com/r-spatial/sf/")
13242 (synopsis "Simple features for R")
13243 (description
13244 "This package provides support for simple features, a standardized way to
13245 encode spatial vector data. It binds to GDAL for reading and writing data, to
13246 GEOS for geometrical operations, and to PROJ for projection conversions and
13247 datum transformations.")
13248 ;; Either of these licenses
13249 (license (list license:gpl2 license:expat))))
13250
13251 (define-public r-spdep
13252 (package
13253 (name "r-spdep")
13254 (version "1.1-3")
13255 (source
13256 (origin
13257 (method url-fetch)
13258 (uri (cran-uri "spdep" version))
13259 (sha256
13260 (base32
13261 "1f8cjffqqc6rnb3n4qym70ca6nz2kvrsd3g587wrqdr79nnbwnrk"))))
13262 (build-system r-build-system)
13263 (propagated-inputs
13264 `(("r-boot" ,r-boot)
13265 ("r-coda" ,r-coda)
13266 ("r-deldir" ,r-deldir)
13267 ("r-expm" ,r-expm)
13268 ("r-gmodels" ,r-gmodels)
13269 ("r-learnbayes" ,r-learnbayes)
13270 ("r-mass" ,r-mass)
13271 ("r-matrix" ,r-matrix)
13272 ("r-nlme" ,r-nlme)
13273 ("r-sf" ,r-sf)
13274 ("r-sp" ,r-sp)
13275 ("r-spdata" ,r-spdata)))
13276 (home-page "https://github.com/r-spatial/spdep/")
13277 (synopsis "Spatial dependence: weighting schemes, statistics and models")
13278 (description
13279 "This package provides a collection of functions to create spatial
13280 weights matrix objects from polygon contiguities, from point patterns by
13281 distance and tessellations, for summarizing these objects, and for permitting
13282 their use in spatial data analysis, including regional aggregation by minimum
13283 spanning tree.")
13284 (license license:gpl2+)))
13285
13286 (define-public r-adegenet
13287 (package
13288 (name "r-adegenet")
13289 (version "2.1.2")
13290 (source
13291 (origin
13292 (method url-fetch)
13293 (uri (cran-uri "adegenet" version))
13294 (sha256
13295 (base32
13296 "01fgrgbiddz2q4l3mx637hhwbs7r0c43yw7vpwl8p8pwbm3nykz0"))))
13297 (build-system r-build-system)
13298 (propagated-inputs
13299 `(("r-ade4" ,r-ade4)
13300 ("r-ape" ,r-ape)
13301 ("r-boot" ,r-boot)
13302 ("r-dplyr" ,r-dplyr)
13303 ("r-ggplot2" ,r-ggplot2)
13304 ("r-igraph" ,r-igraph)
13305 ("r-mass" ,r-mass)
13306 ("r-reshape2" ,r-reshape2)
13307 ("r-seqinr" ,r-seqinr)
13308 ("r-shiny" ,r-shiny)
13309 ("r-spdep" ,r-spdep)
13310 ("r-vegan" ,r-vegan)))
13311 (home-page "https://github.com/thibautjombart/adegenet")
13312 (synopsis "Exploratory analysis of genetic and genomic data")
13313 (description
13314 "This package provides a toolset for the exploration of genetic and
13315 genomic data. Adegenet provides formal (S4) classes for storing and handling
13316 various genetic data, including genetic markers with varying ploidy and
13317 hierarchical population structure (@code{genind} class), alleles counts by
13318 populations (@code{genpop}), and genome-wide SNP data (@code{genlight}). It
13319 also implements original multivariate methods (DAPC, sPCA), graphics,
13320 statistical tests, simulation tools, distance and similarity measures, and
13321 several spatial methods. A range of both empirical and simulated datasets is
13322 also provided to illustrate various methods.")
13323 (license license:gpl2+)))
13324
13325 (define-public r-pegas
13326 (package
13327 (name "r-pegas")
13328 (version "0.13")
13329 (source
13330 (origin
13331 (method url-fetch)
13332 (uri (cran-uri "pegas" version))
13333 (sha256
13334 (base32 "002i7s4g0nhnq0v05gs0yssqiyhpq2f7rw2rhn31hsbgxc86frvy"))))
13335 (build-system r-build-system)
13336 (propagated-inputs
13337 `(("r-adegenet" ,r-adegenet)
13338 ("r-ape" ,r-ape)))
13339 (home-page "http://ape-package.ird.fr/pegas.html")
13340 (synopsis "Population and evolutionary genetics analysis system")
13341 (description
13342 "This package provides functions for reading, writing, plotting,
13343 analysing, and manipulating allelic and haplotypic data, including from VCF
13344 files, and for the analysis of population nucleotide sequences and
13345 micro-satellites including coalescent analyses, linkage disequilibrium,
13346 population structure (Fst, Amova) and equilibrium (HWE), haplotype networks,
13347 minimum spanning tree and network, and median-joining networks.")
13348 (license license:gpl2+)))
13349
13350 (define-public r-rmetasim
13351 (package
13352 (name "r-rmetasim")
13353 (version "3.1.14")
13354 (source
13355 (origin
13356 (method url-fetch)
13357 (uri (cran-uri "rmetasim" version))
13358 (sha256
13359 (base32
13360 "0rdkhfgyr97r2d1kd9g8ipb2pn563qxm1y4m9z678q0kqan2ddl0"))))
13361 (build-system r-build-system)
13362 (propagated-inputs
13363 `(("r-ade4" ,r-ade4)
13364 ("r-adegenet" ,r-adegenet)
13365 ("r-gtools" ,r-gtools)
13366 ("r-pegas" ,r-pegas)))
13367 (home-page "https://cran.r-project.org/web/packages/rmetasim")
13368 (synopsis "Individual-based population genetic simulation environment")
13369 (description
13370 "This package provides an interface between R and the metasim simulation
13371 engine. The simulation environment is documented in: Strand, A.(2002),
13372 Metasim 1.0: an individual-based environment for simulating population
13373 genetics of complex population dynamics.")
13374 ;; Any GPL version
13375 (license license:gpl2+)))
13376
13377 (define-public r-genetics
13378 (package
13379 (name "r-genetics")
13380 (version "1.3.8.1.2")
13381 (source
13382 (origin
13383 (method url-fetch)
13384 (uri (cran-uri "genetics" version))
13385 (sha256
13386 (base32
13387 "1v0ylnia6c44v356dsmnkx6054vcxazpzsrdh3yph5ch5vg6gjrh"))))
13388 (build-system r-build-system)
13389 (propagated-inputs
13390 `(("r-combinat" ,r-combinat)
13391 ("r-gdata" ,r-gdata)
13392 ("r-gtools" ,r-gtools)
13393 ("r-mass" ,r-mass)
13394 ("r-mvtnorm" ,r-mvtnorm)))
13395 (home-page "https://cran.r-project.org/web/packages/genetics/")
13396 (synopsis "Population genetics")
13397 (description
13398 "This package provides classes and methods for handling genetic data.
13399 It includes classes to represent genotypes and haplotypes at single markers up
13400 to multiple markers on multiple chromosomes. Function include allele
13401 frequencies, flagging homo/heterozygotes, flagging carriers of certain
13402 alleles, estimating and testing for Hardy-Weinberg disequilibrium, estimating
13403 and testing for linkage disequilibrium, ...")
13404 ;; Any GPL version.
13405 (license license:gpl2+)))
13406
13407 (define-public r-snp-plotter
13408 (package
13409 (name "r-snp-plotter")
13410 (version "0.5.1")
13411 (source
13412 (origin
13413 (method url-fetch)
13414 (uri (cran-uri "snp.plotter" version))
13415 (sha256
13416 (base32
13417 "16apsqvkah5l0d5qcwp3lq2jspkb6n62wzr0wskmj84jblx483vv"))))
13418 (properties `((upstream-name . "snp.plotter")))
13419 (build-system r-build-system)
13420 (propagated-inputs `(("r-genetics" ,r-genetics)))
13421 (home-page "https://cran.r-project.org/web/packages/snp.plotter/")
13422 (synopsis "Plot p-values using single SNP and/or haplotype data")
13423 (description
13424 "This package helps you create plots of p-values using single SNP and/or
13425 haplotype data. Main features of the package include options to display a
13426 @dfn{linkage disequilibrium} (LD) plot and the ability to plot multiple
13427 datasets simultaneously. Plots can be created using global and/or individual
13428 haplotype p-values along with single SNP p-values. Images are created as
13429 either PDF/EPS files.")
13430 (license license:gpl2+)))
13431
13432 (define-public r-polspline
13433 (package
13434 (name "r-polspline")
13435 (version "1.1.17")
13436 (source
13437 (origin
13438 (method url-fetch)
13439 (uri (cran-uri "polspline" version))
13440 (sha256
13441 (base32 "0c7fnxpqpy3hibiim4yib6l6bq363s97wwvllxp4lp8h06fjcyyn"))))
13442 (build-system r-build-system)
13443 (native-inputs `(("gfortran" ,gfortran)))
13444 (home-page "https://cran.r-project.org/web/packages/polspline/")
13445 (synopsis "Polynomial spline routines")
13446 (description
13447 "This package provides routines for the polynomial spline fitting
13448 routines hazard regression, hazard estimation with flexible tails, logspline,
13449 lspec, polyclass, and polymars.")
13450 (license license:gpl2+)))
13451
13452 (define-public r-rms
13453 (package
13454 (name "r-rms")
13455 (version "5.1-4")
13456 (source
13457 (origin
13458 (method url-fetch)
13459 (uri (cran-uri "rms" version))
13460 (sha256
13461 (base32 "19knh1sw0icw6jh9wfb2hq5jf49i2qfvp9myvqm5paa495689x9q"))))
13462 (build-system r-build-system)
13463 (propagated-inputs
13464 `(("r-ggplot2" ,r-ggplot2)
13465 ("r-hmisc" ,r-hmisc)
13466 ("r-htmltable" ,r-htmltable)
13467 ("r-htmltools" ,r-htmltools)
13468 ("r-lattice" ,r-lattice)
13469 ("r-multcomp" ,r-multcomp)
13470 ("r-nlme" ,r-nlme)
13471 ("r-polspline" ,r-polspline)
13472 ("r-quantreg" ,r-quantreg)
13473 ("r-rpart" ,r-rpart)
13474 ("r-sparsem" ,r-sparsem)
13475 ("r-survival" ,r-survival)))
13476 (native-inputs `(("gfortran" ,gfortran)))
13477 (home-page "http://biostat.mc.vanderbilt.edu/rms")
13478 (synopsis "Regression modeling strategies")
13479 (description
13480 "This is a package for regression modeling, testing, estimation,
13481 validation, graphics, prediction, and typesetting by storing enhanced model
13482 design attributes in the fit. The rms package is a collection of functions
13483 that assist with and streamline modeling. It also contains functions for
13484 binary and ordinal logistic regression models, ordinal models for continuous Y
13485 with a variety of distribution families, and the Buckley-James multiple
13486 regression model for right-censored responses, and implements penalized
13487 maximum likelihood estimation for logistic and ordinary linear models. The
13488 package works with almost any regression model, but it was especially written
13489 to work with binary or ordinal regression models, Cox regression, accelerated
13490 failure time models, ordinary linear models, the Buckley-James model,
13491 generalized least squares for serially or spatially correlated observations,
13492 generalized linear models, and quantile regression.")
13493 (license license:gpl2+)))
13494
13495 (define-public r-haplo-stats
13496 (package
13497 (name "r-haplo-stats")
13498 (version "1.7.9")
13499 (source
13500 (origin
13501 (method url-fetch)
13502 (uri (cran-uri "haplo.stats" version))
13503 (sha256
13504 (base32
13505 "19kxascqq5qz0zdxx0w837ji207y1z2ggxkl4vmlbay03k2dw2mx"))))
13506 (properties `((upstream-name . "haplo.stats")))
13507 (build-system r-build-system)
13508 (propagated-inputs
13509 `(("r-rms" ,r-rms)))
13510 (native-inputs
13511 `(("r-r-rsp" ,r-r-rsp))) ; for vignettes
13512 (home-page "https://www.mayo.edu/research/labs/statistical-genetics-genetic-epidemiology/software")
13513 (synopsis "Analysis of haplotypes when linkage phase is ambiguous")
13514 (description
13515 "This package provides routines for the analysis of indirectly measured
13516 haplotypes. The statistical methods assume that all subjects are unrelated
13517 and that haplotypes are ambiguous (due to unknown linkage phase of the genetic
13518 markers). The main functions are: @code{haplo.em()}, @code{haplo.glm()},
13519 @code{haplo.score()}, and @code{haplo.power()}; all of which have detailed
13520 examples in the vignette.")
13521 (license license:gpl2+)))
13522
13523 (define-public r-bqtl
13524 (package
13525 (name "r-bqtl")
13526 (version "1.0-32")
13527 (source
13528 (origin
13529 (method url-fetch)
13530 (uri (cran-uri "bqtl" version))
13531 (sha256
13532 (base32
13533 "0jjqgsm9fmvz5nkgz608xfljjpmaf4rs4f7kxvpqn4b1l9s5lhci"))))
13534 (build-system r-build-system)
13535 (native-inputs `(("gfortran" ,gfortran)))
13536 (home-page "http://famprevmed.ucsd.edu/faculty/cberry/bqtl/")
13537 (synopsis "Bayesian QTL mapping toolkit")
13538 (description
13539 "This is a QTL mapping toolkit for inbred crosses and recombinant inbred
13540 lines. It includes maximum likelihood and Bayesian tools.")
13541 (license license:gpl2+)))
13542
13543 (define-public r-ibdreg
13544 (package
13545 (name "r-ibdreg")
13546 (version "0.2.5")
13547 (source
13548 (origin
13549 (method url-fetch)
13550 (uri (cran-uri "ibdreg" version))
13551 (sha256
13552 (base32
13553 "1kaa5q1byi30wzr0mw4w2cv1ssxprzcwf91wrpqwkgcsdy7dkh2g"))))
13554 (build-system r-build-system)
13555 (home-page "https://www.mayo.edu/research/labs/\
13556 statistical-genetics-genetic-epidemiology/software")
13557 (synopsis "Regression methods for IBD linkage with covariates")
13558 (description
13559 "This package provides a method to test genetic linkage with covariates
13560 by regression methods with response IBD sharing for relative pairs. Account
13561 for correlations of IBD statistics and covariates for relative pairs within
13562 the same pedigree.")
13563 (license license:gpl2+)))
13564
13565 (define-public r-dlmap
13566 (package
13567 (name "r-dlmap")
13568 (version "1.13")
13569 (source
13570 (origin
13571 (method url-fetch)
13572 (uri (cran-uri "dlmap" version))
13573 (sha256
13574 (base32
13575 "0s6wlkggkm3qndwyvw72xv1n0mcjb7ss3ajbq2ll6rv30splq0db"))))
13576 (build-system r-build-system)
13577 (propagated-inputs
13578 `(("r-ibdreg" ,r-ibdreg)
13579 ("r-mgcv" ,r-mgcv)
13580 ("r-nlme" ,r-nlme)
13581 ("r-qtl" ,r-qtl)
13582 ("r-wgaim" ,r-wgaim)))
13583 (home-page "https://cran.r-project.org/web/packages/dlmap/")
13584 (synopsis "Detection localization mapping for QTL")
13585 (description
13586 "This is package for QTL mapping in a mixed model framework with separate
13587 detection and localization stages. The first stage detects the number of QTL
13588 on each chromosome based on the genetic variation due to grouped markers on
13589 the chromosome; the second stage uses this information to determine the most
13590 likely QTL positions. The mixed model can accommodate general fixed and
13591 random effects, including spatial effects in field trials and pedigree
13592 effects. It is applicable to backcrosses, doubled haploids, recombinant
13593 inbred lines, F2 intercrosses, and association mapping populations.")
13594 (license license:gpl2)))
13595
13596 (define-public r-ldheatmap
13597 (package
13598 (name "r-ldheatmap")
13599 (version "0.99-7")
13600 (source
13601 (origin
13602 (method url-fetch)
13603 (uri (cran-uri "LDheatmap" version))
13604 (sha256
13605 (base32
13606 "1r0j8bihi5z1x0sgaf7dwzpsw9i0nc1vylvipvc0cia2ka1lr9dc"))))
13607 (properties `((upstream-name . "LDheatmap")))
13608 (build-system r-build-system)
13609 (propagated-inputs
13610 `(("r-genetics" ,r-genetics)
13611 ("r-rcpp" ,r-rcpp)
13612 ("r-snpstats" ,r-snpstats)))
13613 (home-page "https://stat.sfu.ca/statgen/research/ldheatmap.html")
13614 (synopsis "Graphical display of pairwise linkage disequilibria between SNPs")
13615 (description
13616 "This package provides tools to produce a graphical display, as a heat
13617 map, of measures of pairwise linkage disequilibria between SNPs. Users may
13618 optionally include the physical locations or genetic map distances of each SNP
13619 on the plot.")
13620 (license license:gpl3)))
13621
13622 (define-public r-hwde
13623 (package
13624 (name "r-hwde")
13625 (version "0.67")
13626 (source
13627 (origin
13628 (method url-fetch)
13629 (uri (cran-uri "hwde" version))
13630 (sha256
13631 (base32
13632 "0wb2f9i5qi7w77ygh8bvydfpr7j5x8dyvnnhdkajaz0wdcpkyaqy"))))
13633 (build-system r-build-system)
13634 (home-page "https://cran.r-project.org/web/packages/hwde/")
13635 (synopsis "Models and tests for departure from Hardy-Weinberg equilibrium")
13636 (description
13637 "This package fits models for genotypic disequilibria, as described in
13638 Huttley and Wilson (2000), Weir (1996) and Weir and Wilson (1986). Contrast
13639 terms are available that account for first order interactions between loci.
13640 It also implements, for a single locus in a single population, a conditional
13641 exact test for Hardy-Weinberg equilibrium.")
13642 (license license:gpl2+)))
13643
13644 (define-public r-tdthap
13645 (package
13646 (name "r-tdthap")
13647 (version "1.1-11")
13648 (source
13649 (origin
13650 (method url-fetch)
13651 (uri (cran-uri "tdthap" version))
13652 (sha256
13653 (base32
13654 "15qlj2bivvz3pizd8dq34wczbkbxhzqh3cqp1ixkdkprlyvcxj5k"))))
13655 (build-system r-build-system)
13656 (home-page "https://cran.r-project.org/web/packages/tdthap/")
13657 (synopsis "TDT tests for extended haplotypes")
13658 (description
13659 "Functions and examples are provided for transmission/disequilibrium
13660 tests for extended marker haplotypes, as in Clayton, D. and Jones, H. (1999)
13661 \"Transmission/disequilibrium tests for extended marker haplotypes\".")
13662 (license license:artistic2.0)))
13663
13664 (define-public r-sparql
13665 (package
13666 (name "r-sparql")
13667 (version "1.16")
13668 (source (origin
13669 (method url-fetch)
13670 (uri (cran-uri "SPARQL" version))
13671 (sha256
13672 (base32
13673 "0gak1q06yyhdmcxb2n3v0h9gr1vqd0viqji52wpw211qp6r6dcrc"))))
13674 (properties `((upstream-name . "SPARQL")))
13675 (build-system r-build-system)
13676 (propagated-inputs
13677 `(("r-rcurl" ,r-rcurl)
13678 ("r-xml" ,r-xml)))
13679 (home-page "https://cran.r-project.org/web/packages/SPARQL")
13680 (synopsis "SPARQL client for R")
13681 (description "This package provides an interface to use SPARQL to pose
13682 SELECT or UPDATE queries to an end-point.")
13683 ;; The only license indication is found in the DESCRIPTION file,
13684 ;; which states GPL-3. So we cannot assume GPLv3+.
13685 (license license:gpl3)))
13686
13687 (define-public r-bookdown
13688 (package
13689 (name "r-bookdown")
13690 (version "0.18")
13691 (source (origin
13692 (method url-fetch)
13693 (uri (cran-uri "bookdown" version))
13694 (sha256
13695 (base32
13696 "1my6g16phx21v5cvfqcnjibh3zcv02xkix347aafd6a7r3hnxpq5"))))
13697 (build-system r-build-system)
13698 (propagated-inputs
13699 `(("r-htmltools" ,r-htmltools)
13700 ("r-knitr" ,r-knitr)
13701 ("r-rmarkdown" ,r-rmarkdown)
13702 ("r-tinytex" ,r-tinytex)
13703 ("r-xfun" ,r-xfun)
13704 ("pandoc" ,ghc-pandoc)))
13705 (home-page "https://github.com/rstudio/bookdown")
13706 (synopsis "Authoring books and technical documents with R markdown")
13707 (description "This package provides output formats and utilities for
13708 authoring books and technical documents with R Markdown.")
13709 (license license:gpl3)))
13710
13711 (define-public r-optparse
13712 (package
13713 (name "r-optparse")
13714 (version "1.6.4")
13715 (source
13716 (origin
13717 (method url-fetch)
13718 (uri (cran-uri "optparse" version))
13719 (sha256
13720 (base32
13721 "0wyrc42ja3ab5szx46zmz8lm7vzfqxkjca0m0sms8g9hqbmmay6d"))))
13722 (build-system r-build-system)
13723 (propagated-inputs
13724 `(("r-getopt" ,r-getopt)))
13725 (home-page "https://github.com/trevorld/optparse")
13726 (synopsis "Command line option parser")
13727 (description
13728 "This package provides a command line parser inspired by Python's
13729 @code{optparse} library to be used with Rscript to write shebang scripts
13730 that accept short and long options.")
13731 (license license:gpl2+)))
13732
13733 (define-public r-wgcna
13734 (package
13735 (name "r-wgcna")
13736 (version "1.69")
13737 (source
13738 (origin
13739 (method url-fetch)
13740 (uri (cran-uri "WGCNA" version))
13741 (sha256
13742 (base32
13743 "022hkprnrafvggi8pkjffkvk1qlnibmbbxxrni00wkrdbga5589f"))))
13744 (properties `((upstream-name . "WGCNA")))
13745 (build-system r-build-system)
13746 (propagated-inputs
13747 `(("r-annotationdbi" ,r-annotationdbi)
13748 ("r-doparallel" ,r-doparallel)
13749 ("r-dynamictreecut" ,r-dynamictreecut)
13750 ("r-fastcluster" ,r-fastcluster)
13751 ("r-foreach" ,r-foreach)
13752 ("r-go-db" ,r-go-db)
13753 ("r-hmisc" ,r-hmisc)
13754 ("r-impute" ,r-impute)
13755 ("r-rcpp" ,r-rcpp)
13756 ("r-survival" ,r-survival)
13757 ("r-matrixstats" ,r-matrixstats)
13758 ("r-preprocesscore" ,r-preprocesscore)))
13759 (home-page
13760 "http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/Rpackages/WGCNA/")
13761 (synopsis "Weighted correlation network analysis")
13762 (description
13763 "This package provides functions necessary to perform Weighted
13764 Correlation Network Analysis on high-dimensional data. It includes functions
13765 for rudimentary data cleaning, construction and summarization of correlation
13766 networks, module identification and functions for relating both variables and
13767 modules to sample traits. It also includes a number of utility functions for
13768 data manipulation and visualization.")
13769 (license license:gpl2+)))
13770
13771 (define-public r-kernlab
13772 (package
13773 (name "r-kernlab")
13774 (version "0.9-29")
13775 (source
13776 (origin
13777 (method url-fetch)
13778 (uri (cran-uri "kernlab" version))
13779 (sha256
13780 (base32 "0vqhndl4zm7pvkfvq0f6i9cbrm7pij6kmdp7d7w39pa100x6knn3"))))
13781 (build-system r-build-system)
13782 (home-page "https://cran.r-project.org/web/packages/kernlab")
13783 (synopsis "Kernel-based machine learning tools")
13784 (description
13785 "This package provides kernel-based machine learning methods for
13786 classification, regression, clustering, novelty detection, quantile regression
13787 and dimensionality reduction. Among other methods @code{kernlab} includes
13788 Support Vector Machines, Spectral Clustering, Kernel PCA, Gaussian Processes
13789 and a QP solver.")
13790 (license license:gpl2)))
13791
13792 (define-public r-hierfstat
13793 (package
13794 (name "r-hierfstat")
13795 (version "0.04-22")
13796 (source
13797 (origin
13798 (method url-fetch)
13799 (uri (cran-uri "hierfstat" version))
13800 (sha256
13801 (base32
13802 "1fav2v2996v5kb1ffa6v5wxfm921syxg6as034vd3j4jfhdibyfx"))))
13803 (build-system r-build-system)
13804 (propagated-inputs
13805 `(("r-ade4" ,r-ade4)
13806 ("r-adegenet" ,r-adegenet)
13807 ("r-gtools" ,r-gtools)))
13808 (home-page "https://cran.r-project.org/web/packages/hierfstat/")
13809 (synopsis "Estimation and tests of hierarchical F-statistics")
13810 (description
13811 "This package allows the estimation of hierarchical F-statistics from
13812 haploid or diploid genetic data with any numbers of levels in the hierarchy,
13813 following the algorithm of Yang (Evolution, 1998, 52(4):950-956). Functions
13814 are also given to test via randomisations the significance of each F and
13815 variance components, using the likelihood-ratio statistics G.")
13816 (license license:gpl2+)))
13817
13818 (define-public r-hapassoc
13819 (package
13820 (name "r-hapassoc")
13821 (version "1.2-8")
13822 (source
13823 (origin
13824 (method url-fetch)
13825 (uri (cran-uri "hapassoc" version))
13826 (sha256
13827 (base32
13828 "0qs5jl0snzfchgpp6pabncwywxcmi743g91jvjiyyzw0lw85yv4s"))))
13829 (build-system r-build-system)
13830 (home-page "https://stat.sfu.ca/statgen/research/hapassoc.html")
13831 (synopsis "Inference of trait associations with SNP haplotypes")
13832 (description
13833 "Hapassoc performs likelihood inference of trait associations with
13834 haplotypes and other covariates in @dfn{generalized linear models} (GLMs). The
13835 functions are developed primarily for data collected in cohort or
13836 cross-sectional studies. They can accommodate uncertain haplotype phase and
13837 handle missing genotypes at some SNPs.")
13838 (license license:gpl2)))
13839
13840 (define-public r-sampling
13841 (package
13842 (name "r-sampling")
13843 (version "2.8")
13844 (source
13845 (origin
13846 (method url-fetch)
13847 (uri (cran-uri "sampling" version))
13848 (sha256
13849 (base32
13850 "06pj7dan0mknpsblmlnk7am78qrnwgnql5vvx7vmbfvib7rj6s9m"))))
13851 (build-system r-build-system)
13852 (propagated-inputs
13853 `(("r-lpsolve" ,r-lpsolve)
13854 ("r-mass" ,r-mass)))
13855 (home-page "https://cran.r-project.org/web/packages/sampling/")
13856 (synopsis "Survey sampling")
13857 (description
13858 "This package provides functions for drawing and calibrating samples.")
13859 (license license:gpl2+)))
13860
13861 (define-public r-r2html
13862 (package
13863 (name "r-r2html")
13864 (version "2.3.2")
13865 (source
13866 (origin
13867 (method url-fetch)
13868 (uri (cran-uri "R2HTML" version))
13869 (sha256
13870 (base32
13871 "00kxny7hajs9r2kw63qk7d03ggdxx2j1g8vbrmzp806y8aczvik9"))))
13872 (properties `((upstream-name . "R2HTML")))
13873 (build-system r-build-system)
13874 (home-page "https://github.com/nalimilan/R2HTML")
13875 (synopsis "HTML export for R objects")
13876 (description
13877 "This package includes HTML functions and methods to write in an HTML
13878 file. Thus, making HTML reports is easy. It includes a function that allows
13879 redirection on the fly, which appears to be very useful for teaching purposes,
13880 as the student can keep a copy of the produced output to keep all that they
13881 did during the course. The package comes with a vignette describing how to
13882 write HTML reports for statistical analysis. Finally, a driver for Sweave
13883 parses HTML flat files containing R code and to automatically write
13884 the corresponding outputs (tables and graphs).")
13885 (license license:gpl2+)))
13886
13887 (define-public r-rjava
13888 (package
13889 (name "r-rjava")
13890 (version "0.9-12")
13891 (source
13892 (origin
13893 (method url-fetch)
13894 (uri (cran-uri "rJava" version))
13895 (sha256
13896 (base32
13897 "03vv0pj6san03c51iyqsyb1rwh3097dfpl2s8iswzzmc7k3shj12"))))
13898 (properties `((upstream-name . "rJava")))
13899 (build-system r-build-system)
13900 (arguments
13901 `(#:modules ((guix build utils)
13902 (guix build r-build-system)
13903 (ice-9 match))
13904 #:phases
13905 (modify-phases %standard-phases
13906 (add-after 'unpack 'set-JAVA_HOME
13907 (lambda* (#:key inputs #:allow-other-keys)
13908 (let ((jdk (assoc-ref inputs "jdk")))
13909 (setenv "JAVA_HOME" jdk)
13910 (setenv "JAVA" (which "java"))
13911 (setenv "JAR" (which "jar"))
13912 (setenv "JAVAC" (which "javac"))
13913 (setenv "JAVAH" (which "javah"))
13914 (setenv "JAVA_CPPFLAGS"
13915 (string-append "-I" jdk "/include "
13916 "-I" jdk "/include/linux"))
13917 (match (find-files (string-append jdk "/jre/lib/") "libjvm.so")
13918 ((lib) (setenv "JAVA_LIBS" lib))
13919 (_ (error "Could not find libjvm.so"))))
13920 #t)))))
13921 (inputs
13922 `(("icu4c" ,icu4c)
13923 ("jdk" ,icedtea-8 "jdk")
13924 ("pcre" ,pcre)
13925 ("zlib" ,zlib)))
13926 (home-page "https://www.rforge.net/rJava/")
13927 (synopsis "Low-Level R to Java interface")
13928 (description
13929 "This package provides a low-level interface to the Java VM very much
13930 like .C/.Call and friends. It allows the creation of objects, calling methods
13931 and accessing fields.")
13932 (license license:gpl2)))
13933
13934 (define-public r-svmisc
13935 (package
13936 (name "r-svmisc")
13937 (version "1.1.0")
13938 (source
13939 (origin
13940 (method url-fetch)
13941 (uri (cran-uri "svMisc" version))
13942 (sha256
13943 (base32
13944 "01r2a73wx2sh1njky961fxabx5wgddqqjqba6vjg0f3h8r3abmn2"))))
13945 (properties `((upstream-name . "svMisc")))
13946 (build-system r-build-system)
13947 (home-page "https://github.com/SciViews/svMisc")
13948 (synopsis "Miscellaneous functions for SciViews")
13949 (description
13950 "This package provides miscellaneous functions for SciViews or general
13951 use, including tools to manage a temporary environment attached to the search
13952 path for temporary variables you do not want to @code{save()} or
13953 @code{load()}; test the current platform; showing progress bars, etc.")
13954 (license license:gpl2)))
13955
13956 (define-public r-xyz
13957 (package
13958 (name "r-xyz")
13959 (version "0.2")
13960 (source
13961 (origin
13962 (method url-fetch)
13963 (uri (cran-uri "xyz" version))
13964 (sha256
13965 (base32
13966 "13w4sb4pvgciwr8wsz785dafj2k2kpx7znz46r5d32wx88vkycp4"))))
13967 (build-system r-build-system)
13968 (propagated-inputs
13969 `(("r-rcpp" ,r-rcpp)))
13970 (home-page "https://cran.r-project.org/web/packages/xyz/")
13971 (synopsis "Algorithm for fast interaction search in high-dimensional data")
13972 (description
13973 "High dimensional interaction search by brute force requires a quadratic
13974 computational cost in the number of variables. The xyz algorithm provably
13975 finds strong interactions in almost linear time. For details of the algorithm
13976 see: G. Thanei, N. Meinshausen and R. Shah (2016). The xyz algorithm for fast
13977 interaction search in high-dimensional data.")
13978 ;; Any version of the GPL.
13979 (license license:gpl2+)))
13980
13981 (define-public r-rttf2pt1
13982 (package
13983 (name "r-rttf2pt1")
13984 (version "1.3.8")
13985 (source
13986 (origin
13987 (method url-fetch)
13988 (uri (cran-uri "Rttf2pt1" version))
13989 (sha256
13990 (base32
13991 "0b3f2zkmbyshn19cnaaf042d0zwf43l9jnkqizfhxxwb93a4c1jn"))))
13992 (properties `((upstream-name . "Rttf2pt1")))
13993 (build-system r-build-system)
13994 (home-page "https://github.com/wch/Rttf2pt1")
13995 (synopsis "Font conversion utility")
13996 (description
13997 "This package contains the program @code{ttf2pt1}, for use with the
13998 @code{extrafont} package.")
13999 ;; Most of the files are covered under the Expat license. Some files are
14000 ;; covered under BSD-3. Deviations for individual files are recorded in
14001 ;; the LICENSE file.
14002 (license (list license:bsd-3 license:expat
14003 (license:non-copyleft "file://LICENSE")))))
14004
14005 (define-public r-extrafontdb
14006 (package
14007 (name "r-extrafontdb")
14008 (version "1.0")
14009 (source
14010 (origin
14011 (method url-fetch)
14012 (uri (cran-uri "extrafontdb" version))
14013 (sha256
14014 (base32
14015 "115n42hfvv5h4nn4cfkfmkmn968py4lpy8zd0d6w5yylwpzbm8gs"))))
14016 (build-system r-build-system)
14017 (home-page "https://github.com/wch/extrafontdb")
14018 (synopsis "Database for the extrafont package")
14019 (description
14020 "This package holds the database for the @code{extrafont} package.")
14021 (license license:gpl2)))
14022
14023 (define-public r-extrafont
14024 (package
14025 (name "r-extrafont")
14026 (version "0.17")
14027 (source
14028 (origin
14029 (method url-fetch)
14030 (uri (cran-uri "extrafont" version))
14031 (sha256
14032 (base32
14033 "0b9k2n9sk23bh45hjgnkxpjyvpdrz1hx7kmxvmb4nhlhm1wpsv9g"))))
14034 (build-system r-build-system)
14035 (propagated-inputs
14036 `(("r-extrafontdb" ,r-extrafontdb)
14037 ("r-rttf2pt1" ,r-rttf2pt1)))
14038 (home-page "https://github.com/wch/extrafont")
14039 (synopsis "Tools for using fonts in R")
14040 (description
14041 "The extrafont package makes it easier to use fonts other than the basic
14042 PostScript fonts that R uses. Fonts that are imported into extrafont can be
14043 used with PDF or PostScript output files. There are two hurdles for using
14044 fonts in PDF (or Postscript) output files:
14045
14046 @enumerate
14047 @item Making R aware of the font and the dimensions of the characters.
14048 @item Embedding the fonts in the PDF file so that the PDF can be displayed
14049 properly on a device that doesn't have the font. This is usually needed if
14050 you want to print the PDF file or share it with others.
14051 @end enumerate
14052
14053 The extrafont package makes both of these things easier.")
14054 (license license:gpl2)))
14055
14056 (define-public r-xkcd
14057 (package
14058 (name "r-xkcd")
14059 (version "0.0.6")
14060 (source
14061 (origin
14062 (method url-fetch)
14063 (uri (cran-uri "xkcd" version))
14064 (sha256
14065 (base32
14066 "1z2y0ihn68ppay7xkglhw7djki5654g6z4bbpyy41if57z9q554f"))))
14067 (build-system r-build-system)
14068 (propagated-inputs
14069 `(("r-extrafont" ,r-extrafont)
14070 ("r-ggplot2" ,r-ggplot2)
14071 ("r-hmisc" ,r-hmisc)))
14072 (home-page "https://cran.r-project.org/web/packages/xkcd/")
14073 (synopsis "Plot ggplot2 graphics in the XKCD style")
14074 (description
14075 "This package provides the means to plot ggplot2 graphs in the style of
14076 the XKCD web comic.")
14077 (license license:gpl3)))
14078
14079 (define-public r-msigdbr
14080 (package
14081 (name "r-msigdbr")
14082 (version "7.0.1")
14083 (source
14084 (origin
14085 (method url-fetch)
14086 (uri (cran-uri "msigdbr" version))
14087 (sha256
14088 (base32
14089 "19p8z617m3my8la7n1qgb1s2msf940r372im3q30qkbcx3qxg3sd"))))
14090 (build-system r-build-system)
14091 (propagated-inputs
14092 `(("r-dplyr" ,r-dplyr)
14093 ("r-magrittr" ,r-magrittr)
14094 ("r-rlang" ,r-rlang)
14095 ("r-tibble" ,r-tibble)))
14096 (home-page "https://github.com/igordot/msigdbr")
14097 (synopsis "MSigDB gene sets for multiple organisms")
14098 (description
14099 "This package provides the @dfn{Molecular Signatures Database} (MSigDB)
14100 gene sets typically used with the @dfn{Gene Set Enrichment Analysis} (GSEA)
14101 software in a standard R data frame with key-value pairs. Included are the
14102 original human gene symbols and Entrez IDs as well as the equivalents for
14103 various frequently studied model organisms such as mouse, rat, pig, fly, and
14104 yeast.")
14105 ;; The package is covered under the Expat license, but the upstream MSigDB
14106 ;; files are made available under the Creative Commons Attribution 4.0
14107 ;; International license.
14108 (license (list license:expat license:cc-by4.0))))
14109
14110 (define-public r-gridgraphics
14111 (package
14112 (name "r-gridgraphics")
14113 (version "0.5-0")
14114 (source
14115 (origin
14116 (method url-fetch)
14117 (uri (cran-uri "gridGraphics" version))
14118 (sha256
14119 (base32
14120 "0rlyc3xk8kfrfzbfd8n4javq3yxqd7lsfmi4q5n6s61srnrl6c1r"))))
14121 (properties `((upstream-name . "gridGraphics")))
14122 (build-system r-build-system)
14123 (home-page "https://github.com/pmur002/gridgraphics")
14124 (synopsis "Redraw base graphics using @code{grid} graphics")
14125 (description
14126 "This package provides functions to convert a page of plots drawn with
14127 the @code{graphics} package into identical output drawn with the @code{grid}
14128 package. The result looks like the original @code{graphics}-based plot, but
14129 consists of @code{grid} grobs and viewports that can then be manipulated with
14130 @code{grid} functions (e.g., edit grobs and revisit viewports).")
14131 (license license:gpl2+)))
14132
14133 (define-public r-farver
14134 (package
14135 (name "r-farver")
14136 (version "2.0.3")
14137 (source
14138 (origin
14139 (method url-fetch)
14140 (uri (cran-uri "farver" version))
14141 (sha256
14142 (base32
14143 "1k75v07dsfkjra2gsgxg9s55cw3b46b1nh960kqphq7cg7gr058f"))))
14144 (build-system r-build-system)
14145 (home-page "https://github.com/thomasp85/farver")
14146 (synopsis "Vectorized color conversion and comparison")
14147 (description
14148 "The encoding of color can be handled in many different ways, using
14149 different color spaces. As different color spaces have different uses,
14150 efficient conversion between these representations are important. This
14151 package provides a set of functions that gives access to very fast color space
14152 conversion and comparisons implemented in C++, and offers 100-fold speed
14153 improvements over the @code{convertColor} function in the @code{grDevices}
14154 package.")
14155 (license license:expat)))
14156
14157 (define-public r-ggplotify
14158 (package
14159 (name "r-ggplotify")
14160 (version "0.0.5")
14161 (source
14162 (origin
14163 (method url-fetch)
14164 (uri (cran-uri "ggplotify" version))
14165 (sha256
14166 (base32
14167 "0pfnp4lrissf21z7867kdm6slr979kchyva8iaf83i1302kscph3"))))
14168 (build-system r-build-system)
14169 (propagated-inputs
14170 `(("r-ggplot2" ,r-ggplot2)
14171 ("r-gridgraphics" ,r-gridgraphics)
14172 ("r-rvcheck" ,r-rvcheck)))
14173 (native-inputs
14174 `(("r-knitr" ,r-knitr)))
14175 (home-page "https://github.com/GuangchuangYu/ggplotify")
14176 (synopsis "Convert plots to @code{grob} or @code{ggplot} object")
14177 (description
14178 "This package provides tools to convert plot function calls (using
14179 expression or formula) to @code{grob} or @code{ggplot} objects that are
14180 compatible with the @code{grid} and @code{ggplot2} environment. With this
14181 package, we are able to e.g. use @code{cowplot} to align plots produced by
14182 @code{base} graphics, @code{grid}, @code{lattice}, @code{vcd} etc. by
14183 converting them to @code{ggplot} objects.")
14184 (license license:artistic2.0)))
14185
14186 (define-public r-triebeard
14187 (package
14188 (name "r-triebeard")
14189 (version "0.3.0")
14190 (source
14191 (origin
14192 (method url-fetch)
14193 (uri (cran-uri "triebeard" version))
14194 (sha256
14195 (base32
14196 "1hqyz57gph02c9fdc07lxz113bbklif3g18sw8jan6pakhhdc7dz"))))
14197 (build-system r-build-system)
14198 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
14199 (home-page "https://github.com/Ironholds/triebeard/")
14200 (synopsis "Radix trees in Rcpp")
14201 (description
14202 "Radix trees, or tries, are key-value data structures optimized for
14203 efficient lookups, similar in purpose to hash tables. This package provides
14204 an implementation of radix trees for use in R programming and in developing
14205 packages with Rcpp.")
14206 (license license:expat)))
14207
14208 (define-public r-tweenr
14209 (package
14210 (name "r-tweenr")
14211 (version "1.0.1")
14212 (source
14213 (origin
14214 (method url-fetch)
14215 (uri (cran-uri "tweenr" version))
14216 (sha256
14217 (base32
14218 "0sq90pbln6lkc2q3zflhkxxwpqdw5dd7igrxhdnlynkdrmi83mpg"))))
14219 (build-system r-build-system)
14220 (propagated-inputs
14221 `(("r-farver" ,r-farver)
14222 ("r-magrittr" ,r-magrittr)
14223 ("r-rcpp" ,r-rcpp)
14224 ("r-rlang" ,r-rlang)))
14225 (home-page "https://github.com/thomasp85/tweenr")
14226 (synopsis "Interpolate data for smooth animations")
14227 (description
14228 "In order to create smooth animation between states of data, tweening is
14229 necessary. This package provides a range of functions for creating tweened
14230 data that can be used as basis for animation. Furthermore it adds a number of
14231 vectorized interpolaters for common R data types such as numeric, date and
14232 color.")
14233 (license license:expat)))
14234
14235 (define-public r-polyclip
14236 (package
14237 (name "r-polyclip")
14238 (version "1.10-0")
14239 (source
14240 (origin
14241 (method url-fetch)
14242 (uri (cran-uri "polyclip" version))
14243 (sha256
14244 (base32
14245 "0jyk4maqiblvj095jd59dr76kbniyli3v3xvy0a72ljszq6vrnkl"))))
14246 (build-system r-build-system)
14247 (native-inputs `(("pkg-config" ,pkg-config)))
14248 (home-page "http://www.angusj.com/delphi/clipper.php")
14249 (synopsis "Polygon clipping")
14250 (description
14251 "This package provides an R port of the library Clipper. It performs
14252 polygon clipping operations (intersection, union, set minus, set difference)
14253 for polygonal regions of arbitrary complexity, including holes. It computes
14254 offset polygons (spatial buffer zones, morphological dilations, Minkowski
14255 dilations) for polygonal regions and polygonal lines. It computes the
14256 Minkowski Sum of general polygons. There is a function for removing
14257 self-intersections from polygon data.")
14258 (license license:boost1.0)))
14259
14260 (define-public r-urltools
14261 (package
14262 (name "r-urltools")
14263 (version "1.7.3")
14264 (source
14265 (origin
14266 (method url-fetch)
14267 (uri (cran-uri "urltools" version))
14268 (sha256
14269 (base32
14270 "04x3my655dd287cbsszbnf75q0swmjlxxrblcsay7a8n3df3a830"))))
14271 (build-system r-build-system)
14272 (propagated-inputs
14273 `(("r-rcpp" ,r-rcpp)
14274 ("r-triebeard" ,r-triebeard)))
14275 (home-page "https://github.com/Ironholds/urltools/")
14276 (synopsis "Vectorized tools for URL handling and parsing")
14277 (description
14278 "This package provides a toolkit for all URL-handling needs, including
14279 encoding and decoding, parsing, parameter extraction and modification. All
14280 functions are designed to be both fast and entirely vectorized. It is
14281 intended to be useful for people dealing with web-related datasets, such as
14282 server-side logs, although may be useful for other situations involving large
14283 sets of URLs.")
14284 (license license:expat)))
14285
14286 (define-public r-ggforce
14287 (package
14288 (name "r-ggforce")
14289 (version "0.3.1")
14290 (source
14291 (origin
14292 (method url-fetch)
14293 (uri (cran-uri "ggforce" version))
14294 (sha256
14295 (base32
14296 "04926cqrda6psvy2nzkkw4czwyxdp7fnxg76byp14v12kgd72lm0"))))
14297 (build-system r-build-system)
14298 (propagated-inputs
14299 `(("r-ggplot2" ,r-ggplot2)
14300 ("r-gtable" ,r-gtable)
14301 ("r-mass" ,r-mass)
14302 ("r-polyclip" ,r-polyclip)
14303 ("r-rcpp" ,r-rcpp)
14304 ("r-rcppeigen" ,r-rcppeigen)
14305 ("r-rlang" ,r-rlang)
14306 ("r-scales" ,r-scales)
14307 ("r-tidyselect" ,r-tidyselect)
14308 ("r-tweenr" ,r-tweenr)
14309 ("r-withr" ,r-withr)))
14310 (home-page "https://ggforce.data-imaginist.com")
14311 (synopsis "Accelerating ggplot2")
14312 (description
14313 "The aim of the ggplot2 package is to aid in visual data investigations.
14314 This focus has led to a lack of facilities for composing specialized plots.
14315 Thi package aims to be a collection of mainly new statistics and geometries
14316 that fills this gap.")
14317 (license license:expat)))
14318
14319 (define-public r-europepmc
14320 (package
14321 (name "r-europepmc")
14322 (version "0.3")
14323 (source
14324 (origin
14325 (method url-fetch)
14326 (uri (cran-uri "europepmc" version))
14327 (sha256
14328 (base32
14329 "1ngqs1sqzkbwv98dd5z4cxj8bnz41wyd0g060a2vpqi3s99s4i2h"))))
14330 (build-system r-build-system)
14331 (propagated-inputs
14332 `(("r-dplyr" ,r-dplyr)
14333 ("r-httr" ,r-httr)
14334 ("r-jsonlite" ,r-jsonlite)
14335 ("r-plyr" ,r-plyr)
14336 ("r-progress" ,r-progress)
14337 ("r-purrr" ,r-purrr)
14338 ("r-urltools" ,r-urltools)
14339 ("r-xml2" ,r-xml2)))
14340 (home-page "https://github.com/ropensci/europepmc/")
14341 (synopsis "R Interface to the Europe PubMed Central RESTful Web Service")
14342 (description
14343 "This package provides an R Client for the
14344 @url{https://europepmc.org/RestfulWebService,Europe PubMed Central RESTful Web
14345 Service}. It gives access to both metadata on life science literature and
14346 open access full texts. Europe PMC indexes all PubMed content and other
14347 literature sources including Agricola, a bibliographic database of citations
14348 to the agricultural literature, or Biological Patents. In addition to
14349 bibliographic metadata, the client allows users to fetch citations and
14350 reference lists. Links between life-science literature and other EBI
14351 databases, including ENA, PDB or ChEMBL are also accessible.")
14352 (license license:gpl3)))
14353
14354 (define-public r-ggraph
14355 (package
14356 (name "r-ggraph")
14357 (version "2.0.2")
14358 (source
14359 (origin
14360 (method url-fetch)
14361 (uri (cran-uri "ggraph" version))
14362 (sha256
14363 (base32
14364 "1ckq82hg52vr2wydkqv2wrppgjyvddd6bwqzrngqlm7j71xapjl0"))))
14365 (build-system r-build-system)
14366 (propagated-inputs
14367 `(("r-digest" ,r-digest)
14368 ("r-dplyr" ,r-dplyr)
14369 ("r-ggforce" ,r-ggforce)
14370 ("r-ggplot2" ,r-ggplot2)
14371 ("r-ggrepel" ,r-ggrepel)
14372 ("r-graphlayouts" ,r-graphlayouts)
14373 ("r-gtable" ,r-gtable)
14374 ("r-igraph" ,r-igraph)
14375 ("r-mass" ,r-mass)
14376 ("r-rcpp" ,r-rcpp)
14377 ("r-rlang" ,r-rlang)
14378 ("r-scales" ,r-scales)
14379 ("r-tidygraph" ,r-tidygraph)
14380 ("r-viridis" ,r-viridis)))
14381 (native-inputs
14382 `(("r-knitr" ,r-knitr)))
14383 (home-page "https://cran.r-project.org/web/packages/ggraph/")
14384 (synopsis "Implementation of grammar of graphics for graphs and networks")
14385 (description
14386 "The grammar of graphics as implemented in ggplot2 is a poor fit for
14387 graph and network visualizations due to its reliance on tabular data input.
14388 The ggraph package is an extension of the ggplot2 API tailored to graph
14389 visualizations and provides the same flexible approach to building up plots
14390 layer by layer.")
14391 (license license:gpl3)))
14392
14393 (define-public r-varselrf
14394 (package
14395 (name "r-varselrf")
14396 (version "0.7-8")
14397 (source
14398 (origin
14399 (method url-fetch)
14400 (uri (cran-uri "varSelRF" version))
14401 (sha256
14402 (base32
14403 "0h49rl1j13yfh97rsfsyh9s2c4wajny4rzms2qw77d0cavxqg53i"))))
14404 (properties `((upstream-name . "varSelRF")))
14405 (build-system r-build-system)
14406 (propagated-inputs
14407 `(("r-randomforest" ,r-randomforest)))
14408 (home-page "https://www.ligarto.org/rdiaz/software/software")
14409 (synopsis "Variable selection using random forests")
14410 (description
14411 "This package provides tools for the variable selection from random
14412 forests using both backwards variable elimination (for the selection of small
14413 sets of non-redundant variables) and selection based on the importance
14414 spectrum (somewhat similar to scree plots; for the selection of large,
14415 potentially highly-correlated variables). The main applications are in
14416 high-dimensional data (e.g., microarray data, and other genomics and
14417 proteomics applications).")
14418 (license license:gpl2+)))
14419
14420 (define-public r-pamr
14421 (package
14422 (name "r-pamr")
14423 (version "1.56.1")
14424 (source
14425 (origin
14426 (method url-fetch)
14427 (uri (cran-uri "pamr" version))
14428 (sha256
14429 (base32
14430 "0ycpgkk23y3zzkb42n2skcyl35ps1n7jmyzfj7pbxr3f6gr2grfh"))))
14431 (build-system r-build-system)
14432 (propagated-inputs
14433 `(("r-cluster" ,r-cluster)
14434 ("r-survival" ,r-survival)))
14435 (native-inputs `(("gfortran" ,gfortran)))
14436 (home-page "https://cran.r-project.org/web/packages/pamr/")
14437 (synopsis "Prediction Analysis for Microarrays")
14438 (description
14439 "This package provides some functions for sample classification in
14440 microarrays.")
14441 (license license:gpl2)))
14442
14443 (define-public r-rda
14444 (package
14445 (name "r-rda")
14446 (version "1.0.2-2.1")
14447 (source
14448 (origin
14449 (method url-fetch)
14450 (uri (cran-uri "rda" version))
14451 (sha256
14452 (base32
14453 "1y4fawslr3i6crjaxhsdb47kfsqkyszdx6avq3r5far5a4pvc639"))))
14454 (build-system r-build-system)
14455 (home-page "https://cran.r-project.org/web/packages/rda/")
14456 (synopsis "Shrunken centroids regularized discriminant analysis")
14457 (description
14458 "This package provides tools for shrunken centroids regularized
14459 discriminant analysis for the purpose of classifying high dimensional data.")
14460 (license license:gpl2+)))
14461
14462 (define-public r-ggvis
14463 (package
14464 (name "r-ggvis")
14465 (version "0.4.5")
14466 (source
14467 (origin
14468 (method url-fetch)
14469 (uri (cran-uri "ggvis" version))
14470 (sha256
14471 (base32
14472 "091i9f17912j8qcyxppjgwzjnyqj7769ixs9d2gjg6f2clskqdw2"))))
14473 (build-system r-build-system)
14474 (propagated-inputs
14475 `(("r-assertthat" ,r-assertthat)
14476 ("r-dplyr" ,r-dplyr)
14477 ("r-htmltools" ,r-htmltools)
14478 ("r-jsonlite" ,r-jsonlite)
14479 ("r-lazyeval" ,r-lazyeval)
14480 ("r-magrittr" ,r-magrittr)
14481 ("r-shiny" ,r-shiny)))
14482 (home-page "https://ggvis.rstudio.com/")
14483 (synopsis "Interactive grammar of graphics")
14484 (description
14485 "This package is a data visualization package for R providing an
14486 implementation of an interactive grammar of graphics, taking the best parts of
14487 ggplot2, combining them with the reactive framework of Shiny and drawing web
14488 graphics using Vega.")
14489 (license license:gpl2)))
14490
14491 (define-public r-gbm
14492 (package
14493 (name "r-gbm")
14494 (version "2.1.5")
14495 (source
14496 (origin
14497 (method url-fetch)
14498 (uri (cran-uri "gbm" version))
14499 (sha256
14500 (base32
14501 "0vs6ljaqhwwpgr8wlbhmm4v147rd82kl16rpaijqiylxcc8dxyq6"))))
14502 (build-system r-build-system)
14503 (propagated-inputs
14504 `(("r-gridextra" ,r-gridextra)
14505 ("r-lattice" ,r-lattice)
14506 ("r-survival" ,r-survival)))
14507 (home-page "https://github.com/gbm-developers/gbm")
14508 (synopsis "Generalized boosted regression models")
14509 (description
14510 "This package is an implementation of extensions to Freund and Schapire's
14511 AdaBoost algorithm and Friedman's gradient boosting machine. It includes
14512 regression methods for least squares, absolute loss, t-distribution loss,
14513 quantile regression, logistic, multinomial logistic, Poisson, Cox proportional
14514 hazards partial likelihood, AdaBoost exponential loss, Huberized hinge loss,
14515 and Learning to Rank measures (LambdaMart).")
14516 (license license:gpl2+)))
14517
14518 (define-public r-threejs
14519 (package
14520 (name "r-threejs")
14521 (version "0.3.3")
14522 (source
14523 (origin
14524 (method url-fetch)
14525 (uri (cran-uri "threejs" version))
14526 (sha256
14527 (base32
14528 "1711h351nzxfkbbdwvfzyhciyvi9c6wx3jq1g97lzcqgnb45kivn"))))
14529 (build-system r-build-system)
14530 (arguments
14531 `(#:modules ((guix build utils)
14532 (guix build r-build-system)
14533 (srfi srfi-1)
14534 (ice-9 popen))
14535 #:phases
14536 (modify-phases %standard-phases
14537 (add-after 'unpack 'process-javascript
14538 (lambda* (#:key inputs #:allow-other-keys)
14539 (with-directory-excursion "inst"
14540 (call-with-values
14541 (lambda ()
14542 (unzip2
14543 `((,(assoc-ref inputs "js-jquery")
14544 "htmlwidgets/lib/jquery/jquery.min.js")
14545 (,(assoc-ref inputs "js-threejs-111")
14546 "htmlwidgets/lib/threejs-111/three.min.js"))))
14547 (lambda (sources targets)
14548 (for-each (lambda (source target)
14549 (format #t "Processing ~a --> ~a~%"
14550 source target)
14551 (delete-file target)
14552 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
14553 (call-with-output-file target
14554 (lambda (port)
14555 (dump-port minified port)))))
14556 sources targets))))
14557 #t)))))
14558 (propagated-inputs
14559 `(("r-base64enc" ,r-base64enc)
14560 ("r-crosstalk" ,r-crosstalk)
14561 ("r-htmlwidgets" ,r-htmlwidgets)
14562 ("r-igraph" ,r-igraph)))
14563 (native-inputs
14564 `(("uglify-js" ,uglify-js)
14565 ("js-jquery"
14566 ,(origin
14567 (method url-fetch)
14568 (uri "https://code.jquery.com/jquery-1.12.4.js")
14569 (sha256
14570 (base32
14571 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
14572 ("js-threejs-111"
14573 ,(origin
14574 (method url-fetch)
14575 (uri "https://raw.githubusercontent.com/mrdoob/three.js/r111/build/three.js")
14576 (sha256
14577 (base32
14578 "1cxdkw3plmlw1xvhbx5dm39gqczgzxip2dm887v6whhsxqxl9cky"))))))
14579 (home-page "https://bwlewis.github.io/rthreejs")
14580 (synopsis "Interactive 3D scatter plots, networks and globes")
14581 (description
14582 "Create interactive 3D scatter plots, network plots, and globes in R
14583 using the three.js visualization library.")
14584 (license license:expat)))
14585
14586 (define-public r-mlbench
14587 (package
14588 (name "r-mlbench")
14589 (version "2.1-1")
14590 (source
14591 (origin
14592 (method url-fetch)
14593 (uri (cran-uri "mlbench" version))
14594 (sha256
14595 (base32
14596 "1rp035qxfgh5ail92zjh9jh57dj0b8babw3wsg29v8ricpal30bl"))))
14597 (build-system r-build-system)
14598 (home-page "https://cran.r-project.org/web/packages/mlbench/")
14599 (synopsis "Machine learning benchmark problems")
14600 (description
14601 "This package provides a collection of artificial and real-world machine
14602 learning benchmark problems, including, e.g., several data sets from the UCI
14603 repository.")
14604 (license license:gpl2)))
14605
14606 (define-public r-mpm
14607 (package
14608 (name "r-mpm")
14609 (version "1.0-22")
14610 (source
14611 (origin
14612 (method url-fetch)
14613 (uri (cran-uri "mpm" version))
14614 (sha256
14615 (base32
14616 "0wijw8v0wmbfrda5564cmnp788qmlkk21yn5cp5qk8aprm9l1fnk"))))
14617 (build-system r-build-system)
14618 (propagated-inputs
14619 `(("r-kernsmooth" ,r-kernsmooth)
14620 ("r-mass" ,r-mass)))
14621 (home-page "http://mpm.r-forge.r-project.org")
14622 (synopsis "Multivariate projection methods")
14623 (description
14624 "This is a package for exploratory graphical analysis of multivariate
14625 data, specifically gene expression data with different projection methods:
14626 principal component analysis, correspondence analysis, spectral map
14627 analysis.")
14628 (license license:gpl2+)))
14629
14630 (define-public r-png
14631 (package
14632 (name "r-png")
14633 (version "0.1-7")
14634 (source (origin
14635 (method url-fetch)
14636 (uri (cran-uri "png" version))
14637 (sha256
14638 (base32
14639 "0g2mcp55lvvpx4kd3mn225mpbxqcq73wy5qx8b4lyf04iybgysg2"))))
14640 (build-system r-build-system)
14641 (inputs
14642 `(("libpng" ,libpng)
14643 ("zlib" ,zlib)))
14644 (home-page "https://www.rforge.net/png/")
14645 (synopsis "Read and write PNG images")
14646 (description
14647 "This package provides an easy and simple way to read, write and display
14648 bitmap images stored in the PNG format. It can read and write both files and
14649 in-memory raw vectors.")
14650 ;; Any of these GPL versions.
14651 (license (list license:gpl2 license:gpl3))))
14652
14653 (define-public r-ggcorrplot
14654 (package
14655 (name "r-ggcorrplot")
14656 (version "0.1.3")
14657 (source
14658 (origin
14659 (method url-fetch)
14660 (uri (cran-uri "ggcorrplot" version))
14661 (sha256
14662 (base32
14663 "0hi9lz121ya1l2lbm7rqlxg6fs6bvxck396dngnidrhl5fvqb41b"))))
14664 (build-system r-build-system)
14665 (propagated-inputs
14666 `(("r-ggplot2" ,r-ggplot2)
14667 ("r-reshape2" ,r-reshape2)))
14668 (home-page "http://www.sthda.com/english/wiki/ggcorrplot")
14669 (synopsis "Visualization of a correlation matrix using ggplot2")
14670 (description
14671 "The ggcorrplot package can be used to visualize easily a correlation
14672 matrix using ggplot2. It provides a solution for reordering the correlation
14673 matrix and displays the significance level on the plot. It also includes a
14674 function for computing a matrix of correlation p-values.")
14675 (license license:gpl2)))
14676
14677 (define-public r-flexdashboard
14678 (package
14679 (name "r-flexdashboard")
14680 (version "0.5.1.1")
14681 (source
14682 (origin
14683 (method url-fetch)
14684 (uri (cran-uri "flexdashboard" version))
14685 (sha256
14686 (base32
14687 "0fy3nbrr67zqgd44r2mc850s5sp0hzfcw3zqs15m8kxzj1aw067x"))))
14688 (build-system r-build-system)
14689 (arguments
14690 `(#:modules ((guix build utils)
14691 (guix build r-build-system)
14692 (srfi srfi-1)
14693 (srfi srfi-26)
14694 (ice-9 popen)
14695 (ice-9 textual-ports))
14696 #:phases
14697 (modify-phases %standard-phases
14698 (add-after 'unpack 'process-javascript
14699 (lambda* (#:key inputs #:allow-other-keys)
14700 (with-directory-excursion "inst"
14701 ;; Concatenate all components of prism.js
14702 (let ((contents (string-join
14703 (map (lambda (name)
14704 (call-with-input-file
14705 (assoc-ref inputs name)
14706 get-string-all))
14707 (list "js-prism"
14708 "js-prism-r"
14709 "js-prism-line-numbers"))
14710 "\n")))
14711 (call-with-output-file "prism-src.js"
14712 (cut display contents <>)))
14713 (call-with-values
14714 (lambda ()
14715 (unzip2
14716 `(("www/stickytableheaders/jquery.stickytableheaders.js"
14717 "www/stickytableheaders/jquery.stickytableheaders.min.js")
14718 ("www/sly/sly.js"
14719 "www/sly/sly.min.js")
14720 ("prism-src.js"
14721 "www/prism/prism.js")
14722 (,(assoc-ref inputs "js-raphael")
14723 "htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
14724 (,(assoc-ref inputs "js-featherlight")
14725 "www/featherlight/featherlight.min.js"))))
14726 (lambda (sources targets)
14727 (for-each (lambda (source target)
14728 (format #t "Processing ~a --> ~a~%"
14729 source target)
14730 (delete-file target)
14731 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
14732 (call-with-output-file target
14733 (lambda (port)
14734 (dump-port minified port)))))
14735 sources targets))))
14736 #t)))))
14737 (propagated-inputs
14738 `(("r-htmltools" ,r-htmltools)
14739 ("r-htmlwidgets" ,r-htmlwidgets)
14740 ("r-jsonlite" ,r-jsonlite)
14741 ("r-knitr" ,r-knitr)
14742 ("r-rmarkdown" ,r-rmarkdown)
14743 ("r-shiny" ,r-shiny)))
14744 (native-inputs
14745 `(("uglify-js" ,uglify-js)
14746 ("js-raphael"
14747 ,(origin
14748 (method url-fetch)
14749 (uri "https://raw.githubusercontent.com/DmitryBaranovskiy/raphael/v2.1.4/raphael.js")
14750 (sha256
14751 (base32
14752 "1h4c4akrgcj7wra9j1z1rv2406j0yf68y9c0wg8v7w9ibw2iwf1x"))))
14753 ("js-prism"
14754 ,(origin
14755 (method url-fetch)
14756 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/prism.js")
14757 (sha256
14758 (base32
14759 "0gqa9irbp9k8p5r3d98cszajzhjnssnl43nrsc5aiy7ki52z500c"))))
14760 ("js-prism-r"
14761 ,(origin
14762 (method url-fetch)
14763 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/components/prism-r.js")
14764 (sha256
14765 (base32
14766 "1x31glci7wdgr2305njy0bm2lncb0jyn0j1s2g72rqi29xid9aki"))))
14767 ("js-prism-line-numbers"
14768 ,(origin
14769 (method url-fetch)
14770 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/plugins/line-numbers/prism-line-numbers.js")
14771 (sha256
14772 (base32
14773 "1543wgf3iynrilyb27jq8px3h5gvfz5xmdib5ik2ki400c1sl991"))))
14774 ("js-featherlight"
14775 ,(origin
14776 (method url-fetch)
14777 (uri "https://raw.githubusercontent.com/noelboss/featherlight/1.3.4/src/featherlight.js")
14778 (sha256
14779 (base32
14780 "14kkhwzvp8rxq2mrck5i0xcm8v5rqwqhwnmncbng8h4qq42zx3sb"))))))
14781 (home-page "https://rmarkdown.rstudio.com/flexdashboard")
14782 (synopsis "R Markdown format for flexible dashboards")
14783 (description
14784 "This package provides an R Markdown format for converting an R Markdown
14785 document to a grid-oriented dashboard. The dashboard flexibly adapts the size
14786 of its components to the containing web page.")
14787 (license license:expat)))
14788
14789 (define-public r-preseqr
14790 (package
14791 (name "r-preseqr")
14792 (version "4.0.0")
14793 (source
14794 (origin
14795 (method url-fetch)
14796 (uri (cran-uri "preseqR" version))
14797 (sha256
14798 (base32
14799 "1g2rnnmi45649vpy6z45v5i3wxm54s138ajqrzwi3a5r7x3xnhq1"))))
14800 (properties `((upstream-name . "preseqR")))
14801 (build-system r-build-system)
14802 (propagated-inputs
14803 `(("r-polynom" ,r-polynom)))
14804 (home-page "https://cran.r-project.org/web/packages/preseqR/")
14805 (synopsis "Predicting species accumulation curves")
14806 (description
14807 "This package can be used to predict the r-species accumulation
14808 curve (r-SAC), which is the number of species represented at least r times as
14809 a function of the sampling effort. When r = 1, the curve is known as the
14810 species accumulation curve, or the library complexity curve in high-throughput
14811 genomic sequencing. The package includes both parametric and nonparametric
14812 methods, as described by Deng C, et al. (2018).")
14813 (license license:gpl3)))
14814
14815 (define-public r-mapplots
14816 (package
14817 (name "r-mapplots")
14818 (version "1.5.1")
14819 (source
14820 (origin
14821 (method url-fetch)
14822 (uri (cran-uri "mapplots" version))
14823 (sha256
14824 (base32
14825 "18s2y66f8vi8g2r8a25zbgp2xm079r8v8qxv0w71h8krycs6vs9p"))))
14826 (build-system r-build-system)
14827 (home-page "https://cran.r-project.org/web/packages/mapplots/")
14828 (synopsis "Data visualization on maps")
14829 (description
14830 "This package helps you create simple maps; add sub-plots like pie plots
14831 to a map or any other plot; format, plot and export gridded data. The package
14832 was developed for displaying fisheries data but most functions can be used for
14833 more generic data visualisation.")
14834 (license license:gpl2+)))
14835
14836 (define-public r-pmcmr
14837 (package
14838 (name "r-pmcmr")
14839 (version "4.3")
14840 (source
14841 (origin
14842 (method url-fetch)
14843 (uri (cran-uri "PMCMR" version))
14844 (sha256
14845 (base32
14846 "09bvdj2h1086r2cgy3myrhlylplxxlliv8nwx09c8kb1vn02i2ij"))))
14847 (properties `((upstream-name . "PMCMR")))
14848 (build-system r-build-system)
14849 (home-page "https://cran.r-project.org/web/packages/PMCMR/")
14850 (synopsis "Calculate pairwise multiple comparisons of mean rank sums")
14851 (description
14852 "This is a deprecated package for calculating pairwise multiple
14853 comparisons of mean rank sums. This package is superseded by the novel
14854 PMCMRplus package. The PMCMR package is no longer maintained, but kept for
14855 compatibility of dependent packages for some time.")
14856 (license license:gpl3+)))
14857
14858 (define-public r-downloader
14859 (package
14860 (name "r-downloader")
14861 (version "0.4")
14862 (source
14863 (origin
14864 (method url-fetch)
14865 (uri (cran-uri "downloader" version))
14866 (sha256
14867 (base32
14868 "1axggnsc27zzgr7snf41j3zd1vp3nfpmq4zj4d01axc709dyg40q"))))
14869 (build-system r-build-system)
14870 (propagated-inputs
14871 `(("r-digest" ,r-digest)))
14872 (home-page "https://github.com/wch/downloader")
14873 (synopsis "Download files over HTTP and HTTPS")
14874 (description
14875 "This package provides a wrapper for the @code{download.file} function,
14876 making it possible to download files over HTTPS across platforms. The
14877 @code{RCurl} package provides this functionality (and much more) but has
14878 external dependencies. This package has is implemented purely in R.")
14879 (license license:gpl2)))
14880
14881 (define-public r-rex
14882 (package
14883 (name "r-rex")
14884 (version "1.1.2")
14885 (source
14886 (origin
14887 (method url-fetch)
14888 (uri (cran-uri "rex" version))
14889 (sha256
14890 (base32
14891 "0alsadgjgass3wr8y5d247j12qqzg454sc84vpskclrkmz778g5x"))))
14892 (build-system r-build-system)
14893 (propagated-inputs
14894 `(("r-lazyeval" ,r-lazyeval)
14895 ("r-magrittr" ,r-magrittr)))
14896 (home-page "https://github.com/kevinushey/rex")
14897 (synopsis "Friendly regular expressions")
14898 (description
14899 "This package provides a friendly interface for the construction of
14900 regular expressions. Regular expressions are a very powerful feature, however
14901 they are often difficult to interpret. Rex allows you to build complex
14902 regular expressions from human readable expressions")
14903 (license license:expat)))
14904
14905 (define-public r-xmlparsedata
14906 (package
14907 (name "r-xmlparsedata")
14908 (version "1.0.3")
14909 (source
14910 (origin
14911 (method url-fetch)
14912 (uri (cran-uri "xmlparsedata" version))
14913 (sha256
14914 (base32
14915 "0gjr3l5z5dp276lchr2649as1rkj56d2mlvbr66yg393zzw50lsh"))))
14916 (properties `((upstream-name . "xmlparsedata")))
14917 (build-system r-build-system)
14918 (home-page "https://github.com/r-lib/xmlparsedata#readme")
14919 (synopsis "Parse data of @code{R} code as an @code{XML} tree")
14920 (description
14921 "This package provides tools to convert the output of
14922 @code{utils::getParseData()} to an @code{XML} tree, that one can search via
14923 @code{XPath}, and is easier to manipulate in general.")
14924 (license license:expat)))
14925
14926 (define-public r-cyclocomp
14927 (package
14928 (name "r-cyclocomp")
14929 (version "1.1.0")
14930 (source
14931 (origin
14932 (method url-fetch)
14933 (uri (cran-uri "cyclocomp" version))
14934 (sha256
14935 (base32
14936 "0gky3svk02wiajw7nfjh30684h3qxili4bvsab0m7b6cggw6bgyd"))))
14937 (properties `((upstream-name . "cyclocomp")))
14938 (build-system r-build-system)
14939 (propagated-inputs
14940 `(("r-callr" ,r-callr)
14941 ("r-crayon" ,r-crayon)
14942 ("r-desc" ,r-desc)
14943 ("r-remotes" ,r-remotes)
14944 ("r-withr" ,r-withr)))
14945 (home-page "https://github.com/MangoTheCat/cyclocomp")
14946 (synopsis "Cyclomatic complexity of R code")
14947 (description
14948 "Cyclomatic complexity is a software metric, used to indicate the
14949 complexity of a program. It is a quantitative measure of the number of
14950 linearly independent paths through a program's source code. This package
14951 provides tools to compute this metric.")
14952 (license license:expat)))
14953
14954 (define-public r-lintr
14955 (package
14956 (name "r-lintr")
14957 (version "2.0.1")
14958 (source
14959 (origin
14960 (method url-fetch)
14961 (uri (cran-uri "lintr" version))
14962 (sha256
14963 (base32
14964 "14yfh641afg6griaadbdciyr3k94fl55s055qwzghgk5gdsj61zy"))))
14965 (properties `((upstream-name . "lintr")))
14966 (build-system r-build-system)
14967 (propagated-inputs
14968 `(("r-codetools" ,r-codetools)
14969 ("r-crayon" ,r-crayon)
14970 ("r-cyclocomp" ,r-cyclocomp)
14971 ("r-digest" ,r-digest)
14972 ("r-httr" ,r-httr)
14973 ("r-jsonlite" ,r-jsonlite)
14974 ("r-knitr" ,r-knitr)
14975 ("r-rex" ,r-rex)
14976 ("r-rstudioapi" ,r-rstudioapi)
14977 ("r-testthat" ,r-testthat)
14978 ("r-xml2" ,r-xml2)
14979 ("r-xmlparsedata" ,r-xmlparsedata)))
14980 (home-page "https://github.com/jimhester/lintr")
14981 (synopsis "Linter for R code")
14982 (description "This package checks adherence to a given style, syntax
14983 errors and possible semantic issues. It supports on the fly checking of R
14984 code edited with @code{RStudio IDE}, @code{Emacs} and @code{Vim}.")
14985 (license license:expat)))
14986
14987 (define-public r-sctransform
14988 (package
14989 (name "r-sctransform")
14990 (version "0.2.1")
14991 (source
14992 (origin
14993 (method url-fetch)
14994 (uri (cran-uri "sctransform" version))
14995 (sha256
14996 (base32
14997 "07v3lzccsrkh1glfxd1q20r8f8gl9ls5az0s1dvxm4vcls0hlhyn"))))
14998 (build-system r-build-system)
14999 (propagated-inputs
15000 `(("r-future-apply" ,r-future-apply)
15001 ("r-ggplot2" ,r-ggplot2)
15002 ("r-gridextra" ,r-gridextra)
15003 ("r-mass" ,r-mass)
15004 ("r-matrix" ,r-matrix)
15005 ("r-rcpp" ,r-rcpp)
15006 ("r-rcppeigen" ,r-rcppeigen)
15007 ("r-reshape2" ,r-reshape2)))
15008 (home-page "https://github.com/ChristophH/sctransform")
15009 (synopsis "Variance stabilizing transformations for Single Cell UMI Data")
15010 (description
15011 "This package provides a normalization method for single-cell UMI count
15012 data using a variance stabilizing transformation. The transformation is based
15013 on a negative binomial regression model with regularized parameters. As part
15014 of the same regression framework, this package also provides functions for
15015 batch correction, and data correction.")
15016 (license license:gpl3)))
15017
15018 (define-public r-styler
15019 (package
15020 (name "r-styler")
15021 (version "1.3.2")
15022 (source
15023 (origin
15024 (method url-fetch)
15025 (uri (cran-uri "styler" version))
15026 (sha256
15027 (base32
15028 "1waglhsy2c53qjgd2qhlzda3z0lbzbwx9fkrfhac41y6h91mgkrz"))))
15029 (build-system r-build-system)
15030 (propagated-inputs
15031 `(("r-backports" ,r-backports)
15032 ("r-cli" ,r-cli)
15033 ("r-magrittr" ,r-magrittr)
15034 ("r-purrr" ,r-purrr)
15035 ("r-r-cache" ,r-r-cache)
15036 ("r-rematch2" ,r-rematch2)
15037 ("r-rlang" ,r-rlang)
15038 ("r-rprojroot" ,r-rprojroot)
15039 ("r-tibble" ,r-tibble)
15040 ("r-withr" ,r-withr)
15041 ("r-xfun" ,r-xfun)))
15042 (home-page "https://github.com/r-lib/styler")
15043 (synopsis "Non-invasive pretty printing of R code")
15044 (description
15045 "This is a package for pretty-printing R code without changing the user's
15046 formatting intent.")
15047 (license license:gpl3)))
15048
15049 (define-public r-scrime
15050 (package
15051 (name "r-scrime")
15052 (version "1.3.5")
15053 (source
15054 (origin
15055 (method url-fetch)
15056 (uri (cran-uri "scrime" version))
15057 (sha256
15058 (base32
15059 "0y2mh9fsffjf3i15bafpasa17z99c1s75r8g6h4hgcwfgpjx75sx"))))
15060 (build-system r-build-system)
15061 (home-page "https://cran.r-project.org/web/packages/scrime/")
15062 (synopsis "Analysis of high-dimensional categorical data such as SNP data")
15063 (description
15064 "This package provides tools for the analysis of high-dimensional data
15065 developed/implemented at the group \"Statistical Complexity Reduction In
15066 Molecular Epidemiology\" (SCRIME). The main focus is on SNP data, but most of
15067 the functions can also be applied to other types of categorical data.")
15068 (license license:gpl2)))
15069
15070 (define-public r-pbmcapply
15071 (package
15072 (name "r-pbmcapply")
15073 (version "1.5.0")
15074 (source
15075 (origin
15076 (method url-fetch)
15077 (uri (cran-uri "pbmcapply" version))
15078 (sha256
15079 (base32
15080 "0i58gcqpnbyvc448qfgm45b7rpbmrnagsvk1h1hsqchbbicfslnz"))))
15081 (build-system r-build-system)
15082 (home-page "https://github.com/kvnkuang/pbmcapply")
15083 (synopsis "Track the progress of apply procedures with a progress bar")
15084 (description
15085 "This light-weight package helps you track and visualize the progress of
15086 parallel versions of vectorized R functions of the @code{mc*apply} family.")
15087 (license license:expat)))
15088
15089 (define-public r-blme
15090 (package
15091 (name "r-blme")
15092 (version "1.0-4")
15093 (source
15094 (origin
15095 (method url-fetch)
15096 (uri (cran-uri "blme" version))
15097 (sha256
15098 (base32
15099 "1ca2b0248k0fj3lczn9shfjplz1sl4ay4v6djldizp2ch2vwdgy2"))))
15100 (build-system r-build-system)
15101 (propagated-inputs `(("r-lme4" ,r-lme4)))
15102 (home-page "https://github.com/vdorie/blme")
15103 (synopsis "Bayesian linear mixed-effects models")
15104 (description
15105 "This package provides tools for maximum a posteriori estimation for
15106 linear and generalized linear mixed-effects models in a Bayesian setting. It
15107 extends the lme4 package.")
15108 (license license:gpl2+)))
15109
15110 (define-public r-batchtools
15111 (package
15112 (name "r-batchtools")
15113 (version "0.9.13")
15114 (source
15115 (origin
15116 (method url-fetch)
15117 (uri (cran-uri "batchtools" version))
15118 (sha256
15119 (base32
15120 "02bwfinwgn5nl638997javig61jmr0ci0qybmprz13jnvmam1yns"))))
15121 (build-system r-build-system)
15122 (propagated-inputs
15123 `(("r-backports" ,r-backports)
15124 ("r-base64url" ,r-base64url)
15125 ("r-brew" ,r-brew)
15126 ("r-checkmate" ,r-checkmate)
15127 ("r-data-table" ,r-data-table)
15128 ("r-digest" ,r-digest)
15129 ("r-fs" ,r-fs)
15130 ("r-progress" ,r-progress)
15131 ("r-r6" ,r-r6)
15132 ("r-rappdirs" ,r-rappdirs)
15133 ("r-stringi" ,r-stringi)
15134 ("r-withr" ,r-withr)))
15135 (native-inputs
15136 `(("r-knitr" ,r-knitr)))
15137 (home-page "https://github.com/mllg/batchtools")
15138 (synopsis "Tools for computation on batch systems")
15139 (description
15140 "As a successor of the packages BatchJobs and BatchExperiments, this
15141 package provides a parallel implementation of the Map function for high
15142 performance computing systems managed by various schedulers. A multicore and
15143 socket mode allow the parallelization on a local machines, and multiple
15144 machines can be hooked up via SSH to create a makeshift cluster. Moreover,
15145 the package provides an abstraction mechanism to define large-scale computer
15146 experiments in a well-organized and reproducible way.")
15147 (license license:lgpl3)))
15148
15149 (define-public r-clue
15150 (package
15151 (name "r-clue")
15152 (version "0.3-57")
15153 (source
15154 (origin
15155 (method url-fetch)
15156 (uri (cran-uri "clue" version))
15157 (sha256
15158 (base32
15159 "05rdcahawxlxci3fjxihjvvh33wqpxw50sx015165ab4nh3rsdkf"))))
15160 (build-system r-build-system)
15161 (propagated-inputs `(("r-cluster" ,r-cluster)))
15162 (home-page "https://cran.r-project.org/web/packages/clue/")
15163 (synopsis "Tools for analyzing cluster ensembles")
15164 (description "Cluster ensembles are collections of individual solutions to
15165 a given clustering problem which are useful or necessary to consider in a wide
15166 range of applications. This R package provides an extensible computational
15167 environment for creating and analyzing cluster ensembles, with basic data
15168 structures for representing partitions and hierarchies, and facilities for
15169 computing on them, including methods for measuring proximity and obtaining
15170 consensus and secondary clusterings.")
15171 (license license:gpl2)))
15172
15173 (define-public r-sitmo
15174 (package
15175 (name "r-sitmo")
15176 (version "2.0.1")
15177 (source
15178 (origin
15179 (method url-fetch)
15180 (uri (cran-uri "sitmo" version))
15181 (sha256
15182 (base32
15183 "0apdhwy3kxs39agsbvx5vn3xsgb22bf3jrwmr2cmqk9kmxbx740c"))))
15184 (build-system r-build-system)
15185 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
15186 (home-page "https://github.com/coatless/sitmo/")
15187 (synopsis "Parallel pseudo random number generator header files")
15188 (description
15189 "This package provides two high quality and fast PPRNGs that may be used
15190 in an OpenMP parallel environment. In addition, there is a generator for one
15191 dimensional low-discrepancy sequence.")
15192 (license license:expat)))
15193
15194 (define-public r-dqrng
15195 (package
15196 (name "r-dqrng")
15197 (version "0.2.1")
15198 (source
15199 (origin
15200 (method url-fetch)
15201 (uri (cran-uri "dqrng" version))
15202 (sha256
15203 (base32
15204 "0rp8q5zijlvaqmpnkwr314w9w40sj4fz7sqsdgsffcfvn42w2jg1"))))
15205 (build-system r-build-system)
15206 (propagated-inputs
15207 `(("r-bh" ,r-bh)
15208 ("r-rcpp" ,r-rcpp)
15209 ("r-sitmo" ,r-sitmo)))
15210 (home-page "https://www.daqana.org/dqrng")
15211 (synopsis "Fast pseudo random number generators")
15212 (description
15213 "Several fast random number generators are provided as C++ header-only
15214 libraries: the PCG family as well as Xoroshiro128+ and Xoshiro256+.
15215 Additionally, fast functions for generating random numbers according to a
15216 uniform, normal and exponential distribution are included. The latter two use
15217 the Ziggurat algorithm originally proposed by Marsaglia and Tsang. These
15218 functions are exported to R and as a C++ interface and are enabled for use
15219 with the default 64 bit generator from the PCG family, Xoroshiro128+ and
15220 Xoshiro256+ as well as the 64 bit version of the 20 rounds Threefry
15221 engine (Salmon et al., 2011) as provided by the package @code{sitmo}.")
15222 ;; This package includes code under CC0 and Apache 2.0 or Expat, but as a
15223 ;; whole is distributed under the terms of the AGPL 3.
15224 (license license:agpl3)))
15225
15226 (define-public r-dalex
15227 (package
15228 (name "r-dalex")
15229 (version "1.0.1")
15230 (source
15231 (origin
15232 (method url-fetch)
15233 (uri (cran-uri "DALEX" version))
15234 (sha256
15235 (base32
15236 "1jbyn57vn6d281a5y15h5d8ljin8cdb9lr7lbgggc950blyfv4g0"))))
15237 (properties `((upstream-name . "DALEX")))
15238 (build-system r-build-system)
15239 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
15240 (home-page "https://pbiecek.github.io/DALEX/")
15241 (synopsis "Descriptive machine learning explanations")
15242 (description
15243 "Machine Learning models are widely used and have various applications in
15244 classification or regression. Models created with boosting, bagging, stacking
15245 or similar techniques are often used due to their high performance, but such
15246 black-box models usually lack interpretability. The DALEX package contains
15247 various explainers that help to understand the link between input variables
15248 and model output.")
15249 ;; Any version of the GPL
15250 (license license:gpl3+)))
15251
15252 (define-public r-enrichr
15253 (package
15254 (name "r-enrichr")
15255 (version "2.1")
15256 (source
15257 (origin
15258 (method url-fetch)
15259 (uri (cran-uri "enrichR" version))
15260 (sha256
15261 (base32
15262 "0ymhzs9d2wl0s9rvbqc1hqb78mlzwhlc7mmijpfqkm5r720pf6m1"))))
15263 (properties `((upstream-name . "enrichR")))
15264 (build-system r-build-system)
15265 (propagated-inputs
15266 `(("r-httr" ,r-httr)
15267 ("r-rjson" ,r-rjson)))
15268 (home-page "https://cran.r-project.org/web/packages/enrichR/")
15269 (synopsis "R Interface to Enrichr database for analyzing gene sets")
15270 (description
15271 "This package provides an R interface to all Enrichr databases, a
15272 web-based tool for analyzing gene sets and returns any enrichment of common
15273 annotated biological functions.")
15274 (license license:gpl2+)))
15275
15276 (define-public r-plot3d
15277 (package
15278 (name "r-plot3d")
15279 (version "1.3")
15280 (source
15281 (origin
15282 (method url-fetch)
15283 (uri (cran-uri "plot3D" version))
15284 (sha256
15285 (base32
15286 "1jfzndnlci9a975qbcv66jiy2l46hs3f2049654x4jp3i4kyrr5r"))))
15287 (properties `((upstream-name . "plot3D")))
15288 (build-system r-build-system)
15289 (propagated-inputs `(("r-misc3d" ,r-misc3d)))
15290 (home-page "https://cran.r-project.org/web/packages/plot3D")
15291 (synopsis "Plot multi-dimensional data")
15292 (description
15293 "This package provides functions for viewing 2D and 3D data, including
15294 perspective plots, slice plots, surface plots, scatter plots, etc. It
15295 includes data sets from oceanography.")
15296 (license license:gpl3+)))
15297
15298 (define-public r-ggfortify
15299 (package
15300 (name "r-ggfortify")
15301 (version "0.4.9")
15302 (source
15303 (origin
15304 (method url-fetch)
15305 (uri (cran-uri "ggfortify" version))
15306 (sha256
15307 (base32
15308 "1p6knrbyaynaqwd939w09hpf1zz1gn95cb46sfgppl8l98krb2h5"))))
15309 (build-system r-build-system)
15310 (propagated-inputs
15311 `(("r-dplyr" ,r-dplyr)
15312 ("r-ggplot2" ,r-ggplot2)
15313 ("r-gridextra" ,r-gridextra)
15314 ("r-scales" ,r-scales)
15315 ("r-stringr" ,r-stringr)
15316 ("r-tibble" ,r-tibble)
15317 ("r-tidyr" ,r-tidyr)))
15318 (native-inputs
15319 `(("r-knitr" ,r-knitr)))
15320 (home-page "https://github.com/sinhrks/ggfortify")
15321 (synopsis "Data visualization tools for statistical analysis results")
15322 (description
15323 "This package provides unified plotting tools for statistics commonly
15324 used, such as GLM, time series, PCA families, clustering and survival
15325 analysis. The package offers a single plotting interface for these analysis
15326 results and plots in a unified style using the @code{ggplot2} package.")
15327 (license license:gpl2)))
15328
15329 (define-public r-refmanager
15330 (package
15331 (name "r-refmanager")
15332 (version "1.2.12")
15333 (source
15334 (origin
15335 (method url-fetch)
15336 (uri (cran-uri "RefManageR" version))
15337 (sha256
15338 (base32
15339 "1hfxa1qacfryk36mpaqdhdgws5jwxiyy489ikd3wa18bp1wz8dkp"))))
15340 (properties `((upstream-name . "RefManageR")))
15341 (build-system r-build-system)
15342 (propagated-inputs
15343 `(("r-bibtex" ,r-bibtex)
15344 ("r-httr" ,r-httr)
15345 ("r-jsonlite" ,r-jsonlite)
15346 ("r-lubridate" ,r-lubridate)
15347 ("r-plyr" ,r-plyr)
15348 ("r-stringr" ,r-stringr)
15349 ("r-xml2" ,r-xml2)))
15350 (home-page "https://github.com/ropensci/RefManageR/")
15351 (synopsis "Straightforward BibTeX and BibLaTeX bibliography management")
15352 (description
15353 "This package provides tools for importing and working with bibliographic
15354 references. It greatly enhances the @code{bibentry} class by providing a
15355 class @code{BibEntry} which stores BibTeX and BibLaTeX references, supports
15356 UTF-8 encoding, and can be easily searched by any field, by date ranges, and
15357 by various formats for name lists (author by last names, translator by full
15358 names, etc.). Entries can be updated, combined, sorted, printed in a number
15359 of styles, and exported. BibTeX and BibLaTeX @code{.bib} files can be read
15360 into R and converted to @code{BibEntry} objects.")
15361 ;; Any of these licenses may be picked.
15362 (license (list license:gpl2 license:gpl3 license:bsd-3))))
15363
15364 (define-public r-citr
15365 (package
15366 (name "r-citr")
15367 (version "0.3.2")
15368 (source
15369 (origin
15370 (method url-fetch)
15371 (uri (cran-uri "citr" version))
15372 (sha256
15373 (base32
15374 "1qbarvafjb8jgkrnrhh6jw7mcglmjwf7dpdiibxf39jkmlhf7las"))))
15375 (build-system r-build-system)
15376 (propagated-inputs
15377 `(("r-assertthat" ,r-assertthat)
15378 ("r-curl" ,r-curl)
15379 ("r-httr" ,r-httr)
15380 ("r-miniui" ,r-miniui)
15381 ("r-refmanager" ,r-refmanager)
15382 ("r-rstudioapi" ,r-rstudioapi)
15383 ("r-shiny" ,r-shiny)
15384 ("r-shinyjs" ,r-shinyjs)
15385 ("r-yaml" ,r-yaml)))
15386 (home-page "https://github.com/crsh/citr")
15387 (synopsis "RStudio add-in to insert Markdown citations")
15388 (description
15389 "This package provides functions and an RStudio add-in that search a
15390 BibTeX or BibLaTeX file to create and insert formatted Markdown citations into
15391 the current document.")
15392 (license license:expat)))
15393
15394 (define-public r-xgboost
15395 (package
15396 (name "r-xgboost")
15397 (version "1.0.0.2")
15398 (source
15399 (origin
15400 (method url-fetch)
15401 (uri (cran-uri "xgboost" version))
15402 (sha256
15403 (base32
15404 "1ld2w51c5fy3bl0kvjn1iplffc4lmin9s9zz5xx7xsm44d6j6kzd"))))
15405 (build-system r-build-system)
15406 (propagated-inputs
15407 `(("r-data-table" ,r-data-table)
15408 ("r-magrittr" ,r-magrittr)
15409 ("r-matrix" ,r-matrix)
15410 ("r-stringi" ,r-stringi)))
15411 (native-inputs
15412 `(("r-knitr" ,r-knitr)))
15413 (home-page "https://github.com/dmlc/xgboost")
15414 (synopsis "Extreme gradient boosting")
15415 (description
15416 "This package provides an R interface to Extreme Gradient Boosting, which
15417 is an efficient implementation of the gradient boosting framework from Chen
15418 and Guestrin (2016). The package includes efficient linear model solver and
15419 tree learning algorithms. The package can automatically do parallel
15420 computation on a single machine. It supports various objective functions,
15421 including regression, classification and ranking. The package is made to be
15422 extensible, so that users are also allowed to define their own objectives
15423 easily.")
15424 (license license:asl2.0)))
15425
15426 (define-public r-umap
15427 (package
15428 (name "r-umap")
15429 (version "0.2.5.0")
15430 (source
15431 (origin
15432 (method url-fetch)
15433 (uri (cran-uri "umap" version))
15434 (sha256
15435 (base32
15436 "0qp8zbh6fn8kn6q2h2lyjgmq3pr6gqwsd8ymqx25px13zjhxch9d"))))
15437 (build-system r-build-system)
15438 (propagated-inputs
15439 `(("r-openssl" ,r-openssl)
15440 ("r-rcpp" ,r-rcpp)
15441 ("r-reticulate" ,r-reticulate)
15442 ("r-rspectra" ,r-rspectra)))
15443 (native-inputs
15444 `(("r-knitr" ,r-knitr)))
15445 (home-page "https://github.com/tkonopka/umap")
15446 (synopsis "Uniform manifold approximation and projection")
15447 (description
15448 "Uniform manifold approximation and projection is a technique for
15449 dimension reduction. This package provides an interface to the UMAP algorithm
15450 in R, including a translation of the original algorithm into R.")
15451 (license license:expat)))
15452
15453 (define-public r-uwot
15454 (package
15455 (name "r-uwot")
15456 (version "0.1.8")
15457 (source
15458 (origin
15459 (method url-fetch)
15460 (uri (cran-uri "uwot" version))
15461 (sha256
15462 (base32
15463 "1jzh8r1h6f7pw7pb1fr32vn6ai9g10s56ahkq0vi77iznihy1rpd"))))
15464 (build-system r-build-system)
15465 (propagated-inputs
15466 `(("r-dqrng" ,r-dqrng)
15467 ("r-fnn" ,r-fnn)
15468 ("r-irlba" ,r-irlba)
15469 ("r-matrix" ,r-matrix)
15470 ("r-rcpp" ,r-rcpp)
15471 ("r-rcppannoy" ,r-rcppannoy)
15472 ("r-rcppprogress" ,r-rcppprogress)
15473 ("r-rspectra" ,r-rspectra)))
15474 (home-page "https://github.com/jlmelville/uwot")
15475 (synopsis "Uniform manifold approximation and projection")
15476 (description
15477 "This package provides an implementation of the Uniform Manifold
15478 Approximation and Projection dimensionality reduction by McInnes et
15479 al. (2018). It also provides means to transform new data and to carry out
15480 supervised dimensionality reduction. An implementation of the related
15481 LargeVis method of Tang et al. (2016) is also provided.")
15482 (license license:gpl3)))
15483
15484 (define-public r-kableextra
15485 (package
15486 (name "r-kableextra")
15487 (version "1.1.0")
15488 (source
15489 (origin
15490 (method url-fetch)
15491 (uri (cran-uri "kableExtra" version))
15492 (sha256
15493 (base32
15494 "1nicvw06xsf3a1f5c10mih07b76m2v5s5h165vmz0qx6n1a3492i"))))
15495 (properties `((upstream-name . "kableExtra")))
15496 (build-system r-build-system)
15497 (propagated-inputs
15498 `(("r-digest" ,r-digest)
15499 ("r-glue" ,r-glue)
15500 ("r-htmltools" ,r-htmltools)
15501 ("r-knitr" ,r-knitr)
15502 ("r-magrittr" ,r-magrittr)
15503 ("r-readr" ,r-readr)
15504 ("r-rmarkdown" ,r-rmarkdown)
15505 ("r-rstudioapi" ,r-rstudioapi)
15506 ("r-rvest" ,r-rvest)
15507 ("r-scales" ,r-scales)
15508 ("r-stringr" ,r-stringr)
15509 ("r-viridislite" ,r-viridislite)
15510 ("r-webshot" ,r-webshot)
15511 ("r-xml2" ,r-xml2)))
15512 (home-page "https://haozhu233.github.io/kableExtra/")
15513 (synopsis "Construct complex tables with pipe syntax")
15514 (description
15515 "Build complex HTML or LaTeX tables using @code{kable()} from
15516 @code{knitr} and the piping syntax from @code{magrittr}. The function
15517 @code{kable()} is a light weight table generator coming from @code{knitr}.
15518 This package simplifies the way to manipulate the HTML or LaTeX codes
15519 generated by @code{kable()} and allows users to construct complex tables and
15520 customize styles using a readable syntax.")
15521 (license license:expat)))
15522
15523 (define-public r-glasso
15524 (package
15525 (name "r-glasso")
15526 (version "1.11")
15527 (source
15528 (origin
15529 (method url-fetch)
15530 (uri (cran-uri "glasso" version))
15531 (sha256
15532 (base32 "02p3612rpydk195n2qr77lp1j2w8zsw1ckkk98c8angm4r5q8dsc"))))
15533 (build-system r-build-system)
15534 (native-inputs `(("gfortran" ,gfortran)))
15535 (home-page "https://statweb.stanford.edu/~tibs/glasso/")
15536 (synopsis "Graphical Lasso: estimation of Gaussian graphical models")
15537 (description
15538 "This is a package for estimation of a sparse inverse covariance matrix
15539 using a lasso (L1) penalty. Facilities are provided for estimates along a
15540 path of values for the regularization parameter.")
15541 (license license:gpl2)))
15542
15543 (define-public r-rhpcblasctl
15544 (package
15545 (name "r-rhpcblasctl")
15546 (version "0.20-17")
15547 (source
15548 (origin
15549 (method url-fetch)
15550 (uri (cran-uri "RhpcBLASctl" version))
15551 (sha256
15552 (base32
15553 "0iwc06blr5sx7rylwczi2jrha8sk8qs0jklflwpidl0zj1jxdggp"))))
15554 (properties `((upstream-name . "RhpcBLASctl")))
15555 (build-system r-build-system)
15556 (home-page "https://prs.ism.ac.jp/~nakama/Rhpc/")
15557 (synopsis "Control the number of threads on BLAS")
15558 (description
15559 "This package allows you to control the number of threads the BLAS
15560 library uses. It is also possible to control the number of threads in
15561 OpenMP.")
15562 (license license:agpl3+)))
15563
15564 (define-public r-lda
15565 (package
15566 (name "r-lda")
15567 (version "1.4.2")
15568 (source
15569 (origin
15570 (method url-fetch)
15571 (uri (cran-uri "lda" version))
15572 (sha256
15573 (base32
15574 "03r4h5kgr8mfy44p66mfj5bp4k00g8zh4a1mhn46jw14pkhs21jn"))))
15575 (build-system r-build-system)
15576 (home-page "https://cran.r-project.org/web/packages/lda/")
15577 (synopsis "Collapsed Gibbs sampling methods for topic models")
15578 (description
15579 "This package implements @dfn{latent Dirichlet allocation} (LDA) and
15580 related models. This includes (but is not limited to) sLDA, corrLDA, and the
15581 mixed-membership stochastic blockmodel. Inference for all of these models is
15582 implemented via a fast collapsed Gibbs sampler written in C. Utility
15583 functions for reading/writing data typically used in topic models, as well as
15584 tools for examining posterior distributions are also included.")
15585 ;; Any version of the LGPL
15586 (license license:lgpl3+)))
15587
15588 (define-public r-rann-l1
15589 (package
15590 (name "r-rann-l1")
15591 (version "2.5.2")
15592 (source
15593 (origin
15594 (method url-fetch)
15595 (uri (cran-uri "RANN.L1" version))
15596 (sha256
15597 (base32
15598 "1hanh3my84mdr5wy6b89fawqzfc184vff1y65wy4l5ld9qza1n44"))))
15599 (properties `((upstream-name . "RANN.L1")))
15600 (build-system r-build-system)
15601 (home-page "https://github.com/jefferis/RANN/tree/master-L1")
15602 (synopsis "Fast nearest neighbour search using L1 metric")
15603 (description
15604 "This package provides tools to find the k nearest neighbours for every
15605 point in a given dataset in O(N log N) time using Arya and Mount's ANN
15606 library. There is support for approximate as well as exact searches, fixed
15607 radius searches and @code{bd} as well as @code{kd} trees. The distance is
15608 computed using the L1 (Manhattan, taxicab) metric.")
15609 (license license:gpl3+)))
15610
15611 (define-public r-leiden
15612 (package
15613 (name "r-leiden")
15614 (version "0.3.3")
15615 (source
15616 (origin
15617 (method url-fetch)
15618 (uri (cran-uri "leiden" version))
15619 (sha256
15620 (base32
15621 "1hh6bmbz6cpqwl4i94gxylgv9x92zbqdg81r8r4ymfy8c70f3df2"))))
15622 (properties `((upstream-name . "leiden")))
15623 (build-system r-build-system)
15624 (propagated-inputs
15625 `(("r-igraph" ,r-igraph)
15626 ("r-matrix" ,r-matrix)
15627 ("r-reticulate" ,r-reticulate)))
15628 (home-page "https://github.com/TomKellyGenetics/leiden")
15629 (synopsis "R implementation of Leiden clustering algorithm")
15630 (description
15631 "This package implements the Python @code{leidenalg} module to be called
15632 in R. It enables clustering using the Leiden algorithm for partitioning a
15633 graph into communities. See also Traag et al (2018) \"From Louvain to Leiden:
15634 guaranteeing well-connected communities.\" <arXiv:1810.08473>.")
15635 (license license:gpl3)))
15636
15637 (define-public r-patchwork
15638 (package
15639 (name "r-patchwork")
15640 (version "1.0.0")
15641 (source
15642 (origin
15643 (method url-fetch)
15644 (uri (cran-uri "patchwork" version))
15645 (sha256
15646 (base32
15647 "0qrwbcswh7ylrmghi17k6wk7w51cz6mcmvcyyd41hy3m2ywmkywb"))))
15648 (build-system r-build-system)
15649 (propagated-inputs
15650 `(("r-ggplot2" ,r-ggplot2)
15651 ("r-gtable" ,r-gtable)))
15652 (native-inputs
15653 `(("r-knitr" ,r-knitr)))
15654 (home-page "https://github.com/thomasp85/patchwork")
15655 (synopsis "Compose ggplot2 plots")
15656 (description
15657 "The @code{ggplot2} package provides a strong API for sequentially
15658 building up a plot, but does not concern itself with composition of multiple
15659 plots. Patchwork is a package that expands the API to allow for arbitrarily
15660 complex composition of plots by providing mathmatical operators for combining
15661 multiple plots.")
15662 (license license:expat)))
15663
15664 (define-public r-liger
15665 (package
15666 (name "r-liger")
15667 (version "0.4.2")
15668 (source
15669 (origin
15670 (method git-fetch)
15671 (uri (git-reference
15672 (url "https://github.com/MacoskoLab/liger.git")
15673 (commit (string-append "v" version))))
15674 (file-name (git-file-name name version))
15675 (sha256
15676 (base32
15677 "16dzwwcpw6n78pxlc5w3kraigki35ix7zhd2cbx5f3y60bbkhlmx"))
15678 (modules '((guix build utils)))
15679 (snippet
15680 '(begin
15681 (delete-file "inst/java/ModularityOptimizer.jar")
15682 #t))))
15683 (build-system r-build-system)
15684 (arguments
15685 `(#:phases
15686 (modify-phases %standard-phases
15687 (add-after 'unpack 'build-java-part
15688 (lambda* (#:key inputs #:allow-other-keys)
15689 (invoke "unzip" (assoc-ref inputs "optimizer-src"))
15690 (for-each (lambda (file) (invoke "javac" file))
15691 (find-files "." "\\.java$"))
15692 (apply invoke "jar" "cf" "inst/java/ModularityOptimizer.jar"
15693 (find-files "." "\\.class$"))
15694 #t)))))
15695 (propagated-inputs
15696 `(("r-cowplot" ,r-cowplot)
15697 ("r-dosnow" ,r-dosnow)
15698 ("r-dplyr" ,r-dplyr)
15699 ("r-fnn" ,r-fnn)
15700 ("r-foreach" ,r-foreach)
15701 ("r-ggplot2" ,r-ggplot2)
15702 ("r-ggrepel" ,r-ggrepel)
15703 ("r-hmisc" ,r-hmisc)
15704 ("r-ica" ,r-ica)
15705 ("r-irlba" ,r-irlba)
15706 ("r-matrix" ,r-matrix)
15707 ("r-mclust" ,r-mclust)
15708 ("r-patchwork" ,r-patchwork)
15709 ("r-plyr" ,r-plyr)
15710 ("r-rann-l1" ,r-rann-l1)
15711 ("r-rcpp" ,r-rcpp)
15712 ("r-rcpparmadillo" ,r-rcpparmadillo)
15713 ("r-riverplot" ,r-riverplot)
15714 ("r-rtsne" ,r-rtsne)
15715 ("r-snow" ,r-snow)))
15716 (native-inputs
15717 `(("jdk" ,icedtea "jdk")
15718 ;; See https://github.com/MacoskoLab/liger/issues/96
15719 ;; The optimizer is released under the Expat license.
15720 ("optimizer-src"
15721 ,(origin
15722 (method url-fetch)
15723 (uri "http://www.ludowaltman.nl/slm/modularity_optimizer_source.zip")
15724 (sha256
15725 (base32
15726 "01hmm6sapcmldvayknqx2w4cav3qv71mwwkdkwj4qgq6dss09g18"))))
15727 ("unzip" ,unzip)
15728 ("r-knitr" ,r-knitr))) ; for vignettes
15729 (home-page "https://github.com/MacoskoLab/liger")
15730 (synopsis "Integrate and analyze multiple single-cell datasets")
15731 (description
15732 "LIGER is a package for integrating and analyzing multiple single-cell
15733 datasets, developed and maintained by the Macosko lab. It relies on
15734 integrative non-negative matrix factorization to identify shared and
15735 dataset-specific factors.")
15736 (license license:gpl3)))
15737
15738 (define-public r-harmony
15739 (package
15740 (name "r-harmony")
15741 (version "0.1")
15742 (source
15743 (origin
15744 (method git-fetch)
15745 (uri (git-reference
15746 (url "https://github.com/immunogenomics/harmony")
15747 (commit version)))
15748 (file-name (git-file-name name version))
15749 (sha256
15750 (base32
15751 "05r401q09rbr6fqhb9mbd95082cjdi3nag1cv6zn96xkr0f6imq9"))
15752 (modules '((guix build utils)))
15753 (snippet
15754 '(begin
15755 (for-each delete-file '("config.status" "configure"))
15756 #t))))
15757 (build-system r-build-system)
15758 (propagated-inputs
15759 `(("r-cowplot" ,r-cowplot)
15760 ("r-dplyr" ,r-dplyr)
15761 ("r-ggplot2" ,r-ggplot2)
15762 ("r-irlba" ,r-irlba)
15763 ("r-matrix" ,r-matrix)
15764 ("r-rcpp" ,r-rcpp)
15765 ("r-rcpparmadillo" ,r-rcpparmadillo)
15766 ("r-rcppprogress" ,r-rcppprogress)
15767 ("r-rlang" ,r-rlang)
15768 ("r-tibble" ,r-tibble)
15769 ("r-tidyr" ,r-tidyr)))
15770 (native-inputs
15771 `(("autoconf" ,autoconf)))
15772 (home-page "https://github.com/immunogenomics/harmony")
15773 (synopsis "Integration of single cell sequencing data")
15774 (description
15775 "This package provides an implementation of the Harmony algorithm for
15776 single cell integration, described in Korsunsky et al
15777 @url{doi.org/10.1101/461954}. The package includes a standalone Harmony
15778 function and interfaces to external frameworks.")
15779 (license license:gpl3)))
15780
15781 (define-public r-covr
15782 (package
15783 (name "r-covr")
15784 (version "3.5.0")
15785 (source
15786 (origin
15787 (method url-fetch)
15788 (uri (cran-uri "covr" version))
15789 (sha256
15790 (base32 "1pvr95h7jg9hqq1qq1cccy323pkxldrwafl08151cc410499k4fb"))))
15791 (properties `((upstream-name . "covr")))
15792 (build-system r-build-system)
15793 (propagated-inputs
15794 `(("r-crayon" ,r-crayon)
15795 ("r-digest" ,r-digest)
15796 ("r-httr" ,r-httr)
15797 ("r-jsonlite" ,r-jsonlite)
15798 ("r-rex" ,r-rex)
15799 ("r-withr" ,r-withr)
15800 ("r-yaml" ,r-yaml)))
15801 (native-inputs
15802 `(("r-knitr" ,r-knitr))) ; for vignettes
15803 (home-page "https://github.com/r-lib/covr")
15804 (synopsis "Test coverage for R packages")
15805 (description
15806 "Thisp package enables you to track and report code coverage for your
15807 package and (optionally) upload the results to a coverage service. Code
15808 coverage is a measure of the amount of code being exercised by a set of tests.
15809 It is an indirect measure of test quality and completeness. This package is
15810 compatible with any testing methodology or framework and tracks coverage of
15811 both R code and compiled C/C++/FORTRAN code.")
15812 (license license:gpl3)))
15813
15814 (define-public r-systemfonts
15815 (package
15816 (name "r-systemfonts")
15817 (version "0.1.1")
15818 (source
15819 (origin
15820 (method url-fetch)
15821 (uri (cran-uri "systemfonts" version))
15822 (sha256
15823 (base32
15824 "0m0ljid683xcam2f14x7k2zv1yx4npac38a3gfv11vhxfbnpgp0z"))))
15825 (properties `((upstream-name . "systemfonts")))
15826 (build-system r-build-system)
15827 (inputs
15828 `(("fontconfig" ,fontconfig)
15829 ("freetype" ,freetype)
15830 ("zlib" ,zlib)))
15831 (native-inputs
15832 `(("pkg-config" ,pkg-config)))
15833 (home-page "https://github.com/r-lib/systemfonts")
15834 (synopsis "System native font finding")
15835 (description
15836 "This package provides system native access to the font catalogue. As
15837 font handling varies between systems it is difficult to correctly locate
15838 installed fonts across different operating systems. The 'systemfonts' package
15839 provides bindings to the native libraries for finding font files that can then
15840 be used further by e.g. graphic devices.")
15841 (license license:expat)))
15842
15843 (define-public r-graphlayouts
15844 (package
15845 (name "r-graphlayouts")
15846 (version "0.6.0")
15847 (source
15848 (origin
15849 (method url-fetch)
15850 (uri (cran-uri "graphlayouts" version))
15851 (sha256
15852 (base32
15853 "1la016m37kp79zk8p1yx9kaha8y6d4w52w39h0mzv1mfsi6d75w0"))))
15854 (properties `((upstream-name . "graphlayouts")))
15855 (build-system r-build-system)
15856 (propagated-inputs
15857 `(("r-igraph" ,r-igraph)
15858 ("r-rcpp" ,r-rcpp)
15859 ("r-rcpparmadillo" ,r-rcpparmadillo)))
15860 (home-page "https://github.com/schochastics/graphlayouts")
15861 (synopsis "Additional layout algorithms for network visualizations")
15862 (description
15863 "This package provides several layout algorithms to visualize networks
15864 which are not part of the igraph library. Most are based on the concept of
15865 stress majorization by Gansner et al. (2004)
15866 <doi:10.1007/978-3-540-31843-9_25>. Some more specific algorithms
15867 emphasize hidden group structures in networks or focus on specific nodes.")
15868 (license license:expat)))
15869
15870 (define-public r-tidygraph
15871 (package
15872 (name "r-tidygraph")
15873 (version "1.1.2")
15874 (source
15875 (origin
15876 (method url-fetch)
15877 (uri (cran-uri "tidygraph" version))
15878 (sha256
15879 (base32
15880 "1zpsarm74afbc7p5dlyb0whc09670qdcddw1ckb25cfc9hfh0hjn"))))
15881 (properties `((upstream-name . "tidygraph")))
15882 (build-system r-build-system)
15883 (propagated-inputs
15884 `(("r-dplyr" ,r-dplyr)
15885 ("r-igraph" ,r-igraph)
15886 ("r-magrittr" ,r-magrittr)
15887 ("r-pillar" ,r-pillar)
15888 ("r-r6" ,r-r6)
15889 ("r-rcpp" ,r-rcpp)
15890 ("r-rlang" ,r-rlang)
15891 ("r-tibble" ,r-tibble)
15892 ("r-tidyr" ,r-tidyr)))
15893 (home-page "https://github.com/thomasp85/tidygraph")
15894 (synopsis "Tidy API for graph manipulation")
15895 (description
15896 "This package provides a graph implementation that can be thought of as
15897 two tidy data frames describing node and edge data respectively. It provides
15898 an approach to manipulate these two virtual data frames using the API defined
15899 in the @code{dplyr} package, and it also provides tidy interfaces to a lot of
15900 common graph algorithms.")
15901 (license license:expat)))
15902
15903 (define-public r-soupx
15904 (let ((commit "a3354be76fb52fd795be6ddf163cf056c05c6cb8")
15905 (revision "1"))
15906 (package
15907 (name "r-soupx")
15908 (version (git-version "0.3.1" revision commit))
15909 (source
15910 (origin
15911 (method git-fetch)
15912 (uri (git-reference
15913 (url "https://github.com/constantAmateur/SoupX")
15914 (commit commit)))
15915 (file-name (git-file-name name version))
15916 (sha256
15917 (base32
15918 "1zmlyzrl0fz6l79gn2wswid670p88mm3y292is89sa5p3h7frr99"))))
15919 (properties `((upstream-name . "SoupX")))
15920 (build-system r-build-system)
15921 (propagated-inputs
15922 `(("r-ggplot2" ,r-ggplot2)
15923 ("r-matrix" ,r-matrix)
15924 ("r-seurat" ,r-seurat)))
15925 (home-page "https://github.com/constantAmateur/SoupX")
15926 (synopsis "Single cell mRNA Soup eXterminator")
15927 (description
15928 "This package provides a package for quantifying, profiling and
15929 removing cell free mRNA contamination (the \"soup\") from droplet based single
15930 cell RNA-seq experiments.")
15931 (license license:gpl2))))
15932
15933 (define-public r-assertr
15934 (package
15935 (name "r-assertr")
15936 (version "2.7")
15937 (source
15938 (origin
15939 (method url-fetch)
15940 (uri (cran-uri "assertr" version))
15941 (sha256
15942 (base32
15943 "1x868pd4dac1c7b1q5390wqh2f6s50km8nqcpim3nxcj2l4qkqdb"))))
15944 (build-system r-build-system)
15945 (propagated-inputs
15946 `(("r-dplyr" ,r-dplyr)
15947 ("r-mass" ,r-mass)
15948 ("r-rlang" ,r-rlang)))
15949 (native-inputs
15950 `(("r-knitr" ,r-knitr))) ; needed for vignette
15951 (home-page "https://github.com/ropensci/assertr")
15952 (synopsis "Assertive programming for R analysis pipelines")
15953 (description
15954 "This package provides functionality to assert conditions that have to be
15955 met so that errors in data used in analysis pipelines can fail quickly. It is
15956 similar to @code{stopifnot()} but more powerful, friendly, and easier for use
15957 in pipelines.")
15958 (license license:expat)))
15959
15960 (define-public r-parameters
15961 (package
15962 (name "r-parameters")
15963 (version "0.6.0")
15964 (source
15965 (origin
15966 (method url-fetch)
15967 (uri (cran-uri "parameters" version))
15968 (sha256
15969 (base32
15970 "0zin3ikc013hc713n5zs0dbhc3m4nfw1vhc3924z0mrww8r241xn"))))
15971 (properties `((upstream-name . "parameters")))
15972 (build-system r-build-system)
15973 (propagated-inputs
15974 `(("r-bayestestr" ,r-bayestestr)
15975 ("r-insight" ,r-insight)))
15976 (native-inputs
15977 `(("r-knitr" ,r-knitr)))
15978 (home-page "https://cran.r-project.org/web/packages/parameters")
15979 (synopsis "Processing of model parameters")
15980 (description
15981 "This package provides utilities for processing the parameters of various
15982 statistical models. Beyond computing p values, CIs, and other indices for a
15983 wide variety of models, this package implements features like standardization
15984 or bootstrapping of parameters and models, feature reduction (feature
15985 extraction and variable selection) as well as conversion between indices of
15986 effect size.")
15987 (license license:gpl3)))
15988
15989 (define-public r-rgdal
15990 (package
15991 (name "r-rgdal")
15992 (version "1.4-8")
15993 (source
15994 (origin
15995 (method url-fetch)
15996 (uri (cran-uri "rgdal" version))
15997 (sha256
15998 (base32 "1jd691amf3ghznq5im15gvhl6v6k25klpl75m4ngrqf9xlxaa3as"))))
15999 (properties `((upstream-name . "rgdal")))
16000 (build-system r-build-system)
16001 (inputs
16002 `(("gdal" ,gdal)
16003 ("proj.4" ,proj.4)
16004 ("zlib" ,zlib)))
16005 (propagated-inputs
16006 `(("r-sp" ,r-sp)))
16007 (native-inputs
16008 `(("pkg-config" ,pkg-config)))
16009 (home-page "http://rgdal.r-forge.r-project.org")
16010 (synopsis "Bindings for the Geospatial Data Abstraction Library")
16011 (description
16012 "This package provides bindings to the Geospatial Data Abstraction
16013 Library (GDAL) and access to projection/transformation operations from the
16014 PROJ.4 library.")
16015 (license license:gpl2+)))
16016
16017 (define-public r-insol
16018 (package
16019 (name "r-insol")
16020 (version "1.2.1")
16021 (source
16022 (origin
16023 (method url-fetch)
16024 (uri (cran-uri "insol" version))
16025 (sha256
16026 (base32
16027 "1d2vqmbp94ff80mfkmq4a8y12r6ryym8hh1568ip9qbn7snc64v1"))))
16028 (properties `((upstream-name . "insol")))
16029 (build-system r-build-system)
16030 (propagated-inputs
16031 `(("r-raster" ,r-raster)))
16032 (native-inputs
16033 `(("gfortran" ,gfortran)))
16034 (home-page "https://meteoexploration.com/R/insol/index.html")
16035 (synopsis "Tools for calculating solar radiation")
16036 (description
16037 "This package provides functions to compute insolation on tilted
16038 surfaces, computes atmospheric transmittance and related parameters such as:
16039 Earth radius vector, declination, sunset and sunrise, daylength, equation of
16040 time, vector in the direction of the sun, vector normal to surface, and some
16041 atmospheric physics.")
16042 (license license:gpl2+)))
16043
16044 (define-public r-lifecycle
16045 (package
16046 (name "r-lifecycle")
16047 (version "0.2.0")
16048 (source
16049 (origin
16050 (method url-fetch)
16051 (uri (cran-uri "lifecycle" version))
16052 (sha256
16053 (base32
16054 "0912865c6675fsblrfdk6s568krsj1x8qbk1kipy7m05xs6nwx19"))))
16055 (properties `((upstream-name . "lifecycle")))
16056 (build-system r-build-system)
16057 (propagated-inputs
16058 `(("r-glue" ,r-glue)
16059 ("r-rlang" ,r-rlang)))
16060 (native-inputs
16061 `(("r-knitr" ,r-knitr))) ; for vignettes
16062 (home-page "https://github.com/r-lib/lifecycle")
16063 (synopsis "Manage the life cycle of your package functions")
16064 (description
16065 "Manage the life cycle of your exported functions with shared
16066 conventions, documentation badges, and non-invasive deprecation warnings. The
16067 lifecycle package defines four development stages (experimental, maturing,
16068 stable, and questioning) and three deprecation stages (soft-deprecated,
16069 deprecated, and defunct). It makes it easy to insert badges corresponding to
16070 these stages in your documentation. Usage of deprecated functions are
16071 signalled with increasing levels of non-invasive verbosity.")
16072 (license license:gpl3)))
16073
16074 (define-public r-assertable
16075 (package
16076 (name "r-assertable")
16077 (version "0.2.7")
16078 (source
16079 (origin
16080 (method url-fetch)
16081 (uri (cran-uri "assertable" version))
16082 (sha256
16083 (base32
16084 "1npks9rcrnchmd0silq6qrvqkmdkp9fwjkyyvvp1lqjclyxk6vkk"))))
16085 (build-system r-build-system)
16086 (propagated-inputs
16087 `(("r-data-table" ,r-data-table)))
16088 (home-page "https://cran.r-project.org/web/packages/assertable/")
16089 (synopsis "Verbose assertions for tabular data (data.frames and data.tables)")
16090 (description "This package provides simple, flexible assertions on
16091 data.frame or data.table objects with verbose output for vetting. While other
16092 assertion packages apply towards more general use-cases, @code{assertable} is
16093 tailored towards tabular data. It includes functions to check variable names
16094 and values, whether the dataset contains all combinations of a given set of
16095 unique identifiers, and whether it is a certain length. In addition,
16096 @code{assertable} includes utility functions to check the existence of target
16097 files and to efficiently import multiple tabular data files into one
16098 data.table.")
16099 (license license:gpl3)))
16100
16101 (define-public r-quadprog
16102 (package
16103 (name "r-quadprog")
16104 (version "1.5-8")
16105 (source
16106 (origin
16107 (method url-fetch)
16108 (uri (cran-uri "quadprog" version))
16109 (sha256
16110 (base32 "1ka9g8zak8sg4y2xbz93dfrldznlk9qpd4pq9z21cdcdn3b8s4i2"))))
16111 (build-system r-build-system)
16112 (native-inputs
16113 `(("gfortran" ,gfortran)))
16114 (home-page "https://cran.r-project.org/web/packages/quadprog")
16115 (synopsis "Functions to solve quadratic programming problems")
16116 (description
16117 "This package contains routines and documentation for solving quadratic
16118 programming problems.")
16119 (license license:gpl3+)))
16120
16121 (define-public r-desolve
16122 (package
16123 (name "r-desolve")
16124 (version "1.28")
16125 (source
16126 (origin
16127 (method url-fetch)
16128 (uri (cran-uri "deSolve" version))
16129 (sha256
16130 (base32 "0jasvdzig0pzhzspmy20089az19r91xjfb9q6h8gj7c4mr6fymac"))))
16131 (properties `((upstream-name . "deSolve")))
16132 (build-system r-build-system)
16133 (native-inputs
16134 `(("gfortran" ,gfortran)))
16135 (home-page "https://desolve.r-forge.r-project.org/")
16136 (synopsis "Solvers for initial value problems of differential equations")
16137 (description "This package provides functions that solve initial value
16138 problems of a system of first-order @dfn{ordinary differential
16139 equations} (ODE), of @dfn{partial differential equations} (PDE), of
16140 @dfn{differential algebraic equations} (DAE), and of delay differential
16141 equations. The functions provide an interface to the FORTRAN functions
16142 @code{lsoda}, @code{lsodar}, @code{lsode}, @code{lsodes} of the ODEPACK
16143 collection, to the FORTRAN functions @code{dvode} and @code{daspk} and a
16144 C-implementation of solvers of the Runge-Kutta family with fixed or variable
16145 time steps. The package contains routines designed for solving ODEs resulting
16146 from 1-D, 2-D and 3-D partial differential equations that have been converted
16147 to ODEs by numerical differencing.")
16148 (license license:gpl2+)))
16149
16150 (define-public r-pracma
16151 (package
16152 (name "r-pracma")
16153 (version "2.2.9")
16154 (source (origin
16155 (method url-fetch)
16156 (uri (cran-uri "pracma" version))
16157 (sha256
16158 (base32 "07mzhzz73wsjjw1q05l024gcd13hwnzsxf873q9dyhw6x3shzshc"))))
16159 (build-system r-build-system)
16160 (home-page "https://cran.r-project.org/web/packages/pracma/")
16161 (synopsis "Practical numerical math functions")
16162 (description "This package provides functions for numerical analysis and
16163 linear algebra, numerical optimization, differential equations, plus some
16164 special functions. It uses Matlab function names where appropriate to simplify
16165 porting.")
16166 (license license:gpl3+)))
16167
16168 (define-public r-subplex
16169 (package
16170 (name "r-subplex")
16171 (version "1.6")
16172 (source
16173 (origin
16174 (method url-fetch)
16175 (uri (cran-uri "subplex" version))
16176 (sha256
16177 (base32
16178 "1yfbfjvpbhgky7vihw3f4jl41pxpqb39z4nc045d5z7z48bdl18d"))))
16179 (build-system r-build-system)
16180 (native-inputs
16181 `(("gfortran" ,gfortran)))
16182 (home-page "https://cran.r-project.org/web/packages/subplex")
16183 (synopsis "Unconstrained optimization using the subplex algorithm")
16184 (description
16185 "This package implements the Subplex optimization algorithm.
16186 It solves unconstrained optimization problems using a simplex method on
16187 subspaces. The method is well suited for optimizing objective functions that
16188 are noisy or are discontinuous at the solution.")
16189 (license license:gpl3+)))
16190
16191 (define-public r-txtplot
16192 (package
16193 (name "r-txtplot")
16194 (version "1.0-3")
16195 (source
16196 (origin
16197 (method url-fetch)
16198 (uri (cran-uri "txtplot" version))
16199 (sha256
16200 (base32
16201 "1949ab1bzvysdb79g8x1gaknj0ih3d6g63pv9512h5m5l3a6c31h"))))
16202 (build-system r-build-system)
16203 (home-page "https://cran.r-project.org/web/packages/txtplot/")
16204 (synopsis "Text-based plotting")
16205 (description "This package provides functions to produce rudimentary ASCII
16206 graphics directly in the terminal window. This package provides a basic
16207 plotting function (and equivalents of curve, density, acf and barplot) as well
16208 as a boxplot function.")
16209 (license license:lgpl3+)))
16210
16211 (define-public r-bio3d
16212 (package
16213 (name "r-bio3d")
16214 (version "2.4-1")
16215 (source
16216 (origin
16217 (method url-fetch)
16218 (uri (cran-uri "bio3d" version))
16219 (sha256
16220 (base32
16221 "07rw6c2d95gb5myxh31727j0jrchd0xisa3x89jjmf4zzs3vv7v7"))))
16222 (properties `((upstream-name . "bio3d")))
16223 (build-system r-build-system)
16224 (inputs `(("zlib" ,zlib)))
16225 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
16226 (home-page "http://thegrantlab.org/bio3d/")
16227 (synopsis "Biological structure analysis")
16228 (description
16229 "This package provides utilities to process, organize and explore protein
16230 structure, sequence and dynamics data. Features include the ability to read
16231 and write structure, sequence and dynamic trajectory data, perform sequence
16232 and structure database searches, data summaries, atom selection, alignment,
16233 superposition, rigid core identification, clustering, torsion analysis,
16234 distance matrix analysis, structure and sequence conservation analysis, normal
16235 mode analysis, principal component analysis of heterogeneous structure data,
16236 and correlation network analysis from normal mode and molecular dynamics data.
16237 In addition, various utility functions are provided to enable the statistical
16238 and graphical power of the R environment to work with biological sequence and
16239 structural data.")
16240 (license license:gpl2+)))
16241
16242 (define-public r-bios2cor
16243 (package
16244 (name "r-bios2cor")
16245 (version "2.1")
16246 (source
16247 (origin
16248 (method url-fetch)
16249 (uri (cran-uri "Bios2cor" version))
16250 (sha256
16251 (base32
16252 "04wk1cjrrxhpv1kdhd67r1qvjv268xxi0z0r105wy912110z9m6x"))))
16253 (properties `((upstream-name . "Bios2cor")))
16254 (build-system r-build-system)
16255 (propagated-inputs
16256 `(("r-bigmemory" ,r-bigmemory)
16257 ("r-bio3d" ,r-bio3d)
16258 ("r-circular" ,r-circular)
16259 ("r-igraph" ,r-igraph)))
16260 (home-page "https://cran.r-project.org/web/packages/Bios2cor/")
16261 (synopsis "From biological sequences and simulations to correlation analysis")
16262 (description
16263 "This package provides utilities for computation and analysis of
16264 correlation/covariation in multiple sequence alignments and in side chain
16265 motions during molecular dynamics simulations. Features include the
16266 computation of correlation/covariation scores using a variety of scoring
16267 functions between either sequence positions in alignments or side chain
16268 dihedral angles in molecular dynamics simulations and utilities to analyze the
16269 correlation/covariation matrix through a variety of tools including network
16270 representation and principal components analysis. In addition, several
16271 utility functions are based on the R graphical environment to provide friendly
16272 tools for help in data interpretation.")
16273 (license license:gpl2+)))
16274
16275 ;; This package includes minified JavaScript files. When upgrading please
16276 ;; check that there are no new minified JavaScript files.
16277 (define-public r-networkd3
16278 (package
16279 (name "r-networkd3")
16280 (version "0.4")
16281 (source
16282 (origin
16283 (method url-fetch)
16284 (uri (cran-uri "networkD3" version))
16285 (sha256
16286 (base32
16287 "02wxki67drppgfka1is1ykg1f2rxf0x0657c0crj7ipfy62jbf1k"))
16288 (snippet
16289 '(begin
16290 (delete-file "inst/htmlwidgets/lib/d3-4.5.0/d3.min.js")
16291 #t))))
16292 (properties `((upstream-name . "networkD3")))
16293 (build-system r-build-system)
16294 (arguments
16295 `(#:modules ((guix build utils)
16296 (guix build r-build-system)
16297 (srfi srfi-1)
16298 (ice-9 popen))
16299 #:phases
16300 (modify-phases %standard-phases
16301 (add-after 'unpack 'process-javascript
16302 (lambda* (#:key inputs #:allow-other-keys)
16303 (with-directory-excursion "inst/htmlwidgets/lib/"
16304 (call-with-values
16305 (lambda ()
16306 (unzip2
16307 `((,(assoc-ref inputs "d3.v4.js")
16308 "d3-4.5.0/d3.min.js"))))
16309 (lambda (sources targets)
16310 (for-each (lambda (source target)
16311 (format #t "Processing ~a --> ~a~%"
16312 source target)
16313 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
16314 (call-with-output-file target
16315 (lambda (port)
16316 (dump-port minified port)))))
16317 sources targets))))
16318 #t)))))
16319 (native-inputs
16320 `(("uglify-js" ,uglify-js)
16321 ;; NOTE: Make sure that this version of d3 is still valid when
16322 ;; upgrading the package.
16323 ("d3.v4.js"
16324 ,(origin
16325 (method url-fetch)
16326 (uri "https://d3js.org/d3.v4.js")
16327 (sha256
16328 (base32
16329 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))))
16330 (propagated-inputs
16331 `(("r-htmlwidgets" ,r-htmlwidgets)
16332 ("r-igraph" ,r-igraph)
16333 ("r-magrittr" ,r-magrittr)))
16334 (home-page "https://cran.r-project.org/package=networkD3")
16335 (synopsis "D3 JavaScript network graphs from R")
16336 (description
16337 "This package creates D3 JavaScript network, tree, dendrogram, and Sankey
16338 graphs from R.")
16339 (license license:gpl3+)))
16340
16341 (define-public r-aasea
16342 (package
16343 (name "r-aasea")
16344 (version "1.1.0")
16345 (source
16346 (origin
16347 (method url-fetch)
16348 (uri (cran-uri "aaSEA" version))
16349 (sha256
16350 (base32
16351 "0him4r8qyp0xssgrmdxjs45yn4d28h5anv4jyxxbbs9phb0m6j3h"))))
16352 (properties `((upstream-name . "aaSEA")))
16353 (build-system r-build-system)
16354 (propagated-inputs
16355 `(("r-bios2cor" ,r-bios2cor)
16356 ("r-dt" ,r-dt)
16357 ("r-hmisc" ,r-hmisc)
16358 ("r-magrittr" ,r-magrittr)
16359 ("r-networkd3" ,r-networkd3)
16360 ("r-plotly" ,r-plotly)
16361 ("r-seqinr" ,r-seqinr)
16362 ("r-shiny" ,r-shiny)
16363 ("r-shinydashboard" ,r-shinydashboard)))
16364 (home-page "https://cran.r-project.org/web/packages/aaSEA/")
16365 (synopsis "Amino acid substitution effect analyzer")
16366 (description
16367 "Given a protein multiple sequence alignment, it is a daunting task to
16368 assess the effects of substitutions along sequence length. The aaSEA package
16369 is intended to help researchers to rapidly analyze property changes caused by
16370 single, multiple and correlated amino acid substitutions in proteins.")
16371 (license license:gpl3)))
16372
16373 (define-public r-abacus
16374 (package
16375 (name "r-abacus")
16376 (version "1.0.0")
16377 (source
16378 (origin
16379 (method url-fetch)
16380 (uri (cran-uri "ABACUS" version))
16381 (sha256
16382 (base32
16383 "0m1dnkwjr1522l9ddbzzx7ayxvli17sbmk6s28adpmzzjwh2kd1i"))))
16384 (properties `((upstream-name . "ABACUS")))
16385 (build-system r-build-system)
16386 (propagated-inputs
16387 `(("r-ggplot2" ,r-ggplot2)
16388 ("r-shiny" ,r-shiny)))
16389 (home-page "https://shiny.abdn.ac.uk/Stats/apps/")
16390 (synopsis "Apps-based activities for communicating and understanding statistics")
16391 (description
16392 "This package provides a set of Shiny apps for effective communication
16393 and understanding in statistics. The current version includes properties of
16394 normal distribution, properties of sampling distribution, one-sample z and t
16395 tests, two samples independent (unpaired) t test and analysis of variance.")
16396 (license license:gpl3)))
16397
16398 (define-public r-abc-rap
16399 (package
16400 (name "r-abc-rap")
16401 (version "0.9.0")
16402 (source
16403 (origin
16404 (method url-fetch)
16405 (uri (cran-uri "ABC.RAP" version))
16406 (sha256
16407 (base32
16408 "1kdspln17v0krvahcd55vib4dv5azp60b3r1zf489x10qqbp1mxk"))))
16409 (properties `((upstream-name . "ABC.RAP")))
16410 (build-system r-build-system)
16411 (home-page "https://cran.r-project.org/web/packages/ABC.RAP/")
16412 (synopsis "Array-based CpG region analysis pipeline")
16413 (description
16414 "This package aims to identify candidate genes that are differentially
16415 methylated between cases and controls. It applies Student's t-test and delta
16416 beta analysis to identify candidate genes containing multiple CpG sites.")
16417 (license license:gpl3)))
16418
16419 (define-public r-abcadm
16420 (package
16421 (name "r-abcadm")
16422 (version "1.0")
16423 (source
16424 (origin
16425 (method url-fetch)
16426 (uri (cran-uri "abcADM" version))
16427 (sha256
16428 (base32
16429 "0vcabnnnwc0psv9v3rda5aap9s8cq1pjh02zva3ki64hlavf2a10"))))
16430 (properties `((upstream-name . "abcADM")))
16431 (build-system r-build-system)
16432 (propagated-inputs
16433 `(("r-bh" ,r-bh)
16434 ("r-rcpp" ,r-rcpp)))
16435 (home-page "https://cran.r-project.org/web/packages/abcADM/")
16436 (synopsis "Fit accumulated damage models and estimate reliability using ABC")
16437 (description
16438 "This package provides tools to estimate parameters of accumulated
16439 damage (load duration) models based on failure time data under a Bayesian
16440 framework, using @dfn{Approximate Bayesian Computation} (ABC), and to assess
16441 long-term reliability under stochastic load profiles.")
16442 (license license:gpl3)))
16443
16444 (define-public r-rglpk
16445 (package
16446 (name "r-rglpk")
16447 (version "0.6-4")
16448 (source
16449 (origin
16450 (method url-fetch)
16451 (uri (cran-uri "Rglpk" version))
16452 (sha256
16453 (base32
16454 "19mzpyimzq9zqnbi05j79b2di3nzaln8swggs9p8sqdr60qvr3d2"))))
16455 (properties `((upstream-name . "Rglpk")))
16456 (build-system r-build-system)
16457 (propagated-inputs
16458 `(("r-slam" ,r-slam)))
16459 (inputs
16460 `(("glpk" ,glpk)))
16461 (home-page "https://r-forge.r-project.org/projects/rglp/")
16462 (synopsis "R interface to the GNU Linear Programming Kit")
16463 (description
16464 "This package provides an R interface to the GNU Linear Programming Kit,
16465 software for solving large-scale @dfn{linear programming} (LP), @dfn{mixed
16466 integer linear programming} (MILP) and other related problems.")
16467 ;; Either license
16468 (license (list license:gpl2 license:gpl3))))
16469
16470 (define-public r-abcdefba
16471 (package
16472 (name "r-abcdefba")
16473 (version "0.4")
16474 (source
16475 (origin
16476 (method url-fetch)
16477 (uri (cran-uri "abcdeFBA" version))
16478 (sha256
16479 (base32
16480 "1rxjripy8v6bxi25vdfjnbk24zkmf752qbl73cin6nvnqflwxkx4"))))
16481 (properties `((upstream-name . "abcdeFBA")))
16482 (build-system r-build-system)
16483 (propagated-inputs
16484 `(("r-corrplot" ,r-corrplot)
16485 ("r-lattice" ,r-lattice)
16486 ("r-rgl" ,r-rgl)
16487 ("r-rglpk" ,r-rglpk)))
16488 (home-page "https://cran.r-project.org/web/packages/abcdeFBA/")
16489 (synopsis "A-Biologist-Can-Do-Everything of Flux Balance Analysis with this package")
16490 (description
16491 "This package provides functions for Constraint Based Simulation using
16492 Flux Balance Analysis and informative analysis of the data generated during
16493 simulation.")
16494 (license license:gpl2)))
16495
16496 (define-public r-abcrlda
16497 (package
16498 (name "r-abcrlda")
16499 (version "1.0.2")
16500 (source
16501 (origin
16502 (method url-fetch)
16503 (uri (cran-uri "abcrlda" version))
16504 (sha256
16505 (base32
16506 "0zjdrbg3zx0znqnh0dvmifs9c12b8vjhbaf3nbwab9xh25nsmg75"))))
16507 (properties `((upstream-name . "abcrlda")))
16508 (build-system r-build-system)
16509 (home-page "https://ieeexplore.ieee.org/document/8720003/")
16510 (synopsis "Asymptotically bias-corrected regularized linear discriminant analysis")
16511 (description
16512 "This package offers methods to perform @dfn{asymptotically
16513 bias-corrected regularized linear discriminant analysis} (ABC_RLDA) for
16514 cost-sensitive binary classification. The bias-correction is an estimate of
16515 the bias term added to regularized discriminant analysis that minimizes the
16516 overall risk.")
16517 (license license:gpl3)))
16518
16519 (define-public r-abemus
16520 (package
16521 (name "r-abemus")
16522 (version "1.0.1")
16523 (source
16524 (origin
16525 (method url-fetch)
16526 (uri (cran-uri "abemus" version))
16527 (sha256
16528 (base32
16529 "1dhllb184byp1yl15rg2w02zgw3iajag7cxshirg47mnmm7n70bb"))))
16530 (properties `((upstream-name . "abemus")))
16531 (build-system r-build-system)
16532 (propagated-inputs
16533 `(("r-data-table" ,r-data-table)))
16534 (home-page "https://cran.r-project.org/web/packages/abemus/")
16535 (synopsis "Adaptive base error model in ultra-deep sequencing data")
16536 (description
16537 "This package provides an implementation of @dfn{Adaptive Base Error
16538 Model in Ultra-deep Sequencing data} (ABEMUS), which combines
16539 platform-specific genetic knowledge and empirical signal to readily detect and
16540 quantify somatic @dfn{single nucleotide variants} (SNVs) in @dfn{circulating
16541 cell free DNA} (cfDNA).")
16542 (license license:gpl3)))
16543
16544 ;; This package includes minified JavaScript files. When upgrading please
16545 ;; check that there are no new minified JavaScript files.
16546 (define-public r-rintrojs
16547 (package
16548 (name "r-rintrojs")
16549 (version "0.2.2")
16550 (source
16551 (origin
16552 (method url-fetch)
16553 (uri (cran-uri "rintrojs" version))
16554 (sha256
16555 (base32
16556 "0vyqb3pyrh12saddar71ac9csn2vkd2j8ln6ygpqys8ky1lc3427"))))
16557 (properties `((upstream-name . "rintrojs")))
16558 (build-system r-build-system)
16559 (arguments
16560 `(#:modules ((guix build utils)
16561 (guix build r-build-system)
16562 (srfi srfi-1)
16563 (ice-9 popen))
16564 #:phases
16565 (modify-phases %standard-phases
16566 (add-after 'unpack 'process-javascript
16567 (lambda* (#:key inputs #:allow-other-keys)
16568 (with-directory-excursion "inst/javascript/introjs/"
16569 (call-with-values
16570 (lambda ()
16571 (unzip2
16572 `((,(assoc-ref inputs "intro.js")
16573 "intro.min.js"))))
16574 (lambda (sources targets)
16575 (for-each (lambda (source target)
16576 (format #t "Processing ~a --> ~a~%"
16577 source target)
16578 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
16579 (call-with-output-file target
16580 (lambda (port)
16581 (dump-port minified port)))))
16582 sources targets))))
16583 #t)))))
16584 (native-inputs
16585 `(("uglify-js" ,uglify-js)
16586 ("intro.js"
16587 ,(origin
16588 (method url-fetch)
16589 (uri "https://raw.githubusercontent.com/usablica/intro.js/v2.9.3/intro.js")
16590 (sha256
16591 (base32
16592 "1qf8n1sfy9qkiqqnfgg0xbhmfgh0g3mqsjas8qhz230h3zzlzxj8"))))))
16593 (propagated-inputs
16594 `(("r-jsonlite" ,r-jsonlite)
16595 ("r-shiny" ,r-shiny)))
16596 (home-page "https://github.com/carlganz/rintrojs")
16597 (synopsis "Wrapper for the Intro.js library")
16598 (description
16599 "This package provides a wrapper for the @url{http://www.introjs.com,
16600 Intro.js} library. This package makes it easy to include step-by-step
16601 introductions, and clickable hints in a Shiny application. It supports both
16602 static introductions in the UI, and programmatic introductions from the
16603 server-side.")
16604 (license license:agpl3+)))
16605
16606 (define-public r-sysfonts
16607 (package
16608 (name "r-sysfonts")
16609 (version "0.8")
16610 (source
16611 (origin
16612 (method url-fetch)
16613 (uri (cran-uri "sysfonts" version))
16614 (sha256
16615 (base32
16616 "0wng902plryf2d8fc7k7m3jx11acz51kb2d91cqbyhq7xpk06z43"))))
16617 (properties `((upstream-name . "sysfonts")))
16618 (build-system r-build-system)
16619 (inputs
16620 `(("freetype" ,freetype)
16621 ("libpng" ,libpng)
16622 ("zlib" ,zlib)))
16623 (native-inputs
16624 `(("pkg-config" ,pkg-config)))
16625 (home-page "https://github.com/yixuan/sysfonts")
16626 (synopsis "Loading fonts into R")
16627 (description
16628 "This is a package to simplify loading of system fonts and Google Fonts
16629 into R, in order to support other packages.")
16630 (license license:gpl2)))
16631
16632 (define-public r-showtextdb
16633 (package
16634 (name "r-showtextdb")
16635 (version "2.0")
16636 (source
16637 (origin
16638 (method url-fetch)
16639 (uri (cran-uri "showtextdb" version))
16640 (sha256
16641 (base32
16642 "1qwwj9x2jvadvwn60h75k99c9xi7yhqjsgaakahz5paxgj583bsh"))))
16643 (properties `((upstream-name . "showtextdb")))
16644 (build-system r-build-system)
16645 (propagated-inputs
16646 `(("r-sysfonts" ,r-sysfonts)))
16647 (home-page "https://cran.r-project.org/web/packages/showtextdb/")
16648 (synopsis "Font files for the 'showtext' package")
16649 (description
16650 "This package provides font files that can be used by the @code{showtext}
16651 package.")
16652 (license license:asl2.0)))
16653
16654 (define-public r-showtext
16655 (package
16656 (name "r-showtext")
16657 (version "0.7-1")
16658 (source
16659 (origin
16660 (method url-fetch)
16661 (uri (cran-uri "showtext" version))
16662 (sha256
16663 (base32
16664 "0a5gg72bfrc7wm0phj1aflj1wc08kfi81ac32na6ya9s2ivyimw5"))))
16665 (properties `((upstream-name . "showtext")))
16666 (build-system r-build-system)
16667 (inputs
16668 `(("freetype" ,freetype)
16669 ("libpng" ,libpng)
16670 ("zlib" ,zlib)))
16671 (propagated-inputs
16672 `(("r-showtextdb" ,r-showtextdb)
16673 ("r-sysfonts" ,r-sysfonts)))
16674 (native-inputs `(("pkg-config" ,pkg-config)))
16675 (home-page "https://github.com/yixuan/showtext")
16676 (synopsis "Using fonts more easily in R graphs")
16677 (description
16678 "This package aims to make it easy to use various types of
16679 fonts (TrueType, OpenType, Type 1, web fonts, etc.) in R graphs, and supports
16680 most output formats of R graphics including PNG, PDF and SVG. Text glyphs
16681 will be converted into polygons or raster images, hence after the plot has
16682 been created, it no longer relies on the font files. No external software
16683 such as Ghostscript is needed to use this package.")
16684 (license license:asl2.0)))
16685
16686 (define-public r-emojifont
16687 (package
16688 (name "r-emojifont")
16689 (version "0.5.3")
16690 (source
16691 (origin
16692 (method url-fetch)
16693 (uri (cran-uri "emojifont" version))
16694 (sha256
16695 (base32
16696 "1cdrrl3hvrs8rskyy6zgr7q2mmg8yb9k8sld1m64zsp7y009g19k"))))
16697 (properties `((upstream-name . "emojifont")))
16698 (build-system r-build-system)
16699 (propagated-inputs
16700 `(("r-ggplot2" ,r-ggplot2)
16701 ("r-proto" ,r-proto)
16702 ("r-showtext" ,r-showtext)
16703 ("r-sysfonts" ,r-sysfonts)))
16704 (home-page "https://guangchuangyu.github.io/emojifont")
16705 (synopsis "Emoji and Font Awesome in R graphics")
16706 (description
16707 "This package enables the use of emoji and the Font Awesome glyphs in
16708 both base and ggplot2 graphics.")
16709 (license license:artistic2.0)))
16710
16711 (define-public r-abstractr
16712 (package
16713 (name "r-abstractr")
16714 (version "0.1.0")
16715 (source
16716 (origin
16717 (method url-fetch)
16718 (uri (cran-uri "abstractr" version))
16719 (sha256
16720 (base32
16721 "1ymwp7syrynwd4i8aj2x5n8jdi9d96fjzl6jb09n0bnr5fgl7vig"))))
16722 (properties `((upstream-name . "abstractr")))
16723 (build-system r-build-system)
16724 (propagated-inputs
16725 `(("r-colourpicker" ,r-colourpicker)
16726 ("r-emojifont" ,r-emojifont)
16727 ("r-ggplot2" ,r-ggplot2)
16728 ("r-gridextra" ,r-gridextra)
16729 ("r-rintrojs" ,r-rintrojs)
16730 ("r-shiny" ,r-shiny)
16731 ("r-shinythemes" ,r-shinythemes)))
16732 (home-page "https://matt-kumar.shinyapps.io/portfolio")
16733 (synopsis "R-Shiny application for creating visual abstracts")
16734 (description
16735 "This package provides an R Shiny application to create visual abstracts
16736 for original research. A variety of user defined options and formatting are
16737 included.")
16738 (license license:gpl3)))
16739
16740 (define-public r-abtest
16741 (package
16742 (name "r-abtest")
16743 (version "0.2.0")
16744 (source
16745 (origin
16746 (method url-fetch)
16747 (uri (cran-uri "abtest" version))
16748 (sha256
16749 (base32
16750 "1ky3cf827kj24bhcpk00v5zl5jdkii1gca0x81ay1cjkzfispgws"))))
16751 (properties `((upstream-name . "abtest")))
16752 (build-system r-build-system)
16753 (propagated-inputs
16754 `(("r-matrix" ,r-matrix)
16755 ("r-mvtnorm" ,r-mvtnorm)
16756 ("r-plotrix" ,r-plotrix)
16757 ("r-rcolorbrewer" ,r-rcolorbrewer)
16758 ("r-rcpp" ,r-rcpp)
16759 ("r-sn" ,r-sn)
16760 ("r-truncnorm" ,r-truncnorm)
16761 ("r-vgam" ,r-vgam)))
16762 (home-page "https://cran.r-project.org/web/packages/abtest/")
16763 (synopsis "Bayesian A/B testing")
16764 (description
16765 "This package provides functions for Bayesian A/B testing including prior
16766 elicitation options based on Kass and Vaidyanathan (1992)
16767 @url{doi:10.1111/j.2517-6161.1992.tb01868.x}.")
16768 (license license:gpl2+)))
16769
16770 (define-public r-accept
16771 (package
16772 (name "r-accept")
16773 (version "0.7.1")
16774 (source
16775 (origin
16776 (method url-fetch)
16777 (uri (cran-uri "accept" version))
16778 (sha256
16779 (base32
16780 "0pn8q0jsi0nb2mm2kv6sjczflflshhy55y7nqqnk70yx9f6wm83y"))))
16781 (properties `((upstream-name . "accept")))
16782 (build-system r-build-system)
16783 (propagated-inputs
16784 `(("r-dplyr" ,r-dplyr)
16785 ("r-extrafont" ,r-extrafont)
16786 ("r-mass" ,r-mass)
16787 ("r-plotly" ,r-plotly)
16788 ("r-stringr" ,r-stringr)
16789 ("r-viridis" ,r-viridis)))
16790 (home-page "https://cran.r-project.org/web/packages/accept/")
16791 (synopsis "Acute COPD Exacerbation Prediction Tool (ACCEPT)")
16792 (description
16793 "This package allows clinicians to predict the rate and severity of
16794 future acute exacerbation in @dfn{Chronic Obstructive Pulmonary
16795 Disease} (COPD) patients, based on the clinical prediction model published in
16796 Adibi et al. (2019) @url{doi:10.1101/651901}.")
16797 (license license:gpl3)))
16798
16799 (define-public r-smpracticals
16800 (package
16801 (name "r-smpracticals")
16802 (version "1.4-3")
16803 (source
16804 (origin
16805 (method url-fetch)
16806 (uri (cran-uri "SMPracticals" version))
16807 (sha256
16808 (base32
16809 "0zxq84f9i3b86xx6msb25b61gyj9k09iab2b7wg4d93yas9qzayf"))))
16810 (properties `((upstream-name . "SMPracticals")))
16811 (build-system r-build-system)
16812 (propagated-inputs
16813 `(("r-ellipse" ,r-ellipse)
16814 ("r-mass" ,r-mass)
16815 ("r-nlme" ,r-nlme)
16816 ("r-survival" ,r-survival)))
16817 (home-page "http://statwww.epfl.ch/davison/SM/")
16818 (synopsis "Practicals for use with Davison (2003) Statistical Models")
16819 (description
16820 "This package contains the datasets and a few functions for use with the
16821 practicals outlined in Appendix A of the book Statistical Models (Davison,
16822 2003, Cambridge University Press). The practicals themselves can be found at
16823 @url{http://statwww.epfl.ch/davison/SM/}.")
16824 (license license:gpl2+)))
16825
16826 (define-public r-fgui
16827 (package
16828 (name "r-fgui")
16829 (version "1.0-8")
16830 (source
16831 (origin
16832 (method url-fetch)
16833 (uri (cran-uri "fgui" version))
16834 (sha256
16835 (base32
16836 "024fzd1c7iwqprn26hwjb9l2qlvvyzl449d7iixy0x69djwsrysv"))))
16837 (properties `((upstream-name . "fgui")))
16838 (build-system r-build-system)
16839 (home-page
16840 "https://sites.google.com/site/thomashoffmannproject/software/fgui")
16841 (synopsis "Create GUI for R functions")
16842 (description
16843 "Rapidly create a GUI for a function you created by automatically
16844 creating widgets for arguments of the function. This package automatically
16845 parses help routines for context-sensitive help to these arguments. The
16846 interface is essentially a wrapper to some Tcl/Tk routines to both simplify
16847 and facilitate GUI creation. More advanced Tcl/Tk routines/GUI objects can be
16848 incorporated into the interface for greater customization for the more
16849 experienced.")
16850 ;; Any version of the GPL.
16851 (license (list license:gpl2+ license:gpl3+))))
16852
16853 (define-public r-tcltk2
16854 (package
16855 (name "r-tcltk2")
16856 (version "1.2-11")
16857 (source
16858 (origin
16859 (method url-fetch)
16860 (uri (cran-uri "tcltk2" version))
16861 (sha256
16862 (base32
16863 "1ibxld379600xx7kiqq3fck083s8psry12859980218rnzikl65d"))))
16864 (properties `((upstream-name . "tcltk2")))
16865 (build-system r-build-system)
16866 (inputs
16867 `(("tcl" ,tcl)
16868 ("tk" ,tk)))
16869 (home-page "https://www.sciviews.org/SciViews-R")
16870 (synopsis "Tcl/Tk additions")
16871 (description
16872 "This package provides a series of additional Tcl commands and Tk widgets
16873 with style and various functions to supplement the tcltk package")
16874 (license license:lgpl3)))
16875
16876 (define-public r-accrual
16877 (package
16878 (name "r-accrual")
16879 (version "1.3")
16880 (source
16881 (origin
16882 (method url-fetch)
16883 (uri (cran-uri "accrual" version))
16884 (sha256
16885 (base32
16886 "11clm9s5c5518nmp6hd6pjnp0s28y92b2i2x0xgj4j5g816p4j3z"))))
16887 (properties `((upstream-name . "accrual")))
16888 (build-system r-build-system)
16889 (propagated-inputs
16890 `(("r-fgui" ,r-fgui)
16891 ("r-smpracticals" ,r-smpracticals)
16892 ("r-tcltk2" ,r-tcltk2)))
16893 (home-page "https://cran.r-project.org/web/packages/accrual/")
16894 (synopsis "Bayesian accrual prediction")
16895 (description
16896 "Subject recruitment for medical research is challenging. Slow patient
16897 accrual leads to delay in research. Accrual monitoring during the process of
16898 recruitment is critical. Researchers need reliable tools to manage the
16899 accrual rate. This package provides an implementation of a Bayesian method
16900 that integrates researcher's experience on previous trials and data from the
16901 current study, providing reliable prediction on accrual rate for clinical
16902 studies. It provides functions for Bayesian accrual prediction which can be
16903 easily used by statisticians and clinical researchers.")
16904 (license license:gpl2)))
16905
16906 (define-public r-accrued
16907 (package
16908 (name "r-accrued")
16909 (version "1.4.1")
16910 (source
16911 (origin
16912 (method url-fetch)
16913 (uri (cran-uri "accrued" version))
16914 (sha256
16915 (base32
16916 "05g1jb5914z18rcai1ahn7nihn27vr2rnadwv94gc1j7ivvikvs5"))))
16917 (properties `((upstream-name . "accrued")))
16918 (build-system r-build-system)
16919 (home-page "https://cran.r-project.org/web/packages/accrued/")
16920 (synopsis "Data quality visualization tools for partially accruing data")
16921 (description
16922 "This is a package for visualizing data quality of partially accruing
16923 data.")
16924 (license license:gpl3)))
16925
16926 (define-public r-mda
16927 (package
16928 (name "r-mda")
16929 (version "0.4-10")
16930 (source
16931 (origin
16932 (method url-fetch)
16933 (uri (cran-uri "mda" version))
16934 (sha256
16935 (base32
16936 "19g6kn6g0shidrjfffklbmzc5w7mcimrxhagx4nmpslg59ibqdkh"))))
16937 (properties `((upstream-name . "mda")))
16938 (build-system r-build-system)
16939 (propagated-inputs `(("r-class" ,r-class)))
16940 (native-inputs `(("gfortran" ,gfortran)))
16941 (home-page "https://cran.r-project.org/web/packages/mda/")
16942 (synopsis "Mixture and flexible discriminant analysis")
16943 (description
16944 "This is a package for mixture and flexible discriminant analysis,
16945 @dfn{multivariate adaptive regression splines} (MARS), BRUTO, and so on.")
16946 (license license:gpl2)))
16947
16948 (define-public r-elasticnet
16949 (package
16950 (name "r-elasticnet")
16951 (version "1.1.1")
16952 (source
16953 (origin
16954 (method url-fetch)
16955 (uri (cran-uri "elasticnet" version))
16956 (sha256
16957 (base32
16958 "0p9dplnsp28z4s2fl6afbwrgd0aj339fak8mmndicmrh7bb7rpmb"))))
16959 (properties `((upstream-name . "elasticnet")))
16960 (build-system r-build-system)
16961 (propagated-inputs
16962 `(("r-lars" ,r-lars)))
16963 (home-page "http://users.stat.umn.edu/~zouxx019/")
16964 (synopsis "Elastic-Net for sparse estimation and sparse PCA")
16965 (description
16966 "This package provides functions for fitting the entire solution path of
16967 the Elastic-Net and also provides functions for estimating sparse Principal
16968 Components. The Lasso solution paths can be computed by the same function.")
16969 (license license:gpl2+)))
16970
16971 (define-public r-sparselda
16972 (package
16973 (name "r-sparselda")
16974 (version "0.1-9")
16975 (source
16976 (origin
16977 (method url-fetch)
16978 (uri (cran-uri "sparseLDA" version))
16979 (sha256
16980 (base32
16981 "1k3sw9kc40yxnfss4vrsx34qxmv8ssddyhbfjhxrdldvblhbwchb"))))
16982 (properties `((upstream-name . "sparseLDA")))
16983 (build-system r-build-system)
16984 (propagated-inputs
16985 `(("r-elasticnet" ,r-elasticnet)
16986 ("r-mass" ,r-mass)
16987 ("r-mda" ,r-mda)))
16988 (home-page "https://www.imm.dtu.dk/~lkhc/")
16989 (synopsis "Sparse discriminant analysis")
16990 (description
16991 "This package performs sparse linear discriminant analysis for Gaussians
16992 and mixture of Gaussian models.")
16993 (license license:gpl2+)))
16994
16995 (define-public r-accsda
16996 (package
16997 (name "r-accsda")
16998 (version "1.0.0")
16999 (source
17000 (origin
17001 (method url-fetch)
17002 (uri (cran-uri "accSDA" version))
17003 (sha256
17004 (base32
17005 "0sgxy5y8kkc1n35657kifwfjsba7y5m1vbr7rkk5lmbpkzahqm61"))))
17006 (properties `((upstream-name . "accSDA")))
17007 (build-system r-build-system)
17008 (propagated-inputs
17009 `(("r-ggplot2" ,r-ggplot2)
17010 ("r-ggthemes" ,r-ggthemes)
17011 ("r-gridextra" ,r-gridextra)
17012 ("r-mass" ,r-mass)
17013 ("r-rarpack" ,r-rarpack)
17014 ("r-sparselda" ,r-sparselda)))
17015 (home-page "https://github.com/gumeo/accSDA/wiki")
17016 (synopsis "Accelerated sparse discriminant analysis")
17017 (description
17018 "This package provides an implementation of sparse linear discriminant
17019 analysis, which is a supervised classification method for multiple classes.
17020 Various novel optimization approaches to this problem are implemented
17021 including @dfn{alternating direction method of multipliers} (ADMM),
17022 @dfn{proximal gradient} (PG) and @dfn{accelerated proximal gradient} (APG).
17023 Functions for performing cross validation are also supplied along with basic
17024 prediction and plotting functions. @dfn{Sparse zero variance
17025 discriminant} (SZVD) analysis is also included in the package.")
17026 (license license:gpl2+)))
17027
17028 (define-public r-ace2fastq
17029 (package
17030 (name "r-ace2fastq")
17031 (version "0.6.0")
17032 (source
17033 (origin
17034 (method url-fetch)
17035 (uri (cran-uri "ace2fastq" version))
17036 (sha256
17037 (base32
17038 "09kk3yyqnr2xp820g0p3aai9a21figigjr9lxkr3zjq2d8gzwfic"))))
17039 (properties `((upstream-name . "ace2fastq")))
17040 (build-system r-build-system)
17041 (propagated-inputs
17042 `(("r-stringr" ,r-stringr)))
17043 (home-page "https://github.com/c5sire/ace2fastq")
17044 (synopsis "ACE file to FASTQ converter")
17045 (description
17046 "The ACE file format is used in genomics to store contigs from sequencing
17047 machines. This tools converts it into FASTQ format. Both formats contain the
17048 sequence characters and their corresponding quality information. Unlike the
17049 FASTQ file, the ACE file stores the quality values numerically. The
17050 conversion algorithm uses the standard Sanger formula. The package
17051 facilitates insertion into pipelines, and content inspection.")
17052 (license license:gpl3)))
17053
17054 (define-public r-rngwell
17055 (package
17056 (name "r-rngwell")
17057 (version "0.10-6")
17058 (source
17059 (origin
17060 (method url-fetch)
17061 (uri (cran-uri "rngWELL" version))
17062 (sha256
17063 (base32
17064 "0pjjcs9pqj7mf0mhb2cwd0aanqpwnm65bm86hk6mi2vw8rgnj2vv"))))
17065 (properties `((upstream-name . "rngWELL")))
17066 (build-system r-build-system)
17067 (home-page "https://cran.r-project.org/web/packages/rngWELL/")
17068 (synopsis "Toolbox for WELL random number generators")
17069 (description
17070 "This is a dedicated package to WELL pseudo random generators, which were
17071 introduced in Panneton et al. (2006), ``Improved Long-Period Generators Based
17072 on Linear Recurrences Modulo 2'', ACM Transactions on Mathematical Software.")
17073 (license license:bsd-3)))
17074
17075 (define-public r-randtoolbox
17076 (package
17077 (name "r-randtoolbox")
17078 (version "1.30.1")
17079 (source
17080 (origin
17081 (method url-fetch)
17082 (uri (cran-uri "randtoolbox" version))
17083 (sha256
17084 (base32
17085 "0qg20ar6qns858jdzqhmfq7yji81czhr6cim257958gqpj66sn95"))))
17086 (properties `((upstream-name . "randtoolbox")))
17087 (build-system r-build-system)
17088 (propagated-inputs
17089 `(("r-rngwell" ,r-rngwell)))
17090 (native-inputs
17091 `(("gfortran" ,gfortran)))
17092 (home-page "https://cran.r-project.org/web/packages/randtoolbox/")
17093 (synopsis "Toolbox for pseudo and quasi random number generation")
17094 (description
17095 "This package provides
17096
17097 @enumerate
17098 @item pseudo random generators, such as general linear
17099 congruential generators, multiple recursive generators and generalized
17100 feedback shift register (SF-Mersenne Twister algorithm and WELL
17101 generators)
17102
17103 @item quasi random generators, such as the Torus algorithm, the Sobol
17104 sequence, the Halton sequence (including the Van der Corput sequence), and
17105
17106 @item some generator tests: the gap test, the serial test, the poker test.
17107 @end enumerate
17108
17109 See e.g. Gentle (2003) @url{doi:10.1007/b97336}.")
17110 (license license:bsd-3)))
17111
17112 (define-public r-lhs
17113 (package
17114 (name "r-lhs")
17115 (version "1.0.1")
17116 (source
17117 (origin
17118 (method url-fetch)
17119 (uri (cran-uri "lhs" version))
17120 (sha256
17121 (base32
17122 "0lzaqr7xi3ckln5nglv5xf5njm359slpz1jc6s02hpsqdw6armd4"))))
17123 (properties `((upstream-name . "lhs")))
17124 (build-system r-build-system)
17125 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
17126 (home-page "https://github.com/bertcarnell/lhs")
17127 (synopsis "Latin Hypercube Samples")
17128 (description
17129 "This package provides a number of methods for creating and augmenting
17130 Latin Hypercube Samples.")
17131 (license license:gpl3)))
17132
17133 (define-public r-acebayes
17134 (package
17135 (name "r-acebayes")
17136 (version "1.9")
17137 (source
17138 (origin
17139 (method url-fetch)
17140 (uri (cran-uri "acebayes" version))
17141 (sha256
17142 (base32
17143 "1imfwm1vpbb24vfmfn1nljhmaz8429mwjihw34892p387s8h7xz2"))))
17144 (properties `((upstream-name . "acebayes")))
17145 (build-system r-build-system)
17146 (propagated-inputs
17147 `(("r-compare" ,r-compare)
17148 ("r-lhs" ,r-lhs)
17149 ("r-randtoolbox" ,r-randtoolbox)
17150 ("r-rcpp" ,r-rcpp)
17151 ("r-rcpparmadillo" ,r-rcpparmadillo)))
17152 (home-page "https://cran.r-project.org/web/packages/acebayes/")
17153 (synopsis "Optimal Bayesian experimental design using the ACE algorithm")
17154 (description
17155 "Finding an optimal Bayesian experimental design involves maximizing an
17156 objective function given by the expectation of some appropriately chosen
17157 utility function with respect to the joint distribution of unknown
17158 quantities (including responses). This objective function is usually not
17159 available in closed form and the design space can be continuous and of high
17160 dimensionality. This package uses @dfn{Approximate Coordinate Exchange} (ACE)
17161 to maximise an approximation to the expectation of the utility function.")
17162 (license license:gpl2)))
17163
17164 (define-public r-acet
17165 (package
17166 (name "r-acet")
17167 (version "1.8.0")
17168 (source
17169 (origin
17170 (method url-fetch)
17171 (uri (cran-uri "ACEt" version))
17172 (sha256
17173 (base32
17174 "0626d6kg485xjya164wagrr5z223jvi93ywbwpdns7fkm03c0dlq"))))
17175 (properties `((upstream-name . "ACEt")))
17176 (build-system r-build-system)
17177 (propagated-inputs
17178 `(("r-bh" ,r-bh)
17179 ("r-mass" ,r-mass)
17180 ("r-rcpp" ,r-rcpp)
17181 ("r-rcpparmadillo" ,r-rcpparmadillo)))
17182 (home-page "https://cran.r-project.org/web/packages/ACEt/")
17183 (synopsis "Estimating dynamic heritability and twin model comparison")
17184 (description
17185 "This package supports twin models that are able to estimate the dynamic
17186 behaviour of the variance components in the classical twin models with respect
17187 to age using B-splines and P-splines.")
17188 (license license:gpl2+)))
17189
17190 (define-public r-acfmperiod
17191 (package
17192 (name "r-acfmperiod")
17193 (version "1.0.0")
17194 (source
17195 (origin
17196 (method url-fetch)
17197 (uri (cran-uri "acfMPeriod" version))
17198 (sha256
17199 (base32
17200 "1yww8isfrbs2v9s94hx7p2imyszcgadwafdgpj438n2ik0q6p9d5"))))
17201 (properties `((upstream-name . "acfMPeriod")))
17202 (build-system r-build-system)
17203 (propagated-inputs
17204 `(("r-mass" ,r-mass)))
17205 (home-page "https://cran.r-project.org/web/packages/acfMPeriod/")
17206 (synopsis "Estimation of the ACF from the M-periodogram")
17207 (description
17208 "This package support non-robust and robust computations of the sample
17209 autocovariance (ACOVF) and sample autocorrelation functions (ACF) of
17210 univariate and multivariate processes. The methodology consists in reversing
17211 the diagonalization procedure involving the periodogram or the
17212 cross-periodogram and the Fourier transform vectors, and, thus, obtaining the
17213 ACOVF or the ACF as discussed in Fuller (1995)
17214 @url{doi:10.1002/9780470316917}. The robust version is obtained by fitting
17215 robust M-regressors to obtain the M-periodogram or M-cross-periodogram as
17216 discussed in Reisen et al. (2017) @url{doi:10.1016/j.jspi.2017.02.008}.")
17217 (license license:gpl2+)))
17218
17219 (define-public r-gamlss-data
17220 (package
17221 (name "r-gamlss-data")
17222 (version "5.1-4")
17223 (source
17224 (origin
17225 (method url-fetch)
17226 (uri (cran-uri "gamlss.data" version))
17227 (sha256
17228 (base32
17229 "1dgfspbmps6ipzcmw681wjdp320nm50dwsxafgrcwxndqgc7fdqd"))))
17230 (properties `((upstream-name . "gamlss.data")))
17231 (build-system r-build-system)
17232 (home-page "http://www.gamlss.org/")
17233 (synopsis "GAMLSS data")
17234 (description
17235 "This package provides data used as examples to demonstrate GAMLSS
17236 models.")
17237 ;; Either version of the license
17238 (license (list license:gpl2 license:gpl3))))
17239
17240 (define-public r-gamlss
17241 (package
17242 (name "r-gamlss")
17243 (version "5.1-6")
17244 (source
17245 (origin
17246 (method url-fetch)
17247 (uri (cran-uri "gamlss" version))
17248 (sha256
17249 (base32
17250 "16b7ick1khvldbvfmmpw9cjs1vznnrisvifq7717fxzd8c9s5jdr"))))
17251 (properties `((upstream-name . "gamlss")))
17252 (build-system r-build-system)
17253 (propagated-inputs
17254 `(("r-gamlss-data" ,r-gamlss-data)
17255 ("r-gamlss-dist" ,r-gamlss-dist)
17256 ("r-mass" ,r-mass)
17257 ("r-nlme" ,r-nlme)
17258 ("r-survival" ,r-survival)))
17259 (home-page "http://www.gamlss.org/")
17260 (synopsis "Generalized additive models for location scale and shape")
17261 (description
17262 "This package provides functions for fitting the generalized additive
17263 models for location scale and shape introduced by Rigby and
17264 Stasinopoulos (2005), @url{doi:10.1111/j.1467-9876.2005.00510.x}. The models
17265 use a distributional regression approach where all the parameters of the
17266 conditional distribution of the response variable are modelled using
17267 explanatory variables.")
17268 ;; Either version of the license
17269 (license (list license:gpl2 license:gpl3))))
17270
17271 (define-public r-acid
17272 (package
17273 (name "r-acid")
17274 (version "1.1")
17275 (source
17276 (origin
17277 (method url-fetch)
17278 (uri (cran-uri "acid" version))
17279 (sha256
17280 (base32
17281 "030i0y8s283ivbsmjccpbv9v7mgbcg2jk9df7vgcbbns74swf9hd"))))
17282 (properties `((upstream-name . "acid")))
17283 (build-system r-build-system)
17284 (propagated-inputs
17285 `(("r-gamlss" ,r-gamlss)
17286 ("r-gamlss-dist" ,r-gamlss-dist)
17287 ("r-hmisc" ,r-hmisc)))
17288 (home-page "https://cran.r-project.org/web/packages/acid/")
17289 (synopsis "Analysing conditional income distributions")
17290 (description
17291 "This package provides functions for the analysis of income distributions
17292 for subgroups of the population as defined by a set of variables like age,
17293 gender, region, etc. This entails a Kolmogorov-Smirnov test for a mixture
17294 distribution as well as functions for moments, inequality measures, entropy
17295 measures and polarisation measures of income distributions. This package thus
17296 aides the analysis of income inequality by offering tools for the exploratory
17297 analysis of income distributions at the disaggregated level.")
17298 (license license:gpl3)))
17299
17300 (define-public r-acm4r
17301 (package
17302 (name "r-acm4r")
17303 (version "1.0")
17304 (source
17305 (origin
17306 (method url-fetch)
17307 (uri (cran-uri "acm4r" version))
17308 (sha256
17309 (base32
17310 "1wqzc35i1rshx0zlmas8y4qkkvy6h9r4i4apscjjv1xg2wjflzxa"))))
17311 (properties `((upstream-name . "acm4r")))
17312 (build-system r-build-system)
17313 (propagated-inputs `(("r-mass" ,r-mass)))
17314 (home-page "https://cran.r-project.org/web/packages/acm4r/")
17315 (synopsis "Align-and-count method comparisons of RFLP data")
17316 (description
17317 "This is a package to compare sequence fragment lengths or molecular
17318 weights from pairs of lanes. The number of matching bands in the
17319 @dfn{Restriction Fragment Length Polymorphism} (RFLP) data is calculated using
17320 the align-and-count method.")
17321 ;; Any version of the GPL
17322 (license (list license:gpl2+ license:gpl3+))))
17323
17324 (define-public r-filematrix
17325 (package
17326 (name "r-filematrix")
17327 (version "1.3")
17328 (source
17329 (origin
17330 (method url-fetch)
17331 (uri (cran-uri "filematrix" version))
17332 (sha256
17333 (base32
17334 "1v3aj1ng742msb0sfdnjsbqb508mqjf8jlq2v33vxldhradw5w0b"))))
17335 (properties `((upstream-name . "filematrix")))
17336 (build-system r-build-system)
17337 ;; These inputs are needed for vignettes
17338 (native-inputs
17339 `(("r-knitr" ,r-knitr)
17340 ("r-rmarkdown" ,r-rmarkdown)
17341 ("pandoc-citeproc" ,ghc-pandoc-citeproc)))
17342 (home-page "https://github.com/andreyshabalin/filematrix")
17343 (synopsis "File-backed matrix class with convenient read and write access")
17344 (description
17345 "This package provides an interface for working with large matrices
17346 stored in files, not in computer memory. It supports multiple non-character
17347 data types (double, integer, logical and raw) of various sizes (e.g. 8 and 4
17348 byte real values). Access to parts of the matrix is done by indexing, exactly
17349 as with usual R matrices. It supports very large matrices; the package has
17350 been tested on multi-terabyte matrices. It allows for more than 2^32 rows or
17351 columns, ad allows for quick addition of extra columns to a filematrix.")
17352 (license license:lgpl3)))
17353
17354 (define-public r-acmeeqtl
17355 (package
17356 (name "r-acmeeqtl")
17357 (version "1.6")
17358 (source
17359 (origin
17360 (method url-fetch)
17361 (uri (cran-uri "ACMEeqtl" version))
17362 (sha256
17363 (base32
17364 "049xjv2ym35bbn43zwi68cq27fwdh404vp0r2ca5gxgmmx8kj1cz"))))
17365 (properties `((upstream-name . "ACMEeqtl")))
17366 (build-system r-build-system)
17367 (propagated-inputs
17368 `(("r-filematrix" ,r-filematrix)))
17369 (home-page "https://github.com/andreyshabalin/ACMEeqtl")
17370 (synopsis "Estimation of interpretable eQTL effect sizes")
17371 (description
17372 "This package provides a non-linear model, termed ACME, that reflects a
17373 parsimonious biological model for allelic contributions of cis-acting eQTLs.
17374 With non-linear least-squares algorithm the maximum likelihood parameters can
17375 be estimated. The ACME model provides interpretable effect size estimates and
17376 p-values with well controlled Type-I error.")
17377 (license license:lgpl3)))
17378
17379 (define-public r-acmer
17380 (package
17381 (name "r-acmer")
17382 (version "1.1.0")
17383 (source
17384 (origin
17385 (method url-fetch)
17386 (uri (cran-uri "acmeR" version))
17387 (sha256
17388 (base32
17389 "000b2hqlhj93958nddw0fqb15ahigs08najv2miivym046x04mf7"))))
17390 (properties `((upstream-name . "acmeR")))
17391 (build-system r-build-system)
17392 (propagated-inputs `(("r-foreign" ,r-foreign)))
17393 (home-page "https://cran.r-project.org/web/packages/acmeR/")
17394 (synopsis "ACME estimator of bird and bat mortality by wind turbines")
17395 (description
17396 "This package provides an implementation of the ACME estimator, described
17397 in Wolpert (2015), ACME: A Partially Periodic Estimator of Avian & Chiropteran
17398 Mortality at Wind Turbines. Unlike most other models, this estimator supports
17399 decreasing-hazard Weibull model for persistence; decreasing search proficiency
17400 as carcasses age; variable bleed-through at successive searches; and interval
17401 mortality estimates. The package provides, based on search data, functions
17402 for estimating the mortality inflation factor in Frequentist and Bayesian
17403 settings.")
17404 (license license:expat)))
17405
17406 (define-public r-r-huge
17407 (package
17408 (name "r-r-huge")
17409 (version "0.9.0")
17410 (source
17411 (origin
17412 (method url-fetch)
17413 (uri (cran-uri "R.huge" version))
17414 (sha256
17415 (base32
17416 "13p558qalv60pgr24nsm6mi92ryj65rsbqa6pgdwy0snjqx12bgi"))))
17417 (properties `((upstream-name . "R.huge")))
17418 (build-system r-build-system)
17419 (propagated-inputs
17420 `(("r-r-methodss3" ,r-r-methodss3)
17421 ("r-r-oo" ,r-r-oo)
17422 ("r-r-utils" ,r-r-utils)))
17423 (home-page "https://github.com/HenrikBengtsson/R.huge")
17424 (synopsis "Methods for accessing huge amounts of data")
17425 (description
17426 "This is a deprecated package for accessing huge amounts of data.
17427 Cross-platform alternatives are the following packages: bigmemory (CRAN),
17428 ff (CRAN), or BufferedMatrix (Bioconductor). The main usage of it was inside
17429 the @code{aroma.affymetrix} package.")
17430 (license license:lgpl2.1+)))
17431
17432 (define-public r-r-filesets
17433 (package
17434 (name "r-r-filesets")
17435 (version "2.13.0")
17436 (source
17437 (origin
17438 (method url-fetch)
17439 (uri (cran-uri "R.filesets" version))
17440 (sha256
17441 (base32
17442 "124rygq0bl9n4akxcm868nl30cyk3rz0iprb98zlpk62gci9f5fg"))))
17443 (properties `((upstream-name . "R.filesets")))
17444 (build-system r-build-system)
17445 (propagated-inputs
17446 `(("r-digest" ,r-digest)
17447 ("r-r-cache" ,r-r-cache)
17448 ("r-r-methodss3" ,r-r-methodss3)
17449 ("r-r-oo" ,r-r-oo)
17450 ("r-r-utils" ,r-r-utils)))
17451 (home-page "https://github.com/HenrikBengtsson/R.filesets")
17452 (synopsis "Easy handling of and access to files")
17453 (description
17454 "This package provides classes and methods to locate, setup, subset,
17455 navigate and iterate file sets, i.e. sets of files located in one or more
17456 directories on the file system. The API is designed such that these classes
17457 can be extended via inheritance to provide a richer API for special file
17458 formats. Moreover, a specific name format is defined such that filenames and
17459 directories can be considered to have full names which consists of a name
17460 followed by comma-separated tags. This adds additional flexibility to
17461 identify file sets and individual files.")
17462 (license license:lgpl2.1+)))
17463
17464 (define-public r-r-devices
17465 (package
17466 (name "r-r-devices")
17467 (version "2.16.1")
17468 (source
17469 (origin
17470 (method url-fetch)
17471 (uri (cran-uri "R.devices" version))
17472 (sha256
17473 (base32
17474 "15zlnq3g27whq26fbcy5zfl5hiddm256h4rga4frblg6wqlbkvdd"))))
17475 (properties `((upstream-name . "R.devices")))
17476 (build-system r-build-system)
17477 (propagated-inputs
17478 `(("r-base64enc" ,r-base64enc)
17479 ("r-r-methodss3" ,r-r-methodss3)
17480 ("r-r-oo" ,r-r-oo)
17481 ("r-r-utils" ,r-r-utils)))
17482 (home-page "https://github.com/HenrikBengtsson/R.devices")
17483 (synopsis "Unified handling of graphics devices")
17484 (description
17485 "This package provides functions for creating plots and image files in a
17486 unified way regardless of output format (EPS, PDF, PNG, SVG, TIFF, WMF, etc.).
17487 Default device options as well as scales and aspect ratios are controlled in a
17488 uniform way across all device types. Switching output format requires minimal
17489 changes in code. This package is ideal for large-scale batch processing,
17490 because it will never leave open graphics devices or incomplete image files
17491 behind, even on errors or user interrupts.")
17492 (license license:lgpl2.1+)))
17493
17494 (define-public r-acnr
17495 (package
17496 (name "r-acnr")
17497 (version "1.0.0")
17498 (source
17499 (origin
17500 (method url-fetch)
17501 (uri (cran-uri "acnr" version))
17502 (sha256
17503 (base32
17504 "087hq4i7jp67ba2finzsqjfnqbiprl33na6ryjv9zqzsdawj9cym"))))
17505 (properties `((upstream-name . "acnr")))
17506 (build-system r-build-system)
17507 (home-page "https://github.com/mpierrejean/acnr")
17508 (synopsis "Annotated copy-number regions")
17509 (description
17510 "This package provides SNP array data from different types of copy-number
17511 regions. These regions were identified manually by the authors of the package
17512 and may be used to generate realistic data sets with known truth.")
17513 (license license:lgpl2.1+)))
17514
17515 (define-public r-acopula
17516 (package
17517 (name "r-acopula")
17518 (version "0.9.3")
17519 (source
17520 (origin
17521 (method url-fetch)
17522 (uri (cran-uri "acopula" version))
17523 (sha256
17524 (base32
17525 "0vvbbw8pfs9jwfz5c57lw48pr0qj661r0ys007q6zf9jmlrhx1ln"))))
17526 (properties `((upstream-name . "acopula")))
17527 (build-system r-build-system)
17528 (home-page "https://cran.r-project.org/web/packages/acopula/")
17529 (synopsis "Modelling dependence with multivariate Archimax copulas")
17530 (description
17531 "Archimax copulas are a mixture of Archimedean and EV copulas. This
17532 package provides definitions of several parametric families of generator and
17533 dependence function, computes CDF and PDF, estimates parameters, tests for
17534 goodness of fit, generates random sample and checks copula properties for
17535 custom constructs. In the 2-dimensional case explicit formulas for density
17536 are used, contrary to higher dimensions when all derivatives are linearly
17537 approximated. Several non-archimax families (normal, FGM, Plackett) are
17538 provided as well.")
17539 (license license:gpl2)))
17540
17541 (define-public r-tuner
17542 (package
17543 (name "r-tuner")
17544 (version "1.3.3")
17545 (source
17546 (origin
17547 (method url-fetch)
17548 (uri (cran-uri "tuneR" version))
17549 (sha256
17550 (base32
17551 "0av978m4h2iqazyfq6n2cgkh4wpllihh7s29lah2nb8ngc0w5hxx"))))
17552 (properties `((upstream-name . "tuneR")))
17553 (build-system r-build-system)
17554 (propagated-inputs `(("r-signal" ,r-signal)))
17555 (home-page "https://cran.r-project.org/web/packages/tuneR/")
17556 (synopsis "Analysis of music and speech")
17557 (description
17558 "This is a package for the analysis of music and speech. Analyze music
17559 and speech, extract features like MFCCs, handle wave files and their
17560 representation in various ways, read MP3, read MIDI, perform steps of a
17561 transcription, ...")
17562 ;; Either of these versions.
17563 (license (list license:gpl2 license:gpl3))))
17564
17565 (define-public r-seewave
17566 (package
17567 (name "r-seewave")
17568 (version "2.1.5")
17569 (source
17570 (origin
17571 (method url-fetch)
17572 (uri (cran-uri "seewave" version))
17573 (sha256
17574 (base32
17575 "1qg8f5gik9pw6f9mcxqmrc9x3003s8vdm6g01pjjpyc9qaqiz2vi"))))
17576 (properties `((upstream-name . "seewave")))
17577 (build-system r-build-system)
17578 (propagated-inputs
17579 `(("r-tuner" ,r-tuner)))
17580 (home-page "http://rug.mnhn.fr/seewave")
17581 (synopsis "Sound analysis and synthesis")
17582 (description
17583 "This package provides functions for analysing, manipulating, displaying,
17584 editing and synthesizing time waves (particularly sound). This package
17585 processes time analysis (oscillograms and envelopes), spectral content,
17586 resonance quality factor, entropy, cross correlation and autocorrelation,
17587 zero-crossing, dominant frequency, analytic signal, frequency coherence, 2D
17588 and 3D spectrograms and many other analyses.")
17589 (license license:gpl2+)))
17590
17591 (define-public r-acousticndlcoder
17592 (package
17593 (name "r-acousticndlcoder")
17594 (version "1.0.2")
17595 (source
17596 (origin
17597 (method url-fetch)
17598 (uri (cran-uri "AcousticNDLCodeR" version))
17599 (sha256
17600 (base32
17601 "1fgzgwanpv2pzy74xdk3hamc44p8qch467wh163dxby8jr9ik0sb"))))
17602 (properties
17603 `((upstream-name . "AcousticNDLCodeR")))
17604 (build-system r-build-system)
17605 (propagated-inputs
17606 `(("r-seewave" ,r-seewave)
17607 ("r-tuner" ,r-tuner)
17608 ("r-zoo" ,r-zoo)))
17609 (home-page "https://cran.r-project.org/web/packages/AcousticNDLCodeR/")
17610 (synopsis "Coding sound files for use with NDL")
17611 (description
17612 "Make acoustic cues to use with the R package @code{ndl}.
17613 The package implements functions used in the PLoS ONE paper \"Words from
17614 spontaneous conversational speech can be recognized with human-like accuracy
17615 by an error-driven learning algorithm that discriminates between meanings
17616 straight from smart acoustic features, bypassing the phoneme as recognition
17617 unit.\" @url{doi:10.1371/journal.pone.0174623}")
17618 (license license:gpl2+)))
17619
17620 (define-public r-acp
17621 (package
17622 (name "r-acp")
17623 (version "2.1")
17624 (source
17625 (origin
17626 (method url-fetch)
17627 (uri (cran-uri "acp" version))
17628 (sha256
17629 (base32
17630 "0lcwbjcyyr32m6qjmjqh25qjwrbyqj1n092xhgbhxzd8fslppnmn"))))
17631 (properties `((upstream-name . "acp")))
17632 (build-system r-build-system)
17633 (propagated-inputs
17634 `(("r-quantmod" ,r-quantmod)
17635 ("r-tseries" ,r-tseries)))
17636 (home-page "https://cran.r-project.org/web/packages/acp/")
17637 (synopsis "Autoregressive conditional Poisson")
17638 (description
17639 "This package supports the analysis of count data exhibiting
17640 autoregressive properties, using the @dfn{Autoregressive Conditional Poisson}
17641 model (ACP(p,q)) proposed by Heinen (2003).")
17642 (license license:gpl2)))
17643
17644 (define-public r-ada
17645 (package
17646 (name "r-ada")
17647 (version "2.0-5")
17648 (source
17649 (origin
17650 (method url-fetch)
17651 (uri (cran-uri "ada" version))
17652 (sha256
17653 (base32
17654 "1h3a07czp0w3hrhjcg1fz721y8vsfclzqi3rq8qfzgpfb4h1f06r"))))
17655 (properties `((upstream-name . "ada")))
17656 (build-system r-build-system)
17657 (propagated-inputs `(("r-rpart" ,r-rpart)))
17658 (home-page "https://cran.r-project.org/web/packages/ada/")
17659 (synopsis "Stochastic boosting")
17660 (description
17661 "This package provides a straightforward, well-documented, and broad
17662 boosting routine for classification, ideally suited for small to
17663 moderate-sized data sets. It performs discrete, real, and gentle boost under
17664 both exponential and logistic loss on a given data set.")
17665 ;; Any version of the GPL.
17666 (license (list license:gpl2+ license:gpl3+))))
17667
17668 (define-public r-genalg
17669 (package
17670 (name "r-genalg")
17671 (version "0.2.0")
17672 (source
17673 (origin
17674 (method url-fetch)
17675 (uri (cran-uri "genalg" version))
17676 (sha256
17677 (base32
17678 "1wzfamq8k5yhwbdx0wy1w5bks93brj0p890xxc4yqrja4w38ja3s"))))
17679 (properties `((upstream-name . "genalg")))
17680 (build-system r-build-system)
17681 (home-page "https://github.com/egonw/genalg")
17682 (synopsis "R based genetic algorithm")
17683 (description
17684 "This package provides an R based genetic algorithm for binary and
17685 floating point chromosomes.")
17686 (license license:gpl2)))
17687
17688 (define-public r-kernelfactory
17689 (package
17690 (name "r-kernelfactory")
17691 (version "0.3.0")
17692 (source
17693 (origin
17694 (method url-fetch)
17695 (uri (cran-uri "kernelFactory" version))
17696 (sha256
17697 (base32
17698 "001kw9k3ivd4drd4mwqapkkk3f4jgljiaprhg2630hmll064s89j"))))
17699 (properties `((upstream-name . "kernelFactory")))
17700 (build-system r-build-system)
17701 (propagated-inputs
17702 `(("r-auc" ,r-auc)
17703 ("r-genalg" ,r-genalg)
17704 ("r-kernlab" ,r-kernlab)
17705 ("r-randomforest" ,r-randomforest)))
17706 (home-page "https://cran.r-project.org/web/packages/kernelFactory/")
17707 (synopsis "Ensemble of kernel machines")
17708 (description
17709 "Kernel factory is an ensemble method where each base classifier (random
17710 forest) is fit on the kernel matrix of a subset of the training data.")
17711 (license license:gpl2+)))
17712
17713 (define-public r-dummies
17714 (package
17715 (name "r-dummies")
17716 (version "1.5.6")
17717 (source
17718 (origin
17719 (method url-fetch)
17720 (uri (cran-uri "dummies" version))
17721 (sha256
17722 (base32
17723 "01f84crqx17xd6xy55qxlvsj3knm8lhw7jl26p2rh2w3y0nvqlbm"))))
17724 (properties `((upstream-name . "dummies")))
17725 (build-system r-build-system)
17726 (home-page "https://decisionpatterns.com")
17727 (synopsis "Create dummy/indicator variables flexibly and efficiently")
17728 (description
17729 "This package lets you expand factors, characters and other eligible
17730 classes into dummy/indicator variables.")
17731 (license license:gpl2+)))
17732
17733 (define-public r-acrm
17734 (package
17735 (name "r-acrm")
17736 (version "0.1.1")
17737 (source
17738 (origin
17739 (method url-fetch)
17740 (uri (cran-uri "aCRM" version))
17741 (sha256
17742 (base32
17743 "0kzp568hd9c9a9qgniia5s5gv0q5f89xfvvwpzb197gqhs3x092v"))))
17744 (properties `((upstream-name . "aCRM")))
17745 (build-system r-build-system)
17746 (propagated-inputs
17747 `(("r-ada" ,r-ada)
17748 ("r-dummies" ,r-dummies)
17749 ("r-kernelfactory" ,r-kernelfactory)
17750 ("r-randomforest" ,r-randomforest)))
17751 (home-page "https://cran.r-project.org/web/packages/aCRM/")
17752 (synopsis "Convenience functions for analytical customer relationship management")
17753 (description
17754 "This package provides convenience functions for data preparation and
17755 modeling often used in @dfn{analytical customer relationship
17756 management} (aCRM).")
17757 (license license:gpl2+)))
17758
17759 (define-public r-treeclust
17760 (package
17761 (name "r-treeclust")
17762 (version "1.1-7")
17763 (source
17764 (origin
17765 (method url-fetch)
17766 (uri (cran-uri "treeClust" version))
17767 (sha256
17768 (base32
17769 "1s7kh6q0bkixsygrip95zf1bi10ihddsa5lq9dfxd68yh8rsby6z"))))
17770 (properties `((upstream-name . "treeClust")))
17771 (build-system r-build-system)
17772 (propagated-inputs
17773 `(("r-cluster" ,r-cluster)
17774 ("r-rpart" ,r-rpart)))
17775 (home-page "https://cran.r-project.org/web/packages/treeClust/")
17776 (synopsis "Cluster distances through trees")
17777 (description
17778 "This package provides tools to create a measure of inter-point
17779 dissimilarity useful for clustering mixed data, and, optionally, perform the
17780 clustering.")
17781 (license license:gpl2+)))
17782
17783 (define-public r-acrosstic
17784 (package
17785 (name "r-acrosstic")
17786 (version "1.0-3")
17787 (source
17788 (origin
17789 (method url-fetch)
17790 (uri (cran-uri "AcrossTic" version))
17791 (sha256
17792 (base32
17793 "03180h79jhjd66ibrnsfp3yyp2jlfysp7cymw46phzj2palghsc0"))))
17794 (properties `((upstream-name . "AcrossTic")))
17795 (build-system r-build-system)
17796 (propagated-inputs
17797 `(("r-lpsolve" ,r-lpsolve)
17798 ("r-treeclust" ,r-treeclust)))
17799 (home-page "https://cran.r-project.org/web/packages/AcrossTic/")
17800 (synopsis "Cost-minimal regular spanning subgraph with TreeClust")
17801 (description
17802 "This is a package for constructing minimum-cost regular spanning
17803 subgraph as part of a non-parametric two-sample test for equality of
17804 distribution.")
17805 (license license:gpl2+)))
17806
17807 (define-public r-acrt
17808 (package
17809 (name "r-acrt")
17810 (version "1.0.1")
17811 (source
17812 (origin
17813 (method url-fetch)
17814 (uri (cran-uri "acrt" version))
17815 (sha256
17816 (base32
17817 "0y9ndcq8ffpfrv7w9rikm4zn68jpsj6baqisq9kp2433xrwzdb6s"))))
17818 (properties `((upstream-name . "acrt")))
17819 (build-system r-build-system)
17820 (propagated-inputs
17821 `(("r-rcpp" ,r-rcpp)
17822 ("r-rcppeigen" ,r-rcppeigen)
17823 ("r-sandwich" ,r-sandwich)))
17824 (home-page "https://cran.r-project.org/web/packages/acrt/")
17825 (synopsis "Autocorrelation robust testing")
17826 (description
17827 "This package provides functions for testing affine hypotheses on the
17828 regression coefficient vector in regression models with autocorrelated
17829 errors.")
17830 (license license:gpl2)))
17831
17832 (define-public r-acs
17833 (package
17834 (name "r-acs")
17835 (version "2.1.4")
17836 (source
17837 (origin
17838 (method url-fetch)
17839 (uri (cran-uri "acs" version))
17840 (sha256
17841 (base32
17842 "0ajw9rf8l8akcvgqvbxjvryc6wjx74521xyxswz2b0bky3m6kah5"))))
17843 (properties `((upstream-name . "acs")))
17844 (build-system r-build-system)
17845 (propagated-inputs
17846 `(("r-httr" ,r-httr)
17847 ("r-plyr" ,r-plyr)
17848 ("r-rcpp" ,r-rcpp)
17849 ("r-stringr" ,r-stringr)
17850 ("r-xml" ,r-xml)))
17851 (home-page "https://dusp.mit.edu/faculty/ezra-haber-glenn")
17852 (synopsis "Work with data from the US Census")
17853 (description
17854 "This package provides a general toolkit for downloading, managing,
17855 analyzing, and presenting data from the
17856 @url{https://www.census.gov/data/developers/data-sets.html, U.S. Census},
17857 including SF1 (Decennial short-form), SF3 (Decennial long-form), and the
17858 American Community Survey (ACS). Confidence intervals provided with ACS data
17859 are converted to standard errors to be bundled with estimates in complex
17860 @code{acs} objects. The package provides new methods to conduct standard
17861 operations on @code{acs} objects and present/plot data in statistically
17862 appropriate ways.")
17863 (license license:gpl3)))
17864
17865 (define-public r-acss-data
17866 (package
17867 (name "r-acss-data")
17868 (version "1.0")
17869 (source
17870 (origin
17871 (method url-fetch)
17872 (uri (cran-uri "acss.data" version))
17873 (sha256
17874 (base32
17875 "09kl4179ipr8bq19g89xcdi1xxs397zcx5cvgp6viy8gn687ilgv"))))
17876 (properties `((upstream-name . "acss.data")))
17877 (build-system r-build-system)
17878 (home-page "http://complexitycalculator.com/methodology.html")
17879 (synopsis "Data for algorithmic complexity of short strings")
17880 (description
17881 "This is a data only package providing the algorithmic complexity of
17882 short strings, computed using the coding theorem method. For a given set of
17883 symbols in a string, all possible or a large number of random samples of
17884 Turing machines with a given number of states (e.g., 5) and number of symbols
17885 corresponding to the number of symbols in the strings were simulated until
17886 they reached a halting state or failed to end. This package contains data on
17887 4.5 million strings from length 1 to 12 simulated on Turing machines with 2,
17888 4, 5, 6, and 9 symbols. The complexity of the string corresponds to the
17889 distribution of the halting states.")
17890 (license license:gpl2+)))
17891
17892 (define-public r-acss
17893 (package
17894 (name "r-acss")
17895 (version "0.2-5")
17896 (source
17897 (origin
17898 (method url-fetch)
17899 (uri (cran-uri "acss" version))
17900 (sha256
17901 (base32
17902 "0cqa60544f58l5qd7h6xmsir40b9hqnq6pqgd5hfx2j2l5n7qhmk"))))
17903 (properties `((upstream-name . "acss")))
17904 (build-system r-build-system)
17905 (propagated-inputs
17906 `(("r-acss-data" ,r-acss-data)
17907 ("r-zoo" ,r-zoo)))
17908 (home-page "http://complexitycalculator.com/methodology.html")
17909 (synopsis "Algorithmic complexity for short strings")
17910 (description
17911 "The main purpose of this package is to provide the algorithmic
17912 complexity for short strings, an approximation of the Kolmogorov Complexity of
17913 a short string using the coding theorem method. While the database containing
17914 the complexity is provided in the data only package @code{acss.data}, this
17915 package provides functions accessing the data such as @code{prob_random}
17916 returning the posterior probability that a given string was produced by a
17917 random process. In addition, two traditional (but problematic) measures of
17918 complexity are also provided: entropy and change complexity.")
17919 (license license:gpl2+)))
17920
17921 (define-public r-acswr
17922 (package
17923 (name "r-acswr")
17924 (version "1.0")
17925 (source
17926 (origin
17927 (method url-fetch)
17928 (uri (cran-uri "ACSWR" version))
17929 (sha256
17930 (base32
17931 "195vjrkang5cl7gwsna0aq4p0h4jym9xg9yh94bnf8vq6wf8j83n"))))
17932 (properties `((upstream-name . "ACSWR")))
17933 (build-system r-build-system)
17934 (propagated-inputs
17935 `(("r-mass" ,r-mass)))
17936 (home-page "https://cran.r-project.org/web/packages/ACSWR/")
17937 (synopsis "Companion package for the book \"A Course in Statistics with R\"")
17938 (description
17939 "This is a companion package for the book \"A Course in Statistics with
17940 R\" (ISBN 978-1-119-15272-9.)")
17941 (license license:gpl2)))
17942
17943 (define-public r-alabama
17944 (package
17945 (name "r-alabama")
17946 (version "2015.3-1")
17947 (source
17948 (origin
17949 (method url-fetch)
17950 (uri (cran-uri "alabama" version))
17951 (sha256
17952 (base32
17953 "0mlgk929gdismikwx4k2ndqq57nnqj7mlgvd3479b214hksgq036"))))
17954 (properties `((upstream-name . "alabama")))
17955 (build-system r-build-system)
17956 (propagated-inputs `(("r-numderiv" ,r-numderiv)))
17957 (home-page "https://cran.r-project.org/web/packages/alabama/")
17958 (synopsis "Constrained nonlinear optimization")
17959 (description
17960 "Alabama stands for Augmented Lagrangian Adaptive Barrier Minimization
17961 Algorithm; it is used for optimizing smooth nonlinear objective functions with
17962 constraints. Linear or nonlinear equality and inequality constraints are
17963 allowed.")
17964 (license license:gpl2+)))
17965
17966 (define-public r-gdina
17967 (package
17968 (name "r-gdina")
17969 (version "2.7.9")
17970 (source
17971 (origin
17972 (method url-fetch)
17973 (uri (cran-uri "GDINA" version))
17974 (sha256
17975 (base32
17976 "13pmj069r04h38hg61ibyn1ab15zdy9m0qv60vi25ahgsmg6ccvx"))))
17977 (properties `((upstream-name . "GDINA")))
17978 (build-system r-build-system)
17979 (propagated-inputs
17980 `(("r-alabama" ,r-alabama)
17981 ("r-ggplot2" ,r-ggplot2)
17982 ("r-mass" ,r-mass)
17983 ("r-nloptr" ,r-nloptr)
17984 ("r-numderiv" ,r-numderiv)
17985 ("r-rcpp" ,r-rcpp)
17986 ("r-rcpparmadillo" ,r-rcpparmadillo)
17987 ("r-rsolnp" ,r-rsolnp)
17988 ("r-shiny" ,r-shiny)
17989 ("r-shinydashboard" ,r-shinydashboard)))
17990 (home-page "https://github.com/Wenchao-Ma/GDINA")
17991 (synopsis "Generalized DINA model framework")
17992 (description
17993 "This package provides a set of psychometric tools for cognitive
17994 diagnosis modeling based on the generalized deterministic inputs, noisy and
17995 gate (G-DINA) model by de la Torre (2011) @url{doi:10.1007/s11336-011-9207-7}
17996 and its extensions, including the sequential G-DINA model by Ma and de la
17997 Torre (2016) @url{doi:10.1111/bmsp.12070} for polytomous responses, and the
17998 polytomous G-DINA model by Chen and de la Torre
17999 @url{doi:10.1177/0146621613479818} for polytomous attributes. Joint attribute
18000 distribution can be independent, saturated, higher-order, loglinear smoothed
18001 or structured. Q-matrix validation, item and model fit statistics, model
18002 comparison at test and item level and differential item functioning can also
18003 be conducted. A graphical user interface is also provided.")
18004 (license license:gpl3)))
18005
18006 (define-public r-actcd
18007 (package
18008 (name "r-actcd")
18009 (version "1.2-0")
18010 (source
18011 (origin
18012 (method url-fetch)
18013 (uri (cran-uri "ACTCD" version))
18014 (sha256
18015 (base32
18016 "0mzjxxr2zfdidw8ibh6w8mvpkw3q3nvngqi05g9ind26ckvk053p"))))
18017 (properties `((upstream-name . "ACTCD")))
18018 (build-system r-build-system)
18019 (propagated-inputs
18020 `(("r-gdina" ,r-gdina)
18021 ("r-r-methodss3" ,r-r-methodss3)))
18022 (native-inputs
18023 `(("gfortran" ,gfortran)))
18024 (home-page "https://cran.r-project.org/web/packages/ACTCD/")
18025 (synopsis "Asymptotic classification theory for cognitive diagnosis")
18026 (description
18027 "This is a package supporting cluster analysis for cognitive diagnosis
18028 based on the Asymptotic Classification Theory (Chiu, Douglas & Li, 2009;
18029 @url{doi:10.1007/s11336-009-9125-0}). Given the sample statistic of
18030 sum-scores, cluster analysis techniques can be used to classify examinees into
18031 latent classes based on their attribute patterns. In addition to the
18032 algorithms used to classify data, three labeling approaches are proposed to
18033 label clusters so that examinees' attribute profiles can be obtained.")
18034 (license license:gpl2+)))
18035
18036 (define-public r-ineq
18037 (package
18038 (name "r-ineq")
18039 (version "0.2-13")
18040 (source
18041 (origin
18042 (method url-fetch)
18043 (uri (cran-uri "ineq" version))
18044 (sha256
18045 (base32
18046 "09fsxyrh0j7mwmb5hkhmrzgcy7kf85jxkh7zlwpgqgcsyl1n91z0"))))
18047 (properties `((upstream-name . "ineq")))
18048 (build-system r-build-system)
18049 (home-page "https://cran.r-project.org/web/packages/ineq/")
18050 (synopsis "Measuring inequality, concentration, and poverty")
18051 (description
18052 "This package provides tools for measuring inequality, concentration, and
18053 poverty measures. It provides both empirical and theoretical Lorenz curves.")
18054 ;; Either of these two versions.
18055 (license (list license:gpl2 license:gpl3))))
18056
18057 (define-public r-actfrag
18058 (package
18059 (name "r-actfrag")
18060 (version "0.1.1")
18061 (source
18062 (origin
18063 (method url-fetch)
18064 (uri (cran-uri "ActFrag" version))
18065 (sha256
18066 (base32
18067 "08r3gwjz4fkyy85dxqix0ffm5xyq45032qv3snnzxnlqxslxbqn1"))))
18068 (properties `((upstream-name . "ActFrag")))
18069 (build-system r-build-system)
18070 (propagated-inputs
18071 `(("r-accelerometry" ,r-accelerometry)
18072 ("r-dplyr" ,r-dplyr)
18073 ("r-ineq" ,r-ineq)
18074 ("r-survival" ,r-survival)
18075 ("r-tidyr" ,r-tidyr)))
18076 (home-page "https://github.com/junruidi/ActFrag")
18077 (synopsis "Activity fragmentation metrics extraction")
18078 (description
18079 "This package provides functions to extract commonly used fragmentation
18080 metrics to quantify time accumulation strategies based on minute level
18081 actigraphy-measured activity counts data.")
18082 (license license:gpl3)))
18083
18084 (define-public r-fda
18085 (package
18086 (name "r-fda")
18087 (version "2.4.8.1")
18088 (source
18089 (origin
18090 (method url-fetch)
18091 (uri (cran-uri "fda" version))
18092 (sha256
18093 (base32
18094 "0g50kj1dx7zarjv0lgwyzd2c7bv6di7nkndmywday5vjywgl8m7a"))))
18095 (properties `((upstream-name . "fda")))
18096 (build-system r-build-system)
18097 (propagated-inputs
18098 `(("r-matrix" ,r-matrix)))
18099 (home-page "https://www.functionaldata.org")
18100 (synopsis "Functional data analysis")
18101 (description
18102 "These functions were developed to support functional data analysis as
18103 described in Ramsay, J. O. and Silverman, B. W. (2005) Functional Data
18104 Analysis. The package includes data sets and script files working many
18105 examples.")
18106 (license license:gpl2+)))
18107
18108 (define-public r-actigraphy
18109 (package
18110 (name "r-actigraphy")
18111 (version "1.4.0")
18112 (source
18113 (origin
18114 (method url-fetch)
18115 (uri (cran-uri "Actigraphy" version))
18116 (sha256
18117 (base32
18118 "0bpmvszzv5fm72nar3wgnmfl5am7znqfajmlbv38ihkbi7jbwk20"))))
18119 (properties `((upstream-name . "Actigraphy")))
18120 (build-system r-build-system)
18121 (propagated-inputs
18122 `(("r-fda" ,r-fda)))
18123 (home-page "https://cran.r-project.org/web/packages/Actigraphy/")
18124 (synopsis "Actigraphy data analysis")
18125 (description
18126 "This package provides tools for functional linear modeling and analysis
18127 of actigraphy data.")
18128 (license license:asl2.0)))
18129
18130 (define-public r-activedriver
18131 (package
18132 (name "r-activedriver")
18133 (version "1.0.0")
18134 (source
18135 (origin
18136 (method url-fetch)
18137 (uri (cran-uri "ActiveDriver" version))
18138 (sha256
18139 (base32
18140 "10c7ga48fwvpd5mc4dqiyw4kc2l0iz5qn4hg7xk15r1qmm5rsipa"))))
18141 (properties `((upstream-name . "ActiveDriver")))
18142 (build-system r-build-system)
18143 (propagated-inputs
18144 `(("r-mass" ,r-mass)))
18145 (home-page "https://cran.r-project.org/web/packages/ActiveDriver/")
18146 (synopsis "Tools for finding cancer driver proteins")
18147 (description
18148 "This package provides a mutation analysis tool that discovers cancer
18149 driver genes with frequent mutations in protein signalling sites such as
18150 post-translational modifications (phosphorylation, ubiquitination, etc). The
18151 Poisson generalized linear regression model identifies genes where cancer
18152 mutations in signalling sites are more frequent than expected from the
18153 sequence of the entire gene. Integration of mutations with signalling
18154 information helps find new driver genes and propose candidate mechanisms to
18155 known drivers.")
18156 (license license:gpl2+)))
18157
18158 (define-public r-activitycounts
18159 (package
18160 (name "r-activitycounts")
18161 (version "0.1.2")
18162 (source
18163 (origin
18164 (method url-fetch)
18165 (uri (cran-uri "activityCounts" version))
18166 (sha256
18167 (base32
18168 "0zgxr2sk3a8kmygfxx1p5hnrfwdkxx7php6jlrhm8wv6052ck8jz"))))
18169 (properties
18170 `((upstream-name . "activityCounts")))
18171 (build-system r-build-system)
18172 (propagated-inputs
18173 `(("r-lubridate" ,r-lubridate)
18174 ("r-magrittr" ,r-magrittr)
18175 ("r-seewave" ,r-seewave)
18176 ("r-signal" ,r-signal)
18177 ("r-tibble" ,r-tibble)))
18178 (home-page "https://github.com/walkabillylab/activityCounts")
18179 (synopsis "Generate ActiLife counts")
18180 (description
18181 "ActiLife generates activity counts from data collected by Actigraph
18182 accelerometers. Actigraph is one of the most common research-grade
18183 accelerometers. There is considerable research validating and developing
18184 algorithms for human activity using ActiLife counts. Unfortunately, ActiLife
18185 counts are proprietary and difficult to implement if researchers use different
18186 accelerometer brands. The code creates ActiLife counts from raw acceleration
18187 data for different accelerometer brands.")
18188 (license license:gpl3)))
18189
18190 (define-public r-activityindex
18191 (package
18192 (name "r-activityindex")
18193 (version "0.3.6")
18194 (source
18195 (origin
18196 (method url-fetch)
18197 (uri (cran-uri "ActivityIndex" version))
18198 (sha256
18199 (base32
18200 "14k6d78s15j7kb7jhixf4msrdjdl28d0r264cbvy41p8dkq7ysvk"))))
18201 (properties `((upstream-name . "ActivityIndex")))
18202 (build-system r-build-system)
18203 (propagated-inputs
18204 `(("r-data-table" ,r-data-table)
18205 ("r-matrixstats" ,r-matrixstats)
18206 ("r-r-utils" ,r-r-utils)))
18207 (home-page "https://cran.r-project.org/web/packages/ActivityIndex/")
18208 (synopsis "Activity Index calculation using raw accelerometry data")
18209 (description
18210 "This is a package to read raw accelerometry from GT3X+ accelerometry
18211 data and plain table data to calculate the Activity Index from Bai et
18212 al. (2016) @url{doi:10.1371/journal.pone.0160644}.")
18213 (license license:gpl3)))
18214
18215 (define-public r-activpal
18216 (package
18217 (name "r-activpal")
18218 (version "0.1.3")
18219 (source
18220 (origin
18221 (method url-fetch)
18222 (uri (cran-uri "activPAL" version))
18223 (sha256
18224 (base32
18225 "1h6hp5z89ji73gdzxy1dgbfwjysiy5lvcqh90xagpb7sa7ahs3na"))))
18226 (properties `((upstream-name . "activPAL")))
18227 (build-system r-build-system)
18228 (propagated-inputs
18229 `(("r-devtools" ,r-devtools)
18230 ("r-dplyr" ,r-dplyr)
18231 ("r-ggplot2" ,r-ggplot2)
18232 ("r-lubridate" ,r-lubridate)
18233 ("r-magrittr" ,r-magrittr)
18234 ("r-tidyr" ,r-tidyr)))
18235 (home-page "https://cran.r-project.org/web/packages/activPAL")
18236 (synopsis "Processing and chart generation from activPAL events files")
18237 (description
18238 "This package contains functions to generate pre-defined summary
18239 statistics from activPAL events files. The package also contains functions to
18240 produce informative graphics that visualize physical activity behaviour and
18241 trends. This includes generating graphs that align physical activity
18242 behaviour with additional time based observations described by other data
18243 sets, such as sleep diaries and continuous glucose monitoring data.")
18244 (license license:gpl3)))
18245
18246 (define-public r-activpalprocessing
18247 (package
18248 (name "r-activpalprocessing")
18249 (version "1.0.2")
18250 (source
18251 (origin
18252 (method url-fetch)
18253 (uri (cran-uri "activpalProcessing" version))
18254 (sha256
18255 (base32
18256 "1y0bjx2qx53iy930y9iww4q1yzjj8y16cwgixk1mq3w4g1f116d1"))))
18257 (properties
18258 `((upstream-name . "activpalProcessing")))
18259 (build-system r-build-system)
18260 (propagated-inputs
18261 `(("r-chron" ,r-chron)))
18262 (home-page "https://cran.r-project.org/web/packages/activpalProcessing/")
18263 (synopsis "Process activPAL events files")
18264 (description
18265 "This package performs estimation of physical activity and sedentary
18266 behavior variables from activPAL events files.")
18267 ;; Either version of the GPL.
18268 (license (list license:gpl2 license:gpl3))))
18269
18270 (define-public r-actogrammr
18271 (package
18272 (name "r-actogrammr")
18273 (version "0.2.3")
18274 (source
18275 (origin
18276 (method url-fetch)
18277 (uri (cran-uri "actogrammr" version))
18278 (sha256
18279 (base32
18280 "1jzvarmd41yqlrkagzlc8m19n5mn0w0b36fy50lyvgrfsafjfbqa"))))
18281 (properties `((upstream-name . "actogrammr")))
18282 (build-system r-build-system)
18283 (propagated-inputs
18284 `(("r-dplyr" ,r-dplyr)
18285 ("r-ggplot2" ,r-ggplot2)
18286 ("r-lubridate" ,r-lubridate)
18287 ("r-readr" ,r-readr)
18288 ("r-tidyr" ,r-tidyr)))
18289 (home-page "https://cran.r-project.org/web/packages/actogrammr/")
18290 (synopsis "Read in activity data and plot actograms")
18291 (description
18292 "Read in activity measurements from standard file formats used by
18293 circadian rhythm researchers, currently only ClockLab format, and process and
18294 plot the data. The central type of plot is the actogram, as first described
18295 in \"Activity and distribution of certain wild mice in relation to biotic
18296 communities\" by MS Johnson (1926) @url{doi:10.2307/1373575}.")
18297 (license license:gpl3)))
18298
18299 (define-public r-expint
18300 (package
18301 (name "r-expint")
18302 (version "0.1-6")
18303 (source
18304 (origin
18305 (method url-fetch)
18306 (uri (cran-uri "expint" version))
18307 (sha256
18308 (base32
18309 "0iai25cglcdnf44d2d1fz1xpw4q600my4zq4493fk4cs5673mlf7"))))
18310 (properties `((upstream-name . "expint")))
18311 (build-system r-build-system)
18312 (home-page "https://gitlab.com/vigou3/expint")
18313 (synopsis "Exponential integral and incomplete Gamma function")
18314 (description
18315 "This package provides the exponential integrals @code{E_1(x)},
18316 @code{E_2(x)}, @code{E_n(x)} and @code{Ei(x)}, and the incomplete gamma
18317 function @code{G(a, x)} defined for negative values of its first argument.
18318 The package also gives easy access to the underlying C routines through an
18319 API; see the package vignette for details.")
18320 (license license:gpl2+)))
18321
18322 (define-public r-actuar
18323 (package
18324 (name "r-actuar")
18325 (version "2.3-3")
18326 (source
18327 (origin
18328 (method url-fetch)
18329 (uri (cran-uri "actuar" version))
18330 (sha256
18331 (base32
18332 "0aw3hlan5y22mdqk1wvnw9ksqhwp4yy5hi0dpv21p7s0hyxhphih"))))
18333 (properties `((upstream-name . "actuar")))
18334 (build-system r-build-system)
18335 (propagated-inputs `(("r-expint" ,r-expint)))
18336 (home-page "https://gitlab.com/vigou3/actuar")
18337 (synopsis "Actuarial functions and heavy tailed distributions")
18338 (description
18339 "This package provides functions and data sets for actuarial science:
18340 modeling of loss distributions; risk theory and ruin theory; simulation of
18341 compound models, discrete mixtures and compound hierarchical models;
18342 credibility theory. It boasts support for many additional probability
18343 distributions to model insurance loss amounts and loss frequency: 19
18344 continuous heavy tailed distributions; the Poisson-inverse Gaussian discrete
18345 distribution; zero-truncated and zero-modified extensions of the standard
18346 discrete distributions. It also supports phase-type distributions commonly
18347 used to compute ruin probabilities.")
18348 (license license:gpl2+)))
18349
18350 (define-public r-bmp
18351 (package
18352 (name "r-bmp")
18353 (version "0.3")
18354 (source
18355 (origin
18356 (method url-fetch)
18357 (uri (cran-uri "bmp" version))
18358 (sha256
18359 (base32
18360 "0jd67r11bn98hjwgyr6gas423787xy7ji2hq7ay80blkkcj91xxx"))))
18361 (properties `((upstream-name . "bmp")))
18362 (build-system r-build-system)
18363 (home-page "https://cran.r-project.org/web/packages/bmp/")
18364 (synopsis "Read Bitmap (BMP) images")
18365 (description
18366 "This package provides pure R tools to read BMP format images. It is
18367 currently limited to 8 bit greyscale images and 24, 32 bit (A)RGB images.")
18368 (license license:gpl2+)))
18369
18370 (define-public r-readbitmap
18371 (package
18372 (name "r-readbitmap")
18373 (version "0.1.5")
18374 (source
18375 (origin
18376 (method url-fetch)
18377 (uri (cran-uri "readbitmap" version))
18378 (sha256
18379 (base32
18380 "14825906l326w59g6apy00j55jg3h5kx2r6s031f4gdkbrc7szbk"))))
18381 (properties `((upstream-name . "readbitmap")))
18382 (build-system r-build-system)
18383 (inputs
18384 `(("libjpeg" ,libjpeg-turbo)
18385 ("libpng" ,libpng)))
18386 (propagated-inputs
18387 `(("r-bmp" ,r-bmp)
18388 ("r-jpeg" ,r-jpeg)
18389 ("r-png" ,r-png)
18390 ("r-tiff" ,r-tiff)))
18391 (home-page "https://github.com/jefferis/readbitmap")
18392 (synopsis "Unified interface to read bitmap images (BMP, JPEG, PNG, TIFF)")
18393 (description
18394 "This package provides tools to identify and read BMP, JPEG, PNG, and
18395 TIFF format bitmap images. Identification defaults to the use of the magic
18396 number embedded in the file rather than the file extension.")
18397 (license license:gpl2+)))
18398
18399 (define-public r-imager
18400 (package
18401 (name "r-imager")
18402 (version "0.42.1")
18403 (source
18404 (origin
18405 (method url-fetch)
18406 (uri (cran-uri "imager" version))
18407 (sha256
18408 (base32
18409 "1d7a49lcna77wyfjf5q1b89jck3p3vnysnkgz4drb0qkpy6hz76b"))))
18410 (properties `((upstream-name . "imager")))
18411 (build-system r-build-system)
18412 (inputs
18413 `(("fftw" ,fftw)
18414 ("libtiff" ,libtiff)
18415 ("libx11" ,libx11)
18416 ("zlib" ,zlib)))
18417 (propagated-inputs
18418 `(("r-downloader" ,r-downloader)
18419 ("r-igraph" ,r-igraph)
18420 ("r-jpeg" ,r-jpeg)
18421 ("r-magrittr" ,r-magrittr)
18422 ("r-png" ,r-png)
18423 ("r-purrr" ,r-purrr)
18424 ("r-rcpp" ,r-rcpp)
18425 ("r-readbitmap" ,r-readbitmap)
18426 ("r-stringr" ,r-stringr)))
18427 (native-inputs `(("pkg-config" ,pkg-config)))
18428 (home-page "https://dahtah.github.io/imager/")
18429 (synopsis "Image processing library")
18430 (description
18431 "This is a package for fast image processing for images in up to 4
18432 dimensions (two spatial dimensions, one time/depth dimension, one color
18433 dimension). It provides most traditional image processing tools (filtering,
18434 morphology, transformations, etc.) as well as various functions for easily
18435 analyzing image data using R. The package wraps @url{http://cimg.eu, CImg}, a
18436 simple, modern C++ library for image processing.")
18437 (license license:lgpl3)))
18438
18439 (define-public r-acuityview
18440 (package
18441 (name "r-acuityview")
18442 (version "0.1")
18443 (source
18444 (origin
18445 (method url-fetch)
18446 (uri (cran-uri "AcuityView" version))
18447 (sha256
18448 (base32
18449 "0f0iclmnwdc8ixiiai4svk4x1g3pjy7dhm3cm58fv6ckx12d3d2l"))))
18450 (properties `((upstream-name . "AcuityView")))
18451 (build-system r-build-system)
18452 (propagated-inputs
18453 `(("r-fftwtools" ,r-fftwtools)
18454 ("r-imager" ,r-imager)
18455 ("r-plotrix" ,r-plotrix)))
18456 (home-page "https://cran.r-project.org/web/packages/AcuityView/")
18457 (synopsis "Display scenes as seen by an animal with less acute vision")
18458 (description
18459 "This package provides a simple method for representing a visual scene as
18460 it may be seen by an animal with less acute vision.")
18461 (license license:gpl2+)))
18462
18463 (define-public r-caret
18464 (package
18465 (name "r-caret")
18466 (version "6.0-86")
18467 (source
18468 (origin
18469 (method url-fetch)
18470 (uri (cran-uri "caret" version))
18471 (sha256
18472 (base32
18473 "0dyflixdw98lvk2x3w136sw24ij0fwx5c7l709dmqr5z7xy1qjns"))))
18474 (build-system r-build-system)
18475 (propagated-inputs
18476 `(("r-foreach" ,r-foreach)
18477 ("r-ggplot2" ,r-ggplot2)
18478 ("r-lattice" ,r-lattice)
18479 ("r-modelmetrics" ,r-modelmetrics)
18480 ("r-nlme" ,r-nlme)
18481 ("r-plyr" ,r-plyr)
18482 ("r-proc" ,r-proc)
18483 ("r-recipes" ,r-recipes)
18484 ("r-reshape2" ,r-reshape2)
18485 ("r-withr" ,r-withr)))
18486 (native-inputs
18487 `(("r-knitr" ,r-knitr)))
18488 (home-page "https://github.com/topepo/caret")
18489 (synopsis "Classification and regression training")
18490 (description
18491 "This package provides miscellaneous functions for training and plotting
18492 classification and regression models.")
18493 (license license:gpl2+)))
18494
18495 (define-public r-adabag
18496 (package
18497 (name "r-adabag")
18498 (version "4.2")
18499 (source
18500 (origin
18501 (method url-fetch)
18502 (uri (cran-uri "adabag" version))
18503 (sha256
18504 (base32
18505 "109wrl1pwvmyv2l909hrvk7dg4aa9pv449mvdycp50zwrsw9w0a7"))))
18506 (properties `((upstream-name . "adabag")))
18507 (build-system r-build-system)
18508 (propagated-inputs
18509 `(("r-caret" ,r-caret)
18510 ("r-doparallel" ,r-doparallel)
18511 ("r-foreach" ,r-foreach)
18512 ("r-rpart" ,r-rpart)))
18513 (home-page "https://cran.r-project.org/web/packages/adabag/")
18514 (synopsis "Multiclass AdaBoost.M1, SAMME and Bagging")
18515 (description
18516 "This package implements Freund and Schapire's Adaboost.M1 algorithm and
18517 Breiman's Bagging algorithm using classification trees as individual
18518 classifiers. Once these classifiers have been trained, they can be used to
18519 predict on new data. Also, cross validation estimation of the error can be
18520 done.")
18521 (license license:gpl2+)))
18522
18523 (define-public r-adagio
18524 (package
18525 (name "r-adagio")
18526 (version "0.7.1")
18527 (source
18528 (origin
18529 (method url-fetch)
18530 (uri (cran-uri "adagio" version))
18531 (sha256
18532 (base32
18533 "1h9l0ddrxq8y35iy9hdkxdvdwsqpnpkzzbkbwwhm4380lq1m7a3k"))))
18534 (properties `((upstream-name . "adagio")))
18535 (build-system r-build-system)
18536 (native-inputs `(("gfortran" ,gfortran)))
18537 (home-page "https://cran.r-project.org/web/packages/adagio/")
18538 (synopsis "Discrete and global optimization routines")
18539 (description
18540 "This package provides methods and algorithms for discrete optimization,
18541 e.g. knapsack and subset sum procedures, derivative-free Nelder-Mead and
18542 Hooke-Jeeves minimization, and some (evolutionary) global optimization
18543 functions.")
18544 (license license:gpl3+)))
18545
18546 (define-public r-univoutl
18547 (package
18548 (name "r-univoutl")
18549 (version "0.1-5")
18550 (source
18551 (origin
18552 (method url-fetch)
18553 (uri (cran-uri "univOutl" version))
18554 (sha256
18555 (base32
18556 "193wrpkvgmlrx43nag8w3ivrlqm37nm6g86wcvd3bgw3hchs70gi"))))
18557 (properties `((upstream-name . "univOutl")))
18558 (build-system r-build-system)
18559 (propagated-inputs
18560 `(("r-hmisc" ,r-hmisc)
18561 ("r-robustbase" ,r-robustbase)))
18562 (home-page "https://github.com/marcellodo/univOutl")
18563 (synopsis "Detection of univariate outliers")
18564 (description
18565 "This package provides well-known outlier detection techniques in the
18566 univariate case. Methods to deal with skewed distribution are included too.
18567 The Hidiroglou-Berthelot (1986) method to search for outliers in ratios of
18568 historical data is implemented as well. When available, survey weights can be
18569 used in outliers detection.")
18570 (license license:gpl2+)))
18571
18572 (define-public r-tolerance
18573 (package
18574 (name "r-tolerance")
18575 (version "2.0.0")
18576 (source
18577 (origin
18578 (method url-fetch)
18579 (uri (cran-uri "tolerance" version))
18580 (sha256
18581 (base32
18582 "001snzr2ipag3zprynydlbi9prkjzrllc054qh7m0qwkb3r19jjd"))))
18583 (properties `((upstream-name . "tolerance")))
18584 (build-system r-build-system)
18585 (propagated-inputs
18586 `(("r-mass" ,r-mass)
18587 ("r-rgl" ,r-rgl)))
18588 (home-page "https://cran.r-project.org/web/packages/tolerance/")
18589 (synopsis "Statistical tolerance intervals and regions")
18590 (description
18591 "This package provides functions for estimating tolerance
18592 limits (intervals) for various univariate distributions (binomial, Cauchy,
18593 discrete Pareto, exponential, two-parameter exponential, extreme value,
18594 hypergeometric, Laplace, logistic, negative binomial, negative hypergeometric,
18595 normal, Pareto, Poisson-Lindley, Poisson, uniform, and Zipf-Mandelbrot),
18596 Bayesian normal tolerance limits, multivariate normal tolerance regions,
18597 nonparametric tolerance intervals, tolerance bands for regression
18598 settings (linear regression, nonlinear regression, nonparametric regression,
18599 and multivariate regression), and analysis of variance tolerance intervals.
18600 Visualizations are also available for most of these settings.")
18601 (license license:gpl2+)))
18602
18603 (define-public r-additivitytests
18604 (package
18605 (name "r-additivitytests")
18606 (version "1.1-4")
18607 (source
18608 (origin
18609 (method url-fetch)
18610 (uri (cran-uri "additivityTests" version))
18611 (sha256
18612 (base32
18613 "048ds90wqjdjy1nyhna3m06asdklbh8sx1n556kss2j1r1pma1sw"))))
18614 (properties
18615 `((upstream-name . "additivityTests")))
18616 (build-system r-build-system)
18617 (home-page "https://github.com/simecek/additivityTests")
18618 (synopsis "Additivity tests in the two way Anova with single sub-class numbers")
18619 (description
18620 "This package provides an implementation of the Tukey, Mandel,
18621 Johnson-Graybill, LBI, Tusell and modified Tukey non-additivity tests.")
18622 (license license:gpl3)))
18623
18624 (define-public r-flexclust
18625 (package
18626 (name "r-flexclust")
18627 (version "1.4-0")
18628 (source
18629 (origin
18630 (method url-fetch)
18631 (uri (cran-uri "flexclust" version))
18632 (sha256
18633 (base32
18634 "0x7wxk8y46ndyz6fdacym0rd6p9wh3pcfr28chjcg5d7fm849zl2"))))
18635 (properties `((upstream-name . "flexclust")))
18636 (build-system r-build-system)
18637 (propagated-inputs
18638 `(("r-class" ,r-class)
18639 ("r-lattice" ,r-lattice)
18640 ("r-modeltools" ,r-modeltools)))
18641 (home-page "https://cran.r-project.org/web/packages/flexclust/")
18642 (synopsis "Flexible cluster algorithms")
18643 (description
18644 "The main function @code{kcca} implements a general framework for
18645 k-centroids cluster analysis supporting arbitrary distance measures and
18646 centroid computation. Further cluster methods include hard competitive
18647 learning, neural gas, and QT clustering. There are numerous visualization
18648 methods for cluster results (neighborhood graphs, convex cluster hulls,
18649 barcharts of centroids, ...), and bootstrap methods for the analysis of
18650 cluster stability.")
18651 (license license:gpl2)))
18652
18653 (define-public r-biclust
18654 (package
18655 (name "r-biclust")
18656 (version "2.0.2")
18657 (source
18658 (origin
18659 (method url-fetch)
18660 (uri (cran-uri "biclust" version))
18661 (sha256
18662 (base32
18663 "1pk7mvwlg4hkc4cn4w6wr2c192qx03d1xfwlzclk5bw1nmcg483b"))))
18664 (properties `((upstream-name . "biclust")))
18665 (build-system r-build-system)
18666 (propagated-inputs
18667 `(("r-additivitytests" ,r-additivitytests)
18668 ("r-colorspace" ,r-colorspace)
18669 ("r-flexclust" ,r-flexclust)
18670 ("r-ggplot2" ,r-ggplot2)
18671 ("r-lattice" ,r-lattice)
18672 ("r-mass" ,r-mass)
18673 ("r-tidyr" ,r-tidyr)))
18674 (home-page "https://cran.r-project.org/web/packages/biclust/")
18675 (synopsis "BiCluster algorithms")
18676 (description
18677 "The main function @code{biclust()} provides several algorithms to find
18678 biclusters in two-dimensional data, spectral, plaid model, xmotifs, and bimax.
18679 In addition, the package provides methods for data
18680 preprocessing (normalization and discretization), visualization, and
18681 validation of bicluster solutions.")
18682 (license license:gpl3)))
18683
18684 (define-public r-icge
18685 (package
18686 (name "r-icge")
18687 (version "0.3")
18688 (source
18689 (origin
18690 (method url-fetch)
18691 (uri (cran-uri "ICGE" version))
18692 (sha256
18693 (base32
18694 "0xin7zml1nbygyi08hhg3wwr2jr1zcsvrlgia89zp4xanxlzgaqa"))))
18695 (properties `((upstream-name . "ICGE")))
18696 (build-system r-build-system)
18697 (propagated-inputs
18698 `(("r-cluster" ,r-cluster)
18699 ("r-mass" ,r-mass)))
18700 (home-page "https://cran.r-project.org/web/packages/ICGE/")
18701 (synopsis "Cluster estimation and identification of atypical units")
18702 (description
18703 "ICGE is a package that helps to estimate the number of real clusters in
18704 data as well as to identify atypical units. The underlying methods are based
18705 on distances rather than on unit x variables.")
18706 (license license:gpl2+)))
18707
18708 (define-public r-depth
18709 (package
18710 (name "r-depth")
18711 (version "2.1-1.1")
18712 (source
18713 (origin
18714 (method url-fetch)
18715 (uri (cran-uri "depth" version))
18716 (sha256
18717 (base32
18718 "0szy0027nh4ps1z919i740i50app5q7cfyg1fj7pdyl45nbl8k6m"))))
18719 (properties `((upstream-name . "depth")))
18720 (build-system r-build-system)
18721 (propagated-inputs
18722 `(("r-abind" ,r-abind)
18723 ("r-circular" ,r-circular)
18724 ("r-rgl" ,r-rgl)))
18725 (native-inputs
18726 `(("gfortran" ,gfortran)))
18727 (home-page "https://cran.r-project.org/web/packages/depth/")
18728 (synopsis "Nonparametric depth functions for multivariate analysis")
18729 (description
18730 "This package provides tools for depth functions methodology applied to
18731 multivariate analysis. Besides allowing calculation of depth values and
18732 depth-based location estimators, the package includes functions or drawing
18733 contour plots and perspective plots of depth functions. Euclidian and
18734 spherical depths are supported.")
18735 (license license:gpl2)))
18736
18737 (define-public r-archetypes
18738 (package
18739 (name "r-archetypes")
18740 (version "2.2-0.1")
18741 (source
18742 (origin
18743 (method url-fetch)
18744 (uri (cran-uri "archetypes" version))
18745 (sha256
18746 (base32
18747 "0ibxsr173ib77gjhid91m85s8gjii4mi2w3d52q5301igv20p7r0"))))
18748 (properties `((upstream-name . "archetypes")))
18749 (build-system r-build-system)
18750 (propagated-inputs
18751 `(("r-modeltools" ,r-modeltools)
18752 ("r-nnls" ,r-nnls)))
18753 (home-page "https://cran.r-project.org/web/packages/archetypes")
18754 (synopsis "Archetypal analysis")
18755 (description
18756 "The main function @code{archetypes} implements a framework for
18757 archetypal analysis supporting arbitrary problem solving mechanisms for the
18758 different conceptual parts of the algorithm.")
18759 (license license:gpl2+)))
18760
18761 (define-public r-shapes
18762 (package
18763 (name "r-shapes")
18764 (version "1.2.5")
18765 (source
18766 (origin
18767 (method url-fetch)
18768 (uri (cran-uri "shapes" version))
18769 (sha256
18770 (base32
18771 "0gfpdydfysp5mwg7qmkn73s67gvh2szb40mzqrx97h41ijgcgd8s"))))
18772 (properties `((upstream-name . "shapes")))
18773 (build-system r-build-system)
18774 (propagated-inputs
18775 `(("r-mass" ,r-mass)
18776 ("r-minpack-lm" ,r-minpack-lm)
18777 ("r-rgl" ,r-rgl)
18778 ("r-scatterplot3d" ,r-scatterplot3d)))
18779 (home-page "http://www.maths.nottingham.ac.uk/~ild/shapes")
18780 (synopsis "Statistical shape analysis")
18781 (description
18782 "This package provides routines for the statistical analysis of landmark
18783 shapes, including Procrustes analysis, graphical displays, principal
18784 components analysis, permutation and bootstrap tests, thin-plate spline
18785 transformation grids and comparing covariance matrices. See Dryden, I.L. and
18786 Mardia, K.V. (2016). Statistical shape analysis, with Applications in R (2nd
18787 Edition), John Wiley and Sons.")
18788 (license license:gpl2)))
18789
18790 (define-public r-anthropometry
18791 (package
18792 (name "r-anthropometry")
18793 (version "1.13")
18794 (source
18795 (origin
18796 (method url-fetch)
18797 (uri (cran-uri "Anthropometry" version))
18798 (sha256
18799 (base32
18800 "1f568ri1s6psaby8y737vrkarbjg64v89d4jyw23hy17apdmszr8"))))
18801 (properties `((upstream-name . "Anthropometry")))
18802 (build-system r-build-system)
18803 (propagated-inputs
18804 `(("r-archetypes" ,r-archetypes)
18805 ("r-biclust" ,r-biclust)
18806 ("r-cluster" ,r-cluster)
18807 ("r-depth" ,r-depth)
18808 ("r-fnn" ,r-fnn)
18809 ("r-icge" ,r-icge)
18810 ("r-nnls" ,r-nnls)
18811 ("r-rgl" ,r-rgl)
18812 ("r-shapes" ,r-shapes)))
18813 (home-page "https://cran.r-project.org/web/packages/Anthropometry/")
18814 (synopsis "Statistical methods for anthropometric data")
18815 (description
18816 "This package provides statistical methods especially developed to
18817 analyze anthropometric data. These methods are aimed at providing effective
18818 solutions to some commons problems related to Ergonomics and Anthropometry.
18819 They are based on clustering, the statistical concept of data depth,
18820 statistical shape analysis and archetypal analysis.")
18821 (license license:gpl2+)))
18822
18823 (define-public r-adamethods
18824 (package
18825 (name "r-adamethods")
18826 (version "1.2")
18827 (source
18828 (origin
18829 (method url-fetch)
18830 (uri (cran-uri "adamethods" version))
18831 (sha256
18832 (base32
18833 "0mp73zh5x6h18gv29v981kb9n632kb58lvlcxwr6vcvrx393nrxh"))))
18834 (properties `((upstream-name . "adamethods")))
18835 (build-system r-build-system)
18836 (propagated-inputs
18837 `(("r-anthropometry" ,r-anthropometry)
18838 ("r-archetypes" ,r-archetypes)
18839 ("r-fnn" ,r-fnn)
18840 ("r-foreach" ,r-foreach)
18841 ("r-nnls" ,r-nnls)
18842 ("r-tolerance" ,r-tolerance)
18843 ("r-univoutl" ,r-univoutl)))
18844 (home-page "https://cran.r-project.org/web/packages/adamethods/")
18845 (synopsis "Archetypoid algorithms and anomaly detection")
18846 (description
18847 "This package is a collection of several algorithms to obtain
18848 archetypoids with small and large databases and with both classical
18849 multivariate data and functional data (univariate and multivariate). Some of
18850 these algorithms also allow to detect anomalies (outliers).")
18851 (license license:gpl2+)))
18852
18853 (define-public r-idpmisc
18854 (package
18855 (name "r-idpmisc")
18856 (version "1.1.20")
18857 (source
18858 (origin
18859 (method url-fetch)
18860 (uri (cran-uri "IDPmisc" version))
18861 (sha256
18862 (base32
18863 "0zy6mxqa8arq0vvhsdcifzm3085c23rnwa1n36fhircph1xwvfdw"))))
18864 (properties `((upstream-name . "IDPmisc")))
18865 (build-system r-build-system)
18866 (propagated-inputs
18867 `(("r-lattice" ,r-lattice)))
18868 (home-page "https://cran.r-project.org/web/packages/IDPmisc/")
18869 (synopsis "Functions for data analyses and visualization")
18870 (description
18871 "This package provides different high-level graphics functions for
18872 displaying large datasets, displaying circular data in a very flexible way,
18873 finding local maxima, brewing color ramps, drawing nice arrows, zooming
18874 2D-plots, creating figures with differently colored margin and plot region.
18875 In addition, the package contains auxiliary functions for data manipulation
18876 like omitting observations with irregular values or selecting data by logical
18877 vectors, which include NAs. Other functions are especially useful in
18878 spectroscopy and analyses of environmental data: robust baseline fitting,
18879 finding peaks in spectra, converting humidity measures.")
18880 (license license:gpl3+)))
18881
18882 (define-public r-qqman
18883 (package
18884 (name "r-qqman")
18885 (version "0.1.4")
18886 (source
18887 (origin
18888 (method url-fetch)
18889 (uri (cran-uri "qqman" version))
18890 (sha256
18891 (base32
18892 "1v9s9ag1hfb47py87wb2nad4mbsfx35832hdmrh5kxrb2f11zl1s"))))
18893 (properties `((upstream-name . "qqman")))
18894 (build-system r-build-system)
18895 (propagated-inputs
18896 `(("r-calibrate" ,r-calibrate)))
18897 (home-page "https://cran.r-project.org/web/packages/qqman/")
18898 (synopsis "Q-Q and Manhattan plots for GWAS data")
18899 (description
18900 "This package allows you to create Q-Q and Manhattan plots for GWAS data
18901 from PLINK results.")
18902 (license license:gpl3)))
18903
18904 (define-public r-ggplot-multistats
18905 (package
18906 (name "r-ggplot-multistats")
18907 (version "1.0.0")
18908 (source
18909 (origin
18910 (method url-fetch)
18911 (uri (cran-uri "ggplot.multistats" version))
18912 (sha256
18913 (base32
18914 "1afzfa86vc484bcwpg7m1ky03jpax584rigzgai8w06pifkmz0il"))))
18915 (properties
18916 `((upstream-name . "ggplot.multistats")))
18917 (build-system r-build-system)
18918 (propagated-inputs
18919 `(("r-ggplot2" ,r-ggplot2)
18920 ("r-hexbin" ,r-hexbin)
18921 ("r-rlang" ,r-rlang)
18922 ("r-scales" ,r-scales)))
18923 (home-page "https://github.com/flying-sheep/ggplot.multistats")
18924 (synopsis "Multiple summary statistics for binned stats/geometries")
18925 (description
18926 "This package provides the ggplot binning layer @code{stat_summaries_hex()},
18927 which functions similar to its singular form, but allows the use of multiple
18928 statistics per bin. Those statistics can be mapped to multiple bin
18929 aesthetics.")
18930 (license license:gpl3)))
18931
18932 (define-public r-knn-covertree
18933 (package
18934 (name "r-knn-covertree")
18935 (version "1.0")
18936 (source
18937 (origin
18938 (method url-fetch)
18939 (uri (cran-uri "knn.covertree" version))
18940 (sha256
18941 (base32
18942 "0msfcmwydws7q7m5jdb0dxab0nkbl7mq5llg6v3r4qrnlvrdggvz"))))
18943 (properties `((upstream-name . "knn.covertree")))
18944 (build-system r-build-system)
18945 (propagated-inputs
18946 `(("r-matrix" ,r-matrix)
18947 ("r-rcpp" ,r-rcpp)
18948 ("r-rcppeigen" ,r-rcppeigen)))
18949 (home-page "https://github.com/flying-sheep/knn.covertree")
18950 (synopsis "Accurate kNN Implementation with multiple distance measures")
18951 (description
18952 "Similarly to the FNN package, this package allows calculation of the k
18953 nearest neighbors (kNN) of a data matrix. The implementation is based on
18954 cover trees introduced by Alina Beygelzimer, Sham Kakade, and John
18955 Langford (2006) @url{doi:10.1145/1143844.1143857}.")
18956 (license license:agpl3+)))
18957
18958 (define-public r-poibin
18959 (package
18960 (name "r-poibin")
18961 (version "1.5")
18962 (source
18963 (origin
18964 (method url-fetch)
18965 (uri (cran-uri "poibin" version))
18966 (sha256
18967 (base32
18968 "1sxryvwwz6ldsnkzdy56p8c895s5yvpcai9ndyjv1x5q3l05wf9v"))))
18969 (properties `((upstream-name . "poibin")))
18970 (build-system r-build-system)
18971 (home-page "https://cran.r-project.org/web/packages/poibin/")
18972 (synopsis "Poisson binomial distribution")
18973 (description
18974 "This package provides an implementation of both the exact and
18975 approximation methods for computing the @dfn{cumulative distribution
18976 function} (CDF) of the Poisson binomial distribution. It also provides the
18977 @dfn{probability mass function} (PMF), quantile function, and random number
18978 generation for the Poisson binomial distribution.")
18979 (license license:gpl2)))
18980
18981 (define-public r-diagram
18982 (package
18983 (name "r-diagram")
18984 (version "1.6.4")
18985 (source
18986 (origin
18987 (method url-fetch)
18988 (uri (cran-uri "diagram" version))
18989 (sha256
18990 (base32
18991 "0f6ffprn5k0ir1s7m9s7izc64aa17r3gnygagz5bihrlsvawaavw"))))
18992 (properties `((upstream-name . "diagram")))
18993 (build-system r-build-system)
18994 (propagated-inputs
18995 `(("r-shape" ,r-shape)))
18996 (home-page "https://cran.r-project.org/web/packages/diagram/")
18997 (synopsis "Visualize simple graphs (networks) and plot flow diagrams")
18998 (description
18999 "This package provides tools to visualize simple graphs (networks) based
19000 on a transition matrix, utilities to plot flow diagrams, visualizing webs,
19001 electrical networks, etc. It also includes supporting material for the book
19002 \"A practical guide to ecological modelling - using R as a simulation
19003 platform\" by Karline Soetaert and Peter M.J. Herman (2009) and the book
19004 \"Solving Differential Equations in R\" by Karline Soetaert, Jeff Cash and
19005 Francesca Mazzia (2012).")
19006 (license license:gpl2+)))
19007
19008 (define-public r-lim
19009 (package
19010 (name "r-lim")
19011 (version "1.4.6")
19012 (source
19013 (origin
19014 (method url-fetch)
19015 (uri (cran-uri "LIM" version))
19016 (sha256
19017 (base32
19018 "03x1gnm06bw1wrzc01110bjzd2mvjdzbc2mbrazh22jrmb32w5d8"))))
19019 (properties `((upstream-name . "LIM")))
19020 (build-system r-build-system)
19021 (propagated-inputs
19022 `(("r-diagram" ,r-diagram)
19023 ("r-limsolve" ,r-limsolve)))
19024 (home-page "https://cran.r-project.org/web/packages/LIM/")
19025 (synopsis "Linear inverse model examples and solution methods")
19026 (description
19027 "This package provides functions that read and solve linear inverse
19028 problems (food web problems, linear programming problems).")
19029 (license license:gpl2+)))
19030
19031 (define-public r-shinycssloaders
19032 (package
19033 (name "r-shinycssloaders")
19034 (version "0.3")
19035 (source
19036 (origin
19037 (method url-fetch)
19038 (uri (cran-uri "shinycssloaders" version))
19039 (sha256
19040 (base32
19041 "1gzq1lhcnhqd145ys3ixf0l13l560fiqr2sc3m2nrijwxlgcw54d"))))
19042 (properties
19043 `((upstream-name . "shinycssloaders")))
19044 (build-system r-build-system)
19045 (propagated-inputs
19046 `(("r-digest" ,r-digest)
19047 ("r-glue" ,r-glue)
19048 ("r-shiny" ,r-shiny)))
19049 (home-page "https://github.com/andrewsali/shinycssloaders")
19050 (synopsis "Add CSS loading animations to Shiny outputs")
19051 (description
19052 "This package provides tools to create a lightweight Shiny wrapper for
19053 the css-loaders created by Luke Hass
19054 @url{https://github.com/lukehaas/css-loaders}. Wrapping a Shiny output will
19055 automatically show a loader when the output is (re)calculating.")
19056 (license license:gpl3)))
19057
19058 (define-public r-rsvg
19059 (package
19060 (name "r-rsvg")
19061 (version "1.3")
19062 (source
19063 (origin
19064 (method url-fetch)
19065 (uri (cran-uri "rsvg" version))
19066 (sha256
19067 (base32
19068 "11mccgf6hfskg45wqc114sx3qy2r494y6axdf73z6xwhs1wpm97g"))))
19069 (properties `((upstream-name . "rsvg")))
19070 (build-system r-build-system)
19071 (inputs
19072 `(("librsvg" ,librsvg)
19073 ("zlib" ,zlib)))
19074 (native-inputs
19075 `(("pkg-config" ,pkg-config)))
19076 (home-page "https://github.com/jeroen/rsvg#readme")
19077 (synopsis "Render SVG images into PDF, PNG, PostScript, or Bitmap arrays")
19078 (description
19079 "This package allows you to render vector-based SVG images into
19080 high-quality custom-size bitmap arrays using the librsvg2 library. The
19081 resulting bitmap can be written to e.g. PNG, JPEG or WEBP format. In
19082 addition, the package can convert images directly to various formats such as
19083 PDF or PostScript.")
19084 (license license:expat)))
19085
19086 (define-public r-influencer
19087 (package
19088 (name "r-influencer")
19089 (version "0.1.0")
19090 (source
19091 (origin
19092 (method url-fetch)
19093 (uri (cran-uri "influenceR" version))
19094 (sha256
19095 (base32
19096 "12p9362hkndlnz1rd8j2rykg57kbm6l7ks60by3rd25xg50k5jag"))))
19097 (properties `((upstream-name . "influenceR")))
19098 (build-system r-build-system)
19099 (propagated-inputs
19100 `(("r-igraph" ,r-igraph)
19101 ("r-matrix" ,r-matrix)))
19102 (home-page "https://github.com/rcc-uchicago/influenceR")
19103 (synopsis "Tools to quantify structural importance of nodes in a network")
19104 (description
19105 "This package provides functionality to compute various node centrality
19106 measures on networks. Included are functions to compute betweenness
19107 centrality (by utilizing Madduri and Bader's SNAP library), implementations of
19108 Burt's constraint and @dfn{effective network size} (ENS) metrics, Borgatti's
19109 algorithm to identify key players, and Valente's bridging metric. The
19110 betweenness, Key Players, and bridging implementations are parallelized with
19111 OpenMP.")
19112 (license license:gpl2)))
19113
19114 (define-public r-emplik
19115 (package
19116 (name "r-emplik")
19117 (version "1.0-4.3")
19118 (source
19119 (origin
19120 (method url-fetch)
19121 (uri (cran-uri "emplik" version))
19122 (sha256
19123 (base32
19124 "1g4hz85bvw29c77zs0ig487z92jjl682vv457x81l077h0psvk7c"))))
19125 (properties `((upstream-name . "emplik")))
19126 (build-system r-build-system)
19127 (propagated-inputs
19128 `(("r-quantreg" ,r-quantreg)))
19129 (home-page "https://www.ms.uky.edu/~mai/EmpLik.html")
19130 (synopsis "Empirical likelihood ratio for censored/truncated data")
19131 (description
19132 "This package provides empirical likelihood ratio tests for
19133 means/quantiles/hazards from possibly censored and/or truncated data. It also
19134 does regression.")
19135 (license license:gpl2+)))
19136
19137 (define-public r-imputeyn
19138 (package
19139 (name "r-imputeyn")
19140 (version "1.3")
19141 (source
19142 (origin
19143 (method url-fetch)
19144 (uri (cran-uri "imputeYn" version))
19145 (sha256
19146 (base32
19147 "1b21w1aa5f7yiq8k0wa86wvbg4ij7f6ldwn6asfqwb0b90rvsgvs"))))
19148 (properties `((upstream-name . "imputeYn")))
19149 (build-system r-build-system)
19150 (propagated-inputs
19151 `(("r-boot" ,r-boot)
19152 ("r-emplik" ,r-emplik)
19153 ("r-mvtnorm" ,r-mvtnorm)
19154 ("r-quadprog" ,r-quadprog)
19155 ("r-survival" ,r-survival)))
19156 (home-page "https://cran.r-project.org/web/packages/imputeYn/")
19157 (synopsis "Impute last largest censored observation under weighted least squares")
19158 (description
19159 "This package allows for the imputation of the last largest censored
19160 observantions. This method brings less bias and more efficient estimates for
19161 AFT models.")
19162 (license license:gpl2)))
19163
19164 (define-public r-adapenetclass
19165 (package
19166 (name "r-adapenetclass")
19167 (version "1.2")
19168 (source
19169 (origin
19170 (method url-fetch)
19171 (uri (cran-uri "AdapEnetClass" version))
19172 (sha256
19173 (base32
19174 "01k3mj4g1ckbng7wkzzn9h0k9yf01cpnnkly0sjda574c5jhj0rc"))))
19175 (properties `((upstream-name . "AdapEnetClass")))
19176 (build-system r-build-system)
19177 (propagated-inputs
19178 `(("r-glmnet" ,r-glmnet)
19179 ("r-imputeyn" ,r-imputeyn)
19180 ("r-lars" ,r-lars)
19181 ("r-quadprog" ,r-quadprog)))
19182 (home-page "https://cran.r-project.org/web/packages/AdapEnetClass/")
19183 (synopsis "Class of adaptive elastic net methods for censored data")
19184 (description
19185 "This package provides methods for variable selection for AFT models.")
19186 (license license:gpl2)))
19187
19188 (define-public r-flock
19189 (package
19190 (name "r-flock")
19191 (version "0.7")
19192 (source
19193 (origin
19194 (method url-fetch)
19195 (uri (cran-uri "flock" version))
19196 (sha256
19197 (base32
19198 "1zg93p74icj4bhxnmnssj2xp6vw4yaksyavq03497v33xfpdxss7"))))
19199 (properties `((upstream-name . "flock")))
19200 (build-system r-build-system)
19201 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
19202 (home-page "https://cran.r-project.org/web/packages/flock/")
19203 (synopsis "Process synchronization using file locks")
19204 (description
19205 "This package implements synchronization between R processes (spawned by
19206 using the @code{parallel} package for instance) using file locks. It supports
19207 both exclusive and shared locking.")
19208 (license license:asl2.0)))
19209
19210 (define-public r-archivist
19211 (package
19212 (name "r-archivist")
19213 (version "2.3.4")
19214 (source
19215 (origin
19216 (method url-fetch)
19217 (uri (cran-uri "archivist" version))
19218 (sha256
19219 (base32
19220 "1i11hrcq1910jgd6diw6h3sxx624v57zjianm49pqvb2dvd0b8y7"))))
19221 (properties `((upstream-name . "archivist")))
19222 (build-system r-build-system)
19223 (propagated-inputs
19224 `(("r-dbi" ,r-dbi)
19225 ("r-digest" ,r-digest)
19226 ("r-flock" ,r-flock)
19227 ("r-httr" ,r-httr)
19228 ("r-lubridate" ,r-lubridate)
19229 ("r-magrittr" ,r-magrittr)
19230 ("r-rcurl" ,r-rcurl)
19231 ("r-rsqlite" ,r-rsqlite)))
19232 (home-page "https://pbiecek.github.io/archivist/")
19233 (synopsis "Tools for storing, restoring and searching for R objects")
19234 (description
19235 "Data exploration and modelling is a process in which a lot of data
19236 artifacts are produced. Artifacts like: subsets, data aggregates, plots,
19237 statistical models, different versions of data sets and different versions of
19238 results. Archivist helps to store and manage artifacts created in R. It
19239 allows you to store selected artifacts as binary files together with their
19240 metadata and relations. Archivist allows sharing artifacts with others. It
19241 can look for already created artifacts by using its class, name, date of the
19242 creation or other properties. It also makes it easy to restore such
19243 artifacts.")
19244 (license license:gpl2)))
19245
19246 (define-public r-versions
19247 (package
19248 (name "r-versions")
19249 (version "0.3")
19250 (source
19251 (origin
19252 (method url-fetch)
19253 (uri (cran-uri "versions" version))
19254 (sha256
19255 (base32
19256 "0zm49j785dgv7fyr1yl9q5f0dsk8hhpim5q5bpkgrkzv7pwjribd"))))
19257 (properties `((upstream-name . "versions")))
19258 (build-system r-build-system)
19259 (home-page "https://cran.r-project.org/web/packages/versions/")
19260 (synopsis "Query and install specific versions of CRAN packages")
19261 (description
19262 "This package allows you to install specified versions of R packages
19263 hosted on CRAN and provides functions to list available versions and the
19264 versions of currently installed packages.")
19265 (license license:bsd-3)))
19266
19267 (define-public r-adapr
19268 (package
19269 (name "r-adapr")
19270 (version "2.0.0")
19271 (source
19272 (origin
19273 (method url-fetch)
19274 (uri (cran-uri "adapr" version))
19275 (sha256
19276 (base32
19277 "1s57jdbi5pik56xjz1d4438ax6cywg2yq2s47h5g6wrwvpgr1qfw"))))
19278 (properties `((upstream-name . "adapr")))
19279 (build-system r-build-system)
19280 (propagated-inputs
19281 `(("r-archivist" ,r-archivist)
19282 ("r-devtools" ,r-devtools)
19283 ("r-digest" ,r-digest)
19284 ("r-doparallel" ,r-doparallel)
19285 ("r-gdata" ,r-gdata)
19286 ("r-ggplot2" ,r-ggplot2)
19287 ("r-git2r" ,r-git2r)
19288 ("r-igraph" ,r-igraph)
19289 ("r-knitr" ,r-knitr)
19290 ("r-plotly" ,r-plotly)
19291 ("r-plyr" ,r-plyr)
19292 ("r-rmarkdown" ,r-rmarkdown)
19293 ("r-shiny" ,r-shiny)
19294 ("r-shinydashboard" ,r-shinydashboard)
19295 ("r-versions" ,r-versions)))
19296 (home-page "https://cran.r-project.org/web/packages/adapr/")
19297 (synopsis "Implementation of an accountable data analysis process")
19298 (description
19299 "This package tracks reading and writing within R scripts that are
19300 organized into a directed acyclic graph. It contains an interactive Shiny
19301 application @code{adaprApp()}. It uses Git and file hashes to track version
19302 histories of inputs and outputs.")
19303 (license license:lgpl2.0)))
19304
19305 (define-public r-adapsamp
19306 (package
19307 (name "r-adapsamp")
19308 (version "1.1.1")
19309 (source
19310 (origin
19311 (method url-fetch)
19312 (uri (cran-uri "AdapSamp" version))
19313 (sha256
19314 (base32
19315 "1jayjrsiib2ij4rxxj59g71r3xhzl5yqh0lhi8k6cfy03i7dkvis"))))
19316 (properties `((upstream-name . "AdapSamp")))
19317 (build-system r-build-system)
19318 (propagated-inputs `(("r-pracma" ,r-pracma)))
19319 (home-page "https://cran.r-project.org/web/packages/AdapSamp/")
19320 (synopsis "Adaptive sampling algorithms")
19321 (description
19322 "For distributions whose probability density functions are log-concave,
19323 the adaptive rejection sampling algorithm can be used to build envelope
19324 functions for sampling. For others, the modified adaptive rejection sampling
19325 algorithm, the concave-convex adaptive rejection sampling algorithm, and the
19326 adaptive slice sampling algorithm can be used. This R package mainly includes
19327 these four functions: @code{rARS()}, @code{rMARS()}, @code{rCCARS()}, and
19328 @code{rASS()}. These functions can realize sampling based on the algorithms
19329 above.")
19330 (license license:gpl2)))
19331
19332 (define-public r-adaptalint
19333 (package
19334 (name "r-adaptalint")
19335 (version "0.2.4")
19336 (source
19337 (origin
19338 (method url-fetch)
19339 (uri (cran-uri "adaptalint" version))
19340 (sha256
19341 (base32
19342 "15qdcvnnbgcps8j5k79354wsc9alswijv8lcafg2i3lghaw536yf"))))
19343 (properties `((upstream-name . "adaptalint")))
19344 (build-system r-build-system)
19345 (propagated-inputs
19346 `(("r-dplyr" ,r-dplyr)
19347 ("r-lintr" ,r-lintr)
19348 ("r-purrr" ,r-purrr)))
19349 (home-page "https://cran.r-project.org/web/packages/adaptalint/")
19350 (synopsis "Check R code style")
19351 (description
19352 "This package provides tools to infer the code style (which style rules
19353 are followed and which ones are not) from one package and use it to check
19354 another. This makes it easier to find and correct the most important problems
19355 first.")
19356 (license license:gpl3)))
19357
19358 (define-public r-fracdiff
19359 (package
19360 (name "r-fracdiff")
19361 (version "1.5-1")
19362 (source
19363 (origin
19364 (method url-fetch)
19365 (uri (cran-uri "fracdiff" version))
19366 (sha256
19367 (base32
19368 "1dhfjlhr9sb38qgpsx0sm73l9lgc13d0fk32l7fmjfnalhr3n45q"))))
19369 (properties `((upstream-name . "fracdiff")))
19370 (build-system r-build-system)
19371 (home-page "https://github.com/mmaechler/fracdiff")
19372 (synopsis
19373 "Fractionally differenced ARIMA aka ARFIMA(P,d,q) models")
19374 (description
19375 "This package provides tools for the maximum likelihood estimation of the
19376 parameters of a fractionally differenced ARIMA(p,d,q) model (Haslett and
19377 Raftery, Appl.Statistics, 1989); it includes inference and basic methods.")
19378 (license license:gpl2+)))
19379
19380 (define-public r-forecast
19381 (package
19382 (name "r-forecast")
19383 (version "8.12")
19384 (source
19385 (origin
19386 (method url-fetch)
19387 (uri (cran-uri "forecast" version))
19388 (sha256
19389 (base32
19390 "1ycj5z4wd5a16nlcjy07dqm8jkih240xa02cn4wvysnnhkapyq7b"))))
19391 (properties `((upstream-name . "forecast")))
19392 (build-system r-build-system)
19393 (propagated-inputs
19394 `(("r-colorspace" ,r-colorspace)
19395 ("r-fracdiff" ,r-fracdiff)
19396 ("r-ggplot2" ,r-ggplot2)
19397 ("r-lmtest" ,r-lmtest)
19398 ("r-magrittr" ,r-magrittr)
19399 ("r-nnet" ,r-nnet)
19400 ("r-rcpp" ,r-rcpp)
19401 ("r-rcpparmadillo" ,r-rcpparmadillo)
19402 ("r-timedate" ,r-timedate)
19403 ("r-tseries" ,r-tseries)
19404 ("r-urca" ,r-urca)
19405 ("r-zoo" ,r-zoo)))
19406 (native-inputs
19407 `(("r-knitr" ,r-knitr))) ; needed for vignettes
19408 (home-page "https://pkg.robjhyndman.com/forecast/")
19409 (synopsis "Forecasting functions for time series and linear models")
19410 (description
19411 "This package provides methods and tools for displaying and analysing
19412 univariate time series forecasts including exponential smoothing via state
19413 space models and automatic ARIMA modelling.")
19414 (license license:gpl3)))
19415
19416 (define-public r-xmisc
19417 (package
19418 (name "r-xmisc")
19419 (version "0.2.1")
19420 (source
19421 (origin
19422 (method url-fetch)
19423 (uri (cran-uri "Xmisc" version))
19424 (sha256
19425 (base32
19426 "11gwlcyxhz1p50m68cnqrxmisdk99v8vrsbvyr7k67f0kvsznzs1"))))
19427 (properties `((upstream-name . "Xmisc")))
19428 (build-system r-build-system)
19429 (home-page "https://cran.r-project.org/package=Xmisc")
19430 (synopsis
19431 "Xiaobei's miscellaneous classes and functions")
19432 (description
19433 "This package provides Xiaobei's miscellaneous classes and functions,
19434 which are useful when developing R packages for @dfn{object oriented
19435 programming} (OOP) using R Reference Class.")
19436 (license license:gpl2+)))
19437
19438 (define-public r-proxyc
19439 (package
19440 (name "r-proxyc")
19441 (version "0.1.5")
19442 (source
19443 (origin
19444 (method url-fetch)
19445 (uri (cran-uri "proxyC" version))
19446 (sha256
19447 (base32
19448 "159bc42x4shm6n3rh9fc8ziv3ivq0ipmpbasrh279hhn1prc8gg6"))))
19449 (properties `((upstream-name . "proxyC")))
19450 (build-system r-build-system)
19451 (propagated-inputs
19452 `(("r-matrix" ,r-matrix)
19453 ("r-rcpp" ,r-rcpp)
19454 ("r-rcpparmadillo" ,r-rcpparmadillo)
19455 ("r-rcppparallel" ,r-rcppparallel)))
19456 (home-page "https://cran.r-project.org/package=proxyC")
19457 (synopsis "Compute proximity in large sparse matrices")
19458 (description
19459 "This package provides efficient tools to compute the proximity between
19460 rows or columns of large matrices. Functions are optimised for large sparse
19461 matrices using the Armadillo and Intel TBB libraries. Among several built-in
19462 similarity/distance measures, computation of correlation, cosine similarity
19463 and Euclidean distance is particularly fast.")
19464 (license license:gpl3)))
19465
19466 (define-public r-isocodes
19467 (package
19468 (name "r-isocodes")
19469 (version "2020.03.16")
19470 (source
19471 (origin
19472 (method url-fetch)
19473 (uri (cran-uri "ISOcodes" version))
19474 (sha256
19475 (base32
19476 "1hz1sj57qkkkrgn8slsz2n4jv1fkyp40503j9rg30lxy4gmb83hn"))))
19477 (properties `((upstream-name . "ISOcodes")))
19478 (build-system r-build-system)
19479 (home-page "https://cran.r-project.org/package=ISOcodes")
19480 (synopsis "Selected ISO codes")
19481 (description
19482 "This package provides ISO language, territory, currency, script and
19483 character codes. It provides ISO 639 language codes, ISO 3166 territory
19484 codes, ISO 4217 currency codes, ISO 15924 script codes, and the ISO 8859
19485 character codes as well as the UN M.49 area codes.")
19486 (license license:gpl2)))
19487
19488 (define-public r-stopwords
19489 (package
19490 (name "r-stopwords")
19491 (version "1.0")
19492 (source
19493 (origin
19494 (method url-fetch)
19495 (uri (cran-uri "stopwords" version))
19496 (sha256
19497 (base32
19498 "1nmi0bpd0c238g5b8ch1v034m5ng9llhs519cgxdrj3sh9fplwlv"))))
19499 (properties `((upstream-name . "stopwords")))
19500 (build-system r-build-system)
19501 (propagated-inputs `(("r-isocodes" ,r-isocodes)))
19502 (home-page "https://github.com/quanteda/stopwords")
19503 (synopsis "Multilingual stopword lists")
19504 (description
19505 "This package provides multiple sources of stopwords, for use in text
19506 analysis and natural language processing.")
19507 (license license:expat)))
19508
19509 (define-public r-spacyr
19510 (package
19511 (name "r-spacyr")
19512 (version "1.2.1")
19513 (source
19514 (origin
19515 (method url-fetch)
19516 (uri (cran-uri "spacyr" version))
19517 (sha256
19518 (base32
19519 "1b2ccgwsiqkvp7w37x8k7699c676q16vfrybkrfvyczyhki4s6nw"))))
19520 (properties `((upstream-name . "spacyr")))
19521 (build-system r-build-system)
19522 (propagated-inputs
19523 `(("r-data-table" ,r-data-table)
19524 ("r-reticulate" ,r-reticulate)))
19525 (home-page "https://spacyr.quanteda.io")
19526 (synopsis "R wrapper for the spaCy NLP library")
19527 (description
19528 "This package provides an R wrapper to the Python @dfn{natural language
19529 processing} (NLP) library @code{spaCy}, from @url{http://spacy.io}.")
19530 (license license:gpl3)))
19531
19532 (define-public r-snowballc
19533 (package
19534 (name "r-snowballc")
19535 (version "0.7.0")
19536 (source
19537 (origin
19538 (method url-fetch)
19539 (uri (cran-uri "SnowballC" version))
19540 (sha256
19541 (base32
19542 "1wwm71mp4b2mjb5985x782p6xj519dfrpd40qli7lmig6afyw3xi"))))
19543 (properties `((upstream-name . "SnowballC")))
19544 (build-system r-build-system)
19545 (home-page "https://r-forge.r-project.org/projects/r-temis/")
19546 (synopsis "Snowball stemmers based on the C libstemmer UTF-8 library")
19547 (description
19548 "This package provides an R interface to the C @code{libstemmer} library
19549 that implements Porter's word stemming algorithm for collapsing words to a
19550 common root to aid comparison of vocabulary. Currently supported languages
19551 are Danish, Dutch, English, Finnish, French, German, Hungarian, Italian,
19552 Norwegian, Portuguese, Romanian, Russian, Spanish, Swedish and Turkish.")
19553 (license license:bsd-3)))
19554
19555 (define-public r-quanteda
19556 (package
19557 (name "r-quanteda")
19558 (version "2.0.1")
19559 (source
19560 (origin
19561 (method url-fetch)
19562 (uri (cran-uri "quanteda" version))
19563 (sha256
19564 (base32
19565 "0pym6vdzqbkyj87m3pla229092xvvx4j830x67qflxzzdmc9dzhz"))))
19566 (properties `((upstream-name . "quanteda")))
19567 (build-system r-build-system)
19568 (propagated-inputs
19569 `(("r-data-table" ,r-data-table)
19570 ("r-extrafont" ,r-extrafont)
19571 ("r-fastmatch" ,r-fastmatch)
19572 ("r-ggplot2" ,r-ggplot2)
19573 ("r-ggrepel" ,r-ggrepel)
19574 ("r-jsonlite" ,r-jsonlite)
19575 ("r-magrittr" ,r-magrittr)
19576 ("r-matrix" ,r-matrix)
19577 ("r-network" ,r-network)
19578 ("r-proxyc" ,r-proxyc)
19579 ("r-rcpp" ,r-rcpp)
19580 ("r-rcpparmadillo" ,r-rcpparmadillo)
19581 ("r-rcppparallel" ,r-rcppparallel)
19582 ("r-sna" ,r-sna)
19583 ("r-snowballc" ,r-snowballc)
19584 ("r-stopwords" ,r-stopwords)
19585 ("r-stringi" ,r-stringi)
19586 ("r-xml2" ,r-xml2)
19587 ("r-yaml" ,r-yaml)))
19588 (native-inputs
19589 `(("r-knitr" ,r-knitr)))
19590 (home-page "https://quanteda.io")
19591 (synopsis "Quantitative analysis of textual data")
19592 (description
19593 "This package provides a fast, flexible, and comprehensive framework for
19594 quantitative text analysis in R. It provides functionality for corpus
19595 management, creating and manipulating tokens and ngrams, exploring keywords in
19596 context, forming and manipulating sparse matrices of documents by features and
19597 feature co-occurrences, analyzing keywords, computing feature similarities and
19598 distances, applying content dictionaries, applying supervised and unsupervised
19599 machine learning, visually representing text and text analyses, and more.")
19600 (license license:gpl3)))
19601
19602 (define-public r-topicmodels
19603 (package
19604 (name "r-topicmodels")
19605 (version "0.2-9")
19606 (source
19607 (origin
19608 (method url-fetch)
19609 (uri (cran-uri "topicmodels" version))
19610 (sha256
19611 (base32
19612 "1757r5x8bsl4dk106xg6481mvdkdz9vwg87n7rpbvdkavsvhyxs0"))))
19613 (properties `((upstream-name . "topicmodels")))
19614 (build-system r-build-system)
19615 (native-inputs
19616 `(("gsl" ,gsl)))
19617 (propagated-inputs
19618 `(("r-modeltools" ,r-modeltools)
19619 ("r-slam" ,r-slam)
19620 ("r-tm" ,r-tm)))
19621 (home-page "https://cran.r-project.org/package=topicmodels")
19622 (synopsis "Topic models")
19623 (description
19624 "This package provides an interface to the C code for @dfn{Latent
19625 Dirichlet Allocation} (LDA) models and @dfn{Correlated Topics Models} (CTM) by
19626 David M. Blei and co-authors and the C++ code for fitting LDA models using
19627 Gibbs sampling by Xuan-Hieu Phan and co-authors.")
19628 (license license:gpl2)))
19629
19630 (define-public r-stm
19631 (package
19632 (name "r-stm")
19633 (version "1.3.5")
19634 (source
19635 (origin
19636 (method url-fetch)
19637 (uri (cran-uri "stm" version))
19638 (sha256
19639 (base32
19640 "1yyfxaxqc6yq0yq68zhdnhpwpvsyp71dlmivn7zxixfmp932s6cn"))))
19641 (properties `((upstream-name . "stm")))
19642 (build-system r-build-system)
19643 (propagated-inputs
19644 `(("r-data-table" ,r-data-table)
19645 ("r-glmnet" ,r-glmnet)
19646 ("r-lda" ,r-lda)
19647 ("r-matrix" ,r-matrix)
19648 ("r-matrixstats" ,r-matrixstats)
19649 ("r-quadprog" ,r-quadprog)
19650 ("r-quanteda" ,r-quanteda)
19651 ("r-rcpp" ,r-rcpp)
19652 ("r-rcpparmadillo" ,r-rcpparmadillo)
19653 ("r-slam" ,r-slam)
19654 ("r-stringr" ,r-stringr)))
19655 (home-page "http://www.structuraltopicmodel.com/")
19656 (synopsis "Estimation of the Structural Topic Model")
19657 (description
19658 "The @dfn{Structural Topic Model} (STM) allows researchers to estimate
19659 topic models with document-level covariates. The package also includes tools
19660 for model selection, visualization, and estimation of topic-covariate
19661 regressions.")
19662 (license license:expat)))
19663
19664 (define-public r-polycor
19665 (package
19666 (name "r-polycor")
19667 (version "0.7-10")
19668 (source
19669 (origin
19670 (method url-fetch)
19671 (uri (cran-uri "polycor" version))
19672 (sha256
19673 (base32
19674 "0wzwzklflbhi8sv9m7ijwr16v9zmkk0j0v4pbcpf32f8lbn3psna"))))
19675 (properties `((upstream-name . "polycor")))
19676 (build-system r-build-system)
19677 (propagated-inputs
19678 `(("r-matrix" ,r-matrix)
19679 ("r-mvtnorm" ,r-mvtnorm)))
19680 (home-page "https://r-forge.r-project.org/projects/polycor/")
19681 (synopsis "Polychoric and polyserial correlations")
19682 (description
19683 "This package provides tools to compute polychoric and polyserial
19684 correlations by quick \"two-step\" methods or ML, optionally with standard
19685 errors; tetrachoric and biserial correlations are special cases.")
19686 (license license:gpl2+)))
19687
19688 (define-public r-msm
19689 (package
19690 (name "r-msm")
19691 (version "1.6.8")
19692 (source
19693 (origin
19694 (method url-fetch)
19695 (uri (cran-uri "msm" version))
19696 (sha256
19697 (base32
19698 "1d32y8f0vb2dfv3999liigpns788j145nrvd1xpxb9i2lsg8mwgk"))))
19699 (properties `((upstream-name . "msm")))
19700 (build-system r-build-system)
19701 (propagated-inputs
19702 `(("r-expm" ,r-expm)
19703 ("r-mvtnorm" ,r-mvtnorm)
19704 ("r-survival" ,r-survival)))
19705 (home-page "https://github.com/chjackson/msm")
19706 (synopsis "Multi-state Markov and hidden Markov models in continuous time")
19707 (description
19708 "This package provides functions for fitting continuous-time Markov and
19709 hidden Markov multi-state models to longitudinal data. It was designed for
19710 processes observed at arbitrary times in continuous time (panel data) but some
19711 other observation schemes are supported. Both Markov transition rates and the
19712 hidden Markov output process can be modelled in terms of covariates, which may
19713 be constant or piecewise-constant in time.")
19714 (license license:gpl2+)))
19715
19716 (define-public r-ltm
19717 (package
19718 (name "r-ltm")
19719 (version "1.1-1")
19720 (source
19721 (origin
19722 (method url-fetch)
19723 (uri (cran-uri "ltm" version))
19724 (sha256
19725 (base32
19726 "1qrgzwx5l58qf5rfp1knxc84r0g943q5sdr3ky74zzwpnmrf2vf7"))))
19727 (properties `((upstream-name . "ltm")))
19728 (build-system r-build-system)
19729 (propagated-inputs
19730 `(("r-mass" ,r-mass)
19731 ("r-msm" ,r-msm)
19732 ("r-polycor" ,r-polycor)))
19733 (home-page "https://github.com/drizopoulos/ltm")
19734 (synopsis "Latent trait models under IRT")
19735 (description
19736 "This is a package supporting the analysis of multivariate dichotomous
19737 and polytomous data using latent trait models under the Item Response Theory
19738 approach. It includes the Rasch, the Two-Parameter Logistic, the Birnbaum's
19739 Three-Parameter, the Graded Response, and the Generalized Partial Credit
19740 Models.")
19741 (license license:gpl2+)))
19742
19743 (define-public r-mi
19744 (package
19745 (name "r-mi")
19746 (version "1.0")
19747 (source
19748 (origin
19749 (method url-fetch)
19750 (uri (cran-uri "mi" version))
19751 (sha256
19752 (base32
19753 "1h47k5mpbvhid83277dvvj2di493bgzz9iarpyv3r30y219l7x1l"))))
19754 (properties `((upstream-name . "mi")))
19755 (build-system r-build-system)
19756 (propagated-inputs
19757 `(("r-arm" ,r-arm)
19758 ("r-matrix" ,r-matrix)))
19759 (home-page "http://www.stat.columbia.edu/~gelman/")
19760 (synopsis "Missing data imputation and model checking")
19761 (description
19762 "This package provides functions for data manipulation, imputing missing
19763 values in an approximate Bayesian framework, diagnostics of the models used to
19764 generate the imputations, confidence-building mechanisms to validate some of
19765 the assumptions of the imputation algorithm, and functions to analyze multiply
19766 imputed data sets with the appropriate degree of sampling uncertainty.")
19767 (license license:gpl2+)))
19768
19769 (define-public r-matrixcalc
19770 (package
19771 (name "r-matrixcalc")
19772 (version "1.0-3")
19773 (source
19774 (origin
19775 (method url-fetch)
19776 (uri (cran-uri "matrixcalc" version))
19777 (sha256
19778 (base32
19779 "1c4w9dhi5w98qj1wwh9bbpnfk39rhiwjbanalr8bi5nmxkpcmrhp"))))
19780 (properties `((upstream-name . "matrixcalc")))
19781 (build-system r-build-system)
19782 (home-page "https://cran.r-project.org/web/packages/matrixcalc/")
19783 (synopsis "Collection of functions for matrix calculations")
19784 (description
19785 "This package provides a collection of functions to support matrix
19786 calculations for probability, econometric and numerical analysis. There are
19787 additional functions that are comparable to APL functions which are useful for
19788 actuarial models such as pension mathematics.")
19789 (license license:gpl2+)))
19790
19791 (define-public r-sem
19792 (package
19793 (name "r-sem")
19794 (version "3.1-9")
19795 (source
19796 (origin
19797 (method url-fetch)
19798 (uri (cran-uri "sem" version))
19799 (sha256
19800 (base32
19801 "1f9c6g6pfx66gd2pappcsqh484ah6a0x4z47hpd46rah0817hcsa"))))
19802 (properties `((upstream-name . "sem")))
19803 (build-system r-build-system)
19804 (propagated-inputs
19805 `(("r-boot" ,r-boot)
19806 ("r-mass" ,r-mass)
19807 ("r-matrixcalc" ,r-matrixcalc)
19808 ("r-mi" ,r-mi)))
19809 (home-page "https://cran.r-project.org/package=sem")
19810 (synopsis "Structural equation models")
19811 (description
19812 "This package provides functions for fitting general linear structural
19813 equation models (with observed and latent variables) using the RAM approach,
19814 and for fitting structural equations in observed-variable models by two-stage
19815 least squares.")
19816 (license license:gpl2+)))
19817
19818 (define-public r-semtools
19819 (package
19820 (name "r-semtools")
19821 (version "0.5-2")
19822 (source
19823 (origin
19824 (method url-fetch)
19825 (uri (cran-uri "semTools" version))
19826 (sha256
19827 (base32
19828 "1zj841pszfsikzp82cmh463qyc4xhdrqjqcnhc2r8mcflv12irv6"))))
19829 (properties `((upstream-name . "semTools")))
19830 (build-system r-build-system)
19831 (propagated-inputs
19832 `(("r-lavaan" ,r-lavaan)))
19833 (home-page "https://github.com/simsem/semTools/wiki")
19834 (synopsis "Useful tools for structural equation modeling")
19835 (description
19836 "This package provides useful tools for structural equation modeling.")
19837 (license license:gpl2+)))
19838
19839 (define-public r-regsem
19840 (package
19841 (name "r-regsem")
19842 (version "1.5.2")
19843 (source
19844 (origin
19845 (method url-fetch)
19846 (uri (cran-uri "regsem" version))
19847 (sha256
19848 (base32
19849 "0ch057010xfsw0nqcsarzakdbiplvxaldyqlbbacspqs65ax1yk7"))))
19850 (properties `((upstream-name . "regsem")))
19851 (build-system r-build-system)
19852 (propagated-inputs
19853 `(("r-lavaan" ,r-lavaan)
19854 ("r-rcpp" ,r-rcpp)
19855 ("r-rcpparmadillo" ,r-rcpparmadillo)
19856 ("r-rsolnp" ,r-rsolnp)))
19857 (home-page "https://cran.r-project.org/package=regsem")
19858 (synopsis "Regularized structural equation modeling")
19859 (description
19860 "This package uses both ridge and lasso penalties (and extensions) to
19861 penalize specific parameters in structural equation models. The package
19862 offers additional cost functions, cross validation, and other extensions
19863 beyond traditional structural equation models. It also contains a function to
19864 perform @dfn{exploratory mediation} (XMed).")
19865 (license license:gpl2+)))
19866
19867 (define-public r-stanheaders
19868 (package
19869 (name "r-stanheaders")
19870 (version "2.19.2")
19871 (source
19872 (origin
19873 (method url-fetch)
19874 (uri (cran-uri "StanHeaders" version))
19875 (sha256
19876 (base32
19877 "0cmk0fzczx7dcywcw1dhm6gfq84qlsx77qrsk4z3bf3dhr4bznam"))))
19878 (properties `((upstream-name . "StanHeaders")))
19879 (build-system r-build-system)
19880 (inputs `(("pandoc" ,ghc-pandoc)))
19881 (native-inputs
19882 `(("gfortran" ,gfortran)
19883 ("r-knitr" ,r-knitr))) ; for vignettes
19884 (home-page "https://mc-stan.org/")
19885 (synopsis "C++ header files for Stan")
19886 (description
19887 "The C++ header files of the Stan project are provided by this package.
19888 There is a shared object containing part of the @code{CVODES} library, but it
19889 is not accessible from R. @code{r-stanheaders} is only useful for developers
19890 who want to utilize the @code{LinkingTo} directive of their package's
19891 DESCRIPTION file to build on the Stan library without incurring unnecessary
19892 dependencies.
19893
19894 The Stan project develops a probabilistic programming language that implements
19895 full or approximate Bayesian statistical inference via Markov Chain Monte
19896 Carlo or variational methods and implements (optionally penalized) maximum
19897 likelihood estimation via optimization. The Stan library includes an advanced
19898 automatic differentiation scheme, templated statistical and linear algebra
19899 functions that can handle the automatically differentiable scalar types (and
19900 doubles, ints, etc.), and a parser for the Stan language. The @code{r-rstan}
19901 package provides user-facing R functions to parse, compile, test, estimate,
19902 and analyze Stan models.")
19903 (license license:bsd-3)))
19904
19905 (define-public r-rpf
19906 (package
19907 (name "r-rpf")
19908 (version "1.0.3")
19909 (source
19910 (origin
19911 (method url-fetch)
19912 (uri (cran-uri "rpf" version))
19913 (sha256
19914 (base32
19915 "1i2kqd7nx55nn35qnw89xmnqk23x9c8xhkh736c2xg7k2ai84ybl"))))
19916 (properties `((upstream-name . "rpf")))
19917 (build-system r-build-system)
19918 (propagated-inputs
19919 `(("r-lifecycle" ,r-lifecycle)
19920 ("r-mvtnorm" ,r-mvtnorm)
19921 ("r-rcpp" ,r-rcpp)
19922 ("r-rcppeigen" ,r-rcppeigen)))
19923 (home-page "https://github.com/jpritikin/rpf")
19924 (synopsis "Response probability functions")
19925 (description
19926 "The purpose of this package is to factor out logic and math common to
19927 Item Factor Analysis fitting, diagnostics, and analysis. It is envisioned as
19928 core support code suitable for more specialized IRT packages to build upon.
19929 Complete access to optimized C functions is made available with
19930 @code{R_RegisterCCallable()}.")
19931 (license license:gpl3+)))
19932
19933 (define-public r-openmx
19934 (package
19935 (name "r-openmx")
19936 (version "2.17.3")
19937 (source
19938 (origin
19939 (method url-fetch)
19940 (uri (cran-uri "OpenMx" version))
19941 (sha256
19942 (base32
19943 "1s2pcg281ag3qz2wz8yi826f2d3kj3qg916js7zz0nsrljcyv5bc"))))
19944 (properties `((upstream-name . "OpenMx")))
19945 (build-system r-build-system)
19946 (propagated-inputs
19947 `(("r-bh" ,r-bh)
19948 ("r-digest" ,r-digest)
19949 ("r-mass" ,r-mass)
19950 ("r-matrix" ,r-matrix)
19951 ("r-rcpp" ,r-rcpp)
19952 ("r-rcppeigen" ,r-rcppeigen)
19953 ("r-rpf" ,r-rpf)
19954 ("r-stanheaders" ,r-stanheaders)))
19955 (native-inputs `(("gfortran" ,gfortran)))
19956 (home-page "http://openmx.ssri.psu.edu")
19957 (synopsis "Extended structural equation modelling")
19958 (description
19959 "This package allows for the estimation of a wide variety of advanced
19960 multivariate statistical models. It consists of a library of functions and
19961 optimizers that allow you to quickly and flexibly define an SEM model and
19962 estimate parameters given observed data.")
19963 (license license:asl2.0)))
19964
19965 (define-public r-kutils
19966 (package
19967 (name "r-kutils")
19968 (version "1.69")
19969 (source
19970 (origin
19971 (method url-fetch)
19972 (uri (cran-uri "kutils" version))
19973 (sha256
19974 (base32
19975 "12pg26a85h0jxlfcyai68dbh4bq1gnq8v1ngi8k9qvafbrpc6gx8"))))
19976 (properties `((upstream-name . "kutils")))
19977 (build-system r-build-system)
19978 (propagated-inputs
19979 `(("r-foreign" ,r-foreign)
19980 ("r-lavaan" ,r-lavaan)
19981 ("r-openxlsx" ,r-openxlsx)
19982 ("r-plyr" ,r-plyr)
19983 ("r-runit" ,r-runit)
19984 ("r-xtable" ,r-xtable)))
19985 (home-page "https://cran.r-project.org/package=kutils")
19986 (synopsis "Project management tools")
19987 (description
19988 "This package provides tools for data importation, recoding, and
19989 inspection. There are functions to create new project folders, R code
19990 templates, create uniquely named output directories, and to quickly obtain a
19991 visual summary for each variable in a data frame. The main feature here is
19992 the systematic implementation of the \"variable key\" framework for data
19993 importation and recoding.")
19994 (license license:gpl2)))
19995
19996 (define-public r-rockchalk
19997 (package
19998 (name "r-rockchalk")
19999 (version "1.8.144")
20000 (source
20001 (origin
20002 (method url-fetch)
20003 (uri (cran-uri "rockchalk" version))
20004 (sha256
20005 (base32
20006 "07dp1n155b9gfvk8l30h6bhjbhbylsjxfzns08mryn4mxj3nqpnb"))))
20007 (properties `((upstream-name . "rockchalk")))
20008 (build-system r-build-system)
20009 (propagated-inputs
20010 `(("r-cardata" ,r-cardata)
20011 ("r-kutils" ,r-kutils)
20012 ("r-lme4" ,r-lme4)
20013 ("r-mass" ,r-mass)))
20014 (home-page "https://cran.r-project.org/package=rockchalk")
20015 (synopsis "Regression estimation and presentation")
20016 (description
20017 "This package provides a collection of functions for interpretation and
20018 presentation of regression analysis. These functions are used to produce the
20019 statistics lectures in @url{http://pj.freefaculty.org/guides}. The package
20020 includes regression diagnostics, regression tables, and plots of interactions
20021 and \"moderator\" variables. The emphasis is on \"mean-centered\" and
20022 \"residual-centered\" predictors. The vignette @code{rockchalk} offers a
20023 fairly comprehensive overview.")
20024 (license license:gpl3+)))
20025
20026 (define-public r-lisreltor
20027 (package
20028 (name "r-lisreltor")
20029 (version "0.1.4")
20030 (source
20031 (origin
20032 (method url-fetch)
20033 (uri (cran-uri "lisrelToR" version))
20034 (sha256
20035 (base32
20036 "0zicq0z3hhixan1p1apybnf3v5s6v6ysll4pcz8ivygwr2swv3p5"))))
20037 (properties `((upstream-name . "lisrelToR")))
20038 (build-system r-build-system)
20039 (home-page "https://cran.r-project.org/package=lisrelToR")
20040 (synopsis "Import output from LISREL into R")
20041 (description
20042 "This is an unofficial package aimed at automating the import of LISREL
20043 output in R.")
20044 (license license:gpl2)))
20045
20046 (define-public r-bdgraph
20047 (package
20048 (name "r-bdgraph")
20049 (version "2.62")
20050 (source
20051 (origin
20052 (method url-fetch)
20053 (uri (cran-uri "BDgraph" version))
20054 (sha256
20055 (base32
20056 "1b1vfar940swvn3pcil848qsp8ji50fjjll8jjzp6y2adx0f8pby"))))
20057 (properties `((upstream-name . "BDgraph")))
20058 (build-system r-build-system)
20059 (propagated-inputs
20060 `(("r-igraph" ,r-igraph)))
20061 (home-page "https://www.uva.nl/profile/a.mohammadi")
20062 (synopsis "Bayesian structure learning in graphical models")
20063 (description
20064 "This package provides statistical tools for Bayesian structure learning
20065 in undirected graphical models for continuous, discrete, and mixed data. It
20066 uses a trans-dimensional @dfn{Markov Chain Monte Carlo} (MCMC) approach based
20067 on a continuous-time birth-death process.")
20068 (license license:gpl2+)))
20069
20070 (define-public r-d3network
20071 (package
20072 (name "r-d3network")
20073 (version "0.5.2.1")
20074 (source
20075 (origin
20076 (method url-fetch)
20077 (uri (cran-uri "d3Network" version))
20078 (sha256
20079 (base32
20080 "1gh979z9wksyxxxdzlfzibn0ysvf6h1ij7vwpd55fvbwr308syaw"))))
20081 (properties `((upstream-name . "d3Network")))
20082 (build-system r-build-system)
20083 (propagated-inputs
20084 `(("r-plyr" ,r-plyr)
20085 ("r-rjson" ,r-rjson)
20086 ("r-whisker" ,r-whisker)))
20087 (home-page "http://christophergandrud.github.io/d3Network/")
20088 (synopsis "Create D3 JavaScript network, tree, dendrogram, and Sankey graphs")
20089 (description
20090 "This package is intended to make it easy to create D3 JavaScript
20091 network, tree, dendrogram, and Sankey graphs from R using data frames.")
20092 (license license:gpl3+)))
20093
20094 (define-public r-qgraph
20095 (package
20096 (name "r-qgraph")
20097 (version "1.6.5")
20098 (source
20099 (origin
20100 (method url-fetch)
20101 (uri (cran-uri "qgraph" version))
20102 (sha256
20103 (base32
20104 "0pwys9irxvp0ap158drplyypkplbmwqinv0fmlsblk7q875cr592"))))
20105 (properties `((upstream-name . "qgraph")))
20106 (build-system r-build-system)
20107 (propagated-inputs
20108 `(("r-abind" ,r-abind)
20109 ("r-bdgraph" ,r-bdgraph)
20110 ("r-colorspace" ,r-colorspace)
20111 ("r-corpcor" ,r-corpcor)
20112 ("r-d3network" ,r-d3network)
20113 ("r-dplyr" ,r-dplyr)
20114 ("r-fdrtool" ,r-fdrtool)
20115 ("r-ggplot2" ,r-ggplot2)
20116 ("r-ggraph" ,r-ggraph)
20117 ("r-glasso" ,r-glasso)
20118 ("r-gtools" ,r-gtools)
20119 ("r-hmisc" ,r-hmisc)
20120 ("r-huge" ,r-huge)
20121 ("r-igraph" ,r-igraph)
20122 ("r-jpeg" ,r-jpeg)
20123 ("r-lavaan" ,r-lavaan)
20124 ("r-matrix" ,r-matrix)
20125 ("r-pbapply" ,r-pbapply)
20126 ("r-plyr" ,r-plyr)
20127 ("r-png" ,r-png)
20128 ("r-psych" ,r-psych)
20129 ("r-rcpp" ,r-rcpp)
20130 ("r-reshape2" ,r-reshape2)
20131 ("r-tidygraph" ,r-tidygraph)))
20132 (home-page "http://sachaepskamp.com/qgraph/")
20133 (synopsis "Weighted network visualization and analysis")
20134 (description
20135 "This package implements tools for weighted network visualization and
20136 analysis, as well as Gaussian graphical model computation. It contains graph
20137 plotting methods, and tools for psychometric data visualization and graphical
20138 model estimation. See Epskamp et al. (2012)
20139 @url{doi:10.18637/jss.v048.i04}.")
20140 (license license:gpl2)))
20141
20142 (define-public r-semplot
20143 (package
20144 (name "r-semplot")
20145 (version "1.1.2")
20146 (source
20147 (origin
20148 (method url-fetch)
20149 (uri (cran-uri "semPlot" version))
20150 (sha256
20151 (base32
20152 "0l1v9yi1pv59iwfknw4dh9qskk5y8r347jq1vq13gnfd3bmd71xr"))))
20153 (properties `((upstream-name . "semPlot")))
20154 (build-system r-build-system)
20155 (propagated-inputs
20156 `(("r-colorspace" ,r-colorspace)
20157 ("r-corpcor" ,r-corpcor)
20158 ("r-igraph" ,r-igraph)
20159 ("r-lavaan" ,r-lavaan)
20160 ("r-lisreltor" ,r-lisreltor)
20161 ("r-openmx" ,r-openmx)
20162 ("r-plyr" ,r-plyr)
20163 ("r-qgraph" ,r-qgraph)
20164 ("r-regsem" ,r-regsem)
20165 ("r-rockchalk" ,r-rockchalk)
20166 ("r-sem" ,r-sem)
20167 ("r-xml" ,r-xml)))
20168 (home-page "https://github.com/SachaEpskamp/semPlot")
20169 (synopsis "Unified visualizations of structural equation models")
20170 (description
20171 "Structural equation modeling (SEM) has a long history of representing
20172 models graphically as path diagrams. The semPlot package for R fills the gap
20173 between advanced, but time-consuming, graphical software and the limited
20174 graphics produced automatically by SEM software. In addition, semPlot offers
20175 more functionality than drawing path diagrams: it can act as a common ground
20176 for importing SEM results into R. Any result usable as input to semPlot can
20177 also be represented in any of the three popular SEM frame-works, as well as
20178 translated to input syntax for the R packages @code{sem} and @code{lavaan}.")
20179 (license license:gpl2)))
20180
20181 (define-public r-cdm
20182 (package
20183 (name "r-cdm")
20184 (version "7.5-15")
20185 (source
20186 (origin
20187 (method url-fetch)
20188 (uri (cran-uri "CDM" version))
20189 (sha256
20190 (base32
20191 "159ny2dz0rf1r3k1mqlfwambffc8rx425sggf5bn51nybpzanq3l"))))
20192 (properties `((upstream-name . "CDM")))
20193 (build-system r-build-system)
20194 (propagated-inputs
20195 `(("r-mvtnorm" ,r-mvtnorm)
20196 ("r-polycor" ,r-polycor)
20197 ("r-rcpp" ,r-rcpp)
20198 ("r-rcpparmadillo" ,r-rcpparmadillo)))
20199 (home-page
20200 "https://github.com/alexanderrobitzsch/CDM")
20201 (synopsis "Cognitive diagnosis modeling")
20202 (description
20203 "This package provides functions for cognitive diagnosis modeling and
20204 multidimensional item response modeling for dichotomous and polytomous item
20205 responses. It enables the estimation of the DINA and DINO model, the multiple
20206 group (polytomous) GDINA model, the multiple choice DINA model, the general
20207 diagnostic model (GDM), the structured latent class model (SLCA), and
20208 regularized latent class analysis. See George, Robitzsch, Kiefer, Gross, and
20209 Uenlue (2017) @url{doi:10.18637/jss.v074.i02} for further details on
20210 estimation and the package structure. For tutorials on how to use the CDM
20211 package see George and Robitzsch (2015, @url{doi:10.20982/tqmp.11.3.p189}) as
20212 well as Ravand and Robitzsch (2015).")
20213 (license license:gpl2+)))
20214
20215 (define-public r-tam
20216 (package
20217 (name "r-tam")
20218 (version "3.4-26")
20219 (source
20220 (origin
20221 (method url-fetch)
20222 (uri (cran-uri "TAM" version))
20223 (sha256
20224 (base32
20225 "111d7qkxhwh1lfvldyh9d61pdb5vb6x8lr8n9h95ssvw07vjqvk9"))))
20226 (properties `((upstream-name . "TAM")))
20227 (build-system r-build-system)
20228 (propagated-inputs
20229 `(("r-cdm" ,r-cdm)
20230 ("r-rcpp" ,r-rcpp)
20231 ("r-rcpparmadillo" ,r-rcpparmadillo)))
20232 (home-page "http://www.edmeasurementsurveys.com/TAM/Tutorials/")
20233 (synopsis "Test analysis modules")
20234 (description
20235 "This package includes tools for marginal maximum likelihood estimation
20236 and joint maximum likelihood estimation for unidimensional and
20237 multidimensional item response models. The package functionality covers the
20238 Rasch model, 2PL model, 3PL model, generalized partial credit model,
20239 multi-faceted Rasch model, nominal item response model, structured latent
20240 class model, mixture distribution IRT models, and located latent class models.
20241 Latent regression models and plausible value imputation are also supported.")
20242 (license license:gpl2+)))
20243
20244 (define-public r-erm
20245 (package
20246 (name "r-erm")
20247 (version "1.0-1")
20248 (source
20249 (origin
20250 (method url-fetch)
20251 (uri (cran-uri "eRm" version))
20252 (sha256
20253 (base32
20254 "0njqzznnhnkvalmhiq5yq1w7gwp2myki5cv61w42ydvd27hdyyg9"))))
20255 (properties `((upstream-name . "eRm")))
20256 (build-system r-build-system)
20257 (propagated-inputs
20258 `(("r-colorspace" ,r-colorspace)
20259 ("r-lattice" ,r-lattice)
20260 ("r-mass" ,r-mass)
20261 ("r-matrix" ,r-matrix)
20262 ("r-psych" ,r-psych)))
20263 (native-inputs `(("gfortran" ,gfortran)))
20264 (home-page "https://cran.r-project.org/package=eRm")
20265 (synopsis "Extended Rasch modeling")
20266 (description
20267 "This package provides tools to fit @dfn{Rasch models} (RM), @dfn{linear
20268 logistic test models} (LLTM), @dfn{rating scale model} (RSM), @dfn{linear
20269 rating scale models} (LRSM), @dfn{partial credit models} (PCM), and
20270 @dfn{linear partial credit models} (LPCM). Missing values are allowed in the
20271 data matrix. Additional features are the ML estimation of the person
20272 parameters, Andersen's LR-test, item-specific Wald test, Martin-Loef-Test,
20273 nonparametric Monte-Carlo Tests, itemfit and personfit statistics including
20274 infit and outfit measures, ICC and other plots, automated stepwise item
20275 elimination, and a simulation module for various binary data matrices.")
20276 (license license:gpl3)))
20277
20278 (define-public r-irtoys
20279 (package
20280 (name "r-irtoys")
20281 (version "0.2.1")
20282 (source
20283 (origin
20284 (method url-fetch)
20285 (uri (cran-uri "irtoys" version))
20286 (sha256
20287 (base32
20288 "0h6iiaxikhbxhbyksbjnb09qdxinlkwr2v9yzs5wslbni14paq5q"))))
20289 (properties `((upstream-name . "irtoys")))
20290 (build-system r-build-system)
20291 (propagated-inputs
20292 `(("r-ltm" ,r-ltm)
20293 ("r-sm" ,r-sm)))
20294 (home-page "https://cran.r-project.org/package=irtoys")
20295 (synopsis "Collection of functions related to Item Response Theory (IRT)")
20296 (description
20297 "This package provides a collection of functions useful in learning and
20298 practicing @dfn{Item Response Theory} (IRT), which can be combined into larger
20299 programs. It provides basic CTT analysis, a simple common interface to the
20300 estimation of item parameters in IRT models for binary responses with three
20301 different programs (ICL, BILOG-MG, and ltm), ability estimation (MLE, BME,
20302 EAP, WLE, plausible values), item and person fit statistics, scaling
20303 methods (MM, MS, Stocking-Lord, and the complete Hebaera method), and a rich
20304 array of parametric and non-parametric (kernel) plots. It estimates and plots
20305 Haberman's interaction model when all items are dichotomously scored.")
20306 (license license:gpl2+)))
20307
20308 (define-public r-iheatmapr
20309 (package
20310 (name "r-iheatmapr")
20311 (version "0.4.12")
20312 (source
20313 (origin
20314 (method url-fetch)
20315 (uri (cran-uri "iheatmapr" version))
20316 (sha256
20317 (base32
20318 "0s479j9l35xiss599vablxgvg6i2j9zq9sxphsq4vdk3bafg84bw"))))
20319 (properties `((upstream-name . "iheatmapr")))
20320 (build-system r-build-system)
20321 (propagated-inputs
20322 `(("r-fastcluster" ,r-fastcluster)
20323 ("r-ggdendro" ,r-ggdendro)
20324 ("r-htmlwidgets" ,r-htmlwidgets)
20325 ("r-jsonlite" ,r-jsonlite)
20326 ("r-knitr" ,r-knitr)
20327 ("r-magrittr" ,r-magrittr)
20328 ("r-plyr" ,r-plyr)
20329 ("r-rcolorbrewer" ,r-rcolorbrewer)
20330 ("r-s4vectors" ,r-s4vectors)
20331 ("r-scales" ,r-scales)))
20332 (home-page "https://docs.ropensci.org/iheatmapr")
20333 (synopsis "Interactive, Complex Heatmaps")
20334 (description
20335 "iheatmapr is an R package for building complex, interactive heatmaps
20336 using modular building blocks. \"Complex\" heatmaps are heatmaps in which
20337 subplots along the rows or columns of the main heatmap add more information
20338 about each row or column. For example, a one column additional heatmap may
20339 indicate what group a particular row or column belongs to. Complex heatmaps
20340 may also include multiple side by side heatmaps which show different types of
20341 data for the same conditions. Interactivity can improve complex heatmaps by
20342 providing tooltips with information about each cell and enabling zooming into
20343 interesting features. iheatmapr uses the plotly library for interactivity.")
20344 (license license:expat)))
20345
20346 (define-public r-packrat
20347 (package
20348 (name "r-packrat")
20349 (version "0.5.0")
20350 (source
20351 (origin
20352 (method url-fetch)
20353 (uri (cran-uri "packrat" version))
20354 (sha256
20355 (base32
20356 "1xy5dd2hrpqa07jfl4s7dsrya05mf36ms74j833scdz0zf89586n"))))
20357 (properties `((upstream-name . "packrat")))
20358 (build-system r-build-system)
20359 (home-page "https://github.com/rstudio/packrat/")
20360 (synopsis "Dependency management R projects")
20361 (description
20362 "This package provides a dependency manager for R projects that allows
20363 you to manage the R packages your project depends on in an isolated, portable,
20364 and reproducible way.")
20365 (license license:gpl2)))
20366
20367 (define-public r-rsconnect
20368 (package
20369 (name "r-rsconnect")
20370 (version "0.8.16")
20371 (source
20372 (origin
20373 (method url-fetch)
20374 (uri (cran-uri "rsconnect" version))
20375 (sha256
20376 (base32
20377 "05ii0p0p7xpf8z0c1594s5q7wpwcs7lmlddrd67s5p2ka5m8qwiz"))))
20378 (properties `((upstream-name . "rsconnect")))
20379 (build-system r-build-system)
20380 (propagated-inputs
20381 `(("r-curl" ,r-curl)
20382 ("r-digest" ,r-digest)
20383 ("r-jsonlite" ,r-jsonlite)
20384 ("r-openssl" ,r-openssl)
20385 ("r-packrat" ,r-packrat)
20386 ("r-rstudioapi" ,r-rstudioapi)
20387 ("r-yaml" ,r-yaml)))
20388 (home-page "https://github.com/rstudio/rsconnect")
20389 (synopsis "Deployment interface for R Markdown documents and Shiny applications")
20390 (description
20391 "This package provides a programmatic deployment interface for RPubs,
20392 shinyapps.io, and RStudio Connect. Supported content types include R Markdown
20393 documents, Shiny applications, Plumber APIs, plots, and static web content.")
20394 (license license:gpl2)))
20395
20396 ;; This package includes minified JavaScript files. When upgrading please
20397 ;; check that there are no new minified JavaScript files.
20398 (define-public r-dygraphs
20399 (package
20400 (name "r-dygraphs")
20401 (version "1.1.1.6")
20402 (source
20403 (origin
20404 (method url-fetch)
20405 (uri (cran-uri "dygraphs" version))
20406 (sha256
20407 (base32
20408 "022j007mzfa9k2n31yg4aizcsf571vv3jip092h23rqj03rk3ly3"))))
20409 (properties `((upstream-name . "dygraphs")))
20410 (build-system r-build-system)
20411 (arguments
20412 `(#:modules ((guix build utils)
20413 (guix build r-build-system)
20414 (srfi srfi-1)
20415 (ice-9 popen))
20416 #:phases
20417 (modify-phases %standard-phases
20418 (add-after 'unpack 'process-javascript
20419 (lambda* (#:key inputs #:allow-other-keys)
20420 (with-directory-excursion "inst/htmlwidgets/lib/"
20421 (call-with-values
20422 (lambda ()
20423 (unzip2
20424 `(("dygraphs/dygraph-combined-dev.js"
20425 "dygraph-combined.js")
20426 (,(assoc-ref inputs "js-jquery")
20427 "jquery/jquery.min.js")
20428 (,(assoc-ref inputs "js-fquarter")
20429 "fquarter/moment-fquarter.min.js"))))
20430 (lambda (sources targets)
20431 (for-each (lambda (source target)
20432 (format #t "Processing ~a --> ~a~%"
20433 source target)
20434 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
20435 (call-with-output-file target
20436 (lambda (port)
20437 (dump-port minified port)))))
20438 sources targets))))
20439 #t)))))
20440 (native-inputs
20441 `(("uglify-js" ,uglify-js)
20442 ;; They actually use version 1.11.1, but this more recent version
20443 ;; should be just fine.
20444 ("js-jquery"
20445 ,(origin
20446 (method url-fetch)
20447 (uri "https://code.jquery.com/jquery-1.12.4.js")
20448 (sha256
20449 (base32
20450 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
20451 ("js-fquarter"
20452 ,(origin
20453 (method url-fetch)
20454 (uri (string-append "https://raw.githubusercontent.com/robgallen/"
20455 "moment-fquarter/1.0.1/moment-fquarter.js"))
20456 (sha256
20457 (base32
20458 "01mdnsaibm9jy2f1qpbn692hpv309lhj5si9nagib4dawmrkffij"))))))
20459 (propagated-inputs
20460 `(("r-htmltools" ,r-htmltools)
20461 ("r-htmlwidgets" ,r-htmlwidgets)
20462 ("r-magrittr" ,r-magrittr)
20463 ("r-xts" ,r-xts)
20464 ("r-zoo" ,r-zoo)))
20465 (home-page "https://github.com/rstudio/dygraphs")
20466 (synopsis "Interface to Dygraphs interactive time series charting library")
20467 (description
20468 "This package provides an R interface to the dygraphs JavaScript charting
20469 library (a copy of which is included in the package). It provides rich
20470 facilities for charting time-series data in R, including highly configurable
20471 series- and axis-display and interactive features like zoom/pan and
20472 series/point highlighting.")
20473 (license license:expat)))
20474
20475 (define-public r-shinystan
20476 (package
20477 (name "r-shinystan")
20478 (version "2.5.0")
20479 (source
20480 (origin
20481 (method url-fetch)
20482 (uri (cran-uri "shinystan" version))
20483 (sha256
20484 (base32
20485 "18alf5kiqw7y2l6m5nxxizwc2znsf9frxfsqhvgcad8hld9cbya5"))))
20486 (properties `((upstream-name . "shinystan")))
20487 (build-system r-build-system)
20488 (propagated-inputs
20489 `(("r-bayesplot" ,r-bayesplot)
20490 ("r-colourpicker" ,r-colourpicker)
20491 ("r-dt" ,r-dt)
20492 ("r-dygraphs" ,r-dygraphs)
20493 ("r-ggplot2" ,r-ggplot2)
20494 ("r-gridextra" ,r-gridextra)
20495 ("r-gtools" ,r-gtools)
20496 ("r-markdown" ,r-markdown)
20497 ("r-reshape2" ,r-reshape2)
20498 ("r-rsconnect" ,r-rsconnect)
20499 ("r-rstan" ,r-rstan)
20500 ("r-shiny" ,r-shiny)
20501 ("r-shinyjs" ,r-shinyjs)
20502 ("r-shinythemes" ,r-shinythemes)
20503 ("r-threejs" ,r-threejs)
20504 ("r-xtable" ,r-xtable)
20505 ("r-xts" ,r-xts)))
20506 (home-page "https://mc-stan.org/")
20507 (synopsis "Interactive visual and numerical analysis for Bayesian models")
20508 (description
20509 "This package provides a graphical user interface for interactive
20510 @dfn{Markov chain Monte Carlo} (MCMC) diagnostics and plots and tables helpful
20511 for analyzing a posterior sample. The interface is powered by the Shiny web
20512 application framework and works with the output of MCMC programs written in
20513 any programming language (and has extended functionality for Stan models fit
20514 using the @code{rstan} and @code{rstanarm} packages).")
20515 (license license:gpl3+)))
20516
20517 (define-public r-rstantools
20518 (package
20519 (name "r-rstantools")
20520 (version "2.0.0")
20521 (source
20522 (origin
20523 (method url-fetch)
20524 (uri (cran-uri "rstantools" version))
20525 (sha256
20526 (base32
20527 "1il0pn4ksbdkska5fmhvgaicvwnnc6cs08g6ags9fj1xkjiqmrsa"))))
20528 (properties `((upstream-name . "rstantools")))
20529 (build-system r-build-system)
20530 (inputs `(("pandoc" ,ghc-pandoc)))
20531 (propagated-inputs
20532 `(("r-desc" ,r-desc)
20533 ("r-rcpp" ,r-rcpp)))
20534 (home-page "https://mc-stan.org/rstantools/")
20535 (synopsis "Tools for developing R packages interfacing with Stan")
20536 (description
20537 "This package provides various tools for developers of R packages
20538 interfacing with @url{https://mc-stan.org, Stan}, including functions to set
20539 up the required package structure, S3 generics and default methods to unify
20540 function naming across Stan-based R packages, and vignettes with
20541 recommendations for developers.")
20542 (license license:gpl3+)))
20543
20544 (define-public r-loo
20545 (package
20546 (name "r-loo")
20547 (version "2.2.0")
20548 (source
20549 (origin
20550 (method url-fetch)
20551 (uri (cran-uri "loo" version))
20552 (sha256
20553 (base32
20554 "1hq1zcj76x55z9kic6cwf7mfq9pzqfbr341jbc9wp7x8ac4zcva6"))))
20555 (properties `((upstream-name . "loo")))
20556 (build-system r-build-system)
20557 (inputs
20558 `(("pandoc" ,ghc-pandoc)
20559 ("pandoc-citeproc" ,ghc-pandoc-citeproc)))
20560 (propagated-inputs
20561 `(("r-checkmate" ,r-checkmate)
20562 ("r-matrixstats" ,r-matrixstats)))
20563 (home-page "https://mc-stan.org/loo/")
20564 (synopsis "Leave-One-Out cross-validation and WAIC for Bayesian models")
20565 (description
20566 "This package provides an implementation of efficient approximate
20567 @dfn{leave-one-out} (LOO) cross-validation for Bayesian models fit using
20568 Markov chain Monte Carlo, as described in @url{doi:10.1007/s11222-016-9696-4}.
20569 The approximation uses @dfn{Pareto smoothed importance sampling} (PSIS), a new
20570 procedure for regularizing importance weights. As a byproduct of the
20571 calculations, we also obtain approximate standard errors for estimated
20572 predictive errors and for the comparison of predictive errors between models.
20573 The package also provides methods for using stacking and other model weighting
20574 techniques to average Bayesian predictive distributions.")
20575 (license license:gpl3+)))
20576
20577 (define-public r-rstan
20578 (package
20579 (name "r-rstan")
20580 (version "2.19.3")
20581 (source
20582 (origin
20583 (method url-fetch)
20584 (uri (cran-uri "rstan" version))
20585 (sha256
20586 (base32
20587 "128ndwjrhf8b1qvvqz4bl13qlm8718z9qs5ryc6gsdr3vk65s0np"))))
20588 (properties `((upstream-name . "rstan")))
20589 (build-system r-build-system)
20590 (arguments
20591 `(#:phases
20592 (modify-phases %standard-phases
20593 (add-before 'install 'set-timezone
20594 ;; This package is picky about timezones.
20595 (lambda* (#:key inputs #:allow-other-keys)
20596 (setenv "TZ" "UTC+1")
20597 (setenv "TZDIR"
20598 (string-append (assoc-ref inputs "tzdata")
20599 "/share/zoneinfo"))
20600 #t)))))
20601 (native-inputs
20602 `(("tzdata" ,tzdata)
20603 ("pandoc" ,ghc-pandoc)))
20604 (propagated-inputs
20605 `(("r-bh" ,r-bh)
20606 ("r-ggplot2" ,r-ggplot2)
20607 ("r-gridextra" ,r-gridextra)
20608 ("r-inline" ,r-inline)
20609 ("r-loo" ,r-loo)
20610 ("r-pkgbuild" ,r-pkgbuild)
20611 ("r-rcpp" ,r-rcpp)
20612 ("r-rcppeigen" ,r-rcppeigen)
20613 ("r-stanheaders" ,r-stanheaders)))
20614 (home-page "https://discourse.mc-stan.org/")
20615 (synopsis "R interface to Stan")
20616 (description
20617 "User-facing R functions are provided to parse, compile, test, estimate,
20618 and analyze Stan models by accessing the header-only Stan library provided by
20619 the StanHeaders package. The Stan project develops a probabilistic
20620 programming language that implements full Bayesian statistical inference via
20621 Markov Chain Monte Carlo, rough Bayesian inference via 'variational'
20622 approximation, and (optionally penalized) maximum likelihood estimation via
20623 optimization. In all three cases, automatic differentiation is used to
20624 quickly and accurately evaluate gradients without burdening the user with the
20625 need to derive the partial derivatives.")
20626 (license license:gpl3+)))
20627
20628 (define-public r-rstanarm
20629 (package
20630 (name "r-rstanarm")
20631 (version "2.19.3")
20632 (source
20633 (origin
20634 (method url-fetch)
20635 (uri (cran-uri "rstanarm" version))
20636 (sha256
20637 (base32
20638 "0gxjq8bdlvdd8kn3dhp12xlymdab036r7n12lzmd3xlkl4cnxq3s"))))
20639 (properties `((upstream-name . "rstanarm")))
20640 (build-system r-build-system)
20641 (inputs
20642 `(("pandoc" ,ghc-pandoc)
20643 ("pandoc-citeproc" ,ghc-pandoc-citeproc)))
20644 (propagated-inputs
20645 `(("r-bayesplot" ,r-bayesplot)
20646 ("r-bh" ,r-bh)
20647 ("r-ggplot2" ,r-ggplot2)
20648 ("r-lme4" ,r-lme4)
20649 ("r-loo" ,r-loo)
20650 ("r-matrix" ,r-matrix)
20651 ("r-nlme" ,r-nlme)
20652 ("r-rcpp" ,r-rcpp)
20653 ("r-rcppeigen" ,r-rcppeigen)
20654 ("r-rcppparallel" ,r-rcppparallel)
20655 ("r-rstan" ,r-rstan)
20656 ("r-rstantools" ,r-rstantools)
20657 ("r-shinystan" ,r-shinystan)
20658 ("r-stanheaders" ,r-stanheaders)
20659 ("r-survival" ,r-survival)))
20660 (home-page "https://mc-stan.org/rstanarm/")
20661 (synopsis "Bayesian applied regression modeling via Stan")
20662 (description
20663 "This package estimates previously compiled regression models using the
20664 @code{rstan} package, which provides the R interface to the Stan C++ library
20665 for Bayesian estimation. Users specify models via the customary R syntax with
20666 a formula and @code{data.frame} plus some additional arguments for priors.")
20667 (license license:gpl3+)))
20668
20669 (define-public r-kendall
20670 (package
20671 (name "r-kendall")
20672 (version "2.2")
20673 (source
20674 (origin
20675 (method url-fetch)
20676 (uri (cran-uri "Kendall" version))
20677 (sha256
20678 (base32
20679 "0z2yr3x2nvdm81w2imb61hxwcbmg14kfb2bxgh3wmkmv3wfjwkwn"))))
20680 (properties `((upstream-name . "Kendall")))
20681 (build-system r-build-system)
20682 (propagated-inputs
20683 `(("r-boot" ,r-boot)))
20684 (native-inputs
20685 `(("gfortran" ,gfortran)))
20686 (home-page "https://cran.r-project.org/web/packages/Kendall/")
20687 (synopsis "Kendall rank correlation and Mann-Kendall trend test")
20688 (description
20689 "This package computes the Kendall rank correlation and Mann-Kendall
20690 trend test.")
20691 (license license:gpl2+)))
20692
20693 (define-public r-zyp
20694 (package
20695 (name "r-zyp")
20696 (version "0.10-1.1")
20697 (source
20698 (origin
20699 (method url-fetch)
20700 (uri (cran-uri "zyp" version))
20701 (sha256
20702 (base32
20703 "03cxpkfbhrx1fy8l0dl9a13ghz93cqq6877wa8rig09ksdiivaw9"))))
20704 (properties `((upstream-name . "zyp")))
20705 (build-system r-build-system)
20706 (propagated-inputs
20707 `(("r-kendall" ,r-kendall)))
20708 (home-page "https://cran.r-project.org/web/packages/zyp/")
20709 (synopsis "Zhang + Yue-Pilon Trends Package")
20710 (description
20711 "This package contains an efficient implementation of Sen's slope
20712 method (Sen, 1968) plus implementation of Xuebin Zhang's (Zhang, 1999) and
20713 Yue-Pilon's (Yue, 2002) pre-whitening approaches to determining trends in
20714 climate data.")
20715 (license license:lgpl2.1)))
20716
20717 (define-public r-zvcv
20718 (package
20719 (name "r-zvcv")
20720 (version "1.0.0")
20721 (source
20722 (origin
20723 (method url-fetch)
20724 (uri (cran-uri "ZVCV" version))
20725 (sha256
20726 (base32
20727 "1npw836q2skx54843lgxvb0rfwafckjc8k8dljykm60ad3z7zak8"))))
20728 (properties `((upstream-name . "ZVCV")))
20729 (build-system r-build-system)
20730 (propagated-inputs
20731 `(("r-abind" ,r-abind)
20732 ("r-glmnet" ,r-glmnet)
20733 ("r-mvtnorm" ,r-mvtnorm)
20734 ("r-partitions" ,r-partitions)
20735 ("r-rcpp" ,r-rcpp)
20736 ("r-rcpparmadillo" ,r-rcpparmadillo)))
20737 (home-page "https://cran.r-project.org/web/packages/ZVCV/")
20738 (synopsis "Zero-Variance Control Variates")
20739 (description
20740 "@dfn{Zero-variance control variates} (ZV-CV) is a post-processing method
20741 to reduce the variance of Monte Carlo estimators of expectations using the
20742 derivatives of the log target. Once the derivatives are available, the only
20743 additional computational effort is in solving a linear regression problem.
20744 This method has been extended to higher dimensions using regularisation. This
20745 package can be used to easily perform ZV-CV or regularised ZV-CV when a set of
20746 samples, derivatives and function evaluations are available. Additional
20747 functions for applying ZV-CV to two estimators for the normalising constant of
20748 the posterior distribution in Bayesian statistics are also supplied.")
20749 (license license:gpl2+)))
20750
20751 (define-public r-ztype
20752 (package
20753 (name "r-ztype")
20754 (version "0.1.0")
20755 (source
20756 (origin
20757 (method url-fetch)
20758 (uri (cran-uri "ztype" version))
20759 (sha256
20760 (base32
20761 "0brbq2rgkl4mhjbb70kkfv47lzs66k9ppfs2klavcbripirxn5fx"))))
20762 (properties `((upstream-name . "ztype")))
20763 (build-system r-build-system)
20764 (propagated-inputs
20765 `(("r-assertthat" ,r-assertthat)
20766 ("r-dplyr" ,r-dplyr)
20767 ("r-ggplot2" ,r-ggplot2)
20768 ("r-lubridate" ,r-lubridate)
20769 ("r-magrittr" ,r-magrittr)
20770 ("r-rvest" ,r-rvest)
20771 ("r-stringr" ,r-stringr)))
20772 (home-page "https://cran.r-project.org/web/packages/ztype/")
20773 (synopsis "Run a Ztype game loaded with R functions")
20774 (description
20775 "How fast can you type R functions on your keyboard? Find out by running
20776 a @code{zty.pe} game: export R functions as instructions to type to destroy
20777 opponents' vessels.")
20778 (license license:gpl3)))
20779
20780 (define-public r-zseq
20781 (package
20782 (name "r-zseq")
20783 (version "0.2.0")
20784 (source
20785 (origin
20786 (method url-fetch)
20787 (uri (cran-uri "Zseq" version))
20788 (sha256
20789 (base32
20790 "06dndi2b1q79bmxax11bv0l5ifcz1mhpvbn90y6a6xymrgcq0ivi"))))
20791 (properties `((upstream-name . "Zseq")))
20792 (build-system r-build-system)
20793 (propagated-inputs
20794 `(("r-gmp" ,r-gmp)))
20795 (home-page "https://cran.r-project.org/web/packages/Zseq/")
20796 (synopsis "Integer sequence generator")
20797 (description
20798 "This package generates well-known integer sequences. The @code{gmp}
20799 package is adopted for computing with arbitrarily large numbers. Every
20800 function has a hyperlink to its corresponding item in the @dfn{On-Line
20801 Encyclopedia of Integer Sequences} (OEIS) in the function help page.")
20802 (license license:gpl3+)))
20803
20804 (define-public r-isoband
20805 (package
20806 (name "r-isoband")
20807 (version "0.2.0")
20808 (source
20809 (origin
20810 (method url-fetch)
20811 (uri (cran-uri "isoband" version))
20812 (sha256
20813 (base32
20814 "1r023s73qypnvpx18znr9ymylr022m90v65mz2jasn0a1kjrfcbq"))))
20815 (properties `((upstream-name . "isoband")))
20816 (build-system r-build-system)
20817 (propagated-inputs
20818 `(("r-rcpp" ,r-rcpp)
20819 ("r-testthat" ,r-testthat)))
20820 (home-page "https://github.com/wilkelab/isoband")
20821 (synopsis "Generate isolines and isobands from regularly spaced elevation grids")
20822 (description
20823 "This package provides a fast C++ implementation to generate contour
20824 lines (isolines) and contour polygons (isobands) from regularly spaced grids
20825 containing elevation data.")
20826 (license license:expat)))
20827
20828 (define-public r-ppcor
20829 (package
20830 (name "r-ppcor")
20831 (version "1.1")
20832 (source
20833 (origin
20834 (method url-fetch)
20835 (uri (cran-uri "ppcor" version))
20836 (sha256
20837 (base32
20838 "1x9b2kb8s0bp92b17gby0jwzzr3i4cf3ap9c4nq7m8fav72g0y3a"))))
20839 (properties `((upstream-name . "ppcor")))
20840 (build-system r-build-system)
20841 (propagated-inputs
20842 `(("r-mass" ,r-mass)))
20843 (home-page "https://cran.r-project.org/web/packages/ppcor/")
20844 (synopsis "Partial and semi-partial correlation")
20845 (description
20846 "This package provides users not only with a function to readily
20847 calculate the higher-order partial and semi-partial correlations but also with
20848 statistics and p-values of the correlation coefficients.")
20849 (license license:gpl2)))
20850
20851 (define-public r-hrbrthemes
20852 (package
20853 (name "r-hrbrthemes")
20854 (version "0.8.0")
20855 (source
20856 (origin
20857 (method url-fetch)
20858 (uri (cran-uri "hrbrthemes" version))
20859 (sha256
20860 (base32 "057h60b5p53dcyjyfwlgjc1ry968s9s64dw78p443w8717zk7zpc"))))
20861 (properties `((upstream-name . "hrbrthemes")))
20862 (build-system r-build-system)
20863 (propagated-inputs
20864 `(("r-extrafont" ,r-extrafont)
20865 ("r-gdtools" ,r-gdtools)
20866 ("r-ggplot2" ,r-ggplot2)
20867 ("r-htmltools" ,r-htmltools)
20868 ("r-knitr" ,r-knitr)
20869 ("r-magrittr" ,r-magrittr)
20870 ("r-rmarkdown" ,r-rmarkdown)
20871 ("r-scales" ,r-scales)))
20872 (native-inputs
20873 `(("r-knitr" ,r-knitr)))
20874 (home-page "https://github.com/hrbrmstr/hrbrthemes/")
20875 (synopsis "Additional themes, theme components and utilities for @code{ggplot2}")
20876 (description
20877 "This package provides a compilation of extra @code{ggplot2} themes,
20878 scales and utilities, including a spell check function for plot label fields
20879 and an overall emphasis on typography.")
20880 (license license:expat)))
20881
20882 (define-public r-crochet
20883 (package
20884 (name "r-crochet")
20885 (version "2.2.0")
20886 (source
20887 (origin
20888 (method url-fetch)
20889 (uri (cran-uri "crochet" version))
20890 (sha256
20891 (base32
20892 "1cbv79nyycxk6f8ldcsnn2pvgxqlnrj0qs19nhafnq2clxy863k6"))))
20893 (build-system r-build-system)
20894 (home-page "https://github.com/agrueneberg/crochet")
20895 (synopsis "Implementation Helper for Matrix-Like Types")
20896 (description
20897 "Functions to help implement the extraction / subsetting / indexing
20898 function @code{[} and replacement function @code{[<-} of custom matrix-like
20899 types (based on S3, S4, etc.), modeled as closely to the base matrix class
20900 as possible (with tests to prove it).")
20901 (license license:expat)))
20902
20903 (define-public r-boa
20904 (package
20905 (name "r-boa")
20906 (version "1.1.8-2")
20907 (source
20908 (origin
20909 (method url-fetch)
20910 (uri (cran-uri "boa" version))
20911 (sha256
20912 (base32
20913 "04lhqk5qfvaz1jk90glr2yi5vq7cdy0w8m6g2lnzk359l9y41zhp"))))
20914 (properties `((upstream-name . "boa")))
20915 (build-system r-build-system)
20916 (home-page "http://www.jstatsoft.org/v21/i11")
20917 (synopsis "Library for @dfn{Bayesian Output Analysis Program} (BOA) for MCMC")
20918 (description
20919 "This package provides a menu-driven program and library of functions for
20920 carrying out convergence diagnostics and statistical and graphical analysis of
20921 @dfn{Markov chain Monte Carlo} (MCMC) sampling output.")
20922 (license license:gpl2+)))
20923
20924 (define-public r-httpcode
20925 (package
20926 (name "r-httpcode")
20927 (version "0.2.0")
20928 (source (origin
20929 (method url-fetch)
20930 (uri (cran-uri "httpcode" version))
20931 (sha256
20932 (base32
20933 "06k853ihwzkcx4z3jzazpb03p91frqkwz18jy4fwr8j2nwyqbhgv"))))
20934 (build-system r-build-system)
20935 (home-page "https://github.com/sckott/httpcode")
20936 (synopsis "HTTP status code helper")
20937 (description "@code{httpcode} provides functionality for finding and
20938 explaining the meaning of @code{HTTP} status codes. Functions are included for
20939 searching for codes by full or partial number, by message, and to get
20940 appropriate dog and cat images for many status codes.")
20941 (license license:expat)))
20942
20943 (define-public r-latex2exp
20944 (package
20945 (name "r-latex2exp")
20946 (version "0.4.0")
20947 (source (origin
20948 (method url-fetch)
20949 (uri (cran-uri "latex2exp" version))
20950 (sha256
20951 (base32
20952 "12nbcgfmv13k6sc6m326ras9bcvy380b7rxcxphn06r3cfkby0zw"))))
20953 (build-system r-build-system)
20954 (propagated-inputs
20955 `(("r-stringr" ,r-stringr)
20956 ("r-magrittr", r-magrittr)))
20957 (home-page "https://github.com/stefano-meschiari/latex2exp/")
20958 (synopsis "Use LaTeX expressions in plots")
20959 (description "@code{latex2exp} parses and converts LaTeX math formulas to
20960 R's plotmath expressions, used to enter mathematical formulas and symbols to be
20961 rendered as text, axis labels, etc. throughout R's plotting system.")
20962 (license license:expat)))
20963
20964 (define-public r-oai
20965 (package
20966 (name "r-oai")
20967 (version "0.3.0")
20968 (source (origin
20969 (method url-fetch)
20970 (uri (cran-uri "oai" version))
20971 (sha256
20972 (base32
20973 "1ipw9bq3ra66d1ddj1rylyyd20mlcb2i7phzhywra53s1fdifq1g"))))
20974 (build-system r-build-system)
20975 (propagated-inputs
20976 `(("r-xml2" ,r-xml2)
20977 ("r-httr" ,r-httr)
20978 ("r-plyr" ,r-plyr)
20979 ("r-stringr" ,r-stringr)
20980 ("r-tibble" ,r-tibble)))
20981 (home-page "https://github.com/ropensci/oai/")
20982 (synopsis "General purpose OAI-PMH services client")
20983 (description "@code{oai} provides a general purpose client to work with
20984 any @dfn{Open Archives Initiative Protocol for 'Metadata' Harvesting} (OAI-PMH)
20985 service. Functions are provided to work with the OAI-PMH verbs:
20986 @code{GetRecord}, @code{Identify}, @code{ListIdentifiers},
20987 @code{ListMetadataFormats}, @code{ListRecords}, and @code{ListSets}.")
20988 (license license:expat)))
20989
20990 (define-public r-argon2
20991 (package
20992 (name "r-argon2")
20993 (version "0.2-0")
20994 (source
20995 (origin
20996 (method url-fetch)
20997 (uri (cran-uri "argon2" version))
20998 (sha256
20999 (base32
21000 "0kqn06rpb39jlzizjlnc5c44mfic8llrshxn7ljgmyj35lbqwxqh"))))
21001 (properties `((upstream-name . "argon2")))
21002 (build-system r-build-system)
21003 (home-page "https://github.com/wrathematics/argon2")
21004 (synopsis "Secure password hashing based on the argon2 algorithm")
21005 (description
21006 "This package provides utilities for secure password hashing via the
21007 argon2 algorithm.")
21008 (license license:bsd-2)))
21009
21010 (define-public r-getpass
21011 (package
21012 (name "r-getpass")
21013 (version "0.2-2")
21014 (source
21015 (origin
21016 (method url-fetch)
21017 (uri (cran-uri "getPass" version))
21018 (sha256
21019 (base32
21020 "03ydafhh0sk3rcnpr3paajyji64x2ddp6p814p9mvbmyrblcgzcc"))))
21021 (properties `((upstream-name . "getPass")))
21022 (build-system r-build-system)
21023 (propagated-inputs
21024 `(("r-rstudioapi" ,r-rstudioapi)))
21025 (home-page "https://github.com/wrathematics/getPass")
21026 (synopsis "Masked user input")
21027 (description
21028 "This package provides a micro-package for reading \"passwords\", i.e.
21029 reading user input with masking, so that the input is not displayed as it is
21030 typed. Currently, RStudio, the command line (every OS), and any platform
21031 where tcltk is present are supported.")
21032 (license license:bsd-2)))
21033
21034 (define-public r-remoter
21035 (package
21036 (name "r-remoter")
21037 (version "0.4-0")
21038 (source
21039 (origin
21040 (method url-fetch)
21041 (uri (cran-uri "remoter" version))
21042 (sha256
21043 (base32
21044 "1a7m63l8phv5jnazvdqdrqkaqjwqzaac5y4jm2jn0ypy4n8jvkfl"))))
21045 (properties `((upstream-name . "remoter")))
21046 (build-system r-build-system)
21047 (propagated-inputs
21048 `(("r-argon2" ,r-argon2)
21049 ("r-getpass" ,r-getpass)
21050 ("r-pbdzmq" ,r-pbdzmq)
21051 ("r-png" ,r-png)))
21052 (home-page "https://github.com/RBigData/remoter")
21053 (synopsis "Control a remote R session from a local one")
21054 (description
21055 "This package provides a set of utilities for client/server computing
21056 with R, controlling a remote R session (the server) from a local one (the
21057 client).")
21058 (license license:bsd-2)))
21059
21060 (define-public r-asd
21061 (package
21062 (name "r-asd")
21063 (version "2.2")
21064 (source
21065 (origin
21066 (method url-fetch)
21067 (uri (cran-uri "asd" version))
21068 (sha256
21069 (base32
21070 "0p3r4qjam3sl3rpcilb0pgx4xx3ly71xqnvkv31vzjs885lgxz4l"))))
21071 (properties `((upstream-name . "asd")))
21072 (build-system r-build-system)
21073 (propagated-inputs
21074 `(("r-mvtnorm" ,r-mvtnorm)))
21075 (home-page "https://cran.r-project.org/web/packages/asd")
21076 (synopsis "Simulations for Adaptive Seamless Designs")
21077 (description
21078 "This package provdes means to run simulations for adaptive seamless
21079 designs with and without early outcomes for treatment selection and
21080 subpopulation type designs.")
21081 (license license:gpl3)))