gnu: webkitgtk: Update to 2.28.2.
[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, 2019 Brett Gilio <brettg@gnu.org>
18 ;;; Copyright © 2019 Nicolò Balzarotti <anothersms@gmail.com>
19 ;;; Copyright © 2019 Wiktor Żelazny <wzelazny@vurv.cz>
20 ;;; Copyright © 2020 Todor Kondić <tk.code@protonmail.com>
21 ;;; Copyright © 2020 Danjela Lura <danielaluraa@gmail.com>
22 ;;; Copyright © 2020 Naga Malleswari <nagamalli@riseup.net>
23 ;;; Copyright © 2020 Eric Brown <ecbrown@ericcbrown.com>
24 ;;;
25 ;;; This file is part of GNU Guix.
26 ;;;
27 ;;; GNU Guix is free software; you can redistribute it and/or modify it
28 ;;; under the terms of the GNU General Public License as published by
29 ;;; the Free Software Foundation; either version 3 of the License, or (at
30 ;;; your option) any later version.
31 ;;;
32 ;;; GNU Guix is distributed in the hope that it will be useful, but
33 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
34 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35 ;;; GNU General Public License for more details.
36 ;;;
37 ;;; You should have received a copy of the GNU General Public License
38 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
39
40 (define-module (gnu packages cran)
41 #:use-module ((guix licenses) #:prefix license:)
42 #:use-module (guix packages)
43 #:use-module (guix download)
44 #:use-module (guix git-download)
45 #:use-module (guix utils)
46 #:use-module (guix build-system r)
47 #:use-module (gnu packages algebra)
48 #:use-module (gnu packages autotools)
49 #:use-module (gnu packages base)
50 #:use-module (gnu packages bioinformatics)
51 #:use-module (gnu packages c)
52 #:use-module (gnu packages compression)
53 #:use-module (gnu packages curl)
54 #:use-module (gnu packages databases)
55 #:use-module (gnu packages fontutils)
56 #:use-module (gnu packages gcc)
57 #:use-module (gnu packages geo)
58 #:use-module (gnu packages ghostscript)
59 #:use-module (gnu packages gl)
60 #:use-module (gnu packages gnome)
61 #:use-module (gnu packages graph)
62 #:use-module (gnu packages gtk)
63 #:use-module (gnu packages haskell-xyz)
64 #:use-module (gnu packages icu4c)
65 #:use-module (gnu packages image)
66 #:use-module (gnu packages imagemagick)
67 #:use-module (gnu packages java)
68 #:use-module (gnu packages javascript)
69 #:use-module (gnu packages lisp-xyz)
70 #:use-module (gnu packages machine-learning)
71 #:use-module (gnu packages maths)
72 #:use-module (gnu packages mpi)
73 #:use-module (gnu packages multiprecision)
74 #:use-module (gnu packages networking)
75 #:use-module (gnu packages pcre)
76 #:use-module (gnu packages perl)
77 #:use-module (gnu packages pkg-config)
78 #:use-module (gnu packages python)
79 #:use-module (gnu packages python-xyz)
80 #:use-module (gnu packages statistics)
81 #:use-module (gnu packages tcl)
82 #:use-module (gnu packages tls)
83 #:use-module (gnu packages web)
84 #:use-module (gnu packages xorg))
85
86 (define-public r-clipr
87 (package
88 (name "r-clipr")
89 (version "0.7.0")
90 (source
91 (origin
92 (method url-fetch)
93 (uri (cran-uri "clipr" version))
94 (sha256
95 (base32
96 "1qn2p13d0c1bpqss6mv9hk60980rzhznfqpyaf5x0fy65svy9903"))))
97 (build-system r-build-system)
98 (home-page "https://github.com/mdlincoln/clipr")
99 (synopsis "Read and write from the system clipboard")
100 (description
101 "This package provides simple utility functions to read from and write to
102 the system clipboards.")
103 (license license:gpl3)))
104
105 (define-public r-oenb
106 (package
107 (name "r-oenb")
108 (version "0.0.1")
109 (source
110 (origin
111 (method url-fetch)
112 (uri (cran-uri "oenb" version))
113 (sha256
114 (base32
115 "1x1jlqp6r27c4gb7wafzpmh5rq6yq61a2d395r5lsmv2g5jb4biz"))))
116 (properties `((upstream-name . "oenb")))
117 (build-system r-build-system)
118 (propagated-inputs
119 `(("r-dplyr" ,r-dplyr)
120 ("r-xml" ,r-xml)))
121 (native-inputs `(("r-knitr" ,r-knitr)))
122 (home-page "https://github.com/franzmohr/oenb")
123 (synopsis "Tools for the OeNB Data Web Service")
124 (description
125 "Tools to access data from the data web service of the
126 @acronym{OeNB, Oesterreichische Nationalbank},
127 @url{https://www.oenb.at/en/Statistics/User-Defined-Tables/webservice.html}.")
128 (license license:gpl2+)))
129
130 (define-public r-scales
131 (package
132 (name "r-scales")
133 (version "1.1.0")
134 (source
135 (origin
136 (method url-fetch)
137 (uri (cran-uri "scales" version))
138 (sha256
139 (base32 "00rdbfj5mwc3kr8pskidn3n2zkp4ms6cx36xazz54pxw3pysdr0y"))))
140 (build-system r-build-system)
141 (propagated-inputs
142 `(("r-farver" ,r-farver)
143 ("r-labeling" ,r-labeling)
144 ("r-lifecycle" ,r-lifecycle)
145 ("r-munsell" ,r-munsell)
146 ("r-rcolorbrewer" ,r-rcolorbrewer)
147 ("r-r6" ,r-r6)
148 ("r-viridislite" ,r-viridislite)))
149 (home-page "https://github.com/hadley/scales")
150 (synopsis "Scale functions for visualization")
151 (description
152 "This package provides graphical scales that map data to aesthetics, and
153 provides methods for automatically determining breaks and labels for axes and
154 legends.")
155 (license license:expat)))
156
157 (define-public r-pheatmap
158 (package
159 (name "r-pheatmap")
160 (version "1.0.12")
161 (source
162 (origin
163 (method url-fetch)
164 (uri (cran-uri "pheatmap" version))
165 (sha256
166 (base32
167 "1hdh74az3vyzz6dqa311rhxdm74n46lyr03p862kn80p0kp9d7ap"))))
168 (build-system r-build-system)
169 (propagated-inputs
170 `(("r-gtable" ,r-gtable)
171 ("r-rcolorbrewer" ,r-rcolorbrewer)
172 ("r-scales" ,r-scales)))
173 (home-page "https://cran.r-project.org/web/packages/pheatmap")
174 (synopsis "Pretty heatmaps")
175 (description
176 "This package provides an implementation of heatmaps that offers more
177 control over dimensions and appearance.")
178 (license license:gpl2+)))
179
180 (define-public r-ellipsis
181 (package
182 (name "r-ellipsis")
183 (version "0.3.0")
184 (source
185 (origin
186 (method url-fetch)
187 (uri (cran-uri "ellipsis" version))
188 (sha256
189 (base32
190 "01z9gq311nzwv3a0sa49jhm5ylqd59srip4vjkrf23hzgb5i9y0b"))))
191 (build-system r-build-system)
192 (propagated-inputs
193 `(("r-rlang" ,r-rlang)))
194 (home-page "https://github.com/hadley/ellipsis")
195 (synopsis "Tools for working with additional arguments")
196 (description
197 "In S3 generics, it's useful to take @code{...} so that methods can have
198 additional arguments. But this flexibility comes at a cost: misspelled
199 arguments will be silently ignored. The @code{ellipsis} package is an
200 experiment that allows a generic to warn if any arguments passed in @code{...}
201 are not used.")
202 (license license:gpl3)))
203
204 (define-public r-grr
205 (package
206 (name "r-grr")
207 (version "0.9.5")
208 (source
209 (origin
210 (method url-fetch)
211 (uri (cran-uri "grr" version))
212 (sha256
213 (base32
214 "0arbcgrvhkwb5xk4nry1ffg2qj0v8ivhjghdr505ib4357g0c9i9"))))
215 (build-system r-build-system)
216 (home-page "https://cran.r-project.org/web/packages/grr")
217 (synopsis "Alternative implementations of base R functions")
218 (description
219 "This package provides alternative implementations of some base R
220 functions, including @code{sort}, @code{order}, and @code{match}. The
221 functions are simplified but can be faster or have other advantages.")
222 (license license:gpl3)))
223
224 (define-public r-matrix-utils
225 (package
226 (name "r-matrix-utils")
227 (version "0.9.8")
228 (source
229 (origin
230 (method url-fetch)
231 (uri (cran-uri "Matrix.utils" version))
232 (sha256
233 (base32
234 "0a5fq1scykqk0kc9j051j6fix6j2dqwz5wbgb0amaxsiywz9vigb"))))
235 (properties `((upstream-name . "Matrix.utils")))
236 (build-system r-build-system)
237 (propagated-inputs
238 `(("r-grr" ,r-grr)
239 ("r-matrix" ,r-matrix)))
240 (home-page "https://github.com/cvarrichio/Matrix.utils")
241 (synopsis
242 "Data.frame-Like Operations on Sparse and Dense Matrix Objects")
243 (description
244 "This package implements data manipulation methods such as @code{cast},
245 @code{aggregate}, and @code{merge}/@code{join} for Matrix and Matrix-like
246 objects.")
247 (license license:gpl3)))
248
249 (define-public r-sys
250 (package
251 (name "r-sys")
252 (version "3.3")
253 (source
254 (origin
255 (method url-fetch)
256 (uri (cran-uri "sys" version))
257 (sha256
258 (base32
259 "14wvy46i2iz9jn7lj3cvifmps932s3395wq681hniva0f8m7q8d6"))))
260 (build-system r-build-system)
261 (home-page "https://github.com/jeroen/sys")
262 (synopsis "Powerful and reliable tools for running system commands in R")
263 (description
264 "This package provides drop-in replacements for the base @code{system2()}
265 function with fine control and consistent behavior across platforms. It
266 supports clean interruption, timeout, background tasks, and streaming STDIN /
267 STDOUT / STDERR over binary or text connections. The package also provides
268 functions for evaluating expressions inside a temporary fork. Such
269 evaluations have no side effects on the main R process, and support reliable
270 interrupts and timeouts. This provides the basis for a sandboxing
271 mechanism.")
272 (license license:expat)))
273
274 (define-public r-askpass
275 (package
276 (name "r-askpass")
277 (version "1.1")
278 (source
279 (origin
280 (method url-fetch)
281 (uri (cran-uri "askpass" version))
282 (sha256
283 (base32
284 "07q0ik8jzk44vpwh48rr3fnpd7dzsdhjjsl4l850rffv3dyq4h6v"))))
285 (build-system r-build-system)
286 (propagated-inputs `(("r-sys" ,r-sys)))
287 (home-page "https://github.com/jeroen/askpass")
288 (synopsis "Safe password entry for R")
289 (description
290 "This package provides cross-platform utilities for prompting the user
291 for credentials or a passphrase, for example to authenticate with a server or
292 read a protected key.")
293 (license license:expat)))
294
295 (define-public r-vegan
296 (package
297 (name "r-vegan")
298 (version "2.5-6")
299 (source
300 (origin
301 (method url-fetch)
302 (uri (cran-uri "vegan" version))
303 (sha256
304 (base32
305 "0g60rgn1i7wqf9pf5m1yki1m45gcp7i5hmjic0ci0f6vng70mh5k"))))
306 (build-system r-build-system)
307 (native-inputs
308 `(("gfortran" ,gfortran)))
309 (propagated-inputs
310 `(("r-cluster" ,r-cluster)
311 ("r-knitr" ,r-knitr) ; needed for vignettes
312 ("r-lattice" ,r-lattice)
313 ("r-mass" ,r-mass)
314 ("r-mgcv" ,r-mgcv)
315 ("r-permute" ,r-permute)))
316 (home-page "https://cran.r-project.org/web/packages/vegan")
317 (synopsis "Functions for community ecology")
318 (description
319 "The vegan package provides tools for descriptive community ecology. It
320 has most basic functions of diversity analysis, community ordination and
321 dissimilarity analysis. Most of its multivariate tools can be used for other
322 data types as well.")
323 (license license:gpl2+)))
324
325 (define-public r-tidyverse
326 (package
327 (name "r-tidyverse")
328 (version "1.3.0")
329 (source
330 (origin
331 (method url-fetch)
332 (uri (cran-uri "tidyverse" version))
333 (sha256
334 (base32
335 "02gyys08qv2v4cl2d66gml4d31ipxay0iyfwwksvxyclx60wp2kd"))))
336 (build-system r-build-system)
337 (propagated-inputs
338 `(("r-broom" ,r-broom)
339 ("r-cli" ,r-cli)
340 ("r-crayon" ,r-crayon)
341 ("r-dbplyr" ,r-dbplyr)
342 ("r-dplyr" ,r-dplyr)
343 ("r-forcats" ,r-forcats)
344 ("r-ggplot2" ,r-ggplot2)
345 ("r-haven" ,r-haven)
346 ("r-hms" ,r-hms)
347 ("r-httr" ,r-httr)
348 ("r-jsonlite" ,r-jsonlite)
349 ("r-lubridate" ,r-lubridate)
350 ("r-magrittr" ,r-magrittr)
351 ("r-modelr" ,r-modelr)
352 ("r-pillar" ,r-pillar)
353 ("r-purrr" ,r-purrr)
354 ("r-readr" ,r-readr)
355 ("r-readxl" ,r-readxl)
356 ("r-reprex" ,r-reprex)
357 ("r-rlang" ,r-rlang)
358 ("r-rstudioapi" ,r-rstudioapi)
359 ("r-rvest" ,r-rvest)
360 ("r-stringr" ,r-stringr)
361 ("r-tibble" ,r-tibble)
362 ("r-tidyr" ,r-tidyr)
363 ("r-xml2" ,r-xml2)))
364 (home-page "https://tidyverse.tidyverse.org")
365 (synopsis "Install and load packages from the \"Tidyverse\"")
366 (description
367 "The @code{tidyverse} is a set of packages that work in harmony because
368 they share common data representations and API design. This package is
369 designed to make it easy to install and load multiple tidyverse packages in a
370 single step.")
371 (license license:gpl3)))
372
373 (define-public r-rvest
374 (package
375 (name "r-rvest")
376 (version "0.3.5")
377 (source
378 (origin
379 (method url-fetch)
380 (uri (cran-uri "rvest" version))
381 (sha256
382 (base32 "0r0a5jic09xw5pk0x42pr99r3zab5m9s4x85ymx1sl769jz42zqf"))))
383 (build-system r-build-system)
384 (propagated-inputs
385 `(("r-httr" ,r-httr)
386 ("r-magrittr" ,r-magrittr)
387 ("r-selectr" ,r-selectr)
388 ("r-xml2" ,r-xml2)))
389 (home-page "https://github.com/hadley/rvest")
390 (synopsis "Simple web scraping for R")
391 (description
392 "@code{r-rvest} helps you scrape information from web pages. It is
393 designed to work with @code{magrittr} to make it easy to express common web
394 scraping tasks, inspired by libraries like @code{BeautifulSoup}.")
395 (license license:gpl3)))
396
397 (define-public r-selectr
398 (package
399 (name "r-selectr")
400 (version "0.4-2")
401 (source
402 (origin
403 (method url-fetch)
404 (uri (cran-uri "selectr" version))
405 (sha256
406 (base32 "09y1n3iy297g49xlpl7xrjpwgnm57pskx5991lyfcpizbz8ax22m"))))
407 (build-system r-build-system)
408 (propagated-inputs
409 `(("r-stringr" ,r-stringr)
410 ("r-r6" ,r-r6)))
411 (home-page "https://sjp.co.nz/projects/selectr/")
412 (synopsis "Translate CSS selectors to XPath expressions")
413 (description
414 "@code{r-selectr} translates a CSS3 selector into an equivalent XPath
415 expression. This allows you to use CSS selectors when working with the XML
416 package as it can only evaluate XPath expressions. Also provided are
417 convenience functions useful for using CSS selectors on XML nodes. This
418 package is a port of the Python package @code{cssselect}.")
419 (license license:bsd-3)))
420
421 (define-public r-reprex
422 (package
423 (name "r-reprex")
424 (version "0.3.0")
425 (source
426 (origin
427 (method url-fetch)
428 (uri (cran-uri "reprex" version))
429 (sha256
430 (base32
431 "0v7vxzs8alwz8y1cjicpimp5yimf1g9gb8x5wy3zhvrz6kk2lg10"))))
432 (build-system r-build-system)
433 (propagated-inputs
434 `(("r-callr" ,r-callr)
435 ("r-clipr" ,r-clipr)
436 ("r-fs" ,r-fs)
437 ("r-rlang" ,r-rlang)
438 ("r-rmarkdown" ,r-rmarkdown)
439 ("r-whisker" ,r-whisker)
440 ("r-withr" ,r-withr)))
441 (home-page "https://github.com/tidyverse/reprex")
442 (synopsis "Prepare reproducible R code examples for sharing")
443 (description
444 "This package provides a convenience wrapper that uses the
445 @code{rmarkdown} package to render small snippets of code to target formats
446 that include both code and output. The goal is to encourage the sharing of
447 small, reproducible, and runnable examples on code-oriented websites or email.
448 @code{reprex} also extracts clean, runnable R code from various common formats,
449 such as copy/paste from an R session.")
450 (license license:expat)))
451
452 (define-public r-callr
453 (package
454 (name "r-callr")
455 (version "3.4.3")
456 (source
457 (origin
458 (method url-fetch)
459 (uri (cran-uri "callr" version))
460 (sha256
461 (base32
462 "1dc20gdawy9mhnc452qlshv2p4krs6c2gymvpv365mn141zjgdq1"))))
463 (build-system r-build-system)
464 (propagated-inputs
465 `(("r-r6" ,r-r6)
466 ("r-processx" ,r-processx)))
467 (home-page "https://github.com/r-lib/callr#readme")
468 (synopsis "Call R from R")
469 (description
470 "It is sometimes useful to perform a computation in a separate R process,
471 without affecting the current R process at all. This package does exactly
472 that.")
473 (license license:expat)))
474
475 (define-public r-readxl
476 (package
477 (name "r-readxl")
478 (version "1.3.1")
479 (source
480 (origin
481 (method url-fetch)
482 (uri (cran-uri "readxl" version))
483 (sha256
484 (base32
485 "15mambxr8c7k2ikdfsl1w3vxvm54dsnk0cl1qvks6iig7rql3d14"))))
486 (build-system r-build-system)
487 (propagated-inputs
488 `(("r-cellranger" ,r-cellranger)
489 ("r-progress" ,r-progress)
490 ("r-rcpp" ,r-rcpp)
491 ("r-tibble" ,r-tibble)))
492 (home-page "https://readxl.tidyverse.org")
493 (synopsis "Read Excel files")
494 (description
495 "This package lets you import Excel files into R. It supports
496 @file{.xls} via the embedded @code{libxls} C library and @file{.xlsx} via
497 the embedded @code{RapidXML} C++ library.")
498 ;; XXX: This package bundles a copy of 'libxsl' which is BSD-2 and
499 ;; 'rapidxml' which is Boost.
500 (license (list license:gpl3 license:bsd-2 license:boost1.0))))
501
502 (define-public r-modelr
503 (package
504 (name "r-modelr")
505 (version "0.1.6")
506 (source
507 (origin
508 (method url-fetch)
509 (uri (cran-uri "modelr" version))
510 (sha256
511 (base32
512 "1x2m34m4qirb401krmgc5wg3g7ndbcglfab2l0655rmky3fz7rfp"))))
513 (build-system r-build-system)
514 (propagated-inputs
515 `(("r-broom" ,r-broom)
516 ("r-dplyr" ,r-dplyr)
517 ("r-magrittr" ,r-magrittr)
518 ("r-purrr" ,r-purrr)
519 ("r-rlang" ,r-rlang)
520 ("r-tibble" ,r-tibble)
521 ("r-tidyr" ,r-tidyr)
522 ("r-tidyselect" ,r-tidyselect)))
523 (home-page "https://github.com/tidyverse/modelr")
524 (synopsis "Helper functions for modelling in pipelines")
525 (description
526 "Functions for modelling that help you seamlessly integrate modelling
527 into a pipeline of data manipulation and visualisation.")
528 (license license:gpl3)))
529
530 (define-public r-httpuv
531 (package
532 (name "r-httpuv")
533 (version "1.5.2")
534 (source (origin
535 (method url-fetch)
536 (uri (cran-uri "httpuv" version))
537 (sha256
538 (base32
539 "13ax0hs2lc39ilznh1zarwqdzahcbhb8adilrfik3xg0fkljpcwk"))))
540 (build-system r-build-system)
541 (propagated-inputs
542 `(("r-bh" ,r-bh)
543 ("r-later" ,r-later)
544 ("r-promises" ,r-promises)
545 ("r-r6" ,r-r6)
546 ("r-rcpp" ,r-rcpp)))
547 (home-page "https://github.com/rstudio/httpuv")
548 (synopsis "HTTP and WebSocket server library for R")
549 (description
550 "The httpuv package provides low-level socket and protocol support for
551 handling HTTP and WebSocket requests directly from within R. It is primarily
552 intended as a building block for other packages, rather than making it
553 particularly easy to create complete web applications using httpuv alone.")
554 ;; This package includes third-party code that was originally released
555 ;; under various non-copyleft licenses. Full licensing information can be
556 ;; obtained here: https://github.com/rstudio/httpuv/blob/master/LICENSE
557 (license license:gpl3+)))
558
559 (define-public r-jsonlite
560 (package
561 (name "r-jsonlite")
562 (version "1.6.1")
563 (source (origin
564 (method url-fetch)
565 (uri (cran-uri "jsonlite" version))
566 (sha256
567 (base32
568 "0xrki07wc17bkmhz0h7jay784j1sls2i9bf1mfpj6yl59791v4kl"))))
569 (build-system r-build-system)
570 (home-page "https://arxiv.org/abs/1403.2805")
571 (synopsis "Robust, high performance JSON parser and generator for R")
572 (description
573 "The jsonlite package provides a fast JSON parser and generator optimized
574 for statistical data and the web. It offers flexible, robust, high
575 performance tools for working with JSON in R and is particularly powerful for
576 building pipelines and interacting with a web API. In addition to converting
577 JSON data from/to R objects, jsonlite contains functions to stream, validate,
578 and prettify JSON data. The unit tests included with the package verify that
579 all edge cases are encoded and decoded consistently for use with dynamic data
580 in systems and applications.")
581 (license license:expat)))
582
583 (define-public r-servr
584 (package
585 (name "r-servr")
586 (version "0.16")
587 (source (origin
588 (method url-fetch)
589 (uri (cran-uri "servr" version))
590 (sha256
591 (base32
592 "106skz04iq4dkblr17idxsxfcfqic6rcaz8mahydkwjjppnhp5fc"))))
593 (build-system r-build-system)
594 (propagated-inputs
595 `(("r-httpuv" ,r-httpuv)
596 ("r-jsonlite" ,r-jsonlite)
597 ("r-mime" ,r-mime)
598 ("r-xfun" ,r-xfun)))
599 (home-page "https://github.com/yihui/servr")
600 (synopsis "Simple HTTP server to serve static files or dynamic documents")
601 (description
602 "Servr provides an HTTP server in R to serve static files, or dynamic
603 documents that can be converted to HTML files (e.g., R Markdown) under a given
604 directory.")
605 (license license:expat)))
606
607 (define-public r-htmltools
608 (package
609 (name "r-htmltools")
610 (version "0.4.0")
611 (source (origin
612 (method url-fetch)
613 (uri (cran-uri "htmltools" version))
614 (sha256
615 (base32
616 "06l17d8jkf438yk2mchpsp4j90bynnapz3nabh5vkcc324p5a62v"))))
617 (build-system r-build-system)
618 (propagated-inputs
619 `(("r-digest" ,r-digest)
620 ("r-rcpp" ,r-rcpp)
621 ("r-rlang" ,r-rlang)))
622 (home-page "https://cran.r-project.org/web/packages/htmltools")
623 (synopsis "R tools for HTML")
624 (description
625 "This package provides tools for HTML generation and output in R.")
626 (license license:expat)))
627
628 (define-public r-htmlwidgets
629 (package
630 (name "r-htmlwidgets")
631 (version "1.5.1")
632 (source (origin
633 (method url-fetch)
634 (uri (cran-uri "htmlwidgets" version))
635 (sha256
636 (base32
637 "10fp306l1nybkah6jrlrqwwdb6zvklbddp8i3w9v9naj8la5jbnl"))))
638 (build-system r-build-system)
639 (propagated-inputs
640 `(("r-htmltools" ,r-htmltools)
641 ("r-jsonlite" ,r-jsonlite)
642 ("r-yaml" ,r-yaml)))
643 (home-page "https://github.com/ramnathv/htmlwidgets")
644 (synopsis "HTML Widgets for R")
645 (description
646 "HTML widgets is a framework for creating HTML widgets that render in
647 various contexts including the R console, R Markdown documents, and Shiny web
648 applications.")
649 (license license:expat)))
650
651 (define-public r-htmltable
652 (package
653 (name "r-htmltable")
654 (version "1.13.3")
655 (source
656 (origin
657 (method url-fetch)
658 (uri (cran-uri "htmlTable" version))
659 (sha256
660 (base32
661 "0g9r156k9yl1f092hfw3b9wjx11akf0shbi3x0d0mvpnflvc8nfl"))))
662 (properties `((upstream-name . "htmlTable")))
663 (build-system r-build-system)
664 (propagated-inputs
665 `(("r-checkmate" ,r-checkmate)
666 ("r-htmltools" ,r-htmltools)
667 ("r-htmlwidgets" ,r-htmlwidgets)
668 ("r-knitr" ,r-knitr)
669 ("r-magrittr" ,r-magrittr)
670 ("r-rstudioapi" ,r-rstudioapi)
671 ("r-stringr" ,r-stringr)))
672 (home-page "http://gforge.se/packages/")
673 (synopsis "Advanced tables for Markdown/HTML")
674 (description
675 "This package provides functions to build tables with advanced layout
676 elements such as row spanners, column spanners, table spanners, zebra
677 striping, and more. While allowing advanced layout, the underlying
678 CSS-structure is simple in order to maximize compatibility with word
679 processors such as LibreOffice. The package also contains a few text
680 formatting functions that help outputting text compatible with HTML or
681 LaTeX.")
682 (license license:gpl3+)))
683
684 (define-public r-curl
685 (package
686 (name "r-curl")
687 (version "4.3")
688 (source (origin
689 (method url-fetch)
690 (uri (cran-uri "curl" version))
691 (sha256
692 (base32
693 "1nrf6md41b37j424y6rvifdj9zb3j14f60fj7q71k9jhpf2x81kl"))))
694 (build-system r-build-system)
695 (arguments
696 `(#:phases
697 (modify-phases %standard-phases
698 ;; The environment variable CURL_CA_BUNDLE is only respected when
699 ;; running Windows, so we disable the platform checks.
700 ;; This can be removed once the libcurl has been patched.
701 (add-after 'unpack 'allow-CURL_CA_BUNDLE
702 (lambda _
703 (substitute* "R/onload.R"
704 (("if \\(!grepl\\(\"mingw\".*")
705 "if (FALSE)\n"))
706 (substitute* "src/handle.c"
707 (("/\\* Only set" m)
708 (string-append "\
709 const char *_ca_bundle = getenv(\"CURL_CA_BUNDLE\");
710 if(_ca_bundle != NULL) { curl_easy_setopt(handle, CURLOPT_CAINFO, _ca_bundle); }
711 " m)))
712 #t)))))
713 (inputs
714 `(("libcurl" ,curl)
715 ("zlib" ,zlib)))
716 (native-inputs
717 `(("pkg-config" ,pkg-config)))
718 (home-page "https://github.com/jeroenooms/curl")
719 (synopsis "HTTP client for R")
720 (description
721 "The @code{curl()} and @code{curl_download()} functions provide highly
722 configurable drop-in replacements for base @code{url()} and
723 @code{download.file()} with better performance, support for encryption, gzip
724 compression, authentication, and other @code{libcurl} goodies. The core of
725 the package implements a framework for performing fully customized requests
726 where data can be processed either in memory, on disk, or streaming via the
727 callback or connection interfaces.")
728 (license license:expat)))
729
730 (define-public r-hwriter
731 (package
732 (name "r-hwriter")
733 (version "1.3.2")
734 (source
735 (origin
736 (method url-fetch)
737 (uri (cran-uri "hwriter" version))
738 (sha256
739 (base32
740 "0arjsz854rfkfqhgvpqbm9lfni97dcjs66isdsfvwfd2wz932dbb"))))
741 (build-system r-build-system)
742 (home-page "https://cran.r-project.org/web/packages/hwriter")
743 (synopsis "Output R objects in HTML format")
744 (description
745 "This package provides easy-to-use and versatile functions to output R
746 objects in HTML format.")
747 (license license:lgpl2.1+)))
748
749 (define-public r-rjson
750 (package
751 (name "r-rjson")
752 (version "0.2.20")
753 (source
754 (origin
755 (method url-fetch)
756 (uri (cran-uri "rjson" version))
757 (sha256
758 (base32
759 "0v1zvdd3svnavklh7y5xbwrrkbvx6053r4c5hgnk7hz7bqg7qa1s"))))
760 (build-system r-build-system)
761 (home-page "https://cran.r-project.org/web/packages/rjson")
762 (synopsis "JSON library for R")
763 (description
764 "This package provides functions to convert R objects into JSON objects
765 and vice-versa.")
766 (license license:gpl2+)))
767
768 (define-public r-fastmap
769 (package
770 (name "r-fastmap")
771 (version "1.0.1")
772 (source
773 (origin
774 (method url-fetch)
775 (uri (cran-uri "fastmap" version))
776 (sha256
777 (base32
778 "1v7sp56xiha0bh78g3w92k52p9vkp7ryzpw0z66nyddxzrfv0y27"))))
779 (properties `((upstream-name . "fastmap")))
780 (build-system r-build-system)
781 (home-page "https://r-lib.github.io/fastmap/")
782 (synopsis "Fast implementation of a key-value store")
783 (description
784 "This package provides a fast implementation of a key-value store.
785 Environments are commonly used as key-value stores, but every time a new key
786 is used, it is added to R's global symbol table, causing a small amount of
787 memory leakage. This can be problematic in cases where many different keys
788 are used. Fastmap avoids this memory leak issue by implementing the map using
789 data structures in C++.")
790 (license license:expat)))
791
792 (define-public r-shiny
793 (package
794 (name "r-shiny")
795 (version "1.4.0.2")
796 (source
797 (origin
798 (method git-fetch)
799 (uri (git-reference
800 (url "https://github.com/rstudio/shiny.git")
801 (commit (string-append "v" version))))
802 (file-name (git-file-name name version))
803 (sha256
804 (base32
805 "005wgcxq7f2q9g6wvfk29n2nms262w0abpz93sfvx79yv6qxppzs"))))
806 (build-system r-build-system)
807 (arguments
808 `(#:modules ((guix build r-build-system)
809 (guix build minify-build-system)
810 (guix build utils)
811 (ice-9 match))
812 #:imported-modules (,@%r-build-system-modules
813 (guix build minify-build-system))
814 #:phases
815 (modify-phases (@ (guix build r-build-system) %standard-phases)
816 (add-after 'unpack 'replace-bundled-minified-JavaScript
817 (lambda* (#:key inputs #:allow-other-keys)
818 (let ((replace-file (lambda (old new)
819 (format #t "replacing ~a with ~a\n" old new)
820 (delete-file old)
821 (symlink new old))))
822 ;; NOTE: Files in ./inst/www/shared/datepicker/js/locales/
823 ;; contain just data. They are not minified code, so we don't
824 ;; replace them.
825 (with-directory-excursion "inst/www/shared"
826 (replace-file "bootstrap/shim/respond.min.js"
827 (string-append (assoc-ref inputs "js-respond")
828 "/share/javascript/respond.min.js"))
829 (replace-file "bootstrap/shim/html5shiv.min.js"
830 (string-append (assoc-ref inputs "js-html5shiv")
831 "/share/javascript/html5shiv.min.js"))
832 (replace-file "json2-min.js"
833 (string-append (assoc-ref inputs "js-json2")
834 "/share/javascript/json2-min.js"))
835 (replace-file "strftime/strftime-min.js"
836 (string-append (assoc-ref inputs "js-strftime")
837 "/share/javascript/strftime.min.js"))
838 (replace-file "highlight/highlight.pack.js"
839 (string-append (assoc-ref inputs "js-highlight")
840 "/share/javascript/highlight.min.js"))
841 (replace-file "datatables/js/jquery.dataTables.min.js"
842 (string-append (assoc-ref inputs "js-datatables")
843 "/share/javascript/jquery.dataTables.min.js"))
844 (replace-file "selectize/js/selectize.min.js"
845 (string-append (assoc-ref inputs "js-selectize")
846 "/share/javascript/selectize.min.js"))
847 (replace-file "selectize/js/es5-shim.min.js"
848 (string-append (assoc-ref inputs "js-es5-shim")
849 "/share/javascript/es5-shim.min.js"))
850 (for-each (match-lambda
851 ((source . target)
852 (delete-file target)
853 (minify source #:target target)))
854 '(("jqueryui/jquery-ui.js" .
855 "jqueryui/jquery-ui.min.js")
856 ("datepicker/js/bootstrap-datepicker.js" .
857 "datepicker/js/bootstrap-datepicker.min.js")
858 ("ionrangeslider/js/ion.rangeSlider.js" .
859 "ionrangeslider/js/ion.rangeSlider.min.js")
860 ("bootstrap/js/bootstrap.js" .
861 "bootstrap/js/bootstrap.min.js")
862 ("shiny.js" .
863 "shiny.min.js")
864 ("jquery.js" .
865 "jquery.min.js")
866 ("legacy/jquery.js" .
867 "legacy/jquery.min.js")
868 ("showdown/src/showdown.js" .
869 "showdown/compressed/showdown.js")))))
870 #t)))))
871 (propagated-inputs
872 `(("r-crayon" ,r-crayon)
873 ("r-digest" ,r-digest)
874 ("r-fastmap" ,r-fastmap)
875 ("r-htmltools" ,r-htmltools)
876 ("r-httpuv" ,r-httpuv)
877 ("r-jsonlite" ,r-jsonlite)
878 ("r-later" ,r-later)
879 ("r-mime" ,r-mime)
880 ("r-promises" ,r-promises)
881 ("r-r6" ,r-r6)
882 ("r-rlang" ,r-rlang)
883 ("r-sourcetools" ,r-sourcetools)
884 ("r-withr" ,r-withr)
885 ("r-xtable" ,r-xtable)))
886 (inputs
887 `(("js-datatables" ,js-datatables)
888 ("js-html5shiv" ,js-html5shiv)
889 ("js-json2" ,js-json2)
890 ("js-respond" ,js-respond)
891 ("js-selectize" ,js-selectize)
892 ("js-strftime" ,js-strftime)
893 ("js-highlight" ,js-highlight)
894 ("js-es5-shim" ,js-es5-shim)))
895 (native-inputs
896 `(("uglify-js" ,uglify-js)
897 ("gfortran" ,gfortran)))
898 (home-page "http://shiny.rstudio.com")
899 (synopsis "Easy interactive web applications with R")
900 (description
901 "Makes it incredibly easy to build interactive web applications
902 with R. Automatic \"reactive\" binding between inputs and outputs and
903 extensive prebuilt widgets make it possible to build beautiful,
904 responsive, and powerful applications with minimal effort.")
905 (license license:artistic2.0)))
906
907 ;; This package includes minified JavaScript files. When upgrading please
908 ;; check that there are no new minified JavaScript files.
909 (define-public r-shinytree
910 (package
911 (name "r-shinytree")
912 (version "0.2.7")
913 (source
914 (origin
915 (method url-fetch)
916 (uri (cran-uri "shinyTree" version))
917 (sha256
918 (base32
919 "0jfx2capckv7hf2yx3fn8i4rcmhi222ah91jnmhg497x8wgz31s3"))
920 (modules '((guix build utils)))
921 (snippet
922 '(begin
923 ;; Delete minified JavaScript
924 (for-each delete-file
925 '("inst/www/jsTree-3.3.7/libs/require.js"
926 "inst/www/jsTree-3.3.7/libs/jquery.js"
927 "inst/www/jsTree-3.3.7/jstree.min.js"))
928 #t))))
929 (properties `((upstream-name . "shinyTree")))
930 (build-system r-build-system)
931 (arguments
932 `(#:modules ((guix build utils)
933 (guix build r-build-system)
934 (srfi srfi-1)
935 (ice-9 popen))
936 #:phases
937 (modify-phases %standard-phases
938 (add-after 'unpack 'replace-minified-javascript
939 (lambda* (#:key inputs #:allow-other-keys)
940 (with-directory-excursion "inst/www/jsTree-3.3.7/"
941 (symlink (string-append (assoc-ref inputs "js-requirejs")
942 "/share/javascript/require.min.js")
943 "libs/require.js")
944 (call-with-values
945 (lambda ()
946 (unzip2
947 `((,(assoc-ref inputs "js-jquery")
948 "libs/jquery.js")
949 ("jstree.js"
950 "jstree.min.js"))))
951 (lambda (sources targets)
952 (for-each (lambda (source target)
953 (format #t "Processing ~a --> ~a~%"
954 source target)
955 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
956 (call-with-output-file target
957 (lambda (port)
958 (dump-port minified port)))))
959 sources targets))))
960 #t)))))
961 (propagated-inputs
962 `(("r-htmlwidgets" ,r-htmlwidgets)
963 ("r-jsonlite" ,r-jsonlite)
964 ("r-promises" ,r-promises)
965 ("r-shiny" ,r-shiny)
966 ("r-stringr" ,r-stringr)))
967 (inputs
968 `(("js-requirejs" ,js-requirejs)))
969 (native-inputs
970 `(("uglify-js" ,uglify-js)
971 ("js-jquery"
972 ,(origin
973 (method url-fetch)
974 (uri "https://code.jquery.com/jquery-3.3.1.js")
975 (sha256
976 (base32
977 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))))
978 (home-page "https://cran.r-project.org/web/packages/shinyTree/")
979 (synopsis "jsTree bindings for Shiny")
980 (description
981 "This package exposes R bindings to jsTree, a JavaScript library that
982 supports interactive trees, to enable rich, editable trees in Shiny.")
983 (license license:expat)))
984
985 (define-public r-shinydashboard
986 (package
987 (name "r-shinydashboard")
988 (version "0.7.1")
989 (source (origin
990 (method url-fetch)
991 (uri (cran-uri "shinydashboard" version))
992 (sha256
993 (base32
994 "0khac8b27q3swdw07kl609hm0fjfjsjv591b388q99mqqr2rk92i"))))
995 (build-system r-build-system)
996 ;; The directory inst/AdminLTE/ contains a minified JavaScript file.
997 ;; Regenerate it from the included sources.
998 (arguments
999 `(#:modules ((guix build utils)
1000 (guix build r-build-system)
1001 (ice-9 popen))
1002 #:phases
1003 (modify-phases %standard-phases
1004 (add-after 'unpack 'generate-minified-javascript
1005 (lambda _
1006 (with-directory-excursion "inst/AdminLTE"
1007 (delete-file "app.min.js")
1008 (let ((minified (open-pipe* OPEN_READ "uglify-js" "app.js")))
1009 (call-with-output-file "app.min.js"
1010 (lambda (port)
1011 (dump-port minified port))))))))))
1012 (propagated-inputs
1013 `(("r-htmltools" ,r-htmltools)
1014 ("r-promises" ,r-promises)
1015 ("r-shiny" ,r-shiny)))
1016 (native-inputs
1017 `(("uglify-js" ,uglify-js)))
1018 (home-page "https://rstudio.github.io/shinydashboard/")
1019 (synopsis "Create dashboards with shiny")
1020 (description "This package provides an extension to the Shiny web
1021 application framework for R, making it easy to create attractive dashboards.")
1022 ;; This package includes software that was released under the Expat
1023 ;; license, but the whole package is released under GPL version 2 or
1024 ;; later.
1025 (license license:gpl2+)))
1026
1027 (define-public r-shinyfiles
1028 (package
1029 (name "r-shinyfiles")
1030 (version "0.7.5")
1031 (source
1032 (origin
1033 (method url-fetch)
1034 (uri (cran-uri "shinyFiles" version))
1035 (sha256
1036 (base32 "1143m941hma9hc77c3xcw26c0ygfhn9ii2sbp9wrydxv4gc7mr8a"))))
1037 (properties `((upstream-name . "shinyFiles")))
1038 (build-system r-build-system)
1039 (propagated-inputs
1040 `(("r-fs" ,r-fs)
1041 ("r-htmltools" ,r-htmltools)
1042 ("r-jsonlite" ,r-jsonlite)
1043 ("r-shiny" ,r-shiny)
1044 ("r-tibble" ,r-tibble)))
1045 (home-page "https://github.com/thomasp85/shinyFiles")
1046 (synopsis "Server-side file system viewer for Shiny")
1047 (description
1048 "This package provides functionality for client-side navigation of the
1049 server side file system in shiny apps. In case the app is running locally
1050 this gives the user direct access to the file system without the need to
1051 \"download\" files to a temporary location. Both file and folder selection as
1052 well as file saving is available.")
1053 (license license:gpl2+)))
1054
1055 (define-public r-shinythemes
1056 (package
1057 (name "r-shinythemes")
1058 (version "1.1.2")
1059 (source
1060 (origin
1061 (method url-fetch)
1062 (uri (cran-uri "shinythemes" version))
1063 (sha256
1064 (base32
1065 "12miz44n2zxfswnia7p8dirxj3miw0aqn4pkx2111ikz67ax84rf"))))
1066 (properties `((upstream-name . "shinythemes")))
1067 (build-system r-build-system)
1068 (propagated-inputs `(("r-shiny" ,r-shiny)))
1069 (home-page "https://rstudio.github.io/shinythemes/")
1070 (synopsis "Themes for Shiny")
1071 (description
1072 "This package provides themes for use with Shiny. It includes several
1073 Bootstrap themes, which are packaged for use with Shiny applications.")
1074 ;; The package is released under version 3 of the GPL, but it includes
1075 ;; source files that are covered by the Expat license. It also includes
1076 ;; fonts under SIL or the ASL.
1077 (license (list license:gpl3 license:expat
1078 license:silofl1.1 license:asl2.0))))
1079
1080 ;; The package sources include minified variants of d3.js and non-minified
1081 ;; source code of d3-jetpack.
1082 (define-public r-d3r
1083 (package
1084 (name "r-d3r")
1085 (version "0.8.7")
1086 (source
1087 (origin
1088 (method url-fetch)
1089 (uri (cran-uri "d3r" version))
1090 (sha256
1091 (base32
1092 "0xl3im76lp7pd5lhp8jfyqdm4j4zvjrx5a5fl81xv2cf7x3n4f2a"))))
1093 (build-system r-build-system)
1094 (arguments
1095 `(#:modules ((guix build utils)
1096 (guix build r-build-system)
1097 (srfi srfi-1)
1098 (ice-9 popen))
1099 #:phases
1100 (modify-phases %standard-phases
1101 (add-after 'unpack 'process-javascript
1102 (lambda* (#:key inputs #:allow-other-keys)
1103 (with-directory-excursion "inst/www/d3/"
1104 (call-with-values
1105 (lambda ()
1106 (unzip2
1107 `((,(assoc-ref inputs "d3.v3.js")
1108 "v3/dist/d3.min.js")
1109 (,(assoc-ref inputs "d3.v4.js")
1110 "v4/dist/d3.min.js")
1111 (,(assoc-ref inputs "d3.v5.js")
1112 "v5/dist/d3.min.js"))))
1113 (lambda (sources targets)
1114 (for-each (lambda (source target)
1115 (format #t "Processing ~a --> ~a~%"
1116 source target)
1117 (delete-file target)
1118 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
1119 (call-with-output-file target
1120 (lambda (port)
1121 (dump-port minified port)))))
1122 sources targets))))
1123 #t)))))
1124 (propagated-inputs
1125 `(("r-dplyr" ,r-dplyr)
1126 ("r-htmltools" ,r-htmltools)
1127 ("r-tidyr" ,r-tidyr)))
1128 (native-inputs
1129 `(("uglify-js" ,uglify-js)
1130 ("d3.v3.js"
1131 ,(origin
1132 (method url-fetch)
1133 (uri "https://d3js.org/d3.v3.js")
1134 (sha256
1135 (base32
1136 "1arr7sr08vy7wh0nvip2mi7dpyjw4576vf3bm45rp4g5lc1k1x41"))))
1137 ("d3.v4.js"
1138 ,(origin
1139 (method url-fetch)
1140 (uri "https://d3js.org/d3.v4.js")
1141 (sha256
1142 (base32
1143 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))
1144 ("d3.v5.js"
1145 ,(origin
1146 (method url-fetch)
1147 (uri "https://d3js.org/d3.v5.js")
1148 (sha256
1149 (base32
1150 "0kxvx5pfagxn6nhavdwsdnzyd26g0z5dsfi1pi5dvcmb0c8ipcdn"))))))
1151 (home-page "https://github.com/timelyportfolio/d3r")
1152 (synopsis "d3.js utilities for R")
1153 (description
1154 "This package provides a suite of functions to help ease the use of the
1155 d3.js visualization library in R. These helpers include
1156 @code{htmltools::htmlDependency} functions, hierarchy builders, and conversion
1157 tools for @code{partykit}, @code{igraph}, @code{table}, and @code{data.frame}
1158 R objects into the JSON format that the d3.js library expects.")
1159 (license license:bsd-3)))
1160
1161 ;; We use the latest commit here because the last release was in 2016 while
1162 ;; the latest commit was in 2018.
1163 (define-public r-sankeyd3
1164 (let ((commit "fd50a74e29056e0d67d75b4d04de47afb2f932bc")
1165 (revision "1"))
1166 (package
1167 (name "r-sankeyd3")
1168 (version (git-version "0.3.2" revision commit))
1169 (source
1170 (origin
1171 (method git-fetch)
1172 (uri (git-reference
1173 (url "https://github.com/fbreitwieser/sankeyD3.git")
1174 (commit commit)))
1175 (file-name (git-file-name name version))
1176 (sha256
1177 (base32
1178 "0jrcnfax321pszbpjdifnkbrgbjr43bjzvlzv1p5a8wskksqwiyx"))))
1179 (build-system r-build-system)
1180 (propagated-inputs
1181 `(("r-d3r" ,r-d3r)
1182 ("r-htmlwidgets" ,r-htmlwidgets)
1183 ("r-shiny" ,r-shiny)
1184 ("r-magrittr" ,r-magrittr)))
1185 (home-page "https://github.com/fbreitwieser/sankeyD3")
1186 (synopsis "Sankey network graphs from R")
1187 (description
1188 "This package provides an R library to generate Sankey network graphs
1189 in R and Shiny via the D3 visualization library.")
1190 ;; The R code is licensed under GPLv3+. It includes the non-minified
1191 ;; JavaScript source code of d3-sankey, which is released under the
1192 ;; 3-clause BSD license.
1193 (license (list license:gpl3+ license:bsd-3)))))
1194
1195 (define-public r-crosstalk
1196 (package
1197 (name "r-crosstalk")
1198 (version "1.1.0.1")
1199 (source
1200 (origin
1201 (method url-fetch)
1202 (uri (cran-uri "crosstalk" version))
1203 (sha256
1204 (base32
1205 "03ihj7cimkklrbad9zic78xsrfcisygmgy859hqnx0hiph80p9rn"))))
1206 (build-system r-build-system)
1207 (propagated-inputs
1208 `(("r-htmltools" ,r-htmltools)
1209 ("r-jsonlite" ,r-jsonlite)
1210 ("r-lazyeval" ,r-lazyeval)
1211 ("r-r6" ,r-r6)))
1212 (home-page "https://rstudio.github.io/crosstalk/")
1213 (synopsis "Inter-widget interactivity for HTML widgets")
1214 (description
1215 "This package provides building blocks for allowing HTML widgets to
1216 communicate with each other, with Shiny or without (i.e. static @code{.html}
1217 files). It currently supports linked brushing and filtering.")
1218 (license license:expat)))
1219
1220 (define-public r-rook
1221 (package
1222 (name "r-rook")
1223 (version "1.1-1")
1224 (source
1225 (origin
1226 (method url-fetch)
1227 (uri (cran-uri "Rook" version))
1228 (sha256
1229 (base32
1230 "00s9a0kr9rwxvlq433daxjk4ji8m0w60hjdprf502msw9kxfrx00"))))
1231 (properties `((upstream-name . "Rook")))
1232 (build-system r-build-system)
1233 (propagated-inputs `(("r-brew" ,r-brew)))
1234 (home-page "https://cran.r-project.org/web/packages/Rook")
1235 (synopsis "Web server interface for R")
1236 (description
1237 "This package contains the Rook specification and convenience software
1238 for building and running Rook applications. A Rook application is an R
1239 reference class object that implements a @code{call} method or an R closure
1240 that takes exactly one argument, an environment, and returns a list with three
1241 named elements: the @code{status}, the @code{headers}, and the @code{body}.")
1242 (license license:gpl2)))
1243
1244 (define-public r-miniui
1245 (package
1246 (name "r-miniui")
1247 (version "0.1.1.1")
1248 (source
1249 (origin
1250 (method url-fetch)
1251 (uri (cran-uri "miniUI" version))
1252 (sha256
1253 (base32
1254 "1h5h2sc57h95d6bsgs95l26911g38hvjc1v50bc31xl9689l2as5"))))
1255 (properties `((upstream-name . "miniUI")))
1256 (build-system r-build-system)
1257 (propagated-inputs
1258 `(("r-htmltools" ,r-htmltools)
1259 ("r-shiny" ,r-shiny)))
1260 (home-page "https://cran.r-project.org/web/packages/miniUI/")
1261 (synopsis "Shiny UI widgets for small screens")
1262 (description
1263 "This package provides UI widget and layout functions for writing Shiny apps that
1264 work well on small screens.")
1265 (license license:gpl3)))
1266
1267 (define-public r-feather
1268 (package
1269 (name "r-feather")
1270 (version "0.3.5")
1271 (source
1272 (origin
1273 (method url-fetch)
1274 (uri (cran-uri "feather" version))
1275 (sha256
1276 (base32
1277 "1gxd0h2m56sjjlzn4dry6s13nddxc4l5i11gsvavaf2dwbahdzsh"))))
1278 (build-system r-build-system)
1279 (propagated-inputs
1280 `(("r-hms" ,r-hms)
1281 ("r-rcpp" ,r-rcpp)
1282 ("r-tibble" ,r-tibble)))
1283 (home-page "https://github.com/wesm/feather")
1284 (synopsis "R Bindings to the Feather API")
1285 (description "Read and write feather files, a lightweight binary columnar
1286 data store designed for maximum speed.")
1287 (license license:asl2.0)))
1288
1289 (define-public r-maps
1290 (package
1291 (name "r-maps")
1292 (version "3.3.0")
1293 (source
1294 (origin
1295 (method url-fetch)
1296 (uri (cran-uri "maps" version))
1297 (sha256
1298 (base32
1299 "05i2ppl5z4p8rawgqmy3z4ia05fcblpq1vvrmrkgkkpdlhczx6hr"))))
1300 (build-system r-build-system)
1301 (home-page "https://cran.r-project.org/web/packages/maps")
1302 (synopsis "Draw geographical maps")
1303 (description "This package provides an R module for display of maps.
1304 Projection code and larger maps are in separate packages (@code{mapproj} and
1305 @code{mapdata}).")
1306 (license license:gpl2)))
1307
1308 (define-public r-mapproj
1309 (package
1310 (name "r-mapproj")
1311 (version "1.2.7")
1312 (source
1313 (origin
1314 (method url-fetch)
1315 (uri (cran-uri "mapproj" version))
1316 (sha256
1317 (base32
1318 "0nscsfq8md6ri9258xz57c3dj81wdl6kdwf4a9qcrwwbn20i427h"))))
1319 (build-system r-build-system)
1320 (propagated-inputs `(("r-maps" ,r-maps)))
1321 (home-page "https://cran.r-project.org/web/packages/mapproj")
1322 (synopsis "Map projection in R")
1323 (description "This package converts latitude/longitude into projected
1324 coordinates.")
1325 (license (list license:gpl2 ; The R interface
1326 (license:non-copyleft ; The C code
1327 "https://www.gnu.org/licenses/license-list.en.html#lucent102"
1328 "Lucent Public License Version 1.02")))))
1329
1330 (define-public r-rgooglemaps
1331 (package
1332 (name "r-rgooglemaps")
1333 (version "1.4.5.3")
1334 (source
1335 (origin
1336 (method url-fetch)
1337 (uri (cran-uri "RgoogleMaps" version))
1338 (sha256
1339 (base32
1340 "02v8k0bw70q4qwx4lcdy8p25q7n3ql2ll46lfpqllxa1p26svmfi"))))
1341 (properties `((upstream-name . "RgoogleMaps")))
1342 (build-system r-build-system)
1343 (propagated-inputs
1344 `(("r-png" ,r-png)
1345 ("r-sp" ,r-sp)))
1346 (home-page "https://cran.r-project.org/web/packages/RgoogleMaps")
1347 (synopsis "Use Google Maps in R")
1348 (description "This package serves two purposes:
1349 @enumerate
1350 @item Provide a comfortable R interface to query the Google server for static
1351 maps, and
1352 @item Use the map as a background image to overlay plots within R. This
1353 requires proper coordinate scaling.
1354 @end enumerate\n")
1355 (license license:gpl2+)))
1356
1357 (define-public r-geosphere
1358 (package
1359 (name "r-geosphere")
1360 (version "1.5-10")
1361 (source
1362 (origin
1363 (method url-fetch)
1364 (uri (cran-uri "geosphere" version))
1365 (sha256
1366 (base32
1367 "15xlgsmn0vwky1l13n6acdz6jn2b2na3gf6x367y3qh1f5w4zkan"))))
1368 (build-system r-build-system)
1369 (propagated-inputs `(("r-sp" ,r-sp)))
1370 (home-page "https://cran.r-project.org/web/packages/geosphere")
1371 (synopsis "Spherical trigonometry")
1372 (description "This package computes spherical trigonometry for geographic
1373 applications. That is, compute distances and related measures for angular
1374 (longitude/latitude) locations.")
1375 (license license:gpl3+)))
1376
1377 (define-public r-jpeg
1378 (package
1379 (name "r-jpeg")
1380 (version "0.1-8.1")
1381 (source
1382 (origin
1383 (method url-fetch)
1384 (uri (cran-uri "jpeg" version))
1385 (sha256
1386 (base32
1387 "1a8mi70x79a691r40yiw684jkg1mr9n8agkxlcksxcnrdybs9c0x"))))
1388 (build-system r-build-system)
1389 (inputs `(("libjpeg" ,libjpeg)))
1390 (home-page "https://www.rforge.net/jpeg/")
1391 (synopsis "Read and write JPEG images with R")
1392 (description "This package provides a way to read, write and display
1393 bitmap images stored in the JPEG format with R. It can read and write both
1394 files and in-memory raw vectors.")
1395 (license license:gpl2+)))
1396
1397 (define-public r-ggmap
1398 (package
1399 (name "r-ggmap")
1400 (version "3.0.0")
1401 (source
1402 (origin
1403 (method url-fetch)
1404 (uri (cran-uri "ggmap" version))
1405 (sha256
1406 (base32
1407 "13dmzl6z62pzjiffilarkji46vy0sacxa8a7mhrhc3biq3ylzhln"))))
1408 (build-system r-build-system)
1409 (propagated-inputs
1410 `(("r-bitops" ,r-bitops)
1411 ("r-digest" ,r-digest)
1412 ("r-dplyr" ,r-dplyr)
1413 ("r-ggplot2" ,r-ggplot2)
1414 ("r-glue" ,r-glue)
1415 ("r-httr" ,r-httr)
1416 ("r-jpeg" ,r-jpeg)
1417 ("r-magrittr" ,r-magrittr)
1418 ("r-plyr" ,r-plyr)
1419 ("r-png" ,r-png)
1420 ("r-purrr" ,r-purrr)
1421 ("r-rgooglemaps" ,r-rgooglemaps)
1422 ("r-rjson" ,r-rjson)
1423 ("r-scales" ,r-scales)
1424 ("r-stringr" ,r-stringr)
1425 ("r-tibble" ,r-tibble)
1426 ("r-tidyr" ,r-tidyr)))
1427 (home-page "https://github.com/dkahle/ggmap")
1428 (synopsis "Spatial visualization with ggplot2")
1429 (description "This package provides a collection of functions to visualize
1430 spatial data and models on top of static maps from various online sources (e.g
1431 Google Maps and Stamen Maps). It includes tools common to those tasks,
1432 including functions for geolocation and routing.")
1433 (license license:gpl2)))
1434
1435 (define-public r-haven
1436 (package
1437 (name "r-haven")
1438 (version "2.2.0")
1439 (source
1440 (origin
1441 (method url-fetch)
1442 (uri (cran-uri "haven" version))
1443 (sha256
1444 (base32
1445 "0g9d6mxqmrw2zdms78jpx2sx73pczlyy771v1h5hmxqz9sqyk7hr"))))
1446 (build-system r-build-system)
1447 (inputs
1448 `(("zlib" ,zlib)))
1449 (propagated-inputs
1450 `(("r-forcats" ,r-forcats)
1451 ("r-hms" ,r-hms)
1452 ("r-rcpp" ,r-rcpp)
1453 ("r-rlang" ,r-rlang)
1454 ("r-readr" ,r-readr)
1455 ("r-tibble" ,r-tibble)
1456 ("r-tidyselect" ,r-tidyselect)))
1457 (home-page "https://haven.tidyverse.org")
1458 (synopsis "Import and Export 'SPSS', 'Stata' and 'SAS' Files")
1459 (description
1460 "This package lets you mport foreign statistical formats into R via the
1461 embedded @url{https://github.com/WizardMac/ReadStat,ReadStat} C library.")
1462 (license license:expat)))
1463
1464 (define-public r-amap
1465 (package
1466 (name "r-amap")
1467 (version "0.8-18")
1468 (source (origin
1469 (method url-fetch)
1470 (uri (cran-uri "amap" version))
1471 (sha256
1472 (base32
1473 "0zpcb73w413na23f6giml9311jh0j0y766w2fh9i40d2h7bbvyvs"))))
1474 (build-system r-build-system)
1475 (native-inputs
1476 `(("gfortran" ,gfortran)))
1477 (home-page "http://mulcyber.toulouse.inra.fr/projects/amap/")
1478 (synopsis "Another multidimensional analysis package")
1479 (description "This package provides tools for clustering and principal
1480 component analysis (with robust methods, and parallelized functions).")
1481 (license license:gpl2+)))
1482
1483 (define-public r-ape
1484 (package
1485 (name "r-ape")
1486 (version "5.3")
1487 (source
1488 (origin
1489 (method url-fetch)
1490 (uri (cran-uri "ape" version))
1491 (sha256
1492 (base32
1493 "08wbk1kxhs32bmmvqlqanbdg1w235amd35k8m00fngsj9h9xzc08"))))
1494 (build-system r-build-system)
1495 (propagated-inputs
1496 `(("r-lattice" ,r-lattice)
1497 ("r-nlme" ,r-nlme)
1498 ("r-rcpp" ,r-rcpp)))
1499 (home-page "http://ape-package.ird.fr/")
1500 (synopsis "Analyses of phylogenetics and evolution")
1501 (description
1502 "This package provides functions for reading, writing, plotting, and
1503 manipulating phylogenetic trees, analyses of comparative data in a
1504 phylogenetic framework, ancestral character analyses, analyses of
1505 diversification and macroevolution, computing distances from DNA sequences,
1506 and several other tools.")
1507 (license license:gpl2+)))
1508
1509 (define-public r-abbyyr
1510 (package
1511 (name "r-abbyyr")
1512 (version "0.5.5")
1513 (source
1514 (origin
1515 (method url-fetch)
1516 (uri (cran-uri "abbyyR" version))
1517 (sha256
1518 (base32
1519 "1vldnd3dg89aj6a73nhirirqddbfdrnzhb5m3679i60sark8nk6r"))))
1520 (properties `((upstream-name . "abbyyR")))
1521 (build-system r-build-system)
1522 (propagated-inputs
1523 `(("r-curl" ,r-curl)
1524 ("r-httr" ,r-httr)
1525 ("r-plyr" ,r-plyr)
1526 ("r-progress" ,r-progress)
1527 ("r-readr" ,r-readr)
1528 ("r-xml" ,r-xml)))
1529 (home-page "https://github.com/soodoku/abbyyR")
1530 (synopsis "Access to Abbyy Optical Character Recognition (OCR) API")
1531 (description
1532 "This package provides tools to get text from images of text using Abbyy
1533 Cloud Optical Character Recognition (OCR) API. With abbyyyR, one can easily
1534 OCR images, barcodes, forms, documents with machine readable zones, e.g.
1535 passports and get the results in a variety of formats including plain text and
1536 XML. To learn more about the Abbyy OCR API, see @url{http://ocrsdk.com/}.")
1537 (license license:expat)))
1538
1539 (define-public r-colorspace
1540 (package
1541 (name "r-colorspace")
1542 (version "1.4-1")
1543 (source
1544 (origin
1545 (method url-fetch)
1546 (uri (cran-uri "colorspace" version))
1547 (sha256
1548 (base32 "0wyny3ah2d74hqv80s6imrarpna09gq3j9rjnz6zx2qg0lx72gb9"))))
1549 (build-system r-build-system)
1550 (home-page "https://cran.r-project.org/web/packages/colorspace")
1551 (synopsis "Color space manipulation")
1552 (description
1553 "This package carries out a mapping between assorted color spaces
1554 including RGB, HSV, HLS, CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB and polar
1555 CIELAB. Qualitative, sequential, and diverging color palettes based on HCL
1556 colors are provided.")
1557 (license license:bsd-3)))
1558
1559 (define-public r-glue
1560 (package
1561 (name "r-glue")
1562 (version "1.4.0")
1563 (source
1564 (origin
1565 (method url-fetch)
1566 (uri (cran-uri "glue" version))
1567 (sha256
1568 (base32
1569 "1hb9j2519jv9zgkgjb25hnqi22i7zxnaksqd16m4nxa1f6gl0v7a"))))
1570 (build-system r-build-system)
1571 ;; knitr depends on glue, so we can't add knitr here to build the
1572 ;; vignettes.
1573 #;
1574 (native-inputs
1575 `(("r-knitr" ,r-knitr)))
1576 (home-page "https://github.com/tidyverse/glue")
1577 (synopsis "Interpreted string literals")
1578 (description
1579 "This package provides an implementation of interpreted string literals,
1580 inspired by Python's Literal String Interpolation (PEP-0498) and
1581 Docstrings (PEP-0257) and Julia's Triple-Quoted String Literals.")
1582 (license license:expat)))
1583
1584 (define-public r-pastecs
1585 (package
1586 (name "r-pastecs")
1587 (version "1.3.21")
1588 (source (origin
1589 (method url-fetch)
1590 (uri (cran-uri "pastecs" version))
1591 (sha256
1592 (base32
1593 "0z4dic94ar646w7zc2ggi5hgvf2qnznsani94c5pyql8zspz47lc"))))
1594 (build-system r-build-system)
1595 (propagated-inputs
1596 `(("r-boot" ,r-boot)))
1597 (home-page "http://www.sciviews.org/pastecs")
1598 (synopsis "Analysis of space-time ecological series")
1599 (description
1600 "This package provides functions for regulation, decomposition and analysis
1601 of space-time series. The @code{pastecs} library is a PNEC-Art4 and IFREMER
1602 initiative to bring PASSTEC 2000 functionalities to R.")
1603 (license license:gpl2+)))
1604
1605 (define-public r-plogr
1606 (package
1607 (name "r-plogr")
1608 (version "0.2.0")
1609 (source
1610 (origin
1611 (method url-fetch)
1612 (uri (cran-uri "plogr" version))
1613 (sha256
1614 (base32
1615 "0a8dhzlna79ggyhfr0nncgh15a9n6r0dsz664pz0ah323wpblqqf"))))
1616 (build-system r-build-system)
1617 (home-page "https://github.com/krlmlr/plogr")
1618 (synopsis "R bindings for the plog C++ logging library")
1619 (description
1620 "This package provides the header files for a stripped-down version of
1621 the plog header-only C++ logging library, and a method to log to R's standard
1622 error stream.")
1623 (license license:expat)))
1624
1625 (define-public r-pls
1626 (package
1627 (name "r-pls")
1628 (version "2.7-2")
1629 (source
1630 (origin
1631 (method url-fetch)
1632 (uri (cran-uri "pls" version))
1633 (sha256
1634 (base32 "121byimd6bg7jbrq5wz5fpi0vxq0vh8g724vkhnjzszbvcv1xsb7"))))
1635 (build-system r-build-system)
1636 (home-page "https://mevik.net/work/software/pls.html")
1637 (synopsis "Partial Least Squares and Principal Component Regression")
1638 (description
1639 "The pls package implements multivariate regression methods: Partial Least
1640 Squares Regression (@dfn{PLSR}), Principal Component Regression (@dfn{PCR}), and
1641 Canonical Powered Partial Least Squares (@dfn{CPPLS}). It supports:
1642
1643 @itemize
1644 @item several algorithms: the traditional orthogonal scores (@dfn{NIPALS}) PLS
1645 algorithm, kernel PLS, wide kernel PLS, Simpls, and PCR through @code{svd}
1646 @item multi-response models (or @dfn{PLS2})
1647 @item flexible cross-validation
1648 @item Jackknife variance estimates of regression coefficients
1649 @item extensive and flexible plots: scores, loadings, predictions, coefficients,
1650 (R)MSEP, R², and correlation loadings
1651 @item formula interface, modelled after @code{lm()}, with methods for predict,
1652 print, summary, plot, update, etc.
1653 @item extraction functions for coefficients, scores, and loadings
1654 @item MSEP, RMSEP, and R² estimates
1655 @item multiplicative scatter correction (@dfn{MSC})
1656 @end itemize\n")
1657 (license license:gpl2)))
1658
1659 (define-public r-ps
1660 (package
1661 (name "r-ps")
1662 (version "1.3.2")
1663 (source
1664 (origin
1665 (method url-fetch)
1666 (uri (cran-uri "ps" version))
1667 (sha256
1668 (base32 "0127q6pw9iw8hhcfp231gmdh29nahh2n5jzc38avrzy7yrm4bwl9"))))
1669 (build-system r-build-system)
1670 (home-page "https://ps.r-lib.org")
1671 (synopsis "List, query, and manipulate system processes")
1672 (description
1673 "The ps package implements an API to list, query, and manipulate system
1674 processes. Most of its code is based on the @code{psutil} Python package.")
1675 (license license:bsd-3)))
1676
1677 (define-public r-pkgbuild
1678 (package
1679 (name "r-pkgbuild")
1680 (version "1.0.6")
1681 (source
1682 (origin
1683 (method url-fetch)
1684 (uri (cran-uri "pkgbuild" version))
1685 (sha256
1686 (base32 "0xnlz6ivhkbmncg9hfw5p69lm4rjy3wn5lyxmygxyf4rrfnnqwxx"))))
1687 (build-system r-build-system)
1688 (propagated-inputs
1689 `(("r-callr" ,r-callr)
1690 ("r-cli" ,r-cli)
1691 ("r-crayon" ,r-crayon)
1692 ("r-desc" ,r-desc)
1693 ("r-prettyunits" ,r-prettyunits)
1694 ("r-r6" ,r-r6)
1695 ("r-rprojroot" ,r-rprojroot)
1696 ("r-withr" ,r-withr)))
1697 (home-page "https://github.com/r-pkgs/pkgbuild")
1698 (synopsis "Find tools needed to build R packages")
1699 (description
1700 "This package provides functions used to build R packages. It locates
1701 compilers needed to build R packages on various platforms and ensures the PATH
1702 is configured appropriately so R can use them.")
1703 (license license:gpl3)))
1704
1705 (define-public r-pkgload
1706 (package
1707 (name "r-pkgload")
1708 (version "1.0.2")
1709 (source
1710 (origin
1711 (method url-fetch)
1712 (uri (cran-uri "pkgload" version))
1713 (sha256
1714 (base32
1715 "0z7jvharafahi2gv5547mk1n499isjzw06kfwymmxc0gd575d1ii"))))
1716 (build-system r-build-system)
1717 (propagated-inputs
1718 `(("r-desc" ,r-desc)
1719 ("r-pkgbuild" ,r-pkgbuild)
1720 ("r-rlang" ,r-rlang)
1721 ("r-rprojroot" ,r-rprojroot)
1722 ("r-rstudioapi" ,r-rstudioapi)
1723 ("r-withr" ,r-withr)))
1724 (home-page "https://github.com/r-lib/pkgload")
1725 (synopsis "Simulate package installation and attach")
1726 (description
1727 "This package simulates the process of installing a package and then
1728 attaching it. This is a key part of the @code{devtools} package as it allows
1729 you to rapidly iterate while developing a package.")
1730 (license license:gpl3)))
1731
1732 (define-public r-rcpp
1733 (package
1734 (name "r-rcpp")
1735 (version "1.0.4.6")
1736 (source
1737 (origin
1738 (method url-fetch)
1739 (uri (cran-uri "Rcpp" version))
1740 (sha256
1741 (base32 "00mk23zmrqn1c4mk9d6csjcbnl12wd7yicjk2ikmw5dyvdfngbs5"))))
1742 (build-system r-build-system)
1743 (home-page "http://www.rcpp.org")
1744 (synopsis "Seamless R and C++ integration")
1745 (description
1746 "The Rcpp package provides R functions as well as C++ classes which offer
1747 a seamless integration of R and C++. Many R data types and objects can be
1748 mapped back and forth to C++ equivalents which facilitates both writing of new
1749 code as well as easier integration of third-party libraries. Documentation
1750 about Rcpp is provided by several vignettes included in this package, via the
1751 @code{Rcpp Gallery} site at <http://gallery.rcpp.org>, the paper by Eddelbuettel
1752 and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see
1753 @code{citation(\"Rcpp\")} for details on these last two.")
1754 (license license:gpl2+)))
1755
1756 (define-public r-bindr
1757 (package
1758 (name "r-bindr")
1759 (version "0.1.1")
1760 (source
1761 (origin
1762 (method url-fetch)
1763 (uri (cran-uri "bindr" version))
1764 (sha256
1765 (base32
1766 "1l05fpk2yql3jka321c0bdgx6mqq9pvfrg2844lbjfpbgjkmqy3w"))))
1767 (build-system r-build-system)
1768 (home-page "https://github.com/krlmlr/bindr")
1769 (synopsis "Parametrized active bindings")
1770 (description
1771 "This package provides a simple interface for creating active bindings
1772 where the bound function accepts additional arguments.")
1773 (license license:expat)))
1774
1775 (define-public r-bindrcpp
1776 (package
1777 (name "r-bindrcpp")
1778 (version "0.2.2")
1779 (source
1780 (origin
1781 (method url-fetch)
1782 (uri (cran-uri "bindrcpp" version))
1783 (sha256
1784 (base32
1785 "0rz4ibjdjsxl99ff3ha79z7cnjmilx4rx58fk9kk7ld9xc4hf4s8"))))
1786 (build-system r-build-system)
1787 (propagated-inputs
1788 `(("r-bindr" ,r-bindr)
1789 ("r-plogr" ,r-plogr)
1790 ("r-rcpp" ,r-rcpp)))
1791 (home-page "https://github.com/krlmlr/bindrcpp")
1792 (synopsis "Rcpp interface to active bindings")
1793 (description
1794 "This package provides an easy way to fill an environment with active
1795 bindings that call a C++ function.")
1796 (license license:expat)))
1797
1798 (define-public r-auc
1799 (package
1800 (name "r-auc")
1801 (version "0.3.0")
1802 (source
1803 (origin
1804 (method url-fetch)
1805 (uri (cran-uri "AUC" version))
1806 (sha256
1807 (base32
1808 "0ripcib2qz0m7rgr1kiz68nx8f6p408l1ww7j78ljqik7p3g41g7"))))
1809 (properties `((upstream-name . "AUC")))
1810 (build-system r-build-system)
1811 (home-page "https://cran.r-project.org/web/packages/AUC")
1812 (synopsis "Compute the area under the curve of selected measures")
1813 (description
1814 "This package includes functions to compute the area under the curve of
1815 selected measures: the area under the sensitivity curve (AUSEC), the area
1816 under the specificity curve (AUSPC), the area under the accuracy
1817 curve (AUACC), and the area under the receiver operating characteristic
1818 curve (AUROC). The curves can also be visualized. Support for partial areas
1819 is provided.")
1820 (license license:gpl2+)))
1821
1822 (define-public r-calibrate
1823 (package
1824 (name "r-calibrate")
1825 (version "1.7.5")
1826 (source
1827 (origin
1828 (method url-fetch)
1829 (uri (cran-uri "calibrate" version))
1830 (sha256
1831 (base32 "1s423nr176l2sc66wp7hzgqkv7c2bq8d2bjrrvrrm5qa9y3zdx1k"))))
1832 (build-system r-build-system)
1833 (propagated-inputs
1834 `(("r-mass" ,r-mass)))
1835 (home-page "https://cran.r-project.org/web/packages/calibrate")
1836 (synopsis "Calibration of scatterplot and biplot axes")
1837 (description
1838 "This is a package for drawing calibrated scales with tick marks
1839 on (non-orthogonal) variable vectors in scatterplots and biplots.")
1840 (license license:gpl2)))
1841
1842 (define-public r-shape
1843 (package
1844 (name "r-shape")
1845 (version "1.4.4")
1846 (source
1847 (origin
1848 (method url-fetch)
1849 (uri (cran-uri "shape" version))
1850 (sha256
1851 (base32
1852 "0hadk3mapkhbh8xjkiz52vxdagmmgvm15xwpzb90ikw4giyipjzl"))))
1853 (build-system r-build-system)
1854 (home-page "https://cran.r-project.org/web/packages/shape")
1855 (synopsis "Functions for plotting graphical shapes")
1856 (description
1857 "This package provides functions for plotting graphical shapes such as
1858 ellipses, circles, cylinders, arrows, ...")
1859 (license license:gpl3+)))
1860
1861 (define-public r-globaloptions
1862 (package
1863 (name "r-globaloptions")
1864 (version "0.1.1")
1865 (source
1866 (origin
1867 (method url-fetch)
1868 (uri (cran-uri "GlobalOptions" version))
1869 (sha256
1870 (base32 "0x89hfz80avq4zcskxl71i4zi0mgniqqxfrvz050aa2189wfyja2"))))
1871 (properties `((upstream-name . "GlobalOptions")))
1872 (build-system r-build-system)
1873 (home-page "https://github.com/jokergoo/GlobalOptions")
1874 (synopsis "Generate functions to get or set global options")
1875 (description
1876 "This package provides more controls on the option values such as
1877 validation and filtering on the values, making options invisible or private.")
1878 (license license:gpl2+)))
1879
1880 (define-public r-circlize
1881 (package
1882 (name "r-circlize")
1883 (version "0.4.8")
1884 (source
1885 (origin
1886 (method url-fetch)
1887 (uri (cran-uri "circlize" version))
1888 (sha256
1889 (base32
1890 "0jvr9hmxyhg0zx101iiqkrg8wfaj86kp62xpv42n2j9fkn5r1mi2"))))
1891 (build-system r-build-system)
1892 (propagated-inputs
1893 `(("r-colorspace" ,r-colorspace)
1894 ("r-globaloptions" ,r-globaloptions)
1895 ("r-shape" ,r-shape)))
1896 (home-page "https://github.com/jokergoo/circlize")
1897 (synopsis "Circular visualization")
1898 (description
1899 "Circular layout is an efficient way to visualise huge amounts of
1900 information. This package provides an implementation of circular layout
1901 generation in R as well as an enhancement of available software. Its
1902 flexibility is based on the usage of low-level graphics functions such that
1903 self-defined high-level graphics can be easily implemented by users for
1904 specific purposes. Together with the seamless connection between the powerful
1905 computational and visual environment in R, it gives users more convenience and
1906 freedom to design figures for better understanding complex patterns behind
1907 multi-dimensional data.")
1908 (license license:gpl2+)))
1909
1910 (define-public r-powerlaw
1911 (package
1912 (name "r-powerlaw")
1913 (version "0.70.4")
1914 (source
1915 (origin
1916 (method url-fetch)
1917 (uri (cran-uri "poweRlaw" version))
1918 (sha256
1919 (base32 "19zah9mx93az5lh9vicn3c8q1xb12g0w46dh5p901fbyimc32vwk"))))
1920 (properties `((upstream-name . "poweRlaw")))
1921 (build-system r-build-system)
1922 (propagated-inputs
1923 `(("r-vgam" ,r-vgam)))
1924 (home-page "https://github.com/csgillespie/poweRlaw")
1925 (synopsis "Tools for the analysis of heavy tailed distributions")
1926 (description
1927 "This package provides an implementation of maximum likelihood estimators
1928 for a variety of heavy tailed distributions, including both the discrete and
1929 continuous power law distributions. Additionally, a goodness-of-fit based
1930 approach is used to estimate the lower cut-off for the scaling region.")
1931 ;; Any of these GPL versions.
1932 (license (list license:gpl2 license:gpl3))))
1933
1934 (define-public r-compare
1935 (package
1936 (name "r-compare")
1937 (version "0.2-6")
1938 (source
1939 (origin
1940 (method url-fetch)
1941 (uri (cran-uri "compare" version))
1942 (sha256
1943 (base32
1944 "0k9zms930b5dz9gy8414li21wy0zg9x9vp7301v5cvyfi0g7xzgw"))))
1945 (build-system r-build-system)
1946 (home-page "https://cran.r-project.org/web/packages/compare")
1947 (synopsis "Comparing objects for differences")
1948 (description
1949 "This package provides functions to compare a model object to a
1950 comparison object. If the objects are not identical, the functions can be
1951 instructed to explore various modifications of the objects (e.g., sorting
1952 rows, dropping names) to see if the modified versions are identical.")
1953 (license license:gpl2+)))
1954
1955 (define-public r-dendextend
1956 (package
1957 (name "r-dendextend")
1958 (version "1.13.4")
1959 (source
1960 (origin
1961 (method url-fetch)
1962 (uri (cran-uri "dendextend" version))
1963 (sha256
1964 (base32
1965 "1pjbz6sb4pgh3d5pm53vmf3q8y6lq3hrgjd6547xxs3m63sb8mn4"))))
1966 (build-system r-build-system)
1967 (propagated-inputs
1968 `(("r-ggplot2" ,r-ggplot2)
1969 ("r-magrittr" ,r-magrittr)
1970 ("r-viridis" ,r-viridis)))
1971 (home-page "https://cran.r-project.org/web/packages/dendextend")
1972 (synopsis "Extending 'dendrogram' functionality in R")
1973 (description
1974 "This package offers a set of functions for extending @code{dendrogram}
1975 objects in R, letting you visualize and compare trees of hierarchical
1976 clusterings. You can adjust a tree's graphical parameters (the color, size,
1977 type, etc of its branches, nodes and labels) and visually and statistically
1978 compare different dendrograms to one another.")
1979 ;; Any of these versions
1980 (license (list license:gpl2 license:gpl3))))
1981
1982 (define-public r-getoptlong
1983 (package
1984 (name "r-getoptlong")
1985 (version "0.1.8")
1986 (source
1987 (origin
1988 (method url-fetch)
1989 (uri (cran-uri "GetoptLong" version))
1990 (sha256
1991 (base32
1992 "1l8xkvyl152bsyvxazsvx2sm1vkygn75x0lsg3sbg7xp6drdn3kc"))))
1993 (properties `((upstream-name . "GetoptLong")))
1994 (build-system r-build-system)
1995 (inputs
1996 `(("perl" ,perl)))
1997 (propagated-inputs
1998 `(("r-globaloptions" ,r-globaloptions)
1999 ("r-rjson" ,r-rjson)))
2000 (home-page "https://github.com/jokergoo/GetoptLong")
2001 (synopsis "Parsing command-line arguments and variable interpolation")
2002 (description
2003 "This is yet another command-line argument parser which wraps the
2004 powerful Perl module @code{Getopt::Long} and with some adaptation for easier
2005 use in R. It also provides a simple way for variable interpolation in R.")
2006 (license license:gpl2+)))
2007
2008 (define-public r-fastmatch
2009 (package
2010 (name "r-fastmatch")
2011 (version "1.1-0")
2012 (source
2013 (origin
2014 (method url-fetch)
2015 (uri (cran-uri "fastmatch" version))
2016 (sha256
2017 (base32
2018 "0z80jxkygmzn11sq0c2iz357s9bpki548lg926g85gldhfj1md90"))))
2019 (build-system r-build-system)
2020 (home-page "https://www.rforge.net/fastmatch")
2021 (synopsis "Fast match function")
2022 (description
2023 "This package provides a fast @code{match} replacement for cases that
2024 require repeated look-ups. It is slightly faster that R's built-in
2025 @code{match} function on first match against a table, but extremely fast on
2026 any subsequent lookup as it keeps the hash table in memory.")
2027 (license license:gpl2)))
2028
2029 (define-public r-ff
2030 (package
2031 (name "r-ff")
2032 (version "2.2-14")
2033 (source
2034 (origin
2035 (method url-fetch)
2036 (uri (cran-uri "ff" version))
2037 (sha256
2038 (base32
2039 "1w724q4jpzbvzpilb2ifviaxkjgk9lzwxz9gksnvicbmfa20fqqw"))))
2040 (build-system r-build-system)
2041 (propagated-inputs `(("r-bit" ,r-bit)))
2042 (home-page "http://ff.r-forge.r-project.org/")
2043 (synopsis "Memory-efficient storage of large data on disk and access functions")
2044 (description
2045 "This package provides data structures that are stored on disk but
2046 behave (almost) as if they were in RAM by transparently mapping only a section
2047 in main memory.")
2048 ;; error Architecture not supported.
2049 (supported-systems (delete "aarch64-linux" %supported-systems))
2050 (license license:gpl2)))
2051
2052 (define-public r-ffbase
2053 (package
2054 (name "r-ffbase")
2055 (version "0.12.8")
2056 (source
2057 (origin
2058 (method url-fetch)
2059 (uri (cran-uri "ffbase" version))
2060 (sha256
2061 (base32
2062 "0mjk7dkq1ginqqfvngzny747ggf9a8fd7kblq96n5ys1jrwjyqhq"))))
2063 (build-system r-build-system)
2064 (propagated-inputs
2065 `(("r-bit" ,r-bit)
2066 ("r-fastmatch" ,r-fastmatch)
2067 ("r-ff" ,r-ff)))
2068 (home-page "http://github.com/edwindj/ffbase")
2069 (synopsis "Basic statistical functions for package 'ff'")
2070 (description
2071 "This package extends the out of memory vectors of @code{ff} with
2072 statistical functions and other utilities to ease their usage.")
2073 (license license:gpl3)))
2074
2075 (define-public r-prettyunits
2076 (package
2077 (name "r-prettyunits")
2078 (version "1.1.1")
2079 (source
2080 (origin
2081 (method url-fetch)
2082 (uri (cran-uri "prettyunits" version))
2083 (sha256
2084 (base32
2085 "1ibmzgknw5896q2i6r59jz2izblxwgb29ivvjzx50pkd1jl9l6cs"))))
2086 (build-system r-build-system)
2087 (home-page "https://github.com/gaborcsardi/prettyunits")
2088 (synopsis "Pretty, human readable formatting of quantities")
2089 (description
2090 "This package provides tools for pretty, human readable formatting of
2091 quantities.")
2092 (license license:expat)))
2093
2094 (define-public r-reshape
2095 (package
2096 (name "r-reshape")
2097 (version "0.8.8")
2098 (source
2099 (origin
2100 (method url-fetch)
2101 (uri (cran-uri "reshape" version))
2102 (sha256
2103 (base32
2104 "0s6i0sqxg1vldxs6miv8mi0zydxbqzgpmzfiwkj8y7jix3yrfmad"))))
2105 (build-system r-build-system)
2106 (propagated-inputs
2107 `(("r-plyr" ,r-plyr)
2108 ("r-rcpp" ,r-rcpp)))
2109 (home-page "http://had.co.nz/reshape")
2110 (synopsis "Flexibly reshape data")
2111 (description
2112 "Flexibly restructure and aggregate data using just two functions:
2113 @code{melt} and @code{cast}. This package provides them.")
2114 (license license:expat)))
2115
2116 (define-public r-progress
2117 (package
2118 (name "r-progress")
2119 (version "1.2.2")
2120 (source
2121 (origin
2122 (method url-fetch)
2123 (uri (cran-uri "progress" version))
2124 (sha256
2125 (base32
2126 "0dgzb362641aqm8xd88iqa8jmpdm43xs0aba0d5kk6fvapnxi95l"))))
2127 (build-system r-build-system)
2128 (propagated-inputs
2129 `(("r-crayon" ,r-crayon)
2130 ("r-hms" ,r-hms)
2131 ("r-prettyunits" ,r-prettyunits)
2132 ("r-r6" ,r-r6)))
2133 (home-page "https://github.com/gaborcsardi/progress")
2134 (synopsis "Terminal progress bars")
2135 (description
2136 "This package provides configurable progress bars. They may include
2137 percentage, elapsed time, and/or the estimated completion time. They work in
2138 terminals, in Emacs ESS, RStudio, Windows Rgui, and the macOS R.app. The
2139 package also provides a C++ API, that works with or without Rcpp.")
2140 (license license:expat)))
2141
2142 (define-public r-ggally
2143 (package
2144 (name "r-ggally")
2145 (version "1.5.0")
2146 (source
2147 (origin
2148 (method url-fetch)
2149 (uri (cran-uri "GGally" version))
2150 (sha256
2151 (base32
2152 "082s321zspg5al6acigwrhg4fsrmkkk5caabg662qbcy8v6n34h6"))))
2153 (properties `((upstream-name . "GGally")))
2154 (build-system r-build-system)
2155 (inputs
2156 `(("libressl" ,libressl)))
2157 (propagated-inputs
2158 `(("r-ggplot2" ,r-ggplot2)
2159 ("r-gtable" ,r-gtable)
2160 ("r-plyr" ,r-plyr)
2161 ("r-progress" ,r-progress)
2162 ("r-rcolorbrewer" ,r-rcolorbrewer)
2163 ("r-reshape" ,r-reshape)
2164 ("r-rlang" ,r-rlang)))
2165 (home-page "https://ggobi.github.io/ggally")
2166 (synopsis "Extension to ggplot2")
2167 (description
2168 "The R package ggplot2 is a plotting system based on the grammar of
2169 graphics. GGally extends ggplot2 by adding several functions to reduce the
2170 complexity of combining geometric objects with transformed data. Some of
2171 these functions include a pairwise plot matrix, a two group pairwise plot
2172 matrix, a parallel coordinates plot, a survival plot, and several functions to
2173 plot networks.")
2174 (license license:gpl2+)))
2175
2176 (define-public r-proxy
2177 (package
2178 (name "r-proxy")
2179 (version "0.4-23")
2180 (source
2181 (origin
2182 (method url-fetch)
2183 (uri (cran-uri "proxy" version))
2184 (sha256
2185 (base32
2186 "17b6qfllqrhzrxqgx7dccffgybnkcria5a68ap5ly3plg04ypm4x"))))
2187 (build-system r-build-system)
2188 (home-page "https://cran.r-project.org/web/packages/proxy")
2189 (synopsis "Distance and similarity measures")
2190 (description
2191 "This package provides an extensible framework for the efficient
2192 calculation of auto- and cross-proximities, along with implementations of the
2193 most popular ones.")
2194 (license license:gpl2)))
2195
2196 (define-public r-sp
2197 (package
2198 (name "r-sp")
2199 (version "1.4-1")
2200 (source
2201 (origin
2202 (method url-fetch)
2203 (uri (cran-uri "sp" version))
2204 (sha256
2205 (base32 "0fbh865r4py89g6ln8bslig2vbxxwa642p5k5g02rskyhajg35lg"))))
2206 (build-system r-build-system)
2207 (propagated-inputs
2208 `(("r-lattice" ,r-lattice)))
2209 (home-page "https://cran.r-project.org/web/packages/sp")
2210 (synopsis "Classes and methods for spatial data")
2211 (description
2212 "This package provides classes and methods for spatial data; the classes
2213 document where the spatial location information resides, for 2D or 3D data.
2214 Utility functions are provided, e.g. for plotting data as maps, spatial
2215 selection, as well as methods for retrieving coordinates, for subsetting,
2216 print, summary, etc.")
2217 (license license:gpl2+)))
2218
2219 (define-public r-rmtstat
2220 (package
2221 (name "r-rmtstat")
2222 (version "0.3")
2223 (source
2224 (origin
2225 (method url-fetch)
2226 (uri (cran-uri "RMTstat" version))
2227 (sha256
2228 (base32
2229 "1nn25q4kmh9kj975sxkrpa97vh5irqrlqhwsfinbck6h6ia4rsw1"))))
2230 (properties `((upstream-name . "RMTstat")))
2231 (build-system r-build-system)
2232 (home-page "https://cran.r-project.org/web/packages/RMTstat")
2233 (synopsis "Distributions, statistics and tests derived from random matrix theory")
2234 (description
2235 "This package provides functions for working with the Tracy-Widom laws
2236 and other distributions related to the eigenvalues of large Wishart
2237 matrices.")
2238 (license license:bsd-3)))
2239
2240 (define-public r-rmpi
2241 (package
2242 (name "r-rmpi")
2243 (version "0.6-9")
2244 (source (origin
2245 (method url-fetch)
2246 (uri (cran-uri "Rmpi" version))
2247 (sha256
2248 (base32
2249 "1rhycla98hxgnnxlxxldr1x51djak7c2jjvlrv3jcsvgwp1ymqdj"))))
2250 (properties `((upstream-name . "Rmpi")))
2251 (build-system r-build-system)
2252 (arguments
2253 `(#:configure-flags '("--configure-args=\"--with-Rmpi-type=OPENMPI\"")
2254 #:phases (modify-phases %standard-phases
2255 (add-before 'install 'mpi-setup
2256 ,%openmpi-setup))))
2257 (inputs
2258 `(("openmpi" ,openmpi)))
2259 (native-inputs
2260 `(("pkg-config" ,pkg-config)))
2261 (home-page "http://www.stats.uwo.ca/faculty/yu/Rmpi")
2262 (synopsis "R interface to message-passing interface (MPI)")
2263 (description
2264 "This package provides an interface (wrapper) to MPI APIs. It also
2265 provides an interactive R manager and worker environment.")
2266 (license license:gpl2+)))
2267
2268 (define-public r-lmoments
2269 (package
2270 (name "r-lmoments")
2271 (version "1.3-1")
2272 (source
2273 (origin
2274 (method url-fetch)
2275 (uri (cran-uri "Lmoments" version))
2276 (sha256
2277 (base32
2278 "0pc63bj9a8hzr5m3yssrc4kin39fffwkl8rggs3sagzr12d4i7bw"))))
2279 (properties `((upstream-name . "Lmoments")))
2280 (build-system r-build-system)
2281 (propagated-inputs
2282 `(("r-rcpp" ,r-rcpp)
2283 ("r-rcpparmadillo" ,r-rcpparmadillo)))
2284 (home-page "http://www.tilastotiede.fi/juha_karvanen.html")
2285 (synopsis "L-moments and quantile mixtures")
2286 (description
2287 "This package contains functions to estimate L-moments and trimmed
2288 L-moments from the data. It also contains functions to estimate the
2289 parameters of the normal polynomial quantile mixture and the Cauchy polynomial
2290 quantile mixture from L-moments and trimmed L-moments.")
2291 (license license:gpl2)))
2292
2293 (define-public r-distillery
2294 (package
2295 (name "r-distillery")
2296 (version "1.0-6")
2297 (source
2298 (origin
2299 (method url-fetch)
2300 (uri (cran-uri "distillery" version))
2301 (sha256
2302 (base32
2303 "1mi3ig9jq0kd7yrwc5m37lmrw04p1b4lirnbsxi10z3n5yay4429"))))
2304 (build-system r-build-system)
2305 (home-page "https://ral.ucar.edu/staff/ericg/")
2306 (synopsis "Functions for confidence intervals and object information")
2307 (description
2308 "This package provides some very simple method functions for confidence
2309 interval calculation and to distill pertinent information from a potentially
2310 complex object; primarily used in common with the packages extRemes and
2311 SpatialVx.")
2312 (license license:gpl2+)))
2313
2314 (define-public r-extremes
2315 (package
2316 (name "r-extremes")
2317 (version "2.0-11")
2318 (source
2319 (origin
2320 (method url-fetch)
2321 (uri (cran-uri "extRemes" version))
2322 (sha256
2323 (base32
2324 "0hmgynxhzswqnhwb2sxrkczgam8c17s3vpxqc5bcz0bwczpxxyvm"))))
2325 (properties `((upstream-name . "extRemes")))
2326 (build-system r-build-system)
2327 (propagated-inputs
2328 `(("r-distillery" ,r-distillery)
2329 ("r-lmoments" ,r-lmoments)))
2330 (home-page "https://www.assessment.ucar.edu/toolkit/")
2331 (synopsis "Extreme value analysis")
2332 (description
2333 "ExtRemes is a suite of functions for carrying out analyses on the
2334 extreme values of a process of interest; be they block maxima over long blocks
2335 or excesses over a high threshold.")
2336 (license license:gpl2+)))
2337
2338 (define-public r-lmtest
2339 (package
2340 (name "r-lmtest")
2341 (version "0.9-37")
2342 (source
2343 (origin
2344 (method url-fetch)
2345 (uri (cran-uri "lmtest" version))
2346 (sha256
2347 (base32
2348 "02nasm0j2vwkhz11dxqixs23msy1s3yj0jps6949fmgh9gwjkjfx"))))
2349 (build-system r-build-system)
2350 (propagated-inputs
2351 `(("r-zoo" ,r-zoo)))
2352 (native-inputs
2353 `(("gfortran" ,gfortran)))
2354 (home-page "https://cran.r-project.org/web/packages/lmtest")
2355 (synopsis "Testing linear regression models")
2356 (description
2357 "This package provides a collection of tests, data sets, and examples for
2358 diagnostic checking in linear regression models. Furthermore, some generic
2359 tools for inference in parametric models are provided.")
2360 ;; Either version is okay
2361 (license (list license:gpl2 license:gpl3))))
2362
2363 (define-public r-idr
2364 (package
2365 (name "r-idr")
2366 (version "1.2")
2367 (source (origin
2368 (method url-fetch)
2369 (uri (cran-uri "idr" version))
2370 (sha256
2371 (base32
2372 "05nvgw1xdg670bsjjrxkgd1mrdkciccpw4krn0zcgdf2r21dzgwb"))))
2373 (build-system r-build-system)
2374 (home-page "https://cran.r-project.org/web/packages/idr/")
2375 (synopsis "Irreproducible discovery rate")
2376 (description
2377 "This is a package for estimating the copula mixture model and plotting
2378 correspondence curves in \"Measuring reproducibility of high-throughput
2379 experiments\" (2011), Annals of Applied Statistics, Vol. 5, No. 3, 1752-1779,
2380 by Li, Brown, Huang, and Bickel")
2381 (license license:gpl2+)))
2382
2383 (define-public r-inline
2384 (package
2385 (name "r-inline")
2386 (version "0.3.15")
2387 (source (origin
2388 (method url-fetch)
2389 (uri (cran-uri "inline" version))
2390 (sha256
2391 (base32
2392 "0s4wssvpan189fijahknxq5s22ww9bzmdlmyhnra748r7khky17z"))))
2393 (build-system r-build-system)
2394 (home-page "https://cran.r-project.org/web/packages/inline")
2395 (synopsis "Functions to inline C, C++, Fortran function calls from R")
2396 (description
2397 "This package provides functionality to dynamically define R functions
2398 and S4 methods with inlined C, C++ or Fortran code supporting @code{.C} and
2399 @code{.Call} calling conventions.")
2400 ;; Any version of the LGPL.
2401 (license license:lgpl3+)))
2402
2403 (define-public r-bdsmatrix
2404 (package
2405 (name "r-bdsmatrix")
2406 (version "1.3-4")
2407 (source
2408 (origin
2409 (method url-fetch)
2410 (uri (cran-uri "bdsmatrix" version))
2411 (sha256
2412 (base32
2413 "1sh6pg43rgqvips4fx0k4vmp5i9lmniix0bqwj2yq5m06gs227i5"))))
2414 (properties `((upstream-name . "bdsmatrix")))
2415 (build-system r-build-system)
2416 (home-page "https://cran.r-project.org/web/packages/bdsmatrix/")
2417 (synopsis "Routines for block diagonal symmetric matrices")
2418 (description
2419 "This package provides procedures to work with block diagonal symmetric
2420 matrices, a special case of sparse matrices.")
2421 (license license:lgpl2.0)))
2422
2423 (define-public r-bbmle
2424 (package
2425 (name "r-bbmle")
2426 (version "1.0.23.1")
2427 (source
2428 (origin
2429 (method url-fetch)
2430 (uri (cran-uri "bbmle" version))
2431 (sha256
2432 (base32
2433 "0p3l9shbr2846qmw8n0fyzf4j7gmi08aypl82jml3dwh26q1whk0"))))
2434 (build-system r-build-system)
2435 (propagated-inputs
2436 `(("r-bdsmatrix" ,r-bdsmatrix)
2437 ("r-lattice" ,r-lattice)
2438 ("r-mass" ,r-mass)
2439 ("r-matrix" ,r-matrix)
2440 ("r-mvtnorm" ,r-mvtnorm)
2441 ("r-numderiv" ,r-numderiv)))
2442 (home-page "https://cran.r-project.org/web/packages/bbmle")
2443 (synopsis "Tools for General Maximum Likelihood Estimation")
2444 (description
2445 "This package provides methods and functions for fitting maximum
2446 likelihood models in R. This package modifies and extends the @code{mle}
2447 classes in the @code{stats4} package.")
2448 ;; Any version of the GPL
2449 (license license:gpl2+)))
2450
2451 (define-public r-emdbook
2452 (package
2453 (name "r-emdbook")
2454 (version "1.3.12")
2455 (source
2456 (origin
2457 (method url-fetch)
2458 (uri (cran-uri "emdbook" version))
2459 (sha256
2460 (base32
2461 "0ls3zxxlwmdv7zn1v9i1y9zc2sn0hbgmyjvsj7zn3ajsw7wwlih6"))))
2462 (build-system r-build-system)
2463 (propagated-inputs
2464 `(("r-bbmle" ,r-bbmle)
2465 ("r-coda" ,r-coda)
2466 ("r-lattice" ,r-lattice)
2467 ("r-mass" ,r-mass)
2468 ("r-plyr" ,r-plyr)))
2469 (home-page "http://www.math.mcmaster.ca/bolker/emdbook")
2470 (synopsis "Support functions and data for \"Ecological Models and Data\"")
2471 (description
2472 "This package provides auxiliary functions and data sets for \"Ecological
2473 Models and Data\", a book presenting maximum likelihood estimation and related
2474 topics for ecologists (ISBN 978-0-691-12522-0).")
2475 ;; Any GPL version
2476 (license (list license:gpl2 license:gpl3))))
2477
2478 (define-public r-lpsolve
2479 (package
2480 (name "r-lpsolve")
2481 (version "5.6.15")
2482 (source
2483 (origin
2484 (method url-fetch)
2485 (uri (cran-uri "lpSolve" version))
2486 (sha256
2487 (base32
2488 "1fpkyjyqykwa1dxnhiky01pm09syxg169lm7hpy39bdbg10vw9s6"))))
2489 (properties `((upstream-name . "lpSolve")))
2490 (build-system r-build-system)
2491 (home-page "https://cran.r-project.org/web/packages/lpSolve")
2492 (synopsis "R interface to Lp_solve to solve linear/integer programs")
2493 (description
2494 "Lp_solve is software for solving linear, integer and mixed integer
2495 programs. This implementation supplies a \"wrapper\" function in C and some R
2496 functions that solve general linear/integer problems, assignment problems, and
2497 transportation problems.")
2498 (license license:lgpl2.0)))
2499
2500 (define-public r-limsolve
2501 (package
2502 (name "r-limsolve")
2503 (version "1.5.6")
2504 (source
2505 (origin
2506 (method url-fetch)
2507 (uri (cran-uri "limSolve" version))
2508 (sha256
2509 (base32
2510 "1829rd2cnd8qj80z9a7sgc7gx4sf3kvl5g6d2a0lqqw30f9sjzmr"))))
2511 (properties `((upstream-name . "limSolve")))
2512 (build-system r-build-system)
2513 (propagated-inputs
2514 `(("r-lpsolve" ,r-lpsolve)
2515 ("r-mass" ,r-mass)
2516 ("r-quadprog" ,r-quadprog)))
2517 (native-inputs `(("gfortran" ,gfortran)))
2518 (home-page "https://cran.r-project.org/web/packages/limSolve")
2519 (synopsis "Solving linear inverse models")
2520 (description
2521 "This package provides functions that:
2522
2523 @enumerate
2524 @item find the minimum/maximum of a linear or quadratic function,
2525 @item sample an underdetermined or overdetermined system,
2526 @item solve a linear system Ax=B for the unknown x.
2527 @end enumerate
2528
2529 It includes banded and tridiagonal linear systems. The package calls Fortran
2530 functions from LINPACK.")
2531 ;; Any GPL version.
2532 (license (list license:gpl2+ license:gpl3+))))
2533
2534 (define-public r-fitdistrplus
2535 (package
2536 (name "r-fitdistrplus")
2537 (version "1.0-14")
2538 (source
2539 (origin
2540 (method url-fetch)
2541 (uri (cran-uri "fitdistrplus" version))
2542 (sha256
2543 (base32
2544 "10q08wsv8v3w7797jdvvv60bgrf1bi6438wf0jcqv81ays82a245"))))
2545 (build-system r-build-system)
2546 (propagated-inputs
2547 `(("r-mass" ,r-mass)
2548 ("r-npsurv" ,r-npsurv)
2549 ("r-survival" ,r-survival)))
2550 (home-page "http://riskassessment.r-forge.r-project.org")
2551 (synopsis "Fitting a parametric distribution from data")
2552 (description
2553 "This package extends the @code{fitdistr} function of the MASS package
2554 with several functions to help the fit of a parametric distribution to
2555 non-censored or censored data. Censored data may contain left-censored,
2556 right-censored and interval-censored values, with several lower and upper
2557 bounds. In addition to @dfn{maximum likelihood estimation} (MLE), the package
2558 provides moment matching (MME), quantile matching (QME) and maximum
2559 goodness-of-fit estimation (MGE) methods (available only for non-censored
2560 data). Weighted versions of MLE, MME and QME are available.")
2561 (license license:gpl2+)))
2562
2563 (define-public r-energy
2564 (package
2565 (name "r-energy")
2566 (version "1.7-7")
2567 (source
2568 (origin
2569 (method url-fetch)
2570 (uri (cran-uri "energy" version))
2571 (sha256
2572 (base32
2573 "13wnx5nwk7nsv7vf5sxhz4y0rxrnzm76ldgywk1bxrz67srqzf37"))))
2574 (build-system r-build-system)
2575 (propagated-inputs
2576 `(("r-boot" ,r-boot)
2577 ("r-rcpp" ,r-rcpp)))
2578 (home-page "https://cran.r-project.org/web/packages/energy")
2579 (synopsis "Multivariate inference via the energy of data")
2580 (description
2581 "This package provides e-statistics (energy) tests and statistics for
2582 multivariate and univariate inference, including distance correlation,
2583 one-sample, two-sample, and multi-sample tests for comparing multivariate
2584 distributions, are implemented. Measuring and testing multivariate
2585 independence based on distance correlation, partial distance correlation,
2586 multivariate goodness-of-fit tests, clustering based on energy distance,
2587 testing for multivariate normality, distance components (disco) for
2588 non-parametric analysis of structured data, and other energy
2589 statistics/methods are implemented.")
2590 (license license:gpl2+)))
2591
2592 (define-public r-suppdists
2593 (package
2594 (name "r-suppdists")
2595 (version "1.1-9.5")
2596 (source
2597 (origin
2598 (method url-fetch)
2599 (uri (cran-uri "SuppDists" version))
2600 (sha256
2601 (base32
2602 "01j6p94m1g363nph2158fq2rmd6z3h5dvcv6aidh2d6syw131xak"))))
2603 (properties `((upstream-name . "SuppDists")))
2604 (build-system r-build-system)
2605 (home-page "https://cran.r-project.org/web/packages/SuppDists")
2606 (synopsis "Supplementary distributions")
2607 (description
2608 "This package provides ten distributions supplementing those built into
2609 R. Inverse Gauss, Kruskal-Wallis, Kendall's Tau, Friedman's chi squared,
2610 Spearman's rho, maximum F ratio, the Pearson product moment correlation
2611 coefficient, Johnson distributions, normal scores and generalized
2612 hypergeometric distributions. In addition two random number generators of
2613 George Marsaglia are included.")
2614 (license license:gpl2+)))
2615
2616 (define-public r-ksamples
2617 (package
2618 (name "r-ksamples")
2619 (version "1.2-9")
2620 (source
2621 (origin
2622 (method url-fetch)
2623 (uri (cran-uri "kSamples" version))
2624 (sha256
2625 (base32
2626 "1zs22p68d6320kcylisnk0b5wmpapxkyz15py09czxzw7npw8gms"))))
2627 (properties `((upstream-name . "kSamples")))
2628 (build-system r-build-system)
2629 (propagated-inputs
2630 `(("r-suppdists" ,r-suppdists)))
2631 (home-page "https://cran.r-project.org/web/packages/kSamples")
2632 (synopsis "K-Sample rank tests and their combinations")
2633 (description
2634 "This package provides tools to compares k samples using the
2635 Anderson-Darling test, Kruskal-Wallis type tests with different rank score
2636 criteria, Steel's multiple comparison test, and the Jonckheere-Terpstra (JT)
2637 test. It computes asymptotic, simulated or (limited) exact P-values, all
2638 valid under randomization, with or without ties, or conditionally under random
2639 sampling from populations, given the observed tie pattern. Except for Steel's
2640 test and the JT test it also combines these tests across several blocks of
2641 samples.")
2642 (license license:gpl2+)))
2643
2644 (define-public r-cvst
2645 (package
2646 (name "r-cvst")
2647 (version "0.2-2")
2648 (source
2649 (origin
2650 (method url-fetch)
2651 (uri (cran-uri "CVST" version))
2652 (sha256
2653 (base32
2654 "05l3yzkfrbds09ah9cdwn2sn4ryhq78lz33ryzrgkv176jc8qjw5"))))
2655 (properties `((upstream-name . "CVST")))
2656 (build-system r-build-system)
2657 (propagated-inputs
2658 `(("r-kernlab" ,r-kernlab)
2659 ("r-matrix" ,r-matrix)))
2660 (home-page "https://cran.r-project.org/web/packages/CVST")
2661 (synopsis "Fast cross-validation via sequential testing")
2662 (description
2663 "This package implements the fast cross-validation via sequential
2664 testing (CVST) procedure. CVST is an improved cross-validation procedure
2665 which uses non-parametric testing coupled with sequential analysis to
2666 determine the best parameter set on linearly increasing subsets of the data.
2667 Additionally to the CVST the package contains an implementation of the
2668 ordinary k-fold cross-validation with a flexible and powerful set of helper
2669 objects and methods to handle the overall model selection process. The
2670 implementations of the Cochran's Q test with permutations and the sequential
2671 testing framework of Wald are generic and can therefore also be used in other
2672 contexts.")
2673 (license license:gpl2+)))
2674
2675 (define-public r-squarem
2676 (package
2677 (name "r-squarem")
2678 (version "2020.2")
2679 (source
2680 (origin
2681 (method url-fetch)
2682 (uri (cran-uri "SQUAREM" version))
2683 (sha256
2684 (base32
2685 "1j6sa93xjvynnzx9jx79a3fysbykmbqyknknsqif5bcha6xp6cvf"))))
2686 (properties `((upstream-name . "SQUAREM")))
2687 (build-system r-build-system)
2688 (home-page "https://coah.jhu.edu/people/Faculty_personal_Pages/Varadhan.html")
2689 (synopsis "Squared Extrapolation Methods for Accelerating EM-Like Monotone Algorithms")
2690 (description
2691 "This package provides algorithms for accelerating the convergence of
2692 slow, monotone sequences from smooth, contraction mapping such as the EM
2693 algorithm. It can be used to accelerate any smooth, linearly convergent
2694 acceleration scheme. A tutorial style introduction to this package is
2695 available in a vignette.")
2696 (license license:gpl2+)))
2697
2698 (define-public r-lava
2699 (package
2700 (name "r-lava")
2701 (version "1.6.7")
2702 (source
2703 (origin
2704 (method url-fetch)
2705 (uri (cran-uri "lava" version))
2706 (sha256
2707 (base32
2708 "0ffzxbb8pvfh1m6j61az4ga37snyhylq2941fyc76w7w9i2sixv3"))))
2709 (build-system r-build-system)
2710 (propagated-inputs
2711 `(("r-numderiv" ,r-numderiv)
2712 ("r-squarem" ,r-squarem)
2713 ("r-survival" ,r-survival)))
2714 (home-page "https://github.com/kkholst/lava")
2715 (synopsis "Latent variable models")
2716 (description
2717 "This package provides tools for the estimation and simulation of latent
2718 variable models.")
2719 (license license:gpl3)))
2720
2721 (define-public r-drr
2722 (package
2723 (name "r-drr")
2724 (version "0.0.4")
2725 (source
2726 (origin
2727 (method url-fetch)
2728 (uri (cran-uri "DRR" version))
2729 (sha256
2730 (base32
2731 "1y70si1gig4l7jx5jiqsqliyywfsvimkx53x3zh1lc3yj2j6bqwk"))))
2732 (properties `((upstream-name . "DRR")))
2733 (build-system r-build-system)
2734 (propagated-inputs
2735 `(("r-cvst" ,r-cvst)
2736 ("r-kernlab" ,r-kernlab)
2737 ("r-matrix" ,r-matrix)))
2738 (home-page "https://cran.r-project.org/web/packages/DRR")
2739 (synopsis "Dimensionality reduction via regression")
2740 (description
2741 "This package provides an implementation of dimensionality reduction via
2742 regression using Kernel Ridge Regression.")
2743 (license license:gpl3)))
2744
2745 (define-public r-prodlim
2746 (package
2747 (name "r-prodlim")
2748 (version "2019.11.13")
2749 (source
2750 (origin
2751 (method url-fetch)
2752 (uri (cran-uri "prodlim" version))
2753 (sha256
2754 (base32
2755 "03wvh3kirp1prac5nky6a5whs97rvaf4hc27x0fnh51sa17r42b8"))))
2756 (build-system r-build-system)
2757 (propagated-inputs
2758 `(("r-kernsmooth" ,r-kernsmooth)
2759 ("r-lava" ,r-lava)
2760 ("r-rcpp" ,r-rcpp)
2761 ("r-survival" ,r-survival)))
2762 (home-page "https://cran.r-project.org/web/packages/prodlim")
2763 (synopsis "Product-limit estimation for censored event history analysis")
2764 (description
2765 "This package provides a fast and user-friendly implementation of
2766 nonparametric estimators for censored event history (survival) analysis with
2767 the Kaplan-Meier and Aalen-Johansen methods.")
2768 (license license:gpl2+)))
2769
2770 (define-public r-dimred
2771 (package
2772 (name "r-dimred")
2773 (version "0.2.3")
2774 (source
2775 (origin
2776 (method url-fetch)
2777 (uri (cran-uri "dimRed" version))
2778 (sha256
2779 (base32
2780 "110d6y83ib1nfpxzmvkvb3fn3brskwkdbsk4dqrdrswrd4znxrg6"))))
2781 (properties `((upstream-name . "dimRed")))
2782 (build-system r-build-system)
2783 (propagated-inputs
2784 `(("r-drr" ,r-drr)
2785 ("r-magrittr" ,r-magrittr)))
2786 (home-page "https://github.com/gdkrmr/dimRed")
2787 (synopsis "Framework for dimensionality reduction")
2788 (description
2789 "This package provides a collection of dimensionality reduction
2790 techniques from R packages and provides a common interface for calling the
2791 methods.")
2792 (license license:gpl3)))
2793
2794 (define-public r-timedate
2795 (package
2796 (name "r-timedate")
2797 (version "3043.102")
2798 (source
2799 (origin
2800 (method url-fetch)
2801 (uri (cran-uri "timeDate" version))
2802 (sha256
2803 (base32
2804 "0wvl5pq261rvbgly7vilk3x3m9xk3ly6il1i5scwdf6srl1vlz1p"))))
2805 (properties `((upstream-name . "timeDate")))
2806 (build-system r-build-system)
2807 (home-page "https://www.rmetrics.org")
2808 (synopsis "Chronological and calendar objects")
2809 (description
2810 "This package provides an environment for teaching \"Financial
2811 Engineering and Computational Finance\" and for managing chronological and
2812 calendar objects.")
2813 (license license:gpl2+)))
2814
2815 (define-public r-magic
2816 (package
2817 (name "r-magic")
2818 (version "1.5-9")
2819 (source
2820 (origin
2821 (method url-fetch)
2822 (uri (cran-uri "magic" version))
2823 (sha256
2824 (base32
2825 "0snmdh6vk0p6ar1swsihisinxrx7l8371dri5lk0z24ysgr5w7gs"))))
2826 (build-system r-build-system)
2827 (propagated-inputs
2828 `(("r-abind" ,r-abind)))
2829 (home-page "https://github.com/RobinHankin/magic.git")
2830 (synopsis "Create and investigate magic squares")
2831 (description
2832 "This package provides a collection of efficient, vectorized algorithms
2833 for the creation and investigation of magic squares and hypercubes, including
2834 a variety of functions for the manipulation and analysis of arbitrarily
2835 dimensioned arrays.")
2836 (license license:gpl2)))
2837
2838 (define-public r-rmysql
2839 (package
2840 (name "r-rmysql")
2841 (version "0.10.20")
2842 (source
2843 (origin
2844 (method url-fetch)
2845 (uri (cran-uri "RMySQL" version))
2846 (sha256
2847 (base32
2848 "0lv9m6zpm8dgv7yixr6xhw379vbq45d7n7gkrmjrppdj8vcih77i"))))
2849 (properties `((upstream-name . "RMySQL")))
2850 (build-system r-build-system)
2851 (inputs
2852 `(("mariadb" ,mariadb "lib")
2853 ("mariadb-dev" ,mariadb "dev")
2854 ("zlib" ,zlib)))
2855 (propagated-inputs
2856 `(("r-dbi" ,r-dbi)))
2857 (home-page "https://github.com/r-dbi/RMySQL")
2858 (synopsis "Database interface and MySQL driver for R")
2859 (description
2860 "This package provides a DBI interface to MySQL / MariaDB. The RMySQL
2861 package contains an old implementation based on legacy code from S-PLUS which
2862 is being phased out. A modern MySQL client based on Rcpp is available from
2863 the RMariaDB package.")
2864 (license license:gpl2)))
2865
2866 (define-public r-rpostgresql
2867 (package
2868 (name "r-rpostgresql")
2869 (version "0.6-2")
2870 (source
2871 (origin
2872 (method url-fetch)
2873 (uri (cran-uri "RPostgreSQL" version))
2874 (sha256
2875 (base32
2876 "1mdhw5821v2h7hpa53v10wz53k4i90r0vb6a3dia5gq8f9j1h088"))))
2877 (properties `((upstream-name . "RPostgreSQL")))
2878 (build-system r-build-system)
2879 (inputs
2880 `(("postgresql" ,postgresql)))
2881 (propagated-inputs
2882 `(("r-dbi" ,r-dbi)))
2883 (home-page "https://github.com/tomoakin/RPostgreSQL")
2884 (synopsis "R interface to the PostgreSQL database system")
2885 (description
2886 "This package provides a Database Interface (DBI) compliant driver for R
2887 to access PostgreSQL database systems.")
2888 ;; The whole package is released under GPL version 2. It includes code
2889 ;; under the PostgreSQL license.
2890 (license license:gpl2)))
2891
2892 (define-public r-linprog
2893 (package
2894 (name "r-linprog")
2895 (version "0.9-2")
2896 (source
2897 (origin
2898 (method url-fetch)
2899 (uri (cran-uri "linprog" version))
2900 (sha256
2901 (base32
2902 "1ki14an0pmhs2mnmfjjvdzd76pshiyvi659zf7hqvqwj0viv4dw9"))))
2903 (build-system r-build-system)
2904 (propagated-inputs `(("r-lpsolve" ,r-lpsolve)))
2905 (home-page "http://linprog.r-forge.r-project.org/")
2906 (synopsis "Linear programming and optimization")
2907 (description
2908 "This package can be used to solve Linear Programming / Linear
2909 Optimization problems by using the simplex algorithm.")
2910 (license license:gpl2+)))
2911
2912 (define-public r-geometry
2913 (package
2914 (name "r-geometry")
2915 (version "0.4.5")
2916 (source
2917 (origin
2918 (method url-fetch)
2919 (uri (cran-uri "geometry" version))
2920 (sha256
2921 (base32
2922 "1n10l8ax3783v3lgaacb15qsn8b3f0wpmhg3k39j31s6ciyd3vcg"))))
2923 (build-system r-build-system)
2924 (propagated-inputs
2925 `(("r-magic" ,r-magic)
2926 ("r-linprog" ,r-linprog)
2927 ("r-lpsolve" ,r-lpsolve)
2928 ("r-rcpp" ,r-rcpp)
2929 ("r-rcppprogress" ,r-rcppprogress)))
2930 (home-page "http://geometry.r-forge.r-project.org/")
2931 (synopsis "Mesh generation and surface tesselation")
2932 (description
2933 "This package makes the qhull library available in R, in a similar manner
2934 as in Octave. Qhull computes convex hulls, Delaunay triangulations, halfspace
2935 intersections about a point, Voronoi diagrams, furthest-site Delaunay
2936 triangulations, and furthest-site Voronoi diagrams. It runs in 2-d, 3-d, 4-d,
2937 and higher dimensions. It implements the Quickhull algorithm for computing
2938 the convex hull. Qhull does not support constrained Delaunay triangulations,
2939 or mesh generation of non-convex objects, but the package does include some R
2940 functions that allow for this. Currently the package only gives access to
2941 Delaunay triangulation and convex hull computation.")
2942 ;; The Qhull sources are included and are distributed under a custom
2943 ;; non-copyleft license. The R sources are released under GPL version 2.
2944 (license (list license:gpl2
2945 (license:non-copyleft "http://www.qhull.org/COPYING.txt")))))
2946
2947 (define-public r-ddalpha
2948 (package
2949 (name "r-ddalpha")
2950 (version "1.3.11")
2951 (source
2952 (origin
2953 (method url-fetch)
2954 (uri (cran-uri "ddalpha" version))
2955 (sha256
2956 (base32
2957 "1sdnb47r534nh138zk3a6b2mgi74nvshc7p5m304vjs9jlx4l2y3"))))
2958 (build-system r-build-system)
2959 (propagated-inputs
2960 `(("r-bh" ,r-bh)
2961 ("r-class" ,r-class)
2962 ("r-geometry" ,r-geometry)
2963 ("r-mass" ,r-mass)
2964 ("r-rcpp" ,r-rcpp)
2965 ("r-robustbase" ,r-robustbase)
2966 ("r-sfsmisc" ,r-sfsmisc)))
2967 (native-inputs
2968 `(("gfortran" ,gfortran)))
2969 (home-page "https://cran.r-project.org/web/packages/ddalpha")
2970 (synopsis "Depth-Based classification and calculation of data depth")
2971 (description
2972 "This package contains procedures for depth-based supervised learning,
2973 which are entirely non-parametric, in particular the DDalpha-procedure (Lange,
2974 Mosler and Mozharovskyi, 2014). The training data sample is transformed by a
2975 statistical depth function to a compact low-dimensional space, where the final
2976 classification is done. It also offers an extension to functional data and
2977 routines for calculating certain notions of statistical depth functions. 50
2978 multivariate and 5 functional classification problems are included.")
2979 (license license:gpl2)))
2980
2981 (define-public r-gower
2982 (package
2983 (name "r-gower")
2984 (version "0.2.1")
2985 (source
2986 (origin
2987 (method url-fetch)
2988 (uri (cran-uri "gower" version))
2989 (sha256
2990 (base32
2991 "007ivwn1nagpi26qq8iih1c2l61c53glvv60n90hi341ry8vwgxg"))))
2992 (build-system r-build-system)
2993 (home-page "https://github.com/markvanderloo/gower")
2994 (synopsis "Gower's distance")
2995 (description
2996 "This package provides tools to compute Gower's distance (or similarity)
2997 coefficient between records, and to compute the top-n matches between records.
2998 Core algorithms are executed in parallel on systems supporting OpenMP.")
2999 (license license:gpl3)))
3000
3001 (define-public r-rcpproll
3002 (package
3003 (name "r-rcpproll")
3004 (version "0.3.0")
3005 (source
3006 (origin
3007 (method url-fetch)
3008 (uri (cran-uri "RcppRoll" version))
3009 (sha256
3010 (base32
3011 "0srzfhzkk42kzrdjnhbb37946jp1p688rgysy6k3i2is8jb21zyb"))))
3012 (properties `((upstream-name . "RcppRoll")))
3013 (build-system r-build-system)
3014 (propagated-inputs
3015 `(("r-rcpp" ,r-rcpp)))
3016 (home-page "https://cran.r-project.org/web/packages/RcppRoll")
3017 (synopsis "Efficient rolling and windowed operations")
3018 (description
3019 "This package provides fast and efficient routines for common rolling /
3020 windowed operations. Routines for the efficient computation of windowed mean,
3021 median, sum, product, minimum, maximum, standard deviation and variance are
3022 provided.")
3023 (license license:gpl2+)))
3024
3025 (define-public r-ipred
3026 (package
3027 (name "r-ipred")
3028 (version "0.9-9")
3029 (source
3030 (origin
3031 (method url-fetch)
3032 (uri (cran-uri "ipred" version))
3033 (sha256
3034 (base32
3035 "0vs1hqfx7yd0xdbmfsf2gim7spkni0845cj6gswn0nhdfdq7ma0d"))))
3036 (build-system r-build-system)
3037 (propagated-inputs
3038 `(("r-class" ,r-class)
3039 ("r-mass" ,r-mass)
3040 ("r-nnet" ,r-nnet)
3041 ("r-prodlim" ,r-prodlim)
3042 ("r-rpart" ,r-rpart)
3043 ("r-survival" ,r-survival)))
3044 (home-page "https://cran.r-project.org/web/packages/ipred")
3045 (synopsis "Improved predictors")
3046 (description
3047 "This package provides improved predictive models by indirect
3048 classification and bagging for classification, regression and survival
3049 problems as well as resampling based estimators of prediction error.")
3050 (license license:gpl2+)))
3051
3052 (define-public r-psych
3053 (package
3054 (name "r-psych")
3055 (version "1.9.12.31")
3056 (source
3057 (origin
3058 (method url-fetch)
3059 (uri (cran-uri "psych" version))
3060 (sha256
3061 (base32
3062 "02i9p6appf15hjdsi58g39bzs9as40f9qhy8m7ki30hd1fz1vrr5"))))
3063 (build-system r-build-system)
3064 (propagated-inputs
3065 `(("r-lattice" ,r-lattice)
3066 ("r-mnormt" ,r-mnormt)
3067 ("r-nlme" ,r-nlme)))
3068 (home-page "https://cran.r-project.org/web/packages/psych/")
3069 (synopsis "Procedures for psychological, psychometric, and personality research")
3070 (description
3071 "This package provides a general purpose toolbox for personality,
3072 psychometric theory and experimental psychology. Functions are primarily for
3073 multivariate analysis and scale construction using factor analysis, principal
3074 component analysis, cluster analysis and reliability analysis, although others
3075 provide basic descriptive statistics. Item Response Theory is done using
3076 factor analysis of tetrachoric and polychoric correlations. Functions for
3077 analyzing data at multiple levels include within and between group statistics,
3078 including correlations and factor analysis. Functions for simulating and
3079 testing particular item and test structures are included. Several functions
3080 serve as a useful front end for structural equation modeling. Graphical
3081 displays of path diagrams, factor analysis and structural equation models are
3082 created using basic graphics.")
3083 (license license:gpl2+)))
3084
3085 (define-public r-generics
3086 (package
3087 (name "r-generics")
3088 (version "0.0.2")
3089 (source
3090 (origin
3091 (method url-fetch)
3092 (uri (cran-uri "generics" version))
3093 (sha256
3094 (base32
3095 "0xk1xhpy7gpv3pvaygzhpfdxj72zmb38pb4nscfyg2ff36vx3cvi"))))
3096 (build-system r-build-system)
3097 (home-page "https://github.com/r-lib/generics")
3098 (synopsis "Common S3 generics not provided by base R methods")
3099 (description
3100 "In order to reduce potential package dependencies and conflicts,
3101 generics provides a number of commonly used S3 generics that are not provided
3102 by base R methods related to model fitting.")
3103 (license license:gpl2)))
3104
3105 (define-public r-broom
3106 (package
3107 (name "r-broom")
3108 (version "0.5.5")
3109 (source
3110 (origin
3111 (method url-fetch)
3112 (uri (cran-uri "broom" version))
3113 (sha256
3114 (base32
3115 "0n7zd64263kfavdi28rl2bxrsa00c3m4vjhhjdrfwvvmrcxj39fx"))))
3116 (build-system r-build-system)
3117 (propagated-inputs
3118 `(("r-backports" ,r-backports)
3119 ("r-dplyr" ,r-dplyr)
3120 ("r-generics" ,r-generics)
3121 ("r-nlme" ,r-nlme)
3122 ("r-purrr" ,r-purrr)
3123 ("r-reshape2" ,r-reshape2)
3124 ("r-stringr" ,r-stringr)
3125 ("r-tibble" ,r-tibble)
3126 ("r-tidyr" ,r-tidyr)))
3127 (home-page "https://github.com/tidyverse/broom")
3128 (synopsis "Convert statistical analysis objects into tidy data frames")
3129 (description
3130 "This package provides tools to convert statistical analysis objects from
3131 R into tidy data frames, so that they can more easily be combined, reshaped
3132 and otherwise processed with tools like @code{dplyr}, @code{tidyr} and
3133 @code{ggplot2}. The package provides three S3 generics: @code{tidy}, which
3134 summarizes a model's statistical findings such as coefficients of a
3135 regression; @code{augment}, which adds columns to the original data such as
3136 predictions, residuals and cluster assignments; and @code{glance}, which
3137 provides a one-row summary of model-level statistics.")
3138 (license license:expat)))
3139
3140 (define-public r-recipes
3141 (package
3142 (name "r-recipes")
3143 (version "0.1.10")
3144 (source
3145 (origin
3146 (method url-fetch)
3147 (uri (cran-uri "recipes" version))
3148 (sha256
3149 (base32
3150 "11f96aanrzi2v6cn49fhvf9y4cmhra63wcy6nvpv6hcfaqqmwd2g"))))
3151 (build-system r-build-system)
3152 (propagated-inputs
3153 `(("r-dplyr" ,r-dplyr)
3154 ("r-generics" ,r-generics)
3155 ("r-glue" ,r-glue)
3156 ("r-gower" ,r-gower)
3157 ("r-ipred" ,r-ipred)
3158 ("r-lubridate" ,r-lubridate)
3159 ("r-magrittr" ,r-magrittr)
3160 ("r-matrix" ,r-matrix)
3161 ("r-purrr" ,r-purrr)
3162 ("r-rlang" ,r-rlang)
3163 ("r-tibble" ,r-tibble)
3164 ("r-tidyr" ,r-tidyr)
3165 ("r-tidyselect" ,r-tidyselect)
3166 ("r-timedate" ,r-timedate)
3167 ("r-withr" ,r-withr)))
3168 (native-inputs
3169 `(("r-knitr" ,r-knitr)))
3170 (home-page "https://github.com/topepo/recipes")
3171 (synopsis "Preprocessing tools to create design matrices")
3172 (description
3173 "Recipes is an extensible framework to create and preprocess design
3174 matrices. Recipes consist of one or more data manipulation and analysis
3175 \"steps\". Statistical parameters for the steps can be estimated from an
3176 initial data set and then applied to other data sets. The resulting design
3177 matrices can then be used as inputs into statistical or machine learning
3178 models.")
3179 (license license:gpl2)))
3180
3181 (define-public r-pdist
3182 (package
3183 (name "r-pdist")
3184 (version "1.2")
3185 (source
3186 (origin
3187 (method url-fetch)
3188 (uri (cran-uri "pdist" version))
3189 (sha256
3190 (base32
3191 "18nd3mgad11f2zmwcp0w3sxlch4a9y6wp8dfdyzvjn7y4b4bq0dd"))))
3192 (build-system r-build-system)
3193 (home-page "https://github.com/jeffwong/pdist")
3194 (synopsis "Partitioned distance function")
3195 (description
3196 "Pdist computes the euclidean distance between rows of a matrix X and
3197 rows of another matrix Y. Previously, this could be done by binding the two
3198 matrices together and calling @code{dist}, but this creates unnecessary
3199 computation by computing the distances between a row of X and another row of
3200 X, and likewise for Y. Pdist strictly computes distances across the two
3201 matrices, not within the same matrix, making computations significantly faster
3202 for certain use cases.")
3203 (license license:gpl3+)))
3204
3205 (define-public r-ggrepel
3206 (package
3207 (name "r-ggrepel")
3208 (version "0.8.2")
3209 (source
3210 (origin
3211 (method url-fetch)
3212 (uri (cran-uri "ggrepel" version))
3213 (sha256
3214 (base32
3215 "1qaifn3dazdqbqlii210xhw7yf142iw7g9p2axmmxbz90p0by08d"))))
3216 (build-system r-build-system)
3217 (propagated-inputs
3218 `(("r-ggplot2" ,r-ggplot2)
3219 ("r-rcpp" ,r-rcpp)
3220 ("r-scales" ,r-scales)))
3221 (native-inputs
3222 `(("r-knitr" ,r-knitr))) ; for vignettes
3223 (home-page "http://github.com/slowkow/ggrepel")
3224 (synopsis "Repulsive text and label geometries for ggplot2")
3225 (description
3226 "This package provides text and label geometries for ggplot2 that help to
3227 avoid overlapping text labels. Labels repel away from each other and away
3228 from the data points.")
3229 (license license:gpl3)))
3230
3231 (define-public r-corrplot
3232 (package
3233 (name "r-corrplot")
3234 (version "0.84")
3235 (source
3236 (origin
3237 (method url-fetch)
3238 (uri (cran-uri "corrplot" version))
3239 (sha256
3240 (base32
3241 "1k03qd8db7pwg1v318xapx5mpiypiz2n07qr19c4b45diri5xkhd"))))
3242 (build-system r-build-system)
3243 (home-page "https://github.com/taiyun/corrplot")
3244 (synopsis "Visualization of a correlation matrix")
3245 (description
3246 "This package provides a graphical display of a correlation matrix or
3247 general matrix. It also contains some algorithms to do matrix reordering. In
3248 addition, corrplot is good at details, including choosing color, text labels,
3249 color labels, layout, etc.")
3250 ;; Any version of the GPL
3251 (license license:gpl2+)))
3252
3253 (define-public r-stringdist
3254 (package
3255 (name "r-stringdist")
3256 (version "0.9.5.5")
3257 (source
3258 (origin
3259 (method url-fetch)
3260 (uri (cran-uri "stringdist" version))
3261 (sha256
3262 (base32 "1dqfakclzaf878x7mhwmqrcpcql2h9cv19fz5f3ygpajf3si5kqi"))))
3263 (build-system r-build-system)
3264 (home-page "https://github.com/markvanderloo/stringdist")
3265 (synopsis "Approximate string matching and string distance functions")
3266 (description
3267 "This package implements an approximate string matching version of R's
3268 native @code{match} function. It can calculate various string distances based
3269 on edits (Damerau-Levenshtein, Hamming, Levenshtein, optimal sting alignment),
3270 qgrams (q- gram, cosine, jaccard distance) or heuristic metrics (Jaro,
3271 Jaro-Winkler). An implementation of soundex is provided as well. Distances
3272 can be computed between character vectors while taking proper care of encoding
3273 or between integer vectors representing generic sequences.")
3274 (license license:gpl3+)))
3275
3276 (define-public r-ucminf
3277 (package
3278 (name "r-ucminf")
3279 (version "1.1-4")
3280 (source
3281 (origin
3282 (method url-fetch)
3283 (uri (cran-uri "ucminf" version))
3284 (sha256
3285 (base32
3286 "01vggwg1w71k98qs6fhb0x1843vi322mf4g3hbclks94kcpkisx2"))))
3287 (build-system r-build-system)
3288 (native-inputs `(("gfortran" ,gfortran)))
3289 (home-page "https://cran.r-project.org/web/packages/ucminf/")
3290 (synopsis "General-purpose unconstrained non-linear optimization")
3291 (description
3292 "This package provides an implementation of an algorithm for
3293 general-purpose unconstrained non-linear optimization. The algorithm is of
3294 quasi-Newton type with BFGS updating of the inverse Hessian and soft line
3295 search with a trust region type monitoring of the input to the line search
3296 algorithm. The interface of @code{ucminf} is designed for easy interchange
3297 with the package @code{optim}.")
3298 (license license:gpl2+)))
3299
3300 (define-public r-ordinal
3301 (package
3302 (name "r-ordinal")
3303 (version "2019.12-10")
3304 (source
3305 (origin
3306 (method url-fetch)
3307 (uri (cran-uri "ordinal" version))
3308 (sha256
3309 (base32
3310 "09bpmjmbf4x82kgf6bm4bkncq2apdv9mk20zj4zgma2jx2vyfhbs"))))
3311 (build-system r-build-system)
3312 (propagated-inputs
3313 `(("r-mass" ,r-mass)
3314 ("r-matrix" ,r-matrix)
3315 ("r-numderiv" ,r-numderiv)
3316 ("r-ucminf" ,r-ucminf)))
3317 (home-page "https://github.com/runehaubo/ordinal")
3318 (synopsis "Regression models for ordinal data")
3319 (description
3320 "This package provides an implementation of cumulative link (mixed)
3321 models also known as ordered regression models, proportional odds models,
3322 proportional hazards models for grouped survival times and ordered models.
3323 Estimation is via maximum likelihood and mixed models are fitted with the
3324 Laplace approximation and adaptive Gauss-Hermite quadrature.")
3325 (license license:gpl2+)))
3326
3327 (define-public r-jomo
3328 (package
3329 (name "r-jomo")
3330 (version "2.6-10")
3331 (source
3332 (origin
3333 (method url-fetch)
3334 (uri (cran-uri "jomo" version))
3335 (sha256
3336 (base32
3337 "1k9l4290g350zbw1pjs871q9bxj3j2h1dilxpp06v4wy4n7d8qs0"))))
3338 (build-system r-build-system)
3339 (propagated-inputs
3340 `(("r-lme4" ,r-lme4)
3341 ("r-mass" ,r-mass)
3342 ("r-ordinal" ,r-ordinal)
3343 ("r-survival" ,r-survival)))
3344 (home-page "https://cran.r-project.org/web/packages/jomo/")
3345 (synopsis "Multilevel Joint Modelling Multiple Imputation")
3346 (description
3347 "Similarly to Schafer's package pan, jomo is a package for multilevel
3348 joint modelling multiple imputation @url{Carpenter and Kenward (2013),
3349 http://doi.org/10.1002/9781119942283}. Novel aspects of jomo are the
3350 possibility of handling binary and categorical data through latent normal
3351 variables, the option to use cluster-specific covariance matrices and to
3352 impute compatibly with the substantive model.")
3353 (license license:gpl2)))
3354
3355 (define-public r-pan
3356 (package
3357 (name "r-pan")
3358 (version "1.6")
3359 (source
3360 (origin
3361 (method url-fetch)
3362 (uri (cran-uri "pan" version))
3363 (sha256
3364 (base32
3365 "1dk3jjj826p7xrz10qz04vyc068xnypg7bp0pj4c32z3da0xzh5d"))))
3366 (build-system r-build-system)
3367 (native-inputs `(("gfortran" ,gfortran)))
3368 (home-page "https://cran.r-project.org/web/packages/pan/")
3369 (synopsis "Multiple imputation for multivariate panel or clustered data")
3370 (description
3371 "This package implements multiple imputation for multivariate panel or
3372 clustered data.")
3373 (license license:gpl3)))
3374
3375 (define-public r-mitml
3376 (package
3377 (name "r-mitml")
3378 (version "0.3-7")
3379 (source
3380 (origin
3381 (method url-fetch)
3382 (uri (cran-uri "mitml" version))
3383 (sha256
3384 (base32
3385 "0yqyxkyi1kmv5k63wxj5kkg5g8igk1axk2csb4xhj6wz0p89dxy6"))))
3386 (build-system r-build-system)
3387 (propagated-inputs
3388 `(("r-haven" ,r-haven)
3389 ("r-jomo" ,r-jomo)
3390 ("r-pan" ,r-pan)))
3391 (home-page "https://cran.r-project.org/web/packages/mitml/")
3392 (synopsis "Tools for multiple imputation in multilevel modeling")
3393 (description
3394 "This package provides tools for multiple imputation of missing data in
3395 multilevel modeling. It includes a user-friendly interface to the packages
3396 pan and jomo, and several functions for visualization, data management and the
3397 analysis of multiply imputed data sets.")
3398 (license license:gpl2+)))
3399
3400 (define-public r-mice
3401 (package
3402 (name "r-mice")
3403 (version "3.8.0")
3404 (source
3405 (origin
3406 (method url-fetch)
3407 (uri (cran-uri "mice" version))
3408 (sha256
3409 (base32
3410 "1ibybvigqkkla4xwhqs2w4m6c68alfcdsljx99nn4p92rzb1ig04"))))
3411 (build-system r-build-system)
3412 (propagated-inputs
3413 `(("r-broom" ,r-broom)
3414 ("r-dplyr" ,r-dplyr)
3415 ("r-lattice" ,r-lattice)
3416 ("r-rcpp" ,r-rcpp)
3417 ("r-tidyr" ,r-tidyr)))
3418 (home-page "https://cran.r-project.org/web/packages/mice/")
3419 (synopsis "Multivariate imputation by chained equations")
3420 (description
3421 "Multiple imputation using @dfn{Fully Conditional Specification} (FCS)
3422 implemented by the MICE algorithm as described in @url{Van Buuren and
3423 Groothuis-Oudshoorn (2011), http://doi.org/10.18637/jss.v045.i03}. Each
3424 variable has its own imputation model. Built-in imputation models are
3425 provided for continuous data (predictive mean matching, normal), binary
3426 data (logistic regression), unordered categorical data (polytomous logistic
3427 regression) and ordered categorical data (proportional odds). MICE can also
3428 impute continuous two-level data (normal model, pan, second-level variables).
3429 Passive imputation can be used to maintain consistency between variables.
3430 Various diagnostic plots are available to inspect the quality of the
3431 imputations.")
3432 ;; Any of these two versions.
3433 (license (list license:gpl2 license:gpl3))))
3434
3435 (define-public r-truncnorm
3436 (package
3437 (name "r-truncnorm")
3438 (version "1.0-8")
3439 (source
3440 (origin
3441 (method url-fetch)
3442 (uri (cran-uri "truncnorm" version))
3443 (sha256
3444 (base32
3445 "0zn88wdd58223kibk085rhsikl4yhlrwiyq109hzjg06hy6lwmj9"))))
3446 (build-system r-build-system)
3447 (home-page "https://cran.r-project.org/web/packages/truncnorm/")
3448 (synopsis "Truncated normal distribution")
3449 (description "This package provides functions for the truncated normal
3450 distribution with mean equal to @code{mean} and standard deviation equal to
3451 @code{sd}. It includes density, distribution, quantile, and expected value
3452 functions, as well as a random generation function.")
3453 (license license:gpl2)))
3454
3455 (define-public r-rsolnp
3456 (package
3457 (name "r-rsolnp")
3458 (version "1.16")
3459 (source
3460 (origin
3461 (method url-fetch)
3462 (uri (cran-uri "Rsolnp" version))
3463 (sha256
3464 (base32
3465 "0w7nkj6igr0gi7r7jg950lsx7dj6aipgxi6vbjsf5f5yc9h7fhii"))))
3466 (properties `((upstream-name . "Rsolnp")))
3467 (build-system r-build-system)
3468 (propagated-inputs
3469 `(("r-truncnorm" ,r-truncnorm)))
3470 (home-page "https://cran.r-project.org/web/packages/Rsolnp/")
3471 (synopsis "General non-linear optimization")
3472 (description "The Rsolnp package implements a general non-linear augmented
3473 Lagrange multiplier method solver, a @dfn{sequential quadratic
3474 programming} (SQP) based solver).")
3475 ;; Any version of the GPL.
3476 (license license:gpl2+)))
3477
3478 (define-public r-hardyweinberg
3479 (package
3480 (name "r-hardyweinberg")
3481 (version "1.6.3")
3482 (source
3483 (origin
3484 (method url-fetch)
3485 (uri (cran-uri "HardyWeinberg" version))
3486 (sha256
3487 (base32
3488 "1irz44q6nf95h37av868f47aakwv3jgwgw217xfsfw0afkm7s25f"))))
3489 (properties `((upstream-name . "HardyWeinberg")))
3490 (build-system r-build-system)
3491 (propagated-inputs
3492 `(("r-mice" ,r-mice)
3493 ("r-rcpp" ,r-rcpp)
3494 ("r-rsolnp" ,r-rsolnp)))
3495 (home-page "https://cran.r-project.org/package=HardyWeinberg")
3496 (synopsis "Statistical tests and graphics for Hardy-Weinberg equilibrium")
3497 (description
3498 "This package contains tools for exploring Hardy-Weinberg equilibrium for
3499 diallelic genetic marker data. All classical tests (chi-square, exact,
3500 likelihood-ratio and permutation tests) for Hardy-Weinberg equilibrium are
3501 included in the package, as well as functions for power computation and for
3502 the simulation of marker data under equilibrium and disequilibrium. Routines
3503 for dealing with markers on the X-chromosome are included. Functions for
3504 testing equilibrium in the presence of missing data by using multiple
3505 imputation are also provided. Implements several graphics for exploring the
3506 equilibrium status of a large set of diallelic markers: ternary plots with
3507 acceptance regions, log-ratio plots and Q-Q plots.")
3508 (license license:gpl2+)))
3509
3510 (define-public r-sm
3511 (package
3512 (name "r-sm")
3513 (version "2.2-5.6")
3514 (source
3515 (origin
3516 (method url-fetch)
3517 (uri (cran-uri "sm" version))
3518 (sha256
3519 (base32
3520 "0c4whcx879gb4lwvqnzxl5n9xgpcqh2c54ip9ami3mwfprzcv45q"))))
3521 (build-system r-build-system)
3522 (native-inputs `(("gfortran" ,gfortran)))
3523 (home-page "http://www.stats.gla.ac.uk/~adrian/sm/")
3524 (synopsis "Smoothing methods for nonparametric regression and density estimation")
3525 (description
3526 "This is software accompanying the book 'Applied Smoothing Techniques for
3527 Data Analysis---The Kernel Approach with S-Plus Illustrations', Oxford
3528 University Press. It provides smoothing methods for nonparametric regression
3529 and density estimation")
3530 (license license:gpl2+)))
3531
3532 (define-public r-venndiagram
3533 (package
3534 (name "r-venndiagram")
3535 (version "1.6.20")
3536 (source (origin
3537 (method url-fetch)
3538 (uri (cran-uri "VennDiagram" version))
3539 (sha256
3540 (base32
3541 "1ic1jaxzw98si2p4n1fl4n3myhd7fpw0njb634cwhviwybzv6775"))))
3542 (properties `((upstream-name . "VennDiagram")))
3543 (build-system r-build-system)
3544 (propagated-inputs
3545 `(("r-futile-logger" ,r-futile-logger)))
3546 (home-page "https://cran.r-project.org/web/packages/VennDiagram/")
3547 (synopsis "Generate High-Resolution Venn and Euler Plots")
3548 (description
3549 "This package provides a set of functions to generate high-resolution
3550 Venn and Euler plots. It includes handling for several special cases,
3551 including two-case scaling, and extensive customization of plot shape and
3552 structure.")
3553 (license license:gpl2+)))
3554
3555 (define-public r-vioplot
3556 (package
3557 (name "r-vioplot")
3558 (version "0.3.4")
3559 (source
3560 (origin
3561 (method url-fetch)
3562 (uri (cran-uri "vioplot" version))
3563 (sha256
3564 (base32
3565 "1fsklymilspzz5fzlj7666x09aglaw0v4x0yfjjzy4vr5qpjc529"))))
3566 (build-system r-build-system)
3567 (propagated-inputs
3568 `(("r-sm" ,r-sm)
3569 ("r-zoo" ,r-zoo)))
3570 (home-page "http://wsopuppenkiste.wiso.uni-goettingen.de/~dadler")
3571 (synopsis "Violin plot")
3572 (description
3573 "This package provides a violin plot, which is a combination of a box
3574 plot and a kernel density plot.")
3575 (license license:bsd-3)))
3576
3577 (define-public r-rsofia
3578 (package
3579 (name "r-rsofia")
3580 (version "1.1")
3581 (source (origin
3582 (method url-fetch)
3583 ;; This package has been removed from CRAN, so we can
3584 ;; only fetch it from the archives.
3585 (uri (string-append "https://cran.r-project.org/src/"
3586 "contrib/Archive/RSofia/RSofia_"
3587 version ".tar.gz"))
3588 (sha256
3589 (base32
3590 "0q931y9rcf6slb0s2lsxhgqrzy4yqwh8hb1124nxg0bjbxvjbihn"))))
3591 (properties `((upstream-name . "RSofia")))
3592 (build-system r-build-system)
3593 (propagated-inputs
3594 `(("r-rcpp" ,r-rcpp)))
3595 (home-page "https://cran.r-project.org/src/contrib/Archive/RSofia")
3596 (synopsis "Port of sofia-ml to R")
3597 (description "This package is a port of sofia-ml to R. Sofia-ml is a
3598 suite of fast incremental algorithms for machine learning that can be used for
3599 training models for classification or ranking.")
3600 (license license:asl2.0)))
3601
3602 (define-public r-xts
3603 (package
3604 (name "r-xts")
3605 (version "0.12-0")
3606 (source
3607 (origin
3608 (method url-fetch)
3609 (uri (cran-uri "xts" version))
3610 (sha256
3611 (base32
3612 "0q4cc8ynp7ndmgll1jj3lxyl6wmgg89ad3wq09kjc2ngszdfc4fz"))))
3613 (build-system r-build-system)
3614 (propagated-inputs `(("r-zoo" ,r-zoo)))
3615 (home-page "https://github.com/joshuaulrich/xts")
3616 (synopsis "Extensible time series")
3617 (description
3618 "This package provides for uniform handling of R's different time-based
3619 data classes by extending @code{zoo}, maximizing native format information
3620 preservation and allowing for user-level customization and extension, while
3621 simplifying cross-class interoperability.")
3622 (license license:gpl2+)))
3623
3624 (define-public r-performanceanalytics
3625 (package
3626 (name "r-performanceanalytics")
3627 (version "2.0.4")
3628 (source
3629 (origin
3630 (method url-fetch)
3631 (uri (cran-uri "PerformanceAnalytics" version))
3632 (sha256
3633 (base32
3634 "0ci26hsj4wnw9g0mh4vrn0cg986cpcpx169rvw6v6rbnjxq718bq"))))
3635 (properties
3636 `((upstream-name . "PerformanceAnalytics")))
3637 (build-system r-build-system)
3638 (propagated-inputs
3639 `(("r-quadprog" ,r-quadprog)
3640 ("r-xts" ,r-xts)
3641 ("r-zoo" ,r-zoo)))
3642 (home-page "https://r-forge.r-project.org/projects/returnanalytics/")
3643 (synopsis "Econometric tools for performance and risk analysis")
3644 (description "This is a collection of econometric functions for
3645 performance and risk analysis. This package aims to aid practitioners and
3646 researchers in utilizing the latest research in analysis of non-normal return
3647 streams. In general, it is most tested on return (rather than price) data on
3648 a regular scale, but most functions will work with irregular return data as
3649 well, and increasing numbers of functions will work with P&L or price data
3650 where possible.")
3651 ;; Either version may be picked.
3652 (license (list license:gpl2 license:gpl3))))
3653
3654 (define-public r-laeken
3655 (package
3656 (name "r-laeken")
3657 (version "0.5.1")
3658 (source
3659 (origin
3660 (method url-fetch)
3661 (uri (cran-uri "laeken" version))
3662 (sha256
3663 (base32
3664 "199rjkhjjygpr6cjzab87as46acb5npi44m4yycvk7lnd0blma8s"))))
3665 (build-system r-build-system)
3666 (propagated-inputs
3667 `(("r-boot" ,r-boot)
3668 ("r-mass" ,r-mass)))
3669 (home-page "https://cran.r-project.org/web/packages/laeken/")
3670 (synopsis "Estimation of indicators on social exclusion and poverty")
3671 (description "This package provides tools for the estimation of indicators
3672 on social exclusion and poverty, as well as an implementation of Pareto tail
3673 modeling for empirical income distributions.")
3674 (license license:gpl2+)))
3675
3676 (define-public r-vcd
3677 (package
3678 (name "r-vcd")
3679 (version "1.4-7")
3680 (source
3681 (origin
3682 (method url-fetch)
3683 (uri (cran-uri "vcd" version))
3684 (sha256
3685 (base32
3686 "16aj688nhlcvdxzfsqh4s375v8f8vl8997dl8h1xg29b42nv52gc"))))
3687 (build-system r-build-system)
3688 (propagated-inputs
3689 `(("r-colorspace" ,r-colorspace)
3690 ("r-lmtest" ,r-lmtest)
3691 ("r-mass" ,r-mass)))
3692 (home-page "https://cran.r-project.org/web/packages/vcd/")
3693 (synopsis "Visualizing categorical data")
3694 (description "This package provides visualization techniques, data sets,
3695 summary and inference procedures aimed particularly at categorical data.
3696 Special emphasis is given to highly extensible grid graphics. The package was
3697 originally inspired by the book \"Visualizing Categorical Data\" by Michael
3698 Friendly and is now the main support package for a new book, \"Discrete Data
3699 Analysis with R\" by Michael Friendly and David Meyer (2015).")
3700 (license license:gpl2)))
3701
3702 (define-public r-ica
3703 (package
3704 (name "r-ica")
3705 (version "1.0-2")
3706 (source
3707 (origin
3708 (method url-fetch)
3709 (uri (cran-uri "ica" version))
3710 (sha256
3711 (base32
3712 "0ya1nph1zwhad0bfz4yxs27kl45yk1dhnphdlrq34p8pqrpmj8g7"))))
3713 (build-system r-build-system)
3714 (home-page "https://cran.r-project.org/web/packages/ica/")
3715 (synopsis "Independent component analysis")
3716 (description "This package provides tools for @dfn{Independent Component
3717 Analysis} (ICA) using various algorithms: FastICA,
3718 Information-Maximization (Infomax), and @dfn{Joint Approximate Diagonalization
3719 of Eigenmatrices} (JADE).")
3720 (license license:gpl2+)))
3721
3722 (define-public r-dtw
3723 (package
3724 (name "r-dtw")
3725 (version "1.21-3")
3726 (source
3727 (origin
3728 (method url-fetch)
3729 (uri (cran-uri "dtw" version))
3730 (sha256
3731 (base32
3732 "02hyhx1sy5h3vzh9zixy18a7d47df4k5d0wyflcvlcbsbcl6p90s"))))
3733 (build-system r-build-system)
3734 (propagated-inputs `(("r-proxy" ,r-proxy)))
3735 (home-page "http://dtw.r-forge.r-project.org/")
3736 (synopsis "Dynamic Time Warping Algorithms")
3737 (description "This package provides a comprehensive implementation of
3738 @dfn{dynamic time warping} (DTW) algorithms in R. DTW computes the
3739 optimal (least cumulative distance) alignment between points of two time
3740 series. Common DTW variants covered include local (slope) and global (window)
3741 constraints, subsequence matches, arbitrary distance definitions,
3742 normalizations, minimum variance matching, and so on.")
3743 (license license:gpl2+)))
3744
3745 (define-public r-sdmtools
3746 (package
3747 (name "r-sdmtools")
3748 (version "1.1-221.2")
3749 (source
3750 (origin
3751 (method url-fetch)
3752 (uri (cran-uri "SDMTools" version))
3753 (sha256
3754 (base32
3755 "1xvcd97ikqsfdpk2fddy3k0z1ajqga7nv9bgac9c1wnjk1gqrpgh"))))
3756 (properties `((upstream-name . "SDMTools")))
3757 (build-system r-build-system)
3758 (propagated-inputs `(("r-r-utils" ,r-r-utils)))
3759 (home-page "https://www.rforge.net/SDMTools/")
3760 (synopsis "Species distribution modelling tools")
3761 (description "This package provides a set of tools for post processing
3762 the outcomes of species distribution modeling exercises. It includes novel
3763 methods for comparing models and tracking changes in distributions through
3764 time. It further includes methods for visualizing outcomes, selecting
3765 thresholds, calculating measures of accuracy and landscape fragmentation
3766 statistics, etc.")
3767 (license license:gpl3+)))
3768
3769 (define-public r-scatterplot3d
3770 (package
3771 (name "r-scatterplot3d")
3772 (version "0.3-41")
3773 (source
3774 (origin
3775 (method url-fetch)
3776 (uri (cran-uri "scatterplot3d" version))
3777 (sha256
3778 (base32
3779 "152xqz9c70qab86mpgng049gxsg5f4fpf1m8dh93fb9v1avjd0sc"))))
3780 (build-system r-build-system)
3781 (home-page "https://cran.r-project.org/web/packages/scatterplot3d/")
3782 (synopsis "3D scatter plot")
3783 (description "This package provides an implementation of scatter plots for
3784 plotting. a three dimensional point cloud.")
3785 (license license:gpl2)))
3786
3787 (define-public r-ggridges
3788 (package
3789 (name "r-ggridges")
3790 (version "0.5.2")
3791 (source
3792 (origin
3793 (method url-fetch)
3794 (uri (cran-uri "ggridges" version))
3795 (sha256
3796 (base32
3797 "03pz257aw0mkh5k75rby9givkc1ky3n5scvhjhjiz9vry9fpffmh"))))
3798 (build-system r-build-system)
3799 (propagated-inputs
3800 `(("r-ggplot2" ,r-ggplot2)
3801 ("r-plyr" ,r-plyr)
3802 ("r-scales" ,r-scales)
3803 ("r-withr" ,r-withr)))
3804 (home-page "https://github.com/clauswilke/ggridges")
3805 (synopsis "Ridgeline plots in ggplot2")
3806 (description
3807 "Ridgeline plots provide a convenient way of visualizing changes in
3808 distributions over time or space. This package enables the creation of such
3809 plots in @code{ggplot2}.")
3810 (license license:gpl2)))
3811
3812 (define-public r-ggjoy
3813 (package
3814 (name "r-ggjoy")
3815 (version "0.4.1")
3816 (source
3817 (origin
3818 (method url-fetch)
3819 (uri (cran-uri "ggjoy" version))
3820 (sha256
3821 (base32
3822 "012md2m0jqfcccb933j423m3ck31v3p0pd41gjxpyg9082y7ixyj"))))
3823 (build-system r-build-system)
3824 (propagated-inputs
3825 `(("r-ggplot2" ,r-ggplot2)
3826 ("r-ggridges" ,r-ggridges)))
3827 (home-page "https://github.com/clauswilke/ggjoy")
3828 (synopsis "Joyplots in ggplot2")
3829 (description "Joyplots provide a convenient way of visualizing changes in
3830 distributions over time or space. This package enables the creation of such
3831 plots in @code{ggplot2}.")
3832 (license license:gpl2)))
3833
3834 (define-public r-cli
3835 (package
3836 (name "r-cli")
3837 (version "2.0.2")
3838 (source
3839 (origin
3840 (method url-fetch)
3841 (uri (cran-uri "cli" version))
3842 (sha256
3843 (base32
3844 "1dhkah6jvr96k4h4agcc2rfls75bpjb0j58fzaz3dc0fp3jk8229"))))
3845 (build-system r-build-system)
3846 (propagated-inputs
3847 `(("r-assertthat" ,r-assertthat)
3848 ("r-crayon" ,r-crayon)
3849 ("r-fansi" ,r-fansi)
3850 ("r-glue" ,r-glue)))
3851 (home-page "https://github.com/r-lib/cli#readme")
3852 (synopsis "Helpers for developing command line interfaces")
3853 (description "This package provides a suite of tools designed to build
3854 attractive command line interfaces (CLIs). It includes tools for drawing
3855 rules, boxes, trees, and Unicode symbols with ASCII alternatives.")
3856 (license license:expat)))
3857
3858 (define-public r-argparser
3859 (package
3860 (name "r-argparser")
3861 (version "0.6")
3862 (source
3863 (origin
3864 (method url-fetch)
3865 (uri (cran-uri "argparser" version))
3866 (sha256
3867 (base32
3868 "1pxiz9jlhlnpzqn1lz349r07i7glw708w202x6dlnxp112fg7k4x"))))
3869 (build-system r-build-system)
3870 (home-page "https://bitbucket.org/djhshih/argparser")
3871 (synopsis "Command-line argument parser")
3872 (description
3873 "This package provides a cross-platform command-line argument parser
3874 written purely in R with no external dependencies. It is useful with the
3875 Rscript front-end and facilitates turning an R script into an executable
3876 script.")
3877 (license license:gpl3+)))
3878
3879 (define-public r-debugme
3880 (package
3881 (name "r-debugme")
3882 (version "1.1.0")
3883 (source
3884 (origin
3885 (method url-fetch)
3886 (uri (cran-uri "debugme" version))
3887 (sha256
3888 (base32
3889 "1c9sg55zvf10h8198jdnpamm6f66lzw3c3jnmdp9ls6na0j0xbjd"))))
3890 (build-system r-build-system)
3891 (propagated-inputs `(("r-crayon" ,r-crayon)))
3892 (home-page "https://github.com/r-lib/debugme#readme")
3893 (synopsis "Debug R packages")
3894 (description
3895 "This package allows the user to specify debug messages as special string
3896 constants, and control debugging of packages via environment variables.")
3897 (license license:expat)))
3898
3899 (define-public r-processx
3900 (package
3901 (name "r-processx")
3902 (version "3.4.2")
3903 (source
3904 (origin
3905 (method url-fetch)
3906 (uri (cran-uri "processx" version))
3907 (sha256
3908 (base32
3909 "02awswxq6wh3rl99dncw5n6c1xmd0v81xcdp2dfyi6vm6b3gz84l"))))
3910 (build-system r-build-system)
3911 (propagated-inputs
3912 `(("r-ps" ,r-ps)
3913 ("r-r6" ,r-r6)))
3914 (home-page "https://github.com/r-lib/processx3")
3915 (synopsis "Execute and control system processes")
3916 (description
3917 "This package provides portable tools to run system processes in the
3918 background. It can check if a background process is running; wait on a
3919 background process to finish; get the exit status of finished processes; kill
3920 background processes and their children; restart processes. It can read the
3921 standard output and error of the processes, using non-blocking connections.
3922 @code{processx} can poll a process for standard output or error, with a
3923 timeout. It can also poll several processes at once.")
3924 (license license:expat)))
3925
3926 (define-public r-tsp
3927 (package
3928 (name "r-tsp")
3929 (version "1.1-9")
3930 (source
3931 (origin
3932 (method url-fetch)
3933 (uri (cran-uri "TSP" version))
3934 (sha256
3935 (base32
3936 "183m6crb0dv17llj86059n3hbgsahbhfcqlx0ijdzkssg11i1cy7"))))
3937 (properties `((upstream-name . "TSP")))
3938 (build-system r-build-system)
3939 (propagated-inputs `(("r-foreach" ,r-foreach)))
3940 (home-page "https://cran.r-project.org/web/packages/TSP/")
3941 (synopsis "Traveling salesperson problem (TSP)")
3942 (description "This package provides basic infrastructure and some
3943 algorithms for the @dfn{traveling salesperson problem}(TSP) (also known as the
3944 traveling salesman problem).")
3945 (license license:gpl3)))
3946
3947 (define-public r-qap
3948 (package
3949 (name "r-qap")
3950 (version "0.1-1")
3951 (source
3952 (origin
3953 (method url-fetch)
3954 (uri (cran-uri "qap" version))
3955 (sha256
3956 (base32
3957 "0d2d1ni1camixyi45lfy00f4pn3p063k7bsi8gj5scp6n15mdgb0"))))
3958 (build-system r-build-system)
3959 (native-inputs `(("gfortran" ,gfortran)))
3960 (home-page "https://cran.r-project.org/web/packages/qap/")
3961 (synopsis "Heuristics for the quadratic assignment problem (QAP)")
3962 (description "This package implements heuristics for the @dfn{quadratic
3963 assignment problem} (QAP). Currently only a simulated annealing heuristic is
3964 available.")
3965 (license license:gpl3)))
3966
3967 (define-public r-gclus
3968 (package
3969 (name "r-gclus")
3970 (version "1.3.2")
3971 (source
3972 (origin
3973 (method url-fetch)
3974 (uri (cran-uri "gclus" version))
3975 (sha256
3976 (base32
3977 "1cz0g0i972955hhaji30rx8448x7f3as7z1sww9i5h86ybgirilw"))))
3978 (build-system r-build-system)
3979 (propagated-inputs `(("r-cluster" ,r-cluster)))
3980 (home-page "https://cran.r-project.org/web/packages/gclus/")
3981 (synopsis "Clustering graphics")
3982 (description "This package orders panels in scatterplot matrices and
3983 parallel coordinate displays by some merit index. It contains various indices
3984 of merit, ordering functions, and enhanced versions of @code{pairs} and
3985 @code{parcoord} which color panels according to their merit level.")
3986 (license license:gpl2+)))
3987
3988 (define-public r-webshot
3989 (package
3990 (name "r-webshot")
3991 (version "0.5.2")
3992 (source
3993 (origin
3994 (method url-fetch)
3995 (uri (cran-uri "webshot" version))
3996 (sha256
3997 (base32
3998 "0gq4h8cw51z95yvsnf38kj5l58wgljkm0dalmi8mn1sp06bxr0zi"))))
3999 (build-system r-build-system)
4000 (propagated-inputs
4001 `(("r-callr" ,r-callr)
4002 ("r-jsonlite" ,r-jsonlite)
4003 ("r-magrittr" ,r-magrittr)))
4004 (home-page "https://github.com/wch/webshot/")
4005 (synopsis "Take screenshots of web pages")
4006 (description
4007 "Webshot makes it easy to take screenshots of web pages from within R.
4008 It can also run Shiny applications locally and take screenshots of the
4009 application; and it can render and screenshot static as well as interactive R
4010 Markdown documents.")
4011 (license license:gpl2)))
4012
4013 (define-public r-seriation
4014 (package
4015 (name "r-seriation")
4016 (version "1.2-8")
4017 (source
4018 (origin
4019 (method url-fetch)
4020 (uri (cran-uri "seriation" version))
4021 (sha256
4022 (base32
4023 "1zbdxq0s5rc5v307b69fw9k52m0654ls7pf22lh35ggirig6lwsk"))))
4024 (build-system r-build-system)
4025 (propagated-inputs
4026 `(("r-cluster" ,r-cluster)
4027 ("r-colorspace" ,r-colorspace)
4028 ("r-dendextend" ,r-dendextend)
4029 ("r-gclus" ,r-gclus)
4030 ("r-gplots" ,r-gplots)
4031 ("r-mass" ,r-mass)
4032 ("r-qap" ,r-qap)
4033 ("r-registry" ,r-registry)
4034 ("r-tsp" ,r-tsp)))
4035 (native-inputs `(("gfortran" ,gfortran)))
4036 (home-page "https://s2.smu.edu/IDA/seriation/")
4037 (synopsis "Infrastructure for ordering objects using seriation")
4038 (description
4039 "This package provides infrastructure for seriation with an
4040 implementation of several seriation/sequencing techniques to reorder matrices,
4041 dissimilarity matrices, and dendrograms. It also provides (optimally)
4042 reordered heatmaps, color images and clustering visualizations like
4043 dissimilarity plots, and visual assessment of cluster tendency plots (VAT and
4044 iVAT).")
4045 (license license:gpl3)))
4046
4047 (define-public r-xfun
4048 (package
4049 (name "r-xfun")
4050 (version "0.13")
4051 (source
4052 (origin
4053 (method url-fetch)
4054 (uri (cran-uri "xfun" version))
4055 (sha256
4056 (base32 "03iyqgx9mmdbd3qih70qzijjqcdg7k7ps5r1y6q8praanx9qvnm3"))))
4057 (build-system r-build-system)
4058 ;; knitr itself depends on xfun
4059 #;
4060 (native-inputs
4061 `(("r-knitr" ,r-knitr)))
4062 (home-page "https://github.com/yihui/xfun")
4063 (synopsis "Miscellaneous functions")
4064 (description
4065 "This package provides miscellaneous functions commonly used in other
4066 packages maintained by Yihui Xie.")
4067 (license license:expat)))
4068
4069 (define-public r-utf8
4070 (package
4071 (name "r-utf8")
4072 (version "1.1.4")
4073 (source
4074 (origin
4075 (method url-fetch)
4076 (uri (cran-uri "utf8" version))
4077 (sha256
4078 (base32
4079 "0m0ywg8k3blfiahxvh1i4zn9dksrlc937d2lbza5fc38zjnrrnpn"))))
4080 (build-system r-build-system)
4081 (home-page "https://github.com/patperry/r-utf8")
4082 (synopsis "Unicode text processing")
4083 (description
4084 "This package provides tools to process and print UTF-8 encoded
4085 international text (Unicode). Input, validate, normalize, encode, format, and
4086 display.")
4087 (license license:asl2.0)))
4088
4089 (define-public r-zeallot
4090 (package
4091 (name "r-zeallot")
4092 (version "0.1.0")
4093 (source
4094 (origin
4095 (method url-fetch)
4096 (uri (cran-uri "zeallot" version))
4097 (sha256
4098 (base32
4099 "1sd1igcfnv27pa3bqxlbyxchi562h7grnjg1l7wxx3bwr49i57s3"))))
4100 (build-system r-build-system)
4101 (home-page "https://github.com/nteetor/zeallot")
4102 (synopsis "Multiple, unpacking, and destructuring assignment")
4103 (description
4104 "This package provides a @code{%<-%} operator to perform multiple,
4105 unpacking, and destructuring assignment in R. The operator unpacks the
4106 right-hand side of an assignment into multiple values and assigns these values
4107 to variables on the left-hand side of the assignment.")
4108 (license license:expat)))
4109
4110 (define-public r-vctrs
4111 (package
4112 (name "r-vctrs")
4113 (version "0.2.4")
4114 (source
4115 (origin
4116 (method url-fetch)
4117 (uri (cran-uri "vctrs" version))
4118 (sha256
4119 (base32
4120 "15sgzs6afvmhssk6jcg41rn3bvmzmbm4sgca6f6x8lfrsazvdj6w"))))
4121 (build-system r-build-system)
4122 (propagated-inputs
4123 `(("r-digest" ,r-digest)
4124 ("r-ellipsis" ,r-ellipsis)
4125 ("r-glue" ,r-glue)
4126 ("r-rlang" ,r-rlang)))
4127 (native-inputs
4128 `(("r-knitr" ,r-knitr)))
4129 (home-page "https://github.com/r-lib/vctrs")
4130 (synopsis "Vector helpers")
4131 (description
4132 "There are three main goals to the @code{vctrs} package:
4133
4134 @enumerate
4135 @item To propose @code{vec_size()} and @code{vec_type()} as alternatives to
4136 @code{length()} and @code{class()}. These definitions are paired with a
4137 framework for type-coercion and size-recycling.
4138 @item To define type- and size-stability as desirable function properties, use
4139 them to analyse existing base function, and to propose better alternatives.
4140 This work has been particularly motivated by thinking about the ideal
4141 properties of @code{c()}, @code{ifelse()}, and @code{rbind()}.
4142 @item To provide a new @code{vctr} base class that makes it easy to create new
4143 S3 vectors. @code{vctrs} provides methods for many base generics in terms of
4144 a few new @code{vctrs} generics, making implementation considerably simpler
4145 and more robust.
4146 @end enumerate\n")
4147 (license license:gpl3)))
4148
4149 (define-public r-pillar
4150 (package
4151 (name "r-pillar")
4152 (version "1.4.3")
4153 (source
4154 (origin
4155 (method url-fetch)
4156 (uri (cran-uri "pillar" version))
4157 (sha256
4158 (base32
4159 "02sn7zw80wq33jgxk2i6m5jb83sk7y72dfhgyy0apfinv05w92ss"))))
4160 (build-system r-build-system)
4161 (propagated-inputs
4162 `(("r-cli" ,r-cli)
4163 ("r-crayon" ,r-crayon)
4164 ("r-fansi" ,r-fansi)
4165 ("r-rlang" ,r-rlang)
4166 ("r-utf8" ,r-utf8)
4167 ("r-vctrs" ,r-vctrs)))
4168 (home-page "https://github.com/r-lib/pillar")
4169 (synopsis "Coloured formatting for columns")
4170 (description
4171 "This package provides a @code{pillar} generic designed for formatting
4172 columns of data using the full range of colours provided by modern
4173 terminals.")
4174 (license license:gpl3)))
4175
4176 (define-public r-uuid
4177 (package
4178 (name "r-uuid")
4179 (version "0.1-4")
4180 (source
4181 (origin
4182 (method url-fetch)
4183 (uri (cran-uri "uuid" version))
4184 (sha256
4185 (base32
4186 "0gm9ii7ncvllxbvyk6srsiinjmqyj7lmh84w43x4nhqpvafj9q4q"))))
4187 (build-system r-build-system)
4188 (home-page "https://www.rforge.net/uuid")
4189 (synopsis "Tools for generating and handling of UUIDs")
4190 (description
4191 "This package provides tools for generating and handling of
4192 @dfn{Universally Unique Identifiers} (UUIDs).")
4193 (license license:expat)))
4194
4195 (define-public r-tinytex
4196 (package
4197 (name "r-tinytex")
4198 (version "0.21")
4199 (source
4200 (origin
4201 (method url-fetch)
4202 (uri (cran-uri "tinytex" version))
4203 (sha256
4204 (base32
4205 "088zzc2v0izbcs45p19v547pi78vkr08ibpvvi1g9bkbya4x3mq9"))))
4206 (build-system r-build-system)
4207 (propagated-inputs
4208 `(("r-xfun" ,r-xfun)))
4209 (home-page "https://github.com/yihui/tinytex")
4210 (synopsis "Helper functions for TeX Live and compiling LaTeX documents")
4211 (description
4212 "This package provides helper functions to install and maintain the LaTeX
4213 distribution named TinyTeX, a lightweight, cross-platform, portable, and
4214 easy-to-maintain version of TeX Live. This package also contains helper
4215 functions to compile LaTeX documents, and install missing LaTeX packages
4216 automatically.")
4217 (license license:expat)))
4218
4219 (define-public r-network
4220 (package
4221 (name "r-network")
4222 (version "1.16.0")
4223 (source
4224 (origin
4225 (method url-fetch)
4226 (uri (cran-uri "network" version))
4227 (sha256
4228 (base32
4229 "0dnf1wl3za2lhx2lwd8smhlijl1cfhckgr8zz9piiirrfi2m2kx2"))))
4230 (build-system r-build-system)
4231 (propagated-inputs
4232 `(("r-magrittr" ,r-magrittr)
4233 ("r-tibble" ,r-tibble)))
4234 (home-page "https://statnet.org/")
4235 (synopsis "Classes for relational data")
4236 (description
4237 "This package provides tools to create and modify network objects. The
4238 @code{network} class can represent a range of relational data types, and
4239 supports arbitrary vertex/edge/graph attributes.")
4240 (license license:gpl2+)))
4241
4242 (define-public r-statnet-common
4243 (package
4244 (name "r-statnet-common")
4245 (version "4.3.0")
4246 (source
4247 (origin
4248 (method url-fetch)
4249 (uri (cran-uri "statnet.common" version))
4250 (sha256
4251 (base32
4252 "0ng90i0wm9wlyhjbnmnylc1bbqw396p1dr7f402dyry9x9ck6jl3"))))
4253 (properties
4254 `((upstream-name . "statnet.common")))
4255 (build-system r-build-system)
4256 (propagated-inputs
4257 `(("r-coda" ,r-coda)))
4258 (home-page "https://statnet.org")
4259 (synopsis "R scripts and utilities used by the Statnet software")
4260 (description "This package provides non-statistical utilities used by the
4261 software developed by the Statnet Project.")
4262 (license license:gpl3)))
4263
4264 (define-public r-statcheck
4265 (package
4266 (name "r-statcheck")
4267 (version "1.3.0")
4268 (source
4269 (origin
4270 (method url-fetch)
4271 (uri (cran-uri "statcheck" version))
4272 (sha256
4273 (base32
4274 "0ivybdcrymlsfv6pg6p5bv70qdvgxf2vgp0kf4r0pf2fcvav1mcp"))))
4275 (build-system r-build-system)
4276 (propagated-inputs
4277 `(("r-ggplot2" ,r-ggplot2)
4278 ("r-plyr" ,r-plyr)
4279 ("r-rmarkdown" ,r-rmarkdown)))
4280 (home-page "https://cran.r-project.org/web/packages/statcheck/")
4281 (synopsis "Extract statistics from articles and recompute p-values")
4282 (description "This package can automatically extract statistical
4283 null-hypothesis significant testing (NHST) results from articles and recompute
4284 the p-values based on the reported test statistic and degrees of freedom to
4285 detect possible inconsistencies.")
4286 (license license:gpl2)))
4287
4288 (define-public r-sna
4289 (package
4290 (name "r-sna")
4291 (version "2.5")
4292 (source
4293 (origin
4294 (method url-fetch)
4295 (uri (cran-uri "sna" version))
4296 (sha256
4297 (base32
4298 "1j3i6300m686qqfmyvadim377cd3mplzgj6mandygw8brg50id8k"))))
4299 (build-system r-build-system)
4300 (propagated-inputs
4301 `(("r-network" ,r-network)
4302 ("r-statnet-common" ,r-statnet-common)))
4303 (home-page "https://statnet.org")
4304 (synopsis "Tools for social network analysis")
4305 (description
4306 "This package provides a range of tools for social network analysis,
4307 including node and graph-level indices, structural distance and covariance
4308 methods, structural equivalence detection, network regression, random graph
4309 generation, and 2D/3D network visualization.")
4310 (license license:gpl2+)))
4311
4312 (define-public r-tfisher
4313 (package
4314 (name "r-tfisher")
4315 (version "0.2.0")
4316 (source
4317 (origin
4318 (method url-fetch)
4319 (uri (cran-uri "TFisher" version))
4320 (sha256
4321 (base32
4322 "0vz74ww1lf1prfwz74hfsi3a8nzq8ss7aqjr85c1d87vss2796xx"))))
4323 (properties `((upstream-name . "TFisher")))
4324 (build-system r-build-system)
4325 (propagated-inputs
4326 `(("r-matrix" ,r-matrix)
4327 ("r-mvtnorm" ,r-mvtnorm)
4328 ("r-sn" ,r-sn)))
4329 (home-page "https://cran.r-project.org/web/packages/TFisher/")
4330 (synopsis "Optimal thresholding Fisher's p-value combination method")
4331 (description
4332 "This package provides the @dfn{cumulative distribution function} (CDF),
4333 quantile, and statistical power calculator for a collection of thresholding
4334 Fisher's p-value combination methods, including Fisher's p-value combination
4335 method, truncated product method and, in particular, soft-thresholding
4336 Fisher's p-value combination method which is proven to be optimal in some
4337 context of signal detection. The p-value calculator for the omnibus version
4338 of these tests are also included.")
4339 (license license:gpl2)))
4340
4341 (define-public r-ttr
4342 (package
4343 (name "r-ttr")
4344 (version "0.23-6")
4345 (source
4346 (origin
4347 (method url-fetch)
4348 (uri (cran-uri "TTR" version))
4349 (sha256
4350 (base32
4351 "0rg22ma3x07s9djlxscfw5jcq1gbir05cwhgvwfi53x1sf4hmhdg"))))
4352 (properties `((upstream-name . "TTR")))
4353 (build-system r-build-system)
4354 (propagated-inputs
4355 `(("r-curl" ,r-curl)
4356 ("r-xts" ,r-xts)
4357 ("r-zoo" ,r-zoo)))
4358 (home-page "https://github.com/joshuaulrich/TTR")
4359 (synopsis "Technical trading rules")
4360 (description
4361 "This package provides functions and data to construct technical trading
4362 rules with R.")
4363 (license license:gpl2)))
4364
4365 (define-public r-leaps
4366 (package
4367 (name "r-leaps")
4368 (version "3.1")
4369 (source
4370 (origin
4371 (method url-fetch)
4372 (uri (cran-uri "leaps" version))
4373 (sha256
4374 (base32
4375 "1dn3yl1p03n0iynd1vsdkrr0fhmvgrmfkv37y7n371765h83lz1x"))))
4376 (build-system r-build-system)
4377 (native-inputs `(("gfortran" ,gfortran)))
4378 (home-page "https://cran.r-project.org/web/packages/leaps/")
4379 (synopsis "Regression subset selection")
4380 (description
4381 "This package provides tools for regression subset selection, including
4382 exhaustive search.")
4383 (license license:gpl2+)))
4384
4385 (define-public r-splus2r
4386 (package
4387 (name "r-splus2r")
4388 (version "1.2-2")
4389 (source
4390 (origin
4391 (method url-fetch)
4392 (uri (cran-uri "splus2R" version))
4393 (sha256
4394 (base32
4395 "0xrbj8vxy0pc6hl7m8abv71d3hjw47cl51s7j7priadyqczkq6sz"))))
4396 (properties `((upstream-name . "splus2R")))
4397 (build-system r-build-system)
4398 (native-inputs `(("gfortran" ,gfortran)))
4399 (home-page "https://cran.r-project.org/web/packages/splus2R/")
4400 (synopsis "Supplemental S-PLUS functionality in R")
4401 (description
4402 "Currently there are many functions in S-PLUS that are missing in R. To
4403 facilitate the conversion of S-PLUS packages to R packages, this package
4404 provides some missing S-PLUS functionality in R.")
4405 (license license:gpl2)))
4406
4407 (define-public r-ifultools
4408 (package
4409 (name "r-ifultools")
4410 (version "2.0-5")
4411 (source
4412 (origin
4413 (method url-fetch)
4414 (uri (cran-uri "ifultools" version))
4415 (sha256
4416 (base32
4417 "040kvbczcmmbaiaz0k0pdq9af541pjj6iwzh1a3w4szh9w6b5a3j"))))
4418 (build-system r-build-system)
4419 (propagated-inputs
4420 `(("r-mass" ,r-mass)
4421 ("r-splus2r" ,r-splus2r)))
4422 (home-page "https://cran.r-project.org/web/packages/ifultools/")
4423 (synopsis "Insightful research tools")
4424 (description "This package provides C code used by the wmtsa, fractal, and
4425 sapa R packages.")
4426 (license license:gpl2)))
4427
4428 (define-public r-sapa
4429 (package
4430 (name "r-sapa")
4431 (version "2.0-2")
4432 (source
4433 (origin
4434 (method url-fetch)
4435 (uri (cran-uri "sapa" version))
4436 (sha256
4437 (base32
4438 "056xlh14dnzq4x7sbp7ff2k61jxy7110a742b502vz549qfrr5ds"))))
4439 (build-system r-build-system)
4440 (propagated-inputs
4441 `(("r-ifultools" ,r-ifultools)
4442 ("r-splus2r" ,r-splus2r)))
4443 (home-page "https://cran.r-project.org/web/packages/sapa/")
4444 (synopsis "Spectral analysis for physical applications")
4445 (description "This package provides software for the book Spectral
4446 Analysis for Physical Applications, Donald B. Percival and Andrew T. Walden,
4447 Cambridge University Press, 1993.")
4448 (license license:gpl2)))
4449
4450 (define-public r-aggregation
4451 (package
4452 (name "r-aggregation")
4453 (version "1.0.1")
4454 (source
4455 (origin
4456 (method url-fetch)
4457 (uri (cran-uri "aggregation" version))
4458 (sha256
4459 (base32
4460 "0j9g604m2ccc7hcy02539yja9cf3xcbl25gvp838bp4x8w18my46"))))
4461 (build-system r-build-system)
4462 (home-page "https://cran.r-project.org/web/packages/aggregation/")
4463 (synopsis "Methods for p-value aggregation")
4464 (description
4465 "This package contains functionality for performing the following methods
4466 of p-value aggregation: Fisher's method, the Lancaster method (weighted
4467 Fisher's method), and Sidak correction.")
4468 (license license:gpl3)))
4469
4470 (define-public r-quantmod
4471 (package
4472 (name "r-quantmod")
4473 (version "0.4.17")
4474 (source
4475 (origin
4476 (method url-fetch)
4477 (uri (cran-uri "quantmod" version))
4478 (sha256
4479 (base32
4480 "1ss441rwlr88kz212m0wgx0hwgwi41rhy1jncg2lgqzqfvr5dzqa"))))
4481 (build-system r-build-system)
4482 (propagated-inputs
4483 `(("r-curl" ,r-curl)
4484 ("r-ttr" ,r-ttr)
4485 ("r-xts" ,r-xts)
4486 ("r-zoo" ,r-zoo)))
4487 (home-page "https://cran.r-project.org/web/packages/quantmod/")
4488 (synopsis "Quantitative financial modelling framework")
4489 (description "This package provides a quantitative financial modelling
4490 framework to allow users to specify, build, trade, and analyse quantitative
4491 financial trading strategies.")
4492 (license license:gpl3)))
4493
4494 (define-public r-tseries
4495 (package
4496 (name "r-tseries")
4497 (version "0.10-47")
4498 (source
4499 (origin
4500 (method url-fetch)
4501 (uri (cran-uri "tseries" version))
4502 (sha256
4503 (base32
4504 "0yzvc9djp3angvxdxqi60wi726y76ablsb71q88ycvw0avgpf8r0"))))
4505 (build-system r-build-system)
4506 (propagated-inputs
4507 `(("r-quadprog" ,r-quadprog)
4508 ("r-quantmod" ,r-quantmod)
4509 ("r-zoo" ,r-zoo)))
4510 (native-inputs
4511 `(("gfortran" ,gfortran)))
4512 (home-page "https://cran.r-project.org/web/packages/tseries/")
4513 (synopsis "Time series analysis and computational finance")
4514 (description
4515 "This package provides functions relating to time series analysis and
4516 computational finance.")
4517 (license license:gpl2)))
4518
4519 (define-public r-wmtsa
4520 (package
4521 (name "r-wmtsa")
4522 (version "2.0-3")
4523 (source
4524 (origin
4525 (method url-fetch)
4526 (uri (cran-uri "wmtsa" version))
4527 (sha256
4528 (base32
4529 "1q436krz5p1f4a7a7sya6a9rh9x9mi8zzcgq66gbk9w9w4hcqcj6"))))
4530 (build-system r-build-system)
4531 (propagated-inputs
4532 `(("r-ifultools" ,r-ifultools)
4533 ("r-mass" ,r-mass)
4534 ("r-splus2r" ,r-splus2r)))
4535 (home-page "https://cran.r-project.org/web/packages/wmtsa/")
4536 (synopsis "Wavelet methods for time series analysis")
4537 (description
4538 "This package provides software to accompany the book \"Wavelet Methods
4539 for Time Series Analysis\", Donald B. Percival and Andrew T. Walden, Cambridge
4540 University Press, 2000.")
4541 (license license:gpl2)))
4542
4543 (define-public r-tsa
4544 (package
4545 (name "r-tsa")
4546 (version "1.2")
4547 (source
4548 (origin
4549 (method url-fetch)
4550 (uri (cran-uri "TSA" version))
4551 (sha256
4552 (base32
4553 "0gjfqibwdznz0nka95k4fjm935svxjpnqfywwz403crn2lh30h6q"))))
4554 (properties `((upstream-name . "TSA")))
4555 (build-system r-build-system)
4556 (propagated-inputs
4557 `(("r-leaps" ,r-leaps)
4558 ("r-locfit" ,r-locfit)
4559 ("r-mgcv" ,r-mgcv)))
4560 (home-page "https://homepage.divms.uiowa.edu/~kchan/TSA.htm")
4561 (synopsis "Time series analysis")
4562 (description
4563 "This package contains R functions and datasets detailed in the book
4564 \"Time Series Analysis with Applications in R (second edition)\" by Jonathan
4565 Cryer and Kung-Sik Chan.")
4566 (license license:gpl2+)))
4567
4568 (define-public r-extradistr
4569 (package
4570 (name "r-extradistr")
4571 (version "1.8.11")
4572 (source
4573 (origin
4574 (method url-fetch)
4575 (uri (cran-uri "extraDistr" version))
4576 (sha256
4577 (base32
4578 "1vvqv1d4hxa025gmm8cbiph63qsqy87l3ri5idd524gyz3chbcl3"))))
4579 (properties `((upstream-name . "extraDistr")))
4580 (build-system r-build-system)
4581 (propagated-inputs
4582 `(("r-rcpp" ,r-rcpp)))
4583 (home-page "https://github.com/twolodzko/extraDistr")
4584 (synopsis "Additional univariate and multivariate distributions")
4585 (description
4586 "This package implements density, distribution functions, quantile
4587 functions and random generation functions for a large number of univariate and
4588 multivariate distributions.")
4589 (license license:gpl2)))
4590
4591 (define-public r-fractal
4592 (package
4593 (name "r-fractal")
4594 (version "2.0-4")
4595 (source
4596 (origin
4597 (method url-fetch)
4598 (uri (cran-uri "fractal" version))
4599 (sha256
4600 (base32
4601 "18lr9z0gslvfc3z8vyj3krqj3bfhg60zv1fzinrwwkc4cpk1w7mp"))))
4602 (build-system r-build-system)
4603 (propagated-inputs
4604 `(("r-ifultools" ,r-ifultools)
4605 ("r-mass" ,r-mass)
4606 ("r-sapa" ,r-sapa)
4607 ("r-scatterplot3d" ,r-scatterplot3d)
4608 ("r-splus2r" ,r-splus2r)
4609 ("r-wmtsa" ,r-wmtsa)))
4610 (home-page "https://cran.r-project.org/web/packages/fractal/")
4611 (synopsis "Fractal time series modeling and analysis")
4612 (description
4613 "This package provides tools for stochastic fractal and deterministic
4614 chaotic time series analysis.")
4615 (license license:gpl2)))
4616
4617 (define-public r-urca
4618 (package
4619 (name "r-urca")
4620 (version "1.3-0")
4621 (source
4622 (origin
4623 (method url-fetch)
4624 (uri (cran-uri "urca" version))
4625 (sha256
4626 (base32
4627 "1akaqwf3fvvvx4sgfn641fd4sj51s0701pvfl6s5hnz2k0iwh732"))))
4628 (build-system r-build-system)
4629 (propagated-inputs `(("r-nlme" ,r-nlme)))
4630 (native-inputs `(("gfortran" ,gfortran)))
4631 (home-page "https://cran.r-project.org/web/packages/urca/")
4632 (synopsis "Unit root and cointegration tests for time series data")
4633 (description
4634 "This package provides unit root and cointegration tests encountered in
4635 applied econometric analysis.")
4636 (license license:gpl2+)))
4637
4638 (define-public r-cubature
4639 (package
4640 (name "r-cubature")
4641 (version "2.0.4")
4642 (source
4643 (origin
4644 (method url-fetch)
4645 (uri (cran-uri "cubature" version))
4646 (sha256
4647 (base32
4648 "0jpyq8j7x06dpiz29w48av879ygldzgls9z810192hsymkmfaz6r"))))
4649 (build-system r-build-system)
4650 (propagated-inputs
4651 `(("r-rcpp" ,r-rcpp)))
4652 (home-page "https://github.com/bnaras/cubature")
4653 (synopsis "Adaptive multivariate integration over hypercubes")
4654 (description
4655 "This package is an R wrapper around the cubature C library for adaptive
4656 multivariate integration over hypercubes. This version provides both
4657 @code{hcubature} and @code{pcubature} routines in addition to a vector
4658 interface.")
4659 ;; The included cubature C library is released under GPLv2+, but the
4660 ;; wrapper declares the license to be GPLv3+.
4661 (license (list license:gpl2+ license:gpl3+))))
4662
4663 (define-public r-trend
4664 (package
4665 (name "r-trend")
4666 (version "1.1.2")
4667 (source
4668 (origin
4669 (method url-fetch)
4670 (uri (cran-uri "trend" version))
4671 (sha256
4672 (base32
4673 "09b6ycyfgs4xlhx6kn6qm5rl2acp58hzhv8qclzn3kb1wjjyvxy5"))))
4674 (build-system r-build-system)
4675 (propagated-inputs
4676 `(("r-extradistr" ,r-extradistr)))
4677 (native-inputs
4678 `(("gfortran" ,gfortran)))
4679 (home-page "https://cran.r-project.org/web/packages/trend/")
4680 (synopsis "Non-parametric trend tests and change-point detection")
4681 (description
4682 "The analysis of environmental data often requires the detection of
4683 trends and change-points. This package includes tests for trend
4684 detection (Cox-Stuart Trend Test, Mann-Kendall Trend Test, (correlated)
4685 Hirsch-Slack Test, partial Mann-Kendall Trend Test, multivariate (multisite)
4686 Mann-Kendall Trend Test, (Seasonal) Sen's slope, partial Pearson and Spearman
4687 correlation trend test), change-point detection (Lanzante's test procedures,
4688 Pettitt's test, Buishand Range Test, Buishand U Test, Standard Normal
4689 Homogeinity Test), detection of non-randomness (Wallis-Moore Phase Frequency
4690 Test, Bartels rank von Neumann's ratio test, Wald-Wolfowitz Test) and the two
4691 sample Robust Rank-Order Distributional Test.")
4692 (license license:gpl3)))
4693
4694 (define-public r-expm
4695 (package
4696 (name "r-expm")
4697 (version "0.999-4")
4698 (source
4699 (origin
4700 (method url-fetch)
4701 (uri (cran-uri "expm" version))
4702 (sha256
4703 (base32
4704 "15k0acg2aqb2ajhwal6l7vhhp03m4lg579805d34554cl0kn9l2q"))))
4705 (build-system r-build-system)
4706 (propagated-inputs `(("r-matrix" ,r-matrix)))
4707 (native-inputs `(("gfortran" ,gfortran)))
4708 (home-page "https://r-forge.r-project.org/projects/expm/")
4709 (synopsis "Tools for matrix exponentials and related quantities")
4710 (description
4711 "This package provides tools for the computation of the matrix
4712 exponential, logarithm, square root, and related quantities.")
4713 (license license:gpl2+)))
4714
4715 (define-public r-complexplus
4716 (package
4717 (name "r-complexplus")
4718 (version "2.1")
4719 (source
4720 (origin
4721 (method url-fetch)
4722 (uri (cran-uri "complexplus" version))
4723 (sha256
4724 (base32
4725 "16w9v7d1ckavqmr86l34frr37pkvdn0iqnb17ssb8xaggns5lgqx"))))
4726 (build-system r-build-system)
4727 (propagated-inputs
4728 `(("r-expm" ,r-expm)
4729 ("r-matrix" ,r-matrix)))
4730 (home-page "https://cran.r-project.org/web/packages/complexplus/")
4731 (synopsis "Functions of complex or real variables")
4732 (description
4733 "This package extends several functions to the complex domain, including
4734 the matrix exponential and logarithm, and the determinant.")
4735 (license license:gpl2)))
4736
4737 (define-public r-phontools
4738 (package
4739 (name "r-phontools")
4740 (version "0.2-2.1")
4741 (source
4742 (origin
4743 (method url-fetch)
4744 (uri (cran-uri "phonTools" version))
4745 (sha256
4746 (base32
4747 "01i481mhswsys3gpasw9gn6nxkfmi7bz46g5c84m13pg0cv8hxc7"))))
4748 (properties `((upstream-name . "phonTools")))
4749 (build-system r-build-system)
4750 (home-page "http://www.santiagobarreda.com/rscripts.html")
4751 (synopsis "Tools for phonetic and acoustic analyses")
4752 (description
4753 "This package contains tools for the organization, display, and analysis
4754 of the sorts of data frequently encountered in phonetics research and
4755 experimentation, including the easy creation of IPA vowel plots, and the
4756 creation and manipulation of WAVE audio files.")
4757 (license license:bsd-2)))
4758
4759 (define-public r-np
4760 (package
4761 (name "r-np")
4762 (version "0.60-10")
4763 (source
4764 (origin
4765 (method url-fetch)
4766 (uri (cran-uri "np" version))
4767 (sha256
4768 (base32
4769 "06h8k0kdv5s258jr6s08fabvlycrbs7iq34jk2f2hfmqm2y4nyx2"))))
4770 (build-system r-build-system)
4771 (propagated-inputs
4772 `(("r-boot" ,r-boot)
4773 ("r-cubature" ,r-cubature)
4774 ("r-quadprog" ,r-quadprog)
4775 ("r-quantreg" ,r-quantreg)))
4776 (home-page "https://github.com/JeffreyRacine/R-Package-np")
4777 (synopsis "Non-parametric kernel smoothing methods for mixed data types")
4778 (description "This package provides non-parametric (and semi-parametric)
4779 kernel methods that seamlessly handle a mix of continuous, unordered, and
4780 ordered factor data types.")
4781 ;; Any version of the GPL.
4782 (license license:gpl3+)))
4783
4784 (define-public r-powerplus
4785 (package
4786 (name "r-powerplus")
4787 (version "3.1")
4788 (source
4789 (origin
4790 (method url-fetch)
4791 (uri (cran-uri "powerplus" version))
4792 (sha256
4793 (base32
4794 "0ayp6x34hkzgris4j3zbbs0r23n81bhww3wgfyy630ri4sk6brrn"))))
4795 (build-system r-build-system)
4796 (propagated-inputs
4797 `(("r-complexplus" ,r-complexplus)
4798 ("r-expm" ,r-expm)
4799 ("r-mass" ,r-mass)
4800 ("r-matrix" ,r-matrix)
4801 ("r-phontools" ,r-phontools)))
4802 (home-page "https://cran.r-project.org/web/packages/powerplus/")
4803 (synopsis "Exponentiation operations")
4804 (description
4805 "This package provides tools for the computation of matrix and scalar
4806 exponentiation.")
4807 (license license:gpl2)))
4808
4809 (define-public r-egg
4810 (package
4811 (name "r-egg")
4812 (version "0.4.5")
4813 (source
4814 (origin
4815 (method url-fetch)
4816 (uri (cran-uri "egg" version))
4817 (sha256
4818 (base32
4819 "1fy7srpiavfn8kyrr1m84an7acgwi6ydzrg71m3b0vk7y9ybmj0m"))))
4820 (properties `((upstream-name . "egg")))
4821 (build-system r-build-system)
4822 (propagated-inputs
4823 `(("r-ggplot2" ,r-ggplot2)
4824 ("r-gridextra" ,r-gridextra)
4825 ("r-gtable" ,r-gtable)))
4826 (home-page "https://cran.r-project.org/web/packages/egg")
4827 (synopsis "Extensions for ggplot2")
4828 (description
4829 "This package provides miscellaneous functions to help customize ggplot2
4830 objects. High-level functions are provided to post-process ggplot2 layouts
4831 and allow alignment between plot panels, as well as setting panel sizes to
4832 fixed values. Other functions include a custom @code{geom}, and helper
4833 functions to enforce symmetric scales or add tags to facetted plots.")
4834 (license license:gpl3)))
4835
4836 (define-public r-heatmaply
4837 (package
4838 (name "r-heatmaply")
4839 (version "1.1.0")
4840 (source
4841 (origin
4842 (method url-fetch)
4843 (uri (cran-uri "heatmaply" version))
4844 (sha256
4845 (base32
4846 "133q8ir45vhfxs2lnd96k97g21ihg2arfhp349kmk339pk32fcxz"))))
4847 (build-system r-build-system)
4848 (propagated-inputs
4849 `(("r-assertthat" ,r-assertthat)
4850 ("r-colorspace" ,r-colorspace)
4851 ("r-dendextend" ,r-dendextend)
4852 ("r-egg" ,r-egg)
4853 ("r-ggplot2" ,r-ggplot2)
4854 ("r-htmlwidgets" ,r-htmlwidgets)
4855 ("r-magrittr" ,r-magrittr)
4856 ("r-plotly" ,r-plotly)
4857 ("r-rcolorbrewer" ,r-rcolorbrewer)
4858 ("r-reshape2" ,r-reshape2)
4859 ("r-scales" ,r-scales)
4860 ("r-seriation" ,r-seriation)
4861 ("r-viridis" ,r-viridis)
4862 ("r-webshot" ,r-webshot)))
4863 (native-inputs
4864 `(("r-knitr" ,r-knitr)))
4865 (home-page "https://cran.r-project.org/package=heatmaply")
4866 (synopsis "Interactive cluster heat maps using plotly")
4867 (description
4868 "This package enables you to create interactive cluster heatmaps that can
4869 be saved as a stand-alone HTML file, embedded in R Markdown documents or in a
4870 Shiny app, and made available in the RStudio viewer pane. Hover the mouse
4871 pointer over a cell to show details or drag a rectangle to zoom. A heatmap is
4872 a popular graphical method for visualizing high-dimensional data, in which a
4873 table of numbers is encoded as a grid of colored cells. The rows and columns
4874 of the matrix are ordered to highlight patterns and are often accompanied by
4875 dendrograms.")
4876 ;; Either version of the license.
4877 (license (list license:gpl2 license:gpl3))))
4878
4879 (define-public r-h5
4880 (package
4881 (name "r-h5")
4882 (version "0.9.9")
4883 (source
4884 (origin
4885 (method url-fetch)
4886 (uri (cran-uri "h5" version))
4887 (sha256
4888 (base32
4889 "14p7i1sj24ky87kd7qr3n9fc9l64s0bp0rwbyl6i2x69xn75gpsx"))))
4890 (build-system r-build-system)
4891 (inputs
4892 `(("zlib" ,zlib)
4893 ("hdf5" ,hdf5)))
4894 (native-inputs
4895 `(("which" ,which)))
4896 (propagated-inputs
4897 `(("r-rcpp" ,r-rcpp)))
4898 (home-page "https://github.com/mannau/h5")
4899 (synopsis "Interface to the HDF5 Library")
4900 (description
4901 "This package provides an S4 interface to the HDF5 library supporting
4902 fast storage and retrieval of R-objects like vectors, matrices and arrays to
4903 binary files in a language independent format. The HDF5 format can therefore
4904 be used as an alternative to R's save/load mechanism. Since h5 is able to
4905 access only subsets of stored data it can also handle data sets which do not
4906 fit into memory.")
4907 (license license:bsd-2)))
4908
4909 (define-public r-cgdsr
4910 (package
4911 (name "r-cgdsr")
4912 (version "1.3.0")
4913 (source
4914 (origin
4915 (method url-fetch)
4916 (uri (cran-uri "cgdsr" version))
4917 (sha256
4918 (base32
4919 "07yc819hkabpzzh0g0cbqza6bcfy67b2marrzz1lj97f9iba78ja"))))
4920 (build-system r-build-system)
4921 (propagated-inputs
4922 `(("r-httr" ,r-httr)
4923 ("r-r-methodss3" ,r-r-methodss3)
4924 ("r-r-oo" ,r-r-oo)))
4925 (home-page "https://github.com/cBioPortal/cgdsr")
4926 (synopsis "R-based API for accessing the MSKCC Cancer Genomics Data Server")
4927 (description
4928 "This package provides a basic set of R functions for querying the Cancer
4929 Genomics Data Server (CGDS), hosted by the Computational Biology Center at
4930 Memorial-Sloan-Kettering Cancer Center (MSKCC).")
4931 (license license:lgpl3)))
4932
4933 (define-public r-import
4934 (package
4935 (name "r-import")
4936 (version "1.1.0")
4937 (source
4938 (origin
4939 (method url-fetch)
4940 (uri (cran-uri "import" version))
4941 (sha256
4942 (base32
4943 "0blf9539rbfwcmw8zsb4k58slb4pdnc075v34vmyjw752fznhcji"))))
4944 (build-system r-build-system)
4945 (home-page "https://github.com/smbache/import")
4946 (synopsis "Import mechanism for R")
4947 (description
4948 "This is an alternative mechanism for importing objects from packages.
4949 The syntax allows for importing multiple objects from a package with a single
4950 command in an expressive way. The import package bridges some of the gap
4951 between using @code{library} (or @code{require}) and direct (single-object)
4952 imports. Furthermore the imported objects are not placed in the current
4953 environment. It is also possible to import objects from stand-alone @code{.R}
4954 files.")
4955 (license license:expat)))
4956
4957 (define-public r-shinyace
4958 (package
4959 (name "r-shinyace")
4960 (version "0.4.1")
4961 (source
4962 (origin
4963 (method url-fetch)
4964 (uri (cran-uri "shinyAce" version))
4965 (sha256
4966 (base32
4967 "1m33dfm2kjirvgix7ybv1kbzgjkicdpv411g9c0q3fw6rnyhfxxn"))))
4968 (properties `((upstream-name . "shinyAce")))
4969 (build-system r-build-system)
4970 (propagated-inputs
4971 `(("r-shiny" ,r-shiny)
4972 ("r-jsonlite" ,r-jsonlite)))
4973 (home-page "https://cran.r-project.org/web/packages/shinyAce/")
4974 (synopsis "Ace editor bindings for Shiny")
4975 (description
4976 "This package provides Ace editor bindings to enable a rich text editing
4977 environment within Shiny.")
4978 (license license:expat)))
4979
4980 (define-public r-randomizr
4981 (package
4982 (name "r-randomizr")
4983 (version "0.20.0")
4984 (source
4985 (origin
4986 (method url-fetch)
4987 (uri (cran-uri "randomizr" version))
4988 (sha256
4989 (base32
4990 "0dljyfldnardaps3fq6vi5wcs9x6qfaq5apapa78c51lnaa6fn9h"))))
4991 (properties `((upstream-name . "randomizr")))
4992 (build-system r-build-system)
4993 (native-inputs
4994 `(("r-knitr" ,r-knitr)))
4995 (home-page "https://declaredesign.org/r/randomizr/")
4996 (synopsis "Tools for common forms of random assignment and sampling")
4997 (description
4998 "This package provides tools for generating random assignments for common
4999 experimental designs and random samples for common sampling designs.")
5000 (license license:expat)))
5001
5002 (define-public r-base64url
5003 (package
5004 (name "r-base64url")
5005 (version "1.4")
5006 (source
5007 (origin
5008 (method url-fetch)
5009 (uri (cran-uri "base64url" version))
5010 (sha256
5011 (base32
5012 "0n1c2b68vza1dh7sk38v6biiwm72c4jpl79kpdg1bsb0hq9qy18x"))))
5013 (build-system r-build-system)
5014 (propagated-inputs
5015 `(("r-backports" ,r-backports)))
5016 (home-page "https://github.com/mllg/base64url")
5017 (synopsis "Fast and URL-safe base64 encoder and decoder")
5018 (description
5019 "This package provides a URL-safe base64 encoder and decoder. In
5020 contrast to RFC3548, the 62nd character (@code{+}) is replaced with @code{-},
5021 the 63rd character (@code{/}) is replaced with @code{_}. Furthermore, the
5022 encoder does not fill the string with trailing @code{=}. The resulting
5023 encoded strings comply to the regular expression pattern @code{[A-Za-z0-9_-]}
5024 and thus are safe to use in URLs or for file names. The package also comes
5025 with a simple base32 encoder/decoder suited for case insensitive file
5026 systems.")
5027 (license license:gpl3)))
5028
5029 (define-public r-radiant-data
5030 (package
5031 (name "r-radiant-data")
5032 (version "1.3.4")
5033 (source
5034 (origin
5035 (method url-fetch)
5036 (uri (cran-uri "radiant.data" version))
5037 (sha256
5038 (base32
5039 "19sjjb49inrfl7jzq4zpwhdslni0zrp30bl58pisin29ka3ylpzs"))
5040 (modules '((guix build utils)))
5041 (snippet
5042 '(begin
5043 ;; Delete files that are under CC-NC-SA.
5044 (delete-file-recursively "inst/app/tools/help")
5045 #t))))
5046 (properties `((upstream-name . "radiant.data")))
5047 (build-system r-build-system)
5048 (propagated-inputs
5049 `(("r-base64enc" ,r-base64enc)
5050 ("r-broom" ,r-broom)
5051 ("r-car" ,r-car)
5052 ("r-curl" ,r-curl)
5053 ("r-dplyr" ,r-dplyr)
5054 ("r-dt" ,r-dt)
5055 ("r-glue" ,r-glue)
5056 ("r-ggplot2" ,r-ggplot2)
5057 ("r-import" ,r-import)
5058 ("r-jsonlite" ,r-jsonlite)
5059 ("r-knitr" ,r-knitr)
5060 ("r-lubridate" ,r-lubridate)
5061 ("r-magrittr" ,r-magrittr)
5062 ("r-markdown" ,r-markdown)
5063 ("r-mass" ,r-mass)
5064 ("r-patchwork" ,r-patchwork)
5065 ("r-plotly" ,r-plotly)
5066 ("r-psych" ,r-psych)
5067 ("r-randomizr" ,r-randomizr)
5068 ("r-readr" ,r-readr)
5069 ("r-readxl" ,r-readxl)
5070 ("r-rlang" ,r-rlang)
5071 ("r-rmarkdown" ,r-rmarkdown)
5072 ("r-rstudioapi" ,r-rstudioapi)
5073 ("r-scales" ,r-scales)
5074 ("r-shiny" ,r-shiny)
5075 ("r-shinyfiles" ,r-shinyfiles)
5076 ("r-shinyace" ,r-shinyace)
5077 ("r-stringi" ,r-stringi)
5078 ("r-tibble" ,r-tibble)
5079 ("r-tidyr" ,r-tidyr)
5080 ("r-writexl" ,r-writexl)))
5081 (home-page "https://github.com/radiant-rstats/radiant.data")
5082 (synopsis "Data menu for Radiant: business analytics using R and Shiny")
5083 (description
5084 "The Radiant Data menu includes interfaces for loading, saving, viewing,
5085 visualizing, summarizing, transforming, and combining data. It also contains
5086 functionality to generate reproducible reports of the analyses conducted in
5087 the application.")
5088 (license license:agpl3)))
5089
5090 (define-public r-algdesign
5091 (package
5092 (name "r-algdesign")
5093 (version "1.2.0")
5094 (source
5095 (origin
5096 (method url-fetch)
5097 (uri (cran-uri "AlgDesign" version))
5098 (sha256
5099 (base32 "0ammlg148gk0p24fh700116nd66636np0jb1wwh0axq5jphwk1pz"))))
5100 (properties `((upstream-name . "AlgDesign")))
5101 (build-system r-build-system)
5102 (home-page "https://github.com/jvbraun/AlgDesign")
5103 (synopsis "Algorithmic experimental design")
5104 (description
5105 "This package provides tools to calculate exact and approximate theory
5106 experimental designs for D, A, and I criteria. Very large designs may be
5107 created. Experimental designs may be blocked or blocked designs created from
5108 a candidate list, using several criteria. The blocking can be done when whole
5109 and within plot factors interact.")
5110 (license license:gpl2+)))
5111
5112 (define-public r-signal
5113 (package
5114 (name "r-signal")
5115 (version "0.7-6")
5116 (source
5117 (origin
5118 (method url-fetch)
5119 (uri (cran-uri "signal" version))
5120 (sha256
5121 (base32
5122 "1vsxramz5qd9q9s3vlqzmfdpmwl2rhlb2n904zw6f0fg0xxjfq3b"))))
5123 (build-system r-build-system)
5124 (propagated-inputs `(("r-mass" ,r-mass)))
5125 (native-inputs `(("gfortran" ,gfortran)))
5126 (home-page "https://cran.r-project.org/web/packages/signal/")
5127 (synopsis "Signal processing")
5128 (description
5129 "This package provides a set of signal processing functions originally
5130 written for Matlab and GNU Octave. It includes filter generation utilities,
5131 filtering functions, resampling routines, and visualization of filter models.
5132 It also includes interpolation functions.")
5133 (license license:gpl2)))
5134
5135 (define-public r-gsubfn
5136 (package
5137 (name "r-gsubfn")
5138 (version "0.7")
5139 (source
5140 (origin
5141 (method url-fetch)
5142 (uri (cran-uri "gsubfn" version))
5143 (sha256
5144 (base32
5145 "00j6b8b6xsx6v370h220x233rpk6asca78165y3d48jpwvwisdc9"))))
5146 (build-system r-build-system)
5147 (propagated-inputs `(("r-proto" ,r-proto)))
5148 (home-page "https://code.google.com/archive/p/gsubfn/")
5149 (synopsis "Utilities for strings and function arguments.")
5150 (description
5151 "This package provides @code{gsubfn} which is like @code{gsub} but can
5152 take a replacement function or certain other objects instead of the
5153 replacement string. Matches and back references are input to the replacement
5154 function and replaced by the function output. @code{gsubfn} can be used to
5155 split strings based on content rather than delimiters and for quasi-perl-style
5156 string interpolation. The package also has facilities for translating
5157 formulas to functions and allowing such formulas in function calls instead of
5158 functions.")
5159 (license license:gpl2+)))
5160
5161 (define-public r-sqldf
5162 (package
5163 (name "r-sqldf")
5164 (version "0.4-11")
5165 (source
5166 (origin
5167 (method url-fetch)
5168 (uri (cran-uri "sqldf" version))
5169 (sha256
5170 (base32
5171 "0q12vsb53p2wchgp8wfz5bk08wfnm0jxjrakclj4jyy6x3a7ksff"))))
5172 (build-system r-build-system)
5173 (propagated-inputs
5174 `(("r-chron" ,r-chron)
5175 ("r-dbi" ,r-dbi)
5176 ("r-gsubfn" ,r-gsubfn)
5177 ("r-proto" ,r-proto)
5178 ("r-rsqlite" ,r-rsqlite)))
5179 (home-page "https://github.com/ggrothendieck/sqldf")
5180 (synopsis "Manipulate R data frames using SQL")
5181 (description
5182 "The @code{sqldf} function is typically passed a single argument which is
5183 an SQL select statement where the table names are ordinary R data frame names.
5184 @code{sqldf} transparently sets up a database, imports the data frames into
5185 that database, performs the SQL statement and returns the result using a
5186 heuristic to determine which class to assign to each column of the returned
5187 data frame. The @code{sqldf} or @code{read.csv.sql} functions can also be
5188 used to read filtered files into R even if the original files are larger than
5189 R itself can handle.")
5190 (license license:gpl2)))
5191
5192 (define-public r-abind
5193 (package
5194 (name "r-abind")
5195 (version "1.4-5")
5196 (source
5197 (origin
5198 (method url-fetch)
5199 (uri (cran-uri "abind" version))
5200 (sha256
5201 (base32
5202 "0b1zd8jbnl6l292cr9rb50m09fy3ylxvzkpgi5lfb1nbzddcwfis"))))
5203 (build-system r-build-system)
5204 (home-page "https://cran.r-project.org/web/packages/abind/")
5205 (synopsis "Combine multidimensional arrays")
5206 (description
5207 "This package provides tools to combine multidimensional arrays into a
5208 single array. This is a generalization of @code{cbind} and @code{rbind}. It
5209 works with vectors, matrices, and higher-dimensional arrays. It also provides
5210 the functions @code{adrop}, @code{asub}, and @code{afill} for manipulating,
5211 extracting and replacing data in arrays.")
5212 (license license:lgpl2.0+)))
5213
5214 (define-public r-prroc
5215 (package
5216 (name "r-prroc")
5217 (version "1.3.1")
5218 (source
5219 (origin
5220 (method url-fetch)
5221 (uri (cran-uri "PRROC" version))
5222 (sha256
5223 (base32
5224 "1m28h8pcd78049lz2qixhkcr9h5b3jik3maqzfbvq9y58z71i4a7"))))
5225 (properties `((upstream-name . "PRROC")))
5226 (build-system r-build-system)
5227 (home-page "https://cran.r-project.org/web/packages/PRROC/")
5228 (synopsis "Precision-Recall and ROC curves for weighted and unweighted data")
5229 (description
5230 "This package computes the areas under the @dfn{precision-recall} (PR)
5231 and ROC curve for weighted (e.g. soft-labeled) and unweighted data. In
5232 contrast to other implementations, the interpolation between points of the PR
5233 curve is done by a non-linear piecewise function. In addition to the areas
5234 under the curves, the curves themselves can also be computed and plotted by a
5235 specific S3-method.")
5236 (license license:gpl3)))
5237
5238 (define-public r-vim
5239 (package
5240 (name "r-vim")
5241 (version "5.1.1")
5242 (source
5243 (origin
5244 (method url-fetch)
5245 (uri (cran-uri "VIM" version))
5246 (sha256
5247 (base32
5248 "0w22ir0gvym7gqd6nw2j7w5ivlb3az1dkfxv33imimkb7c83056a"))))
5249 (properties `((upstream-name . "VIM")))
5250 (build-system r-build-system)
5251 (propagated-inputs
5252 `(("r-car" ,r-car)
5253 ("r-colorspace" ,r-colorspace)
5254 ("r-data-table" ,r-data-table)
5255 ("r-e1071" ,r-e1071)
5256 ("r-laeken" ,r-laeken)
5257 ("r-magrittr" ,r-magrittr)
5258 ("r-mass" ,r-mass)
5259 ("r-nnet" ,r-nnet)
5260 ("r-ranger" ,r-ranger)
5261 ("r-rcpp" ,r-rcpp)
5262 ("r-robustbase" ,r-robustbase)
5263 ("r-sp" ,r-sp)
5264 ("r-vcd" ,r-vcd)))
5265 (home-page "https://github.com/alexkowa/VIM")
5266 (synopsis "Visualization and imputation of missing values")
5267 (description
5268 "This package provides tools for the visualization of missing and/or
5269 imputed values are introduced, which can be used for exploring the data and
5270 the structure of the missing and/or imputed values. Depending on this
5271 structure of the missing values, the corresponding methods may help to
5272 identify the mechanism generating the missing values and allows to explore the
5273 data including missing values. In addition, the quality of imputation can be
5274 visually explored using various univariate, bivariate, multiple and
5275 multivariate plot methods.")
5276 (license license:gpl2+)))
5277
5278 (define-public r-fnn
5279 (package
5280 (name "r-fnn")
5281 (version "1.1.3")
5282 (source
5283 (origin
5284 (method url-fetch)
5285 (uri (cran-uri "FNN" version))
5286 (sha256
5287 (base32
5288 "0cllqlnynm5yaj4r64mqyyfc8phkb38rwssq8k8ikgfgr4jklxny"))))
5289 (properties `((upstream-name . "FNN")))
5290 (build-system r-build-system)
5291 (home-page "https://cran.r-project.org/web/packages/FNN")
5292 (synopsis "Fast nearest neighbor search algorithms and applications")
5293 (description
5294 "This package provides cover-tree and kd-tree fast k-nearest neighbor
5295 search algorithms. Related applications including KNN classification,
5296 regression and information measures are implemented.")
5297 ;; The DESCRIPTION file erroneously states that GPL version 2.1 or
5298 ;; later can be used.
5299 (license license:gpl2+)))
5300
5301 (define-public r-smoother
5302 (package
5303 (name "r-smoother")
5304 (version "1.1")
5305 (source
5306 (origin
5307 (method url-fetch)
5308 (uri (cran-uri "smoother" version))
5309 (sha256
5310 (base32
5311 "0nqr1bvlr5bnasqg74zmknjjl4x28kla9h5cxpga3kq5z215pdci"))))
5312 (build-system r-build-system)
5313 (propagated-inputs
5314 `(("r-ttr" ,r-ttr)))
5315 (home-page "https://cran.r-project.org/web/packages/smoother")
5316 (synopsis "Functions relating to the smoothing of numerical data")
5317 (description
5318 "This package provides a collection of methods for smoothing numerical
5319 data, commencing with a port of the Matlab gaussian window smoothing function.
5320 In addition, several functions typically used in smoothing of financial data
5321 are included.")
5322 (license license:gpl2)))
5323
5324 (define-public r-riverplot
5325 (package
5326 (name "r-riverplot")
5327 (version "0.6")
5328 (source
5329 (origin
5330 (method url-fetch)
5331 (uri (cran-uri "riverplot" version))
5332 (sha256
5333 (base32
5334 "0q1icpny8nkxyjhawyjzwrw8qlz0ayn2xyrsqrm4vkxyv6c9xk8z"))))
5335 (build-system r-build-system)
5336 (home-page "https://logfc.wordpress.com")
5337 (synopsis "Sankey or ribbon plots")
5338 (description
5339 "Sankey plots are a type of diagram that is convenient to illustrate how
5340 flow of information, resources etc. separates and joins, much like observing
5341 how rivers split and merge. For example, they can be used to compare
5342 different clusterings. This package provides an implementation of Sankey
5343 plots for R.")
5344 (license license:gpl2+)))
5345
5346 (define-public r-dyn
5347 (package
5348 (name "r-dyn")
5349 (version "0.2-9.6")
5350 (source
5351 (origin
5352 (method url-fetch)
5353 (uri (cran-uri "dyn" version))
5354 (sha256
5355 (base32
5356 "16fqv9k7yxdgybwzafjkyqm16qpgqz13lcjpi6a1nc8xbzlzh0gb"))))
5357 (build-system r-build-system)
5358 (propagated-inputs
5359 `(("r-zoo" ,r-zoo)))
5360 (home-page "https://cran.r-project.org/web/packages/dyn")
5361 (synopsis "Time series regression")
5362 (description
5363 "This package provides the dyn class interfaces @code{ts}, @code{irts},
5364 @code{zoo} and @code{zooreg} time series classes to @code{lm}, @code{glm},
5365 @code{loess}, @code{quantreg::rq}, @code{MASS::rlm},
5366 @code{MCMCpack::MCMCregress()}, @code{quantreg::rq()},
5367 @code{randomForest::randomForest()} and other regression functions, allowing
5368 those functions to be used with time series including specifications that may
5369 contain lags, diffs and missing values.")
5370 ;; Any GPL version.
5371 (license license:gpl2+)))
5372
5373 (define-public r-catdap
5374 (package
5375 (name "r-catdap")
5376 (version "1.3.5")
5377 (source
5378 (origin
5379 (method url-fetch)
5380 (uri (cran-uri "catdap" version))
5381 (sha256
5382 (base32
5383 "0fyhl69z2lznymvpzxra9qvcg85ggzkfjy68c6mzdmf1ja44d2k5"))))
5384 (build-system r-build-system)
5385 (native-inputs
5386 `(("gfortran" ,gfortran)))
5387 (home-page "https://cran.r-project.org/web/packages/catdap/")
5388 (synopsis "Tools for categorical data analysis")
5389 (description
5390 "This package provides functions for analyzing multivariate data.
5391 Dependencies of the distribution of the specified variable (response
5392 variable) to other variables (explanatory variables) are derived and
5393 evaluated by the @dfn{Akaike Information Criterion} (AIC).")
5394 (license license:gpl2+)))
5395
5396 (define-public r-arules
5397 (package
5398 (name "r-arules")
5399 (version "1.6-5")
5400 (source
5401 (origin
5402 (method url-fetch)
5403 (uri (cran-uri "arules" version))
5404 (sha256
5405 (base32
5406 "0bcvfn8lvcv74vv9z3kgg7yq5hm7wjqhmzadi55cbm8zxd76g84v"))))
5407 (build-system r-build-system)
5408 (propagated-inputs
5409 `(("r-matrix" ,r-matrix)))
5410 (home-page "https://github.com/mhahsler/arules")
5411 (synopsis "Mining association rules and frequent itemsets")
5412 (description
5413 "This package provides an infrastructure for representing, manipulating
5414 and analyzing transaction data and patterns (frequent itemsets and association rules).
5415 It also provides C implementations of the association mining algorithms Apriori
5416 and Eclat.")
5417 (license license:gpl3)))
5418
5419 (define-public r-parsedate
5420 (package
5421 (name "r-parsedate")
5422 (version "1.2.0")
5423 (source
5424 (origin
5425 (method url-fetch)
5426 (uri (cran-uri "parsedate" version))
5427 (sha256
5428 (base32
5429 "0gb3w6hmwxayhijpf36p5dk4h6bbdps57x3cgikwvvxkgi83rarr"))))
5430 (build-system r-build-system)
5431 (propagated-inputs
5432 `(("r-rematch2" ,r-rematch2)))
5433 (home-page "https://github.com/gaborcsardi/parsedate")
5434 (synopsis
5435 "Recognize and parse dates in various formats")
5436 (description
5437 "This package provides three functions for dealing with dates:
5438 @code{parse_iso_8601} recognizes and parses all valid ISO 8601 date and
5439 time formats, @code{parse_date} parses dates in unspecified formats,
5440 and @code{format_iso_8601} formats a date in ISO 8601 format.")
5441 (license license:gpl2)))
5442
5443 (define-public r-abc-data
5444 (package
5445 (name "r-abc-data")
5446 (version "1.0")
5447 (source
5448 (origin
5449 (method url-fetch)
5450 (uri (cran-uri "abc.data" version))
5451 (sha256
5452 (base32
5453 "1bv1n68ah714ws58cf285n2s2v5vn7382lfjca4jxph57lyg8hmj"))))
5454 (properties `((upstream-name . "abc.data")))
5455 (build-system r-build-system)
5456 (home-page "https://cran.r-project.org/web/packages/abc.data/")
5457 (synopsis "Data for Approximate Bayesian Computation (ABC) package")
5458 (description
5459 "This package contains data which are used by functions of the abc
5460 package which implements several @dfn{Approximate Bayesian Computation} (ABC)
5461 algorithms for performing parameter estimation, model selection, and
5462 goodness-of-fit.")
5463 (license license:gpl3+)))
5464
5465 (define-public r-abc
5466 (package
5467 (name "r-abc")
5468 (version "2.1")
5469 (source
5470 (origin
5471 (method url-fetch)
5472 (uri (cran-uri "abc" version))
5473 (sha256
5474 (base32
5475 "0ngzaaz2y2s03fhngvwipmy4kq38xrmyddaz6a6l858rxvadrlhb"))))
5476 (build-system r-build-system)
5477 (propagated-inputs
5478 `(("r-abc-data" ,r-abc-data)
5479 ("r-locfit" ,r-locfit)
5480 ("r-mass" ,r-mass)
5481 ("r-nnet" ,r-nnet)
5482 ("r-quantreg" ,r-quantreg)))
5483 (home-page "https://cran.r-project.org/web/packages/abc/")
5484 (synopsis "Tools for Approximate Bayesian Computation (ABC)")
5485 (description
5486 "This package implements several @dfn{Approximate Bayesian
5487 Computation} (ABC) algorithms for performing parameter estimation, model
5488 selection, and goodness-of-fit. Cross-validation tools are also available for
5489 measuring the accuracy of ABC estimates, and to calculate the
5490 misclassification probabilities of different models.")
5491 (license license:gpl3+)))
5492
5493 (define-public r-zip
5494 (package
5495 (name "r-zip")
5496 (version "2.0.4")
5497 (source
5498 (origin
5499 (method url-fetch)
5500 (uri (cran-uri "zip" version))
5501 (sha256
5502 (base32
5503 "1c02amk3pl6xir5jnbfiwiv2wvpkpbkkb1w71y6lf2yk7g3d0pdb"))))
5504 (build-system r-build-system)
5505 (home-page "https://github.com/gaborcsardi/zip")
5506 (synopsis "Cross-platform Zip compression")
5507 (description
5508 "This package provides a cross-platform Zip compression library for R.
5509 It is a replacement for the @code{zip} function, that does not require any
5510 additional external tools on any platform.")
5511 (license license:cc0)))
5512
5513 (define-public r-openxlsx
5514 (package
5515 (name "r-openxlsx")
5516 (version "4.1.4")
5517 (source
5518 (origin
5519 (method url-fetch)
5520 (uri (cran-uri "openxlsx" version))
5521 (sha256
5522 (base32
5523 "1mwxldw9i9nfksx1i6h1kfs7vmsz9fgyllbsipar4vnfyqhqp8q7"))))
5524 (build-system r-build-system)
5525 (propagated-inputs
5526 `(("r-rcpp" ,r-rcpp)
5527 ("r-stringi" ,r-stringi)
5528 ("r-zip" ,r-zip)))
5529 (home-page "https://github.com/awalker89/openxlsx")
5530 (synopsis "Read, write and edit XLSX files")
5531 (description
5532 "This package simplifies the creation of Excel @code{.xlsx} files by
5533 providing a high level interface to writing, styling and editing worksheets.
5534 Through the use of Rcpp, read/write times are comparable to the @code{xlsx}
5535 and @code{XLConnect} packages with the added benefit of removing the
5536 dependency on Java.")
5537 (license license:gpl3)))
5538
5539 (define-public r-rio
5540 (package
5541 (name "r-rio")
5542 (version "0.5.16")
5543 (source
5544 (origin
5545 (method url-fetch)
5546 (uri (cran-uri "rio" version))
5547 (sha256
5548 (base32
5549 "0rfl56fdawlhc98451a9lcb6a6m56kw0i7dvd5hx58z025d8vsyk"))))
5550 (build-system r-build-system)
5551 (propagated-inputs
5552 `(("r-curl" ,r-curl)
5553 ("r-data-table" ,r-data-table)
5554 ("r-foreign" ,r-foreign)
5555 ("r-haven" ,r-haven)
5556 ("r-openxlsx" ,r-openxlsx)
5557 ("r-readxl" ,r-readxl)
5558 ("r-tibble" ,r-tibble)))
5559 (home-page "https://github.com/leeper/rio")
5560 (synopsis "Swiss-army knife for data I/O")
5561 (description
5562 "This package provides streamlined data import and export infrastructure
5563 by making assumptions that the user is probably willing to make: @code{import}
5564 and @code{export} determine the data structure from the file extension,
5565 reasonable defaults are used for data import and export (e.g.,
5566 @code{stringsAsFactors=FALSE}), web-based import is natively
5567 supported (including from SSL/HTTPS), compressed files can be read directly
5568 without explicit decompression, and fast import packages are used where
5569 appropriate. An additional convenience function, @code{convert}, provides a
5570 simple method for converting between file types.")
5571 (license license:gpl2)))
5572
5573 (define-public r-maptools
5574 (package
5575 (name "r-maptools")
5576 (version "0.9-9")
5577 (source
5578 (origin
5579 (method url-fetch)
5580 (uri (cran-uri "maptools" version))
5581 (sha256
5582 (base32
5583 "0v4llkxk8qs61vq4ykvaim4k23aagdaz0p62ns7zfq02sln3pfk9"))))
5584 (build-system r-build-system)
5585 (propagated-inputs
5586 `(("r-foreign" ,r-foreign)
5587 ("r-lattice" ,r-lattice)
5588 ("r-sp" ,r-sp)))
5589 (home-page "https://r-forge.r-project.org/projects/maptools/")
5590 (synopsis "Tools for reading and handling spatial objects")
5591 (description
5592 "This package provides a set of tools for manipulating and reading
5593 geographic data, in particular ESRI Shapefiles. It includes binary access to
5594 GSHHG shoreline files. The package also provides interface wrappers for
5595 exchanging spatial objects with other R packages.")
5596 ;; The C source files from shapelib are released under the Expat license.
5597 ;; The R code is released under GPL version 2 or later.
5598 (license (list license:gpl2+
5599 license:expat))))
5600
5601 (define-public r-later
5602 (package
5603 (name "r-later")
5604 (version "1.0.0")
5605 (source
5606 (origin
5607 (method url-fetch)
5608 (uri (cran-uri "later" version))
5609 (sha256
5610 (base32
5611 "11xjavj7siz0xv2ffq1ld4bwl35jyrcfpvvs4p3ilpifxx49hyr7"))))
5612 (build-system r-build-system)
5613 (propagated-inputs
5614 `(("r-bh" ,r-bh)
5615 ("r-rcpp" ,r-rcpp)
5616 ("r-rlang" ,r-rlang)))
5617 (home-page "https://github.com/r-lib/later")
5618 (synopsis "Utilities for delaying function execution")
5619 (description
5620 "This package provides tools to execute arbitrary R or C functions some
5621 time after the current time, after the R execution stack has emptied.")
5622 (license license:gpl2+)))
5623
5624 (define-public r-promises
5625 (package
5626 (name "r-promises")
5627 (version "1.1.0")
5628 (source
5629 (origin
5630 (method url-fetch)
5631 (uri (cran-uri "promises" version))
5632 (sha256
5633 (base32
5634 "01l0ydjvvy6afcg5d6pzvk1ikd3djq8n2flv8c831ksn68z0zsn8"))))
5635 (build-system r-build-system)
5636 (propagated-inputs
5637 `(("r-later" ,r-later)
5638 ("r-magrittr" ,r-magrittr)
5639 ("r-r6" ,r-r6)
5640 ("r-rcpp" ,r-rcpp)
5641 ("r-rlang" ,r-rlang)))
5642 (home-page "https://rstudio.github.io/promises")
5643 (synopsis "Abstractions for promise-based asynchronous programming")
5644 (description
5645 "This package provides fundamental abstractions for doing asynchronous
5646 programming in R using promises. Asynchronous programming is useful for
5647 allowing a single R process to orchestrate multiple tasks in the background
5648 while also attending to something else. Semantics are similar to JavaScript
5649 promises, but with a syntax that is idiomatic R.")
5650 (license license:expat)))
5651
5652 (define-public r-dosnow
5653 (package
5654 (name "r-dosnow")
5655 (version "1.0.18")
5656 (source
5657 (origin
5658 (method url-fetch)
5659 (uri (cran-uri "doSNOW" version))
5660 (sha256
5661 (base32
5662 "0rj72z5505cprh6wykhhiz08l9bmd966srqh2qypwivf321bvrvh"))))
5663 (properties `((upstream-name . "doSNOW")))
5664 (build-system r-build-system)
5665 (propagated-inputs
5666 `(("r-foreach" ,r-foreach)
5667 ("r-iterators" ,r-iterators)
5668 ("r-snow" ,r-snow)))
5669 (home-page "https://cran.r-project.org/web/packages/doSNOW")
5670 (synopsis "Foreach parallel adaptor for the snow package")
5671 (description
5672 "This package provides a parallel backend for the @code{%dopar%} function
5673 using the @code{snow} package.")
5674 (license license:gpl2)))
5675
5676 (define-public r-snowfall
5677 (package
5678 (name "r-snowfall")
5679 (version "1.84-6.1")
5680 (source (origin
5681 (method url-fetch)
5682 (uri (cran-uri "snowfall" version))
5683 (sha256
5684 (base32 "13941rlw1jsdjsndp1plzj1cq5aqravizkrqn6l25r9im7rnsi2w"))))
5685 (build-system r-build-system)
5686 (propagated-inputs
5687 `(("r-snow" ,r-snow)))
5688 (home-page "https://cran.r-project.org/web/packages/snowfall/")
5689 (synopsis "Easier cluster computing")
5690 (description "This package is a usability wrapper around snow for easier
5691 development of parallel R programs. This package offers e.g. extended error
5692 checks, and additional functions. All functions work in sequential mode, too,
5693 if no cluster is present or wished. The package is also designed as connector
5694 to the cluster management tool @code{sfCluster}, but can also used without
5695 it.")
5696 (license license:gpl2+)))
5697
5698 (define-public r-rappdirs
5699 (package
5700 (name "r-rappdirs")
5701 (version "0.3.1")
5702 (source
5703 (origin
5704 (method url-fetch)
5705 (uri (cran-uri "rappdirs" version))
5706 (sha256
5707 (base32
5708 "0ji6sg3bdn5gazkq14xmmcq7jnbsyxw4lzmmbgv6526j2vn93n1g"))))
5709 (build-system r-build-system)
5710 (home-page "https://cran.r-project.org/web/packages/rappdirs/")
5711 (synopsis "Determine where to save data, caches, and logs")
5712 (description
5713 "This package provides an easy way to determine which directories on the
5714 user's computer should be used to save data, caches and logs. It is a port of
5715 Python's @url{https://github.com/ActiveState/appdirs,Appdirs} to R.")
5716 (license license:expat)))
5717
5718 (define-public r-renv
5719 (package
5720 (name "r-renv")
5721 (version "0.9.3")
5722 (source
5723 (origin
5724 (method url-fetch)
5725 (uri (cran-uri "renv" version))
5726 (sha256
5727 (base32
5728 "02ayfgbpw4b58148dcxz31anaxncwczmxs1zzkskwj0rzhb2x60r"))))
5729 (properties `((upstream-name . "renv")))
5730 (build-system r-build-system)
5731 (home-page "https://rstudio.github.io/renv")
5732 (synopsis "Project environments")
5733 (description
5734 "This package provides a dependency management toolkit for R. Using
5735 renv, you can create and manage project-local R libraries, save the state of
5736 these libraries to a lockfile, and later restore your library as required.
5737 Together, these tools can help make your projects more isolated, portable, and
5738 reproducible.")
5739 (license license:expat)))
5740
5741 (define-public r-learnr
5742 (package
5743 (name "r-learnr")
5744 (version "0.10.1")
5745 (source
5746 (origin
5747 (method url-fetch)
5748 (uri (cran-uri "learnr" version))
5749 (sha256
5750 (base32
5751 "08xwmms6x58y3dsfbl9c6d03145hb4ij97nqr1cc9dxxilmr6x31"))))
5752 (build-system r-build-system)
5753 (propagated-inputs
5754 `(("r-checkmate" ,r-checkmate)
5755 ("r-ellipsis" ,r-ellipsis)
5756 ("r-evaluate" ,r-evaluate)
5757 ("r-htmltools" ,r-htmltools)
5758 ("r-htmlwidgets" ,r-htmlwidgets)
5759 ("r-jsonlite" ,r-jsonlite)
5760 ("r-knitr" ,r-knitr)
5761 ("r-markdown" ,r-markdown)
5762 ("r-rappdirs" ,r-rappdirs)
5763 ("r-renv" ,r-renv)
5764 ("r-rmarkdown" ,r-rmarkdown)
5765 ("r-rprojroot" ,r-rprojroot)
5766 ("r-shiny" ,r-shiny)
5767 ("r-withr" ,r-withr)))
5768 (home-page "https://rstudio.github.io/learnr/")
5769 (synopsis "Interactive tutorials for R")
5770 (description
5771 "This package provides tools to create interactive tutorials using R
5772 Markdown. Use a combination of narrative, figures, videos, exercises, and
5773 quizzes to create self-paced tutorials for learning about R and R packages.")
5774 (license license:asl2.0)))
5775
5776 (define-public r-analytics
5777 (package
5778 (name "r-analytics")
5779 (version "3.0")
5780 (source
5781 (origin
5782 (method url-fetch)
5783 (uri (cran-uri "analytics" version))
5784 (sha256
5785 (base32
5786 "0js3c8lwj3knccb55nq03cbjlf4w390p9aid2mi5x80l3ayd9in1"))))
5787 (build-system r-build-system)
5788 (propagated-inputs
5789 `(("r-car" ,r-car)
5790 ("r-cluster" ,r-cluster)
5791 ("r-fractal" ,r-fractal)
5792 ("r-lmtest" ,r-lmtest)
5793 ("r-mass" ,r-mass)
5794 ("r-np" ,r-np)
5795 ("r-powerplus" ,r-powerplus)
5796 ("r-robust" ,r-robust)
5797 ("r-trend" ,r-trend)
5798 ("r-tsa" ,r-tsa)
5799 ("r-urca" ,r-urca)
5800 ("r-vim" ,r-vim)))
5801 (home-page "https://cran.r-project.org/web/packages/analytics/")
5802 (synopsis "Collection of data analysis tools")
5803 (description
5804 "This package is a collection of data analysis tools. It includes tools
5805 for regression outlier detection in a fitted linear model, stationary
5806 bootstrap using a truncated geometric distribution, a comprehensive test for
5807 weak stationarity, column means by group, weighted biplots, and a heuristic to
5808 obtain a better initial configuration in non-metric MDS.")
5809 (license license:gpl2)))
5810
5811 (define-public r-reticulate
5812 (package
5813 (name "r-reticulate")
5814 (version "1.15")
5815 (source
5816 (origin
5817 (method url-fetch)
5818 (uri (cran-uri "reticulate" version))
5819 (sha256
5820 (base32
5821 "03dmnx9jhxx6vfbv2i5n6sln38kb9zkshz982pg3l9i4jjf3xns7"))))
5822 (build-system r-build-system)
5823 (inputs `(("python" ,python)))
5824 (propagated-inputs
5825 `(("r-rappdirs" ,r-rappdirs)
5826 ("r-jsonlite" ,r-jsonlite)
5827 ("r-matrix" ,r-matrix)
5828 ("r-rcpp" ,r-rcpp)))
5829 (native-inputs
5830 `(("r-knitr" ,r-knitr)))
5831 (home-page "https://github.com/rstudio/reticulate")
5832 (synopsis "R interface to Python")
5833 (description
5834 "This package provides an interface from R to Python modules, classes,
5835 and functions. When calling into Python, R data types are automatically
5836 converted to their equivalent Python types. When values are returned from
5837 Python to R they are converted back to R types.")
5838 (license license:asl2.0)))
5839
5840 (define-public r-bibtex
5841 (package
5842 (name "r-bibtex")
5843 (version "0.4.2.2")
5844 (source
5845 (origin
5846 (method url-fetch)
5847 (uri (cran-uri "bibtex" version))
5848 (sha256
5849 (base32
5850 "140hkjzdp3033cvji861rd06z1ixgpnn4n5amygqsmhnixk8ff07"))))
5851 (build-system r-build-system)
5852 (propagated-inputs `(("r-stringr" ,r-stringr)))
5853 (home-page "https://github.com/romainfrancois/bibtex")
5854 (synopsis "Bibtex parser")
5855 (description "This package provides a utility for R to parse a bibtex
5856 file.")
5857 (license license:gpl2+)))
5858
5859 (define-public r-ggseqlogo
5860 (package
5861 (name "r-ggseqlogo")
5862 (version "0.1")
5863 (source
5864 (origin
5865 (method url-fetch)
5866 (uri (cran-uri "ggseqlogo" version))
5867 (sha256
5868 (base32
5869 "13q6kcpxrqxqbji889fx63p0nsi08lk5yymkchig75r5k1d18ky1"))))
5870 (build-system r-build-system)
5871 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
5872 (home-page "https://github.com/omarwagih/ggseqlogo")
5873 (synopsis "ggplot2 extension for drawing genetic sequence logos")
5874 (description
5875 "The range of functions provided by this package makes it possible to
5876 draw highly versatile genomic sequence logos. Features include, but are not
5877 limited to, modifying colour schemes and fonts used to draw the logo,
5878 generating multiple logo plots, and aiding the visualisation with annotations.
5879 Sequence logos can easily be combined with other ggplot2 plots.")
5880 ;; Unspecified version of the LGPL.
5881 (license license:lgpl3+)))
5882
5883 (define-public r-ggsci
5884 (package
5885 (name "r-ggsci")
5886 (version "2.9")
5887 (source
5888 (origin
5889 (method url-fetch)
5890 (uri (cran-uri "ggsci" version))
5891 (sha256
5892 (base32
5893 "0g73x6grbka7ahjh6z23m3wrcifp5rdfdiasbl8lq4sp6rplxwaa"))))
5894 (build-system r-build-system)
5895 (propagated-inputs
5896 `(("r-ggplot2" ,r-ggplot2)
5897 ("r-scales" ,r-scales)))
5898 (home-page "https://nanx.me/ggsci/")
5899 (synopsis "Scientific journal and sci-fi themed color palettes for ggplot2")
5900 (description
5901 "This package provides a collection of ggplot2 color palettes inspired by
5902 plots in scientific journals, data visualization libraries, science fiction
5903 movies, and TV shows.")
5904 (license license:gpl3)))
5905
5906 (define-public r-ggsignif
5907 (package
5908 (name "r-ggsignif")
5909 (version "0.6.0")
5910 (source
5911 (origin
5912 (method url-fetch)
5913 (uri (cran-uri "ggsignif" version))
5914 (sha256
5915 (base32
5916 "17j9hg967k1wp9xw3x84mqss58jkb8pvlrnlchz4i1hklgykxqbg"))))
5917 (build-system r-build-system)
5918 (native-inputs
5919 `(("r-knitr" ,r-knitr)))
5920 (propagated-inputs
5921 `(("r-ggplot2" ,r-ggplot2)))
5922 (home-page "https://github.com/const-ae/ggsignif")
5923 (synopsis "Significance brackets for ggplot2")
5924 (description
5925 "Enrich your ggplots with group-wise comparisons. This package provides
5926 an easy way to indicate if two groups are significantly different. Commonly
5927 this is shown by a bracket on top connecting the groups of interest which
5928 itself is annotated with the level of significance. The package provides a
5929 single layer that takes the groups for comparison and the test as arguments
5930 and adds the annotation to the plot.")
5931 (license license:gpl3)))
5932
5933 (define-public r-ggpubr
5934 (package
5935 (name "r-ggpubr")
5936 (version "0.2.5")
5937 (source
5938 (origin
5939 (method url-fetch)
5940 (uri (cran-uri "ggpubr" version))
5941 (sha256
5942 (base32
5943 "0kb3hpmnhj4mkbx1kx0kv5y22himr8dijqx7ra0h8hi0pf2l2ha7"))))
5944 (build-system r-build-system)
5945 (propagated-inputs
5946 `(("r-cowplot" ,r-cowplot)
5947 ("r-dplyr" ,r-dplyr)
5948 ("r-ggplot2" ,r-ggplot2)
5949 ("r-ggrepel" ,r-ggrepel)
5950 ("r-ggsci" ,r-ggsci)
5951 ("r-ggsignif" ,r-ggsignif)
5952 ("r-glue" ,r-glue)
5953 ("r-gridextra" ,r-gridextra)
5954 ("r-magrittr" ,r-magrittr)
5955 ("r-polynom" ,r-polynom)
5956 ("r-purrr" ,r-purrr)
5957 ("r-rlang" ,r-rlang)
5958 ("r-scales" ,r-scales)
5959 ("r-tidyr" ,r-tidyr)))
5960 (home-page "http://www.sthda.com/english/rpkgs/ggpubr")
5961 (synopsis "ggplot2-based publication-ready plots")
5962 (description
5963 "The ggplot2 package is an excellent and flexible package for elegant
5964 data visualization in R. However the default generated plots require some
5965 formatting before we can send them for publication. The ggpubr package
5966 provides some easy-to-use functions for creating and customizing ggplot2-based
5967 publication-ready plots.")
5968 (license license:gpl2)))
5969
5970 (define-public r-ellipse
5971 (package
5972 (name "r-ellipse")
5973 (version "0.4.1")
5974 (source
5975 (origin
5976 (method url-fetch)
5977 (uri (cran-uri "ellipse" version))
5978 (sha256
5979 (base32
5980 "0g82vc51m3c1k0hnpp2zla6amxxgk2mmkl8ssnsc49jv3599r6hs"))))
5981 (build-system r-build-system)
5982 (home-page "https://cran.r-project.org/web/packages/ellipse/")
5983 (synopsis "Functions for drawing ellipses and ellipse-like confidence regions")
5984 (description
5985 "This package contains various routines for drawing ellipses and
5986 ellipse-like confidence regions, implementing the plots described in Murdoch
5987 and Chow (1996), A graphical display of large correlation matrices, The
5988 American Statistician 50, 178-180. There are also routines implementing the
5989 profile plots described in Bates and Watts (1988), Nonlinear Regression
5990 Analysis and its Applications.")
5991 (license license:gpl2+)))
5992
5993 (define-public r-flashclust
5994 (package
5995 (name "r-flashclust")
5996 (version "1.01-2")
5997 (source
5998 (origin
5999 (method url-fetch)
6000 (uri (cran-uri "flashClust" version))
6001 (sha256
6002 (base32
6003 "0l4lpz451ll7f7lfxmb7ds24ppzhfg1c3ypvydglcc35p2dq99s8"))))
6004 (properties `((upstream-name . "flashClust")))
6005 (build-system r-build-system)
6006 (native-inputs `(("gfortran" ,gfortran)))
6007 (home-page "https://cran.r-project.org/web/packages/flashClust/")
6008 (synopsis "Implementation of optimal hierarchical clustering")
6009 (description
6010 "This package provides a fast implementation of hierarchical
6011 clustering.")
6012 (license license:gpl2+)))
6013
6014 (define-public r-factominer
6015 (package
6016 (name "r-factominer")
6017 (version "2.3")
6018 (source
6019 (origin
6020 (method url-fetch)
6021 (uri (cran-uri "FactoMineR" version))
6022 (sha256
6023 (base32
6024 "0ldgf3daksh6lpblhqys67m4mxqx3q9s9n5plfam6dwshfik0ky6"))))
6025 (properties `((upstream-name . "FactoMineR")))
6026 (build-system r-build-system)
6027 (propagated-inputs
6028 `(("r-car" ,r-car)
6029 ("r-cluster" ,r-cluster)
6030 ("r-ellipse" ,r-ellipse)
6031 ("r-flashclust" ,r-flashclust)
6032 ("r-ggplot2" ,r-ggplot2)
6033 ("r-ggrepel" ,r-ggrepel)
6034 ("r-lattice" ,r-lattice)
6035 ("r-leaps" ,r-leaps)
6036 ("r-mass" ,r-mass)
6037 ("r-scatterplot3d" ,r-scatterplot3d)))
6038 (home-page "http://factominer.free.fr")
6039 (synopsis "Multivariate exploratory data analysis and data mining")
6040 (description
6041 "This package provides exploratory data analysis methods to summarize,
6042 visualize and describe datasets. The main principal component methods are
6043 available, those with the largest potential in terms of applications:
6044 principal component analysis (PCA) when variables are quantitative,
6045 correspondence analysis (CA) and multiple correspondence analysis (MCA) when
6046 variables are categorical, Multiple Factor Analysis when variables are
6047 structured in groups, etc. and hierarchical cluster analysis.")
6048 (license license:gpl2+)))
6049
6050 (define-public r-factoextra
6051 (package
6052 (name "r-factoextra")
6053 (version "1.0.7")
6054 (source
6055 (origin
6056 (method url-fetch)
6057 (uri (cran-uri "factoextra" version))
6058 (sha256
6059 (base32
6060 "1allvdjhd3pq8xz30b1cymwcik5iaahghrjrlnn54cwkfhfg0kv2"))))
6061 (build-system r-build-system)
6062 (propagated-inputs
6063 `(("r-abind" ,r-abind)
6064 ("r-cluster" ,r-cluster)
6065 ("r-dendextend" ,r-dendextend)
6066 ("r-factominer" ,r-factominer)
6067 ("r-ggplot2" ,r-ggplot2)
6068 ("r-ggpubr" ,r-ggpubr)
6069 ("r-ggrepel" ,r-ggrepel)
6070 ("r-reshape2" ,r-reshape2)
6071 ("r-tidyr" ,r-tidyr)))
6072 (home-page "http://www.sthda.com/english/rpkgs/factoextra")
6073 (synopsis "Extract and visualize the results of multivariate data analyses")
6074 (description
6075 "This package provides some easy-to-use functions to extract and
6076 visualize the output of multivariate data analyses, including
6077 @code{PCA} (Principal Component Analysis), @code{CA} (Correspondence
6078 Analysis), @code{MCA} (Multiple Correspondence Analysis), @code{FAMD} (Factor
6079 Analysis of Mixed Data), @code{MFA} (Multiple Factor Analysis) and
6080 @code{HMFA} (Hierarchical Multiple Factor Analysis) functions from different R
6081 packages. It contains also functions for simplifying some clustering analysis
6082 steps and provides ggplot2-based elegant data visualization.")
6083 (license license:gpl2)))
6084
6085 (define-public r-fansi
6086 (package
6087 (name "r-fansi")
6088 (version "0.4.1")
6089 (source
6090 (origin
6091 (method url-fetch)
6092 (uri (cran-uri "fansi" version))
6093 (sha256
6094 (base32
6095 "028ywjy538psnmdnddvy5jr3idzffr4hikzr4x97x0m30g4fws9w"))))
6096 (build-system r-build-system)
6097 (native-inputs
6098 `(("r-knitr" ,r-knitr))) ; for vignettes
6099 (home-page "https://github.com/brodieG/fansi")
6100 (synopsis "ANSI control sequence aware string functions")
6101 (description
6102 "This package provides counterparts to R string manipulation functions
6103 that account for the effects of ANSI text formatting control sequences.")
6104 (license license:gpl2+)))
6105
6106 (define-public r-nbclust
6107 (package
6108 (name "r-nbclust")
6109 (version "3.0")
6110 (source
6111 (origin
6112 (method url-fetch)
6113 (uri (cran-uri "NbClust" version))
6114 (sha256
6115 (base32
6116 "1vwb48zy6ln1ddpqmfngii1i80n8qmqyxnzdp6gbaq96lakl3w3c"))))
6117 (properties `((upstream-name . "NbClust")))
6118 (build-system r-build-system)
6119 (home-page "https://sites.google.com/site/malikacharrad/research/nbclust-package")
6120 (synopsis "Determine the best number of clusters in a data set")
6121 (description
6122 "NbClust provides 30 indexes for determining the optimal number of
6123 clusters in a data set and offers the best clustering scheme from different
6124 results to the user.")
6125 (license license:gpl2)))
6126
6127 (define-public r-hdf5r
6128 (package
6129 (name "r-hdf5r")
6130 (version "1.3.2")
6131 (source
6132 (origin
6133 (method url-fetch)
6134 (uri (cran-uri "hdf5r" version))
6135 (sha256
6136 (base32
6137 "0c2p06k9bp9rf0fyavnxw5d8jr2bbgx3gjblahz581cpvsfksj9i"))))
6138 (build-system r-build-system)
6139 (inputs
6140 `(("hdf5" ,hdf5)
6141 ("zlib" ,zlib)))
6142 (propagated-inputs
6143 `(("r-bit64" ,r-bit64)
6144 ("r-r6" ,r-r6)))
6145 (native-inputs
6146 `(("r-knitr" ,r-knitr)))
6147 (home-page "https://hhoeflin.github.io/hdf5r")
6148 (synopsis "Interface to the HDF5 binary data format")
6149 (description
6150 "HDF5 is a data model, library and file format for storing and managing
6151 large amounts of data. This package provides a nearly feature complete,
6152 object oriented wrapper for the HDF5 API using R6 classes. Additionally,
6153 functionality is added so that HDF5 objects behave very similar to their
6154 corresponding R counterparts.")
6155 (license license:asl2.0)))
6156
6157 (define-public r-itertools
6158 (package
6159 (name "r-itertools")
6160 (version "0.1-3")
6161 (source
6162 (origin
6163 (method url-fetch)
6164 (uri (cran-uri "itertools" version))
6165 (sha256
6166 (base32
6167 "1ls5biiva10pb1dj3ph4griykb9vam02hkrdmlr5a5wf660hg6xn"))))
6168 (build-system r-build-system)
6169 (propagated-inputs
6170 `(("r-iterators" ,r-iterators)))
6171 (home-page "https://cran.r-project.org/web/packages/itertools/")
6172 (synopsis "Iterator tools")
6173 (description
6174 "This package provides various tools for creating iterators, many
6175 patterned after functions in the Python @code{itertools} module, and others
6176 patterned after functions in the snow package.")
6177 (license license:gpl2)))
6178
6179 (define-public r-polynom
6180 (package
6181 (name "r-polynom")
6182 (version "1.4-0")
6183 (source
6184 (origin
6185 (method url-fetch)
6186 (uri (cran-uri "polynom" version))
6187 (sha256
6188 (base32
6189 "1pflscwc0qzdf0y60j7s0dkglgmz18xajywfbn6s263idyr8idy5"))))
6190 (build-system r-build-system)
6191 (home-page "https://cran.r-project.org/web/packages/polynom/")
6192 (synopsis "Functions for univariate polynomial manipulations")
6193 (description
6194 "This package provides a collection of functions to implement a class for
6195 univariate polynomial manipulations.")
6196 (license license:gpl2)))
6197
6198 (define-public r-gbrd
6199 (package
6200 (name "r-gbrd")
6201 (version "0.4-11")
6202 (source
6203 (origin
6204 (method url-fetch)
6205 (uri (cran-uri "gbRd" version))
6206 (sha256
6207 (base32
6208 "06x97rw5i6v6cgjxkfhxnw4dn7lghn5q6ra7ri5ag1x9dkfzcl82"))))
6209 (properties `((upstream-name . "gbRd")))
6210 (build-system r-build-system)
6211 (home-page "https://cran.r-project.org/web/packages/gbRd/")
6212 (synopsis "Utilities for processing Rd objects and files")
6213 (description
6214 "This package provides utilities for processing Rd objects and files.
6215 Extract argument descriptions and other parts of the help pages of
6216 functions.")
6217 (license license:gpl2+)))
6218
6219 (define-public r-rjags
6220 (package
6221 (name "r-rjags")
6222 (version "4-10")
6223 (source
6224 (origin
6225 (method url-fetch)
6226 (uri (cran-uri "rjags" version))
6227 (sha256
6228 (base32
6229 "1nhaim84ww8fd6m8xlpmngqcnp2qpql29ahc38366fxja3ghngmx"))))
6230 (build-system r-build-system)
6231 (propagated-inputs
6232 `(("r-coda" ,r-coda)))
6233 (inputs
6234 `(("jags" ,jags)))
6235 (native-inputs
6236 `(("pkg-config" ,pkg-config)))
6237 (home-page "http://mcmc-jags.sourceforge.net")
6238 (synopsis "Bayesian graphical models using MCMC")
6239 (description
6240 "This package provides an R interface to the JAGS MCMC library. JAGS is
6241 Just Another Gibbs Sampler. It is a program for analysis of Bayesian
6242 hierarchical models using Markov Chain Monte Carlo (MCMC) simulation.")
6243 (license license:gpl2)))
6244
6245 (define-public r-rdpack
6246 (package
6247 (name "r-rdpack")
6248 (version "0.11-1")
6249 (source
6250 (origin
6251 (method url-fetch)
6252 (uri (cran-uri "Rdpack" version))
6253 (sha256
6254 (base32
6255 "080y15p2hl4jsq91ak2f1y2kx1iqq5c5wzyx3zyhjwp01cahy0jq"))))
6256 (properties `((upstream-name . "Rdpack")))
6257 (build-system r-build-system)
6258 (propagated-inputs
6259 `(("r-bibtex" ,r-bibtex)
6260 ("r-gbrd" ,r-gbrd)))
6261 (home-page "https://github.com/GeoBosh/Rdpack")
6262 (synopsis "Update and manipulate Rd documentation objects")
6263 (description
6264 "This package provides functions for manipulation of R documentation
6265 objects, including functions @code{reprompt()} and @code{ereprompt()} for
6266 updating Rd documentation for functions, methods and classes; it also includes
6267 Rd macros for citations and import of references from bibtex files for use in
6268 Rd files and roxygen2 comments, as well as many functions for manipulation of
6269 references and Rd files.")
6270 (license license:gpl2+)))
6271
6272 (define-public r-officer
6273 (package
6274 (name "r-officer")
6275 (version "0.3.8")
6276 (source
6277 (origin
6278 (method url-fetch)
6279 (uri (cran-uri "officer" version))
6280 (sha256
6281 (base32
6282 "0xhx5n6qksyh2s9hvwhnc8y0hn362asc5y94ld06snad786hz0rw"))))
6283 (build-system r-build-system)
6284 (propagated-inputs
6285 `(("r-magrittr" ,r-magrittr)
6286 ("r-r6" ,r-r6)
6287 ("r-uuid" ,r-uuid)
6288 ("r-xml2" ,r-xml2)
6289 ("r-zip" ,r-zip)))
6290 (native-inputs
6291 `(("r-knitr" ,r-knitr)))
6292 (home-page "https://davidgohel.github.io/officer")
6293 (synopsis "Manipulation of Word and PowerPoint documents")
6294 (description
6295 "This package provides tools to access and manipulate Word and PowerPoint
6296 documents from R. The package focuses on tabular and graphical reporting from
6297 R; it also provides two functions that let users get document content into
6298 data objects. A set of functions lets add and remove images, tables and
6299 paragraphs of text in new or existing documents. When working with PowerPoint
6300 presentations, slides can be added or removed; shapes inside slides can also
6301 be added or removed. When working with Word documents, a cursor can be used
6302 to help insert or delete content at a specific location in the document.")
6303 (license license:gpl3)))
6304
6305 (define-public r-abn
6306 (package
6307 (name "r-abn")
6308 (version "2.2")
6309 (source
6310 (origin
6311 (method url-fetch)
6312 (uri (cran-uri "abn" version))
6313 (sha256
6314 (base32
6315 "19w6bdjyp4zwqs6p0flry4qxqynf9rh8ykdrfrp61wrdf7kysw0d"))))
6316 (build-system r-build-system)
6317 (inputs
6318 `(("gsl" ,gsl)))
6319 (propagated-inputs
6320 `(("r-lme4" ,r-lme4)
6321 ("r-mass" ,r-mass)
6322 ("r-nnet" ,r-nnet)
6323 ("r-rcpp" ,r-rcpp)
6324 ("r-rcpparmadillo" ,r-rcpparmadillo)
6325 ("r-rjags" ,r-rjags)))
6326 (home-page "https://r-bayesian-networks.org/")
6327 (synopsis "Modelling multivariate data with additive bayesian networks")
6328 (description
6329 "Bayesian network analysis is a form of probabilistic graphical models
6330 which derives from empirical data a directed acyclic graph, DAG, describing
6331 the dependency structure between random variables. An additive Bayesian
6332 network model consists of a form of a DAG where each node comprises a
6333 @dfn{generalized linear model} (GLM). Additive Bayesian network models are
6334 equivalent to Bayesian multivariate regression using graphical modelling, they
6335 generalises the usual multivariable regression, GLM, to multiple dependent
6336 variables. This package provides routines to help determine optimal Bayesian
6337 network models for a given data set, where these models are used to identify
6338 statistical dependencies in messy, complex data.")
6339 (license license:gpl2+)))
6340
6341 (define-public r-acd
6342 (package
6343 (name "r-acd")
6344 (version "1.5.3")
6345 (source
6346 (origin
6347 (method url-fetch)
6348 (uri (cran-uri "ACD" version))
6349 (sha256
6350 (base32
6351 "1a67bi3hklq8nlc50r0qnyr4k7m9kpvijy8sqqpm54by5hsysfd6"))))
6352 (properties `((upstream-name . "ACD")))
6353 (build-system r-build-system)
6354 (home-page "https://cran.r-project.org/web/packages/ACD/")
6355 (synopsis "Categorical data analysis with complete or missing responses")
6356 (description
6357 "This package provides tools for categorical data analysis with complete
6358 or missing responses.")
6359 (license license:gpl2+)))
6360
6361 (define-public r-acdm
6362 (package
6363 (name "r-acdm")
6364 (version "1.0.4")
6365 (source
6366 (origin
6367 (method url-fetch)
6368 (uri (cran-uri "ACDm" version))
6369 (sha256
6370 (base32
6371 "0b4f02ga5ra66mbrm79g0bnlzmii82rks9kmxixxqgf18yhlyjil"))))
6372 (properties `((upstream-name . "ACDm")))
6373 (build-system r-build-system)
6374 (propagated-inputs
6375 `(("r-dplyr" ,r-dplyr)
6376 ("r-ggplot2" ,r-ggplot2)
6377 ("r-plyr" ,r-plyr)
6378 ("r-rsolnp" ,r-rsolnp)
6379 ("r-zoo" ,r-zoo)))
6380 (home-page "https://cran.r-project.org/web/packages/ACDm/")
6381 (synopsis "Tools for Autoregressive Conditional Duration Models")
6382 (description
6383 "ACDm is a package for Autoregressive Conditional Duration (ACD, Engle
6384 and Russell, 1998) models. It creates trade, price or volume durations from
6385 transactions (tic) data, performs diurnal adjustments, fits various ACD models
6386 and tests them.")
6387 (license license:gpl2+)))
6388
6389 (define-public r-overlap
6390 (package
6391 (name "r-overlap")
6392 (version "0.3.2")
6393 (source
6394 (origin
6395 (method url-fetch)
6396 (uri (cran-uri "overlap" version))
6397 (sha256
6398 (base32
6399 "1j3m6ir1chdz0si2fhcw6gs7c9h09bv0chz18rpzxsywww6d4rzy"))))
6400 (build-system r-build-system)
6401 (home-page "https://cran.r-project.org/web/packages/overlap/")
6402 (synopsis "Estimates of coefficient of overlapping for animal activity patterns")
6403 (description
6404 "This package provides functions to fit kernel density functions to data
6405 on temporal activity patterns of animals; estimate coefficients of overlapping
6406 of densities for two species; and calculate bootstrap estimates of confidence
6407 intervals.")
6408 (license license:gpl3+)))
6409
6410 (define-public r-snakecase
6411 (package
6412 (name "r-snakecase")
6413 (version "0.11.0")
6414 (source
6415 (origin
6416 (method url-fetch)
6417 (uri (cran-uri "snakecase" version))
6418 (sha256
6419 (base32
6420 "1ky1x2cp5rd0ffd9m1fji9sq4z4jsrpxzg30brw8bb4ihfjj114r"))))
6421 (build-system r-build-system)
6422 (propagated-inputs
6423 `(("r-stringi" ,r-stringi)
6424 ("r-stringr" ,r-stringr)))
6425 (home-page "https://github.com/Tazinho/snakecase")
6426 (synopsis "Convert strings into any case")
6427 (description
6428 "This package provides a consistent, flexible and easy to use tool to
6429 parse and convert strings into cases like snake or camel among others.")
6430 (license license:gpl3)))
6431
6432 (define-public r-prediction
6433 (package
6434 (name "r-prediction")
6435 (version "0.3.14")
6436 (source
6437 (origin
6438 (method url-fetch)
6439 (uri (cran-uri "prediction" version))
6440 (sha256
6441 (base32
6442 "0awlq5lxfia6m2b91w73rksp93rbwv5gwqb36wbji4rgq41rzbrx"))))
6443 (build-system r-build-system)
6444 (propagated-inputs
6445 `(("r-data-table" ,r-data-table)))
6446 (home-page "https://github.com/leeper/prediction")
6447 (synopsis "Tidy, type-safe prediction methods")
6448 (description
6449 "This package provides the @code{prediction()} function, a type-safe
6450 alternative to @code{predict()} that always returns a data frame. The package
6451 currently supports common model types (e.g., @code{\"lm\"}, @code{\"glm\"})
6452 from the @code{stats} package, as well as numerous other model classes from
6453 other add-on packages.")
6454 (license license:expat)))
6455
6456 (define-public r-insight
6457 (package
6458 (name "r-insight")
6459 (version "0.8.2")
6460 (source
6461 (origin
6462 (method url-fetch)
6463 (uri (cran-uri "insight" version))
6464 (sha256
6465 (base32
6466 "0fjf7dwpv1a7qfbzixppg348z1ksq19kdjm08vcb2am7w0k3plcj"))))
6467 (build-system r-build-system)
6468 (native-inputs
6469 `(("r-knitr" ,r-knitr)))
6470 (home-page "https://easystats.github.io/insight/")
6471 (synopsis "Easy access to model information for various model objects")
6472 (description
6473 "This package provides a tool to provide an easy, intuitive and
6474 consistent access to information contained in various R models, like model
6475 formulas, model terms, information about random effects, data that was used to
6476 fit the model or data from response variables. The package mainly revolves
6477 around two types of functions: Functions that find (the names of) information,
6478 starting with @code{find_}, and functions that get the underlying data,
6479 starting with @code{get_}. The package has a consistent syntax and works with
6480 many different model objects, where otherwise functions to access these
6481 information are missing.")
6482 (license license:gpl3)))
6483
6484 (define-public r-sjlabelled
6485 (package
6486 (name "r-sjlabelled")
6487 (version "1.1.3")
6488 (source
6489 (origin
6490 (method url-fetch)
6491 (uri (cran-uri "sjlabelled" version))
6492 (sha256
6493 (base32
6494 "1amq7i9sxf0pkxhskqc53xq5wvc9rdxm7cxyb4b6xh6qsskjnlsj"))))
6495 (build-system r-build-system)
6496 (propagated-inputs
6497 `(("r-haven" ,r-haven)
6498 ("r-insight" ,r-insight)))
6499 (home-page "https://github.com/strengejacke/sjlabelled")
6500 (synopsis "Labelled data utility functions")
6501 (description
6502 "This package provides a collection of functions dealing with labelled
6503 data, like reading and writing data between R and other statistical software
6504 packages. This includes easy ways to get, set or change value and variable
6505 label attributes, to convert labelled vectors into factors or numeric (and
6506 vice versa), or to deal with multiple declared missing values.")
6507 (license license:gpl3)))
6508
6509 (define-public r-sjmisc
6510 (package
6511 (name "r-sjmisc")
6512 (version "2.8.4")
6513 (source
6514 (origin
6515 (method url-fetch)
6516 (uri (cran-uri "sjmisc" version))
6517 (sha256
6518 (base32
6519 "1ad7ca71w0v9ja4wb47aygczc987zz1lnjljhh2n497nzrpzzv64"))))
6520 (build-system r-build-system)
6521 (propagated-inputs
6522 `(("r-dplyr" ,r-dplyr)
6523 ("r-insight" ,r-insight)
6524 ("r-magrittr" ,r-magrittr)
6525 ("r-purrr" ,r-purrr)
6526 ("r-rlang" ,r-rlang)
6527 ("r-sjlabelled" ,r-sjlabelled)
6528 ("r-tidyselect" ,r-tidyselect)))
6529 (native-inputs
6530 `(("r-knitr" ,r-knitr)))
6531 (home-page "https://github.com/strengejacke/sjmisc")
6532 (synopsis "Data and variable transformation functions")
6533 (description
6534 "This package is a collection of miscellaneous utility functions,
6535 supporting data transformation tasks like recoding, dichotomizing or grouping
6536 variables, setting and replacing missing values. The data transformation
6537 functions also support labelled data, and all integrate seamlessly into a
6538 tidyverse workflow.")
6539 (license license:gpl3)))
6540
6541 (define-public r-nortest
6542 (package
6543 (name "r-nortest")
6544 (version "1.0-4")
6545 (source
6546 (origin
6547 (method url-fetch)
6548 (uri (cran-uri "nortest" version))
6549 (sha256
6550 (base32
6551 "17r0wpz72z9312c70nwi1i1kp1v9fm1h6jg7q5cx1mc1h420m1d3"))))
6552 (build-system r-build-system)
6553 (home-page "https://cran.r-project.org/web/packages/nortest/")
6554 (synopsis "Tests for normality")
6555 (description
6556 "This package provides five omnibus tests for testing the composite
6557 hypothesis of normality.")
6558 (license license:gpl2+)))
6559
6560 (define-public r-moonbook
6561 (package
6562 (name "r-moonbook")
6563 (version "0.2.3")
6564 (source
6565 (origin
6566 (method url-fetch)
6567 (uri (cran-uri "moonBook" version))
6568 (sha256
6569 (base32
6570 "0hys56mwbm776ff7dibi8wzyf69qiais9rs1jazv79lk6h56s9s6"))))
6571 (properties `((upstream-name . "moonBook")))
6572 (build-system r-build-system)
6573 (propagated-inputs
6574 `(("r-magrittr" ,r-magrittr)
6575 ("r-nortest" ,r-nortest)
6576 ("r-purrr" ,r-purrr)
6577 ("r-sjmisc" ,r-sjmisc)
6578 ("r-stringr" ,r-stringr)
6579 ("r-survival" ,r-survival)))
6580 (home-page "https://github.com/cardiomoon/moonBook")
6581 (synopsis "Functions and datasets for the book by Keon-Woong Moon")
6582 (description
6583 "This package provides several analysis-related functions for the book
6584 entitled \"R statistics and graph for medical articles\" (written in Korean),
6585 version 1, by Keon-Woong Moon with Korean demographic data with several plot
6586 functions.")
6587 (license license:gpl2)))
6588
6589 (define-public r-flextable
6590 (package
6591 (name "r-flextable")
6592 (version "0.5.9")
6593 (source
6594 (origin
6595 (method url-fetch)
6596 (uri (cran-uri "flextable" version))
6597 (sha256
6598 (base32
6599 "1rkz0nhwjy1l8sb0kmna5v492n2ydnk7gydswnmf88r8vfyjczhw"))))
6600 (build-system r-build-system)
6601 (propagated-inputs
6602 `(("r-base64enc" ,r-base64enc)
6603 ("r-data-table" ,r-data-table)
6604 ("r-gdtools" ,r-gdtools)
6605 ("r-htmltools" ,r-htmltools)
6606 ("r-knitr" ,r-knitr)
6607 ("r-officer" ,r-officer)
6608 ("r-rlang" ,r-rlang)
6609 ("r-rmarkdown" ,r-rmarkdown)
6610 ("r-xml2" ,r-xml2)))
6611 (home-page "https://davidgohel.github.io/flextable")
6612 (synopsis "Functions for tabular reporting")
6613 (description
6614 "This package provides tools to create pretty tables for HTML documents
6615 and other formats. Functions are provided to let users create tables, modify
6616 and format their content. It extends the @code{officer} package and can be
6617 used within R markdown documents when rendering to HTML and to Word
6618 documents.")
6619 (license license:gpl3)))
6620
6621 (define-public r-writexl
6622 (package
6623 (name "r-writexl")
6624 (version "1.2")
6625 (source
6626 (origin
6627 (method url-fetch)
6628 (uri (cran-uri "writexl" version))
6629 (sha256
6630 (base32
6631 "09fhdip6igcg97fjx4c7727cx2lb49l4d74l4i8rg2bag2s5lrj3"))))
6632 (build-system r-build-system)
6633 (inputs `(("zlib" ,zlib)))
6634 (home-page "https://github.com/ropensci/writexl")
6635 (synopsis "Export data frames to xlsx format")
6636 (description
6637 "This package provides a data frame to xlsx exporter based on
6638 libxlsxwriter.")
6639 (license license:bsd-2)))
6640
6641 (define-public r-biasedurn
6642 (package
6643 (name "r-biasedurn")
6644 (version "1.07")
6645 (source
6646 (origin
6647 (method url-fetch)
6648 (uri (cran-uri "BiasedUrn" version))
6649 (sha256
6650 (base32
6651 "13i2lgfnjhlbbm2yxfc2l5hswqw6x03pwba5csjmirv8kpjw4xr3"))))
6652 (properties `((upstream-name . "BiasedUrn")))
6653 (build-system r-build-system)
6654 (home-page "https://cran.r-project.org/web/packages/BiasedUrn/")
6655 (synopsis "Biased Urn model distributions")
6656 (description
6657 "This package provides statistical models of biased sampling in the form
6658 of univariate and multivariate noncentral hypergeometric distributions,
6659 including Wallenius' noncentral hypergeometric distribution and Fisher's
6660 noncentral hypergeometric distribution (also called extended hypergeometric
6661 distribution).")
6662 (license license:gpl3)))
6663
6664 (define-public r-goplot
6665 (package
6666 (name "r-goplot")
6667 (version "1.0.2")
6668 (source
6669 (origin
6670 (method url-fetch)
6671 (uri (cran-uri "GOplot" version))
6672 (sha256
6673 (base32
6674 "1y8dv0kbzpr9za91njw0x233vx5d13vqml9hmpddcyi9s6va5nix"))))
6675 (properties `((upstream-name . "GOplot")))
6676 (build-system r-build-system)
6677 (propagated-inputs
6678 `(("r-ggdendro" ,r-ggdendro)
6679 ("r-ggplot2" ,r-ggplot2)
6680 ("r-gridextra" ,r-gridextra)
6681 ("r-rcolorbrewer" ,r-rcolorbrewer)))
6682 (home-page "https://github.com/wencke/wencke.github.io")
6683 (synopsis "Visualization of functional analysis data")
6684 (description
6685 "This package provides an implementation of multilayered visualizations
6686 for enhanced graphical representation of functional analysis data. It
6687 combines and integrates omics data derived from expression and functional
6688 annotation enrichment analyses. Its plotting functions have been developed
6689 with an hierarchical structure in mind: starting from a general overview to
6690 identify the most enriched categories (modified bar plot, bubble plot) to a
6691 more detailed one displaying different types of relevant information for the
6692 molecules in a given set of categories (circle plot, chord plot, cluster plot,
6693 Venn diagram, heatmap).")
6694 (license license:gpl2)))
6695
6696 (define-public r-getopt
6697 (package
6698 (name "r-getopt")
6699 (version "1.20.3")
6700 (source
6701 (origin
6702 (method url-fetch)
6703 (uri (cran-uri "getopt" version))
6704 (sha256
6705 (base32
6706 "0zzmzgwl9a4y3s34600vmih22d6y32294f9bvxrnmffnvkgmy7sk"))))
6707 (build-system r-build-system)
6708 (home-page "https://github.com/trevorld/getopt")
6709 (synopsis "Command-line option processor for R")
6710 (description
6711 "This package is designed to be used with Rscript to write shebang
6712 scripts that accept short and long options. Many users will prefer to
6713 use the packages @code{optparse} or @code{argparse} which add extra
6714 features like automatically generated help options and usage texts,
6715 support for default values, positional argument support, etc.")
6716 (license license:gpl2+)))
6717
6718 (define-public r-findpython
6719 (package
6720 (name "r-findpython")
6721 (version "1.0.5")
6722 (source
6723 (origin
6724 (method url-fetch)
6725 (uri (cran-uri "findpython" version))
6726 (sha256
6727 (base32
6728 "0icifm4z6hhpmcjrg75a875iph0ci890ss02kdv3725pijc236iy"))))
6729 (build-system r-build-system)
6730 (home-page "https://github.com/trevorld/findpython")
6731 (synopsis "Functions to find an acceptable Python binary")
6732 (description
6733 "This package was designed to find an acceptable Python binary that
6734 matches version and feature constraints.")
6735 (license license:expat)))
6736
6737 ;; This in not the same as "r-argparser"
6738 (define-public r-argparse
6739 (package
6740 (name "r-argparse")
6741 (version "2.0.1")
6742 (source
6743 (origin
6744 (method url-fetch)
6745 (uri (cran-uri "argparse" version))
6746 (sha256
6747 (base32
6748 "1as7h6z7kzgv0fqzpnp76qbm96b4jcd37azd58b7rz0l1n94764l"))))
6749 (build-system r-build-system)
6750 (inputs `(("python" ,python)))
6751 (propagated-inputs
6752 `(("r-findpython" ,r-findpython)
6753 ("r-jsonlite" ,r-jsonlite)
6754 ("r-r6" ,r-r6)))
6755 (home-page "https://github.com/trevorld/argparse")
6756 (synopsis "Command line optional and positional argument parser")
6757 (description
6758 "This package provides a command line parser to be used with Rscript to
6759 write shebang scripts that gracefully accept positional and optional arguments
6760 and automatically generate usage notices.")
6761 (license license:gpl2+)))
6762
6763 (define-public r-hash
6764 (package
6765 (name "r-hash")
6766 (version "2.2.6.1")
6767 (source
6768 (origin
6769 (method url-fetch)
6770 (uri (cran-uri "hash" version))
6771 (sha256
6772 (base32
6773 "0b3fl0rvgwb992knl81vm99lsldg5clvaqjh6mamm6zqmb6dz056"))))
6774 (build-system r-build-system)
6775 (home-page "https://cran.r-project.org/web/packages/hash/")
6776 (synopsis "Implementation of hash/associated arrays/dictionaries")
6777 (description
6778 "This package implements a data structure similar to hashes in Perl and
6779 dictionaries in Python but with a purposefully R flavor. For objects of
6780 appreciable size, access using hashes outperforms native named lists and
6781 vectors.")
6782 (license license:gpl2+)))
6783
6784 (define-public r-orddom
6785 (package
6786 (name "r-orddom")
6787 (version "3.1")
6788 (source
6789 (origin
6790 (method url-fetch)
6791 (uri (cran-uri "orddom" version))
6792 (sha256
6793 (base32
6794 "165axs15fvwhrp89xd87l81q3h2qjll1vrwcsap645cwvb85nwsh"))))
6795 (build-system r-build-system)
6796 (propagated-inputs `(("r-psych" ,r-psych)))
6797 (home-page "https://cran.r-project.org/web/packages/orddom/")
6798 (synopsis "Ordinal dominance statistics")
6799 (description
6800 "This package provides tools to compute ordinal, statistics and effect
6801 sizes as an alternative to mean comparison: Cliff's delta or success rate
6802 difference (SRD), Vargha and Delaney's A or the Area Under a Receiver
6803 Operating Characteristic Curve (AUC), the discrete type of McGraw & Wong's
6804 Common Language Effect Size (CLES) or Grissom & Kim's Probability of
6805 Superiority (PS), and the Number needed to treat (NNT) effect size. Moreover,
6806 comparisons to Cohen's d are offered based on Huberty & Lowman's Percentage of
6807 Group (Non-)Overlap considerations.")
6808 (license license:gpl2)))
6809
6810 (define-public r-deriv
6811 (package
6812 (name "r-deriv")
6813 (version "4.0")
6814 (source
6815 (origin
6816 (method url-fetch)
6817 (uri (cran-uri "Deriv" version))
6818 (sha256
6819 (base32
6820 "03mlfy8jzzzbh2l18gnmw0a71n9savx4cw72yhkxq93v2xj8fy3n"))))
6821 (properties `((upstream-name . "Deriv")))
6822 (build-system r-build-system)
6823 (home-page "https://cran.r-project.org/web/packages/Deriv")
6824 (synopsis "Symbolic differentiation")
6825 (description
6826 "This package provides an R-based solution for symbolic differentiation.
6827 It admits user-defined functions as well as function substitution in arguments
6828 of functions to be differentiated. Some symbolic simplification is part of
6829 the work.")
6830 (license license:gpl3+)))
6831
6832 (define-public r-doby
6833 (package
6834 (name "r-doby")
6835 (version "4.6.5")
6836 (source
6837 (origin
6838 (method url-fetch)
6839 (uri (cran-uri "doBy" version))
6840 (sha256
6841 (base32
6842 "1ckazh701b4ilg8bj17ji903538jmb49d997gm49ah5j5jc1x0g7"))))
6843 (properties `((upstream-name . "doBy")))
6844 (build-system r-build-system)
6845 (propagated-inputs
6846 `(("r-broom" ,r-broom)
6847 ("r-deriv" ,r-deriv)
6848 ("r-dplyr" ,r-dplyr)
6849 ("r-magrittr" ,r-magrittr)
6850 ("r-mass" ,r-mass)
6851 ("r-matrix" ,r-matrix)
6852 ("r-plyr" ,r-plyr)
6853 ("r-pbkrtest" ,r-pbkrtest)
6854 ("r-tibble" ,r-tibble)))
6855 (home-page "http://people.math.aau.dk/~sorenh/software/doBy/")
6856 (synopsis "Groupwise statistics, LSmeans, linear contrasts, and utilities")
6857 (description
6858 "This package contains:
6859
6860 @itemize
6861 @item facilities for working with grouped data: @code{do}
6862 something to data stratified @code{by} some variables.
6863 @item implementations of least-squares means, general linear contrasts, and
6864 @item miscellaneous other utilities.
6865 @end itemize\n")
6866 (license license:gpl2+)))
6867
6868 (define-public r-refgenome
6869 (package
6870 (name "r-refgenome")
6871 (version "1.7.7")
6872 (source
6873 (origin
6874 (method url-fetch)
6875 (uri (cran-uri "refGenome" version))
6876 (sha256
6877 (base32
6878 "1za89bn3am1zgvm641qi1ab6kaqpll4rb9p9f1sjwvcgqq6065g5"))))
6879 (properties `((upstream-name . "refGenome")))
6880 (build-system r-build-system)
6881 (propagated-inputs
6882 `(("r-dbi" ,r-dbi)
6883 ("r-doby" ,r-doby)
6884 ("r-rsqlite" ,r-rsqlite)))
6885 (home-page "https://cran.r-project.org/web/packages/refGenome/")
6886 (synopsis
6887 "Gene and splice site annotation using annotation data from Ensembl and UCSC")
6888 (description
6889 "This package contains functionality for importing and managing of
6890 downloaded genome annotation data from the Ensembl genome browser (European
6891 Bioinformatics Institute) and from the UCSC genome browser (University of
6892 California, Santa Cruz) and annotation routines for genomic positions and
6893 splice site positions.")
6894 (license license:gpl2)))
6895
6896 (define-public r-basix
6897 (package
6898 (name "r-basix")
6899 (version "1.1")
6900 (source
6901 (origin
6902 (method url-fetch)
6903 (uri (cran-uri "BASIX" version))
6904 (sha256
6905 (base32
6906 "18dkvv1iwskfnlpl6xridcgqpalbbpm2616mvc3hfrc0b26v01id"))))
6907 (properties `((upstream-name . "BASIX")))
6908 (build-system r-build-system)
6909 (home-page "https://cran.r-project.org/web/packages/BASIX/")
6910 (synopsis "Efficient C/C++ toolset for R")
6911 (description
6912 "BASIX provides some efficient C/C++ implementations of native R
6913 procedures to speed up calculations in R.")
6914 (license license:gpl2)))
6915
6916 (define-public r-blockfest
6917 (package
6918 (name "r-blockfest")
6919 (version "1.6")
6920 (source
6921 (origin
6922 (method url-fetch)
6923 (uri (cran-uri "BlockFeST" version))
6924 (sha256
6925 (base32
6926 "0hj7a5as7nxbgjac7lbj6qfwffx3g8x8phpf9a55f1c9cdzi73a5"))))
6927 (properties `((upstream-name . "BlockFeST")))
6928 (build-system r-build-system)
6929 (propagated-inputs `(("r-basix" ,r-basix)))
6930 (home-page "https://cran.r-project.org/web/packages/BlockFeST/")
6931 (synopsis "Bayesian calculation of region-specific fixation index")
6932 (description
6933 "This package provides an R implementation of an extension of the
6934 BayeScan software for codominant markers, adding the option to group
6935 individual SNPs into pre-defined blocks. A typical application of this new
6936 approach is the identification of genomic regions, genes, or gene sets
6937 containing one or more SNPs that evolved under directional selection.")
6938 (license license:gpl2)))
6939
6940 (define-public r-proc
6941 (package
6942 (name "r-proc")
6943 (version "1.16.2")
6944 (source
6945 (origin
6946 (method url-fetch)
6947 (uri (cran-uri "pROC" version))
6948 (sha256
6949 (base32
6950 "0apwa5zzqh74pjnvf5a1s5qf6i9r5h44jdllfrwymkd2v479d2xn"))))
6951 (properties `((upstream-name . "pROC")))
6952 (build-system r-build-system)
6953 (propagated-inputs
6954 `(("r-plyr" ,r-plyr)
6955 ("r-rcpp" ,r-rcpp)))
6956 (home-page "https://web.expasy.org/pROC/")
6957 (synopsis "Display and analyze ROC curves")
6958 (description
6959 "This package provides tools for visualizing, smoothing and comparing
6960 receiver operating characteristic (ROC curves). The area under the
6961 curve (AUC) can be compared with statistical tests based on U-statistics or
6962 bootstrap. Confidence intervals can be computed for (p)AUC or ROC curves.")
6963 (license license:gpl3+)))
6964
6965 (define-public r-rootsolve
6966 (package
6967 (name "r-rootsolve")
6968 (version "1.8.2")
6969 (source
6970 (origin
6971 (method url-fetch)
6972 (uri (cran-uri "rootSolve" version))
6973 (sha256
6974 (base32
6975 "0rj7c4zcrzgz7sb0vgvh7swpfafnw4040cxp7ypas3s8fnihn54l"))))
6976 (properties `((upstream-name . "rootSolve")))
6977 (build-system r-build-system)
6978 (native-inputs `(("gfortran" ,gfortran)))
6979 (home-page "https://cran.r-project.org/web/packages/rootSolve/")
6980 (synopsis "Tools for the analysis of ordinary differential equations")
6981 (description
6982 "This package provides routines to find the root of nonlinear functions,
6983 and to perform steady-state and equilibrium analysis of @dfn{ordinary
6984 differential equations} (ODE). It includes routines that:
6985
6986 @enumerate
6987 @item generate gradient and jacobian matrices (full and banded),
6988 @item find roots of non-linear equations by the Newton-Raphson method,
6989 @item estimate steady-state conditions of a system of (differential) equations
6990 in full, banded or sparse form, using the Newton-Raphson method, or by
6991 dynamically running,
6992 @item solve the steady-state conditions for uni- and multicomponent 1-D, 2-D,
6993 and 3-D partial differential equations, that have been converted to ordinary
6994 differential equations by numerical differencing (using the method-of-lines
6995 approach).
6996 @end enumerate\n")
6997 (license license:gpl2+)))
6998
6999 (define-public r-abcanalysis
7000 (package
7001 (name "r-abcanalysis")
7002 (version "1.2.1")
7003 (source
7004 (origin
7005 (method url-fetch)
7006 (uri (cran-uri "ABCanalysis" version))
7007 (sha256
7008 (base32 "0wac1ksmnxa36v99ca4hv8k0rsh3igwpcllmlv9wf7i9kgqviqwi"))))
7009 (properties `((upstream-name . "ABCanalysis")))
7010 (build-system r-build-system)
7011 (propagated-inputs `(("r-plotrix" ,r-plotrix)))
7012 (home-page "https://www.uni-marburg.de/fb12/arbeitsgruppen/datenbionik/software-en/")
7013 (synopsis "Computed ABC Analysis")
7014 (description
7015 "Multivariate data sets often differ in several factors or derived statistical
7016 parameters, which have to be selected for a valid interpretation. Basing this
7017 selection on traditional statistical limits leads occasionally to the perception
7018 of losing information from a data set. This package provides tools to calculate
7019 these limits on the basis of the mathematical properties of the distribution of
7020 the analyzed items.")
7021 (license license:gpl3)))
7022
7023 (define-public r-slam
7024 (package
7025 (name "r-slam")
7026 (version "0.1-47")
7027 (source
7028 (origin
7029 (method url-fetch)
7030 (uri (cran-uri "slam" version))
7031 (sha256
7032 (base32 "12fggw2c7hz3bpvsaqm24g3r6lbpq6jgli24g7x5j859iak5cqv9"))))
7033 (build-system r-build-system)
7034 (home-page "https://cran.r-project.org/web/packages/slam/")
7035 (synopsis "Sparse lightweight arrays and matrices")
7036 (description
7037 "This package contains data structures and algorithms for sparse arrays and matrices,
7038 based on index arrays and simple triplet representations, respectively.")
7039 (license license:gpl2)))
7040
7041 (define-public r-manipulatewidget
7042 (package
7043 (name "r-manipulatewidget")
7044 (version "0.10.1")
7045 (source
7046 (origin
7047 (method url-fetch)
7048 (uri (cran-uri "manipulateWidget" version))
7049 (sha256
7050 (base32 "1vi71sjh7z1a880wffk8qqw7iysvk42q78giqxmm2sqz2a912qlx"))))
7051 (properties
7052 `((upstream-name . "manipulateWidget")))
7053 (build-system r-build-system)
7054 (propagated-inputs
7055 `(("r-base64enc" ,r-base64enc)
7056 ("r-codetools" ,r-codetools)
7057 ("r-htmltools" ,r-htmltools)
7058 ("r-htmlwidgets" ,r-htmlwidgets)
7059 ("r-knitr" ,r-knitr)
7060 ("r-miniui" ,r-miniui)
7061 ("r-shiny" ,r-shiny)
7062 ("r-webshot" ,r-webshot)))
7063 (home-page "https://github.com/rte-antares-rpackage/manipulateWidget/")
7064 (synopsis "Add even more interactivity to interactive charts")
7065 (description
7066 "This package lets you create in just a few lines of R code a nice user interface to
7067 modify the data or the graphical parameters of one or multiple interactive
7068 charts. It is useful to quickly explore visually some data or for package
7069 developers to generate user interfaces easy to maintain.")
7070 (license license:gpl2+)))
7071
7072 (define-public r-a3
7073 (package
7074 (name "r-a3")
7075 (version "1.0.0")
7076 (source
7077 (origin
7078 (method url-fetch)
7079 (uri (cran-uri "A3" version))
7080 (sha256
7081 (base32 "017hq9pjsv1h9i7cqk5cfx27as54shlhdsdvr6jkhb8jfkpdb6cw"))))
7082 (properties `((upstream-name . "A3")))
7083 (build-system r-build-system)
7084 (propagated-inputs
7085 `(("r-pbapply" ,r-pbapply)
7086 ("r-xtable" ,r-xtable)))
7087 (home-page "https://cran.r-project.org/web/packages/A3/")
7088 (synopsis "Error metrics for predictive models")
7089 (description
7090 "This package supplies tools for tabulating and analyzing the results of predictive
7091 models. The methods employed are applicable to virtually any predictive model
7092 and make comparisons between different methodologies straightforward.")
7093 (license license:gpl2+)))
7094
7095 (define-public r-infotheo
7096 (package
7097 (name "r-infotheo")
7098 (version "1.2.0")
7099 (source
7100 (origin
7101 (method url-fetch)
7102 (uri (cran-uri "infotheo" version))
7103 (sha256
7104 (base32
7105 "18xacczfq3z3xpy434js4nf3l19lczngzd0lq26wh22pvg1yniwv"))))
7106 (build-system r-build-system)
7107 (home-page "http://homepage.meyerp.com/software")
7108 (synopsis "Information-theoretic measures")
7109 (description
7110 "This package implements various measures of information theory based on
7111 several entropy estimators.")
7112 (license license:gpl3+)))
7113
7114 (define-public r-abcoptim
7115 (package
7116 (name "r-abcoptim")
7117 (version "0.15.0")
7118 (source
7119 (origin
7120 (method url-fetch)
7121 (uri (cran-uri "ABCoptim" version))
7122 (sha256
7123 (base32 "1ih0xk88qhsmpvnxf56041wx5sk8as2f4f2gdnpnwdym9mbr9n4b"))))
7124 (properties `((upstream-name . "ABCoptim")))
7125 (build-system r-build-system)
7126 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
7127 (home-page "https://github.com/gvegayon/ABCoptim/")
7128 (synopsis "Optimization of Artificial Bee Colony algorithm")
7129 (description
7130 "Artificial Bee Colony (ABC) is one of the most recently defined algorithms by Dervis
7131 Karaboga in 2005, motivated by the intelligent behavior of honey bees. It is as
7132 simple as Particle Swarm Optimization (PSO) and Differential Evolution (DE)
7133 algorithms, and uses only common control parameters such as colony size and
7134 maximum cycle number. The @code{r-abcoptim} implements the Artificial bee
7135 colony optimization algorithm @url{http://mf.erciyes.edu.tr/abc/pub/tr06_2005.pdf}.
7136 This version is a work-in-progress and is written in R code.")
7137 (license license:expat)))
7138
7139 (define-public r-abcp2
7140 (package
7141 (name "r-abcp2")
7142 (version "1.2")
7143 (source
7144 (origin
7145 (method url-fetch)
7146 (uri (cran-uri "ABCp2" version))
7147 (sha256
7148 (base32 "1s2skkxpzss7c29i8600psgrp0hl46jcrxqrmy2b4db8hc0kcnbx"))))
7149 (properties `((upstream-name . "ABCp2")))
7150 (build-system r-build-system)
7151 (propagated-inputs `(("r-mass" ,r-mass)))
7152 (home-page "https://cran.r-project.org/web/packages/ABCp2/")
7153 (synopsis "Approximate Bayesian Computational Model for Estimating P2")
7154 (description
7155 "This package tests the goodness of fit of a distribution of offspring to the Normal,
7156 Poisson, and Gamma distribution and estimates the proportional paternity of the
7157 second male (P2) based on the best fit distribution.")
7158 (license license:gpl2)))
7159
7160 (define-public r-abcrf
7161 (package
7162 (name "r-abcrf")
7163 (version "1.8.1")
7164 (source
7165 (origin
7166 (method url-fetch)
7167 (uri (cran-uri "abcrf" version))
7168 (sha256
7169 (base32 "1ghbd24yhqy3xhdxas6ccn84nkavqpgldx5ck8kijknc7qjm8k27"))))
7170 (build-system r-build-system)
7171 (propagated-inputs
7172 `(("r-doparallel" ,r-doparallel)
7173 ("r-foreach" ,r-foreach)
7174 ("r-mass" ,r-mass)
7175 ("r-matrixstats" ,r-matrixstats)
7176 ("r-ranger" ,r-ranger)
7177 ("r-rcpp" ,r-rcpp)
7178 ("r-rcpparmadillo" ,r-rcpparmadillo)
7179 ("r-readr" ,r-readr)
7180 ("r-stringr" ,r-stringr)))
7181 (home-page "https://cran.r-project.org/web/packages/abcrf/")
7182 (synopsis "Approximate bayesian computation via random forests")
7183 (description
7184 "This package performs approximate bayesian computation (ABC) model choice and
7185 parameter inference via random forests. This machine learning tool named random
7186 forests (RF) can conduct selection among the highly complex models covered by
7187 ABC algorithms.")
7188 (license license:gpl2+)))
7189
7190 (define-public r-abctools
7191 (package
7192 (name "r-abctools")
7193 (version "1.1.3")
7194 (source
7195 (origin
7196 (method url-fetch)
7197 (uri (cran-uri "abctools" version))
7198 (sha256
7199 (base32 "07s9dg10i8lsxl73b4n2hynca2fjgb0ykb0dz8c3zv6cgw3cyx97"))))
7200 (build-system r-build-system)
7201 (propagated-inputs
7202 `(("r-abc" ,r-abc)
7203 ("r-abind" ,r-abind)
7204 ("r-hmisc" ,r-hmisc)
7205 ("r-plyr" ,r-plyr)))
7206 (home-page "https://github.com/dennisprangle/abctools/")
7207 (synopsis "Tools for ABC analyses")
7208 (description
7209 "This @code{r-abctools} package provides tools for approximate Bayesian computation
7210 including summary statistic selection and assessing coverage. This includes
7211 recent dimension reduction algorithms to tune the choice of summary statistics,
7212 and coverage methods to tune the choice of threshold.")
7213 (license license:gpl2+)))
7214
7215 (define-public r-ggstance
7216 (package
7217 (name "r-ggstance")
7218 (version "0.3.4")
7219 (source
7220 (origin
7221 (method url-fetch)
7222 (uri (cran-uri "ggstance" version))
7223 (sha256
7224 (base32 "0aqz3dn02cgij018a4sglqwrwr9dzzj12l8xr1064q7hfd4f64m1"))))
7225 (build-system r-build-system)
7226 (propagated-inputs
7227 `(("r-ggplot2" ,r-ggplot2)
7228 ("r-plyr" ,r-plyr)
7229 ("r-rlang" ,r-rlang)
7230 ("r-withr" ,r-withr)))
7231 (home-page "https://cran.r-project.org/web/packages/ggstance/")
7232 (synopsis "Horizontal and vertical versions of @code{r-ggplot2}")
7233 (description
7234 "This package is a @code{r-ggplot2} extension that provides flipped components:
7235 @enumerate
7236 @item horizontal versions of @code{r-ggplot2} stats and @code{r-ggplot2} geoms;
7237 @item vertical versions of @code{r-ggplot2} positions.
7238 @end enumerate")
7239 (license license:gpl3)))
7240
7241 (define-public r-mosaiccore
7242 (package
7243 (name "r-mosaiccore")
7244 (version "0.6.0")
7245 (source
7246 (origin
7247 (method url-fetch)
7248 (uri (cran-uri "mosaicCore" version))
7249 (sha256
7250 (base32 "1klw97h6lchw1cpcl8s637ikcl428cckmjq0czi7mibh9q9mw72z"))))
7251 (properties `((upstream-name . "mosaicCore")))
7252 (build-system r-build-system)
7253 (propagated-inputs
7254 `(("r-dplyr" ,r-dplyr)
7255 ("r-lazyeval" ,r-lazyeval)
7256 ("r-mass" ,r-mass)
7257 ("r-rlang" ,r-rlang)
7258 ("r-tidyr" ,r-tidyr)))
7259 (home-page "https://github.com/ProjectMOSAIC/mosaicCore/")
7260 (synopsis "Common utilities for mosaic family packages")
7261 (description
7262 "Common utilities used in other Mosaic family packages are collected here.")
7263 (license license:gpl2+)))
7264
7265 (define-public r-ggformula
7266 (package
7267 (name "r-ggformula")
7268 (version "0.9.4")
7269 (source
7270 (origin
7271 (method url-fetch)
7272 (uri (cran-uri "ggformula" version))
7273 (sha256
7274 (base32 "04vdhg1bbc1psrx9ggaphz7cx4fw5xsmhkqpqfcg2w4ba2bjy46f"))))
7275 (build-system r-build-system)
7276 (propagated-inputs
7277 `(("r-ggforce" ,r-ggforce)
7278 ("r-ggplot2" ,r-ggplot2)
7279 ("r-ggstance" ,r-ggstance)
7280 ("r-magrittr" ,r-magrittr)
7281 ("r-mosaiccore" ,r-mosaiccore)
7282 ("r-rlang" ,r-rlang)
7283 ("r-stringr" ,r-stringr)
7284 ("r-tibble" ,r-tibble)))
7285 (home-page "https://github.com/ProjectMOSAIC/ggformula/")
7286 (synopsis "Formula interface for the @code{r-ggplot2}")
7287 (description
7288 "The @code{r-ggformula} introduces a family of graphics functions, gf_point(),
7289 gf_density(), and so on, bring the formula interface to ggplot(). This captures
7290 and extends the excellent simplicity of the lattice-graphics formula interface,
7291 while providing the intuitive capabilities of @code{r-ggplot2}.")
7292 (license license:expat)))
7293
7294 (define-public r-mosaicdata
7295 (package
7296 (name "r-mosaicdata")
7297 (version "0.17.0")
7298 (source
7299 (origin
7300 (method url-fetch)
7301 (uri (cran-uri "mosaicData" version))
7302 (sha256
7303 (base32 "04z0mdm52mykqsxsinhmsihn181zf6cw321gayk2rjp7lj7mwdq9"))))
7304 (properties `((upstream-name . "mosaicData")))
7305 (build-system r-build-system)
7306 (home-page "https://cran.r-project.org/web/packages/mosaicData/")
7307 (synopsis "Data sets for project Mosaic")
7308 (description
7309 "This package provides data sets from project Mosaic @url{http://mosaic-web.org}
7310 used to teach mathematics, statistics, computation and modeling.")
7311 (license license:gpl2+)))
7312
7313 (define-public r-raster
7314 (package
7315 (name "r-raster")
7316 (version "3.0-12")
7317 (source
7318 (origin
7319 (method url-fetch)
7320 (uri (cran-uri "raster" version))
7321 (sha256
7322 (base32
7323 "0rrbsigkqxsdic8fly6nrsc79zsliwvr1x2b4xqpl9d34vr50dvg"))))
7324 (build-system r-build-system)
7325 (propagated-inputs
7326 `(("r-rcpp" ,r-rcpp)
7327 ("r-sp" ,r-sp)))
7328 (home-page "https://www.rspatial.org/")
7329 (synopsis "Geographic data analysis and modeling")
7330 (description
7331 "The package implements basic and high-level functions for reading,
7332 writing, manipulating, analyzing and modeling of gridded spatial data.
7333 Processing of very large files is supported.")
7334 (license license:gpl3+)))
7335
7336 (define-public r-mosaic
7337 (package
7338 (name "r-mosaic")
7339 (version "1.4.0")
7340 (source
7341 (origin
7342 (method url-fetch)
7343 (uri (cran-uri "mosaic" version))
7344 (sha256
7345 (base32 "10jbrg8kli00kfgbh2f67bymm5cnlancc9dplb1j7fl552yjddn2"))))
7346 (build-system r-build-system)
7347 (propagated-inputs
7348 `(("r-broom" ,r-broom)
7349 ("r-dplyr" ,r-dplyr)
7350 ("r-ggdendro" ,r-ggdendro)
7351 ("r-ggformula" ,r-ggformula)
7352 ("r-ggplot2" ,r-ggplot2)
7353 ("r-ggrepel" ,r-ggrepel)
7354 ("r-glue" ,r-glue)
7355 ("r-gridextra" ,r-gridextra)
7356 ("r-lattice" ,r-lattice)
7357 ("r-latticeextra" ,r-latticeextra)
7358 ("r-lazyeval" ,r-lazyeval)
7359 ("r-mass" ,r-mass)
7360 ("r-matrix" ,r-matrix)
7361 ("r-mosaiccore" ,r-mosaiccore)
7362 ("r-mosaicdata" ,r-mosaicdata)
7363 ("r-readr" ,r-readr)
7364 ("r-tidyr" ,r-tidyr)))
7365 (native-inputs
7366 `(("r-knitr" ,r-knitr)))
7367 (home-page "https://github.com/ProjectMOSAIC/mosaic/")
7368 (synopsis "Mathematics, statistics, and computation teaching utilities")
7369 (description
7370 "This package contain data sets and utilities from
7371 @url{http://mosaic-web.org, Project MOSAIC} used to teach mathematics,
7372 statistics, computation and modeling. Project MOSAIC is a community of
7373 educators working to tie together aspects of quantitative work that students
7374 in science, technology, engineering and mathematics will need in their
7375 professional lives, but which are usually taught in isolation, if at all.")
7376 (license license:gpl2+)))
7377
7378 (define-public r-abd
7379 (package
7380 (name "r-abd")
7381 (version "0.2-8")
7382 (source
7383 (origin
7384 (method url-fetch)
7385 (uri (cran-uri "abd" version))
7386 (sha256
7387 (base32 "191gspqzdv573vaw624ri0f5cm6v4j524bjs74d4a1hn3kn6r9b7"))))
7388 (build-system r-build-system)
7389 (propagated-inputs
7390 `(("r-lattice" ,r-lattice)
7391 ("r-mosaic" ,r-mosaic)
7392 ("r-nlme" ,r-nlme)))
7393 (home-page "https://cran.r-project.org/web/packages/abd/")
7394 (synopsis "Analysis of biological data")
7395 (description
7396 "The @code{r-abd} package contains data sets and sample code for the Analysis of
7397 biological data by Michael Whitlock and Dolph Schluter.")
7398 (license license:gpl2)))
7399
7400 (define-public r-svgui
7401 (package
7402 (name "r-svgui")
7403 (version "1.0.0")
7404 (source
7405 (origin
7406 (method url-fetch)
7407 (uri (cran-uri "svGUI" version))
7408 (sha256
7409 (base32 "1r7ab0p4yr8q03gj02hmj7k1ghksgkg4nx750c0ajfs2q9y1dxfc"))))
7410 (properties `((upstream-name . "svGUI")))
7411 (build-system r-build-system)
7412 (home-page "https://github.com/SciViews/svGUI/")
7413 (synopsis "Functions for managing GUI clients in R")
7414 (description
7415 "The SciViews @code{svGUI} package eases the management of Graphical User
7416 Interfaces (GUI) in R. It is independent from any particular GUI widgets. It
7417 centralizes info about GUI elements currently used, and it dispatches GUI
7418 calls to the particular toolkits in use in function of the context.")
7419 (license license:gpl2)))
7420
7421 (define-public r-svdialogs
7422 (package
7423 (name "r-svdialogs")
7424 (version "1.0.0")
7425 (source
7426 (origin
7427 (method url-fetch)
7428 (uri (cran-uri "svDialogs" version))
7429 (sha256
7430 (base32 "0xqppydfawnwk84kb5qiybwbcmv38vn4imgz01mz2pnq4xb80p97"))))
7431 (properties `((upstream-name . "svDialogs")))
7432 (build-system r-build-system)
7433 (inputs
7434 `(("yad" ,yad)
7435 ("zenity" ,zenity)))
7436 (propagated-inputs
7437 `(("r-rstudioapi" ,r-rstudioapi)
7438 ("r-svgui" ,r-svgui)))
7439 (home-page "https://github.com/SciViews/svDialogs/")
7440 (synopsis "Portable dialog boxes")
7441 (description
7442 "This package helps to construct standard dialog boxes for your GUI, including
7443 message boxes, input boxes, list, file or directory selection, and others. In
7444 case R cannot display GUI dialog boxes, a simpler command line version of these
7445 interactive elements is also provided as a fallback solution.")
7446 (license license:gpl2)))
7447
7448 (define-public r-abe
7449 (package
7450 (name "r-abe")
7451 (version "3.0.1")
7452 (source
7453 (origin
7454 (method url-fetch)
7455 (uri (cran-uri "abe" version))
7456 (sha256
7457 (base32
7458 "1f19h3xzzmjhvwc1rrb8z0rai3ip03y4gdi2gg9bfr5sg2nfklk6"))))
7459 (build-system r-build-system)
7460 (home-page "https://cran.r-project.org/web/packages/abe/")
7461 (synopsis "Augmented backward elimination")
7462 (description
7463 "This package performs augmented backward elimination and checks the
7464 stability of the obtained model. Augmented backward elimination combines
7465 significance or information based criteria with the change in estimate to
7466 either select the optimal model for prediction purposes or to serve as a tool
7467 to obtain a practically sound, highly interpretable model.")
7468 (license license:gpl2+)))
7469
7470 (define-public r-abf2
7471 (package
7472 (name "r-abf2")
7473 (version "0.7-1")
7474 (source
7475 (origin
7476 (method url-fetch)
7477 (uri (cran-uri "abf2" version))
7478 (sha256
7479 (base32 "0d65mc1w4pbiv7xaqzdlw1bfsxf25587rv597hh41vs0j0zlfpxx"))))
7480 (build-system r-build-system)
7481 (home-page "https://cran.r-project.org/web/packages/abf2/")
7482 (synopsis "Load gap-free axon @code{r-abf2} files")
7483 (description
7484 "This package loads electrophysiology data from ABF2 files, as created by
7485 Axon Instruments/Molecular Devices software. Only files recorded in gap-free
7486 mode are currently supported.")
7487 (license license:artistic2.0)))
7488
7489 (define-public r-abhgenotyper
7490 (package
7491 (name "r-abhgenotyper")
7492 (version "1.0.1")
7493 (source
7494 (origin
7495 (method url-fetch)
7496 (uri (cran-uri "ABHgenotypeR" version))
7497 (sha256
7498 (base32 "08cpmnaaxsm5c5bjifnfxdlvg5inrf13biqpcl2yq5zpqjmiki0l"))))
7499 (properties `((upstream-name . "ABHgenotypeR")))
7500 (build-system r-build-system)
7501 (propagated-inputs
7502 `(("r-ggplot2" ,r-ggplot2)
7503 ("r-reshape2" ,r-reshape2)))
7504 (home-page "https://github.com/StefanReuscher/ABHgenotypeR/")
7505 (synopsis "Visualize and manipulate ABH genotypes")
7506 (description
7507 "The @code{r-abhgenotyper} package provides simple imputation,
7508 error-correction and plotting capacities for genotype data. The package is
7509 supposed to serve as an intermediate but independent analysis tool between the
7510 TASSEL GBS pipeline and the @code{r-qtl} package. It provides functionalities
7511 not found in either TASSEL or @code{r-qtl} in addition to visualization of
7512 genotypes as \"graphical genotypes\".")
7513 (license license:gpl3)))
7514
7515 (define-public r-furrr
7516 (package
7517 (name "r-furrr")
7518 (version "0.1.0")
7519 (source
7520 (origin
7521 (method url-fetch)
7522 (uri (cran-uri "furrr" version))
7523 (sha256
7524 (base32
7525 "1ld9aa9hydna94hgm6p91zjbfv1dz1vsgchjlpknkg6irbvkfafx"))))
7526 (build-system r-build-system)
7527 (propagated-inputs
7528 `(("r-future" ,r-future)
7529 ("r-globals" ,r-globals)
7530 ("r-purrr" ,r-purrr)
7531 ("r-rlang" ,r-rlang)))
7532 (home-page "https://github.com/DavisVaughan/furrr")
7533 (synopsis "Apply mapping functions in parallel using futures")
7534 (description
7535 "This package provides implementations of the family of @code{map()}
7536 functions from the @code{purrr} package that can be resolved using any
7537 @code{future}-supported backend, e.g. parallel on the local machine or
7538 distributed on a compute cluster.")
7539 (license license:lgpl2.1+)))
7540
7541 (define-public r-abjutils
7542 (package
7543 (name "r-abjutils")
7544 (version "0.2.3")
7545 (source
7546 (origin
7547 (method url-fetch)
7548 (uri (cran-uri "abjutils" version))
7549 (sha256
7550 (base32 "0n4zps65y3zg0gfzlv97w91si52a9izkncirskbkj5x9hk0nhxcv"))))
7551 (build-system r-build-system)
7552 (propagated-inputs
7553 `(("r-devtools" ,r-devtools)
7554 ("r-dplyr" ,r-dplyr)
7555 ("r-furrr" ,r-furrr)
7556 ("r-future" ,r-future)
7557 ("r-glue" ,r-glue)
7558 ("r-httr" ,r-httr)
7559 ("r-magrittr" ,r-magrittr)
7560 ("r-progress" ,r-progress)
7561 ("r-purrr" ,r-purrr)
7562 ("r-readr" ,r-readr)
7563 ("r-rlang" ,r-rlang)
7564 ("r-rstudioapi" ,r-rstudioapi)
7565 ("r-scales" ,r-scales)
7566 ("r-stringi" ,r-stringi)
7567 ("r-stringr" ,r-stringr)
7568 ("r-tibble" ,r-tibble)
7569 ("r-tidyr" ,r-tidyr)))
7570 (home-page "https://github.com/abjur/abjutils/")
7571 (synopsis "Collection of tools for jurimetrical analysis")
7572 (description
7573 "This package implements general purpose tools, such as functions for
7574 sampling and basic manipulation of Brazilian lawsuits identification number.
7575 It also implements functions for text cleaning, such as accentuation
7576 removal.")
7577 (license license:expat)))
7578
7579 (define-public r-abnormality
7580 (package
7581 (name "r-abnormality")
7582 (version "0.1.0")
7583 (source
7584 (origin
7585 (method url-fetch)
7586 (uri (cran-uri "abnormality" version))
7587 (sha256
7588 (base32 "1fzfskl9akl06nliy8hkv2a0pznpj8pwcypg3gj5r2nzvr3kan9v"))))
7589 (build-system r-build-system)
7590 (propagated-inputs
7591 `(("r-mass" ,r-mass)
7592 ("r-matrix" ,r-matrix)))
7593 (home-page "https://cran.r-project.org/web/packages/abnormality/")
7594 (synopsis "Measure a subject's abnormality with respect to a reference population")
7595 (description
7596 "This package contains functions to implement the methodology and
7597 considerations laid out by Marks et al. in the article \"Measuring abnormality
7598 in high dimensional spaces: applications in biomechanical gait analysis\".
7599 Using high-dimensional datasets to measure a subject's overall level of
7600 abnormality as compared to a reference population is often needed in outcomes
7601 research.")
7602 (license license:expat)))
7603
7604 (define-public r-abodoutlier
7605 (package
7606 (name "r-abodoutlier")
7607 (version "0.1")
7608 (source
7609 (origin
7610 (method url-fetch)
7611 (uri (cran-uri "abodOutlier" version))
7612 (sha256
7613 (base32 "1pvhgxmh23br84r0fbmv7g53z2427birdja96a67vqgz18r3fdvj"))))
7614 (properties `((upstream-name . "abodOutlier")))
7615 (build-system r-build-system)
7616 (propagated-inputs
7617 `(("r-cluster" ,r-cluster)))
7618 (home-page "https://cran.r-project.org/web/packages/abodOutlier/")
7619 (synopsis "Angle-based outlier detection")
7620 (description
7621 "This package performs angle-based outlier detection on a given data
7622 frame. It offers three methods to process data:
7623 @enumerate
7624 @item full but slow implementation using all the data that has cubic
7625 complexity;
7626 @item a fully randomized method;
7627 @item a method using k-nearest neighbours.
7628 @end enumerate
7629 These algorithms are well suited for high dimensional data outlier
7630 detection.")
7631 (license license:expat)))
7632
7633 (define-public r-abps
7634 (package
7635 (name "r-abps")
7636 (version "0.3")
7637 (source
7638 (origin
7639 (method url-fetch)
7640 (uri (cran-uri "ABPS" version))
7641 (sha256
7642 (base32 "0n3f66nmfi5v94il1mxy026mi84w01ph2aljk60vn3mrz8kwf2ll"))))
7643 (properties `((upstream-name . "ABPS")))
7644 (build-system r-build-system)
7645 (propagated-inputs `(("r-kernlab" ,r-kernlab)))
7646 (home-page "https://cran.r-project.org/web/packages/ABPS/")
7647 (synopsis "Abnormal blood profile score to detect blood doping")
7648 (description
7649 "This package offers an implementation of the @dfn{Abnormal blood profile score} (ABPS).
7650 The ABPS is a part of the Athlete biological passport program of the World
7651 anti-doping agency, which combines several blood parameters into a single
7652 score in order to detect blood doping. The package also contains functions to
7653 calculate other scores used in anti-doping programs, such as the ratio of
7654 hemoglobin to reticulocytes (OFF-score), as well as example data.")
7655 (license license:gpl2+)))
7656
7657 (define-public r-parmigene
7658 (package
7659 (name "r-parmigene")
7660 (version "1.0.2")
7661 (source
7662 (origin
7663 (method url-fetch)
7664 (uri (cran-uri "parmigene" version))
7665 (sha256
7666 (base32
7667 "1fsm6pkr17jcbzkj1hbn91jf890fviqk1lq6ls8pihsdgah1zb4d"))))
7668 (build-system r-build-system)
7669 (home-page "https://cran.r-project.org/web/packages/parmigene/")
7670 (synopsis "Mutual information estimation for gene network reconstruction")
7671 (description
7672 "This package provides a parallel estimation of the mutual information
7673 based on entropy estimates from k-nearest neighbors distances and algorithms
7674 for the reconstruction of gene regulatory networks.")
7675 (license license:agpl3+)))
7676
7677 (define-public r-pscl
7678 (package
7679 (name "r-pscl")
7680 (version "1.5.5")
7681 (source
7682 (origin
7683 (method url-fetch)
7684 (uri (cran-uri "pscl" version))
7685 (sha256
7686 (base32 "0vzf5wazs92bhqhqd66v3vwmbfmnh67gb2466g1xxawim649nk05"))))
7687 (build-system r-build-system)
7688 (propagated-inputs
7689 `(("r-mass" ,r-mass)))
7690 (home-page "https://github.com/atahk/pscl/")
7691 (synopsis "Political science computational laboratory")
7692 (description
7693 "The @code{pscl} is an R package providing classes and methods for:
7694 @enumerate
7695 @item Bayesian analysis of roll call data (item-response models);
7696 @item elementary Bayesian statistics;
7697 @item maximum likelihood estimation of zero-inflated and hurdle models for count
7698 data;
7699 @item utility functions.
7700 @end enumerate")
7701 (license license:gpl2)))
7702
7703 (define-public r-accelmissing
7704 (package
7705 (name "r-accelmissing")
7706 (version "1.4")
7707 (source
7708 (origin
7709 (method url-fetch)
7710 (uri (cran-uri "accelmissing" version))
7711 (sha256
7712 (base32 "1nql9inx6azdzi3z4sfm2vdml2mms6krl8wzlf1dn1c97ahn57fy"))))
7713 (build-system r-build-system)
7714 (propagated-inputs
7715 `(("r-mice" ,r-mice)
7716 ("r-pscl" ,r-pscl)))
7717 (home-page "https://cran.r-project.org/web/packages/accelmissing/")
7718 (synopsis "Missing value imputation for accelerometer data")
7719 (description
7720 "This package provides a statistical method to impute the missing values in
7721 accelerometer data. The methodology includes both parametric and
7722 semi-parametric multiple imputations under the zero-inflated Poisson lognormal
7723 model. It also provides multiple functions to preprocess the accelerometer data
7724 previous to the missing data imputation. These include detecting the wearing
7725 and the non-wearing time, selecting valid days and subjects, and creating plots.")
7726 (license license:gpl2+)))
7727
7728 (define-public r-mhsmm
7729 (package
7730 (name "r-mhsmm")
7731 (version "0.4.16")
7732 (source
7733 (origin
7734 (method url-fetch)
7735 (uri (cran-uri "mhsmm" version))
7736 (sha256
7737 (base32 "009dj0zkj1zry7jr9hf4cknb686z50a2l967if64xm0dvjmp7dgs"))))
7738 (build-system r-build-system)
7739 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
7740 (home-page "https://github.com/jaredo/mhsmm/")
7741 (synopsis "Inference for hidden Markov and semi-Markov models")
7742 (description
7743 "The @code{r-mhsmm} package implements estimation and prediction methods for
7744 hidden Markov and semi-Markov models for multiple observation sequences. Such
7745 techniques are of interest when observed data is thought to be dependent on some
7746 unobserved (or hidden) state. Also, this package is suitable for equidistant
7747 time series data, with multivariate and/or missing data. Allows user defined
7748 emission distributions.")
7749 (license license:gpl2+)))
7750
7751 (define-public r-nleqslv
7752 (package
7753 (name "r-nleqslv")
7754 (version "3.3.2")
7755 (source
7756 (origin
7757 (method url-fetch)
7758 (uri (cran-uri "nleqslv" version))
7759 (sha256
7760 (base32 "1v9znvncyigw9r25wx2ma0b7ib179b488dl0qsrhp5zrcz7mcjgm"))))
7761 (build-system r-build-system)
7762 (native-inputs `(("gfortran" ,gfortran)))
7763 (home-page "https://cran.r-project.org/web/packages/nleqslv/")
7764 (synopsis "Solve systems of nonlinear equations")
7765 (description
7766 "The @code{r-nleqslv} package solves a system of nonlinear equations using a
7767 Broyden or a Newton method with a choice of global strategies such as line
7768 search and trust region. There are options for using a numerical or user
7769 supplied Jacobian, for specifying a banded numerical Jacobian and for allowing a
7770 singular or ill-conditioned Jacobian.")
7771 (license license:gpl2+)))
7772
7773 (define-public r-physicalactivity
7774 (package
7775 (name "r-physicalactivity")
7776 (version "0.2-2")
7777 (source
7778 (origin
7779 (method url-fetch)
7780 (uri (cran-uri "PhysicalActivity" version))
7781 (sha256
7782 (base32 "14z6plgwyr46vs9m997rvlz8sdglfs9g087an8668zqkzzs2w4ln"))))
7783 (properties
7784 `((upstream-name . "PhysicalActivity")))
7785 (build-system r-build-system)
7786 (home-page "https://cran.r-project.org/web/packages/PhysicalActivity/")
7787 (synopsis "Procesing accelerometer data for physical activity measurement")
7788 (description
7789 "This @code{r-physicalactivity} package provides a function @code{wearingMarking}
7790 for classification of monitor wear and nonwear time intervals in accelerometer
7791 data collected to assess physical activity. The package also contains functions
7792 for making plots of accelerometer data and obtaining the summary of various
7793 information including daily monitor wear time and the mean monitor wear time
7794 during valid days. The revised package version 0.2-1 improved the functions
7795 regarding speed, robustness and add better support for time zones and daylight
7796 saving. In addition, several functions were added:
7797 @enumerate
7798 @item the @code{markDelivery} can classify days for ActiGraph delivery by mail;
7799 @item the @code{markPAI} can categorize physical activity intensity level based
7800 on user-defined cut-points of accelerometer counts.
7801 @end enumerate
7802 It also supports importing ActiGraph (AGD) files with @code{readActigraph} and
7803 @code{queryActigraph} functions.")
7804 (license license:gpl3+)))
7805
7806 (define-public r-acc
7807 (package
7808 (name "r-acc")
7809 (version "1.3.3")
7810 (source
7811 (origin
7812 (method url-fetch)
7813 (uri (cran-uri "acc" version))
7814 (sha256
7815 (base32 "1ii2vm47djxbixa75h690q1s2f9m9x6i8nkygik93j6dayr6kr1m"))))
7816 (build-system r-build-system)
7817 (propagated-inputs
7818 `(("r-circlize" ,r-circlize)
7819 ("r-dbi" ,r-dbi)
7820 ("r-ggplot2" ,r-ggplot2)
7821 ("r-iterators" ,r-iterators)
7822 ("r-mhsmm" ,r-mhsmm)
7823 ("r-nleqslv" ,r-nleqslv)
7824 ("r-physicalactivity" ,r-physicalactivity)
7825 ("r-plyr" ,r-plyr)
7826 ("r-r-utils" ,r-r-utils)
7827 ("r-rcpp" ,r-rcpp)
7828 ("r-rcpparmadillo" ,r-rcpparmadillo)
7829 ("r-rsqlite" ,r-rsqlite)
7830 ("r-zoo" ,r-zoo)))
7831 (home-page "https://cran.r-project.org/web/packages/acc/")
7832 (synopsis "Exploring accelerometer data")
7833 (description
7834 "This package processes accelerometer data from uni-axial and tri-axial devices
7835 and generates data summaries. Also, includes functions to plot, analyze, and
7836 simulate accelerometer data.")
7837 (license license:gpl2+)))
7838
7839 (define-public r-rbenchmark
7840 (package
7841 (name "r-rbenchmark")
7842 (version "1.0.0")
7843 (source
7844 (origin
7845 (method url-fetch)
7846 (uri (cran-uri "rbenchmark" version))
7847 (sha256
7848 (base32 "010fn3qwnk2k411cbqyvra1d12c3bhhl3spzm8kxffmirj4p2al9"))))
7849 (build-system r-build-system)
7850 (home-page "https://cran.r-project.org/web/packages/rbenchmark/")
7851 (synopsis "Benchmarking routine for R")
7852 (description
7853 "This @code{r-rbenchmark} package is inspired by the Perl module Benchmark,
7854 and is intended to facilitate benchmarking of arbitrary R code. The library
7855 consists of just one function, benchmark, which is a simple wrapper around
7856 system.time. Given a specification of the benchmarking process (counts of
7857 replications, evaluation environment) and an arbitrary number of expressions,
7858 benchmark evaluates each of the expressions in the specified environment,
7859 replicating the evaluation as many times as specified, and returning the results
7860 conveniently wrapped into a data frame.")
7861 (license license:gpl2+)))
7862
7863 (define-public r-mitools
7864 (package
7865 (name "r-mitools")
7866 (version "2.4")
7867 (source
7868 (origin
7869 (method url-fetch)
7870 (uri (cran-uri "mitools" version))
7871 (sha256
7872 (base32
7873 "0c2x2n1p53lcw0vx4vmy5j7m2f95i7g2iwbryl89imr99rvz617j"))))
7874 (build-system r-build-system)
7875 (propagated-inputs `(("r-dbi" ,r-dbi)))
7876 (home-page "https://cran.r-project.org/web/packages/mitools/")
7877 (synopsis "Tools for multiple imputation of missing data")
7878 (description
7879 "This package provides tools to perform analyses and combine results from
7880 multiple-imputation datasets.")
7881 (license license:gpl2)))
7882
7883 (define-public r-magick
7884 (package
7885 (name "r-magick")
7886 (version "2.3")
7887 (source
7888 (origin
7889 (method url-fetch)
7890 (uri (cran-uri "magick" version))
7891 (sha256
7892 (base32
7893 "182b4wahkq9q0scn99mql4vm9fp92nja0r5yizc4x9rjl492ahd8"))))
7894 (build-system r-build-system)
7895 (inputs
7896 `(("imagemagick" ,imagemagick)
7897 ("zlib" ,zlib)))
7898 (propagated-inputs
7899 `(("r-curl" ,r-curl)
7900 ("r-magrittr" ,r-magrittr)
7901 ("r-rcpp" ,r-rcpp)))
7902 (native-inputs
7903 `(("pkg-config" ,pkg-config)))
7904 (home-page "https://github.com/ropensci/magick")
7905 (synopsis "Advanced graphics and image-processing in R")
7906 (description
7907 "This package provides bindings to ImageMagick, a comprehensive image
7908 processing library. It supports many common formats (PNG, JPEG, TIFF, PDF,
7909 etc.) and manipulations (rotate, scale, crop, trim, flip, blur, etc). All
7910 operations are vectorized via the Magick++ STL meaning they operate either on
7911 a single frame or a series of frames for working with layers, collages, or
7912 animation. In RStudio, images are automatically previewed when printed to the
7913 console, resulting in an interactive editing environment.")
7914 (license license:expat)))
7915
7916 (define-public r-survey
7917 (package
7918 (name "r-survey")
7919 (version "4.0")
7920 (source
7921 (origin
7922 (method url-fetch)
7923 (uri (cran-uri "survey" version))
7924 (sha256
7925 (base32
7926 "1q9x0s86s72gl43zj49gypg6jj2b78xjvxr4lmy5147s9h7z8lxh"))))
7927 (build-system r-build-system)
7928 (propagated-inputs
7929 `(("r-lattice" ,r-lattice)
7930 ("r-matrix" ,r-matrix)
7931 ("r-minqa" ,r-minqa)
7932 ("r-mitools" ,r-mitools)
7933 ("r-numderiv" ,r-numderiv)
7934 ("r-survival" ,r-survival)))
7935 (home-page "http://r-survey.r-forge.r-project.org/survey/")
7936 (synopsis "Analysis of complex survey samples")
7937 (description
7938 "This package provides tools for the analysis of complex survey samples.
7939 The provided features include: summary statistics, two-sample tests, rank
7940 tests, generalised linear models, cumulative link models, Cox models,
7941 loglinear models, and general maximum pseudolikelihood estimation for
7942 multistage stratified, cluster-sampled, unequally weighted survey samples;
7943 variances by Taylor series linearisation or replicate weights;
7944 post-stratification, calibration, and raking; two-phase subsampling designs;
7945 graphics; PPS sampling without replacement; principal components, and factor
7946 analysis.")
7947 ;; Either version of the GPL.
7948 (license (list license:gpl2 license:gpl3))))
7949
7950 (define-public r-gee
7951 (package
7952 (name "r-gee")
7953 (version "4.13-20")
7954 (source
7955 (origin
7956 (method url-fetch)
7957 (uri (cran-uri "gee" version))
7958 (sha256
7959 (base32
7960 "167pzgnmj4cjc41ykps1mfwi6s7y32zxyycn5z17vn4v0pp4q0ak"))))
7961 (properties `((upstream-name . "gee")))
7962 (build-system r-build-system)
7963 (native-inputs
7964 `(("gfortran" ,gfortran)))
7965 (home-page "https://cran.r-project.org/web/packages/gee/")
7966 (synopsis "Generalized estimation equation solver")
7967 (description
7968 "This package provides a solver for generalized estimation equations.")
7969 (license license:gpl2)))
7970
7971 (define-public r-tab
7972 (package
7973 (name "r-tab")
7974 (version "4.1.1")
7975 (source
7976 (origin
7977 (method url-fetch)
7978 (uri (cran-uri "tab" version))
7979 (sha256
7980 (base32
7981 "0ds8n6gncidb66in7hlqkcmil5yfsf7ihqvmls789hrm2iz9xlfm"))))
7982 (properties `((upstream-name . "tab")))
7983 (build-system r-build-system)
7984 (propagated-inputs
7985 `(("r-dplyr" ,r-dplyr)
7986 ("r-gee" ,r-gee)
7987 ("r-knitr" ,r-knitr)
7988 ("r-mass" ,r-mass)
7989 ("r-survey" ,r-survey)
7990 ("r-survival" ,r-survival)
7991 ("r-xtable" ,r-xtable)))
7992 (home-page "https://cran.r-project.org/web/packages/tab/")
7993 (synopsis "Create summary tables for statistical reports")
7994 (description
7995 "This package contains functions for creating various types of summary
7996 tables, e.g. comparing characteristics across levels of a categorical variable
7997 and summarizing fitted generalized linear models, generalized estimating
7998 equations, and Cox proportional hazards models. Functions are available to
7999 handle data from simple random samples as well as complex surveys.")
8000 (license license:gpl3+)))
8001
8002 (define-public r-dvmisc
8003 (package
8004 (name "r-dvmisc")
8005 (version "1.1.4")
8006 (source
8007 (origin
8008 (method url-fetch)
8009 (uri (cran-uri "dvmisc" version))
8010 (sha256
8011 (base32 "01v6sixx0f3nrn6ymfifb3pvd2msfrwm21kmdv38laxq29vc4rsi"))))
8012 (build-system r-build-system)
8013 (propagated-inputs
8014 `(("r-cubature" ,r-cubature)
8015 ("r-data-table" ,r-data-table)
8016 ("r-dplyr" ,r-dplyr)
8017 ("r-ggplot2" ,r-ggplot2)
8018 ("r-mass" ,r-mass)
8019 ("r-mvtnorm" ,r-mvtnorm)
8020 ("r-pracma" ,r-pracma)
8021 ("r-rbenchmark" ,r-rbenchmark)
8022 ("r-rcpp" ,r-rcpp)
8023 ("r-survey" ,r-survey)
8024 ("r-tab" ,r-tab)))
8025 (home-page "https://cran.r-project.org/web/packages/dvmisc/")
8026 (synopsis "Faster computation of common statistics and miscellaneous functions")
8027 (description
8028 "This package implements faster versions of base R functions (e.g. mean, standard
8029 deviation, covariance, weighted mean), mostly written in C++, along with
8030 miscellaneous functions for various purposes (e.g. create the histogram with
8031 fitted probability density function or probability mass function curve, create
8032 the body mass index groups, assess the linearity assumption in logistic
8033 regression).")
8034 (license license:gpl2)))
8035
8036 (define-public r-accelerometry
8037 (package
8038 (name "r-accelerometry")
8039 (version "3.1.2")
8040 (source
8041 (origin
8042 (method url-fetch)
8043 (uri (cran-uri "accelerometry" version))
8044 (sha256
8045 (base32 "13xzrwhr4i1nj9c8vrmfdg2rmrc8n446iihcyxmy99sm99hpzyip"))))
8046 (build-system r-build-system)
8047 (propagated-inputs
8048 `(("r-dvmisc" ,r-dvmisc)
8049 ("r-rcpp" ,r-rcpp)))
8050 (home-page "https://cran.r-project.org/web/packages/accelerometry/")
8051 (synopsis "Functions for processing accelerometer data")
8052 (description
8053 "This package provides a collection of functions that perform operations on
8054 time-series accelerometer data, such as identify the non-wear time, flag minutes
8055 that are part of an activity bout, and find the maximum 10-minute average count
8056 value. The functions are generally very flexible, allowing for a variety of
8057 algorithms to be implemented.")
8058 (license license:gpl3)))
8059
8060 (define-public r-absim
8061 (package
8062 (name "r-absim")
8063 (version "0.2.6")
8064 (source
8065 (origin
8066 (method url-fetch)
8067 (uri (cran-uri "AbSim" version))
8068 (sha256
8069 (base32 "16ddjk8b6xw80ch4jis1y751i9561wdxh0gifbf15qiz3vjckq8m"))))
8070 (properties `((upstream-name . "AbSim")))
8071 (build-system r-build-system)
8072 (propagated-inputs
8073 `(("r-ape" ,r-ape)
8074 ("r-powerlaw" ,r-powerlaw)))
8075 (home-page "https://cran.r-project.org/web/packages/AbSim/")
8076 (synopsis "Time resolved simulations of antibody repertoires")
8077 (description
8078 "This package provides simulation methods for the evolution of antibody repertoires.
8079 The heavy and light chain variable region of both human and C57BL/6 mice can
8080 be simulated in a time-dependent fashion. Both single lineages using one set of
8081 V-, D-, and J-genes or full repertoires can be simulated. The algorithm begins
8082 with an initial V-D-J recombination event, starting the first phylogenetic tree.
8083 Upon completion, the main loop of the algorithm begins, with each iteration
8084 representing one simulated time step. Various mutation events are possible at
8085 each time step, contributing to a diverse final repertoire.")
8086 (license license:gpl2)))
8087
8088 (define-public r-quic
8089 (package
8090 (name "r-quic")
8091 (version "1.1")
8092 (source
8093 (origin
8094 (method url-fetch)
8095 (uri (cran-uri "QUIC" version))
8096 (sha256
8097 (base32 "021bp9xbaih60qmss015ycblbv6d1dvb1z89y93zpqqnc2qhpv3c"))))
8098 (properties `((upstream-name . "QUIC")))
8099 (build-system r-build-system)
8100 (home-page "https://www.cs.utexas.edu/users/sustik/QUIC/")
8101 (synopsis "Regularized sparse inverse covariance matrix estimation")
8102 (description
8103 "This package implements the regularized Gaussian maximum likelihood
8104 estimation of the inverse of a covariance matrix. It uses Newton's method and
8105 coordinate descent to solve the regularized inverse covariance matrix
8106 estimation problem.")
8107 ;; The project home page states that the release is under GPLv3 or later.
8108 ;; The CRAN page only says GPL-3.
8109 (license license:gpl3+)))
8110
8111 (define-public r-abundant
8112 (package
8113 (name "r-abundant")
8114 (version "1.1")
8115 (source
8116 (origin
8117 (method url-fetch)
8118 (uri (cran-uri "abundant" version))
8119 (sha256
8120 (base32 "1m76qdmqvwpgm0sihazi2dna7cgsz9rljal18vgffb5wamwmg9k7"))))
8121 (build-system r-build-system)
8122 (propagated-inputs
8123 `(("r-quic" ,r-quic)))
8124 (home-page "https://cran.r-project.org/web/packages/abundant/")
8125 (synopsis "Abundant regression and high-dimensional principal fitted components")
8126 (description
8127 "This package provides tools to fit and predict with the high-dimensional
8128 principal fitted components model. This model is described by Cook, Forzani,
8129 and Rothman (2012) @url{doi:10.1214/11-AOS962}.")
8130 ;; The DESCRIPTION file states GPL-2, but since it directly depends on a
8131 ;; GPLv3+ package (QUIC) this likely means GPLv2+.
8132 (license license:gpl2+)))
8133
8134 (define-public r-ac3net
8135 (package
8136 (name "r-ac3net")
8137 (version "1.2.2")
8138 (source
8139 (origin
8140 (method url-fetch)
8141 (uri (cran-uri "Ac3net" version))
8142 (sha256
8143 (base32 "1ns4n0xxz6p34c11bj0k7nzgmyqr9mis2b0g5nfz37dbikndyqyz"))))
8144 (properties `((upstream-name . "Ac3net")))
8145 (build-system r-build-system)
8146 (propagated-inputs
8147 `(("r-data-table" ,r-data-table)))
8148 (home-page "https://cran.r-project.org/web/packages/Ac3net/")
8149 (synopsis "Inferring directional conservative causal core gene networks")
8150 (description "This package infers directional Conservative causal core
8151 (gene) networks (C3NET). This is a version of the algorithm C3NET with
8152 directional network.")
8153 (license license:gpl3+)))
8154
8155 (define-public r-aca
8156 (package
8157 (name "r-aca")
8158 (version "1.1")
8159 (source
8160 (origin
8161 (method url-fetch)
8162 (uri (cran-uri "ACA" version))
8163 (sha256
8164 (base32 "1i3hm27nvnkvc39xlh0d1blq8q0q02czmvgi3cazmjx3jvxay0vq"))))
8165 (properties `((upstream-name . "ACA")))
8166 (build-system r-build-system)
8167 (home-page "https://cran.r-project.org/web/packages/ACA/")
8168 (synopsis "Abrupt change-point or aberration detection in point series")
8169 (description
8170 "This package offers an interactive function for the detection of breakpoints in
8171 series.")
8172 ;; Any version of the GPL
8173 (license (list license:gpl2+ license:gpl3+))))
8174
8175 (define-public r-acceptancesampling
8176 (package
8177 (name "r-acceptancesampling")
8178 (version "1.0-6")
8179 (source
8180 (origin
8181 (method url-fetch)
8182 (uri (cran-uri "AcceptanceSampling" version))
8183 (sha256
8184 (base32 "1z3rmln63ki2kik9kinbwr9qhr32ggbmh4mm3xqy6di119n47ca9"))))
8185 (properties
8186 `((upstream-name . "AcceptanceSampling")))
8187 (build-system r-build-system)
8188 (home-page "https://cran.r-project.org/web/packages/AcceptanceSampling/")
8189 (synopsis "Creation and evaluation of acceptance sampling plans")
8190 (description
8191 "This @code{r-acceptancesampling} provides functionality for creating and evaluating
8192 acceptance sampling plans. Acceptance sampling is a methodology commonly used
8193 in quality control and improvement. International standards of acceptance
8194 sampling provide sampling plans for specific circumstances. The aim of this
8195 package is to provide an easy-to-use interface to visualize single, double or
8196 multiple sampling plans. In addition, methods have been provided to enable the
8197 user to assess sampling plans against pre-specified levels of performance, as
8198 measured by the probability of acceptance for a given level of quality in the
8199 lot.")
8200 (license license:gpl3+)))
8201
8202 (define-public r-acclma
8203 (package
8204 (name "r-acclma")
8205 (version "1.0")
8206 (source
8207 (origin
8208 (method url-fetch)
8209 (uri (cran-uri "ACCLMA" version))
8210 (sha256
8211 (base32 "1na27sp18fq12gp6vxgqw1ffsz2yi1d8xvrxbrzx5g1kqxrayy0v"))))
8212 (properties `((upstream-name . "ACCLMA")))
8213 (build-system r-build-system)
8214 (home-page "https://cran.r-project.org/web/packages/ACCLMA/")
8215 (synopsis "ACC & LMA graph plotting")
8216 (description
8217 "This package contains a function that imports data from a @acronym{CSV,
8218 Comma-Separated Values} file, or uses manually entered data from the format (x,
8219 y, weight) and plots the appropriate @acronym{ACC, Absolute Concentration
8220 Curve} vs @acronym{LOI, Line of Independence} graph and
8221 @acronym{LMA, @acronym{LOI} Minus @acronym{ACC}} graph. The main
8222 function is @code{plotLMA} (source file, header) that takes a data set and plots the
8223 appropriate @acronym{LMA} and @acronym{ACC} graphs. If no source file (a
8224 string) was passed, a manual data entry window is opened. The header parameter
8225 indicates by TRUE/FALSE (false by default) if the source @acronym{CSV} file has
8226 a header row or not. The dataset should contain only one independent variable
8227 (x) and one dependent variable (y) and can contain a weight for each
8228 observation.")
8229 (license license:gpl2)))
8230
8231 (define-public r-aspi
8232 (package
8233 (name "r-aspi")
8234 (version "0.2.0")
8235 (source
8236 (origin
8237 (method url-fetch)
8238 (uri (cran-uri "aspi" version))
8239 (sha256
8240 (base32 "0rhvxw243vvdv3hxa6pi343gcjc2cbxq1jzqirl9k1l4i3897l87"))))
8241 (build-system r-build-system)
8242 (home-page
8243 "https://cran.r-project.org/web/packages/aspi/")
8244 (synopsis
8245 "Analysis of symmetry of parasitic infections")
8246 (description
8247 "This package provides tools for the analysis and visualization of bilateral
8248 asymmetry in parasitic infections.")
8249 (license license:gpl3+)))
8250
8251 (define-public r-sandwich
8252 (package
8253 (name "r-sandwich")
8254 (version "2.5-1")
8255 (source
8256 (origin
8257 (method url-fetch)
8258 (uri (cran-uri "sandwich" version))
8259 (sha256
8260 (base32
8261 "1mk685b9wq7k566pbml52rj96i5h6b3vf215k9picgmq296nzvyv"))))
8262 (build-system r-build-system)
8263 (propagated-inputs
8264 `(("r-zoo" ,r-zoo)))
8265 (home-page "https://cran.r-project.org/web/packages/sandwich/")
8266 (synopsis "Robust Covariance Matrix Estimators")
8267 (description
8268 "This package provides model-robust standard error estimators for
8269 cross-sectional, time series, clustered, panel, and longitudinal data.")
8270 ;; Either version of the license.
8271 (license (list license:gpl2 license:gpl3))))
8272
8273 (define-public r-th-data
8274 (package
8275 (name "r-th-data")
8276 (version "1.0-10")
8277 (source
8278 (origin
8279 (method url-fetch)
8280 (uri (cran-uri "TH.data" version))
8281 (sha256
8282 (base32
8283 "0mgz7aj2d9abbmdr65zgmg1ddp3fdbs3mfj83r5xadh5ldkir2k1"))))
8284 (properties `((upstream-name . "TH.data")))
8285 (build-system r-build-system)
8286 (propagated-inputs
8287 `(("r-mass" ,r-mass)
8288 ("r-survival" ,r-survival)))
8289 (home-page "https://cran.r-project.org/web/packages/TH.data/")
8290 (synopsis "Shared data sets")
8291 (description
8292 "This package contains supporting data sets that are used in other
8293 packages maintained by Torsten Hothorn.")
8294 (license license:gpl3)))
8295
8296 (define-public r-multcomp
8297 (package
8298 (name "r-multcomp")
8299 (version "1.4-13")
8300 (source
8301 (origin
8302 (method url-fetch)
8303 (uri (cran-uri "multcomp" version))
8304 (sha256
8305 (base32
8306 "1nszi22rcc551yc75h9cdfkdqsxw1rz30vadazmpyzihp1bh63yk"))))
8307 (build-system r-build-system)
8308 (propagated-inputs
8309 `(("r-codetools" ,r-codetools)
8310 ("r-mvtnorm" ,r-mvtnorm)
8311 ("r-sandwich" ,r-sandwich)
8312 ("r-survival" ,r-survival)
8313 ("r-th-data" ,r-th-data)))
8314 (home-page "https://cran.r-project.org/web/packages/multcomp/")
8315 (synopsis "Simultaneous inference in general parametric models")
8316 (description
8317 "Simultaneous tests and confidence intervals for general linear
8318 hypotheses in parametric models, including linear, generalized linear, linear
8319 mixed effects, and survival models. The package includes demos reproducing
8320 analyzes presented in the book \"Multiple Comparisons Using R\" (Bretz,
8321 Hothorn, Westfall, 2010, CRC Press).")
8322 (license license:gpl2)))
8323
8324 (define-public r-emmeans
8325 (package
8326 (name "r-emmeans")
8327 (version "1.4.5")
8328 (source
8329 (origin
8330 (method url-fetch)
8331 (uri (cran-uri "emmeans" version))
8332 (sha256
8333 (base32
8334 "10fmvmd6q4zjr6b18hhc85mwrzv778qzj6lwl9kbs2fsfvsgw7mm"))))
8335 (build-system r-build-system)
8336 (propagated-inputs
8337 `(("r-estimability" ,r-estimability)
8338 ("r-mvtnorm" ,r-mvtnorm)
8339 ("r-numderiv" ,r-numderiv)
8340 ("r-plyr" ,r-plyr)
8341 ("r-xtable" ,r-xtable)))
8342 (home-page "https://github.com/rvlenth/emmeans")
8343 (synopsis "Estimated marginal means, aka least-squares means")
8344 (description
8345 "This package provides tools to obtain @dfn{estimated marginal
8346 means} (EMMs) for many linear, generalized linear, and mixed models. It can
8347 be used to compute contrasts or linear functions of EMMs, trends, and
8348 comparisons of slopes.")
8349 ;; Either version of the license.
8350 (license (list license:gpl2 license:gpl3))))
8351
8352 (define-public r-pwr
8353 (package
8354 (name "r-pwr")
8355 (version "1.3-0")
8356 (source
8357 (origin
8358 (method url-fetch)
8359 (uri (cran-uri "pwr" version))
8360 (sha256
8361 (base32
8362 "1kfzy73v3z6ipc3kdfkcjrp4b4p5k54nwk796gqi36srm93hgc2v"))))
8363 (build-system r-build-system)
8364 (native-inputs
8365 `(("r-knitr" ,r-knitr)))
8366 (home-page "https://github.com/heliosdrm/pwr")
8367 (synopsis "Basic functions for power analysis")
8368 (description
8369 "This package provides power analysis functions along the lines of
8370 Cohen (1988).")
8371 (license license:gpl3+)))
8372
8373 (define-public r-libcoin
8374 (package
8375 (name "r-libcoin")
8376 (version "1.0-5")
8377 (source
8378 (origin
8379 (method url-fetch)
8380 (uri (cran-uri "libcoin" version))
8381 (sha256
8382 (base32
8383 "1cm9x1dlg9f7fh7n5nw3x4a7rl88c7ylrlc8x3rx4mq5w1j42x0a"))))
8384 (build-system r-build-system)
8385 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
8386 (home-page "https://cran.r-project.org/web/packages/libcoin")
8387 (synopsis "Linear test statistics for permutation inference")
8388 (description
8389 "This package provides basic infrastructure for linear test statistics
8390 and permutation inference in the framework of Strasser and Weber (1999).")
8391 (license license:gpl2)))
8392
8393 (define-public r-coin
8394 (package
8395 (name "r-coin")
8396 (version "1.3-1")
8397 (source
8398 (origin
8399 (method url-fetch)
8400 (uri (cran-uri "coin" version))
8401 (sha256
8402 (base32
8403 "0qi03fyqw42a2vnqcia5l2m1mzyarj2q1iblknx9n19bdsd53qjx"))))
8404 (build-system r-build-system)
8405 (propagated-inputs
8406 `(("r-libcoin" ,r-libcoin)
8407 ("r-matrixstats" ,r-matrixstats)
8408 ("r-modeltools" ,r-modeltools)
8409 ("r-multcomp" ,r-multcomp)
8410 ("r-mvtnorm" ,r-mvtnorm)
8411 ("r-survival" ,r-survival)))
8412 (home-page "http://coin.r-forge.r-project.org")
8413 (synopsis "Conditional inference procedures in a permutation test framework")
8414 (description
8415 "This package provides conditional inference procedures for the general
8416 independence problem including two-sample, K-sample (non-parametric ANOVA),
8417 correlation, censored, ordered and multivariate problems.")
8418 (license license:gpl2)))
8419
8420 (define-public r-bayesplot
8421 (package
8422 (name "r-bayesplot")
8423 (version "1.7.1")
8424 (source
8425 (origin
8426 (method url-fetch)
8427 (uri (cran-uri "bayesplot" version))
8428 (sha256
8429 (base32
8430 "0sq0ajnm96hmlqf1cv5n2gshh3qdij4n1zbm7qrniz2q6b5aj342"))))
8431 (build-system r-build-system)
8432 (inputs
8433 `(("pandoc" ,ghc-pandoc)
8434 ("pandoc-citeproc" ,ghc-pandoc-citeproc)))
8435 (propagated-inputs
8436 `(("r-dplyr" ,r-dplyr)
8437 ("r-ggplot2" ,r-ggplot2)
8438 ("r-ggridges" ,r-ggridges)
8439 ("r-glue" ,r-glue)
8440 ("r-reshape2" ,r-reshape2)
8441 ("r-rlang" ,r-rlang)
8442 ("r-tibble" ,r-tibble)
8443 ("r-tidyselect" ,r-tidyselect)))
8444 (home-page "https://mc-stan.org/bayesplot")
8445 (synopsis "Plotting for Bayesian models")
8446 (description
8447 "This package provides plotting functions for posterior analysis, model
8448 checking, and MCMC diagnostics. The package is designed not only to provide
8449 convenient functionality for users, but also a common set of functions that
8450 can be easily used by developers working on a variety of R packages for
8451 Bayesian modeling.")
8452 (license license:gpl3+)))
8453
8454 (define-public r-tmb
8455 (package
8456 (name "r-tmb")
8457 (version "1.7.16")
8458 (source
8459 (origin
8460 (method url-fetch)
8461 (uri (cran-uri "TMB" version))
8462 (sha256
8463 (base32
8464 "0lly12hdi99iklwr0vg9xkyhi038w4gncbf895qcwbndmqp0lx44"))))
8465 (properties `((upstream-name . "TMB")))
8466 (build-system r-build-system)
8467 (propagated-inputs
8468 `(("r-matrix" ,r-matrix)
8469 ("r-rcppeigen" ,r-rcppeigen)))
8470 (home-page "http://tmb-project.org")
8471 (synopsis "Template model builder: a general random effect tool")
8472 (description
8473 "With this tool, a user should be able to quickly implement complex
8474 random effect models through simple C++ templates. The package combines
8475 @code{CppAD} (C++ automatic differentiation), @code{Eigen} (templated
8476 matrix-vector library) and @code{CHOLMOD} (sparse matrix routines available
8477 from R) to obtain an efficient implementation of the applied Laplace
8478 approximation with exact derivatives. Key features are: Automatic sparseness
8479 detection, parallelism through BLAS and parallel user templates.")
8480 (license license:gpl2)))
8481
8482 (define-public r-sjstats
8483 (package
8484 (name "r-sjstats")
8485 (version "0.17.9")
8486 (source
8487 (origin
8488 (method url-fetch)
8489 (uri (cran-uri "sjstats" version))
8490 (sha256
8491 (base32 "0938ac6ixvkif07azd2msa8g3qnn9rabj6jg17almbysl83kg4nm"))))
8492 (build-system r-build-system)
8493 (propagated-inputs
8494 `(("r-bayestestr" ,r-bayestestr)
8495 ("r-broom" ,r-broom)
8496 ("r-dplyr" ,r-dplyr)
8497 ("r-effectsize" ,r-effectsize)
8498 ("r-emmeans" ,r-emmeans)
8499 ("r-insight" ,r-insight)
8500 ("r-lme4" ,r-lme4)
8501 ("r-magrittr" ,r-magrittr)
8502 ("r-mass" ,r-mass)
8503 ("r-modelr" ,r-modelr)
8504 ("r-parameters" ,r-parameters)
8505 ("r-performance" ,r-performance)
8506 ("r-purrr" ,r-purrr)
8507 ("r-rlang" ,r-rlang)
8508 ("r-sjlabelled" ,r-sjlabelled)
8509 ("r-sjmisc" ,r-sjmisc)
8510 ("r-tidyr" ,r-tidyr)))
8511 (home-page "https://github.com/strengejacke/sjstats")
8512 (synopsis "Functions for common statistical computations")
8513 (description
8514 "This package provides a collection of convenient functions for common
8515 statistical computations, which are not directly provided by R's @code{base}
8516 or @code{stats} packages. This package aims at providing, first, shortcuts
8517 for statistical measures, which otherwise could only be calculated with
8518 additional effort. Second, these shortcut functions are generic, and can be
8519 applied not only to vectors, but also to other objects as well. The focus of
8520 most functions lies on summary statistics or fit measures for regression
8521 models, including generalized linear models, mixed effects models and Bayesian
8522 models.")
8523 (license license:gpl3)))
8524
8525 (define-public r-glmmtmb
8526 (package
8527 (name "r-glmmtmb")
8528 (version "1.0.1")
8529 (source
8530 (origin
8531 (method url-fetch)
8532 (uri (cran-uri "glmmTMB" version))
8533 (sha256
8534 (base32
8535 "0sdx1q7wc7895xh8747r4p0wkij0xjgn5ij62ipi9423zd0sr0mm"))))
8536 (properties `((upstream-name . "glmmTMB")))
8537 (build-system r-build-system)
8538 (propagated-inputs
8539 `(("r-lme4" ,r-lme4)
8540 ("r-matrix" ,r-matrix)
8541 ("r-nlme" ,r-nlme)
8542 ("r-rcppeigen" ,r-rcppeigen)
8543 ("r-tmb" ,r-tmb)))
8544 (native-inputs
8545 `(("r-knitr" ,r-knitr))) ; for vignettes
8546 (home-page "https://github.com/glmmTMB")
8547 (synopsis "Generalized linear mixed models")
8548 (description
8549 "Fit linear and generalized linear mixed models with various extensions,
8550 including zero-inflation. The models are fitted using maximum likelihood
8551 estimation via the Template Model Builder. Random effects are assumed to be
8552 Gaussian on the scale of the linear predictor and are integrated out using the
8553 Laplace approximation. Gradients are calculated using automatic
8554 differentiation.")
8555 (license license:agpl3+)))
8556
8557 (define-public r-bayestestr
8558 (package
8559 (name "r-bayestestr")
8560 (version "0.5.3")
8561 (source
8562 (origin
8563 (method url-fetch)
8564 (uri (cran-uri "bayestestR" version))
8565 (sha256
8566 (base32
8567 "1q24qh5p6bz4nbf4546kckh7d518x5pm1yhhbc8fwcnbca4kgqjz"))))
8568 (properties `((upstream-name . "bayestestR")))
8569 (build-system r-build-system)
8570 (propagated-inputs
8571 `(("r-insight" ,r-insight)))
8572 (native-inputs
8573 `(("r-knitr" ,r-knitr)))
8574 (home-page "https://github.com/easystats/bayestestR")
8575 (synopsis "Describe Bayesian models and posterior distributions")
8576 (description
8577 "This package provides utilities to understand and describe posterior
8578 distributions and Bayesian models. It includes point-estimates such as
8579 @dfn{Maximum A Posteriori} (MAP), measures of dispersion such as @dfn{Highest
8580 Density Interval} (HDI), and indices used for null-hypothesis testing (such as
8581 ROPE percentage and pd).")
8582 (license license:gpl3)))
8583
8584 (define-public r-performance
8585 (package
8586 (name "r-performance")
8587 (version "0.4.5")
8588 (source
8589 (origin
8590 (method url-fetch)
8591 (uri (cran-uri "performance" version))
8592 (sha256
8593 (base32
8594 "0j6wmnwhfdd3v1a17qmg491q50579knjzscmyr4yk3xr0jbsbg8x"))))
8595 (build-system r-build-system)
8596 (propagated-inputs
8597 `(("r-bayestestr" ,r-bayestestr)
8598 ("r-insight" ,r-insight)))
8599 (home-page "https://easystats.github.io/performance/")
8600 (synopsis "Assessment of regression models performance")
8601 (description
8602 "This package provides utilities for computing measures to assess model
8603 quality, which are not directly provided by R's @code{base} or @code{stats}
8604 packages. These include e.g. measures like r-squared, intraclass correlation
8605 coefficient, root mean squared error or functions to check models for
8606 overdispersion, singularity or zero-inflation and more. Functions apply to a
8607 large variety of regression models, including generalized linear models, mixed
8608 effects models and Bayesian models.")
8609 (license license:gpl3)))
8610
8611 (define-public r-ggeffects
8612 (package
8613 (name "r-ggeffects")
8614 (version "0.14.2")
8615 (source
8616 (origin
8617 (method url-fetch)
8618 (uri (cran-uri "ggeffects" version))
8619 (sha256
8620 (base32
8621 "1y3yfb07jrr6vkc8hk6rp52l70dj7042jvqgjzllslzy7hx2jhyw"))))
8622 (build-system r-build-system)
8623 (propagated-inputs
8624 `(("r-insight" ,r-insight)
8625 ("r-mass" ,r-mass)
8626 ("r-sjlabelled" ,r-sjlabelled)))
8627 (native-inputs
8628 `(("r-knitr" ,r-knitr)))
8629 (home-page "https://github.com/strengejacke/ggeffects")
8630 (synopsis "Create tidy data frames of marginal effects for ggplot")
8631 (description
8632 "This package provides tools to compute marginal effects from statistical
8633 models and return the result as tidy data frames. These data frames are ready
8634 to use with the @code{ggplot2} package. Marginal effects can be calculated
8635 for many different models. Interaction terms, splines and polynomial terms
8636 are also supported. The two main functions are @code{ggpredict()} and
8637 @code{ggeffect()}. There is a generic @code{plot()} method to plot the
8638 results using @code{ggplot2}.")
8639 (license license:gpl3)))
8640
8641 (define-public r-effectsize
8642 (package
8643 (name "r-effectsize")
8644 (version "0.3.0")
8645 (source
8646 (origin
8647 (method url-fetch)
8648 (uri (cran-uri "effectsize" version))
8649 (sha256
8650 (base32
8651 "0kijp4wamkidaxysc11dd4vhvnm4wnbi87871wcbwn27k5b6i5dg"))))
8652 (properties `((upstream-name . "effectsize")))
8653 (build-system r-build-system)
8654 (propagated-inputs
8655 `(("r-bayestestr" ,r-bayestestr)
8656 ("r-insight" ,r-insight)
8657 ("r-parameters" ,r-parameters)))
8658 (native-inputs
8659 `(("r-knitr" ,r-knitr)))
8660 (home-page "https://github.com/easystats/effectsize")
8661 (synopsis "Indices of effect size and standardized parameters")
8662 (description
8663 "This package provides utilities to work with indices of effect size and
8664 standardized parameters for a wide variety of models, allowing computation and
8665 conversion of indices such as Cohen's d, r, odds, etc.")
8666 (license license:gpl3)))
8667
8668 (define-public r-sjplot
8669 (package
8670 (name "r-sjplot")
8671 (version "2.8.3")
8672 (source
8673 (origin
8674 (method url-fetch)
8675 (uri (cran-uri "sjPlot" version))
8676 (sha256
8677 (base32 "0ip1rkjlhyf3axlc8qqss1qq1f0xrda890c1jmcbhm98wwjw264f"))))
8678 (properties `((upstream-name . "sjPlot")))
8679 (build-system r-build-system)
8680 (propagated-inputs
8681 `(("r-bayestestr" ,r-bayestestr)
8682 ("r-dplyr" ,r-dplyr)
8683 ("r-effectsize" ,r-effectsize)
8684 ("r-ggeffects" ,r-ggeffects)
8685 ("r-ggplot2" ,r-ggplot2)
8686 ("r-insight" ,r-insight)
8687 ("r-knitr" ,r-knitr)
8688 ("r-mass" ,r-mass)
8689 ("r-parameters" ,r-parameters)
8690 ("r-performance" ,r-performance)
8691 ("r-purrr" ,r-purrr)
8692 ("r-rlang" ,r-rlang)
8693 ("r-scales" ,r-scales)
8694 ("r-sjlabelled" ,r-sjlabelled)
8695 ("r-sjmisc" ,r-sjmisc)
8696 ("r-sjstats" ,r-sjstats)
8697 ("r-tidyr" ,r-tidyr)))
8698 (native-inputs
8699 `(("r-knitr" ,r-knitr)))
8700 (home-page "https://strengejacke.github.io/sjPlot/")
8701 (synopsis "Data visualization for statistics in social science")
8702 (description
8703 "This package represents a collection of plotting and table output
8704 functions for data visualization. Results of various statistical
8705 analyses (that are commonly used in social sciences) can be visualized using
8706 this package, including simple and cross tabulated frequencies, histograms,
8707 box plots, (generalized) linear models, mixed effects models, principal
8708 component analysis and correlation matrices, cluster analyses, scatter plots,
8709 stacked scales, effects plots of regression models (including interaction
8710 terms) and much more. This package supports labelled data.")
8711 (license license:gpl3)))
8712
8713 (define-public r-ini
8714 (package
8715 (name "r-ini")
8716 (version "0.3.1")
8717 (source
8718 (origin
8719 (method url-fetch)
8720 (uri (cran-uri "ini" version))
8721 (sha256
8722 (base32
8723 "04yqij344dwm0xqgara8xia42mlmij3i8711qbb5534w05a1l6bv"))))
8724 (build-system r-build-system)
8725 (home-page "https://github.com/dvdscripter/ini")
8726 (synopsis "Read and write configuration files")
8727 (description
8728 "This package provides tools to parse simple @code{.ini} configuration
8729 files to an structured list. Users can manipulate this resulting list with
8730 @code{lapply()} functions. This same structured list can be used to write
8731 back to file after modifications.")
8732 (license license:gpl3)))
8733
8734 (define-public r-gh
8735 (package
8736 (name "r-gh")
8737 (version "1.1.0")
8738 (source
8739 (origin
8740 (method url-fetch)
8741 (uri (cran-uri "gh" version))
8742 (sha256
8743 (base32
8744 "1bc9bn1078s664hc806dh0y1ncxif77q479rfmxfir9z7hwaz7yy"))))
8745 (build-system r-build-system)
8746 (propagated-inputs
8747 `(("r-cli" ,r-cli)
8748 ("r-httr" ,r-httr)
8749 ("r-ini" ,r-ini)
8750 ("r-jsonlite" ,r-jsonlite)))
8751 (home-page "https://github.com/r-lib/gh#readme")
8752 (synopsis "Access the GitHub API via R")
8753 (description
8754 "This package provides a minimal R client to access the GitHub API.")
8755 (license license:expat)))
8756
8757 (define-public r-fs
8758 (package
8759 (name "r-fs")
8760 (version "1.4.1")
8761 (source
8762 (origin
8763 (method url-fetch)
8764 (uri (cran-uri "fs" version))
8765 (sha256
8766 (base32
8767 "0kksig9pk8aid9l6r250na8z8j9919jvs20lj0s6m9bcybgh74df"))))
8768 (build-system r-build-system)
8769 (native-inputs
8770 `(("pkg-config" ,pkg-config)
8771 ("r-knitr" ,r-knitr)))
8772 (home-page "https://fs.r-lib.org")
8773 (synopsis "Cross-platform file system operations based on libuv")
8774 (description
8775 "This package provides a cross-platform interface to file system
8776 operations, built on top of the libuv C library.")
8777 (license license:gpl3)))
8778
8779 (define-public r-clisymbols
8780 (package
8781 (name "r-clisymbols")
8782 (version "1.2.0")
8783 (source
8784 (origin
8785 (method url-fetch)
8786 (uri (cran-uri "clisymbols" version))
8787 (sha256
8788 (base32
8789 "1q7gi2zmykhzas9v8fdnbpdq7pzdcpbhim1yxvd2062l777g4j86"))))
8790 (build-system r-build-system)
8791 (home-page "https://github.com/gaborcsardi/clisymbols")
8792 (synopsis "Unicode symbols at the R prompt")
8793 (description
8794 "This package provides a small subset of Unicode symbols, that are useful
8795 when building command line applications. They fall back to alternatives on
8796 terminals that do not support Unicode.")
8797 (license license:expat)))
8798
8799 (define-public r-usethis
8800 (package
8801 (name "r-usethis")
8802 (version "1.6.0")
8803 (source
8804 (origin
8805 (method url-fetch)
8806 (uri (cran-uri "usethis" version))
8807 (sha256
8808 (base32
8809 "12iyimqyza752anj29wpfisl8nz5r25kfcqbssybg24nb4wyy146"))))
8810 (build-system r-build-system)
8811 (propagated-inputs
8812 `(("r-cli" ,r-cli)
8813 ("r-clipr" ,r-clipr)
8814 ("r-crayon" ,r-crayon)
8815 ("r-curl" ,r-curl)
8816 ("r-desc" ,r-desc)
8817 ("r-fs" ,r-fs)
8818 ("r-gh" ,r-gh)
8819 ("r-git2r" ,r-git2r)
8820 ("r-glue" ,r-glue)
8821 ("r-purrr" ,r-purrr)
8822 ("r-rematch2" ,r-rematch2)
8823 ("r-rlang" ,r-rlang)
8824 ("r-rprojroot" ,r-rprojroot)
8825 ("r-rstudioapi" ,r-rstudioapi)
8826 ("r-whisker" ,r-whisker)
8827 ("r-withr" ,r-withr)
8828 ("r-yaml" ,r-yaml)))
8829 (home-page "https://github.com/r-lib/usethis")
8830 (synopsis "Automate R package and project setup")
8831 (description
8832 "This package helps you to automate R package and project setup tasks
8833 that are otherwise performed manually. This includes setting up unit testing,
8834 test coverage, continuous integration, Git, GitHub integration, licenses,
8835 Rcpp, RStudio projects, and more.")
8836 (license license:gpl3)))
8837
8838 (define-public r-sessioninfo
8839 (package
8840 (name "r-sessioninfo")
8841 (version "1.1.1")
8842 (source
8843 (origin
8844 (method url-fetch)
8845 (uri (cran-uri "sessioninfo" version))
8846 (sha256
8847 (base32
8848 "0j5f3l58fynxx3v0w62vqpii7miabszgljpja36xx9s8hikh8sqn"))))
8849 (build-system r-build-system)
8850 (propagated-inputs
8851 `(("r-cli" ,r-cli)
8852 ("r-withr" ,r-withr)))
8853 (home-page "https://github.com/r-lib/sessioninfo#readme")
8854 (synopsis "R session information")
8855 (description
8856 "This package provides tools to query and print information about the
8857 current R session. It is similar to @code{utils::sessionInfo()}, but includes
8858 more information about packages, and where they were installed from.")
8859 (license license:gpl2)))
8860
8861 (define-public r-remotes
8862 (package
8863 (name "r-remotes")
8864 (version "2.1.1")
8865 (source
8866 (origin
8867 (method url-fetch)
8868 (uri (cran-uri "remotes" version))
8869 (sha256
8870 (base32
8871 "12qinl7jv54f2524ri13gcrv6d523rg1harpi500j676zi30fnaf"))))
8872 (build-system r-build-system)
8873 (home-page "https://github.com/r-lib/remotes#readme")
8874 (synopsis "R package installation from remote repositories")
8875 (description
8876 "Download and install R packages stored in GitHub, BitBucket, or plain
8877 subversion or git repositories. This package is a lightweight replacement of
8878 the @code{install_*} functions in the @code{devtools} package. Indeed most of
8879 the code was copied over from @code{devtools}.")
8880 (license license:gpl2+)))
8881
8882 (define-public r-xopen
8883 (package
8884 (name "r-xopen")
8885 (version "1.0.0")
8886 (source
8887 (origin
8888 (method url-fetch)
8889 (uri (cran-uri "xopen" version))
8890 (sha256
8891 (base32
8892 "1vrvgdika1d63dwygynbv2wmd87ll8dji5dy89hj576n8hw601z2"))))
8893 (build-system r-build-system)
8894 (propagated-inputs
8895 `(("r-processx" ,r-processx)))
8896 (home-page "https://github.com/r-lib/xopen#readme")
8897 (synopsis "Open system files, URLs, anything")
8898 (description
8899 "This package provides a cross-platform solution to open files,
8900 directories or URLs with their associated programs.")
8901 (license license:expat)))
8902
8903 (define-public r-rcmdcheck
8904 (package
8905 (name "r-rcmdcheck")
8906 (version "1.3.3")
8907 (source
8908 (origin
8909 (method url-fetch)
8910 (uri (cran-uri "rcmdcheck" version))
8911 (sha256
8912 (base32
8913 "1d4kzgfqy72r6b7bn1j4znyksrycgypx1jjvpv9lrmvn37mpkdhs"))))
8914 (build-system r-build-system)
8915 (propagated-inputs
8916 `(("r-callr" ,r-callr)
8917 ("r-cli" ,r-cli)
8918 ("r-crayon" ,r-crayon)
8919 ("r-desc" ,r-desc)
8920 ("r-digest" ,r-digest)
8921 ("r-pkgbuild" ,r-pkgbuild)
8922 ("r-prettyunits" ,r-prettyunits)
8923 ("r-r6" ,r-r6)
8924 ("r-rprojroot" ,r-rprojroot)
8925 ("r-sessioninfo" ,r-sessioninfo)
8926 ("r-withr" ,r-withr)
8927 ("r-xopen" ,r-xopen)))
8928 (home-page "https://github.com/r-Lib/rcmdcheck#readme")
8929 (synopsis "Run R CMD check from R and capture results")
8930 (description
8931 "Run @code{R CMD check} from R programmatically, and capture the results
8932 of the individual checks.")
8933 (license license:expat)))
8934
8935 (define-public r-rapportools
8936 (package
8937 (name "r-rapportools")
8938 (version "1.0")
8939 (source
8940 (origin
8941 (method url-fetch)
8942 (uri (cran-uri "rapportools" version))
8943 (sha256
8944 (base32
8945 "1sgv4sc737i12arh5dc3263kjsz3dzg06qihfmrqyax94mv2d01b"))))
8946 (build-system r-build-system)
8947 (propagated-inputs
8948 `(("r-pander" ,r-pander)
8949 ("r-plyr" ,r-plyr)
8950 ("r-reshape" ,r-reshape)))
8951 (home-page "https://cran.r-project.org/web/packages/rapportools/")
8952 (synopsis "Miscellaneous helper functions with sane defaults for reporting")
8953 (description
8954 "This package provides helper functions that act as wrappers to more
8955 advanced statistical methods with the advantage of having sane defaults for
8956 quick reporting.")
8957 (license license:agpl3+)))
8958
8959 (define-public r-pander
8960 (package
8961 (name "r-pander")
8962 (version "0.6.3")
8963 (source
8964 (origin
8965 (method url-fetch)
8966 (uri (cran-uri "pander" version))
8967 (sha256
8968 (base32
8969 "1bd9sdghlsppmff18k5fg3i0visq9f4wc82rlhwq5m82bmgdgnyi"))))
8970 (build-system r-build-system)
8971 (propagated-inputs
8972 `(("r-digest" ,r-digest)
8973 ("r-rcpp" ,r-rcpp)))
8974 (home-page "https://rapporter.github.io/pander")
8975 (synopsis "Render R objects into Pandoc's markdown")
8976 (description
8977 "The main aim of the pander R package is to provide a minimal and easy
8978 tool for rendering R objects into Pandoc's markdown. The package is also
8979 capable of exporting/converting complex Pandoc documents (reports) in various
8980 ways.")
8981 ;; This package is licensed under either the AGPLv3+ or the very rarely
8982 ;; used OSL 3.0.
8983 (license license:agpl3+)))
8984
8985 (define-public r-summarytools
8986 (package
8987 (name "r-summarytools")
8988 (version "0.9.6")
8989 (source
8990 (origin
8991 (method url-fetch)
8992 (uri (cran-uri "summarytools" version))
8993 (sha256
8994 (base32
8995 "03pcb2ild1rb9f15yq8b68p9bg10z5wk2x7ahgyzkwdh5f81vbq2"))))
8996 (build-system r-build-system)
8997 (propagated-inputs
8998 `(("r-base64enc" ,r-base64enc)
8999 ("r-checkmate" ,r-checkmate)
9000 ("r-dplyr" ,r-dplyr)
9001 ("r-htmltools" ,r-htmltools)
9002 ("r-lubridate" ,r-lubridate)
9003 ("r-magick" ,r-magick)
9004 ("r-matrixstats" ,r-matrixstats)
9005 ("r-pander" ,r-pander)
9006 ("r-pryr" ,r-pryr)
9007 ("r-rapportools" ,r-rapportools)
9008 ("r-tibble" ,r-tibble)
9009 ("r-tidyr" ,r-tidyr)))
9010 (home-page "https://github.com/dcomtois/summarytools")
9011 (synopsis "Tools to quickly and neatly summarize data")
9012 (description
9013 "This package provides tools for data frame summaries, cross-tabulations,
9014 weight-enabled frequency tables and common univariate statistics in concise
9015 tables available in a variety of formats (plain ASCII, Markdown and HTML). A
9016 good point-of-entry for exploring data, both for experienced and new R
9017 users.")
9018 (license license:gpl2)))
9019
9020 (define-public r-lsei
9021 (package
9022 (name "r-lsei")
9023 (version "1.2-0")
9024 (source
9025 (origin
9026 (method url-fetch)
9027 (uri (cran-uri "lsei" version))
9028 (sha256
9029 (base32
9030 "1xl06fb3is744pxlh42wx5hn1h0ab1k31wnmsmh0524kxzcyp0a7"))))
9031 (build-system r-build-system)
9032 (native-inputs
9033 `(("gfortran" ,gfortran)))
9034 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
9035 (synopsis "Solve regression problems under equality/inequality constraints")
9036 (description
9037 "It contains functions that solve least squares linear regression
9038 problems under linear equality/inequality constraints. Functions for solving
9039 quadratic programming problems are also available, which transform such
9040 problems into least squares ones first.")
9041 (license license:gpl2+)))
9042
9043 (define-public r-npsurv
9044 (package
9045 (name "r-npsurv")
9046 (version "0.4-0")
9047 (source
9048 (origin
9049 (method url-fetch)
9050 (uri (cran-uri "npsurv" version))
9051 (sha256
9052 (base32
9053 "1wq4c9yfha5azjhrn40iiqkshmvh611sa90jp3lh82n4bl9zfk20"))))
9054 (build-system r-build-system)
9055 (propagated-inputs
9056 `(("r-lsei" ,r-lsei)))
9057 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
9058 (synopsis "Nonparametric survival analysis")
9059 (description
9060 "This package contains functions for non-parametric survival analysis of
9061 exact and interval-censored observations.")
9062 (license license:gpl2+)))
9063
9064 (define-public r-clusteval
9065 (package
9066 (name "r-clusteval")
9067 (version "0.1")
9068 (source
9069 (origin
9070 (method url-fetch)
9071 (uri (cran-uri "clusteval" version))
9072 (sha256
9073 (base32
9074 "1ld0bdl4fy8dsfzm3k7a37cyxc6pfc9qs31x4pxd3z5rslghz7rj"))))
9075 (build-system r-build-system)
9076 (propagated-inputs
9077 `(("r-mvtnorm" ,r-mvtnorm)
9078 ("r-rcpp" ,r-rcpp)))
9079 (home-page "https://cran.r-project.org/web/packages/clusteval/")
9080 (synopsis "Evaluation of clustering algorithms")
9081 (description
9082 "This R package provides a suite of tools to evaluate clustering
9083 algorithms, clusterings, and individual clusters.")
9084 (license license:expat)))
9085
9086 (define-public r-tweedie
9087 (package
9088 (name "r-tweedie")
9089 (version "2.3.2")
9090 (source
9091 (origin
9092 (method url-fetch)
9093 (uri (cran-uri "tweedie" version))
9094 (sha256
9095 (base32
9096 "10fv998qjxsyx0h94fi0xbh6xbf24nwgh254n9zfnmix9vk2cqls"))))
9097 (build-system r-build-system)
9098 (native-inputs `(("gfortran" ,gfortran)))
9099 (home-page "https://cran.r-project.org/web/packages/tweedie/")
9100 (synopsis "Evaluation of Tweedie exponential family models")
9101 (description
9102 "Maximum likelihood computations for Tweedie families, including the
9103 series expansion (Dunn and Smyth, 2005; <doi10.1007/s11222-005-4070-y>) and
9104 the Fourier inversion (Dunn and Smyth, 2008; <doi:10.1007/s11222-007-9039-6>),
9105 and related methods.")
9106 (license license:gpl2+)))
9107
9108 (define-public r-rcppgsl
9109 (package
9110 (name "r-rcppgsl")
9111 (version "0.3.7")
9112 (source
9113 (origin
9114 (method url-fetch)
9115 (uri (cran-uri "RcppGSL" version))
9116 (sha256
9117 (base32 "0cnw2k7cfqrm79r6j283aybflxig80x4n4rjkfp2317wf10mrsa5"))))
9118 (properties `((upstream-name . "RcppGSL")))
9119 (build-system r-build-system)
9120 (propagated-inputs
9121 `(("r-rcpp" ,r-rcpp)
9122 ("gsl" ,gsl)))
9123 (native-inputs
9124 `(("r-knitr" ,r-knitr))) ; for vignettes
9125 (home-page "https://cran.r-project.org/web/packages/RcppGSL/")
9126 (synopsis "Rcpp integration for GSL vectors and matrices")
9127 (description
9128 "The GNU Scientific Library (or GSL) is a collection of numerical
9129 routines for scientific computing. It is particularly useful for C and C++
9130 programs as it provides a standard C interface to a wide range of mathematical
9131 routines. There are over 1000 functions in total with an extensive test
9132 suite. The RcppGSL package provides an easy-to-use interface between GSL data
9133 structures and R using concepts from Rcpp which is itself a package that eases
9134 the interfaces between R and C++.")
9135 (license license:gpl2+)))
9136
9137 (define-public r-mvabund
9138 (package
9139 (name "r-mvabund")
9140 (version "4.1.3")
9141 (source
9142 (origin
9143 (method url-fetch)
9144 (uri (cran-uri "mvabund" version))
9145 (sha256
9146 (base32
9147 "1z58h4dk3mc2hfnfvc7pghk471cbp7ah2s1z2ria5igw4s80962b"))))
9148 (build-system r-build-system)
9149 (propagated-inputs
9150 `(("r-mass" ,r-mass)
9151 ("r-rcpp" ,r-rcpp)
9152 ("r-rcppgsl" ,r-rcppgsl)
9153 ("r-statmod" ,r-statmod)
9154 ("r-tweedie" ,r-tweedie)))
9155 (home-page "https://cran.r-project.org/web/packages/mvabund/")
9156 (synopsis "Statistical methods for analysing multivariate abundance data")
9157 (description
9158 "This package provides a set of tools for displaying, modeling and
9159 analysing multivariate abundance data in community ecology.")
9160 (license license:lgpl2.1+)))
9161
9162 (define-public r-afex
9163 (package
9164 (name "r-afex")
9165 (version "0.27-2")
9166 (source
9167 (origin
9168 (method url-fetch)
9169 (uri (cran-uri "afex" version))
9170 (sha256
9171 (base32
9172 "0qsmcddy4449qjj3ajmqvdiqdkhkswmz5dqf150wxwq897p3bvf2"))))
9173 (build-system r-build-system)
9174 (propagated-inputs
9175 `(("r-car" ,r-car)
9176 ("r-lme4" ,r-lme4)
9177 ("r-lmertest" ,r-lmertest)
9178 ("r-pbkrtest" ,r-pbkrtest)
9179 ("r-reshape2" ,r-reshape2)))
9180 (native-inputs
9181 `(("r-knitr" ,r-knitr)))
9182 (home-page "https://afex.singmann.science/")
9183 (synopsis "Analysis of factorial experiments")
9184 (description
9185 "This package provides convenience functions for analyzing factorial
9186 experiments using ANOVA or mixed models.")
9187 (license license:gpl2+)))
9188
9189 (define-public r-lmertest
9190 (package
9191 (name "r-lmertest")
9192 (version "3.1-2")
9193 (source
9194 (origin
9195 (method url-fetch)
9196 (uri (cran-uri "lmerTest" version))
9197 (sha256
9198 (base32
9199 "1qkdxx5sri65zgpb9gw4nkfkdam51kgy4hxclk5c40yk7y3p0n1q"))))
9200 (properties `((upstream-name . "lmerTest")))
9201 (build-system r-build-system)
9202 (propagated-inputs
9203 `(("r-ggplot2" ,r-ggplot2)
9204 ("r-lme4" ,r-lme4)
9205 ("r-mass" ,r-mass)
9206 ("r-numderiv" ,r-numderiv)))
9207 (home-page "https://github.com/runehaubo/lmerTestR")
9208 (synopsis "Tests in linear mixed effects models")
9209 (description
9210 "This package provides p-values in type I, II or III anova and summary
9211 tables for @code{lmer} model fits via Satterthwaite's degrees of freedom
9212 method. A Kenward-Roger method is also available via the @code{pbkrtest}
9213 package. Model selection methods include step, drop1 and anova-like tables
9214 for random effects (ranova). Methods for Least-Square means (LS-means) and
9215 tests of linear contrasts of fixed effects are also available.")
9216 (license license:gpl2+)))
9217
9218 (define-public r-r2glmm
9219 (package
9220 (name "r-r2glmm")
9221 (version "0.1.2")
9222 (source
9223 (origin
9224 (method url-fetch)
9225 (uri (cran-uri "r2glmm" version))
9226 (sha256
9227 (base32
9228 "0iim92blpa59vgz97c2pi05yhbjjmaffdbkbmk5kplfb2vmazgiy"))))
9229 (build-system r-build-system)
9230 (propagated-inputs
9231 `(("r-afex" ,r-afex)
9232 ("r-data-table" ,r-data-table)
9233 ("r-dplyr" ,r-dplyr)
9234 ("r-ggplot2" ,r-ggplot2)
9235 ("r-gridextra" ,r-gridextra)
9236 ("r-lmertest" ,r-lmertest)
9237 ("r-mass" ,r-mass)
9238 ("r-matrix" ,r-matrix)
9239 ("r-mgcv" ,r-mgcv)
9240 ("r-pbkrtest" ,r-pbkrtest)))
9241 (home-page "https://github.com/bcjaeger/r2glmm")
9242 (synopsis "Compute R squared for mixed (multilevel) models")
9243 (description
9244 "This package computes model and semi partial R squared with confidence
9245 limits for the linear and generalized linear mixed model (LMM and GLMM). The
9246 R squared measure from L. J. Edwards et al. (2008) is extended to the GLMM
9247 using @dfn{penalized quasi-likelihood} (PQL) estimation (see Jaeger et
9248 al. (2016)).")
9249 (license license:gpl2)))
9250
9251 (define-public r-weights
9252 (package
9253 (name "r-weights")
9254 (version "1.0.1")
9255 (source
9256 (origin
9257 (method url-fetch)
9258 (uri (cran-uri "weights" version))
9259 (sha256
9260 (base32
9261 "1ka2kvzg464vn80qziqy4mrciy9wwd3jfasgq0d33wbiblhmxkj5"))))
9262 (build-system r-build-system)
9263 (propagated-inputs
9264 `(("r-gdata" ,r-gdata)
9265 ("r-hmisc" ,r-hmisc)
9266 ("r-mice" ,r-mice)))
9267 (home-page
9268 "https://cran.r-project.org/web/packages/weights/")
9269 (synopsis "Weighting and weighted statistics")
9270 (description "This package Provides a variety of functions for producing
9271 simple weighted statistics, such as weighted Pearson's correlations, partial
9272 correlations, Chi-Squared statistics, histograms, and t-tests. Also now
9273 includes some software for quickly recoding survey data and plotting point
9274 estimates from interaction terms in regressions (and multiply imputed
9275 regressions). NOTE: Weighted partial correlation calculations pulled to
9276 address a bug.")
9277 (license license:gpl2+)))
9278
9279 (define-public r-rcppannoy
9280 (package
9281 (name "r-rcppannoy")
9282 (version "0.0.16")
9283 (source
9284 (origin
9285 (method url-fetch)
9286 (uri (cran-uri "RcppAnnoy" version))
9287 (sha256
9288 (base32
9289 "0bfa35lp6vc4b0h3ymvdx50br233q8vvyjml34ngi81rj0imz3fr"))))
9290 (properties `((upstream-name . "RcppAnnoy")))
9291 (build-system r-build-system)
9292 (propagated-inputs
9293 `(("r-rcpp" ,r-rcpp)))
9294 (home-page "https://cran.r-project.org/web/packages/RcppAnnoy/")
9295 (synopsis "Rcpp bindings for Annoy, a library for Approximate Nearest Neighbors")
9296 (description
9297 "Annoy is a small C++ library for Approximate Nearest Neighbors written
9298 for efficient memory usage as well an ability to load from and save to disk.
9299 This package provides an R interface.")
9300 ;; Annoy is released under ASL 2.0, but this wrapper is released under
9301 ;; GPLv2+.
9302 (license (list license:gpl2+ license:asl2.0))))
9303
9304 (define-public r-rcpphnsw
9305 (package
9306 (name "r-rcpphnsw")
9307 (version "0.2.0")
9308 (source
9309 (origin
9310 (method url-fetch)
9311 (uri (cran-uri "RcppHNSW" version))
9312 (sha256
9313 (base32
9314 "0gqdkw7vkcm544rz45g0hplg836ygzbfwk9gh9wr0817icvdb3qv"))))
9315 (properties `((upstream-name . "RcppHNSW")))
9316 (build-system r-build-system)
9317 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9318 (home-page "https://cran.r-project.org/web/packages/RcppHNSW/")
9319 (synopsis "Rcpp bindings for hnswlib, a library for approximate nearest neighbors")
9320 (description
9321 "Hnswlib is a C++ library for approximate nearest neighbors. This
9322 package provides a minimal R interface by relying on the Rcpp package.")
9323 ;; hnswlib is released under Version 2.0 of the Apache License.
9324 (license (list license:gpl3 license:asl2.0))))
9325
9326 (define-public r-rcppparallel
9327 (package
9328 (name "r-rcppparallel")
9329 (version "5.0.0")
9330 (source
9331 (origin
9332 (method url-fetch)
9333 (uri (cran-uri "RcppParallel" version))
9334 (sha256
9335 (base32
9336 "1mhd6vp47xmfw533h0pkvydv96m57fspvd85g8m7iqb5rcxvhhdb"))))
9337 (properties `((upstream-name . "RcppParallel")))
9338 (build-system r-build-system)
9339 (home-page "https://rcppcore.github.io/RcppParallel/")
9340 (synopsis "Parallel programming tools for Rcpp")
9341 (description
9342 "This package provides high level functions for parallel programming with
9343 Rcpp. For example, the @code{parallelFor()} function can be used to convert
9344 the work of a standard serial @code{for} loop into a parallel one and the
9345 @code{parallelReduce()} function can be used for accumulating aggregates or
9346 other values.")
9347 (license license:gpl2)))
9348
9349 (define-public r-ncdf4
9350 (package
9351 (name "r-ncdf4")
9352 (version "1.17")
9353 (source
9354 (origin
9355 (method url-fetch)
9356 (uri (cran-uri "ncdf4" version))
9357 (sha256
9358 (base32
9359 "1xls44ln2zjrrlimxl8v4bk2ni3g45c9j0gxdnjx31rikmrc95fv"))))
9360 (build-system r-build-system)
9361 (inputs
9362 `(("netcdf" ,netcdf)
9363 ("zlib" ,zlib)))
9364 (home-page "https://cran.r-project.org/web/packages/ncdf4/index.html")
9365 (synopsis "R interface to Unidata netCDF format data files")
9366 (description
9367 "This package provides a high-level R interface to data files written
9368 using Unidata's netCDF library (version 4 or earlier), which are binary data
9369 files that are portable across platforms and include metadata information in
9370 addition to the data sets. Using this package, netCDF files can be opened and
9371 data sets read in easily. It is also easy to create new netCDF dimensions,
9372 variables, and files, in either version 3 or 4 format, and manipulate existing
9373 netCDF files.")
9374 (license license:gpl3+)))
9375
9376 (define-public r-biocmanager
9377 (package
9378 (name "r-biocmanager")
9379 (version "1.30.10")
9380 (source
9381 (origin
9382 (method url-fetch)
9383 (uri (cran-uri "BiocManager" version))
9384 (sha256
9385 (base32 "03n9s2vf7vgpgb5alpxwamf9xfkn32cbzngwyn6spq1bnh9a9dzk"))))
9386 (properties `((upstream-name . "BiocManager")))
9387 (build-system r-build-system)
9388 (home-page "https://cran.r-project.org/web/packages/BiocManager/")
9389 (synopsis "Access the Bioconductor project package repository")
9390 (description
9391 "This package provides a convenient tool to install and update
9392 Bioconductor packages.")
9393 (license license:artistic2.0)))
9394
9395 (define-public r-rgl
9396 (package
9397 (name "r-rgl")
9398 (version "0.100.50")
9399 (source
9400 (origin
9401 (method url-fetch)
9402 (uri (cran-uri "rgl" version))
9403 (sha256
9404 (base32
9405 "165p932ml7dpjkm41zc47p5cdxar69il0m5yvg0avi8q01vr17ay"))))
9406 (build-system r-build-system)
9407 (native-inputs
9408 `(("pkg-config" ,pkg-config)))
9409 (inputs
9410 `(("freetype" ,freetype)
9411 ("libpng" ,libpng)
9412 ("glu" ,glu)
9413 ("libx11" ,libx11)
9414 ("ghc-pandoc" ,ghc-pandoc)
9415 ("zlib" ,zlib)))
9416 (propagated-inputs
9417 `(("r-crosstalk" ,r-crosstalk)
9418 ("r-htmltools" ,r-htmltools)
9419 ("r-htmlwidgets" ,r-htmlwidgets)
9420 ("r-jsonlite" ,r-jsonlite)
9421 ("r-knitr" ,r-knitr)
9422 ("r-magrittr" ,r-magrittr)
9423 ("r-manipulatewidget" ,r-manipulatewidget)
9424 ("r-shiny" ,r-shiny)))
9425 (home-page "https://r-forge.r-project.org/projects/rgl/")
9426 (synopsis "3D visualization using OpenGL")
9427 (description
9428 "This package provides medium to high level functions for 3D interactive graphics,
9429 including functions modelled on base graphics (@code{plot3d()}, etc.) as well
9430 as functions for constructing representations of geometric
9431 objects (@code{cube3d()}, etc.). Output may be on screen using OpenGL, or to
9432 various standard 3D file formats including WebGL, PLY, OBJ, STL as well as 2D
9433 image formats, including PNG, Postscript, SVG, PGF.")
9434 ;; Any version of the GPL.
9435 (license (list license:gpl2+ license:gpl3+))))
9436
9437 (define-public r-multicool
9438 (package
9439 (name "r-multicool")
9440 (version "0.1-11")
9441 (source
9442 (origin
9443 (method url-fetch)
9444 (uri (cran-uri "multicool" version))
9445 (sha256
9446 (base32
9447 "0xk408qbz9cxwf51j3pmy55gcjcnws8mc6j3vyn9zhramxj7x40w"))))
9448 (build-system r-build-system)
9449 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9450 (home-page "https://cran.r-project.org/web/packages/multicool/")
9451 (synopsis "Permutations of multisets in cool-lex order")
9452 (description
9453 "This package provides a set of tools to permute multisets without loops
9454 or hash tables and to generate integer partitions. Cool-lex order is similar
9455 to colexicographical order.")
9456 (license license:gpl2)))
9457
9458 (define-public r-misc3d
9459 (package
9460 (name "r-misc3d")
9461 (version "0.8-4")
9462 (source
9463 (origin
9464 (method url-fetch)
9465 (uri (cran-uri "misc3d" version))
9466 (sha256
9467 (base32
9468 "0qjzpw3h09qi2gfz52b7nhzd95p7yyxsd03fldc9wzzn6wi3vpkm"))))
9469 (build-system r-build-system)
9470 (home-page "https://cran.r-project.org/web/packages/misc3d/")
9471 (synopsis "Miscellaneous 3D Plots")
9472 (description
9473 "This package provides a collection of miscellaneous 3d plots, including
9474 isosurfaces.")
9475 ;; Any version of the GPL.
9476 (license (list license:gpl2+ license:gpl3+))))
9477
9478 (define-public r-ks
9479 (package
9480 (name "r-ks")
9481 (version "1.11.7")
9482 (source
9483 (origin
9484 (method url-fetch)
9485 (uri (cran-uri "ks" version))
9486 (sha256
9487 (base32 "1f6jvxy0hmngyvnvrknzbmhl42njk0vqyycvydm4qnp8cqirqvba"))))
9488 (build-system r-build-system)
9489 (propagated-inputs
9490 `(("r-fnn" ,r-fnn)
9491 ("r-kernlab" ,r-kernlab)
9492 ("r-kernsmooth" ,r-kernsmooth)
9493 ("r-matrix" ,r-matrix)
9494 ("r-mclust" ,r-mclust)
9495 ("r-mgcv" ,r-mgcv)
9496 ("r-multicool" ,r-multicool)
9497 ("r-mvtnorm" ,r-mvtnorm)))
9498 (home-page "http://www.mvstat.net/tduong/")
9499 (synopsis "Kernel smoothing")
9500 (description
9501 "This package provides kernel smoothers for univariate and multivariate
9502 data, including density functions, density derivatives, cumulative
9503 distributions, modal clustering, discriminant analysis, and two-sample
9504 hypothesis testing.")
9505 ;; Either version of the GPL.
9506 (license (list license:gpl2 license:gpl3))))
9507
9508 (define-public r-feature
9509 (package
9510 (name "r-feature")
9511 (version "1.2.13")
9512 (source
9513 (origin
9514 (method url-fetch)
9515 (uri (cran-uri "feature" version))
9516 (sha256
9517 (base32
9518 "07hkw0bv38naj2hdsx4xxrm2dngi6w3rbvgr7s50bjic8hlgy1ra"))))
9519 (build-system r-build-system)
9520 (propagated-inputs
9521 `(("r-ks" ,r-ks)
9522 ("r-misc3d" ,r-misc3d)
9523 ("r-rgl" ,r-rgl)))
9524 (home-page "http://www.mvstat.net/tduong/")
9525 (synopsis "Inferential feature significance for kernel density estimation")
9526 (description
9527 "The feature package contains functions to display and compute kernel
9528 density estimates, significant gradient and significant curvature regions.
9529 Significant gradient and/or curvature regions often correspond to significant
9530 features (e.g. local modes).")
9531 ;; Either version of the GPL.
9532 (license (list license:gpl2 license:gpl3))))
9533
9534 (define-public r-arm
9535 (package
9536 (name "r-arm")
9537 (version "1.10-1")
9538 (source
9539 (origin
9540 (method url-fetch)
9541 (uri (cran-uri "arm" version))
9542 (sha256
9543 (base32
9544 "0vvp90jygajd6ydky57z66wqjq9msfbl88irj5jbsray574mh4bg"))))
9545 (build-system r-build-system)
9546 (propagated-inputs
9547 `(("r-abind" ,r-abind)
9548 ("r-coda" ,r-coda)
9549 ("r-lme4" ,r-lme4)
9550 ("r-mass" ,r-mass)
9551 ("r-matrix" ,r-matrix)
9552 ("r-nlme" ,r-nlme)))
9553 (home-page "https://cran.r-project.org/web/packages/arm/")
9554 (synopsis "Data analysis using regression and multilevel/hierarchical models")
9555 (description
9556 "This package provides functions to accompany A. Gelman and J. Hill,
9557 Data Analysis Using Regression and Multilevel/Hierarchical Models, Cambridge
9558 University Press, 2007.")
9559 (license license:gpl3+)))
9560
9561 (define-public r-circular
9562 (package
9563 (name "r-circular")
9564 (version "0.4-93")
9565 (source
9566 (origin
9567 (method url-fetch)
9568 (uri (cran-uri "circular" version))
9569 (sha256
9570 (base32
9571 "0hki85rs8wc5950pjaw28q54rly2napfbcrx3pchlfap6wwy5kkn"))))
9572 (build-system r-build-system)
9573 (propagated-inputs
9574 `(("r-boot" ,r-boot)
9575 ("r-mvtnorm" ,r-mvtnorm)))
9576 (native-inputs
9577 `(("gfortran" ,gfortran)))
9578 (home-page "https://cran.r-project.org/web/packages/circular/")
9579 (synopsis "Circular statistics")
9580 (description
9581 "This package provides tools for circular statistics, from \"Topics in
9582 circular Statistics\" (2001) S. Rao Jammalamadaka and A. SenGupta, World
9583 Scientific.")
9584 (license license:gpl2+)))
9585
9586 (define-public r-activity
9587 (package
9588 (name "r-activity")
9589 (version "1.3")
9590 (source
9591 (origin
9592 (method url-fetch)
9593 (uri (cran-uri "activity" version))
9594 (sha256
9595 (base32
9596 "12imqj366dp6pam5gap6ji56p5wf1073xz5g4iikfxf5l8snxw92"))))
9597 (build-system r-build-system)
9598 (propagated-inputs
9599 `(("r-circular" ,r-circular)
9600 ("r-insol" ,r-insol)
9601 ("r-pbapply" ,r-pbapply)))
9602 (home-page "https://cran.r-project.org/web/packages/activity/")
9603 (synopsis "Animal activity statistics")
9604 (description
9605 "This package provides functions to fit kernel density functions to
9606 animal activity time data; plot activity distributions; quantify overall
9607 levels of activity; statistically compare activity metrics through
9608 bootstrapping; and evaluate variation in linear variables with time (or other
9609 circular variables).")
9610 (license license:gpl3)))
9611
9612 (define-public r-ouch
9613 (package
9614 (name "r-ouch")
9615 (version "2.14-1")
9616 (source
9617 (origin
9618 (method url-fetch)
9619 (uri (cran-uri "ouch" version))
9620 (sha256
9621 (base32
9622 "0ddf9bw5lhj8vb0ja78jf99i0smq4rgmm842k4a4ygap41vdyn2b"))))
9623 (build-system r-build-system)
9624 (propagated-inputs `(("r-subplex" ,r-subplex)))
9625 (home-page "https://kingaa.github.io/ouch/")
9626 (synopsis "Ornstein-Uhlenbeck models for phylogenetic comparative hypotheses")
9627 (description
9628 "This package provides tools to fit and compare Ornstein-Uhlenbeck models
9629 for evolution along a phylogenetic tree.")
9630 (license license:gpl2+)))
9631
9632 (define-public r-fmsb
9633 (package
9634 (name "r-fmsb")
9635 (version "0.7.0")
9636 (source
9637 (origin
9638 (method url-fetch)
9639 (uri (cran-uri "fmsb" version))
9640 (sha256
9641 (base32
9642 "0x1wkzfdvv4s5xmr0whcwjz4aac71gacwymj2c3mzj2bbswwlw45"))))
9643 (build-system r-build-system)
9644 (home-page "http://minato.sip21c.org/msb/")
9645 (synopsis "Functions for medical statistics book with demographic data")
9646 (description
9647 "This package provides several utility functions for the book entitled
9648 \"Practices of Medical and Health Data Analysis using R\" (Pearson Education
9649 Japan, 2007) with Japanese demographic data and some demographic analysis
9650 related functions.")
9651 (license license:gpl2+)))
9652
9653 (define-public r-stabledist
9654 (package
9655 (name "r-stabledist")
9656 (version "0.7-1")
9657 (source
9658 (origin
9659 (method url-fetch)
9660 (uri (cran-uri "stabledist" version))
9661 (sha256
9662 (base32
9663 "0scar396wiq6wkbkvwp4qrxqc1m075y56p37i6iry5rw796p1i86"))))
9664 (build-system r-build-system)
9665 (home-page "https://www.rmetrics.org")
9666 (synopsis "Stable distribution functions")
9667 (description
9668 "This package provides density, probability and quantile functions, and
9669 random number generation for (skew) stable distributions, using the
9670 parametrizations of Nolan.")
9671 (license license:gpl2+)))
9672
9673 (define-public r-gsl
9674 (package
9675 (name "r-gsl")
9676 (version "2.1-6")
9677 (source
9678 (origin
9679 (method url-fetch)
9680 (uri (cran-uri "gsl" version))
9681 (sha256
9682 (base32
9683 "0p4rh7npp6qbfc5sxjq86xjn7c9ivf3pd60qf1hldwckjqin7m7m"))))
9684 (build-system r-build-system)
9685 (inputs
9686 `(("gsl" ,gsl)))
9687 (home-page "https://cran.r-project.org/web/packages/gsl")
9688 (synopsis "Wrapper for the GNU Scientific Library")
9689 (description
9690 "This package provides an R wrapper for the special functions and quasi
9691 random number generators of the GNU Scientific Library.")
9692 (license license:gpl2+)))
9693
9694 (define-public r-adgoftest
9695 (package
9696 (name "r-adgoftest")
9697 (version "0.3")
9698 (source
9699 (origin
9700 (method url-fetch)
9701 (uri (cran-uri "ADGofTest" version))
9702 (sha256
9703 (base32
9704 "0ik817qzqp6kfbckjp1z7srlma0w6z2zcwykh0jdiv7nahwk3ncw"))))
9705 (properties `((upstream-name . "ADGofTest")))
9706 (build-system r-build-system)
9707 (home-page "https://cran.r-project.org/web/packages/ADGofTest")
9708 (synopsis "Anderson-Darling GoF test")
9709 (description
9710 "This package provides an implementation of the Anderson-Darling GoF test
9711 with p-value calculation based on Marsaglia's 2004 paper \"Evaluating the
9712 Anderson-Darling Distribution\".")
9713 ;; Any version of the GPL.
9714 (license license:gpl3+)))
9715
9716 (define-public r-softimpute
9717 (package
9718 (name "r-softimpute")
9719 (version "1.4")
9720 (source
9721 (origin
9722 (method url-fetch)
9723 (uri (cran-uri "softImpute" version))
9724 (sha256
9725 (base32
9726 "07cxbzkl08q58m1455i139952rmryjlic4s2f2hscl5zxxmfdxcq"))))
9727 (properties `((upstream-name . "softImpute")))
9728 (build-system r-build-system)
9729 (propagated-inputs
9730 `(("r-matrix" ,r-matrix)))
9731 (native-inputs
9732 `(("gfortran" ,gfortran)))
9733 (home-page "https://cran.r-project.org/web/packages/softImpute")
9734 (synopsis "Matrix completion via iterative soft-thresholded SVD")
9735 (description
9736 "This package provides iterative methods for matrix completion that use
9737 nuclear-norm regularization. The package includes procedures for centering
9738 and scaling rows, columns or both, and for computing low-rank @dfn{single
9739 value decompositions} (SVDs) on large sparse centered matrices (i.e. principal
9740 components).")
9741 (license license:gpl2)))
9742
9743 (define-public r-fftwtools
9744 (package
9745 (name "r-fftwtools")
9746 (version "0.9-8")
9747 (source
9748 (origin
9749 (method url-fetch)
9750 (uri (cran-uri "fftwtools" version))
9751 (sha256
9752 (base32
9753 "1nqvpzda281rxi1cmwajxxsn3sc3gz7scv8bvs5jm34kf36whha6"))))
9754 (build-system r-build-system)
9755 (inputs `(("fftw" ,fftw)))
9756 (home-page "https://github.com/krahim/fftwtools")
9757 (synopsis "Wrapper for FFTW3")
9758 (description
9759 "This package provides a wrapper for several FFTW functions. It provides
9760 access to the two-dimensional FFT, the multivariate FFT, and the
9761 one-dimensional real to complex FFT using the FFTW3 library. The package
9762 includes the functions @code{fftw()} and @code{mvfftw()} which are designed to
9763 mimic the functionality of the R functions @code{fft()} and @code{mvfft()}.
9764 The FFT functions have a parameter that allows them to not return the
9765 redundant complex conjugate when the input is real data.")
9766 (license license:gpl2+)))
9767
9768 (define-public r-tiff
9769 (package
9770 (name "r-tiff")
9771 (version "0.1-5")
9772 (source
9773 (origin
9774 (method url-fetch)
9775 (uri (cran-uri "tiff" version))
9776 (sha256
9777 (base32
9778 "0asf2bws3x3yd3g3ixvk0f86b0mdf882pl8xrqlxrkbgjalyc54m"))))
9779 (build-system r-build-system)
9780 (inputs
9781 `(("libtiff" ,libtiff)
9782 ("libjpeg" ,libjpeg)
9783 ("zlib" ,zlib)))
9784 (home-page "https://www.rforge.net/tiff/")
9785 (synopsis "Read and write TIFF images")
9786 (description
9787 "This package provides an easy and simple way to read, write and display
9788 bitmap images stored in the TIFF format. It can read and write both files and
9789 in-memory raw vectors.")
9790 ;; Either of these two license versions.
9791 (license (list license:gpl2 license:gpl3))))
9792
9793 (define-public r-nlp
9794 (package
9795 (name "r-nlp")
9796 (version "0.2-0")
9797 (source
9798 (origin
9799 (method url-fetch)
9800 (uri (cran-uri "NLP" version))
9801 (sha256
9802 (base32
9803 "0xbhkrnxcbf322jfw31xcn4y2gnk5y7ccq1bz4h3prf44h0whr7w"))))
9804 (properties `((upstream-name . "NLP")))
9805 (build-system r-build-system)
9806 (home-page "https://cran.r-project.org/web/packages/NLP/")
9807 (synopsis "Natural language processing infrastructure")
9808 (description
9809 "This package provides basic classes and methods for Natural Language
9810 Processing.")
9811 (license license:gpl3)))
9812
9813 (define-public r-tm
9814 (package
9815 (name "r-tm")
9816 (version "0.7-7")
9817 (source
9818 (origin
9819 (method url-fetch)
9820 (uri (cran-uri "tm" version))
9821 (sha256
9822 (base32
9823 "0pyics8j7a4wkh5gzin46l0qars5vgbb1886xqpdqjs1z0gy9nyh"))))
9824 (properties `((upstream-name . "tm")))
9825 (build-system r-build-system)
9826 (propagated-inputs
9827 `(("r-bh" ,r-bh)
9828 ("r-nlp" ,r-nlp)
9829 ("r-rcpp" ,r-rcpp)
9830 ("r-slam" ,r-slam)
9831 ("r-xml2" ,r-xml2)))
9832 (home-page "http://tm.r-forge.r-project.org/")
9833 (synopsis "Text mining package")
9834 (description
9835 "This package provides a framework for text mining applications within R.")
9836 (license license:gpl3)))
9837
9838 (define-public r-waveslim
9839 (package
9840 (name "r-waveslim")
9841 (version "1.8.2")
9842 (source
9843 (origin
9844 (method url-fetch)
9845 (uri (cran-uri "waveslim" version))
9846 (sha256
9847 (base32
9848 "0ibivnhz0l06sss5rrrcvyiwg3qpbyk3qn4vx4pp90kj09x4yg0k"))))
9849 (build-system r-build-system)
9850 (native-inputs
9851 `(("gfortran" ,gfortran)))
9852 (home-page "http://waveslim.blogspot.com")
9853 (synopsis "Basic wavelet routines for signal processing")
9854 (description
9855 "This package provides basic wavelet routines for time series (1D),
9856 image (2D) and array (3D) analysis. The code provided here is based on
9857 wavelet methodology developed in Percival and Walden (2000); Gencay, Selcuk
9858 and Whitcher (2001); the dual-tree complex wavelet transform (DTCWT) from
9859 Kingsbury (1999, 2001) as implemented by Selesnick; and Hilbert wavelet
9860 pairs (Selesnick 2001, 2002).")
9861 (license license:bsd-3)))
9862
9863 (define-public r-wordcloud
9864 (package
9865 (name "r-wordcloud")
9866 (version "2.6")
9867 (source
9868 (origin
9869 (method url-fetch)
9870 (uri (cran-uri "wordcloud" version))
9871 (sha256
9872 (base32
9873 "0j96yyvm6bcrrpbdx4w26piqx44a0vbsr3px9cb4zk8a8da6jwak"))))
9874 (build-system r-build-system)
9875 (propagated-inputs
9876 `(("r-rcolorbrewer" ,r-rcolorbrewer)
9877 ("r-rcpp" ,r-rcpp)
9878 ;; The "tm" package is only "suggested" according to CRAN, but the
9879 ;; wordcloud package cannot be loaded without it.
9880 ("r-tm" ,r-tm)))
9881 (home-page "https://cran.r-project.org/web/packages/wordcloud")
9882 (synopsis "Word clouds")
9883 (description
9884 "This package provides functionality to create pretty word clouds,
9885 visualize differences and similarity between documents, and avoid
9886 over-plotting in scatter plots with text.")
9887 (license license:lgpl2.1)))
9888
9889 (define-public r-colorramps
9890 (package
9891 (name "r-colorramps")
9892 (version "2.3")
9893 (source
9894 (origin
9895 (method url-fetch)
9896 (uri (cran-uri "colorRamps" version))
9897 (sha256
9898 (base32
9899 "0shbjh83x1axv4drm5r3dwgbyv70idih8z4wlzjs4hiac2qfl41z"))))
9900 (properties `((upstream-name . "colorRamps")))
9901 (build-system r-build-system)
9902 (home-page "https://cran.r-project.org/web/packages/colorRamps")
9903 (synopsis "Build color tables")
9904 (description "This package provides features to build gradient color
9905 maps.")
9906 ;; Any version of the GPL
9907 (license license:gpl3+)))
9908
9909 (define-public r-tidytree
9910 (package
9911 (name "r-tidytree")
9912 (version "0.3.3")
9913 (source
9914 (origin
9915 (method url-fetch)
9916 (uri (cran-uri "tidytree" version))
9917 (sha256
9918 (base32 "05b53dap0f784kl6s1wgck6m7brwmy6ifqp7v5l06s1spfspagl6"))))
9919 (build-system r-build-system)
9920 (propagated-inputs
9921 `(("r-ape" ,r-ape)
9922 ("r-dplyr" ,r-dplyr)
9923 ("r-lazyeval" ,r-lazyeval)
9924 ("r-magrittr" ,r-magrittr)
9925 ("r-rlang" ,r-rlang)
9926 ("r-tibble" ,r-tibble)))
9927 (native-inputs
9928 `(("r-knitr" ,r-knitr)))
9929 (home-page "https://github.com/GuangchuangYu/tidytree")
9930 (synopsis "Tidy tool for phylogenetic tree data manipulation")
9931 (description
9932 "Phylogenetic trees generally contain multiple components including nodes,
9933 edges, branches and associated data. This package provides an approach to
9934 convert tree objects to tidy data frames. It also provides tidy interfaces to
9935 manipulate tree data.")
9936 (license license:artistic2.0)))
9937
9938 (define-public r-rvcheck
9939 (package
9940 (name "r-rvcheck")
9941 (version "0.1.8")
9942 (source
9943 (origin
9944 (method url-fetch)
9945 (uri (cran-uri "rvcheck" version))
9946 (sha256
9947 (base32 "0627bc8qmhxmd63yh6f90qni3qw1zwdpxjln2qbychzmzd4am9ac"))))
9948 (build-system r-build-system)
9949 (propagated-inputs
9950 `(("r-biocmanager" ,r-biocmanager)
9951 ("r-rlang" ,r-rlang)))
9952 (home-page "https://cran.r-project.org/web/packages/rvcheck")
9953 (synopsis "R package version check")
9954 (description
9955 "This package provides tools to check the latest release version of R and
9956 R packages (on CRAN, Bioconductor or Github).")
9957 (license license:artistic2.0)))
9958
9959 (define-public r-docopt
9960 (package
9961 (name "r-docopt")
9962 (version "0.6.1")
9963 (source
9964 (origin
9965 (method url-fetch)
9966 (uri (cran-uri "docopt" version))
9967 (sha256
9968 (base32
9969 "06zknnd0c5s2y0hbddzdlr3m63ib783izpck6pgz7sjbab5pd068"))))
9970 (build-system r-build-system)
9971 (home-page "https://github.com/docopt/docopt.R")
9972 (synopsis "Command-line interface specification language")
9973 (description
9974 "This package enables you to define a command-line interface by just
9975 giving it a description in the specific format.")
9976 (license license:expat)))
9977
9978 (define-public r-sparsesvd
9979 (package
9980 (name "r-sparsesvd")
9981 (version "0.2")
9982 (source
9983 (origin
9984 (method url-fetch)
9985 (uri (cran-uri "sparsesvd" version))
9986 (sha256
9987 (base32
9988 "1xm969fjq3fv1p2sqza2apz8picibj4s2agpwf1sx9nwn3b587qs"))))
9989 (build-system r-build-system)
9990 (propagated-inputs `(("r-matrix" ,r-matrix)))
9991 (home-page "http://tedlab.mit.edu/~dr/SVDLIBC/")
9992 (synopsis "Sparse truncated singular value decomposition")
9993 (description
9994 "This package provides a Wrapper around the SVDLIBC library
9995 for (truncated) singular value decomposition of a sparse matrix. Currently,
9996 only sparse real matrices in Matrix package format are supported.")
9997 ;; SVDLIBC is released under BSD-2. The R interface is released under
9998 ;; BSD-3.
9999 (license (list license:bsd-3 license:bsd-2))))
10000
10001 (define-public r-speedglm
10002 (package
10003 (name "r-speedglm")
10004 (version "0.3-2")
10005 (source
10006 (origin
10007 (method url-fetch)
10008 (uri (cran-uri "speedglm" version))
10009 (sha256
10010 (base32
10011 "1b25zimk0z7ad62yacqdg0zk0qs0jja4i918ym942xfw4j1z3jjz"))))
10012 (build-system r-build-system)
10013 (propagated-inputs
10014 `(("r-mass" ,r-mass)
10015 ("r-matrix" ,r-matrix)))
10016 (home-page "https://cran.r-project.org/web/packages/speedglm")
10017 (synopsis "Fit linear and generalized linear models to large data sets")
10018 (description
10019 "This package provides tools for fitting linear models and generalized
10020 linear models to large data sets by updating algorithms.")
10021 ;; Any version of the GPL
10022 (license license:gpl2+)))
10023
10024 (define-public r-densityclust
10025 (package
10026 (name "r-densityclust")
10027 (version "0.3")
10028 (source
10029 (origin
10030 (method url-fetch)
10031 (uri (cran-uri "densityClust" version))
10032 (sha256
10033 (base32
10034 "1zry0vafajzmr37aylglxfvwplhdygbkb9cvzvh8cy0xgnjrnx13"))))
10035 (properties `((upstream-name . "densityClust")))
10036 (build-system r-build-system)
10037 (propagated-inputs
10038 `(("r-fnn" ,r-fnn)
10039 ("r-ggplot2" ,r-ggplot2)
10040 ("r-ggrepel" ,r-ggrepel)
10041 ("r-gridextra" ,r-gridextra)
10042 ("r-rcolorbrewer" ,r-rcolorbrewer)
10043 ("r-rcpp" ,r-rcpp)
10044 ("r-rtsne" ,r-rtsne)))
10045 (home-page "https://cran.r-project.org/web/packages/densityClust")
10046 (synopsis "Clustering by fast search and find of density peaks")
10047 (description
10048 "This package provides an improved implementation (based on k-nearest
10049 neighbors) of the density peak clustering algorithm, originally described by
10050 Alex Rodriguez and Alessandro Laio (Science, 2014 vol. 344). It can handle
10051 large datasets (> 100,000 samples) very efficiently.")
10052 (license license:gpl2+)))
10053
10054 (define-public r-combinat
10055 (package
10056 (name "r-combinat")
10057 (version "0.0-8")
10058 (source
10059 (origin
10060 (method url-fetch)
10061 (uri (cran-uri "combinat" version))
10062 (sha256
10063 (base32
10064 "1h9hr88gigihc4na7lb5i7rn4az1xa7sb34zvnznaj6pdrmwy4qm"))))
10065 (build-system r-build-system)
10066 (home-page "https://cran.r-project.org/web/packages/combinat")
10067 (synopsis "Combinatorics utilities")
10068 (description "This package provides assorted routines for combinatorics.")
10069 (license license:gpl2)))
10070
10071 (define-public r-qlcmatrix
10072 (package
10073 (name "r-qlcmatrix")
10074 (version "0.9.7")
10075 (source
10076 (origin
10077 (method url-fetch)
10078 (uri (cran-uri "qlcMatrix" version))
10079 (sha256
10080 (base32
10081 "0iqkcvvy8rxlk0s83sjq57dd6fadb18p5z31lzy0gnzv1hsy1x8y"))))
10082 (properties `((upstream-name . "qlcMatrix")))
10083 (build-system r-build-system)
10084 (propagated-inputs
10085 `(("r-docopt" ,r-docopt)
10086 ("r-matrix" ,r-matrix)
10087 ("r-slam" ,r-slam)
10088 ("r-sparsesvd" ,r-sparsesvd)))
10089 (home-page "https://cran.r-project.org/web/packages/qlcMatrix")
10090 (synopsis "Sparse matrix functions for quantitative language comparison")
10091 (description
10092 "This package provides an extension of the functionality of the Matrix
10093 package for using sparse matrices. Some of the functions are very general,
10094 while other are highly specific for the special data format used for
10095 @dfn{quantitative language comparison} (QLC).")
10096 (license license:gpl3)))
10097
10098 (define-public r-ddrtree
10099 (package
10100 (name "r-ddrtree")
10101 (version "0.1.5")
10102 (source
10103 (origin
10104 (method url-fetch)
10105 (uri (cran-uri "DDRTree" version))
10106 (sha256
10107 (base32
10108 "16s5fjw7kwlxhrkzdny62sx32fvmg3rxjc3wrh6krd31jh1fqlfk"))))
10109 (properties `((upstream-name . "DDRTree")))
10110 (build-system r-build-system)
10111 (propagated-inputs
10112 `(("r-bh" ,r-bh)
10113 ("r-irlba" ,r-irlba)
10114 ("r-rcpp" ,r-rcpp)
10115 ("r-rcppeigen" ,r-rcppeigen)))
10116 (home-page "https://cran.r-project.org/web/packages/DDRTree")
10117 (synopsis "Learning principal graphs with DDRTree")
10118 (description
10119 "This package provides an implementation of the framework of
10120 @dfn{reversed graph embedding} (RGE) which projects data into a reduced
10121 dimensional space while constructs a principal tree which passes through the
10122 middle of the data simultaneously. DDRTree shows superiority to
10123 alternatives (Wishbone, DPT) for inferring the ordering as well as the
10124 intrinsic structure of single cell genomics data. In general, it could be
10125 used to reconstruct the temporal progression as well as the bifurcation
10126 structure of any data type.")
10127 (license license:asl2.0)))
10128
10129 (define-public r-corpcor
10130 (package
10131 (name "r-corpcor")
10132 (version "1.6.9")
10133 (source
10134 (origin
10135 (method url-fetch)
10136 (uri (cran-uri "corpcor" version))
10137 (sha256
10138 (base32
10139 "1hi3i9d3841snppq1ks5pd8cliq1b4rm4dpsczmfqvwksg8snkrf"))))
10140 (build-system r-build-system)
10141 (home-page "http://strimmerlab.org/software/corpcor/")
10142 (synopsis "Efficient estimation of covariance and (partial) correlation")
10143 (description
10144 "This package implements a James-Stein-type shrinkage estimator for the
10145 covariance matrix, with separate shrinkage for variances and correlations.
10146 Furthermore, functions are available for fast singular value decomposition,
10147 for computing the pseudoinverse, and for checking the rank and positive
10148 definiteness of a matrix.")
10149 (license license:gpl3+)))
10150
10151 (define-public r-rspectra
10152 (package
10153 (name "r-rspectra")
10154 (version "0.16-0")
10155 (source
10156 (origin
10157 (method url-fetch)
10158 (uri (cran-uri "RSpectra" version))
10159 (sha256
10160 (base32
10161 "1ab45as2ysjrvkhvmx7y3nbhd0y1w4j9k2a789lcd973zz4wzwda"))))
10162 (properties `((upstream-name . "RSpectra")))
10163 (build-system r-build-system)
10164 (propagated-inputs
10165 `(("r-matrix" ,r-matrix)
10166 ("r-rcpp" ,r-rcpp)
10167 ("r-rcppeigen" ,r-rcppeigen)))
10168 (home-page "https://github.com/yixuan/RSpectra")
10169 (synopsis "Solvers for large-scale Eigenvalue and SVD problems")
10170 (description
10171 "This package provides an R interface to the Spectra library for
10172 large-scale eigenvalue and SVD problems. It is typically used to compute a
10173 few eigenvalues/vectors of an n by n matrix, e.g., the k largest eigenvalues,
10174 which is usually more efficient than @code{eigen()} if k << n.")
10175 ;; MPL 2 or later.
10176 (license license:mpl2.0)))
10177
10178 (define-public r-vbsr
10179 (package
10180 (name "r-vbsr")
10181 (version "0.0.5")
10182 (source
10183 (origin
10184 (method url-fetch)
10185 (uri (cran-uri "vbsr" version))
10186 (sha256
10187 (base32
10188 "1avskbxxyinjjdga4rnghcfvd4sypv4m39ysfaij5avvmi89bx3b"))))
10189 (build-system r-build-system)
10190 (home-page "https://cran.r-project.org/web/packages/vbsr")
10191 (synopsis "Variational Bayes spike regression regularized linear models")
10192 (description
10193 "This package provides an efficient algorithm for solving ultra-sparse
10194 regularized regression models using a variational Bayes algorithm with a spike
10195 prior. The algorithm is solved on a path, with coordinate updates, and is
10196 capable of generating very sparse models. Very general model
10197 diagnostics for controlling type-1 errors are also provided.")
10198 (license license:gpl2)))
10199
10200 (define-public r-flare
10201 (package
10202 (name "r-flare")
10203 (version "1.6.0.2")
10204 (source
10205 (origin
10206 (method url-fetch)
10207 (uri (cran-uri "flare" version))
10208 (sha256
10209 (base32
10210 "1ybrsx1djqldw0l5l1iz4pfh6xxb8ckkg1ric7wnsr51wm9ljlh5"))))
10211 (build-system r-build-system)
10212 (propagated-inputs
10213 `(("r-igraph" ,r-igraph)
10214 ("r-lattice" ,r-lattice)
10215 ("r-mass" ,r-mass)
10216 ("r-matrix" ,r-matrix)))
10217 (home-page "https://cran.r-project.org/web/packages/flare")
10218 (synopsis "Family of Lasso regression implementations")
10219 (description
10220 "This package provides implementations of a family of Lasso variants
10221 including Dantzig Selector, LAD Lasso, SQRT Lasso, Lq Lasso for estimating
10222 high dimensional sparse linear models.")
10223 (license license:gpl2)))
10224
10225 (define-public r-lassopv
10226 (package
10227 (name "r-lassopv")
10228 (version "0.2.0")
10229 (source
10230 (origin
10231 (method url-fetch)
10232 (uri (cran-uri "lassopv" version))
10233 (sha256
10234 (base32
10235 "0yawnjw063jypk3riy9xab9cmliv6c9dnabi18670khd3gzb2r9z"))))
10236 (build-system r-build-system)
10237 (propagated-inputs `(("r-lars" ,r-lars)))
10238 (home-page "https://github.com/lingfeiwang/lassopv")
10239 (synopsis "Non-parametric p-value estimation for predictors in Lasso")
10240 (description
10241 "This package enables you to estimate the p-values for predictors x
10242 against target variable y in Lasso regression, using the regularization
10243 strength when each predictor enters the active set of regularization path for
10244 the first time as the statistic.")
10245 (license license:gpl3)))
10246
10247 (define-public r-splitstackshape
10248 (package
10249 (name "r-splitstackshape")
10250 (version "1.4.8")
10251 (source
10252 (origin
10253 (method url-fetch)
10254 (uri (cran-uri "splitstackshape" version))
10255 (sha256
10256 (base32
10257 "0mpyf2kkfdl69pdc6brl1r6101vyc6pgr7z17s55ppg3y71k4q35"))))
10258 (build-system r-build-system)
10259 (propagated-inputs
10260 `(("r-data-table" ,r-data-table)))
10261 (home-page "https://github.com/mrdwab/splitstackshape")
10262 (synopsis "Stack and reshape datasets after splitting concatenated values")
10263 (description
10264 "Online data collection tools like Google Forms often export
10265 multiple-response questions with data concatenated in cells. The
10266 @code{concat.split} (cSplit) family of functions provided by this package
10267 splits such data into separate cells. This package also includes functions to
10268 stack groups of columns and to reshape wide data, even when the data are
10269 \"unbalanced\"---something which @code{reshape} (from base R) does not handle,
10270 and which @code{melt} and @code{dcast} from @code{reshape2} do not easily
10271 handle.")
10272 (license license:gpl3)))
10273
10274 (define-public r-tfmpvalue
10275 (package
10276 (name "r-tfmpvalue")
10277 (version "0.0.8")
10278 (source
10279 (origin
10280 (method url-fetch)
10281 (uri (cran-uri "TFMPvalue" version))
10282 (sha256
10283 (base32
10284 "0h9qkl15k8v17v3g9bdnfwvh2s04ywjgg5y0xn2077dmywlja1bd"))))
10285 (properties `((upstream-name . "TFMPvalue")))
10286 (build-system r-build-system)
10287 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
10288 (home-page "https://github.com/ge11232002/TFMPvalue")
10289 (synopsis "P-value computation for position weight matrices")
10290 (description
10291 "In putative @dfn{Transcription Factor Binding Sites} (TFBSs)
10292 identification from sequence/alignments, we are interested in the significance
10293 of certain match scores. TFMPvalue provides the accurate calculation of a
10294 p-value with a score threshold for position weight matrices, or the score with
10295 a given p-value. It is an interface to code originally made available by
10296 Helene Touzet and Jean-Stephane Varre, 2007, Algorithms Mol Biol:2, 15.
10297 Touzet and Varre (2007).")
10298 (license license:gpl2)))
10299
10300 (define-public r-rnifti
10301 (package
10302 (name "r-rnifti")
10303 (version "1.1.0")
10304 (source
10305 (origin
10306 (method url-fetch)
10307 (uri (cran-uri "RNifti" version))
10308 (sha256
10309 (base32
10310 "1z8ninp3aq18w0slcfn8r2fp48cdz8l0k0namsrnvgyp8lzcpqpn"))))
10311 (properties `((upstream-name . "RNifti")))
10312 (build-system r-build-system)
10313 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
10314 (home-page "https://github.com/jonclayden/RNifti")
10315 (synopsis "Fast R and C++ access to NIfTI images")
10316 (description
10317 "This package provides very fast read and write access to images stored
10318 in the NIfTI-1 and ANALYZE-7.5 formats, with seamless synchronisation between
10319 compiled C and interpreted R code. It also provides a C/C++ API that can be
10320 used by other packages.")
10321 (license license:gpl2)))
10322
10323 (define-public r-shades
10324 (package
10325 (name "r-shades")
10326 (version "1.4.0")
10327 (source
10328 (origin
10329 (method url-fetch)
10330 (uri (cran-uri "shades" version))
10331 (sha256
10332 (base32
10333 "1zg95sjhrfvbdlfc387g9p0vnb8nb6agdk1mb3wq3kwkm2da0bqj"))))
10334 (build-system r-build-system)
10335 (home-page "https://github.com/jonclayden/shades")
10336 (synopsis "Simple color manipulation")
10337 (description
10338 "This package provides functions for easily manipulating colors,
10339 creating color scales and calculating color distances.")
10340 (license license:bsd-3)))
10341
10342 (define-public r-ore
10343 (package
10344 (name "r-ore")
10345 (version "1.6.3")
10346 (source
10347 (origin
10348 (method url-fetch)
10349 (uri (cran-uri "ore" version))
10350 (sha256
10351 (base32 "1vh6w3arrhgkfjjjw7ci91xmz4wpfr3cmwd5zkqch89dgn07skkv"))))
10352 (build-system r-build-system)
10353 (home-page "https://github.com/jonclayden/ore")
10354 (synopsis "R interface to the Onigmo regular expression library")
10355 (description
10356 "This package provides an alternative to R's built-in functionality for
10357 handling regular expressions, based on the Onigmo library. It offers
10358 first-class compiled regex objects, partial matching and function-based
10359 substitutions, amongst other features.")
10360 (license license:bsd-3)))
10361
10362 (define-public r-reportr
10363 (package
10364 (name "r-reportr")
10365 (version "1.3.0")
10366 (source
10367 (origin
10368 (method url-fetch)
10369 (uri (cran-uri "reportr" version))
10370 (sha256
10371 (base32
10372 "0zynplxqvbmf23cm2rsz3wz2jx6mv55z94mn1k44ny3lx625cnpw"))))
10373 (build-system r-build-system)
10374 (propagated-inputs `(("r-ore" ,r-ore)))
10375 (home-page "https://github.com/jonclayden/reportr")
10376 (synopsis "General message and error reporting system")
10377 (description
10378 "This package provides a system for reporting messages, which offers
10379 certain useful features over the standard R system, such as the incorporation
10380 of output consolidation, message filtering, assertions, expression
10381 substitution, automatic generation of stack traces for debugging, and
10382 conditional reporting based on the current \"output level\".")
10383 (license license:gpl2)))
10384
10385 (define-public r-tractor-base
10386 (package
10387 (name "r-tractor-base")
10388 (version "3.3.2")
10389 (source
10390 (origin
10391 (method url-fetch)
10392 (uri (cran-uri "tractor.base" version))
10393 (sha256
10394 (base32
10395 "0y5gm0y4chl30f5qqq8qiiw4j8g32s4i9xrvyp3cwg902kf2p86i"))))
10396 (properties `((upstream-name . "tractor.base")))
10397 (build-system r-build-system)
10398 (propagated-inputs
10399 `(("r-ore" ,r-ore)
10400 ("r-reportr" ,r-reportr)
10401 ("r-rnifti" ,r-rnifti)
10402 ("r-shades" ,r-shades)))
10403 (home-page "https://www.tractor-mri.org.uk")
10404 (synopsis "Read, manipulate and visualize magnetic resonance images")
10405 (description
10406 "This package provides functions for working with magnetic resonance
10407 images. It supports reading and writing of popular file formats (DICOM,
10408 Analyze, NIfTI-1, NIfTI-2, MGH); interactive and non-interactive
10409 visualization; flexible image manipulation; metadata and sparse image
10410 handling.")
10411 (license license:gpl2)))
10412
10413 (define-public r-grimport
10414 (package
10415 (name "r-grimport")
10416 (version "0.9-3")
10417 (source
10418 (origin
10419 (method url-fetch)
10420 (uri (cran-uri "grImport" version))
10421 (sha256
10422 (base32
10423 "109mrdvq06xq3zgn9ngz0c7zzgqkv5zbpvsb2i636vmlk6y4dpkd"))))
10424 (properties `((upstream-name . "grImport")))
10425 (build-system r-build-system)
10426 (inputs
10427 `(("ghostscript" ,ghostscript)))
10428 (propagated-inputs
10429 `(("r-xml" ,r-xml)))
10430 (home-page "https://cran.r-project.org/web/packages/grImport")
10431 (synopsis "Convert, import, and draw PostScript pictures")
10432 (description
10433 "This package provides functions for converting, importing, and drawing
10434 PostScript pictures in R plots.")
10435 (license license:gpl2+)))
10436
10437 (define-public r-grimport2
10438 (package
10439 (name "r-grimport2")
10440 (version "0.2-0")
10441 (source
10442 (origin
10443 (method url-fetch)
10444 (uri (cran-uri "grImport2" version))
10445 (sha256
10446 (base32
10447 "19q0dd8fpp1g4xf6sg5f8dxybwxjfw553ra6wgjd8b74fzca40m1"))))
10448 (properties `((upstream-name . "grImport2")))
10449 (build-system r-build-system)
10450 (propagated-inputs
10451 `(("r-base64enc" ,r-base64enc)
10452 ("r-jpeg" ,r-jpeg)
10453 ("r-png" ,r-png)
10454 ("r-xml" ,r-xml)))
10455 (home-page "https://cran.r-project.org/web/packages/grImport2/")
10456 (synopsis "Import SVG graphics")
10457 (description
10458 "This package provides functions for importing external vector images and
10459 drawing them as part of R plots. This package is different from the
10460 @code{grImport} package because, where that package imports PostScript format
10461 images, this package imports SVG format images. Furthermore, this package
10462 imports a specific subset of SVG, so external images must be preprocessed
10463 using a package like @code{rsvg} to produce SVG that this package can import.
10464 SVG features that are not supported by R graphics, such as gradient fills, can
10465 be imported and then exported via the @code{gridSVG} package.")
10466 (license license:gpl2+)))
10467
10468 (define-public r-kohonen
10469 (package
10470 (name "r-kohonen")
10471 (version "3.0.10")
10472 (source
10473 (origin
10474 (method url-fetch)
10475 (uri (cran-uri "kohonen" version))
10476 (sha256
10477 (base32
10478 "1ck7j13x701g67bx81x7plszz804jfhl1yg42krcj9x88vm5cscr"))))
10479 (build-system r-build-system)
10480 (propagated-inputs
10481 `(("r-rcpp" ,r-rcpp)))
10482 (home-page "https://cran.r-project.org/web/packages/kohonen")
10483 (synopsis "Supervised and unsupervised self-organising maps")
10484 (description
10485 "This package provides functions to train @dfn{self-organising
10486 maps} (SOMs). Also interrogation of the maps and prediction using trained
10487 maps are supported. The name of the package refers to Teuvo Kohonen, the
10488 inventor of the SOM.")
10489 (license license:gpl2+)))
10490
10491 (define-public r-nnls
10492 (package
10493 (name "r-nnls")
10494 (version "1.4")
10495 (source
10496 (origin
10497 (method url-fetch)
10498 (uri (cran-uri "nnls" version))
10499 (sha256
10500 (base32
10501 "07vcrrxvswrvfiha6f3ikn640yg0m2b4yd9lkmim1g0jmsmpfp8f"))))
10502 (build-system r-build-system)
10503 (native-inputs `(("gfortran" ,gfortran)))
10504 (home-page "https://cran.r-project.org/web/packages/nnls")
10505 (synopsis "Lawson-Hanson algorithm for non-negative least squares")
10506 (description
10507 "This package provides an R interface to the Lawson-Hanson implementation
10508 of an algorithm for @dfn{non-negative least squares} (NNLS). It also allows
10509 the combination of non-negative and non-positive constraints.")
10510 (license license:gpl2+)))
10511
10512 (define-public r-iso
10513 (package
10514 (name "r-iso")
10515 (version "0.0-18")
10516 (source
10517 (origin
10518 (method url-fetch)
10519 (uri (cran-uri "Iso" version))
10520 (sha256
10521 (base32
10522 "014mm5b1f7i6nwlz3kyg1biph0y542kcx5bd13p68cv5a928qzid"))))
10523 (properties `((upstream-name . "Iso")))
10524 (build-system r-build-system)
10525 (native-inputs `(("gfortran" ,gfortran)))
10526 (home-page "https://www.stat.auckland.ac.nz/~rolf/")
10527 (synopsis "Functions to perform isotonic regression")
10528 (description
10529 "This package provides support for linear order and unimodal
10530 order (univariate) isotonic regression and bivariate isotonic regression with
10531 linear order on both variables.")
10532 (license license:gpl2+)))
10533
10534 (define-public r-chemometricswithr
10535 (package
10536 (name "r-chemometricswithr")
10537 (version "0.1.13")
10538 (source
10539 (origin
10540 (method url-fetch)
10541 (uri (cran-uri "ChemometricsWithR" version))
10542 (sha256
10543 (base32
10544 "166va1g3m1wv21qkmw4wpz0bsrclh3jih8smxphdc13l9pqgclpq"))))
10545 (properties
10546 `((upstream-name . "ChemometricsWithR")))
10547 (build-system r-build-system)
10548 (propagated-inputs
10549 `(("r-devtools" ,r-devtools)
10550 ("r-kohonen" ,r-kohonen)
10551 ("r-mass" ,r-mass)
10552 ("r-pls" ,r-pls)))
10553 (home-page "https://github.com/rwehrens/CWR")
10554 (synopsis "Chemometrics with R")
10555 (description
10556 "This package provides functions and scripts used in the book
10557 \"Chemometrics with R - Multivariate Data Analysis in the Natural Sciences and
10558 Life Sciences\" by Ron Wehrens, Springer (2011).")
10559 (license license:gpl2+)))
10560
10561 (define-public r-als
10562 (package
10563 (name "r-als")
10564 (version "0.0.6")
10565 (source
10566 (origin
10567 (method url-fetch)
10568 (uri (cran-uri "ALS" version))
10569 (sha256
10570 (base32
10571 "1swrn39vy50fazkpf97r7c542gkj6mlvy8gmcxllg7mf2mqx546a"))))
10572 (properties `((upstream-name . "ALS")))
10573 (build-system r-build-system)
10574 (propagated-inputs
10575 `(("r-iso" ,r-iso)
10576 ("r-nnls" ,r-nnls)))
10577 (home-page "https://cran.r-project.org/web/packages/ALS")
10578 (synopsis "Multivariate curve resolution alternating least squares")
10579 (description
10580 "Alternating least squares is often used to resolve components
10581 contributing to data with a bilinear structure; the basic technique may be
10582 extended to alternating constrained least squares. This package provides an
10583 implementation of @dfn{multivariate curve resolution alternating least
10584 squares} (MCR-ALS).
10585
10586 Commonly applied constraints include unimodality, non-negativity, and
10587 normalization of components. Several data matrices may be decomposed
10588 simultaneously by assuming that one of the two matrices in the bilinear
10589 decomposition is shared between datasets.")
10590 (license license:gpl2+)))
10591
10592 (define-public r-strucchange
10593 (package
10594 (name "r-strucchange")
10595 (version "1.5-2")
10596 (source
10597 (origin
10598 (method url-fetch)
10599 (uri (cran-uri "strucchange" version))
10600 (sha256
10601 (base32
10602 "1y022363a4pp0mnji91sjh1qiyspkh09sybqwj03r9pmwrd7q93x"))))
10603 (build-system r-build-system)
10604 (propagated-inputs
10605 `(("r-sandwich" ,r-sandwich)
10606 ("r-zoo" ,r-zoo)))
10607 (home-page "https://cran.r-project.org/web/packages/strucchange")
10608 (synopsis "Testing, monitoring, and dating structural changes")
10609 (description
10610 "This package provides tools for testing, monitoring and dating
10611 structural changes in (linear) regression models. It features tests/methods
10612 from the generalized fluctuation test framework as well as from the F
10613 test (Chow test) framework. This includes methods to fit, plot and test
10614 fluctuation processes (e.g., CUSUM, MOSUM, recursive/moving estimates) and F
10615 statistics, respectively. It is possible to monitor incoming data online
10616 using fluctuation processes. Finally, the breakpoints in regression models
10617 with structural changes can be estimated together with confidence intervals.
10618 Emphasis is always given to methods for visualizing the data.")
10619 ;; Either of these two GPL versions
10620 (license (list license:gpl2 license:gpl3))))
10621
10622 (define-public r-pixmap
10623 (package
10624 (name "r-pixmap")
10625 (version "0.4-11")
10626 (source
10627 (origin
10628 (method url-fetch)
10629 (uri (cran-uri "pixmap" version))
10630 (sha256
10631 (base32
10632 "04klxp6jndw1bp6z40v20fbmdmdpfca2g0czmmmgbkark9s1183g"))))
10633 (build-system r-build-system)
10634 (home-page "https://cran.r-project.org/web/packages/pixmap")
10635 (synopsis "Tools for bitmap images")
10636 (description
10637 "This package provides functions for importing, exporting, plotting and
10638 other manipulations of bitmapped images.")
10639 (license license:gpl2)))
10640
10641 (define-public r-rapidjsonr
10642 (package
10643 (name "r-rapidjsonr")
10644 (version "1.2.0")
10645 (source
10646 (origin
10647 (method url-fetch)
10648 (uri (cran-uri "rapidjsonr" version))
10649 (sha256
10650 (base32
10651 "07zdirhbzmvq3cp4xn8ngk1lgxbbabzays315zxbs3sxrz6lzjb2"))))
10652 (build-system r-build-system)
10653 (home-page "https://cran.r-project.org/web/packages/rapidjsonr")
10654 (synopsis "JSON parser")
10655 (description
10656 "This package provides JSON parsing capability through the Rapidjson
10657 library.")
10658 (license license:expat)))
10659
10660 (define-public r-ontologyindex
10661 (package
10662 (name "r-ontologyindex")
10663 (version "2.5")
10664 (source
10665 (origin
10666 (method url-fetch)
10667 (uri (cran-uri "ontologyIndex" version))
10668 (sha256
10669 (base32
10670 "127hlf0z5fmbgnq4p9h8nvn6p72d2fpcn846zzb99s213421jnry"))))
10671 (properties `((upstream-name . "ontologyIndex")))
10672 (build-system r-build-system)
10673 (home-page "https://cran.r-project.org/web/packages/ontologyIndex")
10674 (synopsis "Functions for processing ontologies in R")
10675 (description
10676 "This package provides functions for reading ontologies into R as lists
10677 and manipulating sets of ontological terms.")
10678 (license license:gpl2+)))
10679
10680 (define-public r-gargle
10681 (package
10682 (name "r-gargle")
10683 (version "0.4.0")
10684 (source
10685 (origin
10686 (method url-fetch)
10687 (uri (cran-uri "gargle" version))
10688 (sha256
10689 (base32
10690 "08zhfk2sl342w35i5n2c93ayypg3z0kbl0020l3y9adqka1vazgx"))))
10691 (build-system r-build-system)
10692 (propagated-inputs
10693 `(("r-fs" ,r-fs)
10694 ("r-glue" ,r-glue)
10695 ("r-httr" ,r-httr)
10696 ("r-jsonlite" ,r-jsonlite)
10697 ("r-rlang" ,r-rlang)
10698 ("r-withr" ,r-withr)))
10699 (home-page "https://gargle.r-lib.org")
10700 (synopsis "Utilities for working with Google APIs")
10701 (description
10702 "This package provides utilities for working with Google APIs. This
10703 includes functions and classes for handling common credential types and for
10704 preparing, executing, and processing HTTP requests.")
10705 (license license:expat)))
10706
10707 (define-public r-bigrquery
10708 (package
10709 (name "r-bigrquery")
10710 (version "1.2.0")
10711 (source
10712 (origin
10713 (method url-fetch)
10714 (uri (cran-uri "bigrquery" version))
10715 (sha256
10716 (base32
10717 "1ggh2gngr5x0g6y7d55y6kvn94anf7qi1bkc28cjmw61hxjq38fb"))))
10718 (build-system r-build-system)
10719 (propagated-inputs
10720 `(("r-assertthat" ,r-assertthat)
10721 ("r-bit64" ,r-bit64)
10722 ("r-curl" ,r-curl)
10723 ("r-dbi" ,r-dbi)
10724 ("r-gargle" ,r-gargle)
10725 ("r-glue" ,r-glue)
10726 ("r-httr" ,r-httr)
10727 ("r-jsonlite" ,r-jsonlite)
10728 ("r-prettyunits" ,r-prettyunits)
10729 ("r-progress" ,r-progress)
10730 ("r-rapidjsonr" ,r-rapidjsonr)
10731 ("r-rcpp" ,r-rcpp)
10732 ("r-rlang" ,r-rlang)
10733 ("r-tibble" ,r-tibble)))
10734 (home-page "https://github.com/rstats-db/bigrquery")
10735 (synopsis "R interface to Google's BigQuery API")
10736 (description
10737 "This package provides an R interface to Google's BigQuery database.")
10738 (license license:gpl3)))
10739
10740 (define-public r-gmp
10741 (package
10742 (name "r-gmp")
10743 (version "0.5-13.6")
10744 (source
10745 (origin
10746 (method url-fetch)
10747 (uri (cran-uri "gmp" version))
10748 (sha256
10749 (base32
10750 "0j2sz2nw41y9306rl1b8hbn0spz7453z5iawcq0bvslyrhc1d9ir"))))
10751 (build-system r-build-system)
10752 (arguments
10753 '(#:phases
10754 (modify-phases %standard-phases
10755 (add-after 'unpack 'set-CC
10756 (lambda _ (setenv "CC" "gcc") #t)))))
10757 (inputs `(("gmp" ,gmp)))
10758 (home-page "https://cran.r-project.org/web/packages/gmp")
10759 (synopsis "Multiple precision arithmetic")
10760 (description
10761 "This package supports multiple precision arithmetic (big integers and
10762 rationals, prime number tests, matrix computation), \"arithmetic without
10763 limitations\" using the GNU Multiple Precision library.")
10764 ;; Any version of the GPL.
10765 (license license:gpl3+)))
10766
10767 (define-public r-rmpfr
10768 (package
10769 (name "r-rmpfr")
10770 (version "0.8-1")
10771 (source
10772 (origin
10773 (method url-fetch)
10774 (uri (cran-uri "Rmpfr" version))
10775 (sha256
10776 (base32
10777 "09kw7hyca8xc09r2d88qj81cclar8acaq5q9q5rw9f49iffda0rr"))))
10778 (properties `((upstream-name . "Rmpfr")))
10779 (build-system r-build-system)
10780 (inputs
10781 `(("mpfr" ,mpfr)
10782 ("gmp" ,gmp)))
10783 (propagated-inputs
10784 `(("r-gmp" ,r-gmp)))
10785 (native-inputs
10786 `(("pkg-config" ,pkg-config)))
10787 (home-page "http://rmpfr.r-forge.r-project.org/")
10788 (synopsis "R bindings to the MPFR library")
10789 (description
10790 "This package supports arithmetic (via S4 classes and methods) for
10791 arbitrary precision floating point numbers, including transcendental
10792 functions. To this end, the package interfaces with the @dfn{Multiple
10793 Precision Floating-Point Reliable} (MPFR) library.")
10794 (license license:gpl2+)))
10795
10796 (define-public r-assertive-base
10797 (package
10798 (name "r-assertive-base")
10799 (version "0.0-7")
10800 (source
10801 (origin
10802 (method url-fetch)
10803 (uri (cran-uri "assertive.base" version))
10804 (sha256
10805 (base32
10806 "1xs3ysvj0z57c58jw57pckq2rynia6ks4rmjmc02alczhk54wbgh"))))
10807 (properties
10808 `((upstream-name . "assertive.base")))
10809 (build-system r-build-system)
10810 (home-page "https://bitbucket.org/richierocks/assertive.base")
10811 (synopsis "Core of the assertive package")
10812 (description
10813 "This package provides a minimal set of predicates and assertions used by
10814 the assertive package. This is mainly for use by other package developers who
10815 want to include run-time testing features in their own packages.")
10816 (license license:gpl3+)))
10817
10818 (define-public r-assertive-properties
10819 (package
10820 (name "r-assertive-properties")
10821 (version "0.0-4")
10822 (source
10823 (origin
10824 (method url-fetch)
10825 (uri (cran-uri "assertive.properties" version))
10826 (sha256
10827 (base32
10828 "0sqs54acs9qk9kvm32rxzfbzxz1l8mjahpfnw7r30z2brgz661jw"))))
10829 (properties
10830 `((upstream-name . "assertive.properties")))
10831 (build-system r-build-system)
10832 (propagated-inputs
10833 `(("r-assertive-base" ,r-assertive-base)))
10834 (home-page "https://bitbucket.org/richierocks/assertive.properties")
10835 (synopsis "Assertions to check properties of variables")
10836 (description
10837 "This package provides a set of predicates and assertions for checking
10838 the properties of variables, such as length, names and attributes. This is
10839 mainly for use by other package developers who want to include run-time
10840 testing features in their own packages.")
10841 (license license:gpl3+)))
10842
10843 (define-public r-assertive-numbers
10844 (package
10845 (name "r-assertive-numbers")
10846 (version "0.0-2")
10847 (source
10848 (origin
10849 (method url-fetch)
10850 (uri (cran-uri "assertive.numbers" version))
10851 (sha256
10852 (base32
10853 "0jc3ss64j4m7bjydhagwwmka5n7c72vpw4kfcch0m5jvkq5qrqds"))))
10854 (properties
10855 `((upstream-name . "assertive.numbers")))
10856 (build-system r-build-system)
10857 (propagated-inputs
10858 `(("r-assertive-base" ,r-assertive-base)))
10859 (home-page "https://bitbucket.org/richierocks/assertive.numbers")
10860 (synopsis "Assertions to check properties of numbers")
10861 (description
10862 "This package provides a set of predicates and assertions for checking
10863 the properties of numbers. This is mainly for use by other package developers
10864 who want to include run-time testing features in their own packages.")
10865 (license license:gpl3+)))
10866
10867 (define-public r-assertive-sets
10868 (package
10869 (name "r-assertive-sets")
10870 (version "0.0-3")
10871 (source
10872 (origin
10873 (method url-fetch)
10874 (uri (cran-uri "assertive.sets" version))
10875 (sha256
10876 (base32
10877 "1cqvh2syvh5b6d85h601zjmsdbbf3h8q98ids4dfl4frdshpasc7"))))
10878 (properties
10879 `((upstream-name . "assertive.sets")))
10880 (build-system r-build-system)
10881 (propagated-inputs
10882 `(("r-assertive-base" ,r-assertive-base)))
10883 (home-page "https://bitbucket.org/richierocks/assertive.sets")
10884 (synopsis "Assertions to check properties of sets")
10885 (description
10886 "This package provides a set of predicates and assertions for checking
10887 the properties of sets. This is mainly for use by other package developers
10888 who want to include run-time testing features in their own packages.")
10889 (license license:gpl3+)))
10890
10891 (define-public r-assertive-matrices
10892 (package
10893 (name "r-assertive-matrices")
10894 (version "0.0-2")
10895 (source
10896 (origin
10897 (method url-fetch)
10898 (uri (cran-uri "assertive.matrices" version))
10899 (sha256
10900 (base32
10901 "16sykzcndv6y2d43x6v9n7m95kv76364h39kh10w4z0xw6ksfqil"))))
10902 (properties
10903 `((upstream-name . "assertive.matrices")))
10904 (build-system r-build-system)
10905 (propagated-inputs
10906 `(("r-assertive-base" ,r-assertive-base)))
10907 (home-page "https://bitbucket.org/richierocks/assertive.matrices")
10908 (synopsis "Assertions to check properties of matrices")
10909 (description
10910 "This package provides a set of predicates and assertions for checking
10911 the properties of matrices. This is mainly for use by other package
10912 developers who want to include run-time testing features in their own
10913 packages.")
10914 (license license:gpl3+)))
10915
10916 (define-public r-assertive-models
10917 (package
10918 (name "r-assertive-models")
10919 (version "0.0-2")
10920 (source
10921 (origin
10922 (method url-fetch)
10923 (uri (cran-uri "assertive.models" version))
10924 (sha256
10925 (base32
10926 "0bn4j4v5qvb2d672cgri61p8d9v258pmz35y3lvm6b9mdxwdi9mr"))))
10927 (properties
10928 `((upstream-name . "assertive.models")))
10929 (build-system r-build-system)
10930 (propagated-inputs
10931 `(("r-assertive-base" ,r-assertive-base)))
10932 (home-page "https://bitbucket.org/richierocks/assertive.models")
10933 (synopsis "Assertions to check properties of models")
10934 (description
10935 "This package provides a set of predicates and assertions for checking
10936 the properties of models. This is mainly for use by other package developers
10937 who want to include run-time testing features in their own packages.")
10938 (license license:gpl3+)))
10939
10940 (define-public r-assertive-reflection
10941 (package
10942 (name "r-assertive-reflection")
10943 (version "0.0-4")
10944 (source
10945 (origin
10946 (method url-fetch)
10947 (uri (cran-uri "assertive.reflection" version))
10948 (sha256
10949 (base32
10950 "19zmsbn00crfqm0kwd9ys5gv87xs3gi6wmlikrz9xiwzm7hp4dhj"))))
10951 (properties
10952 `((upstream-name . "assertive.reflection")))
10953 (build-system r-build-system)
10954 (propagated-inputs
10955 `(("r-assertive-base" ,r-assertive-base)))
10956 (home-page "https://bitbucket.org/richierocks/assertive.reflection")
10957 (synopsis "Assertions for checking the state of R")
10958 (description
10959 "This package provides a set of predicates and assertions for checking
10960 the state and capabilities of R, the operating system it is running on, and
10961 the IDE being used. This is mainly for use by other package developers who
10962 want to include run-time testing features in their own packages.")
10963 (license license:gpl3+)))
10964
10965 (define-public r-assertive-types
10966 (package
10967 (name "r-assertive-types")
10968 (version "0.0-3")
10969 (source
10970 (origin
10971 (method url-fetch)
10972 (uri (cran-uri "assertive.types" version))
10973 (sha256
10974 (base32
10975 "0zxq1jfrzgw95ll7alvm0xnk7aihjdksngq4ya2whyvfjbmv4vdb"))))
10976 (properties
10977 `((upstream-name . "assertive.types")))
10978 (build-system r-build-system)
10979 (propagated-inputs
10980 `(("r-assertive-base" ,r-assertive-base)
10981 ("r-assertive-properties" ,r-assertive-properties)
10982 ("r-codetools" ,r-codetools)))
10983 (home-page "https://bitbucket.org/richierocks/assertive.types")
10984 (synopsis "Assertions to check types of variables")
10985 (description
10986 "This package provides a set of predicates and assertions for checking
10987 the types of variables. This is mainly for use by other package developers
10988 who want to include run-time testing features in their own packages.")
10989 (license license:gpl3+)))
10990
10991 (define-public r-assertive-files
10992 (package
10993 (name "r-assertive-files")
10994 (version "0.0-2")
10995 (source
10996 (origin
10997 (method url-fetch)
10998 (uri (cran-uri "assertive.files" version))
10999 (sha256
11000 (base32
11001 "02pfz8j5vwcj5kl6zca46894li7lxwnlrr29j922f14ay6kdssmy"))))
11002 (properties
11003 `((upstream-name . "assertive.files")))
11004 (build-system r-build-system)
11005 (propagated-inputs
11006 `(("r-assertive-base" ,r-assertive-base)
11007 ("r-assertive-numbers" ,r-assertive-numbers)))
11008 (home-page "https://bitbucket.org/richierocks/assertive.files")
11009 (synopsis "Assertions to check properties of files")
11010 (description
11011 "This package provides a set of predicates and assertions for checking
11012 the properties of files and connections. This is mainly for use by other
11013 package developers who want to include run-time testing features in their own
11014 packages.")
11015 (license license:gpl3+)))
11016
11017 (define-public r-assertive-code
11018 (package
11019 (name "r-assertive-code")
11020 (version "0.0-3")
11021 (source
11022 (origin
11023 (method url-fetch)
11024 (uri (cran-uri "assertive.code" version))
11025 (sha256
11026 (base32
11027 "1qhbp668zfvhqs8avkhg9amp4zyazz6dsy4fc6kpdmw3sv8yi07g"))))
11028 (properties
11029 `((upstream-name . "assertive.code")))
11030 (build-system r-build-system)
11031 (propagated-inputs
11032 `(("r-assertive-base" ,r-assertive-base)
11033 ("r-assertive-properties" ,r-assertive-properties)
11034 ("r-assertive-types" ,r-assertive-types)))
11035 (home-page "https://bitbucket.org/richierocks/assertive.code")
11036 (synopsis "Assertions to check properties of code")
11037 (description
11038 "This package provides a set of predicates and assertions for checking
11039 the properties of code. This is mainly for use by other package developers
11040 who want to include run-time testing features in their own packages.")
11041 (license license:gpl3+)))
11042
11043 (define-public r-assertive-datetimes
11044 (package
11045 (name "r-assertive-datetimes")
11046 (version "0.0-2")
11047 (source
11048 (origin
11049 (method url-fetch)
11050 (uri (cran-uri "assertive.datetimes" version))
11051 (sha256
11052 (base32
11053 "00a98fx8p3pr3ckayh8wmxmm4rz01s67wah9697m92yci6pv3m78"))))
11054 (properties
11055 `((upstream-name . "assertive.datetimes")))
11056 (build-system r-build-system)
11057 (propagated-inputs
11058 `(("r-assertive-base" ,r-assertive-base)
11059 ("r-assertive-types" ,r-assertive-types)))
11060 (home-page "https://bitbucket.org/richierocks/assertive.datetimes")
11061 (synopsis "Assertions to check properties of dates and times")
11062 (description
11063 "This package provides a set of predicates and assertions for checking
11064 the properties of dates and times. This is mainly for use by other package
11065 developers who want to include run-time testing features in their own
11066 packages.")
11067 (license license:gpl3+)))
11068
11069 (define-public r-assertive-strings
11070 (package
11071 (name "r-assertive-strings")
11072 (version "0.0-3")
11073 (source
11074 (origin
11075 (method url-fetch)
11076 (uri (cran-uri "assertive.strings" version))
11077 (sha256
11078 (base32
11079 "0n6jrk88670g4ym0r8ii40a08a90z1xadj8wcryk8h0nl04dchfm"))))
11080 (properties
11081 `((upstream-name . "assertive.strings")))
11082 (build-system r-build-system)
11083 (propagated-inputs
11084 `(("r-assertive-base" ,r-assertive-base)
11085 ("r-assertive-types" ,r-assertive-types)
11086 ("r-stringi" ,r-stringi)))
11087 (home-page "https://bitbucket.org/richierocks/assertive.strings")
11088 (synopsis "Assertions to check properties of strings")
11089 (description
11090 "This package provides a set of predicates and assertions for checking
11091 the properties of strings. This is mainly for use by other package developers
11092 who want to include run-time testing features in their own packages.")
11093 (license license:gpl3+)))
11094
11095 (define-public r-assertive-data-us
11096 (package
11097 (name "r-assertive-data-us")
11098 (version "0.0-2")
11099 (source
11100 (origin
11101 (method url-fetch)
11102 (uri (cran-uri "assertive.data.us" version))
11103 (sha256
11104 (base32
11105 "1bgspn0sccmp9z7s7djvdvprgxlyc5vrxznp4zfjb79kwvgn83hq"))))
11106 (properties
11107 `((upstream-name . "assertive.data.us")))
11108 (build-system r-build-system)
11109 (propagated-inputs
11110 `(("r-assertive-base" ,r-assertive-base)
11111 ("r-assertive-strings" ,r-assertive-strings)))
11112 (home-page "https://bitbucket.org/richierocks/assertive.data.us")
11113 (synopsis "Assertions to check properties of strings")
11114 (description
11115 "This package provides a set of predicates and assertions for checking
11116 the properties of US-specific complex data types. This is mainly for use by
11117 other package developers who want to include run-time testing features in
11118 their own packages.")
11119 (license license:gpl3+)))
11120
11121 (define-public r-assertive-data-uk
11122 (package
11123 (name "r-assertive-data-uk")
11124 (version "0.0-2")
11125 (source
11126 (origin
11127 (method url-fetch)
11128 (uri (cran-uri "assertive.data.uk" version))
11129 (sha256
11130 (base32
11131 "1fzjvhwp7mwkqqix29khvs6zcrc82n6j4czvzzb473vyjyvdlj5b"))))
11132 (properties
11133 `((upstream-name . "assertive.data.uk")))
11134 (build-system r-build-system)
11135 (propagated-inputs
11136 `(("r-assertive-base" ,r-assertive-base)
11137 ("r-assertive-strings" ,r-assertive-strings)))
11138 (home-page "https://bitbucket.org/richierocks/assertive.data.uk")
11139 (synopsis "Assertions to check properties of strings")
11140 (description
11141 "This package provides a set of predicates and assertions for checking
11142 the properties of UK-specific complex data types. This is mainly for use by
11143 other package developers who want to include run-time testing features in
11144 their own packages.")
11145 (license license:gpl3+)))
11146
11147 (define-public r-assertive-data
11148 (package
11149 (name "r-assertive-data")
11150 (version "0.0-3")
11151 (source
11152 (origin
11153 (method url-fetch)
11154 (uri (cran-uri "assertive.data" version))
11155 (sha256
11156 (base32
11157 "00cvg2g36mdl8plrzx40m63qd55742mddqrchwy9n3c7mm4gn02s"))))
11158 (properties
11159 `((upstream-name . "assertive.data")))
11160 (build-system r-build-system)
11161 (propagated-inputs
11162 `(("r-assertive-base" ,r-assertive-base)
11163 ("r-assertive-strings" ,r-assertive-strings)))
11164 (home-page "https://bitbucket.org/richierocks/assertive.data")
11165 (synopsis "Assertions to check properties of data")
11166 (description
11167 "This package provides a set of predicates and assertions for checking
11168 the properties of (country independent) complex data types. This is mainly
11169 for use by other package developers who want to include run-time testing
11170 features in their own packages.")
11171 (license license:gpl3+)))
11172
11173 (define-public r-assertive
11174 (package
11175 (name "r-assertive")
11176 (version "0.3-5")
11177 (source
11178 (origin
11179 (method url-fetch)
11180 (uri (cran-uri "assertive" version))
11181 (sha256
11182 (base32
11183 "0blbbhlxcb5ffdxqxi62xs33ljiawh6s22a0pyvbbh79jf46rzr3"))))
11184 (build-system r-build-system)
11185 (propagated-inputs
11186 `(("r-assertive-base" ,r-assertive-base)
11187 ("r-assertive-code" ,r-assertive-code)
11188 ("r-assertive-data" ,r-assertive-data)
11189 ("r-assertive-data-uk" ,r-assertive-data-uk)
11190 ("r-assertive-data-us" ,r-assertive-data-us)
11191 ("r-assertive-datetimes" ,r-assertive-datetimes)
11192 ("r-assertive-files" ,r-assertive-files)
11193 ("r-assertive-matrices" ,r-assertive-matrices)
11194 ("r-assertive-models" ,r-assertive-models)
11195 ("r-assertive-numbers" ,r-assertive-numbers)
11196 ("r-assertive-properties" ,r-assertive-properties)
11197 ("r-assertive-reflection" ,r-assertive-reflection)
11198 ("r-assertive-sets" ,r-assertive-sets)
11199 ("r-assertive-strings" ,r-assertive-strings)
11200 ("r-assertive-types" ,r-assertive-types)
11201 ("r-knitr" ,r-knitr)))
11202 (home-page "https://bitbucket.org/richierocks/assertive")
11203 (synopsis "Readable check functions to ensure code integrity")
11204 (description
11205 "This package provides lots of predicates (@code{is_*} functions) to
11206 check the state of your variables, and assertions (@code{assert_*} functions)
11207 to throw errors if they aren't in the right form.")
11208 (license license:gpl3+)))
11209
11210 (define-public r-dotcall64
11211 (package
11212 (name "r-dotcall64")
11213 (version "1.0-0")
11214 (source
11215 (origin
11216 (method url-fetch)
11217 (uri (cran-uri "dotCall64" version))
11218 (sha256
11219 (base32
11220 "1b8p7m3w0m7bp977c6jz74xkd611cxg11j49yza59k5fp338scb9"))))
11221 (properties `((upstream-name . "dotCall64")))
11222 (build-system r-build-system)
11223 (native-inputs `(("gfortran" ,gfortran)))
11224 (home-page "https://git.math.uzh.ch/reinhard.furrer/dotCall64")
11225 (synopsis "Enhanced foreign function interface supporting long vectors")
11226 (description
11227 "This package provides @code{.C64()}, an enhanced version of @code{.C()}
11228 and @code{.Fortran()} from the R foreign function interface. @code{.C64()}
11229 supports long vectors, arguments of type 64-bit integer, and provides a
11230 mechanism to avoid unnecessary copies of read-only and write-only arguments.
11231 This makes it a convenient and fast interface to C/C++ and Fortran code.")
11232 (license license:gpl2+)))
11233
11234 (define-public r-spam
11235 (package
11236 (name "r-spam")
11237 (version "2.5-1")
11238 (source
11239 (origin
11240 (method url-fetch)
11241 (uri (cran-uri "spam" version))
11242 (sha256
11243 (base32 "0ry0a76cljlmilrzcriiizcidxyhq1i7i9bqhvl1qda81ld8hifi"))))
11244 (build-system r-build-system)
11245 (propagated-inputs
11246 `(("r-dotcall64" ,r-dotcall64)))
11247 (native-inputs `(("gfortran" ,gfortran)))
11248 (home-page "https://www.math.uzh.ch/pages/spam/")
11249 (synopsis "Sparse matrix algebra")
11250 (description
11251 "This package provides a set of functions for sparse matrix algebra.
11252 Differences with other sparse matrix packages are:
11253
11254 @enumerate
11255 @item it only supports (essentially) one sparse matrix format;
11256 @item it is based on transparent and simple structure(s);
11257 @item it is tailored for MCMC calculations within G(M)RF;
11258 @item and it is fast and scalable (with the extension package @code{spam64}).
11259 @end enumerate\n")
11260 ;; Either of these licenses
11261 (license (list license:bsd-3 license:lgpl2.0))))
11262
11263 (define-public r-fields
11264 (package
11265 (name "r-fields")
11266 (version "10.3")
11267 (source
11268 (origin
11269 (method url-fetch)
11270 (uri (cran-uri "fields" version))
11271 (sha256
11272 (base32 "12k97vfjlz5h8vynirnvik1nyj1iw25n8xl7awmx9mpd6wvgy2s9"))))
11273 (build-system r-build-system)
11274 (propagated-inputs
11275 `(("r-maps" ,r-maps)
11276 ("r-spam" ,r-spam)))
11277 (native-inputs
11278 `(("gfortran" ,gfortran)))
11279 (home-page "https://www.image.ucar.edu/fields")
11280 (synopsis "Tools for spatial data")
11281 (description
11282 "This is a package for curve, surface and function fitting with an
11283 emphasis on splines, spatial data and spatial statistics. The major methods
11284 include cubic, and thin plate splines, Kriging, and compactly supported
11285 covariance functions for large data sets.")
11286 (license license:gpl2+)))
11287
11288 (define-public r-spatialextremes
11289 (package
11290 (name "r-spatialextremes")
11291 (version "2.0-8")
11292 (source
11293 (origin
11294 (method url-fetch)
11295 (uri (cran-uri "SpatialExtremes" version))
11296 (sha256
11297 (base32
11298 "0r2byz5xxc46zqnigdax28q7446ibmzmsmi10lmm2hdks3ml6sl3"))))
11299 (properties
11300 `((upstream-name . "SpatialExtremes")))
11301 (build-system r-build-system)
11302 (propagated-inputs
11303 `(("r-fields" ,r-fields)
11304 ("r-maps" ,r-maps)))
11305 (home-page "http://spatialextremes.r-forge.r-project.org/")
11306 (synopsis "Modelling spatial extremes")
11307 (description
11308 "This package provides tools for the statistical modelling of spatial
11309 extremes using max-stable processes, copula or Bayesian hierarchical models.
11310 More precisely, this package allows (conditional) simulations from various
11311 parametric max-stable models, analysis of the extremal spatial dependence, the
11312 fitting of such processes using composite likelihoods or least square (simple
11313 max-stable processes only), model checking and selection and prediction.")
11314 (license license:gpl2+)))
11315
11316 (define-public r-drc
11317 (package
11318 (name "r-drc")
11319 (version "3.0-1")
11320 (source
11321 (origin
11322 (method url-fetch)
11323 (uri (cran-uri "drc" version))
11324 (sha256
11325 (base32
11326 "0c8xn8ripzq270hy8d16fcnx02l02alddznd7fqwk3jyi6113h1y"))))
11327 (build-system r-build-system)
11328 (propagated-inputs
11329 `(("r-car" ,r-car)
11330 ("r-gtools" ,r-gtools)
11331 ("r-mass" ,r-mass)
11332 ("r-multcomp" ,r-multcomp)
11333 ("r-plotrix" ,r-plotrix)
11334 ("r-scales" ,r-scales)))
11335 (home-page "https://cran.r-project.org/web/packages/drc")
11336 (synopsis "Analysis of dose-response curves")
11337 (description
11338 "This package provides a suite of flexible and versatile model fitting
11339 and after-fitting functions for the analysis of dose-response data.")
11340 (license license:gpl2+)))
11341
11342 (define-public r-rmeta
11343 (package
11344 (name "r-rmeta")
11345 (version "3.0")
11346 (source
11347 (origin
11348 (method url-fetch)
11349 (uri (cran-uri "rmeta" version))
11350 (sha256
11351 (base32
11352 "0vkbnxp579v8zmcv1isdbzj5swpr6fq17zwparxcvzswjc2x9ydr"))))
11353 (build-system r-build-system)
11354 (home-page "https://cran.r-project.org/web/packages/rmeta")
11355 (synopsis "Tools for meta-analysis")
11356 (description
11357 "This package provides functions for simple fixed and random effects
11358 meta-analysis for two-sample comparisons and cumulative meta-analyses. It
11359 draws standard summary plots, funnel plots, and computes summaries and tests
11360 for association and heterogeneity.")
11361 (license license:gpl2)))
11362
11363 (define-public r-bootstrap
11364 (package
11365 (name "r-bootstrap")
11366 (version "2019.6")
11367 (source
11368 (origin
11369 (method url-fetch)
11370 (uri (cran-uri "bootstrap" version))
11371 (sha256
11372 (base32
11373 "1546jqhhw5h177ii8jkdikyd26rv6gwkav816np1zks4p7zgsljj"))))
11374 (build-system r-build-system)
11375 (native-inputs `(("gfortran" ,gfortran)))
11376 (home-page "https://cran.r-project.org/web/packages/bootstrap")
11377 (synopsis "Functions for the book \"An Introduction to the Bootstrap\"")
11378 (description
11379 "This package provides software and data for the book \"An Introduction
11380 to the Bootstrap\" by B. Efron and R. Tibshirani, 1993, Chapman and Hall.
11381 This package is primarily provided for projects already based on it, and for
11382 support of the book. New projects should preferentially use the recommended
11383 package \"boot\".")
11384 (license license:bsd-3)))
11385
11386 (define-public r-survivalroc
11387 (package
11388 (name "r-survivalroc")
11389 (version "1.0.3")
11390 (source
11391 (origin
11392 (method url-fetch)
11393 (uri (cran-uri "survivalROC" version))
11394 (sha256
11395 (base32
11396 "0wnd65ff5w679hxa1zrpfrx9qg47q21pjxppsga6m3h4iq1yfj8l"))))
11397 (properties `((upstream-name . "survivalROC")))
11398 (build-system r-build-system)
11399 (home-page "https://cran.r-project.org/web/packages/survivalROC")
11400 (synopsis "Time-dependent ROC curve estimation from censored survival data")
11401 (description
11402 "Compute time-dependent ROC curve from censored survival data using
11403 Kaplan-Meier (KM) or Nearest Neighbor Estimation (NNE) method of Heagerty,
11404 Lumley & Pepe (Biometrics, Vol 56 No 2, 2000, PP 337-344)")
11405 (license license:gpl2+)))
11406
11407 (define-public r-longitudinal
11408 (package
11409 (name "r-longitudinal")
11410 (version "1.1.12")
11411 (source
11412 (origin
11413 (method url-fetch)
11414 (uri (cran-uri "longitudinal" version))
11415 (sha256
11416 (base32
11417 "1d83ws28nxi3kw5lgd5n5y7865djq7ky72fw3ddi1fkkhg1r9y6l"))))
11418 (build-system r-build-system)
11419 (propagated-inputs `(("r-corpcor" ,r-corpcor)))
11420 (home-page "http://strimmerlab.org/software/longitudinal/")
11421 (synopsis "Analysis of multiple time course data")
11422 (description
11423 "This package contains general data structures and functions for
11424 longitudinal data with multiple variables, repeated measurements, and
11425 irregularly spaced time points. It also implements a shrinkage estimator of
11426 dynamical correlation and dynamical covariance.")
11427 (license license:gpl3+)))
11428
11429 (define-public r-genenet
11430 (package
11431 (name "r-genenet")
11432 (version "1.2.14")
11433 (source
11434 (origin
11435 (method url-fetch)
11436 (uri (cran-uri "GeneNet" version))
11437 (sha256
11438 (base32
11439 "0cdhrj15rz0w0pyw3r8mikrzsdh95y5i1c0pa3cn0c2bjnjx3x3n"))))
11440 (properties `((upstream-name . "GeneNet")))
11441 (build-system r-build-system)
11442 (propagated-inputs
11443 `(("r-corpcor" ,r-corpcor)
11444 ("r-fdrtool" ,r-fdrtool)
11445 ("r-longitudinal" ,r-longitudinal)))
11446 (home-page "http://strimmerlab.org/software/genenet/")
11447 (synopsis "Modeling and inferring gene networks")
11448 (description
11449 "This package analyzes gene expression (time series) data with focus on
11450 the inference of gene networks. In particular, GeneNet implements the methods
11451 of Schaefer and Strimmer (2005a,b,c) and Opgen-Rhein and Strimmer (2006, 2007)
11452 for learning large-scale gene association networks (including assignment of
11453 putative directions).")
11454 (license license:gpl3+)))
11455
11456 (define-public r-rbamtools
11457 (package
11458 (name "r-rbamtools")
11459 (version "2.16.17")
11460 (source
11461 (origin
11462 (method url-fetch)
11463 (uri (cran-uri "rbamtools" version))
11464 (sha256
11465 (base32
11466 "0qj37ljdva3v29s01dkrbg31mcfzy3bl145cp40d54v4h9xhcghc"))))
11467 (build-system r-build-system)
11468 (inputs `(("zlib" ,zlib)))
11469 (propagated-inputs
11470 `(("r-refgenome" ,r-refgenome)))
11471 (home-page "https://cran.r-project.org/web/packages/rbamtools")
11472 (synopsis "Read and write BAM (binary alignment) files")
11473 (description
11474 "This package provides an R interface to functions of the SAMtools
11475 library.")
11476 (license license:artistic2.0)))
11477
11478 (define-public r-protviz
11479 (package
11480 (name "r-protviz")
11481 (version "0.6.3")
11482 (source
11483 (origin
11484 (method url-fetch)
11485 (uri (cran-uri "protViz" version))
11486 (sha256
11487 (base32
11488 "1ldciqh3f43xr9663yyhd9r6qwrg4c4vmkprlcancbnd460wakg7"))))
11489 (properties `((upstream-name . "protViz")))
11490 (build-system r-build-system)
11491 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
11492 (home-page "https://github.com/protViz/protViz/")
11493 (synopsis "Visualizing and analyzing mass spectrometry data in proteomics")
11494 (description
11495 "This package helps with quality checks, visualizations and analysis of
11496 mass spectrometry data, coming from proteomics experiments. The package is
11497 developed, tested and used at the Functional Genomics Center Zurich, where it
11498 is used mainly for prototyping, teaching, and having fun with proteomics data.
11499 But it can also be used to do data analysis for small scale data sets.")
11500 (license license:gpl3)))
11501
11502 (define-public r-cmprsk
11503 (package
11504 (name "r-cmprsk")
11505 (version "2.2-9")
11506 (source
11507 (origin
11508 (method url-fetch)
11509 (uri (cran-uri "cmprsk" version))
11510 (sha256
11511 (base32 "0xhgfg5b4i9skkaxp7gzkafgg5bqs5q1rp4hpw2jjmykg2nifn99"))))
11512 (build-system r-build-system)
11513 (propagated-inputs
11514 `(("r-survival" ,r-survival)))
11515 (native-inputs
11516 `(("gfortran" ,gfortran)))
11517 (home-page "https://cran.r-project.org/web/packages/cmprsk")
11518 (synopsis "Subdistribution analysis of competing risks")
11519 (description
11520 "This package provides tool for estimation, testing and regression
11521 modeling of subdistribution functions in competing risks, as described in
11522 Gray (1988), A class of K-sample tests for comparing the cumulative incidence
11523 of a competing risk, Ann. Stat. 16:1141-1154, and Fine JP and Gray RJ (1999),
11524 A proportional hazards model for the subdistribution of a competing risk,
11525 JASA, 94:496-509.")
11526 (license license:gpl2+)))
11527
11528 (define-public r-etm
11529 (package
11530 (name "r-etm")
11531 (version "1.0.5.1")
11532 (source
11533 (origin
11534 (method url-fetch)
11535 (uri (cran-uri "etm" version))
11536 (sha256
11537 (base32
11538 "0m41pm277sd50pharigcqzr1a2g92wnmdf6fcab6fx16ia2fzrm7"))))
11539 (build-system r-build-system)
11540 (propagated-inputs
11541 `(("r-data-table" ,r-data-table)
11542 ("r-lattice" ,r-lattice)
11543 ("r-rcpp" ,r-rcpp)
11544 ("r-rcpparmadillo" ,r-rcpparmadillo)
11545 ("r-survival" ,r-survival)))
11546 (home-page "https://cran.r-project.org/web/packages/etm")
11547 (synopsis "Empirical transition matrix")
11548 (description
11549 "The @dfn{empirical transition matrix} (etm) package estimates
11550 the matrix of transition probabilities for any time-inhomogeneous multistate
11551 model with finite state space using the Aalen-Johansen estimator.")
11552 (license license:expat)))
11553
11554 (define-public r-epi
11555 (package
11556 (name "r-epi")
11557 (version "2.40")
11558 (source
11559 (origin
11560 (method url-fetch)
11561 (uri (cran-uri "Epi" version))
11562 (sha256
11563 (base32
11564 "046y10vwks5y84pzccmrn6d4pd6qz70imvp1hw5ywp8fnwzfh4g5"))))
11565 (properties `((upstream-name . "Epi")))
11566 (build-system r-build-system)
11567 (propagated-inputs
11568 `(("r-cmprsk" ,r-cmprsk)
11569 ("r-data-table" ,r-data-table)
11570 ("r-etm" ,r-etm)
11571 ("r-mass" ,r-mass)
11572 ("r-matrix" ,r-matrix)
11573 ("r-mgcv" ,r-mgcv)
11574 ("r-numderiv" ,r-numderiv)
11575 ("r-plyr" ,r-plyr)
11576 ("r-survival" ,r-survival)
11577 ("r-zoo" ,r-zoo)))
11578 (home-page "https://BendixCarstensen.com/Epi/")
11579 (synopsis "Statistical analysis in epidemiology")
11580 (description
11581 "This package provides functions for demographic and epidemiological
11582 analysis in the Lexis diagram, i.e. register and cohort follow-up data, in
11583 particular representation, manipulation and simulation of multistate data -
11584 the Lexis suite of functions, which includes interfaces to the @code{mstate},
11585 @code{etm} and @code{cmprsk} packages. It also contains functions for
11586 Age-Period-Cohort and Lee-Carter modeling and a function for interval censored
11587 data and some useful functions for tabulation and plotting, as well as a
11588 number of epidemiological data sets.")
11589 (license license:gpl2)))
11590
11591 (define-public r-ppls
11592 (package
11593 (name "r-ppls")
11594 (version "1.6-1.1")
11595 (source
11596 (origin
11597 (method url-fetch)
11598 (uri (cran-uri "ppls" version))
11599 (sha256
11600 (base32
11601 "1zyrisy3c4cz896j1bjh61sf57wdl9p8ywdq268cl819szfq78mx"))))
11602 (build-system r-build-system)
11603 (propagated-inputs `(("r-mass" ,r-mass)))
11604 (home-page "https://cran.r-project.org/web/packages/ppls")
11605 (synopsis "Penalized partial least squares")
11606 (description
11607 "This package contains linear and nonlinear regression methods based on
11608 partial least squares and penalization techniques. Model parameters are
11609 selected via cross-validation, and confidence intervals ans tests for the
11610 regression coefficients can be conducted via jackknifing.")
11611 (license license:gpl2+)))
11612
11613 (define-public r-huge
11614 (package
11615 (name "r-huge")
11616 (version "1.3.4.1")
11617 (source
11618 (origin
11619 (method url-fetch)
11620 (uri (cran-uri "huge" version))
11621 (sha256
11622 (base32 "11m80dnaxqw5v006q6kvhndl2y5ih5553fcqg4jcaljd8sp9xvvq"))))
11623 (build-system r-build-system)
11624 (propagated-inputs
11625 `(("r-igraph" ,r-igraph)
11626 ("r-mass" ,r-mass)
11627 ("r-matrix" ,r-matrix)
11628 ("r-rcpp" ,r-rcpp)
11629 ("r-rcppeigen" ,r-rcppeigen)))
11630 (home-page "https://cran.r-project.org/web/packages/huge")
11631 (synopsis "High-dimensional undirected graph estimation")
11632 (description
11633 "This package provides a general framework for high-dimensional
11634 undirected graph estimation. It integrates data preprocessing, neighborhood
11635 screening, graph estimation, and model selection techniques into a pipeline.")
11636 (license license:gpl2)))
11637
11638 (define-public r-parcor
11639 (package
11640 (name "r-parcor")
11641 (version "0.2-6")
11642 (source
11643 (origin
11644 (method url-fetch)
11645 (uri (cran-uri "parcor" version))
11646 (sha256
11647 (base32
11648 "0vgs6k92vdr0cmb8cwbv2ff6qavw30agskfd8bfh17hsskrisvx0"))))
11649 (build-system r-build-system)
11650 (propagated-inputs
11651 `(("r-epi" ,r-epi)
11652 ("r-genenet" ,r-genenet)
11653 ("r-glmnet" ,r-glmnet)
11654 ("r-mass" ,r-mass)
11655 ("r-ppls" ,r-ppls)))
11656 (home-page "https://cran.r-project.org/web/packages/parcor")
11657 (synopsis "Regularized estimation of partial correlation matrices")
11658 (description
11659 "This package estimates the matrix of partial correlations based on
11660 different regularized regression methods: lasso, adaptive lasso, PLS, and
11661 Ridge Regression. In addition, the package provides model selection for
11662 lasso, adaptive lasso and Ridge regression based on cross-validation.")
11663 (license license:gpl2+)))
11664
11665 (define-public r-mcmc
11666 (package
11667 (name "r-mcmc")
11668 (version "0.9-7")
11669 (source
11670 (origin
11671 (method url-fetch)
11672 (uri (cran-uri "mcmc" version))
11673 (sha256
11674 (base32
11675 "0q42m8ab7b6bxhns494ksjdss5f3c5m2jjfdlfj6fk1nz7ax7i5p"))))
11676 (build-system r-build-system)
11677 (home-page "https://www.stat.umn.edu/geyer/mcmc/")
11678 (synopsis "Markov chain Monte Carlo")
11679 (description
11680 "This package simulates continuous distributions of random vectors using
11681 @dfn{Markov chain Monte Carlo} (MCMC). Users specify the distribution by an R
11682 function that evaluates the log unnormalized density. Algorithms are random
11683 walk Metropolis algorithm (function @code{metrop}), simulated
11684 tempering (function @code{temper}), and morphometric random walk
11685 Metropolis (function @code{morph.metrop}), which achieves geometric ergodicity
11686 by change of variable.")
11687 (license license:expat)))
11688
11689 (define-public r-listenv
11690 (package
11691 (name "r-listenv")
11692 (version "0.8.0")
11693 (source
11694 (origin
11695 (method url-fetch)
11696 (uri (cran-uri "listenv" version))
11697 (sha256
11698 (base32
11699 "0ps8bk7zlhbviawrw7vw25skjq81hkk3ijyi6g74dmfqy8zsyapx"))))
11700 (build-system r-build-system)
11701 (native-inputs
11702 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
11703 (home-page "https://github.com/HenrikBengtsson/listenv")
11704 (synopsis "Environments behaving (almost) as lists")
11705 (description
11706 "This package implements list environments. List environments are
11707 environments that have list-like properties. For instance, the elements of a
11708 list environment are ordered and can be accessed and iterated over using index
11709 subsetting.")
11710 (license license:lgpl2.1+)))
11711
11712 (define-public r-globals
11713 (package
11714 (name "r-globals")
11715 (version "0.12.5")
11716 (source
11717 (origin
11718 (method url-fetch)
11719 (uri (cran-uri "globals" version))
11720 (sha256
11721 (base32
11722 "1ha8iasgijp4q3v2b0b17y1wh7cd3nvzd9b03w49qm2bidkaf68m"))))
11723 (build-system r-build-system)
11724 (propagated-inputs
11725 `(("r-codetools" ,r-codetools)))
11726 (home-page "https://github.com/HenrikBengtsson/globals")
11727 (synopsis "Identify global objects in R expressions")
11728 (description
11729 "This package provides tools to identify global (\"unknown\" or \"free\")
11730 objects in R expressions by code inspection using various strategies, e.g.
11731 conservative or liberal. The objective of this package is to make it as
11732 simple as possible to identify global objects for the purpose of exporting
11733 them in distributed compute environments.")
11734 (license license:lgpl2.1+)))
11735
11736 (define-public r-future
11737 (package
11738 (name "r-future")
11739 (version "1.16.0")
11740 (source
11741 (origin
11742 (method url-fetch)
11743 (uri (cran-uri "future" version))
11744 (sha256
11745 (base32
11746 "1xaqh0b2knf5bp23mc0kriq0iqhqna31q3b7d960piqjhzrb03dm"))))
11747 (build-system r-build-system)
11748 (propagated-inputs
11749 `(("r-digest" ,r-digest)
11750 ("r-globals" ,r-globals)
11751 ("r-listenv" ,r-listenv)))
11752 (native-inputs
11753 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
11754 (home-page "https://github.com/HenrikBengtsson/future")
11755 (synopsis "Unified parallel and distributed processing in R")
11756 (description
11757 "The purpose of this package is to provide a lightweight and unified
11758 Future API for sequential and parallel processing of R expression via futures.
11759 This package implements sequential, multicore, multisession, and cluster
11760 futures. With these, R expressions can be evaluated on the local machine, in
11761 parallel a set of local machines, or distributed on a mix of local and remote
11762 machines. Extensions to this package implement additional backends for
11763 processing futures via compute cluster schedulers etc. Because of its unified
11764 API, there is no need to modify any code in order to switch from sequential on
11765 the local machine to, say, distributed processing on a remote compute cluster.")
11766 (license license:lgpl2.1+)))
11767
11768 (define-public r-future-apply
11769 (package
11770 (name "r-future-apply")
11771 (version "1.4.0")
11772 (source
11773 (origin
11774 (method url-fetch)
11775 (uri (cran-uri "future.apply" version))
11776 (sha256
11777 (base32
11778 "1kgq6dv96hdy35kysqkn606nj7s9dp4ibgpm6n46gqhc5n75lzkk"))))
11779 (properties `((upstream-name . "future.apply")))
11780 (build-system r-build-system)
11781 (propagated-inputs
11782 `(("r-future" ,r-future)
11783 ("r-globals" ,r-globals)))
11784 (native-inputs
11785 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
11786 (home-page "https://github.com/HenrikBengtsson/future.apply")
11787 (synopsis "Apply function to elements in parallel using futures")
11788 (description
11789 "This package provides implementations of @code{apply()},
11790 @code{eapply()}, @code{lapply()}, @code{Map()}, @code{mapply()},
11791 @code{replicate()}, @code{sapply()}, @code{tapply()}, and @code{vapply()} that
11792 can be resolved using any future-supported backend, e.g. parallel on the local
11793 machine or distributed on a compute cluster.")
11794 (license license:gpl2+)))
11795
11796 (define-public r-rsvd
11797 (package
11798 (name "r-rsvd")
11799 (version "1.0.3")
11800 (source
11801 (origin
11802 (method url-fetch)
11803 (uri (cran-uri "rsvd" version))
11804 (sha256
11805 (base32
11806 "1fvrw46fl5xb2akaa4mp8nja4h7nn4bdhnjdrk22fsdfqc7hwmhk"))))
11807 (build-system r-build-system)
11808 (propagated-inputs
11809 `(("r-matrix" ,r-matrix)))
11810 (home-page "https://github.com/erichson/rSVD")
11811 (synopsis "Randomized singular value decomposition")
11812 (description
11813 "Low-rank matrix decompositions are fundamental tools and widely used for
11814 data analysis, dimension reduction, and data compression. Classically, highly
11815 accurate deterministic matrix algorithms are used for this task. However, the
11816 emergence of large-scale data has severely challenged our computational
11817 ability to analyze big data. The concept of randomness has been demonstrated
11818 as an effective strategy to quickly produce approximate answers to familiar
11819 problems such as the @dfn{singular value decomposition} (SVD). This package
11820 provides several randomized matrix algorithms such as the randomized singular
11821 value decomposition (@code{rsvd}), randomized principal component
11822 analysis (@code{rpca}), randomized robust principal component
11823 analysis (@code{rrpca}), randomized interpolative decomposition (@code{rid}),
11824 and the randomized CUR decomposition (@code{rcur}). In addition several plot
11825 functions are provided.")
11826 (license license:gpl3+)))
11827
11828 (define-public r-sloop
11829 (package
11830 (name "r-sloop")
11831 (version "1.0.1")
11832 (source
11833 (origin
11834 (method url-fetch)
11835 (uri (cran-uri "sloop" version))
11836 (sha256
11837 (base32
11838 "00fk5fr5zsk2qxc1kfhmshhjxgnamm3401089sx8m2l529zd6r8j"))))
11839 (build-system r-build-system)
11840 (propagated-inputs
11841 `(("r-codetools" ,r-codetools)
11842 ("r-crayon" ,r-crayon)
11843 ("r-purrr" ,r-purrr)
11844 ("r-rlang" ,r-rlang)
11845 ("r-tibble" ,r-tibble)))
11846 (home-page "https://github.com/r-lib/sloop")
11847 (synopsis "Helpers for object-oriented programming in R")
11848 (description
11849 "This package provides a collection of helper functions designed to
11850 help you to better understand object oriented programming in R, particularly
11851 using @code{S3}.")
11852 (license license:gpl3)))
11853
11854 (define-public r-capushe
11855 (package
11856 (name "r-capushe")
11857 (version "1.1.1")
11858 (source
11859 (origin
11860 (method url-fetch)
11861 (uri (cran-uri "capushe" version))
11862 (sha256
11863 (base32
11864 "1aa76ir1kp67hiz7dr60azyc71yzslshyc640fjh0fpw0sp5kwbc"))))
11865 (build-system r-build-system)
11866 (propagated-inputs `(("r-mass" ,r-mass)))
11867 (home-page "https://cran.r-project.org/web/packages/capushe/index.html")
11868 (synopsis "Calibrating penalties using slope heuristics")
11869 (description
11870 "This package provides tools for the calibration of penalized criteria
11871 for model selection. The calibration methods available are based on the slope
11872 heuristics.")
11873 (license license:gpl2+)))
11874
11875 (define-public r-dorng
11876 (package
11877 (name "r-dorng")
11878 (version "1.8.2")
11879 (source
11880 (origin
11881 (method url-fetch)
11882 (uri (cran-uri "doRNG" version))
11883 (sha256
11884 (base32
11885 "1jff27zzrvd1fd61x2m9468h8xn3s1c9f6wibviy5zdhj5dx9s9k"))))
11886 (properties `((upstream-name . "doRNG")))
11887 (build-system r-build-system)
11888 (propagated-inputs
11889 `(("r-foreach" ,r-foreach)
11890 ("r-iterators" ,r-iterators)
11891 ("r-rngtools" ,r-rngtools)))
11892 (home-page "https://renozao.github.io/doRNG/")
11893 (synopsis "Generic reproducible parallel backend for foreach loops")
11894 (description
11895 "This package provides functions to perform reproducible parallel
11896 @code{foreach} loops, using independent random streams as generated by
11897 L'Ecuyer's combined multiple-recursive generator. It enables to easily
11898 convert standard @code{%dopar%} loops into fully reproducible loops,
11899 independently of the number of workers, the task scheduling strategy, or the
11900 chosen parallel environment and associated foreach backend.")
11901 (license license:gpl2+)))
11902
11903 (define-public r-blockmodeling
11904 (package
11905 (name "r-blockmodeling")
11906 (version "0.3.6")
11907 (source
11908 (origin
11909 (method url-fetch)
11910 (uri (cran-uri "blockmodeling" version))
11911 (sha256
11912 (base32
11913 "12paf76l3wlxad14bkxn37lw9rg6ka473m86wlcf3yhriw8kbaiz"))))
11914 (build-system r-build-system)
11915 (propagated-inputs
11916 `(("r-matrix" ,r-matrix)))
11917 (native-inputs `(("gfortran" ,gfortran)))
11918 (home-page "https://cran.r-project.org/web/packages/blockmodeling")
11919 (synopsis "Generalized and classical blockmodeling of valued networks")
11920 (description
11921 "This package is primarily meant as an implementation of generalized
11922 blockmodeling for valued networks. In addition, measures of similarity or
11923 dissimilarity based on structural equivalence and regular equivalence (REGE
11924 algorithms) can be computed and partitioned matrices can be plotted.")
11925 (license license:gpl2+)))
11926
11927 (define-public r-upsetr
11928 (package
11929 (name "r-upsetr")
11930 (version "1.4.0")
11931 (source
11932 (origin
11933 (method url-fetch)
11934 (uri (cran-uri "UpSetR" version))
11935 (sha256
11936 (base32
11937 "007i0njnjjy7vbrxabwav7a1kk2n0hn2mkvqsdzzfk10ckp5y7im"))))
11938 (properties `((upstream-name . "UpSetR")))
11939 (build-system r-build-system)
11940 (propagated-inputs
11941 `(("r-ggplot2" ,r-ggplot2)
11942 ("r-gridextra" ,r-gridextra)
11943 ("r-plyr" ,r-plyr)
11944 ("r-scales" ,r-scales)))
11945 (home-page "https://github.com/hms-dbmi/UpSetR")
11946 (synopsis "Visualize intersecting sets")
11947 (description
11948 "This package provides a more scalable alternative to Venn and Euler
11949 diagrams for visualizing intersecting sets. Create visualizations of
11950 intersecting sets using a novel matrix design, along with visualizations of
11951 several common set, element and attribute related tasks.")
11952 (license license:expat)))
11953
11954 ;; This package includes a JavaScript file, which is not minified. When
11955 ;; upgrading please check that there are no new minified JavaScript files.
11956 (define-public r-shinybs
11957 (package
11958 (name "r-shinybs")
11959 (version "0.61")
11960 (source
11961 (origin
11962 (method url-fetch)
11963 (uri (cran-uri "shinyBS" version))
11964 (sha256
11965 (base32
11966 "0rhim4mbp4x9vvm7xkmpl7mhb9qd1gr96cr4dv330v863ra2kgji"))))
11967 (properties `((upstream-name . "shinyBS")))
11968 (build-system r-build-system)
11969 ;; The tests spawn Shiny browser apps. They cannot be run
11970 ;; non-interactively.
11971 (arguments '(#:tests? #f))
11972 (propagated-inputs
11973 `(("r-htmltools" ,r-htmltools)
11974 ("r-shiny" ,r-shiny)))
11975 (home-page "https://ebailey78.github.io/shinyBS/")
11976 (synopsis "Twitter Bootstrap components for Shiny")
11977 (description
11978 "This package adds additional Twitter Bootstrap components to Shiny.")
11979 (license license:gpl3)))
11980
11981 (define-public r-outliers
11982 (package
11983 (name "r-outliers")
11984 (version "0.14")
11985 (source
11986 (origin
11987 (method url-fetch)
11988 (uri (cran-uri "outliers" version))
11989 (sha256
11990 (base32
11991 "0vcqfqmmv4yblyp3s6bd25r49pxb7hjzipiic5a82924nqfqzkmn"))))
11992 (build-system r-build-system)
11993 (home-page "https://cran.r-project.org/web/packages/outliers/index.html")
11994 (synopsis "Tests for outliers")
11995 (description
11996 "This package provides a collection of some tests commonly used for
11997 identifying outliers.")
11998 (license license:gpl2+)))
11999
12000 (define-public r-bayesm
12001 (package
12002 (name "r-bayesm")
12003 (version "3.1-4")
12004 (source
12005 (origin
12006 (method url-fetch)
12007 (uri (cran-uri "bayesm" version))
12008 (sha256
12009 (base32 "154glks7rsjkza0sfi1kj7wj727py9sl1ba6sswflwmwc9n226q6"))))
12010 (build-system r-build-system)
12011 (propagated-inputs
12012 `(("r-rcpp" ,r-rcpp)
12013 ("r-rcpparmadillo" ,r-rcpparmadillo)))
12014 (home-page "http://www.perossi.org/home/bsm-1")
12015 (synopsis "Bayesian inference for marketing/micro-econometrics")
12016 (description
12017 "This package covers many important models used in marketing and
12018 micro-econometrics applications, including Bayes Regression (univariate or
12019 multivariate dep var), Bayes Seemingly Unrelated Regression (SUR), Binary and
12020 Ordinal Probit, Multinomial Logit (MNL) and Multinomial Probit (MNP),
12021 Multivariate Probit, Negative Binomial (Poisson) Regression, Multivariate
12022 Mixtures of Normals (including clustering), Dirichlet Process Prior Density
12023 Estimation with normal base, Hierarchical Linear Models with normal prior and
12024 covariates, Hierarchical Linear Models with a mixture of normals prior and
12025 covariates, Hierarchical Multinomial Logits with a mixture of normals prior
12026 and covariates, Hierarchical Multinomial Logits with a Dirichlet Process prior
12027 and covariates, Hierarchical Negative Binomial Regression Models, Bayesian
12028 analysis of choice-based conjoint data, Bayesian treatment of linear
12029 instrumental variables models, Analysis of Multivariate Ordinal survey data
12030 with scale usage heterogeneity, and Bayesian Analysis of Aggregate Random
12031 Coefficient Logit Models.")
12032 (license license:gpl2+)))
12033
12034 (define-public r-tensora
12035 (package
12036 (name "r-tensora")
12037 (version "0.36.1")
12038 (source
12039 (origin
12040 (method url-fetch)
12041 (uri (cran-uri "tensorA" version))
12042 (sha256
12043 (base32
12044 "176hjy3bvg3in62r97wxbhq187sjz6c1gwy9x6spaxl6k4my3zy7"))))
12045 (properties `((upstream-name . "tensorA")))
12046 (build-system r-build-system)
12047 (home-page "http://www.stat.boogaart.de/tensorA")
12048 (synopsis "Advanced tensor arithmetic with named indices")
12049 (description
12050 "This package provides convenience functions for advanced linear algebra
12051 with tensors and computation with datasets of tensors on a higher level
12052 abstraction. It includes Einstein and Riemann summing conventions, dragging,
12053 co- and contravariate indices, and parallel computations on sequences of
12054 tensors.")
12055 (license license:gpl2+)))
12056
12057 (define-public r-rarpack
12058 (package
12059 (name "r-rarpack")
12060 (version "0.11-0")
12061 (source
12062 (origin
12063 (method url-fetch)
12064 (uri (cran-uri "rARPACK" version))
12065 (sha256
12066 (base32
12067 "12h2y46xcfldhjdmm960swgn9b23zvkj5vg2bi42s9qxwgi02d63"))))
12068 (properties `((upstream-name . "rARPACK")))
12069 (build-system r-build-system)
12070 (propagated-inputs `(("r-rspectra" ,r-rspectra)))
12071 (home-page "https://github.com/yixuan/rARPACK")
12072 (synopsis "Solvers for large scale eigenvalue and SVD problems")
12073 (description
12074 "This package was previously an R wrapper of the ARPACK library, and now
12075 a shell of the R package RSpectra, an R interface to the Spectra library for
12076 solving large scale eigenvalue/vector problems. The current version of
12077 rARPACK simply imports and exports the functions provided by RSpectra. New
12078 users of rARPACK are advised to switch to the RSpectra package.")
12079 (license license:bsd-3)))
12080
12081 (define-public r-compositions
12082 (package
12083 (name "r-compositions")
12084 (version "1.40-5")
12085 (source
12086 (origin
12087 (method url-fetch)
12088 (uri (cran-uri "compositions" version))
12089 (sha256
12090 (base32
12091 "0l9ayz2nb2wqhl7v9hkfl7pd950ba0h6hma8zqncbcxh6xh2k7l7"))))
12092 (build-system r-build-system)
12093 (propagated-inputs
12094 `(("r-bayesm" ,r-bayesm)
12095 ("r-robustbase" ,r-robustbase)
12096 ("r-tensora" ,r-tensora)))
12097 (home-page "http://www.stat.boogaart.de/compositions")
12098 (synopsis "Compositional data analysis")
12099 (description
12100 "This package provides functions for the consistent analysis of
12101 compositional data (e.g. portions of substances) and positive
12102 numbers (e.g. concentrations).")
12103 (license license:gpl2+)))
12104
12105 (define-public r-cobs
12106 (package
12107 (name "r-cobs")
12108 (version "1.3-4")
12109 (source
12110 (origin
12111 (method url-fetch)
12112 (uri (cran-uri "cobs" version))
12113 (sha256
12114 (base32
12115 "0hiw5smk6kgk0gb9840kcqkhkybl7n30s77xhjc395x09izbgix1"))))
12116 (build-system r-build-system)
12117 (propagated-inputs
12118 `(("r-quantreg" ,r-quantreg)
12119 ("r-sparsem" ,r-sparsem)))
12120 (home-page "https://cran.r-project.org/web/packages/cobs")
12121 (synopsis "Constrained B-Splines (sparse matrix based)")
12122 (description
12123 "This package provides qualitatively constrained (regression) smoothing
12124 splines via linear programming and sparse matrices.")
12125 (license license:gpl2+)))
12126
12127 (define-public r-drimpute
12128 (package
12129 (name "r-drimpute")
12130 (version "1.0")
12131 (source
12132 (origin
12133 (method url-fetch)
12134 (uri (cran-uri "DrImpute" version))
12135 (sha256
12136 (base32
12137 "1adzarrwqb282pqgx2yqswp9rpwd1naxsmar54kddr6qyd6b923b"))))
12138 (properties `((upstream-name . "DrImpute")))
12139 (build-system r-build-system)
12140 (propagated-inputs
12141 `(("r-rcpp" ,r-rcpp)
12142 ("r-rcpparmadillo" ,r-rcpparmadillo)))
12143 (home-page "https://github.com/ikwak2/DrImpute")
12144 (synopsis "Imputing dropout events in single-cell RNA-Seq data")
12145 (description
12146 "This is an R package for imputing dropout events. Many statistical
12147 methods in cell type identification, visualization and lineage reconstruction
12148 do not account for dropout events. DrImpute can improve the performance of
12149 such software by imputing dropout events.")
12150 (license license:gpl3)))
12151
12152 (define-public r-gamlss-dist
12153 (package
12154 (name "r-gamlss-dist")
12155 (version "5.1-6")
12156 (source
12157 (origin
12158 (method url-fetch)
12159 (uri (cran-uri "gamlss.dist" version))
12160 (sha256
12161 (base32 "1p904x0b07z4amaqdn2xhs7qzbq8lisr6lqc844s3pkxzmny7w1z"))))
12162 (properties `((upstream-name . "gamlss.dist")))
12163 (build-system r-build-system)
12164 (propagated-inputs `(("r-mass" ,r-mass)))
12165 (home-page "http://www.gamlss.org/")
12166 (synopsis "Distributions for Generalized Additive Models for location scale and shape")
12167 (description
12168 "This package provides a set of distributions which can be used for
12169 modelling the response variables in Generalized Additive Models for Location
12170 Scale and Shape. The distributions can be continuous, discrete or mixed
12171 distributions. Extra distributions can be created, by transforming, any
12172 continuous distribution defined on the real line, to a distribution defined on
12173 ranges 0 to infinity or 0 to 1, by using a @code{log} or a @code{logit}
12174 transformation, respectively.")
12175 ;; Either version of the GPL.
12176 (license (list license:gpl2 license:gpl3))))
12177
12178 ;; This package includes JavaScript files, which are not minified. When
12179 ;; upgrading please check that there are no new minified JavaScript files.
12180 (define-public r-shinyjs
12181 (package
12182 (name "r-shinyjs")
12183 (version "1.1")
12184 (source
12185 (origin
12186 (method url-fetch)
12187 (uri (cran-uri "shinyjs" version))
12188 (sha256
12189 (base32
12190 "14k8y313ppj23m9rhlk8jc94x6sbn3qrsnx6xrijiyv8m8dii1l9"))))
12191 (build-system r-build-system)
12192 (propagated-inputs
12193 `(("r-digest" ,r-digest)
12194 ("r-htmltools" ,r-htmltools)
12195 ("r-jsonlite" ,r-jsonlite)
12196 ("r-shiny" ,r-shiny)))
12197 (home-page "https://deanattali.com/shinyjs")
12198 (synopsis "Improve the user experience of your Shiny apps")
12199 (description
12200 "Perform common useful JavaScript operations in Shiny apps that will
12201 greatly improve your apps without having to know any JavaScript. Examples
12202 include: hiding an element, disabling an input, resetting an input back to its
12203 original value, delaying code execution by a few seconds, and many more useful
12204 functions for both the end user and the developer. Shinyjs can also be used
12205 to easily call your own custom JavaScript functions from R.")
12206 (license license:agpl3+)))
12207
12208 ;; This package includes minified JavaScript files. When upgrading please
12209 ;; check that there are no new minified JavaScript files.
12210 (define-public r-colourpicker
12211 (package
12212 (name "r-colourpicker")
12213 (version "1.0")
12214 (source
12215 (origin
12216 (method url-fetch)
12217 (uri (cran-uri "colourpicker" version))
12218 (sha256
12219 (base32
12220 "0z3v2083g7kwdp21x9s2n1crfh24agpdq3yxkcdzc2awn2pwpnpi"))))
12221 (build-system r-build-system)
12222 (arguments
12223 `(#:modules ((guix build utils)
12224 (guix build r-build-system)
12225 (srfi srfi-1)
12226 (ice-9 popen))
12227 #:phases
12228 (modify-phases %standard-phases
12229 (add-after 'unpack 'process-javascript
12230 (lambda* (#:key inputs #:allow-other-keys)
12231 (with-directory-excursion "inst"
12232 (call-with-values
12233 (lambda ()
12234 (unzip2
12235 `((,(assoc-ref inputs "js-salvattore")
12236 "examples/colourInput/www/salvattore.min.js")
12237 (,(assoc-ref inputs "js-jquery")
12238 "htmlwidgets/lib/jquery/jquery.min.js")
12239 ("www/shared/colourpicker/js/colourpicker.js"
12240 "www/shared/colourpicker/js/colourpicker.min.js"))))
12241 (lambda (sources targets)
12242 (for-each (lambda (source target)
12243 (format #t "Processing ~a --> ~a~%"
12244 source target)
12245 (delete-file target)
12246 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
12247 (call-with-output-file target
12248 (lambda (port)
12249 (dump-port minified port)))))
12250 sources targets))))
12251 #t)))))
12252 (propagated-inputs
12253 `(("r-ggplot2" ,r-ggplot2)
12254 ("r-htmltools" ,r-htmltools)
12255 ("r-htmlwidgets" ,r-htmlwidgets)
12256 ("r-jsonlite" ,r-jsonlite)
12257 ("r-miniui" ,r-miniui)
12258 ("r-shiny" ,r-shiny)
12259 ("r-shinyjs" ,r-shinyjs)))
12260 (native-inputs
12261 `(("uglify-js" ,uglify-js)
12262 ("js-jquery"
12263 ,(origin
12264 (method url-fetch)
12265 (uri "https://code.jquery.com/jquery-3.3.1.js")
12266 (sha256
12267 (base32
12268 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))
12269 ("js-salvattore"
12270 ,(origin
12271 (method url-fetch)
12272 (uri "https://raw.githubusercontent.com/rnmp/salvattore/v1.0.9/dist/salvattore.js")
12273 (sha256
12274 (base32
12275 "0lfrbx7l9w5x89jpc6njmd0pk7h8fpvg537vklai2vf7b1r2nnk5"))))))
12276 (home-page "https://github.com/daattali/colourpicker")
12277 (synopsis "Color picker tool for Shiny and for selecting colors in plots")
12278 (description
12279 "This package provides a color picker that can be used as an input in
12280 Shiny apps or Rmarkdown documents. The color picker supports alpha opacity,
12281 custom color palettes, and many more options. A plot color helper tool is
12282 available as an RStudio Addin, which helps you pick colors to use in your
12283 plots. A more generic color picker RStudio Addin is also provided to let you
12284 select colors to use in your R code.")
12285 (license license:expat)))
12286
12287 (define-public r-ggextra
12288 (package
12289 (name "r-ggextra")
12290 (version "0.9")
12291 (source
12292 (origin
12293 (method url-fetch)
12294 (uri (cran-uri "ggExtra" version))
12295 (sha256
12296 (base32
12297 "18mbi6gblqmrsciad1d2c9ngllk6mayaqj43k40hjq9ydqnvjbgj"))))
12298 (properties `((upstream-name . "ggExtra")))
12299 (build-system r-build-system)
12300 (propagated-inputs
12301 `(("r-colourpicker" ,r-colourpicker)
12302 ("r-ggplot2" ,r-ggplot2)
12303 ("r-gtable" ,r-gtable)
12304 ("r-miniui" ,r-miniui)
12305 ("r-r6" ,r-r6)
12306 ("r-scales" ,r-scales)
12307 ("r-shiny" ,r-shiny)
12308 ("r-shinyjs" ,r-shinyjs)))
12309 (native-inputs
12310 `(("r-knitr" ,r-knitr)))
12311 (home-page "https://github.com/daattali/ggExtra")
12312 (synopsis "Marginal histograms for ggplot2 and other enhancements")
12313 (description
12314 "This package is a collection of functions and layers to enhance ggplot2.
12315 The flagship function is @code{ggMarginal()}, which can be used to add
12316 marginal histograms/boxplots/density plots to ggplot2 scatterplots.")
12317 (license license:expat)))
12318
12319 (define-public r-minpack-lm
12320 (package
12321 (name "r-minpack-lm")
12322 (version "1.2-1")
12323 (source
12324 (origin
12325 (method url-fetch)
12326 (uri (cran-uri "minpack.lm" version))
12327 (sha256
12328 (base32
12329 "18ym2pdql5vzngc7q5gn66d153hrfrnd8ilv8yh6vd7j7sx7vjql"))))
12330 (properties `((upstream-name . "minpack.lm")))
12331 (build-system r-build-system)
12332 (native-inputs `(("gfortran" ,gfortran)))
12333 (home-page "https://cran.r-project.org/web/packages/minpack.lm")
12334 (synopsis "Levenberg-Marquardt Nonlinear Least-Squares algorithm")
12335 (description
12336 "The @code{nls.lm} function provides an R interface to @code{lmder} and
12337 @code{lmdif} from the MINPACK library, for solving nonlinear least-squares
12338 problems by a modification of the Levenberg-Marquardt algorithm, with support
12339 for lower and upper parameter bounds. The implementation can be used via
12340 @code{nls}-like calls using the @code{nlsLM} function.")
12341 (license license:gpl3)))
12342
12343 (define-public r-moments
12344 (package
12345 (name "r-moments")
12346 (version "0.14")
12347 (source
12348 (origin
12349 (method url-fetch)
12350 (uri (cran-uri "moments" version))
12351 (sha256
12352 (base32
12353 "0f9y58w1hxcz4bqivirx25ywlmc80gbi6dfx5cnhkpdg1pk82fra"))))
12354 (build-system r-build-system)
12355 (home-page "https://cran.r-project.org/web/packages/moments")
12356 (synopsis "Moments, cumulants, skewness, kurtosis and related tests")
12357 (description
12358 "This package provides functions to calculate: moments, Pearson's
12359 kurtosis, Geary's kurtosis and skewness; it also includes tests related to
12360 them (Anscombe-Glynn, D'Agostino, Bonett-Seier).")
12361 (license license:gpl2+)))
12362
12363 (define-public r-msir
12364 (package
12365 (name "r-msir")
12366 (version "1.3.2")
12367 (source
12368 (origin
12369 (method url-fetch)
12370 (uri (cran-uri "msir" version))
12371 (sha256
12372 (base32
12373 "0pvc3q162vqq3k39nni732x05zzfz4y9y2zf56d83185ypszv9kb"))))
12374 (build-system r-build-system)
12375 (propagated-inputs
12376 `(("r-mclust" ,r-mclust)))
12377 (home-page "https://cran.r-project.org/web/packages/msir")
12378 (synopsis "Model-based sliced inverse regression")
12379 (description
12380 "This is an R package for dimension reduction based on finite Gaussian
12381 mixture modeling of inverse regression.")
12382 (license license:gpl2+)))
12383
12384 (define-public r-pbivnorm
12385 (package
12386 (name "r-pbivnorm")
12387 (version "0.6.0")
12388 (source
12389 (origin
12390 (method url-fetch)
12391 (uri (cran-uri "pbivnorm" version))
12392 (sha256
12393 (base32
12394 "05jzrjqxzbcf6z245hlk7sjxiszv9paadaaimvcx5y5qgi87vhq7"))))
12395 (build-system r-build-system)
12396 (native-inputs `(("gfortran" ,gfortran)))
12397 (home-page "https://github.com/brentonk/pbivnorm")
12398 (synopsis "Vectorized bivariate normal CDF")
12399 (description
12400 "This package provides a vectorized R function for calculating
12401 probabilities from a standard bivariate normal CDF.")
12402 (license license:gpl2+)))
12403
12404 (define-public r-lavaan
12405 (package
12406 (name "r-lavaan")
12407 (version "0.6-5")
12408 (source
12409 (origin
12410 (method url-fetch)
12411 (uri (cran-uri "lavaan" version))
12412 (sha256
12413 (base32
12414 "04kvsh2m6mnzlhv83phr3hjzy4sx1ck6f7dgsm7xb8cs84dnxszy"))))
12415 (build-system r-build-system)
12416 (propagated-inputs
12417 `(("r-mass" ,r-mass)
12418 ("r-mnormt" ,r-mnormt)
12419 ("r-numderiv" ,r-numderiv)
12420 ("r-pbivnorm" ,r-pbivnorm)))
12421 (home-page "http://lavaan.ugent.be")
12422 (synopsis "Latent variable analysis")
12423 (description
12424 "This package provides tools to fit a variety of latent variable models,
12425 including confirmatory factor analysis, structural equation modeling and
12426 latent growth curve models.")
12427 (license license:gpl2+)))
12428
12429 (define-public r-nonnest2
12430 (package
12431 (name "r-nonnest2")
12432 (version "0.5-3")
12433 (source
12434 (origin
12435 (method url-fetch)
12436 (uri (cran-uri "nonnest2" version))
12437 (sha256
12438 (base32
12439 "1mnv4pa583ir9s03h952hk40lwdywr3g88g76sk1zsa54rcmn82c"))))
12440 (build-system r-build-system)
12441 (propagated-inputs
12442 `(("r-compquadform" ,r-compquadform)
12443 ("r-lavaan" ,r-lavaan)
12444 ("r-mvtnorm" ,r-mvtnorm)
12445 ("r-sandwich" ,r-sandwich)))
12446 (native-inputs
12447 `(("r-knitr" ,r-knitr)))
12448 (home-page "https://cran.r-project.org/web/packages/nonnest2/")
12449 (synopsis "Tests of non-nested models")
12450 (description
12451 "This package allows for testing of non-nested models. It includes tests
12452 of model distinguishability and of model fit that can be applied to both
12453 nested and non-nested models. The package also includes functionality to
12454 obtain confidence intervals associated with AIC and BIC.")
12455 ;; Either version of the GPL.
12456 (license (list license:gpl2 license:gpl3))))
12457
12458 (define-public r-penalized
12459 (package
12460 (name "r-penalized")
12461 (version "0.9-51")
12462 (source
12463 (origin
12464 (method url-fetch)
12465 (uri (cran-uri "penalized" version))
12466 (sha256
12467 (base32
12468 "1zcrwa93mc27qj3g4ayc2k895r6g8q0g6qb2azmvj7wqk750va7a"))))
12469 (build-system r-build-system)
12470 (propagated-inputs
12471 `(("r-rcpp" ,r-rcpp)
12472 ("r-rcpparmadillo" ,r-rcpparmadillo)
12473 ("r-survival" ,r-survival)))
12474 (home-page "https://cran.r-project.org/web/packages/penalized/")
12475 (synopsis "Penalized estimation in GLMs and in the Cox model")
12476 (description
12477 "This package provides tools for fitting possibly high dimensional
12478 penalized regression models. The penalty structure can be any combination of
12479 an L1 penalty (lasso and fused lasso), an L2 penalty (ridge) and a positivity
12480 constraint on the regression coefficients. The supported regression models
12481 are linear, logistic and Poisson regression and the Cox Proportional Hazards
12482 model. Cross-validation routines allow optimization of the tuning
12483 parameters.")
12484 (license license:gpl2+)))
12485
12486 (define-public r-zim
12487 (package
12488 (name "r-zim")
12489 (version "1.1.0")
12490 (source
12491 (origin
12492 (method url-fetch)
12493 (uri (cran-uri "ZIM" version))
12494 (sha256
12495 (base32
12496 "0scyfjn4ilsvha3x41c3b8bcfi31hlhwm77wn2a8hj5dsvnnmzig"))))
12497 (properties `((upstream-name . "ZIM")))
12498 (build-system r-build-system)
12499 (propagated-inputs `(("r-mass" ,r-mass)))
12500 (home-page "https://github.com/biostatstudio/ZIM")
12501 (synopsis "Zero-inflated models (ZIM) for count time series with excess zeros")
12502 (description
12503 "Analyze count time series with excess zeros. Two types of statistical
12504 models are supported: Markov regression and state-space models. They are also
12505 known as observation-driven and parameter-driven models respectively in the
12506 time series literature. The functions used for Markov regression or
12507 observation-driven models can also be used to fit ordinary regression models
12508 with independent data under the zero-inflated Poisson (ZIP) or zero-inflated
12509 negative binomial (ZINB) assumption. The package also contains miscellaneous
12510 functions to compute density, distribution, quantile, and generate random
12511 numbers from ZIP and ZINB distributions.")
12512 (license license:gpl3)))
12513
12514 (define-public r-nor1mix
12515 (package
12516 (name "r-nor1mix")
12517 (version "1.3-0")
12518 (source
12519 (origin
12520 (method url-fetch)
12521 (uri (cran-uri "nor1mix" version))
12522 (sha256
12523 (base32
12524 "1817wcvlmxs70vs4db0jkxd7i037744zz8ay3c2a9949z29fxr4w"))))
12525 (build-system r-build-system)
12526 (home-page "https://cran.r-project.org/web/packages/nor1mix/")
12527 (synopsis "Normal (1-d) mixture models")
12528 (description
12529 "This package provides S3 classes and methods for one-dimensional normal
12530 mixture models, for, e.g., density estimation or clustering algorithms
12531 research and teaching; it provides the widely used Marron-Wand densities. It
12532 also provides tools for efficient random number generation and graphics.")
12533 (license license:gpl2+)))
12534
12535 (define-public r-beanplot
12536 (package
12537 (name "r-beanplot")
12538 (version "1.2")
12539 (source
12540 (origin
12541 (method url-fetch)
12542 (uri (cran-uri "beanplot" version))
12543 (sha256
12544 (base32
12545 "0wmkr704fl8kdxkjwmaxw2a2h5dwzfgsgpncnk2p2wd4768jknj9"))))
12546 (build-system r-build-system)
12547 (home-page "https://cran.r-project.org/web/packages/beanplot/")
12548 (synopsis "Visualization via beanplots")
12549 (description
12550 "This package provides beanplots, an alternative to
12551 boxplot/stripchart/violin plots. It can be used to plot univariate comparison
12552 graphs.")
12553 (license license:gpl2)))
12554
12555 (define-public r-pbdzmq
12556 (package
12557 (name "r-pbdzmq")
12558 (version "0.3-3")
12559 (source
12560 (origin
12561 (method url-fetch)
12562 (uri (cran-uri "pbdZMQ" version))
12563 (sha256
12564 (base32
12565 "1jkfcfhspvqra7vbllrvkz3jx8j7d0ang6zzcdjgpb7200sc29mf"))))
12566 (properties `((upstream-name . "pbdZMQ")))
12567 (build-system r-build-system)
12568 (inputs
12569 `(("zeromq" ,zeromq)
12570 ("zlib" ,zlib)))
12571 (native-inputs
12572 `(("pkg-config" ,pkg-config)))
12573 (home-page "https://pbdr.org/")
12574 (synopsis "R interface to ZeroMQ")
12575 (description
12576 "ZeroMQ is a well-known library for high-performance asynchronous
12577 messaging in scalable, distributed applications. This package provides high
12578 level R wrapper functions to easily utilize ZeroMQ. The main focus is on
12579 interactive client/server programming frameworks. A few wrapper functions
12580 compatible with @code{rzmq} are also provided.")
12581 (license license:gpl3)))
12582
12583 (define-public r-repr
12584 (package
12585 (name "r-repr")
12586 (version "1.1.0")
12587 (source
12588 (origin
12589 (method url-fetch)
12590 (uri (cran-uri "repr" version))
12591 (sha256
12592 (base32
12593 "15jz780w4nd9qjd1g3gq8f5lkh60p2v3ig3hm5kl1rg3z4cf0gvl"))))
12594 (build-system r-build-system)
12595 (propagated-inputs
12596 `(("r-base64enc" ,r-base64enc)
12597 ("r-htmltools" ,r-htmltools)
12598 ("r-jsonlite" ,r-jsonlite)
12599 ("r-pillar" ,r-pillar)))
12600 (home-page "https://cran.r-project.org/web/packages/repr/")
12601 (synopsis "Serializable representations")
12602 (description
12603 "This package provides string and binary representations of objects for
12604 several formats and MIME types.")
12605 (license license:gpl3)))
12606
12607 (define-public r-irdisplay
12608 (package
12609 (name "r-irdisplay")
12610 (version "0.7.0")
12611 (source
12612 (origin
12613 (method url-fetch)
12614 (uri (cran-uri "IRdisplay" version))
12615 (sha256
12616 (base32
12617 "12chk53nf4zckgc4yl7gbvd7m5dvli52inp5b3f0zvcjvfncksli"))))
12618 (properties `((upstream-name . "IRdisplay")))
12619 (build-system r-build-system)
12620 (propagated-inputs
12621 `(("r-repr" ,r-repr)))
12622 (home-page "https://cran.r-project.org/web/packages/IRdisplay/")
12623 (synopsis "Jupyter display machinery")
12624 (description
12625 "This package provides an interface to the rich display capabilities of
12626 Jupyter front-ends (e.g. Jupyter Notebook). It is designed to be used from a
12627 running IRkernel session.")
12628 (license license:expat)))
12629
12630 (define-public r-irkernel
12631 (package
12632 (name "r-irkernel")
12633 (version "1.1")
12634 (source
12635 (origin
12636 (method url-fetch)
12637 (uri (cran-uri "IRkernel" version))
12638 (sha256
12639 (base32
12640 "1viqxs91dys1z4cf7gb59rmqvzb8lc7jdp4azrpmhgwa8qf46s94"))))
12641 (properties `((upstream-name . "IRkernel")))
12642 (build-system r-build-system)
12643 (arguments
12644 `(#:phases
12645 (modify-phases %standard-phases
12646 (add-after 'install 'install-kernelspec
12647 (lambda* (#:key outputs #:allow-other-keys)
12648 (let ((out (assoc-ref outputs "out")))
12649 (setenv "HOME" "/tmp")
12650 (invoke "jupyter" "kernelspec" "install"
12651 "--name" "ir"
12652 "--prefix" out
12653 (string-append out "/site-library/IRkernel/kernelspec"))
12654 ;; Record the absolute file name of the 'R' executable in
12655 ;; 'kernel.json'.
12656 (substitute* (string-append out "/share/jupyter"
12657 "/kernels/ir/kernel.json")
12658 (("\\[\"R\",")
12659 (string-append "[\"" (which "R") "\",")))
12660 #t))))))
12661 (inputs
12662 `(("jupyter" ,jupyter)))
12663 (propagated-inputs
12664 `(("r-crayon" ,r-crayon)
12665 ("r-digest" ,r-digest)
12666 ("r-evaluate" ,r-evaluate)
12667 ("r-irdisplay" ,r-irdisplay)
12668 ("r-jsonlite" ,r-jsonlite)
12669 ;; sets R_LIBS_SITE, so R can actually find this package (IRkernel)
12670 ("r-minimal" ,r-minimal)
12671 ("r-pbdzmq" ,r-pbdzmq)
12672 ("r-repr" ,r-repr)
12673 ("r-uuid" ,r-uuid)))
12674 (home-page "https://cran.r-project.org/web/packages/IRkernel/")
12675 (synopsis "Native R kernel for Jupyter")
12676 (description
12677 "The R kernel for the Jupyter environment executes R code which the
12678 front-end (Jupyter Notebook or other front-ends) submits to the kernel via the
12679 network.")
12680 (license license:expat)))
12681
12682 (define-public r-gmodels
12683 (package
12684 (name "r-gmodels")
12685 (version "2.18.1")
12686 (source
12687 (origin
12688 (method url-fetch)
12689 (uri (cran-uri "gmodels" version))
12690 (sha256
12691 (base32
12692 "0s8kd8krqk4kwv2zqxpsfy3w8qdwf5naf4b5l383vidq9sil0qb2"))))
12693 (build-system r-build-system)
12694 (propagated-inputs
12695 `(("r-gdata" ,r-gdata)
12696 ("r-mass" ,r-mass)))
12697 (home-page "https://cran.r-project.org/web/packages/gmodels/")
12698 (synopsis "Various R programming tools for model fitting")
12699 (description
12700 "This package provides various R programming tools for model fitting.")
12701 (license license:gpl2)))
12702
12703 (define-public r-apcluster
12704 (package
12705 (name "r-apcluster")
12706 (version "1.4.8")
12707 (source
12708 (origin
12709 (method url-fetch)
12710 (uri (cran-uri "apcluster" version))
12711 (sha256
12712 (base32
12713 "0lzf2jqm56i74wif6x5sw3j0w2qc4sni49zq2fgbl89b7lwkvchj"))))
12714 (build-system r-build-system)
12715 (propagated-inputs
12716 `(("r-matrix" ,r-matrix)
12717 ("r-rcpp" ,r-rcpp)))
12718 (home-page "https://cran.r-project.org/web/packages/apcluster/")
12719 (synopsis "Affinity propagation clustering")
12720 (description
12721 "This package implements affinity propagation clustering introduced by
12722 Frey and Dueck (2007). The package further provides leveraged affinity
12723 propagation and an algorithm for exemplar-based agglomerative clustering that
12724 can also be used to join clusters obtained from affinity propagation. Various
12725 plotting functions are available for analyzing clustering results.")
12726 (license license:gpl2+)))
12727
12728 (define-public r-valr
12729 (package
12730 (name "r-valr")
12731 (version "0.5.0")
12732 (source
12733 (origin
12734 (method url-fetch)
12735 (uri (cran-uri "valr" version))
12736 (sha256
12737 (base32
12738 "14jhrwkiwmha3vlmm7b50n2xxyizj6ddmy89gb20mpzq7qhz1ika"))))
12739 (build-system r-build-system)
12740 (propagated-inputs
12741 `(("r-broom" ,r-broom)
12742 ("r-dplyr" ,r-dplyr)
12743 ("r-ggplot2" ,r-ggplot2)
12744 ("r-rcpp" ,r-rcpp)
12745 ("r-readr" ,r-readr)
12746 ("r-rlang" ,r-rlang)
12747 ("r-stringr" ,r-stringr)
12748 ("r-tibble" ,r-tibble)))
12749 (home-page "http://github.com/rnabioco/valr")
12750 (synopsis "Genome interval arithmetic in R")
12751 (description
12752 "This package enables you to read and manipulate genome intervals and
12753 signals. It provides functionality similar to command-line tool suites within
12754 R, enabling interactive analysis and visualization of genome-scale data.")
12755 (license license:expat)))
12756
12757 (define-public r-rematch2
12758 (package
12759 (name "r-rematch2")
12760 (version "2.1.1")
12761 (source
12762 (origin
12763 (method url-fetch)
12764 (uri (cran-uri "rematch2" version))
12765 (sha256
12766 (base32
12767 "13siaa8s2ji9q6hykhb2r34ag76335ypmbqr90xaqilbir0klhnh"))))
12768 (build-system r-build-system)
12769 (propagated-inputs
12770 `(("r-tibble" ,r-tibble)))
12771 (home-page "https://github.com/r-lib/rematch2")
12772 (synopsis "Tidy output from regular expression matching")
12773 (description
12774 "This package provides wrappers on @code{regexpr} and @code{gregexpr} to
12775 return the match results in tidy data frames.")
12776 (license license:expat)))
12777
12778 (define-public r-picante
12779 (package
12780 (name "r-picante")
12781 (version "1.8.1")
12782 (source
12783 (origin
12784 (method url-fetch)
12785 (uri (cran-uri "picante" version))
12786 (sha256
12787 (base32
12788 "1b16zm8zjjsl181b8krkdcrbcw347kf772c4w7y5332qmfi7jhz0"))))
12789 (build-system r-build-system)
12790 (propagated-inputs
12791 `(("r-ape" ,r-ape)
12792 ("r-nlme" ,r-nlme)
12793 ("r-vegan" ,r-vegan)))
12794 (home-page "https://cran.r-project.org/web/packages/picante/")
12795 (synopsis "Integrating phylogenies and ecology")
12796 (description
12797 "This package provides functions for phylocom integration, community
12798 analyses, null-models, traits and evolution. It implements numerous
12799 ecophylogenetic approaches including measures of community phylogenetic and
12800 trait diversity, phylogenetic signal, estimation of trait values for
12801 unobserved taxa, null models for community and phylogeny randomizations, and
12802 utility functions for data input/output and phylogeny plotting. A full
12803 description of package functionality and methods are provided by Kembel et
12804 al. (2010).")
12805 (license license:gpl2)))
12806
12807 (define-public r-reinforcelearn
12808 (package
12809 (name "r-reinforcelearn")
12810 (version "0.2.1")
12811 (source
12812 (origin
12813 (method url-fetch)
12814 (uri (cran-uri "reinforcelearn" version))
12815 (sha256
12816 (base32
12817 "176z2q69p24i29a8sh19xxn2zl3h1z2ixdssr5i6m4yvkvdrvv3b"))))
12818 (build-system r-build-system)
12819 (propagated-inputs
12820 `(("r-checkmate" ,r-checkmate)
12821 ("r-nnet" ,r-nnet)
12822 ("r-purrr" ,r-purrr)
12823 ("r-r6" ,r-r6)))
12824 (home-page "https://markusdumke.github.io/reinforcelearn")
12825 (synopsis "Reinforcement learning")
12826 (description
12827 "This package implements reinforcement learning environments and
12828 algorithms as described in Sutton & Barto (1998). The Q-Learning algorithm
12829 can be used with function approximation, eligibility traces (Singh & Sutton,
12830 1996) and experience replay (Mnih et al., 2013).")
12831 (license license:expat)))
12832
12833 (define-public r-lemon
12834 (package
12835 (name "r-lemon")
12836 (version "0.4.4")
12837 (source
12838 (origin
12839 (method url-fetch)
12840 (uri (cran-uri "lemon" version))
12841 (sha256
12842 (base32
12843 "0m9hqwi709j9iwsxn8jh63741jiyr7ppwgqaw2zkv285p3m5wvd5"))))
12844 (build-system r-build-system)
12845 (propagated-inputs
12846 `(("r-ggplot2" ,r-ggplot2)
12847 ("r-gridextra" ,r-gridextra)
12848 ("r-gtable" ,r-gtable)
12849 ("r-knitr" ,r-knitr)
12850 ("r-lattice" ,r-lattice)
12851 ("r-plyr" ,r-plyr)
12852 ("r-rlang" ,r-rlang)
12853 ("r-scales" ,r-scales)))
12854 (home-page "https://github.com/stefanedwards/lemon")
12855 (synopsis "Freshen up your ggplot2 plots")
12856 (description
12857 "This package provides functions for working with legends and axis lines
12858 of ggplot2, facets that repeat axis lines on all panels, and some knitr
12859 extensions.")
12860 (license license:gpl3)))
12861
12862 (define-public r-wgaim
12863 (package
12864 (name "r-wgaim")
12865 (version "2.0-1")
12866 (source
12867 (origin
12868 (method url-fetch)
12869 (uri (cran-uri "wgaim" version))
12870 (sha256
12871 (base32 "1qiyfkpsbzjr9xsq5kqq6rlqpndngkn2irdfh3gyi45h6hn118j4"))))
12872 (build-system r-build-system)
12873 (propagated-inputs
12874 `(("r-ggplot2" ,r-ggplot2)
12875 ("r-qtl" ,r-qtl)))
12876 (home-page "https://cran.r-project.org/web/packages/wgaim")
12877 (synopsis "Whole genome average interval mapping for QTL detection")
12878 (description
12879 "This package integrates sophisticated mixed modelling methods with a
12880 whole genome approach to detecting significant QTL in linkage maps.")
12881 (license license:gpl2+)))
12882
12883 (define-public r-bedr
12884 (package
12885 (name "r-bedr")
12886 (version "1.0.7")
12887 (source
12888 (origin
12889 (method url-fetch)
12890 (uri (cran-uri "bedr" version))
12891 (sha256
12892 (base32
12893 "0zpqvyjgwyqawxm8qrhcv8zq2b3yxgcqkkc87br29yrl7sjb8h6j"))))
12894 (build-system r-build-system)
12895 (propagated-inputs
12896 `(("r-data-table" ,r-data-table)
12897 ("r-r-utils" ,r-r-utils)
12898 ("r-testthat" ,r-testthat)
12899 ("r-venndiagram" ,r-venndiagram)
12900 ("r-yaml" ,r-yaml)
12901 ("bedops" ,bedops)
12902 ("bedtools" ,bedtools)
12903 ("htslib" ,htslib))) ; for tabix
12904 (native-inputs
12905 `(("r-knitr" ,r-knitr))) ; for vignettes
12906 (home-page "https://cran.r-project.org/web/packages/bedr")
12907 (synopsis "Genomic region processing")
12908 (description
12909 "This package is for genomic regions processing using command line tools
12910 such as BEDTools, BEDOPS and Tabix. These tools offer scalable and efficient
12911 utilities to perform genome arithmetic e.g indexing, formatting and merging.
12912 The bedr package's API enhances access to these tools as well as offers
12913 additional utilities for genomic regions processing.")
12914 (license license:gpl2)))
12915
12916 (define-public r-sets
12917 (package
12918 (name "r-sets")
12919 (version "1.0-18")
12920 (source
12921 (origin
12922 (method url-fetch)
12923 (uri (cran-uri "sets" version))
12924 (sha256
12925 (base32
12926 "16v7650p47khqrbbw0z98llmwmmhswqmhri0n7nrfhdqwmby1lbl"))))
12927 (properties `((upstream-name . "sets")))
12928 (build-system r-build-system)
12929 (home-page "https://cran.r-project.org/web/packages/sets")
12930 (synopsis "Sets, generalized sets, customizable sets and intervals")
12931 (description
12932 "This package provides data structures and basic operations for ordinary
12933 sets, generalizations such as fuzzy sets, multisets, and fuzzy multisets,
12934 customizable sets, and intervals.")
12935 (license license:gpl2)))
12936
12937 (define-public r-partitions
12938 (package
12939 (name "r-partitions")
12940 (version "1.9-22")
12941 (source
12942 (origin
12943 (method url-fetch)
12944 (uri (cran-uri "partitions" version))
12945 (sha256
12946 (base32
12947 "1qqy4df28wy4q0g572azrj171jlhvrnzbh7x0wr2g7v6gr20y0ns"))))
12948 (build-system r-build-system)
12949 (propagated-inputs
12950 `(("r-gmp" ,r-gmp)
12951 ("r-polynom" ,r-polynom)
12952 ("r-sets" ,r-sets)))
12953 (home-page "https://cran.r-project.org/web/packages/partitions")
12954 (synopsis "Additive partitions of integers")
12955 (description
12956 "This package provides tools to enumerates the partitions, unequal
12957 partitions, and restricted partitions of an integer; the three corresponding
12958 partition functions are also given.")
12959 ;; Any version of the GPL
12960 (license license:gpl2+)))
12961
12962 (define-public r-brobdingnag
12963 (package
12964 (name "r-brobdingnag")
12965 (version "1.2-6")
12966 (source
12967 (origin
12968 (method url-fetch)
12969 (uri (cran-uri "Brobdingnag" version))
12970 (sha256
12971 (base32
12972 "1m3ajvcksqfck5l5hj5xiflj4ry6d896ybv4f0xxks8chgnwmv0r"))))
12973 (properties `((upstream-name . "Brobdingnag")))
12974 (build-system r-build-system)
12975 (home-page "https://github.com/RobinHankin/Brobdingnag.git")
12976 (synopsis "Very large numbers in R")
12977 (description
12978 "This package handles very large numbers in R. Real numbers are held
12979 using their natural logarithms, plus a logical flag indicating sign. The
12980 package includes a vignette that gives a step-by-step introduction to using S4
12981 methods.")
12982 ;; Any version of the GPL
12983 (license license:gpl2+)))
12984
12985 (define-public r-untb
12986 (package
12987 (name "r-untb")
12988 (version "1.7-4")
12989 (source
12990 (origin
12991 (method url-fetch)
12992 (uri (cran-uri "untb" version))
12993 (sha256
12994 (base32
12995 "1i7m4vfslsix98dwx4jlrsldm7fhhfp25gr7aapcxqxms7ryaby6"))))
12996 (build-system r-build-system)
12997 (propagated-inputs
12998 `(("r-brobdingnag" ,r-brobdingnag)
12999 ("r-partitions" ,r-partitions)
13000 ("r-polynom" ,r-polynom)))
13001 (home-page "https://github.com/RobinHankin/untb.git")
13002 (synopsis "Ecological drift under the UNTB")
13003 (description
13004 "This package provides numerical simulations, and visualizations, of
13005 Hubbell's @dfn{Unified Neutral Theory of Biodiversity} (UNTB).")
13006 (license license:gpl2+)))
13007
13008 (define-public r-stepwise
13009 (package
13010 (name "r-stepwise")
13011 (version "0.3")
13012 (source
13013 (origin
13014 (method url-fetch)
13015 (uri (cran-uri "stepwise" version))
13016 (sha256
13017 (base32
13018 "1lbx1bxwkf9dw6q46w40pp7h5nkxgghmx8rkpaymm6iybc7gyir2"))))
13019 (build-system r-build-system)
13020 (home-page "https://stat.sfu.ca/statgen/research/stepwise.html")
13021 (synopsis "Stepwise detection of recombination breakpoints")
13022 (description
13023 "This package provides a stepwise approach to identifying recombination
13024 breakpoints in a genomic sequence alignment.")
13025 (license license:gpl2+)))
13026
13027 (define-public r-snpmaxsel
13028 (package
13029 (name "r-snpmaxsel")
13030 (version "1.0-3")
13031 (source
13032 (origin
13033 (method url-fetch)
13034 (uri (cran-uri "SNPmaxsel" version))
13035 (sha256
13036 (base32
13037 "0pjvixwqzjd3jwccc8yqq9c76afvbmfq0z1w0cwyj8bblrjpx13z"))))
13038 (properties `((upstream-name . "SNPmaxsel")))
13039 (build-system r-build-system)
13040 (propagated-inputs
13041 `(("r-combinat" ,r-combinat)
13042 ("r-mvtnorm" ,r-mvtnorm)))
13043 (home-page "https://cran.r-project.org/web/packages/SNPmaxsel/index.html")
13044 (synopsis "Maximally selected statistics for SNP data")
13045 (description
13046 "This package implements asymptotic methods related to maximally selected
13047 statistics, with applications to @dfn{single-nucleotide polymorphism} (SNP)
13048 data.")
13049 (license license:gpl2+)))
13050
13051 (define-public r-acsnminer
13052 (package
13053 (name "r-acsnminer")
13054 (version "0.16.8.25")
13055 (source (origin
13056 (method url-fetch)
13057 (uri (cran-uri "ACSNMineR" version))
13058 (sha256
13059 (base32
13060 "0gh604s8qall6zfjlwcg2ilxjvz08dplf9k5g47idhv43scm748l"))))
13061 (properties `((upstream-name . "ACSNMineR")))
13062 (build-system r-build-system)
13063 (propagated-inputs
13064 `(("r-ggplot2" ,r-ggplot2)
13065 ("r-gridextra" ,r-gridextra)))
13066 (home-page "https://cran.r-project.org/web/packages/ACSNMineR")
13067 (synopsis "Gene enrichment analysis")
13068 (description
13069 "This package provides tools to compute and represent gene set enrichment
13070 or depletion from your data based on pre-saved maps from the @dfn{Atlas of
13071 Cancer Signalling Networks} (ACSN) or user imported maps. The gene set
13072 enrichment can be run with hypergeometric test or Fisher exact test, and can
13073 use multiple corrections. Visualization of data can be done either by
13074 barplots or heatmaps.")
13075 (license license:gpl2+)))
13076
13077 (define-public r-seqinr
13078 (package
13079 (name "r-seqinr")
13080 (version "3.6-1")
13081 (source
13082 (origin
13083 (method url-fetch)
13084 (uri (cran-uri "seqinr" version))
13085 (sha256
13086 (base32
13087 "0j30za6kji6y3v09cvcydiacnp65pv6ig8aw7cydl47l5s9chky4"))))
13088 (build-system r-build-system)
13089 (propagated-inputs
13090 `(("r-ade4" ,r-ade4)
13091 ("r-segmented" ,r-segmented)))
13092 (inputs
13093 `(("zlib" ,zlib)))
13094 (home-page "http://seqinr.r-forge.r-project.org/")
13095 (synopsis "Biological sequences retrieval and analysis")
13096 (description
13097 "This package provides tools for exploratory data analysis and data
13098 visualization of biological sequence (DNA and protein) data. It also includes
13099 utilities for sequence data management under the ACNUC system.")
13100 (license license:gpl2+)))
13101
13102 (define-public r-units
13103 (package
13104 (name "r-units")
13105 (version "0.6-6")
13106 (source
13107 (origin
13108 (method url-fetch)
13109 (uri (cran-uri "units" version))
13110 (sha256
13111 (base32
13112 "11x6xz1fbml28xmrhgn4sii9vfyj3gyfc1dfxahdg9cszdmcgdnh"))))
13113 (build-system r-build-system)
13114 (inputs
13115 `(("udunits" ,udunits)))
13116 (propagated-inputs
13117 `(("r-rcpp" ,r-rcpp)))
13118 (native-inputs
13119 `(("r-knitr" ,r-knitr)))
13120 (home-page "https://github.com/r-quantities/units/")
13121 (synopsis "Measurement Units for R Vectors")
13122 (description
13123 "This package provides support for measurement units in R vectors,
13124 matrices and arrays: automatic propagation, conversion, derivation and
13125 simplification of units; raising errors in case of unit incompatibility. It
13126 is compatible with the @code{POSIXct}, @code{Date} and @code{difftime}
13127 classes.")
13128 (license license:gpl2)))
13129
13130 (define-public r-classint
13131 (package
13132 (name "r-classint")
13133 (version "0.4-3")
13134 (source
13135 (origin
13136 (method url-fetch)
13137 (uri (cran-uri "classInt" version))
13138 (sha256
13139 (base32
13140 "1b1lqhpzxm6b8pza8l3s0cxy74mm9y45lcd3354i2v3bg8m7mply"))))
13141 (properties `((upstream-name . "classInt")))
13142 (build-system r-build-system)
13143 (propagated-inputs
13144 `(("r-class" ,r-class)
13145 ("r-e1071" ,r-e1071)
13146 ("r-kernsmooth" ,r-kernsmooth)))
13147 (native-inputs
13148 `(("gfortran" ,gfortran)
13149 ("r-knitr" ,r-knitr)))
13150 (home-page "https://github.com/r-spatial/classInt/")
13151 (synopsis "Choose univariate class intervals")
13152 (description
13153 "This package provides selected commonly used methods for choosing
13154 univariate class intervals for mapping or other graphics purposes.")
13155 (license license:gpl2+)))
13156
13157 (define-public r-spdata
13158 (package
13159 (name "r-spdata")
13160 (version "0.3.5")
13161 (source
13162 (origin
13163 (method url-fetch)
13164 (uri (cran-uri "spData" version))
13165 (sha256
13166 (base32
13167 "09l9j1vjbfyc8mikb8kliqmdjkg4xigq3zhdx98mv51flh5q87lh"))))
13168 (properties `((upstream-name . "spData")))
13169 (build-system r-build-system)
13170 (propagated-inputs
13171 `(("r-raster" ,r-raster)
13172 ("r-sp" ,r-sp)))
13173 (home-page "https://github.com/Nowosad/spData")
13174 (synopsis "Datasets for spatial analysis")
13175 (description
13176 "This a package containing diverse spatial datasets for demonstrating,
13177 benchmarking and teaching spatial data analysis. It includes R data of class
13178 @code{sf}, @code{Spatial}, and @code{nb}. It also contains data stored in a
13179 range of file formats including GeoJSON, ESRI Shapefile and GeoPackage. Some
13180 of the datasets are designed to illustrate specific analysis techniques.
13181 @code{cycle_hire()} and @code{cycle_hire_osm()}, for example, are designed to
13182 illustrate point pattern analysis techniques.")
13183 (license license:cc0)))
13184
13185 (define-public r-learnbayes
13186 (package
13187 (name "r-learnbayes")
13188 (version "2.15.1")
13189 (source
13190 (origin
13191 (method url-fetch)
13192 (uri (cran-uri "LearnBayes" version))
13193 (sha256
13194 (base32
13195 "0ch54v2zz2yyyk0lvn5rfikdmyz1qh9j1wk3585wl8v58mc0h4cv"))))
13196 (properties `((upstream-name . "LearnBayes")))
13197 (build-system r-build-system)
13198 (home-page "https://cran.r-project.org/web/packages/LearnBayes")
13199 (synopsis "Functions for learning Bayesian inference")
13200 (description
13201 "This package provides a collection of functions helpful in learning the
13202 basic tenets of Bayesian statistical inference. It contains functions for
13203 summarizing basic one and two parameter posterior distributions and predictive
13204 distributions. It contains MCMC algorithms for summarizing posterior
13205 distributions defined by the user. It also contains functions for regression
13206 models, hierarchical models, Bayesian tests, and illustrations of Gibbs
13207 sampling.")
13208 (license license:gpl2+)))
13209
13210 (define-public r-deldir
13211 (package
13212 (name "r-deldir")
13213 (version "0.1-25")
13214 (source
13215 (origin
13216 (method url-fetch)
13217 (uri (cran-uri "deldir" version))
13218 (sha256
13219 (base32
13220 "0kdglv8rc1pb4ilcid4xc9wpv5kkj2y6x6wg7919k3hya7mz58ph"))))
13221 (build-system r-build-system)
13222 (native-inputs `(("gfortran" ,gfortran)))
13223 (home-page "https://cran.r-project.org/web/packages/deldir")
13224 (synopsis "Delaunay triangulation and Dirichlet (Voronoi) tessellation")
13225 (description
13226 "This package provides tools for calculating the Delaunay triangulation
13227 and the Dirichlet or Voronoi tessellation (with respect to the entire plane)
13228 of a planar point set. It plots triangulations and tessellations in various
13229 ways, clips tessellations to sub-windows, calculates perimeters of
13230 tessellations, and summarizes information about the tiles of the
13231 tessellation.")
13232 (license license:gpl2+)))
13233
13234 (define-public r-sf
13235 (package
13236 (name "r-sf")
13237 (version "0.9-1")
13238 (source
13239 (origin
13240 (method url-fetch)
13241 (uri (cran-uri "sf" version))
13242 (sha256
13243 (base32
13244 "1qghrskqwwlwxmmvkv7knhlr1a32ngyimycasy5gfazgviljsfn4"))))
13245 (build-system r-build-system)
13246 (inputs
13247 `(("gdal" ,gdal)
13248 ("geos" ,geos)
13249 ("proj" ,proj.4)
13250 ("zlib" ,zlib)))
13251 (propagated-inputs
13252 `(("r-classint" ,r-classint)
13253 ("r-dbi" ,r-dbi)
13254 ("r-magrittr" ,r-magrittr)
13255 ("r-rcpp" ,r-rcpp)
13256 ("r-units" ,r-units)))
13257 (native-inputs
13258 `(("pkg-config" ,pkg-config)
13259 ("r-knitr" ,r-knitr)))
13260 (home-page "https://github.com/r-spatial/sf/")
13261 (synopsis "Simple features for R")
13262 (description
13263 "This package provides support for simple features, a standardized way to
13264 encode spatial vector data. It binds to GDAL for reading and writing data, to
13265 GEOS for geometrical operations, and to PROJ for projection conversions and
13266 datum transformations.")
13267 ;; Either of these licenses
13268 (license (list license:gpl2 license:expat))))
13269
13270 (define-public r-spdep
13271 (package
13272 (name "r-spdep")
13273 (version "1.1-3")
13274 (source
13275 (origin
13276 (method url-fetch)
13277 (uri (cran-uri "spdep" version))
13278 (sha256
13279 (base32
13280 "1f8cjffqqc6rnb3n4qym70ca6nz2kvrsd3g587wrqdr79nnbwnrk"))))
13281 (build-system r-build-system)
13282 (propagated-inputs
13283 `(("r-boot" ,r-boot)
13284 ("r-coda" ,r-coda)
13285 ("r-deldir" ,r-deldir)
13286 ("r-expm" ,r-expm)
13287 ("r-gmodels" ,r-gmodels)
13288 ("r-learnbayes" ,r-learnbayes)
13289 ("r-mass" ,r-mass)
13290 ("r-matrix" ,r-matrix)
13291 ("r-nlme" ,r-nlme)
13292 ("r-sf" ,r-sf)
13293 ("r-sp" ,r-sp)
13294 ("r-spdata" ,r-spdata)))
13295 (home-page "https://github.com/r-spatial/spdep/")
13296 (synopsis "Spatial dependence: weighting schemes, statistics and models")
13297 (description
13298 "This package provides a collection of functions to create spatial
13299 weights matrix objects from polygon contiguities, from point patterns by
13300 distance and tessellations, for summarizing these objects, and for permitting
13301 their use in spatial data analysis, including regional aggregation by minimum
13302 spanning tree.")
13303 (license license:gpl2+)))
13304
13305 (define-public r-adegenet
13306 (package
13307 (name "r-adegenet")
13308 (version "2.1.2")
13309 (source
13310 (origin
13311 (method url-fetch)
13312 (uri (cran-uri "adegenet" version))
13313 (sha256
13314 (base32
13315 "01fgrgbiddz2q4l3mx637hhwbs7r0c43yw7vpwl8p8pwbm3nykz0"))))
13316 (build-system r-build-system)
13317 (propagated-inputs
13318 `(("r-ade4" ,r-ade4)
13319 ("r-ape" ,r-ape)
13320 ("r-boot" ,r-boot)
13321 ("r-dplyr" ,r-dplyr)
13322 ("r-ggplot2" ,r-ggplot2)
13323 ("r-igraph" ,r-igraph)
13324 ("r-mass" ,r-mass)
13325 ("r-reshape2" ,r-reshape2)
13326 ("r-seqinr" ,r-seqinr)
13327 ("r-shiny" ,r-shiny)
13328 ("r-spdep" ,r-spdep)
13329 ("r-vegan" ,r-vegan)))
13330 (home-page "https://github.com/thibautjombart/adegenet")
13331 (synopsis "Exploratory analysis of genetic and genomic data")
13332 (description
13333 "This package provides a toolset for the exploration of genetic and
13334 genomic data. Adegenet provides formal (S4) classes for storing and handling
13335 various genetic data, including genetic markers with varying ploidy and
13336 hierarchical population structure (@code{genind} class), alleles counts by
13337 populations (@code{genpop}), and genome-wide SNP data (@code{genlight}). It
13338 also implements original multivariate methods (DAPC, sPCA), graphics,
13339 statistical tests, simulation tools, distance and similarity measures, and
13340 several spatial methods. A range of both empirical and simulated datasets is
13341 also provided to illustrate various methods.")
13342 (license license:gpl2+)))
13343
13344 (define-public r-pegas
13345 (package
13346 (name "r-pegas")
13347 (version "0.13")
13348 (source
13349 (origin
13350 (method url-fetch)
13351 (uri (cran-uri "pegas" version))
13352 (sha256
13353 (base32 "002i7s4g0nhnq0v05gs0yssqiyhpq2f7rw2rhn31hsbgxc86frvy"))))
13354 (build-system r-build-system)
13355 (propagated-inputs
13356 `(("r-adegenet" ,r-adegenet)
13357 ("r-ape" ,r-ape)))
13358 (home-page "http://ape-package.ird.fr/pegas.html")
13359 (synopsis "Population and evolutionary genetics analysis system")
13360 (description
13361 "This package provides functions for reading, writing, plotting,
13362 analysing, and manipulating allelic and haplotypic data, including from VCF
13363 files, and for the analysis of population nucleotide sequences and
13364 micro-satellites including coalescent analyses, linkage disequilibrium,
13365 population structure (Fst, Amova) and equilibrium (HWE), haplotype networks,
13366 minimum spanning tree and network, and median-joining networks.")
13367 (license license:gpl2+)))
13368
13369 (define-public r-rmetasim
13370 (package
13371 (name "r-rmetasim")
13372 (version "3.1.14")
13373 (source
13374 (origin
13375 (method url-fetch)
13376 (uri (cran-uri "rmetasim" version))
13377 (sha256
13378 (base32
13379 "0rdkhfgyr97r2d1kd9g8ipb2pn563qxm1y4m9z678q0kqan2ddl0"))))
13380 (build-system r-build-system)
13381 (propagated-inputs
13382 `(("r-ade4" ,r-ade4)
13383 ("r-adegenet" ,r-adegenet)
13384 ("r-gtools" ,r-gtools)
13385 ("r-pegas" ,r-pegas)))
13386 (home-page "https://cran.r-project.org/web/packages/rmetasim")
13387 (synopsis "Individual-based population genetic simulation environment")
13388 (description
13389 "This package provides an interface between R and the metasim simulation
13390 engine. The simulation environment is documented in: Strand, A.(2002),
13391 Metasim 1.0: an individual-based environment for simulating population
13392 genetics of complex population dynamics.")
13393 ;; Any GPL version
13394 (license license:gpl2+)))
13395
13396 (define-public r-genetics
13397 (package
13398 (name "r-genetics")
13399 (version "1.3.8.1.2")
13400 (source
13401 (origin
13402 (method url-fetch)
13403 (uri (cran-uri "genetics" version))
13404 (sha256
13405 (base32
13406 "1v0ylnia6c44v356dsmnkx6054vcxazpzsrdh3yph5ch5vg6gjrh"))))
13407 (build-system r-build-system)
13408 (propagated-inputs
13409 `(("r-combinat" ,r-combinat)
13410 ("r-gdata" ,r-gdata)
13411 ("r-gtools" ,r-gtools)
13412 ("r-mass" ,r-mass)
13413 ("r-mvtnorm" ,r-mvtnorm)))
13414 (home-page "https://cran.r-project.org/web/packages/genetics/")
13415 (synopsis "Population genetics")
13416 (description
13417 "This package provides classes and methods for handling genetic data.
13418 It includes classes to represent genotypes and haplotypes at single markers up
13419 to multiple markers on multiple chromosomes. Function include allele
13420 frequencies, flagging homo/heterozygotes, flagging carriers of certain
13421 alleles, estimating and testing for Hardy-Weinberg disequilibrium, estimating
13422 and testing for linkage disequilibrium, ...")
13423 ;; Any GPL version.
13424 (license license:gpl2+)))
13425
13426 (define-public r-snp-plotter
13427 (package
13428 (name "r-snp-plotter")
13429 (version "0.5.1")
13430 (source
13431 (origin
13432 (method url-fetch)
13433 (uri (cran-uri "snp.plotter" version))
13434 (sha256
13435 (base32
13436 "16apsqvkah5l0d5qcwp3lq2jspkb6n62wzr0wskmj84jblx483vv"))))
13437 (properties `((upstream-name . "snp.plotter")))
13438 (build-system r-build-system)
13439 (propagated-inputs `(("r-genetics" ,r-genetics)))
13440 (home-page "https://cran.r-project.org/web/packages/snp.plotter/")
13441 (synopsis "Plot p-values using single SNP and/or haplotype data")
13442 (description
13443 "This package helps you create plots of p-values using single SNP and/or
13444 haplotype data. Main features of the package include options to display a
13445 @dfn{linkage disequilibrium} (LD) plot and the ability to plot multiple
13446 datasets simultaneously. Plots can be created using global and/or individual
13447 haplotype p-values along with single SNP p-values. Images are created as
13448 either PDF/EPS files.")
13449 (license license:gpl2+)))
13450
13451 (define-public r-polspline
13452 (package
13453 (name "r-polspline")
13454 (version "1.1.17")
13455 (source
13456 (origin
13457 (method url-fetch)
13458 (uri (cran-uri "polspline" version))
13459 (sha256
13460 (base32 "0c7fnxpqpy3hibiim4yib6l6bq363s97wwvllxp4lp8h06fjcyyn"))))
13461 (build-system r-build-system)
13462 (native-inputs `(("gfortran" ,gfortran)))
13463 (home-page "https://cran.r-project.org/web/packages/polspline/")
13464 (synopsis "Polynomial spline routines")
13465 (description
13466 "This package provides routines for the polynomial spline fitting
13467 routines hazard regression, hazard estimation with flexible tails, logspline,
13468 lspec, polyclass, and polymars.")
13469 (license license:gpl2+)))
13470
13471 (define-public r-rms
13472 (package
13473 (name "r-rms")
13474 (version "5.1-4")
13475 (source
13476 (origin
13477 (method url-fetch)
13478 (uri (cran-uri "rms" version))
13479 (sha256
13480 (base32 "19knh1sw0icw6jh9wfb2hq5jf49i2qfvp9myvqm5paa495689x9q"))))
13481 (build-system r-build-system)
13482 (propagated-inputs
13483 `(("r-ggplot2" ,r-ggplot2)
13484 ("r-hmisc" ,r-hmisc)
13485 ("r-htmltable" ,r-htmltable)
13486 ("r-htmltools" ,r-htmltools)
13487 ("r-lattice" ,r-lattice)
13488 ("r-multcomp" ,r-multcomp)
13489 ("r-nlme" ,r-nlme)
13490 ("r-polspline" ,r-polspline)
13491 ("r-quantreg" ,r-quantreg)
13492 ("r-rpart" ,r-rpart)
13493 ("r-sparsem" ,r-sparsem)
13494 ("r-survival" ,r-survival)))
13495 (native-inputs `(("gfortran" ,gfortran)))
13496 (home-page "http://biostat.mc.vanderbilt.edu/rms")
13497 (synopsis "Regression modeling strategies")
13498 (description
13499 "This is a package for regression modeling, testing, estimation,
13500 validation, graphics, prediction, and typesetting by storing enhanced model
13501 design attributes in the fit. The rms package is a collection of functions
13502 that assist with and streamline modeling. It also contains functions for
13503 binary and ordinal logistic regression models, ordinal models for continuous Y
13504 with a variety of distribution families, and the Buckley-James multiple
13505 regression model for right-censored responses, and implements penalized
13506 maximum likelihood estimation for logistic and ordinary linear models. The
13507 package works with almost any regression model, but it was especially written
13508 to work with binary or ordinal regression models, Cox regression, accelerated
13509 failure time models, ordinary linear models, the Buckley-James model,
13510 generalized least squares for serially or spatially correlated observations,
13511 generalized linear models, and quantile regression.")
13512 (license license:gpl2+)))
13513
13514 (define-public r-haplo-stats
13515 (package
13516 (name "r-haplo-stats")
13517 (version "1.7.9")
13518 (source
13519 (origin
13520 (method url-fetch)
13521 (uri (cran-uri "haplo.stats" version))
13522 (sha256
13523 (base32
13524 "19kxascqq5qz0zdxx0w837ji207y1z2ggxkl4vmlbay03k2dw2mx"))))
13525 (properties `((upstream-name . "haplo.stats")))
13526 (build-system r-build-system)
13527 (propagated-inputs
13528 `(("r-rms" ,r-rms)))
13529 (native-inputs
13530 `(("r-r-rsp" ,r-r-rsp))) ; for vignettes
13531 (home-page "https://www.mayo.edu/research/labs/statistical-genetics-genetic-epidemiology/software")
13532 (synopsis "Analysis of haplotypes when linkage phase is ambiguous")
13533 (description
13534 "This package provides routines for the analysis of indirectly measured
13535 haplotypes. The statistical methods assume that all subjects are unrelated
13536 and that haplotypes are ambiguous (due to unknown linkage phase of the genetic
13537 markers). The main functions are: @code{haplo.em()}, @code{haplo.glm()},
13538 @code{haplo.score()}, and @code{haplo.power()}; all of which have detailed
13539 examples in the vignette.")
13540 (license license:gpl2+)))
13541
13542 (define-public r-bqtl
13543 (package
13544 (name "r-bqtl")
13545 (version "1.0-32")
13546 (source
13547 (origin
13548 (method url-fetch)
13549 (uri (cran-uri "bqtl" version))
13550 (sha256
13551 (base32
13552 "0jjqgsm9fmvz5nkgz608xfljjpmaf4rs4f7kxvpqn4b1l9s5lhci"))))
13553 (build-system r-build-system)
13554 (native-inputs `(("gfortran" ,gfortran)))
13555 (home-page "http://famprevmed.ucsd.edu/faculty/cberry/bqtl/")
13556 (synopsis "Bayesian QTL mapping toolkit")
13557 (description
13558 "This is a QTL mapping toolkit for inbred crosses and recombinant inbred
13559 lines. It includes maximum likelihood and Bayesian tools.")
13560 (license license:gpl2+)))
13561
13562 (define-public r-ibdreg
13563 (package
13564 (name "r-ibdreg")
13565 (version "0.2.5")
13566 (source
13567 (origin
13568 (method url-fetch)
13569 (uri (cran-uri "ibdreg" version))
13570 (sha256
13571 (base32
13572 "1kaa5q1byi30wzr0mw4w2cv1ssxprzcwf91wrpqwkgcsdy7dkh2g"))))
13573 (build-system r-build-system)
13574 (home-page "https://www.mayo.edu/research/labs/\
13575 statistical-genetics-genetic-epidemiology/software")
13576 (synopsis "Regression methods for IBD linkage with covariates")
13577 (description
13578 "This package provides a method to test genetic linkage with covariates
13579 by regression methods with response IBD sharing for relative pairs. Account
13580 for correlations of IBD statistics and covariates for relative pairs within
13581 the same pedigree.")
13582 (license license:gpl2+)))
13583
13584 (define-public r-dlmap
13585 (package
13586 (name "r-dlmap")
13587 (version "1.13")
13588 (source
13589 (origin
13590 (method url-fetch)
13591 (uri (cran-uri "dlmap" version))
13592 (sha256
13593 (base32
13594 "0s6wlkggkm3qndwyvw72xv1n0mcjb7ss3ajbq2ll6rv30splq0db"))))
13595 (build-system r-build-system)
13596 (propagated-inputs
13597 `(("r-ibdreg" ,r-ibdreg)
13598 ("r-mgcv" ,r-mgcv)
13599 ("r-nlme" ,r-nlme)
13600 ("r-qtl" ,r-qtl)
13601 ("r-wgaim" ,r-wgaim)))
13602 (home-page "https://cran.r-project.org/web/packages/dlmap/")
13603 (synopsis "Detection localization mapping for QTL")
13604 (description
13605 "This is package for QTL mapping in a mixed model framework with separate
13606 detection and localization stages. The first stage detects the number of QTL
13607 on each chromosome based on the genetic variation due to grouped markers on
13608 the chromosome; the second stage uses this information to determine the most
13609 likely QTL positions. The mixed model can accommodate general fixed and
13610 random effects, including spatial effects in field trials and pedigree
13611 effects. It is applicable to backcrosses, doubled haploids, recombinant
13612 inbred lines, F2 intercrosses, and association mapping populations.")
13613 (license license:gpl2)))
13614
13615 (define-public r-ldheatmap
13616 (package
13617 (name "r-ldheatmap")
13618 (version "0.99-7")
13619 (source
13620 (origin
13621 (method url-fetch)
13622 (uri (cran-uri "LDheatmap" version))
13623 (sha256
13624 (base32
13625 "1r0j8bihi5z1x0sgaf7dwzpsw9i0nc1vylvipvc0cia2ka1lr9dc"))))
13626 (properties `((upstream-name . "LDheatmap")))
13627 (build-system r-build-system)
13628 (propagated-inputs
13629 `(("r-genetics" ,r-genetics)
13630 ("r-rcpp" ,r-rcpp)
13631 ("r-snpstats" ,r-snpstats)))
13632 (home-page "https://stat.sfu.ca/statgen/research/ldheatmap.html")
13633 (synopsis "Graphical display of pairwise linkage disequilibria between SNPs")
13634 (description
13635 "This package provides tools to produce a graphical display, as a heat
13636 map, of measures of pairwise linkage disequilibria between SNPs. Users may
13637 optionally include the physical locations or genetic map distances of each SNP
13638 on the plot.")
13639 (license license:gpl3)))
13640
13641 (define-public r-hwde
13642 (package
13643 (name "r-hwde")
13644 (version "0.67")
13645 (source
13646 (origin
13647 (method url-fetch)
13648 (uri (cran-uri "hwde" version))
13649 (sha256
13650 (base32
13651 "0wb2f9i5qi7w77ygh8bvydfpr7j5x8dyvnnhdkajaz0wdcpkyaqy"))))
13652 (build-system r-build-system)
13653 (home-page "https://cran.r-project.org/web/packages/hwde/")
13654 (synopsis "Models and tests for departure from Hardy-Weinberg equilibrium")
13655 (description
13656 "This package fits models for genotypic disequilibria, as described in
13657 Huttley and Wilson (2000), Weir (1996) and Weir and Wilson (1986). Contrast
13658 terms are available that account for first order interactions between loci.
13659 It also implements, for a single locus in a single population, a conditional
13660 exact test for Hardy-Weinberg equilibrium.")
13661 (license license:gpl2+)))
13662
13663 (define-public r-tdthap
13664 (package
13665 (name "r-tdthap")
13666 (version "1.1-11")
13667 (source
13668 (origin
13669 (method url-fetch)
13670 (uri (cran-uri "tdthap" version))
13671 (sha256
13672 (base32
13673 "15qlj2bivvz3pizd8dq34wczbkbxhzqh3cqp1ixkdkprlyvcxj5k"))))
13674 (build-system r-build-system)
13675 (home-page "https://cran.r-project.org/web/packages/tdthap/")
13676 (synopsis "TDT tests for extended haplotypes")
13677 (description
13678 "Functions and examples are provided for transmission/disequilibrium
13679 tests for extended marker haplotypes, as in Clayton, D. and Jones, H. (1999)
13680 \"Transmission/disequilibrium tests for extended marker haplotypes\".")
13681 (license license:artistic2.0)))
13682
13683 (define-public r-sparql
13684 (package
13685 (name "r-sparql")
13686 (version "1.16")
13687 (source (origin
13688 (method url-fetch)
13689 (uri (cran-uri "SPARQL" version))
13690 (sha256
13691 (base32
13692 "0gak1q06yyhdmcxb2n3v0h9gr1vqd0viqji52wpw211qp6r6dcrc"))))
13693 (properties `((upstream-name . "SPARQL")))
13694 (build-system r-build-system)
13695 (propagated-inputs
13696 `(("r-rcurl" ,r-rcurl)
13697 ("r-xml" ,r-xml)))
13698 (home-page "https://cran.r-project.org/web/packages/SPARQL")
13699 (synopsis "SPARQL client for R")
13700 (description "This package provides an interface to use SPARQL to pose
13701 SELECT or UPDATE queries to an end-point.")
13702 ;; The only license indication is found in the DESCRIPTION file,
13703 ;; which states GPL-3. So we cannot assume GPLv3+.
13704 (license license:gpl3)))
13705
13706 (define-public r-bookdown
13707 (package
13708 (name "r-bookdown")
13709 (version "0.18")
13710 (source (origin
13711 (method url-fetch)
13712 (uri (cran-uri "bookdown" version))
13713 (sha256
13714 (base32
13715 "1my6g16phx21v5cvfqcnjibh3zcv02xkix347aafd6a7r3hnxpq5"))))
13716 (build-system r-build-system)
13717 (propagated-inputs
13718 `(("r-htmltools" ,r-htmltools)
13719 ("r-knitr" ,r-knitr)
13720 ("r-rmarkdown" ,r-rmarkdown)
13721 ("r-tinytex" ,r-tinytex)
13722 ("r-xfun" ,r-xfun)
13723 ("pandoc" ,ghc-pandoc)))
13724 (home-page "https://github.com/rstudio/bookdown")
13725 (synopsis "Authoring books and technical documents with R markdown")
13726 (description "This package provides output formats and utilities for
13727 authoring books and technical documents with R Markdown.")
13728 (license license:gpl3)))
13729
13730 (define-public r-optparse
13731 (package
13732 (name "r-optparse")
13733 (version "1.6.4")
13734 (source
13735 (origin
13736 (method url-fetch)
13737 (uri (cran-uri "optparse" version))
13738 (sha256
13739 (base32
13740 "0wyrc42ja3ab5szx46zmz8lm7vzfqxkjca0m0sms8g9hqbmmay6d"))))
13741 (build-system r-build-system)
13742 (propagated-inputs
13743 `(("r-getopt" ,r-getopt)))
13744 (home-page "https://github.com/trevorld/optparse")
13745 (synopsis "Command line option parser")
13746 (description
13747 "This package provides a command line parser inspired by Python's
13748 @code{optparse} library to be used with Rscript to write shebang scripts
13749 that accept short and long options.")
13750 (license license:gpl2+)))
13751
13752 (define-public r-wgcna
13753 (package
13754 (name "r-wgcna")
13755 (version "1.69")
13756 (source
13757 (origin
13758 (method url-fetch)
13759 (uri (cran-uri "WGCNA" version))
13760 (sha256
13761 (base32
13762 "022hkprnrafvggi8pkjffkvk1qlnibmbbxxrni00wkrdbga5589f"))))
13763 (properties `((upstream-name . "WGCNA")))
13764 (build-system r-build-system)
13765 (propagated-inputs
13766 `(("r-annotationdbi" ,r-annotationdbi)
13767 ("r-doparallel" ,r-doparallel)
13768 ("r-dynamictreecut" ,r-dynamictreecut)
13769 ("r-fastcluster" ,r-fastcluster)
13770 ("r-foreach" ,r-foreach)
13771 ("r-go-db" ,r-go-db)
13772 ("r-hmisc" ,r-hmisc)
13773 ("r-impute" ,r-impute)
13774 ("r-rcpp" ,r-rcpp)
13775 ("r-survival" ,r-survival)
13776 ("r-matrixstats" ,r-matrixstats)
13777 ("r-preprocesscore" ,r-preprocesscore)))
13778 (home-page
13779 "http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/Rpackages/WGCNA/")
13780 (synopsis "Weighted correlation network analysis")
13781 (description
13782 "This package provides functions necessary to perform Weighted
13783 Correlation Network Analysis on high-dimensional data. It includes functions
13784 for rudimentary data cleaning, construction and summarization of correlation
13785 networks, module identification and functions for relating both variables and
13786 modules to sample traits. It also includes a number of utility functions for
13787 data manipulation and visualization.")
13788 (license license:gpl2+)))
13789
13790 (define-public r-kernlab
13791 (package
13792 (name "r-kernlab")
13793 (version "0.9-29")
13794 (source
13795 (origin
13796 (method url-fetch)
13797 (uri (cran-uri "kernlab" version))
13798 (sha256
13799 (base32 "0vqhndl4zm7pvkfvq0f6i9cbrm7pij6kmdp7d7w39pa100x6knn3"))))
13800 (build-system r-build-system)
13801 (home-page "https://cran.r-project.org/web/packages/kernlab")
13802 (synopsis "Kernel-based machine learning tools")
13803 (description
13804 "This package provides kernel-based machine learning methods for
13805 classification, regression, clustering, novelty detection, quantile regression
13806 and dimensionality reduction. Among other methods @code{kernlab} includes
13807 Support Vector Machines, Spectral Clustering, Kernel PCA, Gaussian Processes
13808 and a QP solver.")
13809 (license license:gpl2)))
13810
13811 (define-public r-hierfstat
13812 (package
13813 (name "r-hierfstat")
13814 (version "0.04-22")
13815 (source
13816 (origin
13817 (method url-fetch)
13818 (uri (cran-uri "hierfstat" version))
13819 (sha256
13820 (base32
13821 "1fav2v2996v5kb1ffa6v5wxfm921syxg6as034vd3j4jfhdibyfx"))))
13822 (build-system r-build-system)
13823 (propagated-inputs
13824 `(("r-ade4" ,r-ade4)
13825 ("r-adegenet" ,r-adegenet)
13826 ("r-gtools" ,r-gtools)))
13827 (home-page "https://cran.r-project.org/web/packages/hierfstat/")
13828 (synopsis "Estimation and tests of hierarchical F-statistics")
13829 (description
13830 "This package allows the estimation of hierarchical F-statistics from
13831 haploid or diploid genetic data with any numbers of levels in the hierarchy,
13832 following the algorithm of Yang (Evolution, 1998, 52(4):950-956). Functions
13833 are also given to test via randomisations the significance of each F and
13834 variance components, using the likelihood-ratio statistics G.")
13835 (license license:gpl2+)))
13836
13837 (define-public r-hapassoc
13838 (package
13839 (name "r-hapassoc")
13840 (version "1.2-8")
13841 (source
13842 (origin
13843 (method url-fetch)
13844 (uri (cran-uri "hapassoc" version))
13845 (sha256
13846 (base32
13847 "0qs5jl0snzfchgpp6pabncwywxcmi743g91jvjiyyzw0lw85yv4s"))))
13848 (build-system r-build-system)
13849 (home-page "https://stat.sfu.ca/statgen/research/hapassoc.html")
13850 (synopsis "Inference of trait associations with SNP haplotypes")
13851 (description
13852 "Hapassoc performs likelihood inference of trait associations with
13853 haplotypes and other covariates in @dfn{generalized linear models} (GLMs). The
13854 functions are developed primarily for data collected in cohort or
13855 cross-sectional studies. They can accommodate uncertain haplotype phase and
13856 handle missing genotypes at some SNPs.")
13857 (license license:gpl2)))
13858
13859 (define-public r-sampling
13860 (package
13861 (name "r-sampling")
13862 (version "2.8")
13863 (source
13864 (origin
13865 (method url-fetch)
13866 (uri (cran-uri "sampling" version))
13867 (sha256
13868 (base32
13869 "06pj7dan0mknpsblmlnk7am78qrnwgnql5vvx7vmbfvib7rj6s9m"))))
13870 (build-system r-build-system)
13871 (propagated-inputs
13872 `(("r-lpsolve" ,r-lpsolve)
13873 ("r-mass" ,r-mass)))
13874 (home-page "https://cran.r-project.org/web/packages/sampling/")
13875 (synopsis "Survey sampling")
13876 (description
13877 "This package provides functions for drawing and calibrating samples.")
13878 (license license:gpl2+)))
13879
13880 (define-public r-r2html
13881 (package
13882 (name "r-r2html")
13883 (version "2.3.2")
13884 (source
13885 (origin
13886 (method url-fetch)
13887 (uri (cran-uri "R2HTML" version))
13888 (sha256
13889 (base32
13890 "00kxny7hajs9r2kw63qk7d03ggdxx2j1g8vbrmzp806y8aczvik9"))))
13891 (properties `((upstream-name . "R2HTML")))
13892 (build-system r-build-system)
13893 (home-page "https://github.com/nalimilan/R2HTML")
13894 (synopsis "HTML export for R objects")
13895 (description
13896 "This package includes HTML functions and methods to write in an HTML
13897 file. Thus, making HTML reports is easy. It includes a function that allows
13898 redirection on the fly, which appears to be very useful for teaching purposes,
13899 as the student can keep a copy of the produced output to keep all that they
13900 did during the course. The package comes with a vignette describing how to
13901 write HTML reports for statistical analysis. Finally, a driver for Sweave
13902 parses HTML flat files containing R code and to automatically write
13903 the corresponding outputs (tables and graphs).")
13904 (license license:gpl2+)))
13905
13906 (define-public r-rjava
13907 (package
13908 (name "r-rjava")
13909 (version "0.9-12")
13910 (source
13911 (origin
13912 (method url-fetch)
13913 (uri (cran-uri "rJava" version))
13914 (sha256
13915 (base32
13916 "03vv0pj6san03c51iyqsyb1rwh3097dfpl2s8iswzzmc7k3shj12"))))
13917 (properties `((upstream-name . "rJava")))
13918 (build-system r-build-system)
13919 (arguments
13920 `(#:modules ((guix build utils)
13921 (guix build r-build-system)
13922 (ice-9 match))
13923 #:phases
13924 (modify-phases %standard-phases
13925 (add-after 'unpack 'set-JAVA_HOME
13926 (lambda* (#:key inputs #:allow-other-keys)
13927 (let ((jdk (assoc-ref inputs "jdk")))
13928 (setenv "JAVA_HOME" jdk)
13929 (setenv "JAVA" (which "java"))
13930 (setenv "JAR" (which "jar"))
13931 (setenv "JAVAC" (which "javac"))
13932 (setenv "JAVAH" (which "javah"))
13933 (setenv "JAVA_CPPFLAGS"
13934 (string-append "-I" jdk "/include "
13935 "-I" jdk "/include/linux"))
13936 (match (find-files (string-append jdk "/jre/lib/") "libjvm.so")
13937 ((lib) (setenv "JAVA_LIBS" lib))
13938 (_ (error "Could not find libjvm.so"))))
13939 #t)))))
13940 (inputs
13941 `(("icu4c" ,icu4c)
13942 ("jdk" ,icedtea-8 "jdk")
13943 ("pcre" ,pcre)
13944 ("zlib" ,zlib)))
13945 (home-page "https://www.rforge.net/rJava/")
13946 (synopsis "Low-Level R to Java interface")
13947 (description
13948 "This package provides a low-level interface to the Java VM very much
13949 like .C/.Call and friends. It allows the creation of objects, calling methods
13950 and accessing fields.")
13951 (license license:gpl2)))
13952
13953 (define-public r-svmisc
13954 (package
13955 (name "r-svmisc")
13956 (version "1.1.0")
13957 (source
13958 (origin
13959 (method url-fetch)
13960 (uri (cran-uri "svMisc" version))
13961 (sha256
13962 (base32
13963 "01r2a73wx2sh1njky961fxabx5wgddqqjqba6vjg0f3h8r3abmn2"))))
13964 (properties `((upstream-name . "svMisc")))
13965 (build-system r-build-system)
13966 (home-page "https://github.com/SciViews/svMisc")
13967 (synopsis "Miscellaneous functions for SciViews")
13968 (description
13969 "This package provides miscellaneous functions for SciViews or general
13970 use, including tools to manage a temporary environment attached to the search
13971 path for temporary variables you do not want to @code{save()} or
13972 @code{load()}; test the current platform; showing progress bars, etc.")
13973 (license license:gpl2)))
13974
13975 (define-public r-xyz
13976 (package
13977 (name "r-xyz")
13978 (version "0.2")
13979 (source
13980 (origin
13981 (method url-fetch)
13982 (uri (cran-uri "xyz" version))
13983 (sha256
13984 (base32
13985 "13w4sb4pvgciwr8wsz785dafj2k2kpx7znz46r5d32wx88vkycp4"))))
13986 (build-system r-build-system)
13987 (propagated-inputs
13988 `(("r-rcpp" ,r-rcpp)))
13989 (home-page "https://cran.r-project.org/web/packages/xyz/")
13990 (synopsis "Algorithm for fast interaction search in high-dimensional data")
13991 (description
13992 "High dimensional interaction search by brute force requires a quadratic
13993 computational cost in the number of variables. The xyz algorithm provably
13994 finds strong interactions in almost linear time. For details of the algorithm
13995 see: G. Thanei, N. Meinshausen and R. Shah (2016). The xyz algorithm for fast
13996 interaction search in high-dimensional data.")
13997 ;; Any version of the GPL.
13998 (license license:gpl2+)))
13999
14000 (define-public r-rttf2pt1
14001 (package
14002 (name "r-rttf2pt1")
14003 (version "1.3.8")
14004 (source
14005 (origin
14006 (method url-fetch)
14007 (uri (cran-uri "Rttf2pt1" version))
14008 (sha256
14009 (base32
14010 "0b3f2zkmbyshn19cnaaf042d0zwf43l9jnkqizfhxxwb93a4c1jn"))))
14011 (properties `((upstream-name . "Rttf2pt1")))
14012 (build-system r-build-system)
14013 (home-page "https://github.com/wch/Rttf2pt1")
14014 (synopsis "Font conversion utility")
14015 (description
14016 "This package contains the program @code{ttf2pt1}, for use with the
14017 @code{extrafont} package.")
14018 ;; Most of the files are covered under the Expat license. Some files are
14019 ;; covered under BSD-3. Deviations for individual files are recorded in
14020 ;; the LICENSE file.
14021 (license (list license:bsd-3 license:expat
14022 (license:non-copyleft "file://LICENSE")))))
14023
14024 (define-public r-extrafontdb
14025 (package
14026 (name "r-extrafontdb")
14027 (version "1.0")
14028 (source
14029 (origin
14030 (method url-fetch)
14031 (uri (cran-uri "extrafontdb" version))
14032 (sha256
14033 (base32
14034 "115n42hfvv5h4nn4cfkfmkmn968py4lpy8zd0d6w5yylwpzbm8gs"))))
14035 (build-system r-build-system)
14036 (home-page "https://github.com/wch/extrafontdb")
14037 (synopsis "Database for the extrafont package")
14038 (description
14039 "This package holds the database for the @code{extrafont} package.")
14040 (license license:gpl2)))
14041
14042 (define-public r-extrafont
14043 (package
14044 (name "r-extrafont")
14045 (version "0.17")
14046 (source
14047 (origin
14048 (method url-fetch)
14049 (uri (cran-uri "extrafont" version))
14050 (sha256
14051 (base32
14052 "0b9k2n9sk23bh45hjgnkxpjyvpdrz1hx7kmxvmb4nhlhm1wpsv9g"))))
14053 (build-system r-build-system)
14054 (propagated-inputs
14055 `(("r-extrafontdb" ,r-extrafontdb)
14056 ("r-rttf2pt1" ,r-rttf2pt1)))
14057 (home-page "https://github.com/wch/extrafont")
14058 (synopsis "Tools for using fonts in R")
14059 (description
14060 "The extrafont package makes it easier to use fonts other than the basic
14061 PostScript fonts that R uses. Fonts that are imported into extrafont can be
14062 used with PDF or PostScript output files. There are two hurdles for using
14063 fonts in PDF (or Postscript) output files:
14064
14065 @enumerate
14066 @item Making R aware of the font and the dimensions of the characters.
14067 @item Embedding the fonts in the PDF file so that the PDF can be displayed
14068 properly on a device that doesn't have the font. This is usually needed if
14069 you want to print the PDF file or share it with others.
14070 @end enumerate
14071
14072 The extrafont package makes both of these things easier.")
14073 (license license:gpl2)))
14074
14075 (define-public r-xkcd
14076 (package
14077 (name "r-xkcd")
14078 (version "0.0.6")
14079 (source
14080 (origin
14081 (method url-fetch)
14082 (uri (cran-uri "xkcd" version))
14083 (sha256
14084 (base32
14085 "1z2y0ihn68ppay7xkglhw7djki5654g6z4bbpyy41if57z9q554f"))))
14086 (build-system r-build-system)
14087 (propagated-inputs
14088 `(("r-extrafont" ,r-extrafont)
14089 ("r-ggplot2" ,r-ggplot2)
14090 ("r-hmisc" ,r-hmisc)))
14091 (home-page "https://cran.r-project.org/web/packages/xkcd/")
14092 (synopsis "Plot ggplot2 graphics in the XKCD style")
14093 (description
14094 "This package provides the means to plot ggplot2 graphs in the style of
14095 the XKCD web comic.")
14096 (license license:gpl3)))
14097
14098 (define-public r-msigdbr
14099 (package
14100 (name "r-msigdbr")
14101 (version "7.0.1")
14102 (source
14103 (origin
14104 (method url-fetch)
14105 (uri (cran-uri "msigdbr" version))
14106 (sha256
14107 (base32
14108 "19p8z617m3my8la7n1qgb1s2msf940r372im3q30qkbcx3qxg3sd"))))
14109 (build-system r-build-system)
14110 (propagated-inputs
14111 `(("r-dplyr" ,r-dplyr)
14112 ("r-magrittr" ,r-magrittr)
14113 ("r-rlang" ,r-rlang)
14114 ("r-tibble" ,r-tibble)))
14115 (home-page "https://github.com/igordot/msigdbr")
14116 (synopsis "MSigDB gene sets for multiple organisms")
14117 (description
14118 "This package provides the @dfn{Molecular Signatures Database} (MSigDB)
14119 gene sets typically used with the @dfn{Gene Set Enrichment Analysis} (GSEA)
14120 software in a standard R data frame with key-value pairs. Included are the
14121 original human gene symbols and Entrez IDs as well as the equivalents for
14122 various frequently studied model organisms such as mouse, rat, pig, fly, and
14123 yeast.")
14124 ;; The package is covered under the Expat license, but the upstream MSigDB
14125 ;; files are made available under the Creative Commons Attribution 4.0
14126 ;; International license.
14127 (license (list license:expat license:cc-by4.0))))
14128
14129 (define-public r-gridgraphics
14130 (package
14131 (name "r-gridgraphics")
14132 (version "0.5-0")
14133 (source
14134 (origin
14135 (method url-fetch)
14136 (uri (cran-uri "gridGraphics" version))
14137 (sha256
14138 (base32
14139 "0rlyc3xk8kfrfzbfd8n4javq3yxqd7lsfmi4q5n6s61srnrl6c1r"))))
14140 (properties `((upstream-name . "gridGraphics")))
14141 (build-system r-build-system)
14142 (home-page "https://github.com/pmur002/gridgraphics")
14143 (synopsis "Redraw base graphics using @code{grid} graphics")
14144 (description
14145 "This package provides functions to convert a page of plots drawn with
14146 the @code{graphics} package into identical output drawn with the @code{grid}
14147 package. The result looks like the original @code{graphics}-based plot, but
14148 consists of @code{grid} grobs and viewports that can then be manipulated with
14149 @code{grid} functions (e.g., edit grobs and revisit viewports).")
14150 (license license:gpl2+)))
14151
14152 (define-public r-farver
14153 (package
14154 (name "r-farver")
14155 (version "2.0.3")
14156 (source
14157 (origin
14158 (method url-fetch)
14159 (uri (cran-uri "farver" version))
14160 (sha256
14161 (base32
14162 "1k75v07dsfkjra2gsgxg9s55cw3b46b1nh960kqphq7cg7gr058f"))))
14163 (build-system r-build-system)
14164 (home-page "https://github.com/thomasp85/farver")
14165 (synopsis "Vectorized color conversion and comparison")
14166 (description
14167 "The encoding of color can be handled in many different ways, using
14168 different color spaces. As different color spaces have different uses,
14169 efficient conversion between these representations are important. This
14170 package provides a set of functions that gives access to very fast color space
14171 conversion and comparisons implemented in C++, and offers 100-fold speed
14172 improvements over the @code{convertColor} function in the @code{grDevices}
14173 package.")
14174 (license license:expat)))
14175
14176 (define-public r-ggplotify
14177 (package
14178 (name "r-ggplotify")
14179 (version "0.0.5")
14180 (source
14181 (origin
14182 (method url-fetch)
14183 (uri (cran-uri "ggplotify" version))
14184 (sha256
14185 (base32
14186 "0pfnp4lrissf21z7867kdm6slr979kchyva8iaf83i1302kscph3"))))
14187 (build-system r-build-system)
14188 (propagated-inputs
14189 `(("r-ggplot2" ,r-ggplot2)
14190 ("r-gridgraphics" ,r-gridgraphics)
14191 ("r-rvcheck" ,r-rvcheck)))
14192 (native-inputs
14193 `(("r-knitr" ,r-knitr)))
14194 (home-page "https://github.com/GuangchuangYu/ggplotify")
14195 (synopsis "Convert plots to @code{grob} or @code{ggplot} object")
14196 (description
14197 "This package provides tools to convert plot function calls (using
14198 expression or formula) to @code{grob} or @code{ggplot} objects that are
14199 compatible with the @code{grid} and @code{ggplot2} environment. With this
14200 package, we are able to e.g. use @code{cowplot} to align plots produced by
14201 @code{base} graphics, @code{grid}, @code{lattice}, @code{vcd} etc. by
14202 converting them to @code{ggplot} objects.")
14203 (license license:artistic2.0)))
14204
14205 (define-public r-triebeard
14206 (package
14207 (name "r-triebeard")
14208 (version "0.3.0")
14209 (source
14210 (origin
14211 (method url-fetch)
14212 (uri (cran-uri "triebeard" version))
14213 (sha256
14214 (base32
14215 "1hqyz57gph02c9fdc07lxz113bbklif3g18sw8jan6pakhhdc7dz"))))
14216 (build-system r-build-system)
14217 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
14218 (home-page "https://github.com/Ironholds/triebeard/")
14219 (synopsis "Radix trees in Rcpp")
14220 (description
14221 "Radix trees, or tries, are key-value data structures optimized for
14222 efficient lookups, similar in purpose to hash tables. This package provides
14223 an implementation of radix trees for use in R programming and in developing
14224 packages with Rcpp.")
14225 (license license:expat)))
14226
14227 (define-public r-tweenr
14228 (package
14229 (name "r-tweenr")
14230 (version "1.0.1")
14231 (source
14232 (origin
14233 (method url-fetch)
14234 (uri (cran-uri "tweenr" version))
14235 (sha256
14236 (base32
14237 "0sq90pbln6lkc2q3zflhkxxwpqdw5dd7igrxhdnlynkdrmi83mpg"))))
14238 (build-system r-build-system)
14239 (propagated-inputs
14240 `(("r-farver" ,r-farver)
14241 ("r-magrittr" ,r-magrittr)
14242 ("r-rcpp" ,r-rcpp)
14243 ("r-rlang" ,r-rlang)))
14244 (home-page "https://github.com/thomasp85/tweenr")
14245 (synopsis "Interpolate data for smooth animations")
14246 (description
14247 "In order to create smooth animation between states of data, tweening is
14248 necessary. This package provides a range of functions for creating tweened
14249 data that can be used as basis for animation. Furthermore it adds a number of
14250 vectorized interpolaters for common R data types such as numeric, date and
14251 color.")
14252 (license license:expat)))
14253
14254 (define-public r-polyclip
14255 (package
14256 (name "r-polyclip")
14257 (version "1.10-0")
14258 (source
14259 (origin
14260 (method url-fetch)
14261 (uri (cran-uri "polyclip" version))
14262 (sha256
14263 (base32
14264 "0jyk4maqiblvj095jd59dr76kbniyli3v3xvy0a72ljszq6vrnkl"))))
14265 (build-system r-build-system)
14266 (native-inputs `(("pkg-config" ,pkg-config)))
14267 (home-page "http://www.angusj.com/delphi/clipper.php")
14268 (synopsis "Polygon clipping")
14269 (description
14270 "This package provides an R port of the library Clipper. It performs
14271 polygon clipping operations (intersection, union, set minus, set difference)
14272 for polygonal regions of arbitrary complexity, including holes. It computes
14273 offset polygons (spatial buffer zones, morphological dilations, Minkowski
14274 dilations) for polygonal regions and polygonal lines. It computes the
14275 Minkowski Sum of general polygons. There is a function for removing
14276 self-intersections from polygon data.")
14277 (license license:boost1.0)))
14278
14279 (define-public r-urltools
14280 (package
14281 (name "r-urltools")
14282 (version "1.7.3")
14283 (source
14284 (origin
14285 (method url-fetch)
14286 (uri (cran-uri "urltools" version))
14287 (sha256
14288 (base32
14289 "04x3my655dd287cbsszbnf75q0swmjlxxrblcsay7a8n3df3a830"))))
14290 (build-system r-build-system)
14291 (propagated-inputs
14292 `(("r-rcpp" ,r-rcpp)
14293 ("r-triebeard" ,r-triebeard)))
14294 (home-page "https://github.com/Ironholds/urltools/")
14295 (synopsis "Vectorized tools for URL handling and parsing")
14296 (description
14297 "This package provides a toolkit for all URL-handling needs, including
14298 encoding and decoding, parsing, parameter extraction and modification. All
14299 functions are designed to be both fast and entirely vectorized. It is
14300 intended to be useful for people dealing with web-related datasets, such as
14301 server-side logs, although may be useful for other situations involving large
14302 sets of URLs.")
14303 (license license:expat)))
14304
14305 (define-public r-ggforce
14306 (package
14307 (name "r-ggforce")
14308 (version "0.3.1")
14309 (source
14310 (origin
14311 (method url-fetch)
14312 (uri (cran-uri "ggforce" version))
14313 (sha256
14314 (base32
14315 "04926cqrda6psvy2nzkkw4czwyxdp7fnxg76byp14v12kgd72lm0"))))
14316 (build-system r-build-system)
14317 (propagated-inputs
14318 `(("r-ggplot2" ,r-ggplot2)
14319 ("r-gtable" ,r-gtable)
14320 ("r-mass" ,r-mass)
14321 ("r-polyclip" ,r-polyclip)
14322 ("r-rcpp" ,r-rcpp)
14323 ("r-rcppeigen" ,r-rcppeigen)
14324 ("r-rlang" ,r-rlang)
14325 ("r-scales" ,r-scales)
14326 ("r-tidyselect" ,r-tidyselect)
14327 ("r-tweenr" ,r-tweenr)
14328 ("r-withr" ,r-withr)))
14329 (home-page "https://ggforce.data-imaginist.com")
14330 (synopsis "Accelerating ggplot2")
14331 (description
14332 "The aim of the ggplot2 package is to aid in visual data investigations.
14333 This focus has led to a lack of facilities for composing specialized plots.
14334 Thi package aims to be a collection of mainly new statistics and geometries
14335 that fills this gap.")
14336 (license license:expat)))
14337
14338 (define-public r-europepmc
14339 (package
14340 (name "r-europepmc")
14341 (version "0.3")
14342 (source
14343 (origin
14344 (method url-fetch)
14345 (uri (cran-uri "europepmc" version))
14346 (sha256
14347 (base32
14348 "1ngqs1sqzkbwv98dd5z4cxj8bnz41wyd0g060a2vpqi3s99s4i2h"))))
14349 (build-system r-build-system)
14350 (propagated-inputs
14351 `(("r-dplyr" ,r-dplyr)
14352 ("r-httr" ,r-httr)
14353 ("r-jsonlite" ,r-jsonlite)
14354 ("r-plyr" ,r-plyr)
14355 ("r-progress" ,r-progress)
14356 ("r-purrr" ,r-purrr)
14357 ("r-urltools" ,r-urltools)
14358 ("r-xml2" ,r-xml2)))
14359 (home-page "https://github.com/ropensci/europepmc/")
14360 (synopsis "R Interface to the Europe PubMed Central RESTful Web Service")
14361 (description
14362 "This package provides an R Client for the
14363 @url{https://europepmc.org/RestfulWebService,Europe PubMed Central RESTful Web
14364 Service}. It gives access to both metadata on life science literature and
14365 open access full texts. Europe PMC indexes all PubMed content and other
14366 literature sources including Agricola, a bibliographic database of citations
14367 to the agricultural literature, or Biological Patents. In addition to
14368 bibliographic metadata, the client allows users to fetch citations and
14369 reference lists. Links between life-science literature and other EBI
14370 databases, including ENA, PDB or ChEMBL are also accessible.")
14371 (license license:gpl3)))
14372
14373 (define-public r-ggraph
14374 (package
14375 (name "r-ggraph")
14376 (version "2.0.2")
14377 (source
14378 (origin
14379 (method url-fetch)
14380 (uri (cran-uri "ggraph" version))
14381 (sha256
14382 (base32
14383 "1ckq82hg52vr2wydkqv2wrppgjyvddd6bwqzrngqlm7j71xapjl0"))))
14384 (build-system r-build-system)
14385 (propagated-inputs
14386 `(("r-digest" ,r-digest)
14387 ("r-dplyr" ,r-dplyr)
14388 ("r-ggforce" ,r-ggforce)
14389 ("r-ggplot2" ,r-ggplot2)
14390 ("r-ggrepel" ,r-ggrepel)
14391 ("r-graphlayouts" ,r-graphlayouts)
14392 ("r-gtable" ,r-gtable)
14393 ("r-igraph" ,r-igraph)
14394 ("r-mass" ,r-mass)
14395 ("r-rcpp" ,r-rcpp)
14396 ("r-rlang" ,r-rlang)
14397 ("r-scales" ,r-scales)
14398 ("r-tidygraph" ,r-tidygraph)
14399 ("r-viridis" ,r-viridis)))
14400 (native-inputs
14401 `(("r-knitr" ,r-knitr)))
14402 (home-page "https://cran.r-project.org/web/packages/ggraph/")
14403 (synopsis "Implementation of grammar of graphics for graphs and networks")
14404 (description
14405 "The grammar of graphics as implemented in ggplot2 is a poor fit for
14406 graph and network visualizations due to its reliance on tabular data input.
14407 The ggraph package is an extension of the ggplot2 API tailored to graph
14408 visualizations and provides the same flexible approach to building up plots
14409 layer by layer.")
14410 (license license:gpl3)))
14411
14412 (define-public r-varselrf
14413 (package
14414 (name "r-varselrf")
14415 (version "0.7-8")
14416 (source
14417 (origin
14418 (method url-fetch)
14419 (uri (cran-uri "varSelRF" version))
14420 (sha256
14421 (base32
14422 "0h49rl1j13yfh97rsfsyh9s2c4wajny4rzms2qw77d0cavxqg53i"))))
14423 (properties `((upstream-name . "varSelRF")))
14424 (build-system r-build-system)
14425 (propagated-inputs
14426 `(("r-randomforest" ,r-randomforest)))
14427 (home-page "https://www.ligarto.org/rdiaz/software/software")
14428 (synopsis "Variable selection using random forests")
14429 (description
14430 "This package provides tools for the variable selection from random
14431 forests using both backwards variable elimination (for the selection of small
14432 sets of non-redundant variables) and selection based on the importance
14433 spectrum (somewhat similar to scree plots; for the selection of large,
14434 potentially highly-correlated variables). The main applications are in
14435 high-dimensional data (e.g., microarray data, and other genomics and
14436 proteomics applications).")
14437 (license license:gpl2+)))
14438
14439 (define-public r-pamr
14440 (package
14441 (name "r-pamr")
14442 (version "1.56.1")
14443 (source
14444 (origin
14445 (method url-fetch)
14446 (uri (cran-uri "pamr" version))
14447 (sha256
14448 (base32
14449 "0ycpgkk23y3zzkb42n2skcyl35ps1n7jmyzfj7pbxr3f6gr2grfh"))))
14450 (build-system r-build-system)
14451 (propagated-inputs
14452 `(("r-cluster" ,r-cluster)
14453 ("r-survival" ,r-survival)))
14454 (native-inputs `(("gfortran" ,gfortran)))
14455 (home-page "https://cran.r-project.org/web/packages/pamr/")
14456 (synopsis "Prediction Analysis for Microarrays")
14457 (description
14458 "This package provides some functions for sample classification in
14459 microarrays.")
14460 (license license:gpl2)))
14461
14462 (define-public r-rda
14463 (package
14464 (name "r-rda")
14465 (version "1.0.2-2.1")
14466 (source
14467 (origin
14468 (method url-fetch)
14469 (uri (cran-uri "rda" version))
14470 (sha256
14471 (base32
14472 "1y4fawslr3i6crjaxhsdb47kfsqkyszdx6avq3r5far5a4pvc639"))))
14473 (build-system r-build-system)
14474 (home-page "https://cran.r-project.org/web/packages/rda/")
14475 (synopsis "Shrunken centroids regularized discriminant analysis")
14476 (description
14477 "This package provides tools for shrunken centroids regularized
14478 discriminant analysis for the purpose of classifying high dimensional data.")
14479 (license license:gpl2+)))
14480
14481 (define-public r-ggvis
14482 (package
14483 (name "r-ggvis")
14484 (version "0.4.5")
14485 (source
14486 (origin
14487 (method url-fetch)
14488 (uri (cran-uri "ggvis" version))
14489 (sha256
14490 (base32
14491 "091i9f17912j8qcyxppjgwzjnyqj7769ixs9d2gjg6f2clskqdw2"))))
14492 (build-system r-build-system)
14493 (propagated-inputs
14494 `(("r-assertthat" ,r-assertthat)
14495 ("r-dplyr" ,r-dplyr)
14496 ("r-htmltools" ,r-htmltools)
14497 ("r-jsonlite" ,r-jsonlite)
14498 ("r-lazyeval" ,r-lazyeval)
14499 ("r-magrittr" ,r-magrittr)
14500 ("r-shiny" ,r-shiny)))
14501 (home-page "https://ggvis.rstudio.com/")
14502 (synopsis "Interactive grammar of graphics")
14503 (description
14504 "This package is a data visualization package for R providing an
14505 implementation of an interactive grammar of graphics, taking the best parts of
14506 ggplot2, combining them with the reactive framework of Shiny and drawing web
14507 graphics using Vega.")
14508 (license license:gpl2)))
14509
14510 (define-public r-gbm
14511 (package
14512 (name "r-gbm")
14513 (version "2.1.5")
14514 (source
14515 (origin
14516 (method url-fetch)
14517 (uri (cran-uri "gbm" version))
14518 (sha256
14519 (base32
14520 "0vs6ljaqhwwpgr8wlbhmm4v147rd82kl16rpaijqiylxcc8dxyq6"))))
14521 (build-system r-build-system)
14522 (propagated-inputs
14523 `(("r-gridextra" ,r-gridextra)
14524 ("r-lattice" ,r-lattice)
14525 ("r-survival" ,r-survival)))
14526 (home-page "https://github.com/gbm-developers/gbm")
14527 (synopsis "Generalized boosted regression models")
14528 (description
14529 "This package is an implementation of extensions to Freund and Schapire's
14530 AdaBoost algorithm and Friedman's gradient boosting machine. It includes
14531 regression methods for least squares, absolute loss, t-distribution loss,
14532 quantile regression, logistic, multinomial logistic, Poisson, Cox proportional
14533 hazards partial likelihood, AdaBoost exponential loss, Huberized hinge loss,
14534 and Learning to Rank measures (LambdaMart).")
14535 (license license:gpl2+)))
14536
14537 (define-public r-threejs
14538 (package
14539 (name "r-threejs")
14540 (version "0.3.3")
14541 (source
14542 (origin
14543 (method url-fetch)
14544 (uri (cran-uri "threejs" version))
14545 (sha256
14546 (base32
14547 "1711h351nzxfkbbdwvfzyhciyvi9c6wx3jq1g97lzcqgnb45kivn"))))
14548 (build-system r-build-system)
14549 (arguments
14550 `(#:modules ((guix build utils)
14551 (guix build r-build-system)
14552 (srfi srfi-1)
14553 (ice-9 popen))
14554 #:phases
14555 (modify-phases %standard-phases
14556 (add-after 'unpack 'process-javascript
14557 (lambda* (#:key inputs #:allow-other-keys)
14558 (with-directory-excursion "inst"
14559 (call-with-values
14560 (lambda ()
14561 (unzip2
14562 `((,(assoc-ref inputs "js-jquery")
14563 "htmlwidgets/lib/jquery/jquery.min.js")
14564 (,(assoc-ref inputs "js-threejs-111")
14565 "htmlwidgets/lib/threejs-111/three.min.js"))))
14566 (lambda (sources targets)
14567 (for-each (lambda (source target)
14568 (format #t "Processing ~a --> ~a~%"
14569 source target)
14570 (delete-file target)
14571 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
14572 (call-with-output-file target
14573 (lambda (port)
14574 (dump-port minified port)))))
14575 sources targets))))
14576 #t)))))
14577 (propagated-inputs
14578 `(("r-base64enc" ,r-base64enc)
14579 ("r-crosstalk" ,r-crosstalk)
14580 ("r-htmlwidgets" ,r-htmlwidgets)
14581 ("r-igraph" ,r-igraph)))
14582 (native-inputs
14583 `(("uglify-js" ,uglify-js)
14584 ("js-jquery"
14585 ,(origin
14586 (method url-fetch)
14587 (uri "https://code.jquery.com/jquery-1.12.4.js")
14588 (sha256
14589 (base32
14590 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
14591 ("js-threejs-111"
14592 ,(origin
14593 (method url-fetch)
14594 (uri "https://raw.githubusercontent.com/mrdoob/three.js/r111/build/three.js")
14595 (sha256
14596 (base32
14597 "1cxdkw3plmlw1xvhbx5dm39gqczgzxip2dm887v6whhsxqxl9cky"))))))
14598 (home-page "https://bwlewis.github.io/rthreejs")
14599 (synopsis "Interactive 3D scatter plots, networks and globes")
14600 (description
14601 "Create interactive 3D scatter plots, network plots, and globes in R
14602 using the three.js visualization library.")
14603 (license license:expat)))
14604
14605 (define-public r-mlbench
14606 (package
14607 (name "r-mlbench")
14608 (version "2.1-1")
14609 (source
14610 (origin
14611 (method url-fetch)
14612 (uri (cran-uri "mlbench" version))
14613 (sha256
14614 (base32
14615 "1rp035qxfgh5ail92zjh9jh57dj0b8babw3wsg29v8ricpal30bl"))))
14616 (build-system r-build-system)
14617 (home-page "https://cran.r-project.org/web/packages/mlbench/")
14618 (synopsis "Machine learning benchmark problems")
14619 (description
14620 "This package provides a collection of artificial and real-world machine
14621 learning benchmark problems, including, e.g., several data sets from the UCI
14622 repository.")
14623 (license license:gpl2)))
14624
14625 (define-public r-mpm
14626 (package
14627 (name "r-mpm")
14628 (version "1.0-22")
14629 (source
14630 (origin
14631 (method url-fetch)
14632 (uri (cran-uri "mpm" version))
14633 (sha256
14634 (base32
14635 "0wijw8v0wmbfrda5564cmnp788qmlkk21yn5cp5qk8aprm9l1fnk"))))
14636 (build-system r-build-system)
14637 (propagated-inputs
14638 `(("r-kernsmooth" ,r-kernsmooth)
14639 ("r-mass" ,r-mass)))
14640 (home-page "http://mpm.r-forge.r-project.org")
14641 (synopsis "Multivariate projection methods")
14642 (description
14643 "This is a package for exploratory graphical analysis of multivariate
14644 data, specifically gene expression data with different projection methods:
14645 principal component analysis, correspondence analysis, spectral map
14646 analysis.")
14647 (license license:gpl2+)))
14648
14649 (define-public r-png
14650 (package
14651 (name "r-png")
14652 (version "0.1-7")
14653 (source (origin
14654 (method url-fetch)
14655 (uri (cran-uri "png" version))
14656 (sha256
14657 (base32
14658 "0g2mcp55lvvpx4kd3mn225mpbxqcq73wy5qx8b4lyf04iybgysg2"))))
14659 (build-system r-build-system)
14660 (inputs
14661 `(("libpng" ,libpng)
14662 ("zlib" ,zlib)))
14663 (home-page "https://www.rforge.net/png/")
14664 (synopsis "Read and write PNG images")
14665 (description
14666 "This package provides an easy and simple way to read, write and display
14667 bitmap images stored in the PNG format. It can read and write both files and
14668 in-memory raw vectors.")
14669 ;; Any of these GPL versions.
14670 (license (list license:gpl2 license:gpl3))))
14671
14672 (define-public r-ggcorrplot
14673 (package
14674 (name "r-ggcorrplot")
14675 (version "0.1.3")
14676 (source
14677 (origin
14678 (method url-fetch)
14679 (uri (cran-uri "ggcorrplot" version))
14680 (sha256
14681 (base32
14682 "0hi9lz121ya1l2lbm7rqlxg6fs6bvxck396dngnidrhl5fvqb41b"))))
14683 (build-system r-build-system)
14684 (propagated-inputs
14685 `(("r-ggplot2" ,r-ggplot2)
14686 ("r-reshape2" ,r-reshape2)))
14687 (home-page "http://www.sthda.com/english/wiki/ggcorrplot")
14688 (synopsis "Visualization of a correlation matrix using ggplot2")
14689 (description
14690 "The ggcorrplot package can be used to visualize easily a correlation
14691 matrix using ggplot2. It provides a solution for reordering the correlation
14692 matrix and displays the significance level on the plot. It also includes a
14693 function for computing a matrix of correlation p-values.")
14694 (license license:gpl2)))
14695
14696 (define-public r-flexdashboard
14697 (package
14698 (name "r-flexdashboard")
14699 (version "0.5.1.1")
14700 (source
14701 (origin
14702 (method url-fetch)
14703 (uri (cran-uri "flexdashboard" version))
14704 (sha256
14705 (base32
14706 "0fy3nbrr67zqgd44r2mc850s5sp0hzfcw3zqs15m8kxzj1aw067x"))))
14707 (build-system r-build-system)
14708 (arguments
14709 `(#:modules ((guix build utils)
14710 (guix build r-build-system)
14711 (srfi srfi-1)
14712 (srfi srfi-26)
14713 (ice-9 popen)
14714 (ice-9 textual-ports))
14715 #:phases
14716 (modify-phases %standard-phases
14717 (add-after 'unpack 'process-javascript
14718 (lambda* (#:key inputs #:allow-other-keys)
14719 (with-directory-excursion "inst"
14720 ;; Concatenate all components of prism.js
14721 (let ((contents (string-join
14722 (map (lambda (name)
14723 (call-with-input-file
14724 (assoc-ref inputs name)
14725 get-string-all))
14726 (list "js-prism"
14727 "js-prism-r"
14728 "js-prism-line-numbers"))
14729 "\n")))
14730 (call-with-output-file "prism-src.js"
14731 (cut display contents <>)))
14732 (call-with-values
14733 (lambda ()
14734 (unzip2
14735 `(("www/stickytableheaders/jquery.stickytableheaders.js"
14736 "www/stickytableheaders/jquery.stickytableheaders.min.js")
14737 ("www/sly/sly.js"
14738 "www/sly/sly.min.js")
14739 ("prism-src.js"
14740 "www/prism/prism.js")
14741 (,(assoc-ref inputs "js-raphael")
14742 "htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
14743 (,(assoc-ref inputs "js-featherlight")
14744 "www/featherlight/featherlight.min.js"))))
14745 (lambda (sources targets)
14746 (for-each (lambda (source target)
14747 (format #t "Processing ~a --> ~a~%"
14748 source target)
14749 (delete-file target)
14750 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
14751 (call-with-output-file target
14752 (lambda (port)
14753 (dump-port minified port)))))
14754 sources targets))))
14755 #t)))))
14756 (propagated-inputs
14757 `(("r-htmltools" ,r-htmltools)
14758 ("r-htmlwidgets" ,r-htmlwidgets)
14759 ("r-jsonlite" ,r-jsonlite)
14760 ("r-knitr" ,r-knitr)
14761 ("r-rmarkdown" ,r-rmarkdown)
14762 ("r-shiny" ,r-shiny)))
14763 (native-inputs
14764 `(("uglify-js" ,uglify-js)
14765 ("js-raphael"
14766 ,(origin
14767 (method url-fetch)
14768 (uri "https://raw.githubusercontent.com/DmitryBaranovskiy/raphael/v2.1.4/raphael.js")
14769 (sha256
14770 (base32
14771 "1h4c4akrgcj7wra9j1z1rv2406j0yf68y9c0wg8v7w9ibw2iwf1x"))))
14772 ("js-prism"
14773 ,(origin
14774 (method url-fetch)
14775 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/prism.js")
14776 (sha256
14777 (base32
14778 "0gqa9irbp9k8p5r3d98cszajzhjnssnl43nrsc5aiy7ki52z500c"))))
14779 ("js-prism-r"
14780 ,(origin
14781 (method url-fetch)
14782 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/components/prism-r.js")
14783 (sha256
14784 (base32
14785 "1x31glci7wdgr2305njy0bm2lncb0jyn0j1s2g72rqi29xid9aki"))))
14786 ("js-prism-line-numbers"
14787 ,(origin
14788 (method url-fetch)
14789 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/plugins/line-numbers/prism-line-numbers.js")
14790 (sha256
14791 (base32
14792 "1543wgf3iynrilyb27jq8px3h5gvfz5xmdib5ik2ki400c1sl991"))))
14793 ("js-featherlight"
14794 ,(origin
14795 (method url-fetch)
14796 (uri "https://raw.githubusercontent.com/noelboss/featherlight/1.3.4/src/featherlight.js")
14797 (sha256
14798 (base32
14799 "14kkhwzvp8rxq2mrck5i0xcm8v5rqwqhwnmncbng8h4qq42zx3sb"))))))
14800 (home-page "https://rmarkdown.rstudio.com/flexdashboard")
14801 (synopsis "R Markdown format for flexible dashboards")
14802 (description
14803 "This package provides an R Markdown format for converting an R Markdown
14804 document to a grid-oriented dashboard. The dashboard flexibly adapts the size
14805 of its components to the containing web page.")
14806 (license license:expat)))
14807
14808 (define-public r-preseqr
14809 (package
14810 (name "r-preseqr")
14811 (version "4.0.0")
14812 (source
14813 (origin
14814 (method url-fetch)
14815 (uri (cran-uri "preseqR" version))
14816 (sha256
14817 (base32
14818 "1g2rnnmi45649vpy6z45v5i3wxm54s138ajqrzwi3a5r7x3xnhq1"))))
14819 (properties `((upstream-name . "preseqR")))
14820 (build-system r-build-system)
14821 (propagated-inputs
14822 `(("r-polynom" ,r-polynom)))
14823 (home-page "https://cran.r-project.org/web/packages/preseqR/")
14824 (synopsis "Predicting species accumulation curves")
14825 (description
14826 "This package can be used to predict the r-species accumulation
14827 curve (r-SAC), which is the number of species represented at least r times as
14828 a function of the sampling effort. When r = 1, the curve is known as the
14829 species accumulation curve, or the library complexity curve in high-throughput
14830 genomic sequencing. The package includes both parametric and nonparametric
14831 methods, as described by Deng C, et al. (2018).")
14832 (license license:gpl3)))
14833
14834 (define-public r-mapplots
14835 (package
14836 (name "r-mapplots")
14837 (version "1.5.1")
14838 (source
14839 (origin
14840 (method url-fetch)
14841 (uri (cran-uri "mapplots" version))
14842 (sha256
14843 (base32
14844 "18s2y66f8vi8g2r8a25zbgp2xm079r8v8qxv0w71h8krycs6vs9p"))))
14845 (build-system r-build-system)
14846 (home-page "https://cran.r-project.org/web/packages/mapplots/")
14847 (synopsis "Data visualization on maps")
14848 (description
14849 "This package helps you create simple maps; add sub-plots like pie plots
14850 to a map or any other plot; format, plot and export gridded data. The package
14851 was developed for displaying fisheries data but most functions can be used for
14852 more generic data visualisation.")
14853 (license license:gpl2+)))
14854
14855 (define-public r-pmcmr
14856 (package
14857 (name "r-pmcmr")
14858 (version "4.3")
14859 (source
14860 (origin
14861 (method url-fetch)
14862 (uri (cran-uri "PMCMR" version))
14863 (sha256
14864 (base32
14865 "09bvdj2h1086r2cgy3myrhlylplxxlliv8nwx09c8kb1vn02i2ij"))))
14866 (properties `((upstream-name . "PMCMR")))
14867 (build-system r-build-system)
14868 (home-page "https://cran.r-project.org/web/packages/PMCMR/")
14869 (synopsis "Calculate pairwise multiple comparisons of mean rank sums")
14870 (description
14871 "This is a deprecated package for calculating pairwise multiple
14872 comparisons of mean rank sums. This package is superseded by the novel
14873 PMCMRplus package. The PMCMR package is no longer maintained, but kept for
14874 compatibility of dependent packages for some time.")
14875 (license license:gpl3+)))
14876
14877 (define-public r-downloader
14878 (package
14879 (name "r-downloader")
14880 (version "0.4")
14881 (source
14882 (origin
14883 (method url-fetch)
14884 (uri (cran-uri "downloader" version))
14885 (sha256
14886 (base32
14887 "1axggnsc27zzgr7snf41j3zd1vp3nfpmq4zj4d01axc709dyg40q"))))
14888 (build-system r-build-system)
14889 (propagated-inputs
14890 `(("r-digest" ,r-digest)))
14891 (home-page "https://github.com/wch/downloader")
14892 (synopsis "Download files over HTTP and HTTPS")
14893 (description
14894 "This package provides a wrapper for the @code{download.file} function,
14895 making it possible to download files over HTTPS across platforms. The
14896 @code{RCurl} package provides this functionality (and much more) but has
14897 external dependencies. This package has is implemented purely in R.")
14898 (license license:gpl2)))
14899
14900 (define-public r-rex
14901 (package
14902 (name "r-rex")
14903 (version "1.1.2")
14904 (source
14905 (origin
14906 (method url-fetch)
14907 (uri (cran-uri "rex" version))
14908 (sha256
14909 (base32
14910 "0alsadgjgass3wr8y5d247j12qqzg454sc84vpskclrkmz778g5x"))))
14911 (build-system r-build-system)
14912 (propagated-inputs
14913 `(("r-lazyeval" ,r-lazyeval)
14914 ("r-magrittr" ,r-magrittr)))
14915 (home-page "https://github.com/kevinushey/rex")
14916 (synopsis "Friendly regular expressions")
14917 (description
14918 "This package provides a friendly interface for the construction of
14919 regular expressions. Regular expressions are a very powerful feature, however
14920 they are often difficult to interpret. Rex allows you to build complex
14921 regular expressions from human readable expressions")
14922 (license license:expat)))
14923
14924 (define-public r-xmlparsedata
14925 (package
14926 (name "r-xmlparsedata")
14927 (version "1.0.3")
14928 (source
14929 (origin
14930 (method url-fetch)
14931 (uri (cran-uri "xmlparsedata" version))
14932 (sha256
14933 (base32
14934 "0gjr3l5z5dp276lchr2649as1rkj56d2mlvbr66yg393zzw50lsh"))))
14935 (properties `((upstream-name . "xmlparsedata")))
14936 (build-system r-build-system)
14937 (home-page "https://github.com/r-lib/xmlparsedata#readme")
14938 (synopsis "Parse data of @code{R} code as an @code{XML} tree")
14939 (description
14940 "This package provides tools to convert the output of
14941 @code{utils::getParseData()} to an @code{XML} tree, that one can search via
14942 @code{XPath}, and is easier to manipulate in general.")
14943 (license license:expat)))
14944
14945 (define-public r-cyclocomp
14946 (package
14947 (name "r-cyclocomp")
14948 (version "1.1.0")
14949 (source
14950 (origin
14951 (method url-fetch)
14952 (uri (cran-uri "cyclocomp" version))
14953 (sha256
14954 (base32
14955 "0gky3svk02wiajw7nfjh30684h3qxili4bvsab0m7b6cggw6bgyd"))))
14956 (properties `((upstream-name . "cyclocomp")))
14957 (build-system r-build-system)
14958 (propagated-inputs
14959 `(("r-callr" ,r-callr)
14960 ("r-crayon" ,r-crayon)
14961 ("r-desc" ,r-desc)
14962 ("r-remotes" ,r-remotes)
14963 ("r-withr" ,r-withr)))
14964 (home-page "https://github.com/MangoTheCat/cyclocomp")
14965 (synopsis "Cyclomatic complexity of R code")
14966 (description
14967 "Cyclomatic complexity is a software metric, used to indicate the
14968 complexity of a program. It is a quantitative measure of the number of
14969 linearly independent paths through a program's source code. This package
14970 provides tools to compute this metric.")
14971 (license license:expat)))
14972
14973 (define-public r-lintr
14974 (package
14975 (name "r-lintr")
14976 (version "2.0.1")
14977 (source
14978 (origin
14979 (method url-fetch)
14980 (uri (cran-uri "lintr" version))
14981 (sha256
14982 (base32
14983 "14yfh641afg6griaadbdciyr3k94fl55s055qwzghgk5gdsj61zy"))))
14984 (properties `((upstream-name . "lintr")))
14985 (build-system r-build-system)
14986 (propagated-inputs
14987 `(("r-codetools" ,r-codetools)
14988 ("r-crayon" ,r-crayon)
14989 ("r-cyclocomp" ,r-cyclocomp)
14990 ("r-digest" ,r-digest)
14991 ("r-httr" ,r-httr)
14992 ("r-jsonlite" ,r-jsonlite)
14993 ("r-knitr" ,r-knitr)
14994 ("r-rex" ,r-rex)
14995 ("r-rstudioapi" ,r-rstudioapi)
14996 ("r-testthat" ,r-testthat)
14997 ("r-xml2" ,r-xml2)
14998 ("r-xmlparsedata" ,r-xmlparsedata)))
14999 (home-page "https://github.com/jimhester/lintr")
15000 (synopsis "Linter for R code")
15001 (description "This package checks adherence to a given style, syntax
15002 errors and possible semantic issues. It supports on the fly checking of R
15003 code edited with @code{RStudio IDE}, @code{Emacs} and @code{Vim}.")
15004 (license license:expat)))
15005
15006 (define-public r-sctransform
15007 (package
15008 (name "r-sctransform")
15009 (version "0.2.1")
15010 (source
15011 (origin
15012 (method url-fetch)
15013 (uri (cran-uri "sctransform" version))
15014 (sha256
15015 (base32
15016 "07v3lzccsrkh1glfxd1q20r8f8gl9ls5az0s1dvxm4vcls0hlhyn"))))
15017 (build-system r-build-system)
15018 (propagated-inputs
15019 `(("r-future-apply" ,r-future-apply)
15020 ("r-ggplot2" ,r-ggplot2)
15021 ("r-gridextra" ,r-gridextra)
15022 ("r-mass" ,r-mass)
15023 ("r-matrix" ,r-matrix)
15024 ("r-rcpp" ,r-rcpp)
15025 ("r-rcppeigen" ,r-rcppeigen)
15026 ("r-reshape2" ,r-reshape2)))
15027 (home-page "https://github.com/ChristophH/sctransform")
15028 (synopsis "Variance stabilizing transformations for Single Cell UMI Data")
15029 (description
15030 "This package provides a normalization method for single-cell UMI count
15031 data using a variance stabilizing transformation. The transformation is based
15032 on a negative binomial regression model with regularized parameters. As part
15033 of the same regression framework, this package also provides functions for
15034 batch correction, and data correction.")
15035 (license license:gpl3)))
15036
15037 (define-public r-styler
15038 (package
15039 (name "r-styler")
15040 (version "1.3.2")
15041 (source
15042 (origin
15043 (method url-fetch)
15044 (uri (cran-uri "styler" version))
15045 (sha256
15046 (base32
15047 "1waglhsy2c53qjgd2qhlzda3z0lbzbwx9fkrfhac41y6h91mgkrz"))))
15048 (build-system r-build-system)
15049 (propagated-inputs
15050 `(("r-backports" ,r-backports)
15051 ("r-cli" ,r-cli)
15052 ("r-magrittr" ,r-magrittr)
15053 ("r-purrr" ,r-purrr)
15054 ("r-r-cache" ,r-r-cache)
15055 ("r-rematch2" ,r-rematch2)
15056 ("r-rlang" ,r-rlang)
15057 ("r-rprojroot" ,r-rprojroot)
15058 ("r-tibble" ,r-tibble)
15059 ("r-withr" ,r-withr)
15060 ("r-xfun" ,r-xfun)))
15061 (home-page "https://github.com/r-lib/styler")
15062 (synopsis "Non-invasive pretty printing of R code")
15063 (description
15064 "This is a package for pretty-printing R code without changing the user's
15065 formatting intent.")
15066 (license license:gpl3)))
15067
15068 (define-public r-scrime
15069 (package
15070 (name "r-scrime")
15071 (version "1.3.5")
15072 (source
15073 (origin
15074 (method url-fetch)
15075 (uri (cran-uri "scrime" version))
15076 (sha256
15077 (base32
15078 "0y2mh9fsffjf3i15bafpasa17z99c1s75r8g6h4hgcwfgpjx75sx"))))
15079 (build-system r-build-system)
15080 (home-page "https://cran.r-project.org/web/packages/scrime/")
15081 (synopsis "Analysis of high-dimensional categorical data such as SNP data")
15082 (description
15083 "This package provides tools for the analysis of high-dimensional data
15084 developed/implemented at the group \"Statistical Complexity Reduction In
15085 Molecular Epidemiology\" (SCRIME). The main focus is on SNP data, but most of
15086 the functions can also be applied to other types of categorical data.")
15087 (license license:gpl2)))
15088
15089 (define-public r-pbmcapply
15090 (package
15091 (name "r-pbmcapply")
15092 (version "1.5.0")
15093 (source
15094 (origin
15095 (method url-fetch)
15096 (uri (cran-uri "pbmcapply" version))
15097 (sha256
15098 (base32
15099 "0i58gcqpnbyvc448qfgm45b7rpbmrnagsvk1h1hsqchbbicfslnz"))))
15100 (build-system r-build-system)
15101 (home-page "https://github.com/kvnkuang/pbmcapply")
15102 (synopsis "Track the progress of apply procedures with a progress bar")
15103 (description
15104 "This light-weight package helps you track and visualize the progress of
15105 parallel versions of vectorized R functions of the @code{mc*apply} family.")
15106 (license license:expat)))
15107
15108 (define-public r-blme
15109 (package
15110 (name "r-blme")
15111 (version "1.0-4")
15112 (source
15113 (origin
15114 (method url-fetch)
15115 (uri (cran-uri "blme" version))
15116 (sha256
15117 (base32
15118 "1ca2b0248k0fj3lczn9shfjplz1sl4ay4v6djldizp2ch2vwdgy2"))))
15119 (build-system r-build-system)
15120 (propagated-inputs `(("r-lme4" ,r-lme4)))
15121 (home-page "https://github.com/vdorie/blme")
15122 (synopsis "Bayesian linear mixed-effects models")
15123 (description
15124 "This package provides tools for maximum a posteriori estimation for
15125 linear and generalized linear mixed-effects models in a Bayesian setting. It
15126 extends the lme4 package.")
15127 (license license:gpl2+)))
15128
15129 (define-public r-batchtools
15130 (package
15131 (name "r-batchtools")
15132 (version "0.9.13")
15133 (source
15134 (origin
15135 (method url-fetch)
15136 (uri (cran-uri "batchtools" version))
15137 (sha256
15138 (base32
15139 "02bwfinwgn5nl638997javig61jmr0ci0qybmprz13jnvmam1yns"))))
15140 (build-system r-build-system)
15141 (propagated-inputs
15142 `(("r-backports" ,r-backports)
15143 ("r-base64url" ,r-base64url)
15144 ("r-brew" ,r-brew)
15145 ("r-checkmate" ,r-checkmate)
15146 ("r-data-table" ,r-data-table)
15147 ("r-digest" ,r-digest)
15148 ("r-fs" ,r-fs)
15149 ("r-progress" ,r-progress)
15150 ("r-r6" ,r-r6)
15151 ("r-rappdirs" ,r-rappdirs)
15152 ("r-stringi" ,r-stringi)
15153 ("r-withr" ,r-withr)))
15154 (native-inputs
15155 `(("r-knitr" ,r-knitr)))
15156 (home-page "https://github.com/mllg/batchtools")
15157 (synopsis "Tools for computation on batch systems")
15158 (description
15159 "As a successor of the packages BatchJobs and BatchExperiments, this
15160 package provides a parallel implementation of the Map function for high
15161 performance computing systems managed by various schedulers. A multicore and
15162 socket mode allow the parallelization on a local machines, and multiple
15163 machines can be hooked up via SSH to create a makeshift cluster. Moreover,
15164 the package provides an abstraction mechanism to define large-scale computer
15165 experiments in a well-organized and reproducible way.")
15166 (license license:lgpl3)))
15167
15168 (define-public r-clue
15169 (package
15170 (name "r-clue")
15171 (version "0.3-57")
15172 (source
15173 (origin
15174 (method url-fetch)
15175 (uri (cran-uri "clue" version))
15176 (sha256
15177 (base32
15178 "05rdcahawxlxci3fjxihjvvh33wqpxw50sx015165ab4nh3rsdkf"))))
15179 (build-system r-build-system)
15180 (propagated-inputs `(("r-cluster" ,r-cluster)))
15181 (home-page "https://cran.r-project.org/web/packages/clue/")
15182 (synopsis "Tools for analyzing cluster ensembles")
15183 (description "Cluster ensembles are collections of individual solutions to
15184 a given clustering problem which are useful or necessary to consider in a wide
15185 range of applications. This R package provides an extensible computational
15186 environment for creating and analyzing cluster ensembles, with basic data
15187 structures for representing partitions and hierarchies, and facilities for
15188 computing on them, including methods for measuring proximity and obtaining
15189 consensus and secondary clusterings.")
15190 (license license:gpl2)))
15191
15192 (define-public r-sitmo
15193 (package
15194 (name "r-sitmo")
15195 (version "2.0.1")
15196 (source
15197 (origin
15198 (method url-fetch)
15199 (uri (cran-uri "sitmo" version))
15200 (sha256
15201 (base32
15202 "0apdhwy3kxs39agsbvx5vn3xsgb22bf3jrwmr2cmqk9kmxbx740c"))))
15203 (build-system r-build-system)
15204 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
15205 (home-page "https://github.com/coatless/sitmo/")
15206 (synopsis "Parallel pseudo random number generator header files")
15207 (description
15208 "This package provides two high quality and fast PPRNGs that may be used
15209 in an OpenMP parallel environment. In addition, there is a generator for one
15210 dimensional low-discrepancy sequence.")
15211 (license license:expat)))
15212
15213 (define-public r-dqrng
15214 (package
15215 (name "r-dqrng")
15216 (version "0.2.1")
15217 (source
15218 (origin
15219 (method url-fetch)
15220 (uri (cran-uri "dqrng" version))
15221 (sha256
15222 (base32
15223 "0rp8q5zijlvaqmpnkwr314w9w40sj4fz7sqsdgsffcfvn42w2jg1"))))
15224 (build-system r-build-system)
15225 (propagated-inputs
15226 `(("r-bh" ,r-bh)
15227 ("r-rcpp" ,r-rcpp)
15228 ("r-sitmo" ,r-sitmo)))
15229 (home-page "https://www.daqana.org/dqrng")
15230 (synopsis "Fast pseudo random number generators")
15231 (description
15232 "Several fast random number generators are provided as C++ header-only
15233 libraries: the PCG family as well as Xoroshiro128+ and Xoshiro256+.
15234 Additionally, fast functions for generating random numbers according to a
15235 uniform, normal and exponential distribution are included. The latter two use
15236 the Ziggurat algorithm originally proposed by Marsaglia and Tsang. These
15237 functions are exported to R and as a C++ interface and are enabled for use
15238 with the default 64 bit generator from the PCG family, Xoroshiro128+ and
15239 Xoshiro256+ as well as the 64 bit version of the 20 rounds Threefry
15240 engine (Salmon et al., 2011) as provided by the package @code{sitmo}.")
15241 ;; This package includes code under CC0 and Apache 2.0 or Expat, but as a
15242 ;; whole is distributed under the terms of the AGPL 3.
15243 (license license:agpl3)))
15244
15245 (define-public r-dalex
15246 (package
15247 (name "r-dalex")
15248 (version "1.0.1")
15249 (source
15250 (origin
15251 (method url-fetch)
15252 (uri (cran-uri "DALEX" version))
15253 (sha256
15254 (base32
15255 "1jbyn57vn6d281a5y15h5d8ljin8cdb9lr7lbgggc950blyfv4g0"))))
15256 (properties `((upstream-name . "DALEX")))
15257 (build-system r-build-system)
15258 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
15259 (home-page "https://pbiecek.github.io/DALEX/")
15260 (synopsis "Descriptive machine learning explanations")
15261 (description
15262 "Machine Learning models are widely used and have various applications in
15263 classification or regression. Models created with boosting, bagging, stacking
15264 or similar techniques are often used due to their high performance, but such
15265 black-box models usually lack interpretability. The DALEX package contains
15266 various explainers that help to understand the link between input variables
15267 and model output.")
15268 ;; Any version of the GPL
15269 (license license:gpl3+)))
15270
15271 (define-public r-enrichr
15272 (package
15273 (name "r-enrichr")
15274 (version "2.1")
15275 (source
15276 (origin
15277 (method url-fetch)
15278 (uri (cran-uri "enrichR" version))
15279 (sha256
15280 (base32
15281 "0ymhzs9d2wl0s9rvbqc1hqb78mlzwhlc7mmijpfqkm5r720pf6m1"))))
15282 (properties `((upstream-name . "enrichR")))
15283 (build-system r-build-system)
15284 (propagated-inputs
15285 `(("r-httr" ,r-httr)
15286 ("r-rjson" ,r-rjson)))
15287 (home-page "https://cran.r-project.org/web/packages/enrichR/")
15288 (synopsis "R Interface to Enrichr database for analyzing gene sets")
15289 (description
15290 "This package provides an R interface to all Enrichr databases, a
15291 web-based tool for analyzing gene sets and returns any enrichment of common
15292 annotated biological functions.")
15293 (license license:gpl2+)))
15294
15295 (define-public r-plot3d
15296 (package
15297 (name "r-plot3d")
15298 (version "1.3")
15299 (source
15300 (origin
15301 (method url-fetch)
15302 (uri (cran-uri "plot3D" version))
15303 (sha256
15304 (base32
15305 "1jfzndnlci9a975qbcv66jiy2l46hs3f2049654x4jp3i4kyrr5r"))))
15306 (properties `((upstream-name . "plot3D")))
15307 (build-system r-build-system)
15308 (propagated-inputs `(("r-misc3d" ,r-misc3d)))
15309 (home-page "https://cran.r-project.org/web/packages/plot3D")
15310 (synopsis "Plot multi-dimensional data")
15311 (description
15312 "This package provides functions for viewing 2D and 3D data, including
15313 perspective plots, slice plots, surface plots, scatter plots, etc. It
15314 includes data sets from oceanography.")
15315 (license license:gpl3+)))
15316
15317 (define-public r-ggfortify
15318 (package
15319 (name "r-ggfortify")
15320 (version "0.4.9")
15321 (source
15322 (origin
15323 (method url-fetch)
15324 (uri (cran-uri "ggfortify" version))
15325 (sha256
15326 (base32
15327 "1p6knrbyaynaqwd939w09hpf1zz1gn95cb46sfgppl8l98krb2h5"))))
15328 (build-system r-build-system)
15329 (propagated-inputs
15330 `(("r-dplyr" ,r-dplyr)
15331 ("r-ggplot2" ,r-ggplot2)
15332 ("r-gridextra" ,r-gridextra)
15333 ("r-scales" ,r-scales)
15334 ("r-stringr" ,r-stringr)
15335 ("r-tibble" ,r-tibble)
15336 ("r-tidyr" ,r-tidyr)))
15337 (native-inputs
15338 `(("r-knitr" ,r-knitr)))
15339 (home-page "https://github.com/sinhrks/ggfortify")
15340 (synopsis "Data visualization tools for statistical analysis results")
15341 (description
15342 "This package provides unified plotting tools for statistics commonly
15343 used, such as GLM, time series, PCA families, clustering and survival
15344 analysis. The package offers a single plotting interface for these analysis
15345 results and plots in a unified style using the @code{ggplot2} package.")
15346 (license license:gpl2)))
15347
15348 (define-public r-refmanager
15349 (package
15350 (name "r-refmanager")
15351 (version "1.2.12")
15352 (source
15353 (origin
15354 (method url-fetch)
15355 (uri (cran-uri "RefManageR" version))
15356 (sha256
15357 (base32
15358 "1hfxa1qacfryk36mpaqdhdgws5jwxiyy489ikd3wa18bp1wz8dkp"))))
15359 (properties `((upstream-name . "RefManageR")))
15360 (build-system r-build-system)
15361 (propagated-inputs
15362 `(("r-bibtex" ,r-bibtex)
15363 ("r-httr" ,r-httr)
15364 ("r-jsonlite" ,r-jsonlite)
15365 ("r-lubridate" ,r-lubridate)
15366 ("r-plyr" ,r-plyr)
15367 ("r-stringr" ,r-stringr)
15368 ("r-xml2" ,r-xml2)))
15369 (home-page "https://github.com/ropensci/RefManageR/")
15370 (synopsis "Straightforward BibTeX and BibLaTeX bibliography management")
15371 (description
15372 "This package provides tools for importing and working with bibliographic
15373 references. It greatly enhances the @code{bibentry} class by providing a
15374 class @code{BibEntry} which stores BibTeX and BibLaTeX references, supports
15375 UTF-8 encoding, and can be easily searched by any field, by date ranges, and
15376 by various formats for name lists (author by last names, translator by full
15377 names, etc.). Entries can be updated, combined, sorted, printed in a number
15378 of styles, and exported. BibTeX and BibLaTeX @code{.bib} files can be read
15379 into R and converted to @code{BibEntry} objects.")
15380 ;; Any of these licenses may be picked.
15381 (license (list license:gpl2 license:gpl3 license:bsd-3))))
15382
15383 (define-public r-citr
15384 (package
15385 (name "r-citr")
15386 (version "0.3.2")
15387 (source
15388 (origin
15389 (method url-fetch)
15390 (uri (cran-uri "citr" version))
15391 (sha256
15392 (base32
15393 "1qbarvafjb8jgkrnrhh6jw7mcglmjwf7dpdiibxf39jkmlhf7las"))))
15394 (build-system r-build-system)
15395 (propagated-inputs
15396 `(("r-assertthat" ,r-assertthat)
15397 ("r-curl" ,r-curl)
15398 ("r-httr" ,r-httr)
15399 ("r-miniui" ,r-miniui)
15400 ("r-refmanager" ,r-refmanager)
15401 ("r-rstudioapi" ,r-rstudioapi)
15402 ("r-shiny" ,r-shiny)
15403 ("r-shinyjs" ,r-shinyjs)
15404 ("r-yaml" ,r-yaml)))
15405 (home-page "https://github.com/crsh/citr")
15406 (synopsis "RStudio add-in to insert Markdown citations")
15407 (description
15408 "This package provides functions and an RStudio add-in that search a
15409 BibTeX or BibLaTeX file to create and insert formatted Markdown citations into
15410 the current document.")
15411 (license license:expat)))
15412
15413 (define-public r-xgboost
15414 (package
15415 (name "r-xgboost")
15416 (version "1.0.0.2")
15417 (source
15418 (origin
15419 (method url-fetch)
15420 (uri (cran-uri "xgboost" version))
15421 (sha256
15422 (base32
15423 "1ld2w51c5fy3bl0kvjn1iplffc4lmin9s9zz5xx7xsm44d6j6kzd"))))
15424 (build-system r-build-system)
15425 (propagated-inputs
15426 `(("r-data-table" ,r-data-table)
15427 ("r-magrittr" ,r-magrittr)
15428 ("r-matrix" ,r-matrix)
15429 ("r-stringi" ,r-stringi)))
15430 (native-inputs
15431 `(("r-knitr" ,r-knitr)))
15432 (home-page "https://github.com/dmlc/xgboost")
15433 (synopsis "Extreme gradient boosting")
15434 (description
15435 "This package provides an R interface to Extreme Gradient Boosting, which
15436 is an efficient implementation of the gradient boosting framework from Chen
15437 and Guestrin (2016). The package includes efficient linear model solver and
15438 tree learning algorithms. The package can automatically do parallel
15439 computation on a single machine. It supports various objective functions,
15440 including regression, classification and ranking. The package is made to be
15441 extensible, so that users are also allowed to define their own objectives
15442 easily.")
15443 (license license:asl2.0)))
15444
15445 (define-public r-umap
15446 (package
15447 (name "r-umap")
15448 (version "0.2.5.0")
15449 (source
15450 (origin
15451 (method url-fetch)
15452 (uri (cran-uri "umap" version))
15453 (sha256
15454 (base32
15455 "0qp8zbh6fn8kn6q2h2lyjgmq3pr6gqwsd8ymqx25px13zjhxch9d"))))
15456 (build-system r-build-system)
15457 (propagated-inputs
15458 `(("r-openssl" ,r-openssl)
15459 ("r-rcpp" ,r-rcpp)
15460 ("r-reticulate" ,r-reticulate)
15461 ("r-rspectra" ,r-rspectra)))
15462 (native-inputs
15463 `(("r-knitr" ,r-knitr)))
15464 (home-page "https://github.com/tkonopka/umap")
15465 (synopsis "Uniform manifold approximation and projection")
15466 (description
15467 "Uniform manifold approximation and projection is a technique for
15468 dimension reduction. This package provides an interface to the UMAP algorithm
15469 in R, including a translation of the original algorithm into R.")
15470 (license license:expat)))
15471
15472 (define-public r-uwot
15473 (package
15474 (name "r-uwot")
15475 (version "0.1.8")
15476 (source
15477 (origin
15478 (method url-fetch)
15479 (uri (cran-uri "uwot" version))
15480 (sha256
15481 (base32
15482 "1jzh8r1h6f7pw7pb1fr32vn6ai9g10s56ahkq0vi77iznihy1rpd"))))
15483 (build-system r-build-system)
15484 (propagated-inputs
15485 `(("r-dqrng" ,r-dqrng)
15486 ("r-fnn" ,r-fnn)
15487 ("r-irlba" ,r-irlba)
15488 ("r-matrix" ,r-matrix)
15489 ("r-rcpp" ,r-rcpp)
15490 ("r-rcppannoy" ,r-rcppannoy)
15491 ("r-rcppprogress" ,r-rcppprogress)
15492 ("r-rspectra" ,r-rspectra)))
15493 (home-page "https://github.com/jlmelville/uwot")
15494 (synopsis "Uniform manifold approximation and projection")
15495 (description
15496 "This package provides an implementation of the Uniform Manifold
15497 Approximation and Projection dimensionality reduction by McInnes et
15498 al. (2018). It also provides means to transform new data and to carry out
15499 supervised dimensionality reduction. An implementation of the related
15500 LargeVis method of Tang et al. (2016) is also provided.")
15501 (license license:gpl3)))
15502
15503 (define-public r-kableextra
15504 (package
15505 (name "r-kableextra")
15506 (version "1.1.0")
15507 (source
15508 (origin
15509 (method url-fetch)
15510 (uri (cran-uri "kableExtra" version))
15511 (sha256
15512 (base32
15513 "1nicvw06xsf3a1f5c10mih07b76m2v5s5h165vmz0qx6n1a3492i"))))
15514 (properties `((upstream-name . "kableExtra")))
15515 (build-system r-build-system)
15516 (propagated-inputs
15517 `(("r-digest" ,r-digest)
15518 ("r-glue" ,r-glue)
15519 ("r-htmltools" ,r-htmltools)
15520 ("r-knitr" ,r-knitr)
15521 ("r-magrittr" ,r-magrittr)
15522 ("r-readr" ,r-readr)
15523 ("r-rmarkdown" ,r-rmarkdown)
15524 ("r-rstudioapi" ,r-rstudioapi)
15525 ("r-rvest" ,r-rvest)
15526 ("r-scales" ,r-scales)
15527 ("r-stringr" ,r-stringr)
15528 ("r-viridislite" ,r-viridislite)
15529 ("r-webshot" ,r-webshot)
15530 ("r-xml2" ,r-xml2)))
15531 (home-page "https://haozhu233.github.io/kableExtra/")
15532 (synopsis "Construct complex tables with pipe syntax")
15533 (description
15534 "Build complex HTML or LaTeX tables using @code{kable()} from
15535 @code{knitr} and the piping syntax from @code{magrittr}. The function
15536 @code{kable()} is a light weight table generator coming from @code{knitr}.
15537 This package simplifies the way to manipulate the HTML or LaTeX codes
15538 generated by @code{kable()} and allows users to construct complex tables and
15539 customize styles using a readable syntax.")
15540 (license license:expat)))
15541
15542 (define-public r-glasso
15543 (package
15544 (name "r-glasso")
15545 (version "1.11")
15546 (source
15547 (origin
15548 (method url-fetch)
15549 (uri (cran-uri "glasso" version))
15550 (sha256
15551 (base32 "02p3612rpydk195n2qr77lp1j2w8zsw1ckkk98c8angm4r5q8dsc"))))
15552 (build-system r-build-system)
15553 (native-inputs `(("gfortran" ,gfortran)))
15554 (home-page "https://statweb.stanford.edu/~tibs/glasso/")
15555 (synopsis "Graphical Lasso: estimation of Gaussian graphical models")
15556 (description
15557 "This is a package for estimation of a sparse inverse covariance matrix
15558 using a lasso (L1) penalty. Facilities are provided for estimates along a
15559 path of values for the regularization parameter.")
15560 (license license:gpl2)))
15561
15562 (define-public r-rhpcblasctl
15563 (package
15564 (name "r-rhpcblasctl")
15565 (version "0.20-17")
15566 (source
15567 (origin
15568 (method url-fetch)
15569 (uri (cran-uri "RhpcBLASctl" version))
15570 (sha256
15571 (base32
15572 "0iwc06blr5sx7rylwczi2jrha8sk8qs0jklflwpidl0zj1jxdggp"))))
15573 (properties `((upstream-name . "RhpcBLASctl")))
15574 (build-system r-build-system)
15575 (home-page "https://prs.ism.ac.jp/~nakama/Rhpc/")
15576 (synopsis "Control the number of threads on BLAS")
15577 (description
15578 "This package allows you to control the number of threads the BLAS
15579 library uses. It is also possible to control the number of threads in
15580 OpenMP.")
15581 (license license:agpl3+)))
15582
15583 (define-public r-lda
15584 (package
15585 (name "r-lda")
15586 (version "1.4.2")
15587 (source
15588 (origin
15589 (method url-fetch)
15590 (uri (cran-uri "lda" version))
15591 (sha256
15592 (base32
15593 "03r4h5kgr8mfy44p66mfj5bp4k00g8zh4a1mhn46jw14pkhs21jn"))))
15594 (build-system r-build-system)
15595 (home-page "https://cran.r-project.org/web/packages/lda/")
15596 (synopsis "Collapsed Gibbs sampling methods for topic models")
15597 (description
15598 "This package implements @dfn{latent Dirichlet allocation} (LDA) and
15599 related models. This includes (but is not limited to) sLDA, corrLDA, and the
15600 mixed-membership stochastic blockmodel. Inference for all of these models is
15601 implemented via a fast collapsed Gibbs sampler written in C. Utility
15602 functions for reading/writing data typically used in topic models, as well as
15603 tools for examining posterior distributions are also included.")
15604 ;; Any version of the LGPL
15605 (license license:lgpl3+)))
15606
15607 (define-public r-rann-l1
15608 (package
15609 (name "r-rann-l1")
15610 (version "2.5.2")
15611 (source
15612 (origin
15613 (method url-fetch)
15614 (uri (cran-uri "RANN.L1" version))
15615 (sha256
15616 (base32
15617 "1hanh3my84mdr5wy6b89fawqzfc184vff1y65wy4l5ld9qza1n44"))))
15618 (properties `((upstream-name . "RANN.L1")))
15619 (build-system r-build-system)
15620 (home-page "https://github.com/jefferis/RANN/tree/master-L1")
15621 (synopsis "Fast nearest neighbour search using L1 metric")
15622 (description
15623 "This package provides tools to find the k nearest neighbours for every
15624 point in a given dataset in O(N log N) time using Arya and Mount's ANN
15625 library. There is support for approximate as well as exact searches, fixed
15626 radius searches and @code{bd} as well as @code{kd} trees. The distance is
15627 computed using the L1 (Manhattan, taxicab) metric.")
15628 (license license:gpl3+)))
15629
15630 (define-public r-leiden
15631 (package
15632 (name "r-leiden")
15633 (version "0.3.3")
15634 (source
15635 (origin
15636 (method url-fetch)
15637 (uri (cran-uri "leiden" version))
15638 (sha256
15639 (base32
15640 "1hh6bmbz6cpqwl4i94gxylgv9x92zbqdg81r8r4ymfy8c70f3df2"))))
15641 (properties `((upstream-name . "leiden")))
15642 (build-system r-build-system)
15643 (propagated-inputs
15644 `(("r-igraph" ,r-igraph)
15645 ("r-matrix" ,r-matrix)
15646 ("r-reticulate" ,r-reticulate)))
15647 (home-page "https://github.com/TomKellyGenetics/leiden")
15648 (synopsis "R implementation of Leiden clustering algorithm")
15649 (description
15650 "This package implements the Python @code{leidenalg} module to be called
15651 in R. It enables clustering using the Leiden algorithm for partitioning a
15652 graph into communities. See also Traag et al (2018) \"From Louvain to Leiden:
15653 guaranteeing well-connected communities.\" <arXiv:1810.08473>.")
15654 (license license:gpl3)))
15655
15656 (define-public r-patchwork
15657 (package
15658 (name "r-patchwork")
15659 (version "1.0.0")
15660 (source
15661 (origin
15662 (method url-fetch)
15663 (uri (cran-uri "patchwork" version))
15664 (sha256
15665 (base32
15666 "0qrwbcswh7ylrmghi17k6wk7w51cz6mcmvcyyd41hy3m2ywmkywb"))))
15667 (build-system r-build-system)
15668 (propagated-inputs
15669 `(("r-ggplot2" ,r-ggplot2)
15670 ("r-gtable" ,r-gtable)))
15671 (native-inputs
15672 `(("r-knitr" ,r-knitr)))
15673 (home-page "https://github.com/thomasp85/patchwork")
15674 (synopsis "Compose ggplot2 plots")
15675 (description
15676 "The @code{ggplot2} package provides a strong API for sequentially
15677 building up a plot, but does not concern itself with composition of multiple
15678 plots. Patchwork is a package that expands the API to allow for arbitrarily
15679 complex composition of plots by providing mathmatical operators for combining
15680 multiple plots.")
15681 (license license:expat)))
15682
15683 (define-public r-liger
15684 (package
15685 (name "r-liger")
15686 (version "0.4.2")
15687 (source
15688 (origin
15689 (method git-fetch)
15690 (uri (git-reference
15691 (url "https://github.com/MacoskoLab/liger.git")
15692 (commit (string-append "v" version))))
15693 (file-name (git-file-name name version))
15694 (sha256
15695 (base32
15696 "16dzwwcpw6n78pxlc5w3kraigki35ix7zhd2cbx5f3y60bbkhlmx"))
15697 (modules '((guix build utils)))
15698 (snippet
15699 '(begin
15700 (delete-file "inst/java/ModularityOptimizer.jar")
15701 #t))))
15702 (build-system r-build-system)
15703 (arguments
15704 `(#:phases
15705 (modify-phases %standard-phases
15706 (add-after 'unpack 'build-java-part
15707 (lambda* (#:key inputs #:allow-other-keys)
15708 (invoke "unzip" (assoc-ref inputs "optimizer-src"))
15709 (for-each (lambda (file) (invoke "javac" file))
15710 (find-files "." "\\.java$"))
15711 (apply invoke "jar" "cf" "inst/java/ModularityOptimizer.jar"
15712 (find-files "." "\\.class$"))
15713 #t)))))
15714 (propagated-inputs
15715 `(("r-cowplot" ,r-cowplot)
15716 ("r-dosnow" ,r-dosnow)
15717 ("r-dplyr" ,r-dplyr)
15718 ("r-fnn" ,r-fnn)
15719 ("r-foreach" ,r-foreach)
15720 ("r-ggplot2" ,r-ggplot2)
15721 ("r-ggrepel" ,r-ggrepel)
15722 ("r-hmisc" ,r-hmisc)
15723 ("r-ica" ,r-ica)
15724 ("r-irlba" ,r-irlba)
15725 ("r-matrix" ,r-matrix)
15726 ("r-mclust" ,r-mclust)
15727 ("r-patchwork" ,r-patchwork)
15728 ("r-plyr" ,r-plyr)
15729 ("r-rann-l1" ,r-rann-l1)
15730 ("r-rcpp" ,r-rcpp)
15731 ("r-rcpparmadillo" ,r-rcpparmadillo)
15732 ("r-riverplot" ,r-riverplot)
15733 ("r-rtsne" ,r-rtsne)
15734 ("r-snow" ,r-snow)))
15735 (native-inputs
15736 `(("jdk" ,icedtea "jdk")
15737 ;; See https://github.com/MacoskoLab/liger/issues/96
15738 ;; The optimizer is released under the Expat license.
15739 ("optimizer-src"
15740 ,(origin
15741 (method url-fetch)
15742 (uri "http://www.ludowaltman.nl/slm/modularity_optimizer_source.zip")
15743 (sha256
15744 (base32
15745 "01hmm6sapcmldvayknqx2w4cav3qv71mwwkdkwj4qgq6dss09g18"))))
15746 ("unzip" ,unzip)
15747 ("r-knitr" ,r-knitr))) ; for vignettes
15748 (home-page "https://github.com/MacoskoLab/liger")
15749 (synopsis "Integrate and analyze multiple single-cell datasets")
15750 (description
15751 "LIGER is a package for integrating and analyzing multiple single-cell
15752 datasets, developed and maintained by the Macosko lab. It relies on
15753 integrative non-negative matrix factorization to identify shared and
15754 dataset-specific factors.")
15755 (license license:gpl3)))
15756
15757 (define-public r-harmony
15758 (package
15759 (name "r-harmony")
15760 (version "0.1")
15761 (source
15762 (origin
15763 (method git-fetch)
15764 (uri (git-reference
15765 (url "https://github.com/immunogenomics/harmony")
15766 (commit version)))
15767 (file-name (git-file-name name version))
15768 (sha256
15769 (base32
15770 "05r401q09rbr6fqhb9mbd95082cjdi3nag1cv6zn96xkr0f6imq9"))
15771 (modules '((guix build utils)))
15772 (snippet
15773 '(begin
15774 (for-each delete-file '("config.status" "configure"))
15775 #t))))
15776 (build-system r-build-system)
15777 (propagated-inputs
15778 `(("r-cowplot" ,r-cowplot)
15779 ("r-dplyr" ,r-dplyr)
15780 ("r-ggplot2" ,r-ggplot2)
15781 ("r-irlba" ,r-irlba)
15782 ("r-matrix" ,r-matrix)
15783 ("r-rcpp" ,r-rcpp)
15784 ("r-rcpparmadillo" ,r-rcpparmadillo)
15785 ("r-rcppprogress" ,r-rcppprogress)
15786 ("r-rlang" ,r-rlang)
15787 ("r-tibble" ,r-tibble)
15788 ("r-tidyr" ,r-tidyr)))
15789 (native-inputs
15790 `(("autoconf" ,autoconf)))
15791 (home-page "https://github.com/immunogenomics/harmony")
15792 (synopsis "Integration of single cell sequencing data")
15793 (description
15794 "This package provides an implementation of the Harmony algorithm for
15795 single cell integration, described in Korsunsky et al
15796 @url{doi.org/10.1101/461954}. The package includes a standalone Harmony
15797 function and interfaces to external frameworks.")
15798 (license license:gpl3)))
15799
15800 (define-public r-covr
15801 (package
15802 (name "r-covr")
15803 (version "3.5.0")
15804 (source
15805 (origin
15806 (method url-fetch)
15807 (uri (cran-uri "covr" version))
15808 (sha256
15809 (base32 "1pvr95h7jg9hqq1qq1cccy323pkxldrwafl08151cc410499k4fb"))))
15810 (properties `((upstream-name . "covr")))
15811 (build-system r-build-system)
15812 (propagated-inputs
15813 `(("r-crayon" ,r-crayon)
15814 ("r-digest" ,r-digest)
15815 ("r-httr" ,r-httr)
15816 ("r-jsonlite" ,r-jsonlite)
15817 ("r-rex" ,r-rex)
15818 ("r-withr" ,r-withr)
15819 ("r-yaml" ,r-yaml)))
15820 (native-inputs
15821 `(("r-knitr" ,r-knitr))) ; for vignettes
15822 (home-page "https://github.com/r-lib/covr")
15823 (synopsis "Test coverage for R packages")
15824 (description
15825 "Thisp package enables you to track and report code coverage for your
15826 package and (optionally) upload the results to a coverage service. Code
15827 coverage is a measure of the amount of code being exercised by a set of tests.
15828 It is an indirect measure of test quality and completeness. This package is
15829 compatible with any testing methodology or framework and tracks coverage of
15830 both R code and compiled C/C++/FORTRAN code.")
15831 (license license:gpl3)))
15832
15833 (define-public r-systemfonts
15834 (package
15835 (name "r-systemfonts")
15836 (version "0.1.1")
15837 (source
15838 (origin
15839 (method url-fetch)
15840 (uri (cran-uri "systemfonts" version))
15841 (sha256
15842 (base32
15843 "0m0ljid683xcam2f14x7k2zv1yx4npac38a3gfv11vhxfbnpgp0z"))))
15844 (properties `((upstream-name . "systemfonts")))
15845 (build-system r-build-system)
15846 (inputs
15847 `(("fontconfig" ,fontconfig)
15848 ("freetype" ,freetype)
15849 ("zlib" ,zlib)))
15850 (native-inputs
15851 `(("pkg-config" ,pkg-config)))
15852 (home-page "https://github.com/r-lib/systemfonts")
15853 (synopsis "System native font finding")
15854 (description
15855 "This package provides system native access to the font catalogue. As
15856 font handling varies between systems it is difficult to correctly locate
15857 installed fonts across different operating systems. The 'systemfonts' package
15858 provides bindings to the native libraries for finding font files that can then
15859 be used further by e.g. graphic devices.")
15860 (license license:expat)))
15861
15862 (define-public r-graphlayouts
15863 (package
15864 (name "r-graphlayouts")
15865 (version "0.6.0")
15866 (source
15867 (origin
15868 (method url-fetch)
15869 (uri (cran-uri "graphlayouts" version))
15870 (sha256
15871 (base32
15872 "1la016m37kp79zk8p1yx9kaha8y6d4w52w39h0mzv1mfsi6d75w0"))))
15873 (properties `((upstream-name . "graphlayouts")))
15874 (build-system r-build-system)
15875 (propagated-inputs
15876 `(("r-igraph" ,r-igraph)
15877 ("r-rcpp" ,r-rcpp)
15878 ("r-rcpparmadillo" ,r-rcpparmadillo)))
15879 (home-page "https://github.com/schochastics/graphlayouts")
15880 (synopsis "Additional layout algorithms for network visualizations")
15881 (description
15882 "This package provides several layout algorithms to visualize networks
15883 which are not part of the igraph library. Most are based on the concept of
15884 stress majorization by Gansner et al. (2004)
15885 <doi:10.1007/978-3-540-31843-9_25>. Some more specific algorithms
15886 emphasize hidden group structures in networks or focus on specific nodes.")
15887 (license license:expat)))
15888
15889 (define-public r-tidygraph
15890 (package
15891 (name "r-tidygraph")
15892 (version "1.1.2")
15893 (source
15894 (origin
15895 (method url-fetch)
15896 (uri (cran-uri "tidygraph" version))
15897 (sha256
15898 (base32
15899 "1zpsarm74afbc7p5dlyb0whc09670qdcddw1ckb25cfc9hfh0hjn"))))
15900 (properties `((upstream-name . "tidygraph")))
15901 (build-system r-build-system)
15902 (propagated-inputs
15903 `(("r-dplyr" ,r-dplyr)
15904 ("r-igraph" ,r-igraph)
15905 ("r-magrittr" ,r-magrittr)
15906 ("r-pillar" ,r-pillar)
15907 ("r-r6" ,r-r6)
15908 ("r-rcpp" ,r-rcpp)
15909 ("r-rlang" ,r-rlang)
15910 ("r-tibble" ,r-tibble)
15911 ("r-tidyr" ,r-tidyr)))
15912 (home-page "https://github.com/thomasp85/tidygraph")
15913 (synopsis "Tidy API for graph manipulation")
15914 (description
15915 "This package provides a graph implementation that can be thought of as
15916 two tidy data frames describing node and edge data respectively. It provides
15917 an approach to manipulate these two virtual data frames using the API defined
15918 in the @code{dplyr} package, and it also provides tidy interfaces to a lot of
15919 common graph algorithms.")
15920 (license license:expat)))
15921
15922 (define-public r-soupx
15923 (let ((commit "a3354be76fb52fd795be6ddf163cf056c05c6cb8")
15924 (revision "1"))
15925 (package
15926 (name "r-soupx")
15927 (version (git-version "0.3.1" revision commit))
15928 (source
15929 (origin
15930 (method git-fetch)
15931 (uri (git-reference
15932 (url "https://github.com/constantAmateur/SoupX")
15933 (commit commit)))
15934 (file-name (git-file-name name version))
15935 (sha256
15936 (base32
15937 "1zmlyzrl0fz6l79gn2wswid670p88mm3y292is89sa5p3h7frr99"))))
15938 (properties `((upstream-name . "SoupX")))
15939 (build-system r-build-system)
15940 (propagated-inputs
15941 `(("r-ggplot2" ,r-ggplot2)
15942 ("r-matrix" ,r-matrix)
15943 ("r-seurat" ,r-seurat)))
15944 (home-page "https://github.com/constantAmateur/SoupX")
15945 (synopsis "Single cell mRNA Soup eXterminator")
15946 (description
15947 "This package provides a package for quantifying, profiling and
15948 removing cell free mRNA contamination (the \"soup\") from droplet based single
15949 cell RNA-seq experiments.")
15950 (license license:gpl2))))
15951
15952 (define-public r-assertr
15953 (package
15954 (name "r-assertr")
15955 (version "2.7")
15956 (source
15957 (origin
15958 (method url-fetch)
15959 (uri (cran-uri "assertr" version))
15960 (sha256
15961 (base32
15962 "1x868pd4dac1c7b1q5390wqh2f6s50km8nqcpim3nxcj2l4qkqdb"))))
15963 (build-system r-build-system)
15964 (propagated-inputs
15965 `(("r-dplyr" ,r-dplyr)
15966 ("r-mass" ,r-mass)
15967 ("r-rlang" ,r-rlang)))
15968 (native-inputs
15969 `(("r-knitr" ,r-knitr))) ; needed for vignette
15970 (home-page "https://github.com/ropensci/assertr")
15971 (synopsis "Assertive programming for R analysis pipelines")
15972 (description
15973 "This package provides functionality to assert conditions that have to be
15974 met so that errors in data used in analysis pipelines can fail quickly. It is
15975 similar to @code{stopifnot()} but more powerful, friendly, and easier for use
15976 in pipelines.")
15977 (license license:expat)))
15978
15979 (define-public r-parameters
15980 (package
15981 (name "r-parameters")
15982 (version "0.6.1")
15983 (source
15984 (origin
15985 (method url-fetch)
15986 (uri (cran-uri "parameters" version))
15987 (sha256
15988 (base32
15989 "0mylxkf1y6mk4kf6c57x102sf4c800pfasjcfbf1hnsh6ya0m6dy"))))
15990 (properties `((upstream-name . "parameters")))
15991 (build-system r-build-system)
15992 (propagated-inputs
15993 `(("r-bayestestr" ,r-bayestestr)
15994 ("r-insight" ,r-insight)))
15995 (native-inputs
15996 `(("r-knitr" ,r-knitr)))
15997 (home-page "https://cran.r-project.org/web/packages/parameters")
15998 (synopsis "Processing of model parameters")
15999 (description
16000 "This package provides utilities for processing the parameters of various
16001 statistical models. Beyond computing p values, CIs, and other indices for a
16002 wide variety of models, this package implements features like standardization
16003 or bootstrapping of parameters and models, feature reduction (feature
16004 extraction and variable selection) as well as conversion between indices of
16005 effect size.")
16006 (license license:gpl3)))
16007
16008 (define-public r-rgdal
16009 (package
16010 (name "r-rgdal")
16011 (version "1.4-8")
16012 (source
16013 (origin
16014 (method url-fetch)
16015 (uri (cran-uri "rgdal" version))
16016 (sha256
16017 (base32 "1jd691amf3ghznq5im15gvhl6v6k25klpl75m4ngrqf9xlxaa3as"))))
16018 (properties `((upstream-name . "rgdal")))
16019 (build-system r-build-system)
16020 (inputs
16021 `(("gdal" ,gdal)
16022 ("proj.4" ,proj.4)
16023 ("zlib" ,zlib)))
16024 (propagated-inputs
16025 `(("r-sp" ,r-sp)))
16026 (native-inputs
16027 `(("pkg-config" ,pkg-config)))
16028 (home-page "http://rgdal.r-forge.r-project.org")
16029 (synopsis "Bindings for the Geospatial Data Abstraction Library")
16030 (description
16031 "This package provides bindings to the Geospatial Data Abstraction
16032 Library (GDAL) and access to projection/transformation operations from the
16033 PROJ.4 library.")
16034 (license license:gpl2+)))
16035
16036 (define-public r-insol
16037 (package
16038 (name "r-insol")
16039 (version "1.2.1")
16040 (source
16041 (origin
16042 (method url-fetch)
16043 (uri (cran-uri "insol" version))
16044 (sha256
16045 (base32
16046 "1d2vqmbp94ff80mfkmq4a8y12r6ryym8hh1568ip9qbn7snc64v1"))))
16047 (properties `((upstream-name . "insol")))
16048 (build-system r-build-system)
16049 (propagated-inputs
16050 `(("r-raster" ,r-raster)))
16051 (native-inputs
16052 `(("gfortran" ,gfortran)))
16053 (home-page "https://meteoexploration.com/R/insol/index.html")
16054 (synopsis "Tools for calculating solar radiation")
16055 (description
16056 "This package provides functions to compute insolation on tilted
16057 surfaces, computes atmospheric transmittance and related parameters such as:
16058 Earth radius vector, declination, sunset and sunrise, daylength, equation of
16059 time, vector in the direction of the sun, vector normal to surface, and some
16060 atmospheric physics.")
16061 (license license:gpl2+)))
16062
16063 (define-public r-lifecycle
16064 (package
16065 (name "r-lifecycle")
16066 (version "0.2.0")
16067 (source
16068 (origin
16069 (method url-fetch)
16070 (uri (cran-uri "lifecycle" version))
16071 (sha256
16072 (base32
16073 "0912865c6675fsblrfdk6s568krsj1x8qbk1kipy7m05xs6nwx19"))))
16074 (properties `((upstream-name . "lifecycle")))
16075 (build-system r-build-system)
16076 (propagated-inputs
16077 `(("r-glue" ,r-glue)
16078 ("r-rlang" ,r-rlang)))
16079 (native-inputs
16080 `(("r-knitr" ,r-knitr))) ; for vignettes
16081 (home-page "https://github.com/r-lib/lifecycle")
16082 (synopsis "Manage the life cycle of your package functions")
16083 (description
16084 "Manage the life cycle of your exported functions with shared
16085 conventions, documentation badges, and non-invasive deprecation warnings. The
16086 lifecycle package defines four development stages (experimental, maturing,
16087 stable, and questioning) and three deprecation stages (soft-deprecated,
16088 deprecated, and defunct). It makes it easy to insert badges corresponding to
16089 these stages in your documentation. Usage of deprecated functions are
16090 signalled with increasing levels of non-invasive verbosity.")
16091 (license license:gpl3)))
16092
16093 (define-public r-assertable
16094 (package
16095 (name "r-assertable")
16096 (version "0.2.7")
16097 (source
16098 (origin
16099 (method url-fetch)
16100 (uri (cran-uri "assertable" version))
16101 (sha256
16102 (base32
16103 "1npks9rcrnchmd0silq6qrvqkmdkp9fwjkyyvvp1lqjclyxk6vkk"))))
16104 (build-system r-build-system)
16105 (propagated-inputs
16106 `(("r-data-table" ,r-data-table)))
16107 (home-page "https://cran.r-project.org/web/packages/assertable/")
16108 (synopsis "Verbose assertions for tabular data (data.frames and data.tables)")
16109 (description "This package provides simple, flexible assertions on
16110 data.frame or data.table objects with verbose output for vetting. While other
16111 assertion packages apply towards more general use-cases, @code{assertable} is
16112 tailored towards tabular data. It includes functions to check variable names
16113 and values, whether the dataset contains all combinations of a given set of
16114 unique identifiers, and whether it is a certain length. In addition,
16115 @code{assertable} includes utility functions to check the existence of target
16116 files and to efficiently import multiple tabular data files into one
16117 data.table.")
16118 (license license:gpl3)))
16119
16120 (define-public r-quadprog
16121 (package
16122 (name "r-quadprog")
16123 (version "1.5-8")
16124 (source
16125 (origin
16126 (method url-fetch)
16127 (uri (cran-uri "quadprog" version))
16128 (sha256
16129 (base32 "1ka9g8zak8sg4y2xbz93dfrldznlk9qpd4pq9z21cdcdn3b8s4i2"))))
16130 (build-system r-build-system)
16131 (native-inputs
16132 `(("gfortran" ,gfortran)))
16133 (home-page "https://cran.r-project.org/web/packages/quadprog")
16134 (synopsis "Functions to solve quadratic programming problems")
16135 (description
16136 "This package contains routines and documentation for solving quadratic
16137 programming problems.")
16138 (license license:gpl3+)))
16139
16140 (define-public r-desolve
16141 (package
16142 (name "r-desolve")
16143 (version "1.28")
16144 (source
16145 (origin
16146 (method url-fetch)
16147 (uri (cran-uri "deSolve" version))
16148 (sha256
16149 (base32 "0jasvdzig0pzhzspmy20089az19r91xjfb9q6h8gj7c4mr6fymac"))))
16150 (properties `((upstream-name . "deSolve")))
16151 (build-system r-build-system)
16152 (native-inputs
16153 `(("gfortran" ,gfortran)))
16154 (home-page "https://desolve.r-forge.r-project.org/")
16155 (synopsis "Solvers for initial value problems of differential equations")
16156 (description "This package provides functions that solve initial value
16157 problems of a system of first-order @dfn{ordinary differential
16158 equations} (ODE), of @dfn{partial differential equations} (PDE), of
16159 @dfn{differential algebraic equations} (DAE), and of delay differential
16160 equations. The functions provide an interface to the FORTRAN functions
16161 @code{lsoda}, @code{lsodar}, @code{lsode}, @code{lsodes} of the ODEPACK
16162 collection, to the FORTRAN functions @code{dvode} and @code{daspk} and a
16163 C-implementation of solvers of the Runge-Kutta family with fixed or variable
16164 time steps. The package contains routines designed for solving ODEs resulting
16165 from 1-D, 2-D and 3-D partial differential equations that have been converted
16166 to ODEs by numerical differencing.")
16167 (license license:gpl2+)))
16168
16169 (define-public r-pracma
16170 (package
16171 (name "r-pracma")
16172 (version "2.2.9")
16173 (source (origin
16174 (method url-fetch)
16175 (uri (cran-uri "pracma" version))
16176 (sha256
16177 (base32 "07mzhzz73wsjjw1q05l024gcd13hwnzsxf873q9dyhw6x3shzshc"))))
16178 (build-system r-build-system)
16179 (home-page "https://cran.r-project.org/web/packages/pracma/")
16180 (synopsis "Practical numerical math functions")
16181 (description "This package provides functions for numerical analysis and
16182 linear algebra, numerical optimization, differential equations, plus some
16183 special functions. It uses Matlab function names where appropriate to simplify
16184 porting.")
16185 (license license:gpl3+)))
16186
16187 (define-public r-subplex
16188 (package
16189 (name "r-subplex")
16190 (version "1.6")
16191 (source
16192 (origin
16193 (method url-fetch)
16194 (uri (cran-uri "subplex" version))
16195 (sha256
16196 (base32
16197 "1yfbfjvpbhgky7vihw3f4jl41pxpqb39z4nc045d5z7z48bdl18d"))))
16198 (build-system r-build-system)
16199 (native-inputs
16200 `(("gfortran" ,gfortran)))
16201 (home-page "https://cran.r-project.org/web/packages/subplex")
16202 (synopsis "Unconstrained optimization using the subplex algorithm")
16203 (description
16204 "This package implements the Subplex optimization algorithm.
16205 It solves unconstrained optimization problems using a simplex method on
16206 subspaces. The method is well suited for optimizing objective functions that
16207 are noisy or are discontinuous at the solution.")
16208 (license license:gpl3+)))
16209
16210 (define-public r-txtplot
16211 (package
16212 (name "r-txtplot")
16213 (version "1.0-4")
16214 (source
16215 (origin
16216 (method url-fetch)
16217 (uri (cran-uri "txtplot" version))
16218 (sha256
16219 (base32
16220 "00sriml48y70j18jz235dsfm5x3a81bnzskfp3hnv6cbjwwsmca4"))))
16221 (build-system r-build-system)
16222 (home-page "https://cran.r-project.org/web/packages/txtplot/")
16223 (synopsis "Text-based plotting")
16224 (description "This package provides functions to produce rudimentary ASCII
16225 graphics directly in the terminal window. This package provides a basic
16226 plotting function (and equivalents of curve, density, acf and barplot) as well
16227 as a boxplot function.")
16228 (license license:lgpl3+)))
16229
16230 (define-public r-bio3d
16231 (package
16232 (name "r-bio3d")
16233 (version "2.4-1")
16234 (source
16235 (origin
16236 (method url-fetch)
16237 (uri (cran-uri "bio3d" version))
16238 (sha256
16239 (base32
16240 "07rw6c2d95gb5myxh31727j0jrchd0xisa3x89jjmf4zzs3vv7v7"))))
16241 (properties `((upstream-name . "bio3d")))
16242 (build-system r-build-system)
16243 (inputs `(("zlib" ,zlib)))
16244 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
16245 (home-page "http://thegrantlab.org/bio3d/")
16246 (synopsis "Biological structure analysis")
16247 (description
16248 "This package provides utilities to process, organize and explore protein
16249 structure, sequence and dynamics data. Features include the ability to read
16250 and write structure, sequence and dynamic trajectory data, perform sequence
16251 and structure database searches, data summaries, atom selection, alignment,
16252 superposition, rigid core identification, clustering, torsion analysis,
16253 distance matrix analysis, structure and sequence conservation analysis, normal
16254 mode analysis, principal component analysis of heterogeneous structure data,
16255 and correlation network analysis from normal mode and molecular dynamics data.
16256 In addition, various utility functions are provided to enable the statistical
16257 and graphical power of the R environment to work with biological sequence and
16258 structural data.")
16259 (license license:gpl2+)))
16260
16261 (define-public r-bios2cor
16262 (package
16263 (name "r-bios2cor")
16264 (version "2.1")
16265 (source
16266 (origin
16267 (method url-fetch)
16268 (uri (cran-uri "Bios2cor" version))
16269 (sha256
16270 (base32
16271 "04wk1cjrrxhpv1kdhd67r1qvjv268xxi0z0r105wy912110z9m6x"))))
16272 (properties `((upstream-name . "Bios2cor")))
16273 (build-system r-build-system)
16274 (propagated-inputs
16275 `(("r-bigmemory" ,r-bigmemory)
16276 ("r-bio3d" ,r-bio3d)
16277 ("r-circular" ,r-circular)
16278 ("r-igraph" ,r-igraph)))
16279 (home-page "https://cran.r-project.org/web/packages/Bios2cor/")
16280 (synopsis "From biological sequences and simulations to correlation analysis")
16281 (description
16282 "This package provides utilities for computation and analysis of
16283 correlation/covariation in multiple sequence alignments and in side chain
16284 motions during molecular dynamics simulations. Features include the
16285 computation of correlation/covariation scores using a variety of scoring
16286 functions between either sequence positions in alignments or side chain
16287 dihedral angles in molecular dynamics simulations and utilities to analyze the
16288 correlation/covariation matrix through a variety of tools including network
16289 representation and principal components analysis. In addition, several
16290 utility functions are based on the R graphical environment to provide friendly
16291 tools for help in data interpretation.")
16292 (license license:gpl2+)))
16293
16294 ;; This package includes minified JavaScript files. When upgrading please
16295 ;; check that there are no new minified JavaScript files.
16296 (define-public r-networkd3
16297 (package
16298 (name "r-networkd3")
16299 (version "0.4")
16300 (source
16301 (origin
16302 (method url-fetch)
16303 (uri (cran-uri "networkD3" version))
16304 (sha256
16305 (base32
16306 "02wxki67drppgfka1is1ykg1f2rxf0x0657c0crj7ipfy62jbf1k"))
16307 (snippet
16308 '(begin
16309 (delete-file "inst/htmlwidgets/lib/d3-4.5.0/d3.min.js")
16310 #t))))
16311 (properties `((upstream-name . "networkD3")))
16312 (build-system r-build-system)
16313 (arguments
16314 `(#:modules ((guix build utils)
16315 (guix build r-build-system)
16316 (srfi srfi-1)
16317 (ice-9 popen))
16318 #:phases
16319 (modify-phases %standard-phases
16320 (add-after 'unpack 'process-javascript
16321 (lambda* (#:key inputs #:allow-other-keys)
16322 (with-directory-excursion "inst/htmlwidgets/lib/"
16323 (call-with-values
16324 (lambda ()
16325 (unzip2
16326 `((,(assoc-ref inputs "d3.v4.js")
16327 "d3-4.5.0/d3.min.js"))))
16328 (lambda (sources targets)
16329 (for-each (lambda (source target)
16330 (format #t "Processing ~a --> ~a~%"
16331 source target)
16332 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
16333 (call-with-output-file target
16334 (lambda (port)
16335 (dump-port minified port)))))
16336 sources targets))))
16337 #t)))))
16338 (native-inputs
16339 `(("uglify-js" ,uglify-js)
16340 ;; NOTE: Make sure that this version of d3 is still valid when
16341 ;; upgrading the package.
16342 ("d3.v4.js"
16343 ,(origin
16344 (method url-fetch)
16345 (uri "https://d3js.org/d3.v4.js")
16346 (sha256
16347 (base32
16348 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))))
16349 (propagated-inputs
16350 `(("r-htmlwidgets" ,r-htmlwidgets)
16351 ("r-igraph" ,r-igraph)
16352 ("r-magrittr" ,r-magrittr)))
16353 (home-page "https://cran.r-project.org/package=networkD3")
16354 (synopsis "D3 JavaScript network graphs from R")
16355 (description
16356 "This package creates D3 JavaScript network, tree, dendrogram, and Sankey
16357 graphs from R.")
16358 (license license:gpl3+)))
16359
16360 (define-public r-aasea
16361 (package
16362 (name "r-aasea")
16363 (version "1.1.0")
16364 (source
16365 (origin
16366 (method url-fetch)
16367 (uri (cran-uri "aaSEA" version))
16368 (sha256
16369 (base32
16370 "0him4r8qyp0xssgrmdxjs45yn4d28h5anv4jyxxbbs9phb0m6j3h"))))
16371 (properties `((upstream-name . "aaSEA")))
16372 (build-system r-build-system)
16373 (propagated-inputs
16374 `(("r-bios2cor" ,r-bios2cor)
16375 ("r-dt" ,r-dt)
16376 ("r-hmisc" ,r-hmisc)
16377 ("r-magrittr" ,r-magrittr)
16378 ("r-networkd3" ,r-networkd3)
16379 ("r-plotly" ,r-plotly)
16380 ("r-seqinr" ,r-seqinr)
16381 ("r-shiny" ,r-shiny)
16382 ("r-shinydashboard" ,r-shinydashboard)))
16383 (home-page "https://cran.r-project.org/web/packages/aaSEA/")
16384 (synopsis "Amino acid substitution effect analyzer")
16385 (description
16386 "Given a protein multiple sequence alignment, it is a daunting task to
16387 assess the effects of substitutions along sequence length. The aaSEA package
16388 is intended to help researchers to rapidly analyze property changes caused by
16389 single, multiple and correlated amino acid substitutions in proteins.")
16390 (license license:gpl3)))
16391
16392 (define-public r-abacus
16393 (package
16394 (name "r-abacus")
16395 (version "1.0.0")
16396 (source
16397 (origin
16398 (method url-fetch)
16399 (uri (cran-uri "ABACUS" version))
16400 (sha256
16401 (base32
16402 "0m1dnkwjr1522l9ddbzzx7ayxvli17sbmk6s28adpmzzjwh2kd1i"))))
16403 (properties `((upstream-name . "ABACUS")))
16404 (build-system r-build-system)
16405 (propagated-inputs
16406 `(("r-ggplot2" ,r-ggplot2)
16407 ("r-shiny" ,r-shiny)))
16408 (home-page "https://shiny.abdn.ac.uk/Stats/apps/")
16409 (synopsis "Apps-based activities for communicating and understanding statistics")
16410 (description
16411 "This package provides a set of Shiny apps for effective communication
16412 and understanding in statistics. The current version includes properties of
16413 normal distribution, properties of sampling distribution, one-sample z and t
16414 tests, two samples independent (unpaired) t test and analysis of variance.")
16415 (license license:gpl3)))
16416
16417 (define-public r-abc-rap
16418 (package
16419 (name "r-abc-rap")
16420 (version "0.9.0")
16421 (source
16422 (origin
16423 (method url-fetch)
16424 (uri (cran-uri "ABC.RAP" version))
16425 (sha256
16426 (base32
16427 "1kdspln17v0krvahcd55vib4dv5azp60b3r1zf489x10qqbp1mxk"))))
16428 (properties `((upstream-name . "ABC.RAP")))
16429 (build-system r-build-system)
16430 (home-page "https://cran.r-project.org/web/packages/ABC.RAP/")
16431 (synopsis "Array-based CpG region analysis pipeline")
16432 (description
16433 "This package aims to identify candidate genes that are differentially
16434 methylated between cases and controls. It applies Student's t-test and delta
16435 beta analysis to identify candidate genes containing multiple CpG sites.")
16436 (license license:gpl3)))
16437
16438 (define-public r-abcadm
16439 (package
16440 (name "r-abcadm")
16441 (version "1.0")
16442 (source
16443 (origin
16444 (method url-fetch)
16445 (uri (cran-uri "abcADM" version))
16446 (sha256
16447 (base32
16448 "0vcabnnnwc0psv9v3rda5aap9s8cq1pjh02zva3ki64hlavf2a10"))))
16449 (properties `((upstream-name . "abcADM")))
16450 (build-system r-build-system)
16451 (propagated-inputs
16452 `(("r-bh" ,r-bh)
16453 ("r-rcpp" ,r-rcpp)))
16454 (home-page "https://cran.r-project.org/web/packages/abcADM/")
16455 (synopsis "Fit accumulated damage models and estimate reliability using ABC")
16456 (description
16457 "This package provides tools to estimate parameters of accumulated
16458 damage (load duration) models based on failure time data under a Bayesian
16459 framework, using @dfn{Approximate Bayesian Computation} (ABC), and to assess
16460 long-term reliability under stochastic load profiles.")
16461 (license license:gpl3)))
16462
16463 (define-public r-rglpk
16464 (package
16465 (name "r-rglpk")
16466 (version "0.6-4")
16467 (source
16468 (origin
16469 (method url-fetch)
16470 (uri (cran-uri "Rglpk" version))
16471 (sha256
16472 (base32
16473 "19mzpyimzq9zqnbi05j79b2di3nzaln8swggs9p8sqdr60qvr3d2"))))
16474 (properties `((upstream-name . "Rglpk")))
16475 (build-system r-build-system)
16476 (propagated-inputs
16477 `(("r-slam" ,r-slam)))
16478 (inputs
16479 `(("glpk" ,glpk)))
16480 (home-page "https://r-forge.r-project.org/projects/rglp/")
16481 (synopsis "R interface to the GNU Linear Programming Kit")
16482 (description
16483 "This package provides an R interface to the GNU Linear Programming Kit,
16484 software for solving large-scale @dfn{linear programming} (LP), @dfn{mixed
16485 integer linear programming} (MILP) and other related problems.")
16486 ;; Either license
16487 (license (list license:gpl2 license:gpl3))))
16488
16489 (define-public r-abcdefba
16490 (package
16491 (name "r-abcdefba")
16492 (version "0.4")
16493 (source
16494 (origin
16495 (method url-fetch)
16496 (uri (cran-uri "abcdeFBA" version))
16497 (sha256
16498 (base32
16499 "1rxjripy8v6bxi25vdfjnbk24zkmf752qbl73cin6nvnqflwxkx4"))))
16500 (properties `((upstream-name . "abcdeFBA")))
16501 (build-system r-build-system)
16502 (propagated-inputs
16503 `(("r-corrplot" ,r-corrplot)
16504 ("r-lattice" ,r-lattice)
16505 ("r-rgl" ,r-rgl)
16506 ("r-rglpk" ,r-rglpk)))
16507 (home-page "https://cran.r-project.org/web/packages/abcdeFBA/")
16508 (synopsis "A-Biologist-Can-Do-Everything of Flux Balance Analysis with this package")
16509 (description
16510 "This package provides functions for Constraint Based Simulation using
16511 Flux Balance Analysis and informative analysis of the data generated during
16512 simulation.")
16513 (license license:gpl2)))
16514
16515 (define-public r-abcrlda
16516 (package
16517 (name "r-abcrlda")
16518 (version "1.0.2")
16519 (source
16520 (origin
16521 (method url-fetch)
16522 (uri (cran-uri "abcrlda" version))
16523 (sha256
16524 (base32
16525 "0zjdrbg3zx0znqnh0dvmifs9c12b8vjhbaf3nbwab9xh25nsmg75"))))
16526 (properties `((upstream-name . "abcrlda")))
16527 (build-system r-build-system)
16528 (home-page "https://ieeexplore.ieee.org/document/8720003/")
16529 (synopsis "Asymptotically bias-corrected regularized linear discriminant analysis")
16530 (description
16531 "This package offers methods to perform @dfn{asymptotically
16532 bias-corrected regularized linear discriminant analysis} (ABC_RLDA) for
16533 cost-sensitive binary classification. The bias-correction is an estimate of
16534 the bias term added to regularized discriminant analysis that minimizes the
16535 overall risk.")
16536 (license license:gpl3)))
16537
16538 (define-public r-abemus
16539 (package
16540 (name "r-abemus")
16541 (version "1.0.1")
16542 (source
16543 (origin
16544 (method url-fetch)
16545 (uri (cran-uri "abemus" version))
16546 (sha256
16547 (base32
16548 "1dhllb184byp1yl15rg2w02zgw3iajag7cxshirg47mnmm7n70bb"))))
16549 (properties `((upstream-name . "abemus")))
16550 (build-system r-build-system)
16551 (propagated-inputs
16552 `(("r-data-table" ,r-data-table)))
16553 (home-page "https://cran.r-project.org/web/packages/abemus/")
16554 (synopsis "Adaptive base error model in ultra-deep sequencing data")
16555 (description
16556 "This package provides an implementation of @dfn{Adaptive Base Error
16557 Model in Ultra-deep Sequencing data} (ABEMUS), which combines
16558 platform-specific genetic knowledge and empirical signal to readily detect and
16559 quantify somatic @dfn{single nucleotide variants} (SNVs) in @dfn{circulating
16560 cell free DNA} (cfDNA).")
16561 (license license:gpl3)))
16562
16563 ;; This package includes minified JavaScript files. When upgrading please
16564 ;; check that there are no new minified JavaScript files.
16565 (define-public r-rintrojs
16566 (package
16567 (name "r-rintrojs")
16568 (version "0.2.2")
16569 (source
16570 (origin
16571 (method url-fetch)
16572 (uri (cran-uri "rintrojs" version))
16573 (sha256
16574 (base32
16575 "0vyqb3pyrh12saddar71ac9csn2vkd2j8ln6ygpqys8ky1lc3427"))))
16576 (properties `((upstream-name . "rintrojs")))
16577 (build-system r-build-system)
16578 (arguments
16579 `(#:modules ((guix build utils)
16580 (guix build r-build-system)
16581 (srfi srfi-1)
16582 (ice-9 popen))
16583 #:phases
16584 (modify-phases %standard-phases
16585 (add-after 'unpack 'process-javascript
16586 (lambda* (#:key inputs #:allow-other-keys)
16587 (with-directory-excursion "inst/javascript/introjs/"
16588 (call-with-values
16589 (lambda ()
16590 (unzip2
16591 `((,(assoc-ref inputs "intro.js")
16592 "intro.min.js"))))
16593 (lambda (sources targets)
16594 (for-each (lambda (source target)
16595 (format #t "Processing ~a --> ~a~%"
16596 source target)
16597 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
16598 (call-with-output-file target
16599 (lambda (port)
16600 (dump-port minified port)))))
16601 sources targets))))
16602 #t)))))
16603 (native-inputs
16604 `(("uglify-js" ,uglify-js)
16605 ("intro.js"
16606 ,(origin
16607 (method url-fetch)
16608 (uri "https://raw.githubusercontent.com/usablica/intro.js/v2.9.3/intro.js")
16609 (sha256
16610 (base32
16611 "1qf8n1sfy9qkiqqnfgg0xbhmfgh0g3mqsjas8qhz230h3zzlzxj8"))))))
16612 (propagated-inputs
16613 `(("r-jsonlite" ,r-jsonlite)
16614 ("r-shiny" ,r-shiny)))
16615 (home-page "https://github.com/carlganz/rintrojs")
16616 (synopsis "Wrapper for the Intro.js library")
16617 (description
16618 "This package provides a wrapper for the @url{http://www.introjs.com,
16619 Intro.js} library. This package makes it easy to include step-by-step
16620 introductions, and clickable hints in a Shiny application. It supports both
16621 static introductions in the UI, and programmatic introductions from the
16622 server-side.")
16623 (license license:agpl3+)))
16624
16625 (define-public r-sysfonts
16626 (package
16627 (name "r-sysfonts")
16628 (version "0.8")
16629 (source
16630 (origin
16631 (method url-fetch)
16632 (uri (cran-uri "sysfonts" version))
16633 (sha256
16634 (base32
16635 "0wng902plryf2d8fc7k7m3jx11acz51kb2d91cqbyhq7xpk06z43"))))
16636 (properties `((upstream-name . "sysfonts")))
16637 (build-system r-build-system)
16638 (inputs
16639 `(("freetype" ,freetype)
16640 ("libpng" ,libpng)
16641 ("zlib" ,zlib)))
16642 (native-inputs
16643 `(("pkg-config" ,pkg-config)))
16644 (home-page "https://github.com/yixuan/sysfonts")
16645 (synopsis "Loading fonts into R")
16646 (description
16647 "This is a package to simplify loading of system fonts and Google Fonts
16648 into R, in order to support other packages.")
16649 (license license:gpl2)))
16650
16651 (define-public r-showtextdb
16652 (package
16653 (name "r-showtextdb")
16654 (version "2.0")
16655 (source
16656 (origin
16657 (method url-fetch)
16658 (uri (cran-uri "showtextdb" version))
16659 (sha256
16660 (base32
16661 "1qwwj9x2jvadvwn60h75k99c9xi7yhqjsgaakahz5paxgj583bsh"))))
16662 (properties `((upstream-name . "showtextdb")))
16663 (build-system r-build-system)
16664 (propagated-inputs
16665 `(("r-sysfonts" ,r-sysfonts)))
16666 (home-page "https://cran.r-project.org/web/packages/showtextdb/")
16667 (synopsis "Font files for the 'showtext' package")
16668 (description
16669 "This package provides font files that can be used by the @code{showtext}
16670 package.")
16671 (license license:asl2.0)))
16672
16673 (define-public r-showtext
16674 (package
16675 (name "r-showtext")
16676 (version "0.7-1")
16677 (source
16678 (origin
16679 (method url-fetch)
16680 (uri (cran-uri "showtext" version))
16681 (sha256
16682 (base32
16683 "0a5gg72bfrc7wm0phj1aflj1wc08kfi81ac32na6ya9s2ivyimw5"))))
16684 (properties `((upstream-name . "showtext")))
16685 (build-system r-build-system)
16686 (inputs
16687 `(("freetype" ,freetype)
16688 ("libpng" ,libpng)
16689 ("zlib" ,zlib)))
16690 (propagated-inputs
16691 `(("r-showtextdb" ,r-showtextdb)
16692 ("r-sysfonts" ,r-sysfonts)))
16693 (native-inputs `(("pkg-config" ,pkg-config)))
16694 (home-page "https://github.com/yixuan/showtext")
16695 (synopsis "Using fonts more easily in R graphs")
16696 (description
16697 "This package aims to make it easy to use various types of
16698 fonts (TrueType, OpenType, Type 1, web fonts, etc.) in R graphs, and supports
16699 most output formats of R graphics including PNG, PDF and SVG. Text glyphs
16700 will be converted into polygons or raster images, hence after the plot has
16701 been created, it no longer relies on the font files. No external software
16702 such as Ghostscript is needed to use this package.")
16703 (license license:asl2.0)))
16704
16705 (define-public r-emojifont
16706 (package
16707 (name "r-emojifont")
16708 (version "0.5.3")
16709 (source
16710 (origin
16711 (method url-fetch)
16712 (uri (cran-uri "emojifont" version))
16713 (sha256
16714 (base32
16715 "1cdrrl3hvrs8rskyy6zgr7q2mmg8yb9k8sld1m64zsp7y009g19k"))))
16716 (properties `((upstream-name . "emojifont")))
16717 (build-system r-build-system)
16718 (propagated-inputs
16719 `(("r-ggplot2" ,r-ggplot2)
16720 ("r-proto" ,r-proto)
16721 ("r-showtext" ,r-showtext)
16722 ("r-sysfonts" ,r-sysfonts)))
16723 (home-page "https://guangchuangyu.github.io/emojifont")
16724 (synopsis "Emoji and Font Awesome in R graphics")
16725 (description
16726 "This package enables the use of emoji and the Font Awesome glyphs in
16727 both base and ggplot2 graphics.")
16728 (license license:artistic2.0)))
16729
16730 (define-public r-abstractr
16731 (package
16732 (name "r-abstractr")
16733 (version "0.1.0")
16734 (source
16735 (origin
16736 (method url-fetch)
16737 (uri (cran-uri "abstractr" version))
16738 (sha256
16739 (base32
16740 "1ymwp7syrynwd4i8aj2x5n8jdi9d96fjzl6jb09n0bnr5fgl7vig"))))
16741 (properties `((upstream-name . "abstractr")))
16742 (build-system r-build-system)
16743 (propagated-inputs
16744 `(("r-colourpicker" ,r-colourpicker)
16745 ("r-emojifont" ,r-emojifont)
16746 ("r-ggplot2" ,r-ggplot2)
16747 ("r-gridextra" ,r-gridextra)
16748 ("r-rintrojs" ,r-rintrojs)
16749 ("r-shiny" ,r-shiny)
16750 ("r-shinythemes" ,r-shinythemes)))
16751 (home-page "https://matt-kumar.shinyapps.io/portfolio")
16752 (synopsis "R-Shiny application for creating visual abstracts")
16753 (description
16754 "This package provides an R Shiny application to create visual abstracts
16755 for original research. A variety of user defined options and formatting are
16756 included.")
16757 (license license:gpl3)))
16758
16759 (define-public r-abtest
16760 (package
16761 (name "r-abtest")
16762 (version "0.2.0")
16763 (source
16764 (origin
16765 (method url-fetch)
16766 (uri (cran-uri "abtest" version))
16767 (sha256
16768 (base32
16769 "1ky3cf827kj24bhcpk00v5zl5jdkii1gca0x81ay1cjkzfispgws"))))
16770 (properties `((upstream-name . "abtest")))
16771 (build-system r-build-system)
16772 (propagated-inputs
16773 `(("r-matrix" ,r-matrix)
16774 ("r-mvtnorm" ,r-mvtnorm)
16775 ("r-plotrix" ,r-plotrix)
16776 ("r-rcolorbrewer" ,r-rcolorbrewer)
16777 ("r-rcpp" ,r-rcpp)
16778 ("r-sn" ,r-sn)
16779 ("r-truncnorm" ,r-truncnorm)
16780 ("r-vgam" ,r-vgam)))
16781 (home-page "https://cran.r-project.org/web/packages/abtest/")
16782 (synopsis "Bayesian A/B testing")
16783 (description
16784 "This package provides functions for Bayesian A/B testing including prior
16785 elicitation options based on Kass and Vaidyanathan (1992)
16786 @url{doi:10.1111/j.2517-6161.1992.tb01868.x}.")
16787 (license license:gpl2+)))
16788
16789 (define-public r-accept
16790 (package
16791 (name "r-accept")
16792 (version "0.7.1")
16793 (source
16794 (origin
16795 (method url-fetch)
16796 (uri (cran-uri "accept" version))
16797 (sha256
16798 (base32
16799 "0pn8q0jsi0nb2mm2kv6sjczflflshhy55y7nqqnk70yx9f6wm83y"))))
16800 (properties `((upstream-name . "accept")))
16801 (build-system r-build-system)
16802 (propagated-inputs
16803 `(("r-dplyr" ,r-dplyr)
16804 ("r-extrafont" ,r-extrafont)
16805 ("r-mass" ,r-mass)
16806 ("r-plotly" ,r-plotly)
16807 ("r-stringr" ,r-stringr)
16808 ("r-viridis" ,r-viridis)))
16809 (home-page "https://cran.r-project.org/web/packages/accept/")
16810 (synopsis "Acute COPD Exacerbation Prediction Tool (ACCEPT)")
16811 (description
16812 "This package allows clinicians to predict the rate and severity of
16813 future acute exacerbation in @dfn{Chronic Obstructive Pulmonary
16814 Disease} (COPD) patients, based on the clinical prediction model published in
16815 Adibi et al. (2019) @url{doi:10.1101/651901}.")
16816 (license license:gpl3)))
16817
16818 (define-public r-smpracticals
16819 (package
16820 (name "r-smpracticals")
16821 (version "1.4-3")
16822 (source
16823 (origin
16824 (method url-fetch)
16825 (uri (cran-uri "SMPracticals" version))
16826 (sha256
16827 (base32
16828 "0zxq84f9i3b86xx6msb25b61gyj9k09iab2b7wg4d93yas9qzayf"))))
16829 (properties `((upstream-name . "SMPracticals")))
16830 (build-system r-build-system)
16831 (propagated-inputs
16832 `(("r-ellipse" ,r-ellipse)
16833 ("r-mass" ,r-mass)
16834 ("r-nlme" ,r-nlme)
16835 ("r-survival" ,r-survival)))
16836 (home-page "http://statwww.epfl.ch/davison/SM/")
16837 (synopsis "Practicals for use with Davison (2003) Statistical Models")
16838 (description
16839 "This package contains the datasets and a few functions for use with the
16840 practicals outlined in Appendix A of the book Statistical Models (Davison,
16841 2003, Cambridge University Press). The practicals themselves can be found at
16842 @url{http://statwww.epfl.ch/davison/SM/}.")
16843 (license license:gpl2+)))
16844
16845 (define-public r-fgui
16846 (package
16847 (name "r-fgui")
16848 (version "1.0-8")
16849 (source
16850 (origin
16851 (method url-fetch)
16852 (uri (cran-uri "fgui" version))
16853 (sha256
16854 (base32
16855 "024fzd1c7iwqprn26hwjb9l2qlvvyzl449d7iixy0x69djwsrysv"))))
16856 (properties `((upstream-name . "fgui")))
16857 (build-system r-build-system)
16858 (home-page
16859 "https://sites.google.com/site/thomashoffmannproject/software/fgui")
16860 (synopsis "Create GUI for R functions")
16861 (description
16862 "Rapidly create a GUI for a function you created by automatically
16863 creating widgets for arguments of the function. This package automatically
16864 parses help routines for context-sensitive help to these arguments. The
16865 interface is essentially a wrapper to some Tcl/Tk routines to both simplify
16866 and facilitate GUI creation. More advanced Tcl/Tk routines/GUI objects can be
16867 incorporated into the interface for greater customization for the more
16868 experienced.")
16869 ;; Any version of the GPL.
16870 (license (list license:gpl2+ license:gpl3+))))
16871
16872 (define-public r-tcltk2
16873 (package
16874 (name "r-tcltk2")
16875 (version "1.2-11")
16876 (source
16877 (origin
16878 (method url-fetch)
16879 (uri (cran-uri "tcltk2" version))
16880 (sha256
16881 (base32
16882 "1ibxld379600xx7kiqq3fck083s8psry12859980218rnzikl65d"))))
16883 (properties `((upstream-name . "tcltk2")))
16884 (build-system r-build-system)
16885 (inputs
16886 `(("tcl" ,tcl)
16887 ("tk" ,tk)))
16888 (home-page "https://www.sciviews.org/SciViews-R")
16889 (synopsis "Tcl/Tk additions")
16890 (description
16891 "This package provides a series of additional Tcl commands and Tk widgets
16892 with style and various functions to supplement the tcltk package")
16893 (license license:lgpl3)))
16894
16895 (define-public r-accrual
16896 (package
16897 (name "r-accrual")
16898 (version "1.3")
16899 (source
16900 (origin
16901 (method url-fetch)
16902 (uri (cran-uri "accrual" version))
16903 (sha256
16904 (base32
16905 "11clm9s5c5518nmp6hd6pjnp0s28y92b2i2x0xgj4j5g816p4j3z"))))
16906 (properties `((upstream-name . "accrual")))
16907 (build-system r-build-system)
16908 (propagated-inputs
16909 `(("r-fgui" ,r-fgui)
16910 ("r-smpracticals" ,r-smpracticals)
16911 ("r-tcltk2" ,r-tcltk2)))
16912 (home-page "https://cran.r-project.org/web/packages/accrual/")
16913 (synopsis "Bayesian accrual prediction")
16914 (description
16915 "Subject recruitment for medical research is challenging. Slow patient
16916 accrual leads to delay in research. Accrual monitoring during the process of
16917 recruitment is critical. Researchers need reliable tools to manage the
16918 accrual rate. This package provides an implementation of a Bayesian method
16919 that integrates researcher's experience on previous trials and data from the
16920 current study, providing reliable prediction on accrual rate for clinical
16921 studies. It provides functions for Bayesian accrual prediction which can be
16922 easily used by statisticians and clinical researchers.")
16923 (license license:gpl2)))
16924
16925 (define-public r-accrued
16926 (package
16927 (name "r-accrued")
16928 (version "1.4.1")
16929 (source
16930 (origin
16931 (method url-fetch)
16932 (uri (cran-uri "accrued" version))
16933 (sha256
16934 (base32
16935 "05g1jb5914z18rcai1ahn7nihn27vr2rnadwv94gc1j7ivvikvs5"))))
16936 (properties `((upstream-name . "accrued")))
16937 (build-system r-build-system)
16938 (home-page "https://cran.r-project.org/web/packages/accrued/")
16939 (synopsis "Data quality visualization tools for partially accruing data")
16940 (description
16941 "This is a package for visualizing data quality of partially accruing
16942 data.")
16943 (license license:gpl3)))
16944
16945 (define-public r-mda
16946 (package
16947 (name "r-mda")
16948 (version "0.4-10")
16949 (source
16950 (origin
16951 (method url-fetch)
16952 (uri (cran-uri "mda" version))
16953 (sha256
16954 (base32
16955 "19g6kn6g0shidrjfffklbmzc5w7mcimrxhagx4nmpslg59ibqdkh"))))
16956 (properties `((upstream-name . "mda")))
16957 (build-system r-build-system)
16958 (propagated-inputs `(("r-class" ,r-class)))
16959 (native-inputs `(("gfortran" ,gfortran)))
16960 (home-page "https://cran.r-project.org/web/packages/mda/")
16961 (synopsis "Mixture and flexible discriminant analysis")
16962 (description
16963 "This is a package for mixture and flexible discriminant analysis,
16964 @dfn{multivariate adaptive regression splines} (MARS), BRUTO, and so on.")
16965 (license license:gpl2)))
16966
16967 (define-public r-elasticnet
16968 (package
16969 (name "r-elasticnet")
16970 (version "1.1.1")
16971 (source
16972 (origin
16973 (method url-fetch)
16974 (uri (cran-uri "elasticnet" version))
16975 (sha256
16976 (base32
16977 "0p9dplnsp28z4s2fl6afbwrgd0aj339fak8mmndicmrh7bb7rpmb"))))
16978 (properties `((upstream-name . "elasticnet")))
16979 (build-system r-build-system)
16980 (propagated-inputs
16981 `(("r-lars" ,r-lars)))
16982 (home-page "http://users.stat.umn.edu/~zouxx019/")
16983 (synopsis "Elastic-Net for sparse estimation and sparse PCA")
16984 (description
16985 "This package provides functions for fitting the entire solution path of
16986 the Elastic-Net and also provides functions for estimating sparse Principal
16987 Components. The Lasso solution paths can be computed by the same function.")
16988 (license license:gpl2+)))
16989
16990 (define-public r-sparselda
16991 (package
16992 (name "r-sparselda")
16993 (version "0.1-9")
16994 (source
16995 (origin
16996 (method url-fetch)
16997 (uri (cran-uri "sparseLDA" version))
16998 (sha256
16999 (base32
17000 "1k3sw9kc40yxnfss4vrsx34qxmv8ssddyhbfjhxrdldvblhbwchb"))))
17001 (properties `((upstream-name . "sparseLDA")))
17002 (build-system r-build-system)
17003 (propagated-inputs
17004 `(("r-elasticnet" ,r-elasticnet)
17005 ("r-mass" ,r-mass)
17006 ("r-mda" ,r-mda)))
17007 (home-page "https://www.imm.dtu.dk/~lkhc/")
17008 (synopsis "Sparse discriminant analysis")
17009 (description
17010 "This package performs sparse linear discriminant analysis for Gaussians
17011 and mixture of Gaussian models.")
17012 (license license:gpl2+)))
17013
17014 (define-public r-accsda
17015 (package
17016 (name "r-accsda")
17017 (version "1.0.0")
17018 (source
17019 (origin
17020 (method url-fetch)
17021 (uri (cran-uri "accSDA" version))
17022 (sha256
17023 (base32
17024 "0sgxy5y8kkc1n35657kifwfjsba7y5m1vbr7rkk5lmbpkzahqm61"))))
17025 (properties `((upstream-name . "accSDA")))
17026 (build-system r-build-system)
17027 (propagated-inputs
17028 `(("r-ggplot2" ,r-ggplot2)
17029 ("r-ggthemes" ,r-ggthemes)
17030 ("r-gridextra" ,r-gridextra)
17031 ("r-mass" ,r-mass)
17032 ("r-rarpack" ,r-rarpack)
17033 ("r-sparselda" ,r-sparselda)))
17034 (home-page "https://github.com/gumeo/accSDA/wiki")
17035 (synopsis "Accelerated sparse discriminant analysis")
17036 (description
17037 "This package provides an implementation of sparse linear discriminant
17038 analysis, which is a supervised classification method for multiple classes.
17039 Various novel optimization approaches to this problem are implemented
17040 including @dfn{alternating direction method of multipliers} (ADMM),
17041 @dfn{proximal gradient} (PG) and @dfn{accelerated proximal gradient} (APG).
17042 Functions for performing cross validation are also supplied along with basic
17043 prediction and plotting functions. @dfn{Sparse zero variance
17044 discriminant} (SZVD) analysis is also included in the package.")
17045 (license license:gpl2+)))
17046
17047 (define-public r-ace2fastq
17048 (package
17049 (name "r-ace2fastq")
17050 (version "0.6.0")
17051 (source
17052 (origin
17053 (method url-fetch)
17054 (uri (cran-uri "ace2fastq" version))
17055 (sha256
17056 (base32
17057 "09kk3yyqnr2xp820g0p3aai9a21figigjr9lxkr3zjq2d8gzwfic"))))
17058 (properties `((upstream-name . "ace2fastq")))
17059 (build-system r-build-system)
17060 (propagated-inputs
17061 `(("r-stringr" ,r-stringr)))
17062 (home-page "https://github.com/c5sire/ace2fastq")
17063 (synopsis "ACE file to FASTQ converter")
17064 (description
17065 "The ACE file format is used in genomics to store contigs from sequencing
17066 machines. This tools converts it into FASTQ format. Both formats contain the
17067 sequence characters and their corresponding quality information. Unlike the
17068 FASTQ file, the ACE file stores the quality values numerically. The
17069 conversion algorithm uses the standard Sanger formula. The package
17070 facilitates insertion into pipelines, and content inspection.")
17071 (license license:gpl3)))
17072
17073 (define-public r-rngwell
17074 (package
17075 (name "r-rngwell")
17076 (version "0.10-6")
17077 (source
17078 (origin
17079 (method url-fetch)
17080 (uri (cran-uri "rngWELL" version))
17081 (sha256
17082 (base32
17083 "0pjjcs9pqj7mf0mhb2cwd0aanqpwnm65bm86hk6mi2vw8rgnj2vv"))))
17084 (properties `((upstream-name . "rngWELL")))
17085 (build-system r-build-system)
17086 (home-page "https://cran.r-project.org/web/packages/rngWELL/")
17087 (synopsis "Toolbox for WELL random number generators")
17088 (description
17089 "This is a dedicated package to WELL pseudo random generators, which were
17090 introduced in Panneton et al. (2006), ``Improved Long-Period Generators Based
17091 on Linear Recurrences Modulo 2'', ACM Transactions on Mathematical Software.")
17092 (license license:bsd-3)))
17093
17094 (define-public r-randtoolbox
17095 (package
17096 (name "r-randtoolbox")
17097 (version "1.30.1")
17098 (source
17099 (origin
17100 (method url-fetch)
17101 (uri (cran-uri "randtoolbox" version))
17102 (sha256
17103 (base32
17104 "0qg20ar6qns858jdzqhmfq7yji81czhr6cim257958gqpj66sn95"))))
17105 (properties `((upstream-name . "randtoolbox")))
17106 (build-system r-build-system)
17107 (propagated-inputs
17108 `(("r-rngwell" ,r-rngwell)))
17109 (native-inputs
17110 `(("gfortran" ,gfortran)))
17111 (home-page "https://cran.r-project.org/web/packages/randtoolbox/")
17112 (synopsis "Toolbox for pseudo and quasi random number generation")
17113 (description
17114 "This package provides
17115
17116 @enumerate
17117 @item pseudo random generators, such as general linear
17118 congruential generators, multiple recursive generators and generalized
17119 feedback shift register (SF-Mersenne Twister algorithm and WELL
17120 generators)
17121
17122 @item quasi random generators, such as the Torus algorithm, the Sobol
17123 sequence, the Halton sequence (including the Van der Corput sequence), and
17124
17125 @item some generator tests: the gap test, the serial test, the poker test.
17126 @end enumerate
17127
17128 See e.g. Gentle (2003) @url{doi:10.1007/b97336}.")
17129 (license license:bsd-3)))
17130
17131 (define-public r-lhs
17132 (package
17133 (name "r-lhs")
17134 (version "1.0.2")
17135 (source
17136 (origin
17137 (method url-fetch)
17138 (uri (cran-uri "lhs" version))
17139 (sha256
17140 (base32
17141 "0n0i1hr9gmc0hfcs2cvpjvdfgm6k26rhcq3q22r8ic0gfj953572"))))
17142 (properties `((upstream-name . "lhs")))
17143 (build-system r-build-system)
17144 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
17145 (native-inputs
17146 `(("r-knitr" ,r-knitr)))
17147 (home-page "https://github.com/bertcarnell/lhs")
17148 (synopsis "Latin Hypercube Samples")
17149 (description
17150 "This package provides a number of methods for creating and augmenting
17151 Latin Hypercube Samples.")
17152 (license license:gpl3)))
17153
17154 (define-public r-acebayes
17155 (package
17156 (name "r-acebayes")
17157 (version "1.9")
17158 (source
17159 (origin
17160 (method url-fetch)
17161 (uri (cran-uri "acebayes" version))
17162 (sha256
17163 (base32
17164 "1imfwm1vpbb24vfmfn1nljhmaz8429mwjihw34892p387s8h7xz2"))))
17165 (properties `((upstream-name . "acebayes")))
17166 (build-system r-build-system)
17167 (propagated-inputs
17168 `(("r-compare" ,r-compare)
17169 ("r-lhs" ,r-lhs)
17170 ("r-randtoolbox" ,r-randtoolbox)
17171 ("r-rcpp" ,r-rcpp)
17172 ("r-rcpparmadillo" ,r-rcpparmadillo)))
17173 (home-page "https://cran.r-project.org/web/packages/acebayes/")
17174 (synopsis "Optimal Bayesian experimental design using the ACE algorithm")
17175 (description
17176 "Finding an optimal Bayesian experimental design involves maximizing an
17177 objective function given by the expectation of some appropriately chosen
17178 utility function with respect to the joint distribution of unknown
17179 quantities (including responses). This objective function is usually not
17180 available in closed form and the design space can be continuous and of high
17181 dimensionality. This package uses @dfn{Approximate Coordinate Exchange} (ACE)
17182 to maximise an approximation to the expectation of the utility function.")
17183 (license license:gpl2)))
17184
17185 (define-public r-acet
17186 (package
17187 (name "r-acet")
17188 (version "1.8.0")
17189 (source
17190 (origin
17191 (method url-fetch)
17192 (uri (cran-uri "ACEt" version))
17193 (sha256
17194 (base32
17195 "0626d6kg485xjya164wagrr5z223jvi93ywbwpdns7fkm03c0dlq"))))
17196 (properties `((upstream-name . "ACEt")))
17197 (build-system r-build-system)
17198 (propagated-inputs
17199 `(("r-bh" ,r-bh)
17200 ("r-mass" ,r-mass)
17201 ("r-rcpp" ,r-rcpp)
17202 ("r-rcpparmadillo" ,r-rcpparmadillo)))
17203 (home-page "https://cran.r-project.org/web/packages/ACEt/")
17204 (synopsis "Estimating dynamic heritability and twin model comparison")
17205 (description
17206 "This package supports twin models that are able to estimate the dynamic
17207 behaviour of the variance components in the classical twin models with respect
17208 to age using B-splines and P-splines.")
17209 (license license:gpl2+)))
17210
17211 (define-public r-acfmperiod
17212 (package
17213 (name "r-acfmperiod")
17214 (version "1.0.0")
17215 (source
17216 (origin
17217 (method url-fetch)
17218 (uri (cran-uri "acfMPeriod" version))
17219 (sha256
17220 (base32
17221 "1yww8isfrbs2v9s94hx7p2imyszcgadwafdgpj438n2ik0q6p9d5"))))
17222 (properties `((upstream-name . "acfMPeriod")))
17223 (build-system r-build-system)
17224 (propagated-inputs
17225 `(("r-mass" ,r-mass)))
17226 (home-page "https://cran.r-project.org/web/packages/acfMPeriod/")
17227 (synopsis "Estimation of the ACF from the M-periodogram")
17228 (description
17229 "This package support non-robust and robust computations of the sample
17230 autocovariance (ACOVF) and sample autocorrelation functions (ACF) of
17231 univariate and multivariate processes. The methodology consists in reversing
17232 the diagonalization procedure involving the periodogram or the
17233 cross-periodogram and the Fourier transform vectors, and, thus, obtaining the
17234 ACOVF or the ACF as discussed in Fuller (1995)
17235 @url{doi:10.1002/9780470316917}. The robust version is obtained by fitting
17236 robust M-regressors to obtain the M-periodogram or M-cross-periodogram as
17237 discussed in Reisen et al. (2017) @url{doi:10.1016/j.jspi.2017.02.008}.")
17238 (license license:gpl2+)))
17239
17240 (define-public r-gamlss-data
17241 (package
17242 (name "r-gamlss-data")
17243 (version "5.1-4")
17244 (source
17245 (origin
17246 (method url-fetch)
17247 (uri (cran-uri "gamlss.data" version))
17248 (sha256
17249 (base32
17250 "1dgfspbmps6ipzcmw681wjdp320nm50dwsxafgrcwxndqgc7fdqd"))))
17251 (properties `((upstream-name . "gamlss.data")))
17252 (build-system r-build-system)
17253 (home-page "http://www.gamlss.org/")
17254 (synopsis "GAMLSS data")
17255 (description
17256 "This package provides data used as examples to demonstrate GAMLSS
17257 models.")
17258 ;; Either version of the license
17259 (license (list license:gpl2 license:gpl3))))
17260
17261 (define-public r-gamlss
17262 (package
17263 (name "r-gamlss")
17264 (version "5.1-6")
17265 (source
17266 (origin
17267 (method url-fetch)
17268 (uri (cran-uri "gamlss" version))
17269 (sha256
17270 (base32
17271 "16b7ick1khvldbvfmmpw9cjs1vznnrisvifq7717fxzd8c9s5jdr"))))
17272 (properties `((upstream-name . "gamlss")))
17273 (build-system r-build-system)
17274 (propagated-inputs
17275 `(("r-gamlss-data" ,r-gamlss-data)
17276 ("r-gamlss-dist" ,r-gamlss-dist)
17277 ("r-mass" ,r-mass)
17278 ("r-nlme" ,r-nlme)
17279 ("r-survival" ,r-survival)))
17280 (home-page "http://www.gamlss.org/")
17281 (synopsis "Generalized additive models for location scale and shape")
17282 (description
17283 "This package provides functions for fitting the generalized additive
17284 models for location scale and shape introduced by Rigby and
17285 Stasinopoulos (2005), @url{doi:10.1111/j.1467-9876.2005.00510.x}. The models
17286 use a distributional regression approach where all the parameters of the
17287 conditional distribution of the response variable are modelled using
17288 explanatory variables.")
17289 ;; Either version of the license
17290 (license (list license:gpl2 license:gpl3))))
17291
17292 (define-public r-acid
17293 (package
17294 (name "r-acid")
17295 (version "1.1")
17296 (source
17297 (origin
17298 (method url-fetch)
17299 (uri (cran-uri "acid" version))
17300 (sha256
17301 (base32
17302 "030i0y8s283ivbsmjccpbv9v7mgbcg2jk9df7vgcbbns74swf9hd"))))
17303 (properties `((upstream-name . "acid")))
17304 (build-system r-build-system)
17305 (propagated-inputs
17306 `(("r-gamlss" ,r-gamlss)
17307 ("r-gamlss-dist" ,r-gamlss-dist)
17308 ("r-hmisc" ,r-hmisc)))
17309 (home-page "https://cran.r-project.org/web/packages/acid/")
17310 (synopsis "Analysing conditional income distributions")
17311 (description
17312 "This package provides functions for the analysis of income distributions
17313 for subgroups of the population as defined by a set of variables like age,
17314 gender, region, etc. This entails a Kolmogorov-Smirnov test for a mixture
17315 distribution as well as functions for moments, inequality measures, entropy
17316 measures and polarisation measures of income distributions. This package thus
17317 aides the analysis of income inequality by offering tools for the exploratory
17318 analysis of income distributions at the disaggregated level.")
17319 (license license:gpl3)))
17320
17321 (define-public r-acm4r
17322 (package
17323 (name "r-acm4r")
17324 (version "1.0")
17325 (source
17326 (origin
17327 (method url-fetch)
17328 (uri (cran-uri "acm4r" version))
17329 (sha256
17330 (base32
17331 "1wqzc35i1rshx0zlmas8y4qkkvy6h9r4i4apscjjv1xg2wjflzxa"))))
17332 (properties `((upstream-name . "acm4r")))
17333 (build-system r-build-system)
17334 (propagated-inputs `(("r-mass" ,r-mass)))
17335 (home-page "https://cran.r-project.org/web/packages/acm4r/")
17336 (synopsis "Align-and-count method comparisons of RFLP data")
17337 (description
17338 "This is a package to compare sequence fragment lengths or molecular
17339 weights from pairs of lanes. The number of matching bands in the
17340 @dfn{Restriction Fragment Length Polymorphism} (RFLP) data is calculated using
17341 the align-and-count method.")
17342 ;; Any version of the GPL
17343 (license (list license:gpl2+ license:gpl3+))))
17344
17345 (define-public r-filematrix
17346 (package
17347 (name "r-filematrix")
17348 (version "1.3")
17349 (source
17350 (origin
17351 (method url-fetch)
17352 (uri (cran-uri "filematrix" version))
17353 (sha256
17354 (base32
17355 "1v3aj1ng742msb0sfdnjsbqb508mqjf8jlq2v33vxldhradw5w0b"))))
17356 (properties `((upstream-name . "filematrix")))
17357 (build-system r-build-system)
17358 ;; These inputs are needed for vignettes
17359 (native-inputs
17360 `(("r-knitr" ,r-knitr)
17361 ("r-rmarkdown" ,r-rmarkdown)
17362 ("pandoc-citeproc" ,ghc-pandoc-citeproc)))
17363 (home-page "https://github.com/andreyshabalin/filematrix")
17364 (synopsis "File-backed matrix class with convenient read and write access")
17365 (description
17366 "This package provides an interface for working with large matrices
17367 stored in files, not in computer memory. It supports multiple non-character
17368 data types (double, integer, logical and raw) of various sizes (e.g. 8 and 4
17369 byte real values). Access to parts of the matrix is done by indexing, exactly
17370 as with usual R matrices. It supports very large matrices; the package has
17371 been tested on multi-terabyte matrices. It allows for more than 2^32 rows or
17372 columns, ad allows for quick addition of extra columns to a filematrix.")
17373 (license license:lgpl3)))
17374
17375 (define-public r-acmeeqtl
17376 (package
17377 (name "r-acmeeqtl")
17378 (version "1.6")
17379 (source
17380 (origin
17381 (method url-fetch)
17382 (uri (cran-uri "ACMEeqtl" version))
17383 (sha256
17384 (base32
17385 "049xjv2ym35bbn43zwi68cq27fwdh404vp0r2ca5gxgmmx8kj1cz"))))
17386 (properties `((upstream-name . "ACMEeqtl")))
17387 (build-system r-build-system)
17388 (propagated-inputs
17389 `(("r-filematrix" ,r-filematrix)))
17390 (home-page "https://github.com/andreyshabalin/ACMEeqtl")
17391 (synopsis "Estimation of interpretable eQTL effect sizes")
17392 (description
17393 "This package provides a non-linear model, termed ACME, that reflects a
17394 parsimonious biological model for allelic contributions of cis-acting eQTLs.
17395 With non-linear least-squares algorithm the maximum likelihood parameters can
17396 be estimated. The ACME model provides interpretable effect size estimates and
17397 p-values with well controlled Type-I error.")
17398 (license license:lgpl3)))
17399
17400 (define-public r-acmer
17401 (package
17402 (name "r-acmer")
17403 (version "1.1.0")
17404 (source
17405 (origin
17406 (method url-fetch)
17407 (uri (cran-uri "acmeR" version))
17408 (sha256
17409 (base32
17410 "000b2hqlhj93958nddw0fqb15ahigs08najv2miivym046x04mf7"))))
17411 (properties `((upstream-name . "acmeR")))
17412 (build-system r-build-system)
17413 (propagated-inputs `(("r-foreign" ,r-foreign)))
17414 (home-page "https://cran.r-project.org/web/packages/acmeR/")
17415 (synopsis "ACME estimator of bird and bat mortality by wind turbines")
17416 (description
17417 "This package provides an implementation of the ACME estimator, described
17418 in Wolpert (2015), ACME: A Partially Periodic Estimator of Avian & Chiropteran
17419 Mortality at Wind Turbines. Unlike most other models, this estimator supports
17420 decreasing-hazard Weibull model for persistence; decreasing search proficiency
17421 as carcasses age; variable bleed-through at successive searches; and interval
17422 mortality estimates. The package provides, based on search data, functions
17423 for estimating the mortality inflation factor in Frequentist and Bayesian
17424 settings.")
17425 (license license:expat)))
17426
17427 (define-public r-r-huge
17428 (package
17429 (name "r-r-huge")
17430 (version "0.9.0")
17431 (source
17432 (origin
17433 (method url-fetch)
17434 (uri (cran-uri "R.huge" version))
17435 (sha256
17436 (base32
17437 "13p558qalv60pgr24nsm6mi92ryj65rsbqa6pgdwy0snjqx12bgi"))))
17438 (properties `((upstream-name . "R.huge")))
17439 (build-system r-build-system)
17440 (propagated-inputs
17441 `(("r-r-methodss3" ,r-r-methodss3)
17442 ("r-r-oo" ,r-r-oo)
17443 ("r-r-utils" ,r-r-utils)))
17444 (home-page "https://github.com/HenrikBengtsson/R.huge")
17445 (synopsis "Methods for accessing huge amounts of data")
17446 (description
17447 "This is a deprecated package for accessing huge amounts of data.
17448 Cross-platform alternatives are the following packages: bigmemory (CRAN),
17449 ff (CRAN), or BufferedMatrix (Bioconductor). The main usage of it was inside
17450 the @code{aroma.affymetrix} package.")
17451 (license license:lgpl2.1+)))
17452
17453 (define-public r-r-filesets
17454 (package
17455 (name "r-r-filesets")
17456 (version "2.13.0")
17457 (source
17458 (origin
17459 (method url-fetch)
17460 (uri (cran-uri "R.filesets" version))
17461 (sha256
17462 (base32
17463 "124rygq0bl9n4akxcm868nl30cyk3rz0iprb98zlpk62gci9f5fg"))))
17464 (properties `((upstream-name . "R.filesets")))
17465 (build-system r-build-system)
17466 (propagated-inputs
17467 `(("r-digest" ,r-digest)
17468 ("r-r-cache" ,r-r-cache)
17469 ("r-r-methodss3" ,r-r-methodss3)
17470 ("r-r-oo" ,r-r-oo)
17471 ("r-r-utils" ,r-r-utils)))
17472 (home-page "https://github.com/HenrikBengtsson/R.filesets")
17473 (synopsis "Easy handling of and access to files")
17474 (description
17475 "This package provides classes and methods to locate, setup, subset,
17476 navigate and iterate file sets, i.e. sets of files located in one or more
17477 directories on the file system. The API is designed such that these classes
17478 can be extended via inheritance to provide a richer API for special file
17479 formats. Moreover, a specific name format is defined such that filenames and
17480 directories can be considered to have full names which consists of a name
17481 followed by comma-separated tags. This adds additional flexibility to
17482 identify file sets and individual files.")
17483 (license license:lgpl2.1+)))
17484
17485 (define-public r-r-devices
17486 (package
17487 (name "r-r-devices")
17488 (version "2.16.1")
17489 (source
17490 (origin
17491 (method url-fetch)
17492 (uri (cran-uri "R.devices" version))
17493 (sha256
17494 (base32
17495 "15zlnq3g27whq26fbcy5zfl5hiddm256h4rga4frblg6wqlbkvdd"))))
17496 (properties `((upstream-name . "R.devices")))
17497 (build-system r-build-system)
17498 (propagated-inputs
17499 `(("r-base64enc" ,r-base64enc)
17500 ("r-r-methodss3" ,r-r-methodss3)
17501 ("r-r-oo" ,r-r-oo)
17502 ("r-r-utils" ,r-r-utils)))
17503 (home-page "https://github.com/HenrikBengtsson/R.devices")
17504 (synopsis "Unified handling of graphics devices")
17505 (description
17506 "This package provides functions for creating plots and image files in a
17507 unified way regardless of output format (EPS, PDF, PNG, SVG, TIFF, WMF, etc.).
17508 Default device options as well as scales and aspect ratios are controlled in a
17509 uniform way across all device types. Switching output format requires minimal
17510 changes in code. This package is ideal for large-scale batch processing,
17511 because it will never leave open graphics devices or incomplete image files
17512 behind, even on errors or user interrupts.")
17513 (license license:lgpl2.1+)))
17514
17515 (define-public r-acnr
17516 (package
17517 (name "r-acnr")
17518 (version "1.0.0")
17519 (source
17520 (origin
17521 (method url-fetch)
17522 (uri (cran-uri "acnr" version))
17523 (sha256
17524 (base32
17525 "087hq4i7jp67ba2finzsqjfnqbiprl33na6ryjv9zqzsdawj9cym"))))
17526 (properties `((upstream-name . "acnr")))
17527 (build-system r-build-system)
17528 (home-page "https://github.com/mpierrejean/acnr")
17529 (synopsis "Annotated copy-number regions")
17530 (description
17531 "This package provides SNP array data from different types of copy-number
17532 regions. These regions were identified manually by the authors of the package
17533 and may be used to generate realistic data sets with known truth.")
17534 (license license:lgpl2.1+)))
17535
17536 (define-public r-acopula
17537 (package
17538 (name "r-acopula")
17539 (version "0.9.3")
17540 (source
17541 (origin
17542 (method url-fetch)
17543 (uri (cran-uri "acopula" version))
17544 (sha256
17545 (base32
17546 "0vvbbw8pfs9jwfz5c57lw48pr0qj661r0ys007q6zf9jmlrhx1ln"))))
17547 (properties `((upstream-name . "acopula")))
17548 (build-system r-build-system)
17549 (home-page "https://cran.r-project.org/web/packages/acopula/")
17550 (synopsis "Modelling dependence with multivariate Archimax copulas")
17551 (description
17552 "Archimax copulas are a mixture of Archimedean and EV copulas. This
17553 package provides definitions of several parametric families of generator and
17554 dependence function, computes CDF and PDF, estimates parameters, tests for
17555 goodness of fit, generates random sample and checks copula properties for
17556 custom constructs. In the 2-dimensional case explicit formulas for density
17557 are used, contrary to higher dimensions when all derivatives are linearly
17558 approximated. Several non-archimax families (normal, FGM, Plackett) are
17559 provided as well.")
17560 (license license:gpl2)))
17561
17562 (define-public r-tuner
17563 (package
17564 (name "r-tuner")
17565 (version "1.3.3")
17566 (source
17567 (origin
17568 (method url-fetch)
17569 (uri (cran-uri "tuneR" version))
17570 (sha256
17571 (base32
17572 "0av978m4h2iqazyfq6n2cgkh4wpllihh7s29lah2nb8ngc0w5hxx"))))
17573 (properties `((upstream-name . "tuneR")))
17574 (build-system r-build-system)
17575 (propagated-inputs `(("r-signal" ,r-signal)))
17576 (home-page "https://cran.r-project.org/web/packages/tuneR/")
17577 (synopsis "Analysis of music and speech")
17578 (description
17579 "This is a package for the analysis of music and speech. Analyze music
17580 and speech, extract features like MFCCs, handle wave files and their
17581 representation in various ways, read MP3, read MIDI, perform steps of a
17582 transcription, ...")
17583 ;; Either of these versions.
17584 (license (list license:gpl2 license:gpl3))))
17585
17586 (define-public r-seewave
17587 (package
17588 (name "r-seewave")
17589 (version "2.1.5")
17590 (source
17591 (origin
17592 (method url-fetch)
17593 (uri (cran-uri "seewave" version))
17594 (sha256
17595 (base32
17596 "1qg8f5gik9pw6f9mcxqmrc9x3003s8vdm6g01pjjpyc9qaqiz2vi"))))
17597 (properties `((upstream-name . "seewave")))
17598 (build-system r-build-system)
17599 (propagated-inputs
17600 `(("r-tuner" ,r-tuner)))
17601 (home-page "http://rug.mnhn.fr/seewave")
17602 (synopsis "Sound analysis and synthesis")
17603 (description
17604 "This package provides functions for analysing, manipulating, displaying,
17605 editing and synthesizing time waves (particularly sound). This package
17606 processes time analysis (oscillograms and envelopes), spectral content,
17607 resonance quality factor, entropy, cross correlation and autocorrelation,
17608 zero-crossing, dominant frequency, analytic signal, frequency coherence, 2D
17609 and 3D spectrograms and many other analyses.")
17610 (license license:gpl2+)))
17611
17612 (define-public r-acousticndlcoder
17613 (package
17614 (name "r-acousticndlcoder")
17615 (version "1.0.2")
17616 (source
17617 (origin
17618 (method url-fetch)
17619 (uri (cran-uri "AcousticNDLCodeR" version))
17620 (sha256
17621 (base32
17622 "1fgzgwanpv2pzy74xdk3hamc44p8qch467wh163dxby8jr9ik0sb"))))
17623 (properties
17624 `((upstream-name . "AcousticNDLCodeR")))
17625 (build-system r-build-system)
17626 (propagated-inputs
17627 `(("r-seewave" ,r-seewave)
17628 ("r-tuner" ,r-tuner)
17629 ("r-zoo" ,r-zoo)))
17630 (home-page "https://cran.r-project.org/web/packages/AcousticNDLCodeR/")
17631 (synopsis "Coding sound files for use with NDL")
17632 (description
17633 "Make acoustic cues to use with the R package @code{ndl}.
17634 The package implements functions used in the PLoS ONE paper \"Words from
17635 spontaneous conversational speech can be recognized with human-like accuracy
17636 by an error-driven learning algorithm that discriminates between meanings
17637 straight from smart acoustic features, bypassing the phoneme as recognition
17638 unit.\" @url{doi:10.1371/journal.pone.0174623}")
17639 (license license:gpl2+)))
17640
17641 (define-public r-acp
17642 (package
17643 (name "r-acp")
17644 (version "2.1")
17645 (source
17646 (origin
17647 (method url-fetch)
17648 (uri (cran-uri "acp" version))
17649 (sha256
17650 (base32
17651 "0lcwbjcyyr32m6qjmjqh25qjwrbyqj1n092xhgbhxzd8fslppnmn"))))
17652 (properties `((upstream-name . "acp")))
17653 (build-system r-build-system)
17654 (propagated-inputs
17655 `(("r-quantmod" ,r-quantmod)
17656 ("r-tseries" ,r-tseries)))
17657 (home-page "https://cran.r-project.org/web/packages/acp/")
17658 (synopsis "Autoregressive conditional Poisson")
17659 (description
17660 "This package supports the analysis of count data exhibiting
17661 autoregressive properties, using the @dfn{Autoregressive Conditional Poisson}
17662 model (ACP(p,q)) proposed by Heinen (2003).")
17663 (license license:gpl2)))
17664
17665 (define-public r-ada
17666 (package
17667 (name "r-ada")
17668 (version "2.0-5")
17669 (source
17670 (origin
17671 (method url-fetch)
17672 (uri (cran-uri "ada" version))
17673 (sha256
17674 (base32
17675 "1h3a07czp0w3hrhjcg1fz721y8vsfclzqi3rq8qfzgpfb4h1f06r"))))
17676 (properties `((upstream-name . "ada")))
17677 (build-system r-build-system)
17678 (propagated-inputs `(("r-rpart" ,r-rpart)))
17679 (home-page "https://cran.r-project.org/web/packages/ada/")
17680 (synopsis "Stochastic boosting")
17681 (description
17682 "This package provides a straightforward, well-documented, and broad
17683 boosting routine for classification, ideally suited for small to
17684 moderate-sized data sets. It performs discrete, real, and gentle boost under
17685 both exponential and logistic loss on a given data set.")
17686 ;; Any version of the GPL.
17687 (license (list license:gpl2+ license:gpl3+))))
17688
17689 (define-public r-genalg
17690 (package
17691 (name "r-genalg")
17692 (version "0.2.0")
17693 (source
17694 (origin
17695 (method url-fetch)
17696 (uri (cran-uri "genalg" version))
17697 (sha256
17698 (base32
17699 "1wzfamq8k5yhwbdx0wy1w5bks93brj0p890xxc4yqrja4w38ja3s"))))
17700 (properties `((upstream-name . "genalg")))
17701 (build-system r-build-system)
17702 (home-page "https://github.com/egonw/genalg")
17703 (synopsis "R based genetic algorithm")
17704 (description
17705 "This package provides an R based genetic algorithm for binary and
17706 floating point chromosomes.")
17707 (license license:gpl2)))
17708
17709 (define-public r-kernelfactory
17710 (package
17711 (name "r-kernelfactory")
17712 (version "0.3.0")
17713 (source
17714 (origin
17715 (method url-fetch)
17716 (uri (cran-uri "kernelFactory" version))
17717 (sha256
17718 (base32
17719 "001kw9k3ivd4drd4mwqapkkk3f4jgljiaprhg2630hmll064s89j"))))
17720 (properties `((upstream-name . "kernelFactory")))
17721 (build-system r-build-system)
17722 (propagated-inputs
17723 `(("r-auc" ,r-auc)
17724 ("r-genalg" ,r-genalg)
17725 ("r-kernlab" ,r-kernlab)
17726 ("r-randomforest" ,r-randomforest)))
17727 (home-page "https://cran.r-project.org/web/packages/kernelFactory/")
17728 (synopsis "Ensemble of kernel machines")
17729 (description
17730 "Kernel factory is an ensemble method where each base classifier (random
17731 forest) is fit on the kernel matrix of a subset of the training data.")
17732 (license license:gpl2+)))
17733
17734 (define-public r-dummies
17735 (package
17736 (name "r-dummies")
17737 (version "1.5.6")
17738 (source
17739 (origin
17740 (method url-fetch)
17741 (uri (cran-uri "dummies" version))
17742 (sha256
17743 (base32
17744 "01f84crqx17xd6xy55qxlvsj3knm8lhw7jl26p2rh2w3y0nvqlbm"))))
17745 (properties `((upstream-name . "dummies")))
17746 (build-system r-build-system)
17747 (home-page "https://decisionpatterns.com")
17748 (synopsis "Create dummy/indicator variables flexibly and efficiently")
17749 (description
17750 "This package lets you expand factors, characters and other eligible
17751 classes into dummy/indicator variables.")
17752 (license license:gpl2+)))
17753
17754 (define-public r-acrm
17755 (package
17756 (name "r-acrm")
17757 (version "0.1.1")
17758 (source
17759 (origin
17760 (method url-fetch)
17761 (uri (cran-uri "aCRM" version))
17762 (sha256
17763 (base32
17764 "0kzp568hd9c9a9qgniia5s5gv0q5f89xfvvwpzb197gqhs3x092v"))))
17765 (properties `((upstream-name . "aCRM")))
17766 (build-system r-build-system)
17767 (propagated-inputs
17768 `(("r-ada" ,r-ada)
17769 ("r-dummies" ,r-dummies)
17770 ("r-kernelfactory" ,r-kernelfactory)
17771 ("r-randomforest" ,r-randomforest)))
17772 (home-page "https://cran.r-project.org/web/packages/aCRM/")
17773 (synopsis "Convenience functions for analytical customer relationship management")
17774 (description
17775 "This package provides convenience functions for data preparation and
17776 modeling often used in @dfn{analytical customer relationship
17777 management} (aCRM).")
17778 (license license:gpl2+)))
17779
17780 (define-public r-treeclust
17781 (package
17782 (name "r-treeclust")
17783 (version "1.1-7")
17784 (source
17785 (origin
17786 (method url-fetch)
17787 (uri (cran-uri "treeClust" version))
17788 (sha256
17789 (base32
17790 "1s7kh6q0bkixsygrip95zf1bi10ihddsa5lq9dfxd68yh8rsby6z"))))
17791 (properties `((upstream-name . "treeClust")))
17792 (build-system r-build-system)
17793 (propagated-inputs
17794 `(("r-cluster" ,r-cluster)
17795 ("r-rpart" ,r-rpart)))
17796 (home-page "https://cran.r-project.org/web/packages/treeClust/")
17797 (synopsis "Cluster distances through trees")
17798 (description
17799 "This package provides tools to create a measure of inter-point
17800 dissimilarity useful for clustering mixed data, and, optionally, perform the
17801 clustering.")
17802 (license license:gpl2+)))
17803
17804 (define-public r-acrosstic
17805 (package
17806 (name "r-acrosstic")
17807 (version "1.0-3")
17808 (source
17809 (origin
17810 (method url-fetch)
17811 (uri (cran-uri "AcrossTic" version))
17812 (sha256
17813 (base32
17814 "03180h79jhjd66ibrnsfp3yyp2jlfysp7cymw46phzj2palghsc0"))))
17815 (properties `((upstream-name . "AcrossTic")))
17816 (build-system r-build-system)
17817 (propagated-inputs
17818 `(("r-lpsolve" ,r-lpsolve)
17819 ("r-treeclust" ,r-treeclust)))
17820 (home-page "https://cran.r-project.org/web/packages/AcrossTic/")
17821 (synopsis "Cost-minimal regular spanning subgraph with TreeClust")
17822 (description
17823 "This is a package for constructing minimum-cost regular spanning
17824 subgraph as part of a non-parametric two-sample test for equality of
17825 distribution.")
17826 (license license:gpl2+)))
17827
17828 (define-public r-acrt
17829 (package
17830 (name "r-acrt")
17831 (version "1.0.1")
17832 (source
17833 (origin
17834 (method url-fetch)
17835 (uri (cran-uri "acrt" version))
17836 (sha256
17837 (base32
17838 "0y9ndcq8ffpfrv7w9rikm4zn68jpsj6baqisq9kp2433xrwzdb6s"))))
17839 (properties `((upstream-name . "acrt")))
17840 (build-system r-build-system)
17841 (propagated-inputs
17842 `(("r-rcpp" ,r-rcpp)
17843 ("r-rcppeigen" ,r-rcppeigen)
17844 ("r-sandwich" ,r-sandwich)))
17845 (home-page "https://cran.r-project.org/web/packages/acrt/")
17846 (synopsis "Autocorrelation robust testing")
17847 (description
17848 "This package provides functions for testing affine hypotheses on the
17849 regression coefficient vector in regression models with autocorrelated
17850 errors.")
17851 (license license:gpl2)))
17852
17853 (define-public r-acs
17854 (package
17855 (name "r-acs")
17856 (version "2.1.4")
17857 (source
17858 (origin
17859 (method url-fetch)
17860 (uri (cran-uri "acs" version))
17861 (sha256
17862 (base32
17863 "0ajw9rf8l8akcvgqvbxjvryc6wjx74521xyxswz2b0bky3m6kah5"))))
17864 (properties `((upstream-name . "acs")))
17865 (build-system r-build-system)
17866 (propagated-inputs
17867 `(("r-httr" ,r-httr)
17868 ("r-plyr" ,r-plyr)
17869 ("r-rcpp" ,r-rcpp)
17870 ("r-stringr" ,r-stringr)
17871 ("r-xml" ,r-xml)))
17872 (home-page "https://dusp.mit.edu/faculty/ezra-haber-glenn")
17873 (synopsis "Work with data from the US Census")
17874 (description
17875 "This package provides a general toolkit for downloading, managing,
17876 analyzing, and presenting data from the
17877 @url{https://www.census.gov/data/developers/data-sets.html, U.S. Census},
17878 including SF1 (Decennial short-form), SF3 (Decennial long-form), and the
17879 American Community Survey (ACS). Confidence intervals provided with ACS data
17880 are converted to standard errors to be bundled with estimates in complex
17881 @code{acs} objects. The package provides new methods to conduct standard
17882 operations on @code{acs} objects and present/plot data in statistically
17883 appropriate ways.")
17884 (license license:gpl3)))
17885
17886 (define-public r-acss-data
17887 (package
17888 (name "r-acss-data")
17889 (version "1.0")
17890 (source
17891 (origin
17892 (method url-fetch)
17893 (uri (cran-uri "acss.data" version))
17894 (sha256
17895 (base32
17896 "09kl4179ipr8bq19g89xcdi1xxs397zcx5cvgp6viy8gn687ilgv"))))
17897 (properties `((upstream-name . "acss.data")))
17898 (build-system r-build-system)
17899 (home-page "http://complexitycalculator.com/methodology.html")
17900 (synopsis "Data for algorithmic complexity of short strings")
17901 (description
17902 "This is a data only package providing the algorithmic complexity of
17903 short strings, computed using the coding theorem method. For a given set of
17904 symbols in a string, all possible or a large number of random samples of
17905 Turing machines with a given number of states (e.g., 5) and number of symbols
17906 corresponding to the number of symbols in the strings were simulated until
17907 they reached a halting state or failed to end. This package contains data on
17908 4.5 million strings from length 1 to 12 simulated on Turing machines with 2,
17909 4, 5, 6, and 9 symbols. The complexity of the string corresponds to the
17910 distribution of the halting states.")
17911 (license license:gpl2+)))
17912
17913 (define-public r-acss
17914 (package
17915 (name "r-acss")
17916 (version "0.2-5")
17917 (source
17918 (origin
17919 (method url-fetch)
17920 (uri (cran-uri "acss" version))
17921 (sha256
17922 (base32
17923 "0cqa60544f58l5qd7h6xmsir40b9hqnq6pqgd5hfx2j2l5n7qhmk"))))
17924 (properties `((upstream-name . "acss")))
17925 (build-system r-build-system)
17926 (propagated-inputs
17927 `(("r-acss-data" ,r-acss-data)
17928 ("r-zoo" ,r-zoo)))
17929 (home-page "http://complexitycalculator.com/methodology.html")
17930 (synopsis "Algorithmic complexity for short strings")
17931 (description
17932 "The main purpose of this package is to provide the algorithmic
17933 complexity for short strings, an approximation of the Kolmogorov Complexity of
17934 a short string using the coding theorem method. While the database containing
17935 the complexity is provided in the data only package @code{acss.data}, this
17936 package provides functions accessing the data such as @code{prob_random}
17937 returning the posterior probability that a given string was produced by a
17938 random process. In addition, two traditional (but problematic) measures of
17939 complexity are also provided: entropy and change complexity.")
17940 (license license:gpl2+)))
17941
17942 (define-public r-acswr
17943 (package
17944 (name "r-acswr")
17945 (version "1.0")
17946 (source
17947 (origin
17948 (method url-fetch)
17949 (uri (cran-uri "ACSWR" version))
17950 (sha256
17951 (base32
17952 "195vjrkang5cl7gwsna0aq4p0h4jym9xg9yh94bnf8vq6wf8j83n"))))
17953 (properties `((upstream-name . "ACSWR")))
17954 (build-system r-build-system)
17955 (propagated-inputs
17956 `(("r-mass" ,r-mass)))
17957 (home-page "https://cran.r-project.org/web/packages/ACSWR/")
17958 (synopsis "Companion package for the book \"A Course in Statistics with R\"")
17959 (description
17960 "This is a companion package for the book \"A Course in Statistics with
17961 R\" (ISBN 978-1-119-15272-9.)")
17962 (license license:gpl2)))
17963
17964 (define-public r-alabama
17965 (package
17966 (name "r-alabama")
17967 (version "2015.3-1")
17968 (source
17969 (origin
17970 (method url-fetch)
17971 (uri (cran-uri "alabama" version))
17972 (sha256
17973 (base32
17974 "0mlgk929gdismikwx4k2ndqq57nnqj7mlgvd3479b214hksgq036"))))
17975 (properties `((upstream-name . "alabama")))
17976 (build-system r-build-system)
17977 (propagated-inputs `(("r-numderiv" ,r-numderiv)))
17978 (home-page "https://cran.r-project.org/web/packages/alabama/")
17979 (synopsis "Constrained nonlinear optimization")
17980 (description
17981 "Alabama stands for Augmented Lagrangian Adaptive Barrier Minimization
17982 Algorithm; it is used for optimizing smooth nonlinear objective functions with
17983 constraints. Linear or nonlinear equality and inequality constraints are
17984 allowed.")
17985 (license license:gpl2+)))
17986
17987 (define-public r-gdina
17988 (package
17989 (name "r-gdina")
17990 (version "2.7.9")
17991 (source
17992 (origin
17993 (method url-fetch)
17994 (uri (cran-uri "GDINA" version))
17995 (sha256
17996 (base32
17997 "13pmj069r04h38hg61ibyn1ab15zdy9m0qv60vi25ahgsmg6ccvx"))))
17998 (properties `((upstream-name . "GDINA")))
17999 (build-system r-build-system)
18000 (propagated-inputs
18001 `(("r-alabama" ,r-alabama)
18002 ("r-ggplot2" ,r-ggplot2)
18003 ("r-mass" ,r-mass)
18004 ("r-nloptr" ,r-nloptr)
18005 ("r-numderiv" ,r-numderiv)
18006 ("r-rcpp" ,r-rcpp)
18007 ("r-rcpparmadillo" ,r-rcpparmadillo)
18008 ("r-rsolnp" ,r-rsolnp)
18009 ("r-shiny" ,r-shiny)
18010 ("r-shinydashboard" ,r-shinydashboard)))
18011 (native-inputs
18012 `(("r-knitr" ,r-knitr)))
18013 (home-page "https://github.com/Wenchao-Ma/GDINA")
18014 (synopsis "Generalized DINA model framework")
18015 (description
18016 "This package provides a set of psychometric tools for cognitive
18017 diagnosis modeling based on the generalized deterministic inputs, noisy and
18018 gate (G-DINA) model by de la Torre (2011) @url{doi:10.1007/s11336-011-9207-7}
18019 and its extensions, including the sequential G-DINA model by Ma and de la
18020 Torre (2016) @url{doi:10.1111/bmsp.12070} for polytomous responses, and the
18021 polytomous G-DINA model by Chen and de la Torre
18022 @url{doi:10.1177/0146621613479818} for polytomous attributes. Joint attribute
18023 distribution can be independent, saturated, higher-order, loglinear smoothed
18024 or structured. Q-matrix validation, item and model fit statistics, model
18025 comparison at test and item level and differential item functioning can also
18026 be conducted. A graphical user interface is also provided.")
18027 (license license:gpl3)))
18028
18029 (define-public r-actcd
18030 (package
18031 (name "r-actcd")
18032 (version "1.2-0")
18033 (source
18034 (origin
18035 (method url-fetch)
18036 (uri (cran-uri "ACTCD" version))
18037 (sha256
18038 (base32
18039 "0mzjxxr2zfdidw8ibh6w8mvpkw3q3nvngqi05g9ind26ckvk053p"))))
18040 (properties `((upstream-name . "ACTCD")))
18041 (build-system r-build-system)
18042 (propagated-inputs
18043 `(("r-gdina" ,r-gdina)
18044 ("r-r-methodss3" ,r-r-methodss3)))
18045 (native-inputs
18046 `(("gfortran" ,gfortran)))
18047 (home-page "https://cran.r-project.org/web/packages/ACTCD/")
18048 (synopsis "Asymptotic classification theory for cognitive diagnosis")
18049 (description
18050 "This is a package supporting cluster analysis for cognitive diagnosis
18051 based on the Asymptotic Classification Theory (Chiu, Douglas & Li, 2009;
18052 @url{doi:10.1007/s11336-009-9125-0}). Given the sample statistic of
18053 sum-scores, cluster analysis techniques can be used to classify examinees into
18054 latent classes based on their attribute patterns. In addition to the
18055 algorithms used to classify data, three labeling approaches are proposed to
18056 label clusters so that examinees' attribute profiles can be obtained.")
18057 (license license:gpl2+)))
18058
18059 (define-public r-ineq
18060 (package
18061 (name "r-ineq")
18062 (version "0.2-13")
18063 (source
18064 (origin
18065 (method url-fetch)
18066 (uri (cran-uri "ineq" version))
18067 (sha256
18068 (base32
18069 "09fsxyrh0j7mwmb5hkhmrzgcy7kf85jxkh7zlwpgqgcsyl1n91z0"))))
18070 (properties `((upstream-name . "ineq")))
18071 (build-system r-build-system)
18072 (home-page "https://cran.r-project.org/web/packages/ineq/")
18073 (synopsis "Measuring inequality, concentration, and poverty")
18074 (description
18075 "This package provides tools for measuring inequality, concentration, and
18076 poverty measures. It provides both empirical and theoretical Lorenz curves.")
18077 ;; Either of these two versions.
18078 (license (list license:gpl2 license:gpl3))))
18079
18080 (define-public r-actfrag
18081 (package
18082 (name "r-actfrag")
18083 (version "0.1.1")
18084 (source
18085 (origin
18086 (method url-fetch)
18087 (uri (cran-uri "ActFrag" version))
18088 (sha256
18089 (base32
18090 "08r3gwjz4fkyy85dxqix0ffm5xyq45032qv3snnzxnlqxslxbqn1"))))
18091 (properties `((upstream-name . "ActFrag")))
18092 (build-system r-build-system)
18093 (propagated-inputs
18094 `(("r-accelerometry" ,r-accelerometry)
18095 ("r-dplyr" ,r-dplyr)
18096 ("r-ineq" ,r-ineq)
18097 ("r-survival" ,r-survival)
18098 ("r-tidyr" ,r-tidyr)))
18099 (home-page "https://github.com/junruidi/ActFrag")
18100 (synopsis "Activity fragmentation metrics extraction")
18101 (description
18102 "This package provides functions to extract commonly used fragmentation
18103 metrics to quantify time accumulation strategies based on minute level
18104 actigraphy-measured activity counts data.")
18105 (license license:gpl3)))
18106
18107 (define-public r-fda
18108 (package
18109 (name "r-fda")
18110 (version "2.4.8.1")
18111 (source
18112 (origin
18113 (method url-fetch)
18114 (uri (cran-uri "fda" version))
18115 (sha256
18116 (base32
18117 "0g50kj1dx7zarjv0lgwyzd2c7bv6di7nkndmywday5vjywgl8m7a"))))
18118 (properties `((upstream-name . "fda")))
18119 (build-system r-build-system)
18120 (propagated-inputs
18121 `(("r-matrix" ,r-matrix)))
18122 (home-page "https://www.functionaldata.org")
18123 (synopsis "Functional data analysis")
18124 (description
18125 "These functions were developed to support functional data analysis as
18126 described in Ramsay, J. O. and Silverman, B. W. (2005) Functional Data
18127 Analysis. The package includes data sets and script files working many
18128 examples.")
18129 (license license:gpl2+)))
18130
18131 (define-public r-actigraphy
18132 (package
18133 (name "r-actigraphy")
18134 (version "1.4.0")
18135 (source
18136 (origin
18137 (method url-fetch)
18138 (uri (cran-uri "Actigraphy" version))
18139 (sha256
18140 (base32
18141 "0bpmvszzv5fm72nar3wgnmfl5am7znqfajmlbv38ihkbi7jbwk20"))))
18142 (properties `((upstream-name . "Actigraphy")))
18143 (build-system r-build-system)
18144 (propagated-inputs
18145 `(("r-fda" ,r-fda)))
18146 (home-page "https://cran.r-project.org/web/packages/Actigraphy/")
18147 (synopsis "Actigraphy data analysis")
18148 (description
18149 "This package provides tools for functional linear modeling and analysis
18150 of actigraphy data.")
18151 (license license:asl2.0)))
18152
18153 (define-public r-activedriver
18154 (package
18155 (name "r-activedriver")
18156 (version "1.0.0")
18157 (source
18158 (origin
18159 (method url-fetch)
18160 (uri (cran-uri "ActiveDriver" version))
18161 (sha256
18162 (base32
18163 "10c7ga48fwvpd5mc4dqiyw4kc2l0iz5qn4hg7xk15r1qmm5rsipa"))))
18164 (properties `((upstream-name . "ActiveDriver")))
18165 (build-system r-build-system)
18166 (propagated-inputs
18167 `(("r-mass" ,r-mass)))
18168 (home-page "https://cran.r-project.org/web/packages/ActiveDriver/")
18169 (synopsis "Tools for finding cancer driver proteins")
18170 (description
18171 "This package provides a mutation analysis tool that discovers cancer
18172 driver genes with frequent mutations in protein signalling sites such as
18173 post-translational modifications (phosphorylation, ubiquitination, etc). The
18174 Poisson generalized linear regression model identifies genes where cancer
18175 mutations in signalling sites are more frequent than expected from the
18176 sequence of the entire gene. Integration of mutations with signalling
18177 information helps find new driver genes and propose candidate mechanisms to
18178 known drivers.")
18179 (license license:gpl2+)))
18180
18181 (define-public r-activitycounts
18182 (package
18183 (name "r-activitycounts")
18184 (version "0.1.2")
18185 (source
18186 (origin
18187 (method url-fetch)
18188 (uri (cran-uri "activityCounts" version))
18189 (sha256
18190 (base32
18191 "0zgxr2sk3a8kmygfxx1p5hnrfwdkxx7php6jlrhm8wv6052ck8jz"))))
18192 (properties
18193 `((upstream-name . "activityCounts")))
18194 (build-system r-build-system)
18195 (propagated-inputs
18196 `(("r-lubridate" ,r-lubridate)
18197 ("r-magrittr" ,r-magrittr)
18198 ("r-seewave" ,r-seewave)
18199 ("r-signal" ,r-signal)
18200 ("r-tibble" ,r-tibble)))
18201 (home-page "https://github.com/walkabillylab/activityCounts")
18202 (synopsis "Generate ActiLife counts")
18203 (description
18204 "ActiLife generates activity counts from data collected by Actigraph
18205 accelerometers. Actigraph is one of the most common research-grade
18206 accelerometers. There is considerable research validating and developing
18207 algorithms for human activity using ActiLife counts. Unfortunately, ActiLife
18208 counts are proprietary and difficult to implement if researchers use different
18209 accelerometer brands. The code creates ActiLife counts from raw acceleration
18210 data for different accelerometer brands.")
18211 (license license:gpl3)))
18212
18213 (define-public r-activityindex
18214 (package
18215 (name "r-activityindex")
18216 (version "0.3.6")
18217 (source
18218 (origin
18219 (method url-fetch)
18220 (uri (cran-uri "ActivityIndex" version))
18221 (sha256
18222 (base32
18223 "14k6d78s15j7kb7jhixf4msrdjdl28d0r264cbvy41p8dkq7ysvk"))))
18224 (properties `((upstream-name . "ActivityIndex")))
18225 (build-system r-build-system)
18226 (propagated-inputs
18227 `(("r-data-table" ,r-data-table)
18228 ("r-matrixstats" ,r-matrixstats)
18229 ("r-r-utils" ,r-r-utils)))
18230 (home-page "https://cran.r-project.org/web/packages/ActivityIndex/")
18231 (synopsis "Activity Index calculation using raw accelerometry data")
18232 (description
18233 "This is a package to read raw accelerometry from GT3X+ accelerometry
18234 data and plain table data to calculate the Activity Index from Bai et
18235 al. (2016) @url{doi:10.1371/journal.pone.0160644}.")
18236 (license license:gpl3)))
18237
18238 (define-public r-activpal
18239 (package
18240 (name "r-activpal")
18241 (version "0.1.3")
18242 (source
18243 (origin
18244 (method url-fetch)
18245 (uri (cran-uri "activPAL" version))
18246 (sha256
18247 (base32
18248 "1h6hp5z89ji73gdzxy1dgbfwjysiy5lvcqh90xagpb7sa7ahs3na"))))
18249 (properties `((upstream-name . "activPAL")))
18250 (build-system r-build-system)
18251 (propagated-inputs
18252 `(("r-devtools" ,r-devtools)
18253 ("r-dplyr" ,r-dplyr)
18254 ("r-ggplot2" ,r-ggplot2)
18255 ("r-lubridate" ,r-lubridate)
18256 ("r-magrittr" ,r-magrittr)
18257 ("r-tidyr" ,r-tidyr)))
18258 (home-page "https://cran.r-project.org/web/packages/activPAL")
18259 (synopsis "Processing and chart generation from activPAL events files")
18260 (description
18261 "This package contains functions to generate pre-defined summary
18262 statistics from activPAL events files. The package also contains functions to
18263 produce informative graphics that visualize physical activity behaviour and
18264 trends. This includes generating graphs that align physical activity
18265 behaviour with additional time based observations described by other data
18266 sets, such as sleep diaries and continuous glucose monitoring data.")
18267 (license license:gpl3)))
18268
18269 (define-public r-activpalprocessing
18270 (package
18271 (name "r-activpalprocessing")
18272 (version "1.0.2")
18273 (source
18274 (origin
18275 (method url-fetch)
18276 (uri (cran-uri "activpalProcessing" version))
18277 (sha256
18278 (base32
18279 "1y0bjx2qx53iy930y9iww4q1yzjj8y16cwgixk1mq3w4g1f116d1"))))
18280 (properties
18281 `((upstream-name . "activpalProcessing")))
18282 (build-system r-build-system)
18283 (propagated-inputs
18284 `(("r-chron" ,r-chron)))
18285 (home-page "https://cran.r-project.org/web/packages/activpalProcessing/")
18286 (synopsis "Process activPAL events files")
18287 (description
18288 "This package performs estimation of physical activity and sedentary
18289 behavior variables from activPAL events files.")
18290 ;; Either version of the GPL.
18291 (license (list license:gpl2 license:gpl3))))
18292
18293 (define-public r-actogrammr
18294 (package
18295 (name "r-actogrammr")
18296 (version "0.2.3")
18297 (source
18298 (origin
18299 (method url-fetch)
18300 (uri (cran-uri "actogrammr" version))
18301 (sha256
18302 (base32
18303 "1jzvarmd41yqlrkagzlc8m19n5mn0w0b36fy50lyvgrfsafjfbqa"))))
18304 (properties `((upstream-name . "actogrammr")))
18305 (build-system r-build-system)
18306 (propagated-inputs
18307 `(("r-dplyr" ,r-dplyr)
18308 ("r-ggplot2" ,r-ggplot2)
18309 ("r-lubridate" ,r-lubridate)
18310 ("r-readr" ,r-readr)
18311 ("r-tidyr" ,r-tidyr)))
18312 (home-page "https://cran.r-project.org/web/packages/actogrammr/")
18313 (synopsis "Read in activity data and plot actograms")
18314 (description
18315 "Read in activity measurements from standard file formats used by
18316 circadian rhythm researchers, currently only ClockLab format, and process and
18317 plot the data. The central type of plot is the actogram, as first described
18318 in \"Activity and distribution of certain wild mice in relation to biotic
18319 communities\" by MS Johnson (1926) @url{doi:10.2307/1373575}.")
18320 (license license:gpl3)))
18321
18322 (define-public r-expint
18323 (package
18324 (name "r-expint")
18325 (version "0.1-6")
18326 (source
18327 (origin
18328 (method url-fetch)
18329 (uri (cran-uri "expint" version))
18330 (sha256
18331 (base32
18332 "0iai25cglcdnf44d2d1fz1xpw4q600my4zq4493fk4cs5673mlf7"))))
18333 (properties `((upstream-name . "expint")))
18334 (build-system r-build-system)
18335 (home-page "https://gitlab.com/vigou3/expint")
18336 (synopsis "Exponential integral and incomplete Gamma function")
18337 (description
18338 "This package provides the exponential integrals @code{E_1(x)},
18339 @code{E_2(x)}, @code{E_n(x)} and @code{Ei(x)}, and the incomplete gamma
18340 function @code{G(a, x)} defined for negative values of its first argument.
18341 The package also gives easy access to the underlying C routines through an
18342 API; see the package vignette for details.")
18343 (license license:gpl2+)))
18344
18345 (define-public r-actuar
18346 (package
18347 (name "r-actuar")
18348 (version "2.3-3")
18349 (source
18350 (origin
18351 (method url-fetch)
18352 (uri (cran-uri "actuar" version))
18353 (sha256
18354 (base32
18355 "0aw3hlan5y22mdqk1wvnw9ksqhwp4yy5hi0dpv21p7s0hyxhphih"))))
18356 (properties `((upstream-name . "actuar")))
18357 (build-system r-build-system)
18358 (propagated-inputs `(("r-expint" ,r-expint)))
18359 (home-page "https://gitlab.com/vigou3/actuar")
18360 (synopsis "Actuarial functions and heavy tailed distributions")
18361 (description
18362 "This package provides functions and data sets for actuarial science:
18363 modeling of loss distributions; risk theory and ruin theory; simulation of
18364 compound models, discrete mixtures and compound hierarchical models;
18365 credibility theory. It boasts support for many additional probability
18366 distributions to model insurance loss amounts and loss frequency: 19
18367 continuous heavy tailed distributions; the Poisson-inverse Gaussian discrete
18368 distribution; zero-truncated and zero-modified extensions of the standard
18369 discrete distributions. It also supports phase-type distributions commonly
18370 used to compute ruin probabilities.")
18371 (license license:gpl2+)))
18372
18373 (define-public r-bmp
18374 (package
18375 (name "r-bmp")
18376 (version "0.3")
18377 (source
18378 (origin
18379 (method url-fetch)
18380 (uri (cran-uri "bmp" version))
18381 (sha256
18382 (base32
18383 "0jd67r11bn98hjwgyr6gas423787xy7ji2hq7ay80blkkcj91xxx"))))
18384 (properties `((upstream-name . "bmp")))
18385 (build-system r-build-system)
18386 (home-page "https://cran.r-project.org/web/packages/bmp/")
18387 (synopsis "Read Bitmap (BMP) images")
18388 (description
18389 "This package provides pure R tools to read BMP format images. It is
18390 currently limited to 8 bit greyscale images and 24, 32 bit (A)RGB images.")
18391 (license license:gpl2+)))
18392
18393 (define-public r-readbitmap
18394 (package
18395 (name "r-readbitmap")
18396 (version "0.1.5")
18397 (source
18398 (origin
18399 (method url-fetch)
18400 (uri (cran-uri "readbitmap" version))
18401 (sha256
18402 (base32
18403 "14825906l326w59g6apy00j55jg3h5kx2r6s031f4gdkbrc7szbk"))))
18404 (properties `((upstream-name . "readbitmap")))
18405 (build-system r-build-system)
18406 (inputs
18407 `(("libjpeg" ,libjpeg)
18408 ("libpng" ,libpng)))
18409 (propagated-inputs
18410 `(("r-bmp" ,r-bmp)
18411 ("r-jpeg" ,r-jpeg)
18412 ("r-png" ,r-png)
18413 ("r-tiff" ,r-tiff)))
18414 (home-page "https://github.com/jefferis/readbitmap")
18415 (synopsis "Unified interface to read bitmap images (BMP, JPEG, PNG, TIFF)")
18416 (description
18417 "This package provides tools to identify and read BMP, JPEG, PNG, and
18418 TIFF format bitmap images. Identification defaults to the use of the magic
18419 number embedded in the file rather than the file extension.")
18420 (license license:gpl2+)))
18421
18422 (define-public r-imager
18423 (package
18424 (name "r-imager")
18425 (version "0.42.1")
18426 (source
18427 (origin
18428 (method url-fetch)
18429 (uri (cran-uri "imager" version))
18430 (sha256
18431 (base32
18432 "1d7a49lcna77wyfjf5q1b89jck3p3vnysnkgz4drb0qkpy6hz76b"))))
18433 (properties `((upstream-name . "imager")))
18434 (build-system r-build-system)
18435 (inputs
18436 `(("fftw" ,fftw)
18437 ("libtiff" ,libtiff)
18438 ("libx11" ,libx11)
18439 ("zlib" ,zlib)))
18440 (propagated-inputs
18441 `(("r-downloader" ,r-downloader)
18442 ("r-igraph" ,r-igraph)
18443 ("r-jpeg" ,r-jpeg)
18444 ("r-magrittr" ,r-magrittr)
18445 ("r-png" ,r-png)
18446 ("r-purrr" ,r-purrr)
18447 ("r-rcpp" ,r-rcpp)
18448 ("r-readbitmap" ,r-readbitmap)
18449 ("r-stringr" ,r-stringr)))
18450 (native-inputs `(("pkg-config" ,pkg-config)))
18451 (home-page "https://dahtah.github.io/imager/")
18452 (synopsis "Image processing library")
18453 (description
18454 "This is a package for fast image processing for images in up to 4
18455 dimensions (two spatial dimensions, one time/depth dimension, one color
18456 dimension). It provides most traditional image processing tools (filtering,
18457 morphology, transformations, etc.) as well as various functions for easily
18458 analyzing image data using R. The package wraps @url{http://cimg.eu, CImg}, a
18459 simple, modern C++ library for image processing.")
18460 (license license:lgpl3)))
18461
18462 (define-public r-acuityview
18463 (package
18464 (name "r-acuityview")
18465 (version "0.1")
18466 (source
18467 (origin
18468 (method url-fetch)
18469 (uri (cran-uri "AcuityView" version))
18470 (sha256
18471 (base32
18472 "0f0iclmnwdc8ixiiai4svk4x1g3pjy7dhm3cm58fv6ckx12d3d2l"))))
18473 (properties `((upstream-name . "AcuityView")))
18474 (build-system r-build-system)
18475 (propagated-inputs
18476 `(("r-fftwtools" ,r-fftwtools)
18477 ("r-imager" ,r-imager)
18478 ("r-plotrix" ,r-plotrix)))
18479 (home-page "https://cran.r-project.org/web/packages/AcuityView/")
18480 (synopsis "Display scenes as seen by an animal with less acute vision")
18481 (description
18482 "This package provides a simple method for representing a visual scene as
18483 it may be seen by an animal with less acute vision.")
18484 (license license:gpl2+)))
18485
18486 (define-public r-caret
18487 (package
18488 (name "r-caret")
18489 (version "6.0-86")
18490 (source
18491 (origin
18492 (method url-fetch)
18493 (uri (cran-uri "caret" version))
18494 (sha256
18495 (base32
18496 "0dyflixdw98lvk2x3w136sw24ij0fwx5c7l709dmqr5z7xy1qjns"))))
18497 (build-system r-build-system)
18498 (propagated-inputs
18499 `(("r-foreach" ,r-foreach)
18500 ("r-ggplot2" ,r-ggplot2)
18501 ("r-lattice" ,r-lattice)
18502 ("r-modelmetrics" ,r-modelmetrics)
18503 ("r-nlme" ,r-nlme)
18504 ("r-plyr" ,r-plyr)
18505 ("r-proc" ,r-proc)
18506 ("r-recipes" ,r-recipes)
18507 ("r-reshape2" ,r-reshape2)
18508 ("r-withr" ,r-withr)))
18509 (native-inputs
18510 `(("r-knitr" ,r-knitr)))
18511 (home-page "https://github.com/topepo/caret")
18512 (synopsis "Classification and regression training")
18513 (description
18514 "This package provides miscellaneous functions for training and plotting
18515 classification and regression models.")
18516 (license license:gpl2+)))
18517
18518 (define-public r-adabag
18519 (package
18520 (name "r-adabag")
18521 (version "4.2")
18522 (source
18523 (origin
18524 (method url-fetch)
18525 (uri (cran-uri "adabag" version))
18526 (sha256
18527 (base32
18528 "109wrl1pwvmyv2l909hrvk7dg4aa9pv449mvdycp50zwrsw9w0a7"))))
18529 (properties `((upstream-name . "adabag")))
18530 (build-system r-build-system)
18531 (propagated-inputs
18532 `(("r-caret" ,r-caret)
18533 ("r-doparallel" ,r-doparallel)
18534 ("r-foreach" ,r-foreach)
18535 ("r-rpart" ,r-rpart)))
18536 (home-page "https://cran.r-project.org/web/packages/adabag/")
18537 (synopsis "Multiclass AdaBoost.M1, SAMME and Bagging")
18538 (description
18539 "This package implements Freund and Schapire's Adaboost.M1 algorithm and
18540 Breiman's Bagging algorithm using classification trees as individual
18541 classifiers. Once these classifiers have been trained, they can be used to
18542 predict on new data. Also, cross validation estimation of the error can be
18543 done.")
18544 (license license:gpl2+)))
18545
18546 (define-public r-adagio
18547 (package
18548 (name "r-adagio")
18549 (version "0.7.1")
18550 (source
18551 (origin
18552 (method url-fetch)
18553 (uri (cran-uri "adagio" version))
18554 (sha256
18555 (base32
18556 "1h9l0ddrxq8y35iy9hdkxdvdwsqpnpkzzbkbwwhm4380lq1m7a3k"))))
18557 (properties `((upstream-name . "adagio")))
18558 (build-system r-build-system)
18559 (native-inputs `(("gfortran" ,gfortran)))
18560 (home-page "https://cran.r-project.org/web/packages/adagio/")
18561 (synopsis "Discrete and global optimization routines")
18562 (description
18563 "This package provides methods and algorithms for discrete optimization,
18564 e.g. knapsack and subset sum procedures, derivative-free Nelder-Mead and
18565 Hooke-Jeeves minimization, and some (evolutionary) global optimization
18566 functions.")
18567 (license license:gpl3+)))
18568
18569 (define-public r-univoutl
18570 (package
18571 (name "r-univoutl")
18572 (version "0.1-5")
18573 (source
18574 (origin
18575 (method url-fetch)
18576 (uri (cran-uri "univOutl" version))
18577 (sha256
18578 (base32
18579 "193wrpkvgmlrx43nag8w3ivrlqm37nm6g86wcvd3bgw3hchs70gi"))))
18580 (properties `((upstream-name . "univOutl")))
18581 (build-system r-build-system)
18582 (propagated-inputs
18583 `(("r-hmisc" ,r-hmisc)
18584 ("r-robustbase" ,r-robustbase)))
18585 (home-page "https://github.com/marcellodo/univOutl")
18586 (synopsis "Detection of univariate outliers")
18587 (description
18588 "This package provides well-known outlier detection techniques in the
18589 univariate case. Methods to deal with skewed distribution are included too.
18590 The Hidiroglou-Berthelot (1986) method to search for outliers in ratios of
18591 historical data is implemented as well. When available, survey weights can be
18592 used in outliers detection.")
18593 (license license:gpl2+)))
18594
18595 (define-public r-tolerance
18596 (package
18597 (name "r-tolerance")
18598 (version "2.0.0")
18599 (source
18600 (origin
18601 (method url-fetch)
18602 (uri (cran-uri "tolerance" version))
18603 (sha256
18604 (base32
18605 "001snzr2ipag3zprynydlbi9prkjzrllc054qh7m0qwkb3r19jjd"))))
18606 (properties `((upstream-name . "tolerance")))
18607 (build-system r-build-system)
18608 (propagated-inputs
18609 `(("r-mass" ,r-mass)
18610 ("r-rgl" ,r-rgl)))
18611 (home-page "https://cran.r-project.org/web/packages/tolerance/")
18612 (synopsis "Statistical tolerance intervals and regions")
18613 (description
18614 "This package provides functions for estimating tolerance
18615 limits (intervals) for various univariate distributions (binomial, Cauchy,
18616 discrete Pareto, exponential, two-parameter exponential, extreme value,
18617 hypergeometric, Laplace, logistic, negative binomial, negative hypergeometric,
18618 normal, Pareto, Poisson-Lindley, Poisson, uniform, and Zipf-Mandelbrot),
18619 Bayesian normal tolerance limits, multivariate normal tolerance regions,
18620 nonparametric tolerance intervals, tolerance bands for regression
18621 settings (linear regression, nonlinear regression, nonparametric regression,
18622 and multivariate regression), and analysis of variance tolerance intervals.
18623 Visualizations are also available for most of these settings.")
18624 (license license:gpl2+)))
18625
18626 (define-public r-additivitytests
18627 (package
18628 (name "r-additivitytests")
18629 (version "1.1-4")
18630 (source
18631 (origin
18632 (method url-fetch)
18633 (uri (cran-uri "additivityTests" version))
18634 (sha256
18635 (base32
18636 "048ds90wqjdjy1nyhna3m06asdklbh8sx1n556kss2j1r1pma1sw"))))
18637 (properties
18638 `((upstream-name . "additivityTests")))
18639 (build-system r-build-system)
18640 (home-page "https://github.com/simecek/additivityTests")
18641 (synopsis "Additivity tests in the two way Anova with single sub-class numbers")
18642 (description
18643 "This package provides an implementation of the Tukey, Mandel,
18644 Johnson-Graybill, LBI, Tusell and modified Tukey non-additivity tests.")
18645 (license license:gpl3)))
18646
18647 (define-public r-flexclust
18648 (package
18649 (name "r-flexclust")
18650 (version "1.4-0")
18651 (source
18652 (origin
18653 (method url-fetch)
18654 (uri (cran-uri "flexclust" version))
18655 (sha256
18656 (base32
18657 "0x7wxk8y46ndyz6fdacym0rd6p9wh3pcfr28chjcg5d7fm849zl2"))))
18658 (properties `((upstream-name . "flexclust")))
18659 (build-system r-build-system)
18660 (propagated-inputs
18661 `(("r-class" ,r-class)
18662 ("r-lattice" ,r-lattice)
18663 ("r-modeltools" ,r-modeltools)))
18664 (home-page "https://cran.r-project.org/web/packages/flexclust/")
18665 (synopsis "Flexible cluster algorithms")
18666 (description
18667 "The main function @code{kcca} implements a general framework for
18668 k-centroids cluster analysis supporting arbitrary distance measures and
18669 centroid computation. Further cluster methods include hard competitive
18670 learning, neural gas, and QT clustering. There are numerous visualization
18671 methods for cluster results (neighborhood graphs, convex cluster hulls,
18672 barcharts of centroids, ...), and bootstrap methods for the analysis of
18673 cluster stability.")
18674 (license license:gpl2)))
18675
18676 (define-public r-biclust
18677 (package
18678 (name "r-biclust")
18679 (version "2.0.2")
18680 (source
18681 (origin
18682 (method url-fetch)
18683 (uri (cran-uri "biclust" version))
18684 (sha256
18685 (base32
18686 "1pk7mvwlg4hkc4cn4w6wr2c192qx03d1xfwlzclk5bw1nmcg483b"))))
18687 (properties `((upstream-name . "biclust")))
18688 (build-system r-build-system)
18689 (propagated-inputs
18690 `(("r-additivitytests" ,r-additivitytests)
18691 ("r-colorspace" ,r-colorspace)
18692 ("r-flexclust" ,r-flexclust)
18693 ("r-ggplot2" ,r-ggplot2)
18694 ("r-lattice" ,r-lattice)
18695 ("r-mass" ,r-mass)
18696 ("r-tidyr" ,r-tidyr)))
18697 (home-page "https://cran.r-project.org/web/packages/biclust/")
18698 (synopsis "BiCluster algorithms")
18699 (description
18700 "The main function @code{biclust()} provides several algorithms to find
18701 biclusters in two-dimensional data, spectral, plaid model, xmotifs, and bimax.
18702 In addition, the package provides methods for data
18703 preprocessing (normalization and discretization), visualization, and
18704 validation of bicluster solutions.")
18705 (license license:gpl3)))
18706
18707 (define-public r-icge
18708 (package
18709 (name "r-icge")
18710 (version "0.3")
18711 (source
18712 (origin
18713 (method url-fetch)
18714 (uri (cran-uri "ICGE" version))
18715 (sha256
18716 (base32
18717 "0xin7zml1nbygyi08hhg3wwr2jr1zcsvrlgia89zp4xanxlzgaqa"))))
18718 (properties `((upstream-name . "ICGE")))
18719 (build-system r-build-system)
18720 (propagated-inputs
18721 `(("r-cluster" ,r-cluster)
18722 ("r-mass" ,r-mass)))
18723 (home-page "https://cran.r-project.org/web/packages/ICGE/")
18724 (synopsis "Cluster estimation and identification of atypical units")
18725 (description
18726 "ICGE is a package that helps to estimate the number of real clusters in
18727 data as well as to identify atypical units. The underlying methods are based
18728 on distances rather than on unit x variables.")
18729 (license license:gpl2+)))
18730
18731 (define-public r-depth
18732 (package
18733 (name "r-depth")
18734 (version "2.1-1.1")
18735 (source
18736 (origin
18737 (method url-fetch)
18738 (uri (cran-uri "depth" version))
18739 (sha256
18740 (base32
18741 "0szy0027nh4ps1z919i740i50app5q7cfyg1fj7pdyl45nbl8k6m"))))
18742 (properties `((upstream-name . "depth")))
18743 (build-system r-build-system)
18744 (propagated-inputs
18745 `(("r-abind" ,r-abind)
18746 ("r-circular" ,r-circular)
18747 ("r-rgl" ,r-rgl)))
18748 (native-inputs
18749 `(("gfortran" ,gfortran)))
18750 (home-page "https://cran.r-project.org/web/packages/depth/")
18751 (synopsis "Nonparametric depth functions for multivariate analysis")
18752 (description
18753 "This package provides tools for depth functions methodology applied to
18754 multivariate analysis. Besides allowing calculation of depth values and
18755 depth-based location estimators, the package includes functions or drawing
18756 contour plots and perspective plots of depth functions. Euclidian and
18757 spherical depths are supported.")
18758 (license license:gpl2)))
18759
18760 (define-public r-archetypes
18761 (package
18762 (name "r-archetypes")
18763 (version "2.2-0.1")
18764 (source
18765 (origin
18766 (method url-fetch)
18767 (uri (cran-uri "archetypes" version))
18768 (sha256
18769 (base32
18770 "0ibxsr173ib77gjhid91m85s8gjii4mi2w3d52q5301igv20p7r0"))))
18771 (properties `((upstream-name . "archetypes")))
18772 (build-system r-build-system)
18773 (propagated-inputs
18774 `(("r-modeltools" ,r-modeltools)
18775 ("r-nnls" ,r-nnls)))
18776 (home-page "https://cran.r-project.org/web/packages/archetypes")
18777 (synopsis "Archetypal analysis")
18778 (description
18779 "The main function @code{archetypes} implements a framework for
18780 archetypal analysis supporting arbitrary problem solving mechanisms for the
18781 different conceptual parts of the algorithm.")
18782 (license license:gpl2+)))
18783
18784 (define-public r-shapes
18785 (package
18786 (name "r-shapes")
18787 (version "1.2.5")
18788 (source
18789 (origin
18790 (method url-fetch)
18791 (uri (cran-uri "shapes" version))
18792 (sha256
18793 (base32
18794 "0gfpdydfysp5mwg7qmkn73s67gvh2szb40mzqrx97h41ijgcgd8s"))))
18795 (properties `((upstream-name . "shapes")))
18796 (build-system r-build-system)
18797 (propagated-inputs
18798 `(("r-mass" ,r-mass)
18799 ("r-minpack-lm" ,r-minpack-lm)
18800 ("r-rgl" ,r-rgl)
18801 ("r-scatterplot3d" ,r-scatterplot3d)))
18802 (home-page "http://www.maths.nottingham.ac.uk/~ild/shapes")
18803 (synopsis "Statistical shape analysis")
18804 (description
18805 "This package provides routines for the statistical analysis of landmark
18806 shapes, including Procrustes analysis, graphical displays, principal
18807 components analysis, permutation and bootstrap tests, thin-plate spline
18808 transformation grids and comparing covariance matrices. See Dryden, I.L. and
18809 Mardia, K.V. (2016). Statistical shape analysis, with Applications in R (2nd
18810 Edition), John Wiley and Sons.")
18811 (license license:gpl2)))
18812
18813 (define-public r-anthropometry
18814 (package
18815 (name "r-anthropometry")
18816 (version "1.14")
18817 (source
18818 (origin
18819 (method url-fetch)
18820 (uri (cran-uri "Anthropometry" version))
18821 (sha256
18822 (base32
18823 "0y52g15pcgs4b68sfczn6nnpdqsialsb4mq3wb9a2gba7qdcf76y"))))
18824 (properties `((upstream-name . "Anthropometry")))
18825 (build-system r-build-system)
18826 (propagated-inputs
18827 `(("r-archetypes" ,r-archetypes)
18828 ("r-biclust" ,r-biclust)
18829 ("r-cluster" ,r-cluster)
18830 ("r-depth" ,r-depth)
18831 ("r-fnn" ,r-fnn)
18832 ("r-icge" ,r-icge)
18833 ("r-nnls" ,r-nnls)
18834 ("r-rgl" ,r-rgl)
18835 ("r-shapes" ,r-shapes)))
18836 (native-inputs
18837 `(("r-knitr" ,r-knitr)))
18838 (home-page "https://cran.r-project.org/web/packages/Anthropometry/")
18839 (synopsis "Statistical methods for anthropometric data")
18840 (description
18841 "This package provides statistical methods especially developed to
18842 analyze anthropometric data. These methods are aimed at providing effective
18843 solutions to some commons problems related to Ergonomics and Anthropometry.
18844 They are based on clustering, the statistical concept of data depth,
18845 statistical shape analysis and archetypal analysis.")
18846 (license license:gpl2+)))
18847
18848 (define-public r-adamethods
18849 (package
18850 (name "r-adamethods")
18851 (version "1.2")
18852 (source
18853 (origin
18854 (method url-fetch)
18855 (uri (cran-uri "adamethods" version))
18856 (sha256
18857 (base32
18858 "0mp73zh5x6h18gv29v981kb9n632kb58lvlcxwr6vcvrx393nrxh"))))
18859 (properties `((upstream-name . "adamethods")))
18860 (build-system r-build-system)
18861 (propagated-inputs
18862 `(("r-anthropometry" ,r-anthropometry)
18863 ("r-archetypes" ,r-archetypes)
18864 ("r-fnn" ,r-fnn)
18865 ("r-foreach" ,r-foreach)
18866 ("r-nnls" ,r-nnls)
18867 ("r-tolerance" ,r-tolerance)
18868 ("r-univoutl" ,r-univoutl)))
18869 (home-page "https://cran.r-project.org/web/packages/adamethods/")
18870 (synopsis "Archetypoid algorithms and anomaly detection")
18871 (description
18872 "This package is a collection of several algorithms to obtain
18873 archetypoids with small and large databases and with both classical
18874 multivariate data and functional data (univariate and multivariate). Some of
18875 these algorithms also allow to detect anomalies (outliers).")
18876 (license license:gpl2+)))
18877
18878 (define-public r-idpmisc
18879 (package
18880 (name "r-idpmisc")
18881 (version "1.1.20")
18882 (source
18883 (origin
18884 (method url-fetch)
18885 (uri (cran-uri "IDPmisc" version))
18886 (sha256
18887 (base32
18888 "0zy6mxqa8arq0vvhsdcifzm3085c23rnwa1n36fhircph1xwvfdw"))))
18889 (properties `((upstream-name . "IDPmisc")))
18890 (build-system r-build-system)
18891 (propagated-inputs
18892 `(("r-lattice" ,r-lattice)))
18893 (home-page "https://cran.r-project.org/web/packages/IDPmisc/")
18894 (synopsis "Functions for data analyses and visualization")
18895 (description
18896 "This package provides different high-level graphics functions for
18897 displaying large datasets, displaying circular data in a very flexible way,
18898 finding local maxima, brewing color ramps, drawing nice arrows, zooming
18899 2D-plots, creating figures with differently colored margin and plot region.
18900 In addition, the package contains auxiliary functions for data manipulation
18901 like omitting observations with irregular values or selecting data by logical
18902 vectors, which include NAs. Other functions are especially useful in
18903 spectroscopy and analyses of environmental data: robust baseline fitting,
18904 finding peaks in spectra, converting humidity measures.")
18905 (license license:gpl3+)))
18906
18907 (define-public r-qqman
18908 (package
18909 (name "r-qqman")
18910 (version "0.1.4")
18911 (source
18912 (origin
18913 (method url-fetch)
18914 (uri (cran-uri "qqman" version))
18915 (sha256
18916 (base32
18917 "1v9s9ag1hfb47py87wb2nad4mbsfx35832hdmrh5kxrb2f11zl1s"))))
18918 (properties `((upstream-name . "qqman")))
18919 (build-system r-build-system)
18920 (propagated-inputs
18921 `(("r-calibrate" ,r-calibrate)))
18922 (home-page "https://cran.r-project.org/web/packages/qqman/")
18923 (synopsis "Q-Q and Manhattan plots for GWAS data")
18924 (description
18925 "This package allows you to create Q-Q and Manhattan plots for GWAS data
18926 from PLINK results.")
18927 (license license:gpl3)))
18928
18929 (define-public r-ggplot-multistats
18930 (package
18931 (name "r-ggplot-multistats")
18932 (version "1.0.0")
18933 (source
18934 (origin
18935 (method url-fetch)
18936 (uri (cran-uri "ggplot.multistats" version))
18937 (sha256
18938 (base32
18939 "1afzfa86vc484bcwpg7m1ky03jpax584rigzgai8w06pifkmz0il"))))
18940 (properties
18941 `((upstream-name . "ggplot.multistats")))
18942 (build-system r-build-system)
18943 (propagated-inputs
18944 `(("r-ggplot2" ,r-ggplot2)
18945 ("r-hexbin" ,r-hexbin)
18946 ("r-rlang" ,r-rlang)
18947 ("r-scales" ,r-scales)))
18948 (home-page "https://github.com/flying-sheep/ggplot.multistats")
18949 (synopsis "Multiple summary statistics for binned stats/geometries")
18950 (description
18951 "This package provides the ggplot binning layer @code{stat_summaries_hex()},
18952 which functions similar to its singular form, but allows the use of multiple
18953 statistics per bin. Those statistics can be mapped to multiple bin
18954 aesthetics.")
18955 (license license:gpl3)))
18956
18957 (define-public r-knn-covertree
18958 (package
18959 (name "r-knn-covertree")
18960 (version "1.0")
18961 (source
18962 (origin
18963 (method url-fetch)
18964 (uri (cran-uri "knn.covertree" version))
18965 (sha256
18966 (base32
18967 "0msfcmwydws7q7m5jdb0dxab0nkbl7mq5llg6v3r4qrnlvrdggvz"))))
18968 (properties `((upstream-name . "knn.covertree")))
18969 (build-system r-build-system)
18970 (propagated-inputs
18971 `(("r-matrix" ,r-matrix)
18972 ("r-rcpp" ,r-rcpp)
18973 ("r-rcppeigen" ,r-rcppeigen)))
18974 (home-page "https://github.com/flying-sheep/knn.covertree")
18975 (synopsis "Accurate kNN Implementation with multiple distance measures")
18976 (description
18977 "Similarly to the FNN package, this package allows calculation of the k
18978 nearest neighbors (kNN) of a data matrix. The implementation is based on
18979 cover trees introduced by Alina Beygelzimer, Sham Kakade, and John
18980 Langford (2006) @url{doi:10.1145/1143844.1143857}.")
18981 (license license:agpl3+)))
18982
18983 (define-public r-poibin
18984 (package
18985 (name "r-poibin")
18986 (version "1.5")
18987 (source
18988 (origin
18989 (method url-fetch)
18990 (uri (cran-uri "poibin" version))
18991 (sha256
18992 (base32
18993 "1sxryvwwz6ldsnkzdy56p8c895s5yvpcai9ndyjv1x5q3l05wf9v"))))
18994 (properties `((upstream-name . "poibin")))
18995 (build-system r-build-system)
18996 (home-page "https://cran.r-project.org/web/packages/poibin/")
18997 (synopsis "Poisson binomial distribution")
18998 (description
18999 "This package provides an implementation of both the exact and
19000 approximation methods for computing the @dfn{cumulative distribution
19001 function} (CDF) of the Poisson binomial distribution. It also provides the
19002 @dfn{probability mass function} (PMF), quantile function, and random number
19003 generation for the Poisson binomial distribution.")
19004 (license license:gpl2)))
19005
19006 (define-public r-diagram
19007 (package
19008 (name "r-diagram")
19009 (version "1.6.4")
19010 (source
19011 (origin
19012 (method url-fetch)
19013 (uri (cran-uri "diagram" version))
19014 (sha256
19015 (base32
19016 "0f6ffprn5k0ir1s7m9s7izc64aa17r3gnygagz5bihrlsvawaavw"))))
19017 (properties `((upstream-name . "diagram")))
19018 (build-system r-build-system)
19019 (propagated-inputs
19020 `(("r-shape" ,r-shape)))
19021 (home-page "https://cran.r-project.org/web/packages/diagram/")
19022 (synopsis "Visualize simple graphs (networks) and plot flow diagrams")
19023 (description
19024 "This package provides tools to visualize simple graphs (networks) based
19025 on a transition matrix, utilities to plot flow diagrams, visualizing webs,
19026 electrical networks, etc. It also includes supporting material for the book
19027 \"A practical guide to ecological modelling - using R as a simulation
19028 platform\" by Karline Soetaert and Peter M.J. Herman (2009) and the book
19029 \"Solving Differential Equations in R\" by Karline Soetaert, Jeff Cash and
19030 Francesca Mazzia (2012).")
19031 (license license:gpl2+)))
19032
19033 (define-public r-lim
19034 (package
19035 (name "r-lim")
19036 (version "1.4.6")
19037 (source
19038 (origin
19039 (method url-fetch)
19040 (uri (cran-uri "LIM" version))
19041 (sha256
19042 (base32
19043 "03x1gnm06bw1wrzc01110bjzd2mvjdzbc2mbrazh22jrmb32w5d8"))))
19044 (properties `((upstream-name . "LIM")))
19045 (build-system r-build-system)
19046 (propagated-inputs
19047 `(("r-diagram" ,r-diagram)
19048 ("r-limsolve" ,r-limsolve)))
19049 (home-page "https://cran.r-project.org/web/packages/LIM/")
19050 (synopsis "Linear inverse model examples and solution methods")
19051 (description
19052 "This package provides functions that read and solve linear inverse
19053 problems (food web problems, linear programming problems).")
19054 (license license:gpl2+)))
19055
19056 (define-public r-shinycssloaders
19057 (package
19058 (name "r-shinycssloaders")
19059 (version "0.3")
19060 (source
19061 (origin
19062 (method url-fetch)
19063 (uri (cran-uri "shinycssloaders" version))
19064 (sha256
19065 (base32
19066 "1gzq1lhcnhqd145ys3ixf0l13l560fiqr2sc3m2nrijwxlgcw54d"))))
19067 (properties
19068 `((upstream-name . "shinycssloaders")))
19069 (build-system r-build-system)
19070 (propagated-inputs
19071 `(("r-digest" ,r-digest)
19072 ("r-glue" ,r-glue)
19073 ("r-shiny" ,r-shiny)))
19074 (home-page "https://github.com/andrewsali/shinycssloaders")
19075 (synopsis "Add CSS loading animations to Shiny outputs")
19076 (description
19077 "This package provides tools to create a lightweight Shiny wrapper for
19078 the css-loaders created by Luke Hass
19079 @url{https://github.com/lukehaas/css-loaders}. Wrapping a Shiny output will
19080 automatically show a loader when the output is (re)calculating.")
19081 (license license:gpl3)))
19082
19083 (define-public r-rsvg
19084 (package
19085 (name "r-rsvg")
19086 (version "1.3")
19087 (source
19088 (origin
19089 (method url-fetch)
19090 (uri (cran-uri "rsvg" version))
19091 (sha256
19092 (base32
19093 "11mccgf6hfskg45wqc114sx3qy2r494y6axdf73z6xwhs1wpm97g"))))
19094 (properties `((upstream-name . "rsvg")))
19095 (build-system r-build-system)
19096 (inputs
19097 `(("librsvg" ,librsvg)
19098 ("zlib" ,zlib)))
19099 (native-inputs
19100 `(("pkg-config" ,pkg-config)))
19101 (home-page "https://github.com/jeroen/rsvg#readme")
19102 (synopsis "Render SVG images into PDF, PNG, PostScript, or Bitmap arrays")
19103 (description
19104 "This package allows you to render vector-based SVG images into
19105 high-quality custom-size bitmap arrays using the librsvg2 library. The
19106 resulting bitmap can be written to e.g. PNG, JPEG or WEBP format. In
19107 addition, the package can convert images directly to various formats such as
19108 PDF or PostScript.")
19109 (license license:expat)))
19110
19111 (define-public r-influencer
19112 (package
19113 (name "r-influencer")
19114 (version "0.1.0")
19115 (source
19116 (origin
19117 (method url-fetch)
19118 (uri (cran-uri "influenceR" version))
19119 (sha256
19120 (base32
19121 "12p9362hkndlnz1rd8j2rykg57kbm6l7ks60by3rd25xg50k5jag"))))
19122 (properties `((upstream-name . "influenceR")))
19123 (build-system r-build-system)
19124 (propagated-inputs
19125 `(("r-igraph" ,r-igraph)
19126 ("r-matrix" ,r-matrix)))
19127 (home-page "https://github.com/rcc-uchicago/influenceR")
19128 (synopsis "Tools to quantify structural importance of nodes in a network")
19129 (description
19130 "This package provides functionality to compute various node centrality
19131 measures on networks. Included are functions to compute betweenness
19132 centrality (by utilizing Madduri and Bader's SNAP library), implementations of
19133 Burt's constraint and @dfn{effective network size} (ENS) metrics, Borgatti's
19134 algorithm to identify key players, and Valente's bridging metric. The
19135 betweenness, Key Players, and bridging implementations are parallelized with
19136 OpenMP.")
19137 (license license:gpl2)))
19138
19139 (define-public r-emplik
19140 (package
19141 (name "r-emplik")
19142 (version "1.0-4.3")
19143 (source
19144 (origin
19145 (method url-fetch)
19146 (uri (cran-uri "emplik" version))
19147 (sha256
19148 (base32
19149 "1g4hz85bvw29c77zs0ig487z92jjl682vv457x81l077h0psvk7c"))))
19150 (properties `((upstream-name . "emplik")))
19151 (build-system r-build-system)
19152 (propagated-inputs
19153 `(("r-quantreg" ,r-quantreg)))
19154 (home-page "https://www.ms.uky.edu/~mai/EmpLik.html")
19155 (synopsis "Empirical likelihood ratio for censored/truncated data")
19156 (description
19157 "This package provides empirical likelihood ratio tests for
19158 means/quantiles/hazards from possibly censored and/or truncated data. It also
19159 does regression.")
19160 (license license:gpl2+)))
19161
19162 (define-public r-imputeyn
19163 (package
19164 (name "r-imputeyn")
19165 (version "1.3")
19166 (source
19167 (origin
19168 (method url-fetch)
19169 (uri (cran-uri "imputeYn" version))
19170 (sha256
19171 (base32
19172 "1b21w1aa5f7yiq8k0wa86wvbg4ij7f6ldwn6asfqwb0b90rvsgvs"))))
19173 (properties `((upstream-name . "imputeYn")))
19174 (build-system r-build-system)
19175 (propagated-inputs
19176 `(("r-boot" ,r-boot)
19177 ("r-emplik" ,r-emplik)
19178 ("r-mvtnorm" ,r-mvtnorm)
19179 ("r-quadprog" ,r-quadprog)
19180 ("r-survival" ,r-survival)))
19181 (home-page "https://cran.r-project.org/web/packages/imputeYn/")
19182 (synopsis "Impute last largest censored observation under weighted least squares")
19183 (description
19184 "This package allows for the imputation of the last largest censored
19185 observantions. This method brings less bias and more efficient estimates for
19186 AFT models.")
19187 (license license:gpl2)))
19188
19189 (define-public r-adapenetclass
19190 (package
19191 (name "r-adapenetclass")
19192 (version "1.2")
19193 (source
19194 (origin
19195 (method url-fetch)
19196 (uri (cran-uri "AdapEnetClass" version))
19197 (sha256
19198 (base32
19199 "01k3mj4g1ckbng7wkzzn9h0k9yf01cpnnkly0sjda574c5jhj0rc"))))
19200 (properties `((upstream-name . "AdapEnetClass")))
19201 (build-system r-build-system)
19202 (propagated-inputs
19203 `(("r-glmnet" ,r-glmnet)
19204 ("r-imputeyn" ,r-imputeyn)
19205 ("r-lars" ,r-lars)
19206 ("r-quadprog" ,r-quadprog)))
19207 (home-page "https://cran.r-project.org/web/packages/AdapEnetClass/")
19208 (synopsis "Class of adaptive elastic net methods for censored data")
19209 (description
19210 "This package provides methods for variable selection for AFT models.")
19211 (license license:gpl2)))
19212
19213 (define-public r-flock
19214 (package
19215 (name "r-flock")
19216 (version "0.7")
19217 (source
19218 (origin
19219 (method url-fetch)
19220 (uri (cran-uri "flock" version))
19221 (sha256
19222 (base32
19223 "1zg93p74icj4bhxnmnssj2xp6vw4yaksyavq03497v33xfpdxss7"))))
19224 (properties `((upstream-name . "flock")))
19225 (build-system r-build-system)
19226 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
19227 (home-page "https://cran.r-project.org/web/packages/flock/")
19228 (synopsis "Process synchronization using file locks")
19229 (description
19230 "This package implements synchronization between R processes (spawned by
19231 using the @code{parallel} package for instance) using file locks. It supports
19232 both exclusive and shared locking.")
19233 (license license:asl2.0)))
19234
19235 (define-public r-archivist
19236 (package
19237 (name "r-archivist")
19238 (version "2.3.4")
19239 (source
19240 (origin
19241 (method url-fetch)
19242 (uri (cran-uri "archivist" version))
19243 (sha256
19244 (base32
19245 "1i11hrcq1910jgd6diw6h3sxx624v57zjianm49pqvb2dvd0b8y7"))))
19246 (properties `((upstream-name . "archivist")))
19247 (build-system r-build-system)
19248 (propagated-inputs
19249 `(("r-dbi" ,r-dbi)
19250 ("r-digest" ,r-digest)
19251 ("r-flock" ,r-flock)
19252 ("r-httr" ,r-httr)
19253 ("r-lubridate" ,r-lubridate)
19254 ("r-magrittr" ,r-magrittr)
19255 ("r-rcurl" ,r-rcurl)
19256 ("r-rsqlite" ,r-rsqlite)))
19257 (home-page "https://pbiecek.github.io/archivist/")
19258 (synopsis "Tools for storing, restoring and searching for R objects")
19259 (description
19260 "Data exploration and modelling is a process in which a lot of data
19261 artifacts are produced. Artifacts like: subsets, data aggregates, plots,
19262 statistical models, different versions of data sets and different versions of
19263 results. Archivist helps to store and manage artifacts created in R. It
19264 allows you to store selected artifacts as binary files together with their
19265 metadata and relations. Archivist allows sharing artifacts with others. It
19266 can look for already created artifacts by using its class, name, date of the
19267 creation or other properties. It also makes it easy to restore such
19268 artifacts.")
19269 (license license:gpl2)))
19270
19271 (define-public r-versions
19272 (package
19273 (name "r-versions")
19274 (version "0.3")
19275 (source
19276 (origin
19277 (method url-fetch)
19278 (uri (cran-uri "versions" version))
19279 (sha256
19280 (base32
19281 "0zm49j785dgv7fyr1yl9q5f0dsk8hhpim5q5bpkgrkzv7pwjribd"))))
19282 (properties `((upstream-name . "versions")))
19283 (build-system r-build-system)
19284 (home-page "https://cran.r-project.org/web/packages/versions/")
19285 (synopsis "Query and install specific versions of CRAN packages")
19286 (description
19287 "This package allows you to install specified versions of R packages
19288 hosted on CRAN and provides functions to list available versions and the
19289 versions of currently installed packages.")
19290 (license license:bsd-3)))
19291
19292 (define-public r-adapr
19293 (package
19294 (name "r-adapr")
19295 (version "2.0.0")
19296 (source
19297 (origin
19298 (method url-fetch)
19299 (uri (cran-uri "adapr" version))
19300 (sha256
19301 (base32
19302 "1s57jdbi5pik56xjz1d4438ax6cywg2yq2s47h5g6wrwvpgr1qfw"))))
19303 (properties `((upstream-name . "adapr")))
19304 (build-system r-build-system)
19305 (propagated-inputs
19306 `(("r-archivist" ,r-archivist)
19307 ("r-devtools" ,r-devtools)
19308 ("r-digest" ,r-digest)
19309 ("r-doparallel" ,r-doparallel)
19310 ("r-gdata" ,r-gdata)
19311 ("r-ggplot2" ,r-ggplot2)
19312 ("r-git2r" ,r-git2r)
19313 ("r-igraph" ,r-igraph)
19314 ("r-knitr" ,r-knitr)
19315 ("r-plotly" ,r-plotly)
19316 ("r-plyr" ,r-plyr)
19317 ("r-rmarkdown" ,r-rmarkdown)
19318 ("r-shiny" ,r-shiny)
19319 ("r-shinydashboard" ,r-shinydashboard)
19320 ("r-versions" ,r-versions)))
19321 (home-page "https://cran.r-project.org/web/packages/adapr/")
19322 (synopsis "Implementation of an accountable data analysis process")
19323 (description
19324 "This package tracks reading and writing within R scripts that are
19325 organized into a directed acyclic graph. It contains an interactive Shiny
19326 application @code{adaprApp()}. It uses Git and file hashes to track version
19327 histories of inputs and outputs.")
19328 (license license:lgpl2.0)))
19329
19330 (define-public r-adapsamp
19331 (package
19332 (name "r-adapsamp")
19333 (version "1.1.1")
19334 (source
19335 (origin
19336 (method url-fetch)
19337 (uri (cran-uri "AdapSamp" version))
19338 (sha256
19339 (base32
19340 "1jayjrsiib2ij4rxxj59g71r3xhzl5yqh0lhi8k6cfy03i7dkvis"))))
19341 (properties `((upstream-name . "AdapSamp")))
19342 (build-system r-build-system)
19343 (propagated-inputs `(("r-pracma" ,r-pracma)))
19344 (home-page "https://cran.r-project.org/web/packages/AdapSamp/")
19345 (synopsis "Adaptive sampling algorithms")
19346 (description
19347 "For distributions whose probability density functions are log-concave,
19348 the adaptive rejection sampling algorithm can be used to build envelope
19349 functions for sampling. For others, the modified adaptive rejection sampling
19350 algorithm, the concave-convex adaptive rejection sampling algorithm, and the
19351 adaptive slice sampling algorithm can be used. This R package mainly includes
19352 these four functions: @code{rARS()}, @code{rMARS()}, @code{rCCARS()}, and
19353 @code{rASS()}. These functions can realize sampling based on the algorithms
19354 above.")
19355 (license license:gpl2)))
19356
19357 (define-public r-adaptalint
19358 (package
19359 (name "r-adaptalint")
19360 (version "0.2.4")
19361 (source
19362 (origin
19363 (method url-fetch)
19364 (uri (cran-uri "adaptalint" version))
19365 (sha256
19366 (base32
19367 "15qdcvnnbgcps8j5k79354wsc9alswijv8lcafg2i3lghaw536yf"))))
19368 (properties `((upstream-name . "adaptalint")))
19369 (build-system r-build-system)
19370 (propagated-inputs
19371 `(("r-dplyr" ,r-dplyr)
19372 ("r-lintr" ,r-lintr)
19373 ("r-purrr" ,r-purrr)))
19374 (home-page "https://cran.r-project.org/web/packages/adaptalint/")
19375 (synopsis "Check R code style")
19376 (description
19377 "This package provides tools to infer the code style (which style rules
19378 are followed and which ones are not) from one package and use it to check
19379 another. This makes it easier to find and correct the most important problems
19380 first.")
19381 (license license:gpl3)))
19382
19383 (define-public r-fracdiff
19384 (package
19385 (name "r-fracdiff")
19386 (version "1.5-1")
19387 (source
19388 (origin
19389 (method url-fetch)
19390 (uri (cran-uri "fracdiff" version))
19391 (sha256
19392 (base32
19393 "1dhfjlhr9sb38qgpsx0sm73l9lgc13d0fk32l7fmjfnalhr3n45q"))))
19394 (properties `((upstream-name . "fracdiff")))
19395 (build-system r-build-system)
19396 (home-page "https://github.com/mmaechler/fracdiff")
19397 (synopsis
19398 "Fractionally differenced ARIMA aka ARFIMA(P,d,q) models")
19399 (description
19400 "This package provides tools for the maximum likelihood estimation of the
19401 parameters of a fractionally differenced ARIMA(p,d,q) model (Haslett and
19402 Raftery, Appl.Statistics, 1989); it includes inference and basic methods.")
19403 (license license:gpl2+)))
19404
19405 (define-public r-forecast
19406 (package
19407 (name "r-forecast")
19408 (version "8.12")
19409 (source
19410 (origin
19411 (method url-fetch)
19412 (uri (cran-uri "forecast" version))
19413 (sha256
19414 (base32
19415 "1ycj5z4wd5a16nlcjy07dqm8jkih240xa02cn4wvysnnhkapyq7b"))))
19416 (properties `((upstream-name . "forecast")))
19417 (build-system r-build-system)
19418 (propagated-inputs
19419 `(("r-colorspace" ,r-colorspace)
19420 ("r-fracdiff" ,r-fracdiff)
19421 ("r-ggplot2" ,r-ggplot2)
19422 ("r-lmtest" ,r-lmtest)
19423 ("r-magrittr" ,r-magrittr)
19424 ("r-nnet" ,r-nnet)
19425 ("r-rcpp" ,r-rcpp)
19426 ("r-rcpparmadillo" ,r-rcpparmadillo)
19427 ("r-timedate" ,r-timedate)
19428 ("r-tseries" ,r-tseries)
19429 ("r-urca" ,r-urca)
19430 ("r-zoo" ,r-zoo)))
19431 (native-inputs
19432 `(("r-knitr" ,r-knitr))) ; needed for vignettes
19433 (home-page "https://pkg.robjhyndman.com/forecast/")
19434 (synopsis "Forecasting functions for time series and linear models")
19435 (description
19436 "This package provides methods and tools for displaying and analysing
19437 univariate time series forecasts including exponential smoothing via state
19438 space models and automatic ARIMA modelling.")
19439 (license license:gpl3)))
19440
19441 (define-public r-xmisc
19442 (package
19443 (name "r-xmisc")
19444 (version "0.2.1")
19445 (source
19446 (origin
19447 (method url-fetch)
19448 (uri (cran-uri "Xmisc" version))
19449 (sha256
19450 (base32
19451 "11gwlcyxhz1p50m68cnqrxmisdk99v8vrsbvyr7k67f0kvsznzs1"))))
19452 (properties `((upstream-name . "Xmisc")))
19453 (build-system r-build-system)
19454 (home-page "https://cran.r-project.org/package=Xmisc")
19455 (synopsis
19456 "Xiaobei's miscellaneous classes and functions")
19457 (description
19458 "This package provides Xiaobei's miscellaneous classes and functions,
19459 which are useful when developing R packages for @dfn{object oriented
19460 programming} (OOP) using R Reference Class.")
19461 (license license:gpl2+)))
19462
19463 (define-public r-proxyc
19464 (package
19465 (name "r-proxyc")
19466 (version "0.1.5")
19467 (source
19468 (origin
19469 (method url-fetch)
19470 (uri (cran-uri "proxyC" version))
19471 (sha256
19472 (base32
19473 "159bc42x4shm6n3rh9fc8ziv3ivq0ipmpbasrh279hhn1prc8gg6"))))
19474 (properties `((upstream-name . "proxyC")))
19475 (build-system r-build-system)
19476 (propagated-inputs
19477 `(("r-matrix" ,r-matrix)
19478 ("r-rcpp" ,r-rcpp)
19479 ("r-rcpparmadillo" ,r-rcpparmadillo)
19480 ("r-rcppparallel" ,r-rcppparallel)))
19481 (home-page "https://cran.r-project.org/package=proxyC")
19482 (synopsis "Compute proximity in large sparse matrices")
19483 (description
19484 "This package provides efficient tools to compute the proximity between
19485 rows or columns of large matrices. Functions are optimised for large sparse
19486 matrices using the Armadillo and Intel TBB libraries. Among several built-in
19487 similarity/distance measures, computation of correlation, cosine similarity
19488 and Euclidean distance is particularly fast.")
19489 (license license:gpl3)))
19490
19491 (define-public r-isocodes
19492 (package
19493 (name "r-isocodes")
19494 (version "2020.03.16")
19495 (source
19496 (origin
19497 (method url-fetch)
19498 (uri (cran-uri "ISOcodes" version))
19499 (sha256
19500 (base32
19501 "1hz1sj57qkkkrgn8slsz2n4jv1fkyp40503j9rg30lxy4gmb83hn"))))
19502 (properties `((upstream-name . "ISOcodes")))
19503 (build-system r-build-system)
19504 (home-page "https://cran.r-project.org/package=ISOcodes")
19505 (synopsis "Selected ISO codes")
19506 (description
19507 "This package provides ISO language, territory, currency, script and
19508 character codes. It provides ISO 639 language codes, ISO 3166 territory
19509 codes, ISO 4217 currency codes, ISO 15924 script codes, and the ISO 8859
19510 character codes as well as the UN M.49 area codes.")
19511 (license license:gpl2)))
19512
19513 (define-public r-stopwords
19514 (package
19515 (name "r-stopwords")
19516 (version "1.0")
19517 (source
19518 (origin
19519 (method url-fetch)
19520 (uri (cran-uri "stopwords" version))
19521 (sha256
19522 (base32
19523 "1nmi0bpd0c238g5b8ch1v034m5ng9llhs519cgxdrj3sh9fplwlv"))))
19524 (properties `((upstream-name . "stopwords")))
19525 (build-system r-build-system)
19526 (propagated-inputs `(("r-isocodes" ,r-isocodes)))
19527 (home-page "https://github.com/quanteda/stopwords")
19528 (synopsis "Multilingual stopword lists")
19529 (description
19530 "This package provides multiple sources of stopwords, for use in text
19531 analysis and natural language processing.")
19532 (license license:expat)))
19533
19534 (define-public r-spacyr
19535 (package
19536 (name "r-spacyr")
19537 (version "1.2.1")
19538 (source
19539 (origin
19540 (method url-fetch)
19541 (uri (cran-uri "spacyr" version))
19542 (sha256
19543 (base32
19544 "1b2ccgwsiqkvp7w37x8k7699c676q16vfrybkrfvyczyhki4s6nw"))))
19545 (properties `((upstream-name . "spacyr")))
19546 (build-system r-build-system)
19547 (propagated-inputs
19548 `(("r-data-table" ,r-data-table)
19549 ("r-reticulate" ,r-reticulate)))
19550 (home-page "https://spacyr.quanteda.io")
19551 (synopsis "R wrapper for the spaCy NLP library")
19552 (description
19553 "This package provides an R wrapper to the Python @dfn{natural language
19554 processing} (NLP) library @code{spaCy}, from @url{http://spacy.io}.")
19555 (license license:gpl3)))
19556
19557 (define-public r-snowballc
19558 (package
19559 (name "r-snowballc")
19560 (version "0.7.0")
19561 (source
19562 (origin
19563 (method url-fetch)
19564 (uri (cran-uri "SnowballC" version))
19565 (sha256
19566 (base32
19567 "1wwm71mp4b2mjb5985x782p6xj519dfrpd40qli7lmig6afyw3xi"))))
19568 (properties `((upstream-name . "SnowballC")))
19569 (build-system r-build-system)
19570 (home-page "https://r-forge.r-project.org/projects/r-temis/")
19571 (synopsis "Snowball stemmers based on the C libstemmer UTF-8 library")
19572 (description
19573 "This package provides an R interface to the C @code{libstemmer} library
19574 that implements Porter's word stemming algorithm for collapsing words to a
19575 common root to aid comparison of vocabulary. Currently supported languages
19576 are Danish, Dutch, English, Finnish, French, German, Hungarian, Italian,
19577 Norwegian, Portuguese, Romanian, Russian, Spanish, Swedish and Turkish.")
19578 (license license:bsd-3)))
19579
19580 (define-public r-quanteda
19581 (package
19582 (name "r-quanteda")
19583 (version "2.0.1")
19584 (source
19585 (origin
19586 (method url-fetch)
19587 (uri (cran-uri "quanteda" version))
19588 (sha256
19589 (base32
19590 "0pym6vdzqbkyj87m3pla229092xvvx4j830x67qflxzzdmc9dzhz"))))
19591 (properties `((upstream-name . "quanteda")))
19592 (build-system r-build-system)
19593 (propagated-inputs
19594 `(("r-data-table" ,r-data-table)
19595 ("r-extrafont" ,r-extrafont)
19596 ("r-fastmatch" ,r-fastmatch)
19597 ("r-ggplot2" ,r-ggplot2)
19598 ("r-ggrepel" ,r-ggrepel)
19599 ("r-jsonlite" ,r-jsonlite)
19600 ("r-magrittr" ,r-magrittr)
19601 ("r-matrix" ,r-matrix)
19602 ("r-network" ,r-network)
19603 ("r-proxyc" ,r-proxyc)
19604 ("r-rcpp" ,r-rcpp)
19605 ("r-rcpparmadillo" ,r-rcpparmadillo)
19606 ("r-rcppparallel" ,r-rcppparallel)
19607 ("r-sna" ,r-sna)
19608 ("r-snowballc" ,r-snowballc)
19609 ("r-stopwords" ,r-stopwords)
19610 ("r-stringi" ,r-stringi)
19611 ("r-xml2" ,r-xml2)
19612 ("r-yaml" ,r-yaml)))
19613 (native-inputs
19614 `(("r-knitr" ,r-knitr)))
19615 (home-page "https://quanteda.io")
19616 (synopsis "Quantitative analysis of textual data")
19617 (description
19618 "This package provides a fast, flexible, and comprehensive framework for
19619 quantitative text analysis in R. It provides functionality for corpus
19620 management, creating and manipulating tokens and ngrams, exploring keywords in
19621 context, forming and manipulating sparse matrices of documents by features and
19622 feature co-occurrences, analyzing keywords, computing feature similarities and
19623 distances, applying content dictionaries, applying supervised and unsupervised
19624 machine learning, visually representing text and text analyses, and more.")
19625 (license license:gpl3)))
19626
19627 (define-public r-topicmodels
19628 (package
19629 (name "r-topicmodels")
19630 (version "0.2-9")
19631 (source
19632 (origin
19633 (method url-fetch)
19634 (uri (cran-uri "topicmodels" version))
19635 (sha256
19636 (base32
19637 "1757r5x8bsl4dk106xg6481mvdkdz9vwg87n7rpbvdkavsvhyxs0"))))
19638 (properties `((upstream-name . "topicmodels")))
19639 (build-system r-build-system)
19640 (native-inputs
19641 `(("gsl" ,gsl)))
19642 (propagated-inputs
19643 `(("r-modeltools" ,r-modeltools)
19644 ("r-slam" ,r-slam)
19645 ("r-tm" ,r-tm)))
19646 (home-page "https://cran.r-project.org/package=topicmodels")
19647 (synopsis "Topic models")
19648 (description
19649 "This package provides an interface to the C code for @dfn{Latent
19650 Dirichlet Allocation} (LDA) models and @dfn{Correlated Topics Models} (CTM) by
19651 David M. Blei and co-authors and the C++ code for fitting LDA models using
19652 Gibbs sampling by Xuan-Hieu Phan and co-authors.")
19653 (license license:gpl2)))
19654
19655 (define-public r-stm
19656 (package
19657 (name "r-stm")
19658 (version "1.3.5")
19659 (source
19660 (origin
19661 (method url-fetch)
19662 (uri (cran-uri "stm" version))
19663 (sha256
19664 (base32
19665 "1yyfxaxqc6yq0yq68zhdnhpwpvsyp71dlmivn7zxixfmp932s6cn"))))
19666 (properties `((upstream-name . "stm")))
19667 (build-system r-build-system)
19668 (propagated-inputs
19669 `(("r-data-table" ,r-data-table)
19670 ("r-glmnet" ,r-glmnet)
19671 ("r-lda" ,r-lda)
19672 ("r-matrix" ,r-matrix)
19673 ("r-matrixstats" ,r-matrixstats)
19674 ("r-quadprog" ,r-quadprog)
19675 ("r-quanteda" ,r-quanteda)
19676 ("r-rcpp" ,r-rcpp)
19677 ("r-rcpparmadillo" ,r-rcpparmadillo)
19678 ("r-slam" ,r-slam)
19679 ("r-stringr" ,r-stringr)))
19680 (home-page "http://www.structuraltopicmodel.com/")
19681 (synopsis "Estimation of the Structural Topic Model")
19682 (description
19683 "The @dfn{Structural Topic Model} (STM) allows researchers to estimate
19684 topic models with document-level covariates. The package also includes tools
19685 for model selection, visualization, and estimation of topic-covariate
19686 regressions.")
19687 (license license:expat)))
19688
19689 (define-public r-polycor
19690 (package
19691 (name "r-polycor")
19692 (version "0.7-10")
19693 (source
19694 (origin
19695 (method url-fetch)
19696 (uri (cran-uri "polycor" version))
19697 (sha256
19698 (base32
19699 "0wzwzklflbhi8sv9m7ijwr16v9zmkk0j0v4pbcpf32f8lbn3psna"))))
19700 (properties `((upstream-name . "polycor")))
19701 (build-system r-build-system)
19702 (propagated-inputs
19703 `(("r-matrix" ,r-matrix)
19704 ("r-mvtnorm" ,r-mvtnorm)))
19705 (home-page "https://r-forge.r-project.org/projects/polycor/")
19706 (synopsis "Polychoric and polyserial correlations")
19707 (description
19708 "This package provides tools to compute polychoric and polyserial
19709 correlations by quick \"two-step\" methods or ML, optionally with standard
19710 errors; tetrachoric and biserial correlations are special cases.")
19711 (license license:gpl2+)))
19712
19713 (define-public r-msm
19714 (package
19715 (name "r-msm")
19716 (version "1.6.8")
19717 (source
19718 (origin
19719 (method url-fetch)
19720 (uri (cran-uri "msm" version))
19721 (sha256
19722 (base32
19723 "1d32y8f0vb2dfv3999liigpns788j145nrvd1xpxb9i2lsg8mwgk"))))
19724 (properties `((upstream-name . "msm")))
19725 (build-system r-build-system)
19726 (propagated-inputs
19727 `(("r-expm" ,r-expm)
19728 ("r-mvtnorm" ,r-mvtnorm)
19729 ("r-survival" ,r-survival)))
19730 (home-page "https://github.com/chjackson/msm")
19731 (synopsis "Multi-state Markov and hidden Markov models in continuous time")
19732 (description
19733 "This package provides functions for fitting continuous-time Markov and
19734 hidden Markov multi-state models to longitudinal data. It was designed for
19735 processes observed at arbitrary times in continuous time (panel data) but some
19736 other observation schemes are supported. Both Markov transition rates and the
19737 hidden Markov output process can be modelled in terms of covariates, which may
19738 be constant or piecewise-constant in time.")
19739 (license license:gpl2+)))
19740
19741 (define-public r-ltm
19742 (package
19743 (name "r-ltm")
19744 (version "1.1-1")
19745 (source
19746 (origin
19747 (method url-fetch)
19748 (uri (cran-uri "ltm" version))
19749 (sha256
19750 (base32
19751 "1qrgzwx5l58qf5rfp1knxc84r0g943q5sdr3ky74zzwpnmrf2vf7"))))
19752 (properties `((upstream-name . "ltm")))
19753 (build-system r-build-system)
19754 (propagated-inputs
19755 `(("r-mass" ,r-mass)
19756 ("r-msm" ,r-msm)
19757 ("r-polycor" ,r-polycor)))
19758 (home-page "https://github.com/drizopoulos/ltm")
19759 (synopsis "Latent trait models under IRT")
19760 (description
19761 "This is a package supporting the analysis of multivariate dichotomous
19762 and polytomous data using latent trait models under the Item Response Theory
19763 approach. It includes the Rasch, the Two-Parameter Logistic, the Birnbaum's
19764 Three-Parameter, the Graded Response, and the Generalized Partial Credit
19765 Models.")
19766 (license license:gpl2+)))
19767
19768 (define-public r-mi
19769 (package
19770 (name "r-mi")
19771 (version "1.0")
19772 (source
19773 (origin
19774 (method url-fetch)
19775 (uri (cran-uri "mi" version))
19776 (sha256
19777 (base32
19778 "1h47k5mpbvhid83277dvvj2di493bgzz9iarpyv3r30y219l7x1l"))))
19779 (properties `((upstream-name . "mi")))
19780 (build-system r-build-system)
19781 (propagated-inputs
19782 `(("r-arm" ,r-arm)
19783 ("r-matrix" ,r-matrix)))
19784 (home-page "http://www.stat.columbia.edu/~gelman/")
19785 (synopsis "Missing data imputation and model checking")
19786 (description
19787 "This package provides functions for data manipulation, imputing missing
19788 values in an approximate Bayesian framework, diagnostics of the models used to
19789 generate the imputations, confidence-building mechanisms to validate some of
19790 the assumptions of the imputation algorithm, and functions to analyze multiply
19791 imputed data sets with the appropriate degree of sampling uncertainty.")
19792 (license license:gpl2+)))
19793
19794 (define-public r-matrixcalc
19795 (package
19796 (name "r-matrixcalc")
19797 (version "1.0-3")
19798 (source
19799 (origin
19800 (method url-fetch)
19801 (uri (cran-uri "matrixcalc" version))
19802 (sha256
19803 (base32
19804 "1c4w9dhi5w98qj1wwh9bbpnfk39rhiwjbanalr8bi5nmxkpcmrhp"))))
19805 (properties `((upstream-name . "matrixcalc")))
19806 (build-system r-build-system)
19807 (home-page "https://cran.r-project.org/web/packages/matrixcalc/")
19808 (synopsis "Collection of functions for matrix calculations")
19809 (description
19810 "This package provides a collection of functions to support matrix
19811 calculations for probability, econometric and numerical analysis. There are
19812 additional functions that are comparable to APL functions which are useful for
19813 actuarial models such as pension mathematics.")
19814 (license license:gpl2+)))
19815
19816 (define-public r-sem
19817 (package
19818 (name "r-sem")
19819 (version "3.1-9")
19820 (source
19821 (origin
19822 (method url-fetch)
19823 (uri (cran-uri "sem" version))
19824 (sha256
19825 (base32
19826 "1f9c6g6pfx66gd2pappcsqh484ah6a0x4z47hpd46rah0817hcsa"))))
19827 (properties `((upstream-name . "sem")))
19828 (build-system r-build-system)
19829 (propagated-inputs
19830 `(("r-boot" ,r-boot)
19831 ("r-mass" ,r-mass)
19832 ("r-matrixcalc" ,r-matrixcalc)
19833 ("r-mi" ,r-mi)))
19834 (home-page "https://cran.r-project.org/package=sem")
19835 (synopsis "Structural equation models")
19836 (description
19837 "This package provides functions for fitting general linear structural
19838 equation models (with observed and latent variables) using the RAM approach,
19839 and for fitting structural equations in observed-variable models by two-stage
19840 least squares.")
19841 (license license:gpl2+)))
19842
19843 (define-public r-semtools
19844 (package
19845 (name "r-semtools")
19846 (version "0.5-2")
19847 (source
19848 (origin
19849 (method url-fetch)
19850 (uri (cran-uri "semTools" version))
19851 (sha256
19852 (base32
19853 "1zj841pszfsikzp82cmh463qyc4xhdrqjqcnhc2r8mcflv12irv6"))))
19854 (properties `((upstream-name . "semTools")))
19855 (build-system r-build-system)
19856 (propagated-inputs
19857 `(("r-lavaan" ,r-lavaan)))
19858 (home-page "https://github.com/simsem/semTools/wiki")
19859 (synopsis "Useful tools for structural equation modeling")
19860 (description
19861 "This package provides useful tools for structural equation modeling.")
19862 (license license:gpl2+)))
19863
19864 (define-public r-regsem
19865 (package
19866 (name "r-regsem")
19867 (version "1.5.2")
19868 (source
19869 (origin
19870 (method url-fetch)
19871 (uri (cran-uri "regsem" version))
19872 (sha256
19873 (base32
19874 "0ch057010xfsw0nqcsarzakdbiplvxaldyqlbbacspqs65ax1yk7"))))
19875 (properties `((upstream-name . "regsem")))
19876 (build-system r-build-system)
19877 (propagated-inputs
19878 `(("r-lavaan" ,r-lavaan)
19879 ("r-rcpp" ,r-rcpp)
19880 ("r-rcpparmadillo" ,r-rcpparmadillo)
19881 ("r-rsolnp" ,r-rsolnp)))
19882 (home-page "https://cran.r-project.org/package=regsem")
19883 (synopsis "Regularized structural equation modeling")
19884 (description
19885 "This package uses both ridge and lasso penalties (and extensions) to
19886 penalize specific parameters in structural equation models. The package
19887 offers additional cost functions, cross validation, and other extensions
19888 beyond traditional structural equation models. It also contains a function to
19889 perform @dfn{exploratory mediation} (XMed).")
19890 (license license:gpl2+)))
19891
19892 (define-public r-stanheaders
19893 (package
19894 (name "r-stanheaders")
19895 (version "2.19.2")
19896 (source
19897 (origin
19898 (method url-fetch)
19899 (uri (cran-uri "StanHeaders" version))
19900 (sha256
19901 (base32
19902 "0cmk0fzczx7dcywcw1dhm6gfq84qlsx77qrsk4z3bf3dhr4bznam"))))
19903 (properties `((upstream-name . "StanHeaders")))
19904 (build-system r-build-system)
19905 (inputs `(("pandoc" ,ghc-pandoc)))
19906 (native-inputs
19907 `(("gfortran" ,gfortran)
19908 ("r-knitr" ,r-knitr))) ; for vignettes
19909 (home-page "https://mc-stan.org/")
19910 (synopsis "C++ header files for Stan")
19911 (description
19912 "The C++ header files of the Stan project are provided by this package.
19913 There is a shared object containing part of the @code{CVODES} library, but it
19914 is not accessible from R. @code{r-stanheaders} is only useful for developers
19915 who want to utilize the @code{LinkingTo} directive of their package's
19916 DESCRIPTION file to build on the Stan library without incurring unnecessary
19917 dependencies.
19918
19919 The Stan project develops a probabilistic programming language that implements
19920 full or approximate Bayesian statistical inference via Markov Chain Monte
19921 Carlo or variational methods and implements (optionally penalized) maximum
19922 likelihood estimation via optimization. The Stan library includes an advanced
19923 automatic differentiation scheme, templated statistical and linear algebra
19924 functions that can handle the automatically differentiable scalar types (and
19925 doubles, ints, etc.), and a parser for the Stan language. The @code{r-rstan}
19926 package provides user-facing R functions to parse, compile, test, estimate,
19927 and analyze Stan models.")
19928 (license license:bsd-3)))
19929
19930 (define-public r-rpf
19931 (package
19932 (name "r-rpf")
19933 (version "1.0.3")
19934 (source
19935 (origin
19936 (method url-fetch)
19937 (uri (cran-uri "rpf" version))
19938 (sha256
19939 (base32
19940 "1i2kqd7nx55nn35qnw89xmnqk23x9c8xhkh736c2xg7k2ai84ybl"))))
19941 (properties `((upstream-name . "rpf")))
19942 (build-system r-build-system)
19943 (propagated-inputs
19944 `(("r-lifecycle" ,r-lifecycle)
19945 ("r-mvtnorm" ,r-mvtnorm)
19946 ("r-rcpp" ,r-rcpp)
19947 ("r-rcppeigen" ,r-rcppeigen)))
19948 (home-page "https://github.com/jpritikin/rpf")
19949 (synopsis "Response probability functions")
19950 (description
19951 "The purpose of this package is to factor out logic and math common to
19952 Item Factor Analysis fitting, diagnostics, and analysis. It is envisioned as
19953 core support code suitable for more specialized IRT packages to build upon.
19954 Complete access to optimized C functions is made available with
19955 @code{R_RegisterCCallable()}.")
19956 (license license:gpl3+)))
19957
19958 (define-public r-openmx
19959 (package
19960 (name "r-openmx")
19961 (version "2.17.3")
19962 (source
19963 (origin
19964 (method url-fetch)
19965 (uri (cran-uri "OpenMx" version))
19966 (sha256
19967 (base32
19968 "1s2pcg281ag3qz2wz8yi826f2d3kj3qg916js7zz0nsrljcyv5bc"))))
19969 (properties `((upstream-name . "OpenMx")))
19970 (build-system r-build-system)
19971 (propagated-inputs
19972 `(("r-bh" ,r-bh)
19973 ("r-digest" ,r-digest)
19974 ("r-mass" ,r-mass)
19975 ("r-matrix" ,r-matrix)
19976 ("r-rcpp" ,r-rcpp)
19977 ("r-rcppeigen" ,r-rcppeigen)
19978 ("r-rpf" ,r-rpf)
19979 ("r-stanheaders" ,r-stanheaders)))
19980 (native-inputs `(("gfortran" ,gfortran)))
19981 (home-page "http://openmx.ssri.psu.edu")
19982 (synopsis "Extended structural equation modelling")
19983 (description
19984 "This package allows for the estimation of a wide variety of advanced
19985 multivariate statistical models. It consists of a library of functions and
19986 optimizers that allow you to quickly and flexibly define an SEM model and
19987 estimate parameters given observed data.")
19988 (license license:asl2.0)))
19989
19990 (define-public r-kutils
19991 (package
19992 (name "r-kutils")
19993 (version "1.69")
19994 (source
19995 (origin
19996 (method url-fetch)
19997 (uri (cran-uri "kutils" version))
19998 (sha256
19999 (base32
20000 "12pg26a85h0jxlfcyai68dbh4bq1gnq8v1ngi8k9qvafbrpc6gx8"))))
20001 (properties `((upstream-name . "kutils")))
20002 (build-system r-build-system)
20003 (propagated-inputs
20004 `(("r-foreign" ,r-foreign)
20005 ("r-lavaan" ,r-lavaan)
20006 ("r-openxlsx" ,r-openxlsx)
20007 ("r-plyr" ,r-plyr)
20008 ("r-runit" ,r-runit)
20009 ("r-xtable" ,r-xtable)))
20010 (home-page "https://cran.r-project.org/package=kutils")
20011 (synopsis "Project management tools")
20012 (description
20013 "This package provides tools for data importation, recoding, and
20014 inspection. There are functions to create new project folders, R code
20015 templates, create uniquely named output directories, and to quickly obtain a
20016 visual summary for each variable in a data frame. The main feature here is
20017 the systematic implementation of the \"variable key\" framework for data
20018 importation and recoding.")
20019 (license license:gpl2)))
20020
20021 (define-public r-rockchalk
20022 (package
20023 (name "r-rockchalk")
20024 (version "1.8.144")
20025 (source
20026 (origin
20027 (method url-fetch)
20028 (uri (cran-uri "rockchalk" version))
20029 (sha256
20030 (base32
20031 "07dp1n155b9gfvk8l30h6bhjbhbylsjxfzns08mryn4mxj3nqpnb"))))
20032 (properties `((upstream-name . "rockchalk")))
20033 (build-system r-build-system)
20034 (propagated-inputs
20035 `(("r-cardata" ,r-cardata)
20036 ("r-kutils" ,r-kutils)
20037 ("r-lme4" ,r-lme4)
20038 ("r-mass" ,r-mass)))
20039 (home-page "https://cran.r-project.org/package=rockchalk")
20040 (synopsis "Regression estimation and presentation")
20041 (description
20042 "This package provides a collection of functions for interpretation and
20043 presentation of regression analysis. These functions are used to produce the
20044 statistics lectures in @url{http://pj.freefaculty.org/guides}. The package
20045 includes regression diagnostics, regression tables, and plots of interactions
20046 and \"moderator\" variables. The emphasis is on \"mean-centered\" and
20047 \"residual-centered\" predictors. The vignette @code{rockchalk} offers a
20048 fairly comprehensive overview.")
20049 (license license:gpl3+)))
20050
20051 (define-public r-lisreltor
20052 (package
20053 (name "r-lisreltor")
20054 (version "0.1.4")
20055 (source
20056 (origin
20057 (method url-fetch)
20058 (uri (cran-uri "lisrelToR" version))
20059 (sha256
20060 (base32
20061 "0zicq0z3hhixan1p1apybnf3v5s6v6ysll4pcz8ivygwr2swv3p5"))))
20062 (properties `((upstream-name . "lisrelToR")))
20063 (build-system r-build-system)
20064 (home-page "https://cran.r-project.org/package=lisrelToR")
20065 (synopsis "Import output from LISREL into R")
20066 (description
20067 "This is an unofficial package aimed at automating the import of LISREL
20068 output in R.")
20069 (license license:gpl2)))
20070
20071 (define-public r-bdgraph
20072 (package
20073 (name "r-bdgraph")
20074 (version "2.62")
20075 (source
20076 (origin
20077 (method url-fetch)
20078 (uri (cran-uri "BDgraph" version))
20079 (sha256
20080 (base32
20081 "1b1vfar940swvn3pcil848qsp8ji50fjjll8jjzp6y2adx0f8pby"))))
20082 (properties `((upstream-name . "BDgraph")))
20083 (build-system r-build-system)
20084 (propagated-inputs
20085 `(("r-igraph" ,r-igraph)))
20086 (home-page "https://www.uva.nl/profile/a.mohammadi")
20087 (synopsis "Bayesian structure learning in graphical models")
20088 (description
20089 "This package provides statistical tools for Bayesian structure learning
20090 in undirected graphical models for continuous, discrete, and mixed data. It
20091 uses a trans-dimensional @dfn{Markov Chain Monte Carlo} (MCMC) approach based
20092 on a continuous-time birth-death process.")
20093 (license license:gpl2+)))
20094
20095 (define-public r-d3network
20096 (package
20097 (name "r-d3network")
20098 (version "0.5.2.1")
20099 (source
20100 (origin
20101 (method url-fetch)
20102 (uri (cran-uri "d3Network" version))
20103 (sha256
20104 (base32
20105 "1gh979z9wksyxxxdzlfzibn0ysvf6h1ij7vwpd55fvbwr308syaw"))))
20106 (properties `((upstream-name . "d3Network")))
20107 (build-system r-build-system)
20108 (propagated-inputs
20109 `(("r-plyr" ,r-plyr)
20110 ("r-rjson" ,r-rjson)
20111 ("r-whisker" ,r-whisker)))
20112 (home-page "http://christophergandrud.github.io/d3Network/")
20113 (synopsis "Create D3 JavaScript network, tree, dendrogram, and Sankey graphs")
20114 (description
20115 "This package is intended to make it easy to create D3 JavaScript
20116 network, tree, dendrogram, and Sankey graphs from R using data frames.")
20117 (license license:gpl3+)))
20118
20119 (define-public r-qgraph
20120 (package
20121 (name "r-qgraph")
20122 (version "1.6.5")
20123 (source
20124 (origin
20125 (method url-fetch)
20126 (uri (cran-uri "qgraph" version))
20127 (sha256
20128 (base32
20129 "0pwys9irxvp0ap158drplyypkplbmwqinv0fmlsblk7q875cr592"))))
20130 (properties `((upstream-name . "qgraph")))
20131 (build-system r-build-system)
20132 (propagated-inputs
20133 `(("r-abind" ,r-abind)
20134 ("r-bdgraph" ,r-bdgraph)
20135 ("r-colorspace" ,r-colorspace)
20136 ("r-corpcor" ,r-corpcor)
20137 ("r-d3network" ,r-d3network)
20138 ("r-dplyr" ,r-dplyr)
20139 ("r-fdrtool" ,r-fdrtool)
20140 ("r-ggplot2" ,r-ggplot2)
20141 ("r-ggraph" ,r-ggraph)
20142 ("r-glasso" ,r-glasso)
20143 ("r-gtools" ,r-gtools)
20144 ("r-hmisc" ,r-hmisc)
20145 ("r-huge" ,r-huge)
20146 ("r-igraph" ,r-igraph)
20147 ("r-jpeg" ,r-jpeg)
20148 ("r-lavaan" ,r-lavaan)
20149 ("r-matrix" ,r-matrix)
20150 ("r-pbapply" ,r-pbapply)
20151 ("r-plyr" ,r-plyr)
20152 ("r-png" ,r-png)
20153 ("r-psych" ,r-psych)
20154 ("r-rcpp" ,r-rcpp)
20155 ("r-reshape2" ,r-reshape2)
20156 ("r-tidygraph" ,r-tidygraph)))
20157 (home-page "http://sachaepskamp.com/qgraph/")
20158 (synopsis "Weighted network visualization and analysis")
20159 (description
20160 "This package implements tools for weighted network visualization and
20161 analysis, as well as Gaussian graphical model computation. It contains graph
20162 plotting methods, and tools for psychometric data visualization and graphical
20163 model estimation. See Epskamp et al. (2012)
20164 @url{doi:10.18637/jss.v048.i04}.")
20165 (license license:gpl2)))
20166
20167 (define-public r-semplot
20168 (package
20169 (name "r-semplot")
20170 (version "1.1.2")
20171 (source
20172 (origin
20173 (method url-fetch)
20174 (uri (cran-uri "semPlot" version))
20175 (sha256
20176 (base32
20177 "0l1v9yi1pv59iwfknw4dh9qskk5y8r347jq1vq13gnfd3bmd71xr"))))
20178 (properties `((upstream-name . "semPlot")))
20179 (build-system r-build-system)
20180 (propagated-inputs
20181 `(("r-colorspace" ,r-colorspace)
20182 ("r-corpcor" ,r-corpcor)
20183 ("r-igraph" ,r-igraph)
20184 ("r-lavaan" ,r-lavaan)
20185 ("r-lisreltor" ,r-lisreltor)
20186 ("r-openmx" ,r-openmx)
20187 ("r-plyr" ,r-plyr)
20188 ("r-qgraph" ,r-qgraph)
20189 ("r-regsem" ,r-regsem)
20190 ("r-rockchalk" ,r-rockchalk)
20191 ("r-sem" ,r-sem)
20192 ("r-xml" ,r-xml)))
20193 (home-page "https://github.com/SachaEpskamp/semPlot")
20194 (synopsis "Unified visualizations of structural equation models")
20195 (description
20196 "Structural equation modeling (SEM) has a long history of representing
20197 models graphically as path diagrams. The semPlot package for R fills the gap
20198 between advanced, but time-consuming, graphical software and the limited
20199 graphics produced automatically by SEM software. In addition, semPlot offers
20200 more functionality than drawing path diagrams: it can act as a common ground
20201 for importing SEM results into R. Any result usable as input to semPlot can
20202 also be represented in any of the three popular SEM frame-works, as well as
20203 translated to input syntax for the R packages @code{sem} and @code{lavaan}.")
20204 (license license:gpl2)))
20205
20206 (define-public r-cdm
20207 (package
20208 (name "r-cdm")
20209 (version "7.5-15")
20210 (source
20211 (origin
20212 (method url-fetch)
20213 (uri (cran-uri "CDM" version))
20214 (sha256
20215 (base32
20216 "159ny2dz0rf1r3k1mqlfwambffc8rx425sggf5bn51nybpzanq3l"))))
20217 (properties `((upstream-name . "CDM")))
20218 (build-system r-build-system)
20219 (propagated-inputs
20220 `(("r-mvtnorm" ,r-mvtnorm)
20221 ("r-polycor" ,r-polycor)
20222 ("r-rcpp" ,r-rcpp)
20223 ("r-rcpparmadillo" ,r-rcpparmadillo)))
20224 (home-page
20225 "https://github.com/alexanderrobitzsch/CDM")
20226 (synopsis "Cognitive diagnosis modeling")
20227 (description
20228 "This package provides functions for cognitive diagnosis modeling and
20229 multidimensional item response modeling for dichotomous and polytomous item
20230 responses. It enables the estimation of the DINA and DINO model, the multiple
20231 group (polytomous) GDINA model, the multiple choice DINA model, the general
20232 diagnostic model (GDM), the structured latent class model (SLCA), and
20233 regularized latent class analysis. See George, Robitzsch, Kiefer, Gross, and
20234 Uenlue (2017) @url{doi:10.18637/jss.v074.i02} for further details on
20235 estimation and the package structure. For tutorials on how to use the CDM
20236 package see George and Robitzsch (2015, @url{doi:10.20982/tqmp.11.3.p189}) as
20237 well as Ravand and Robitzsch (2015).")
20238 (license license:gpl2+)))
20239
20240 (define-public r-tam
20241 (package
20242 (name "r-tam")
20243 (version "3.4-26")
20244 (source
20245 (origin
20246 (method url-fetch)
20247 (uri (cran-uri "TAM" version))
20248 (sha256
20249 (base32
20250 "111d7qkxhwh1lfvldyh9d61pdb5vb6x8lr8n9h95ssvw07vjqvk9"))))
20251 (properties `((upstream-name . "TAM")))
20252 (build-system r-build-system)
20253 (propagated-inputs
20254 `(("r-cdm" ,r-cdm)
20255 ("r-rcpp" ,r-rcpp)
20256 ("r-rcpparmadillo" ,r-rcpparmadillo)))
20257 (home-page "http://www.edmeasurementsurveys.com/TAM/Tutorials/")
20258 (synopsis "Test analysis modules")
20259 (description
20260 "This package includes tools for marginal maximum likelihood estimation
20261 and joint maximum likelihood estimation for unidimensional and
20262 multidimensional item response models. The package functionality covers the
20263 Rasch model, 2PL model, 3PL model, generalized partial credit model,
20264 multi-faceted Rasch model, nominal item response model, structured latent
20265 class model, mixture distribution IRT models, and located latent class models.
20266 Latent regression models and plausible value imputation are also supported.")
20267 (license license:gpl2+)))
20268
20269 (define-public r-erm
20270 (package
20271 (name "r-erm")
20272 (version "1.0-1")
20273 (source
20274 (origin
20275 (method url-fetch)
20276 (uri (cran-uri "eRm" version))
20277 (sha256
20278 (base32
20279 "0njqzznnhnkvalmhiq5yq1w7gwp2myki5cv61w42ydvd27hdyyg9"))))
20280 (properties `((upstream-name . "eRm")))
20281 (build-system r-build-system)
20282 (propagated-inputs
20283 `(("r-colorspace" ,r-colorspace)
20284 ("r-lattice" ,r-lattice)
20285 ("r-mass" ,r-mass)
20286 ("r-matrix" ,r-matrix)
20287 ("r-psych" ,r-psych)))
20288 (native-inputs `(("gfortran" ,gfortran)))
20289 (home-page "https://cran.r-project.org/package=eRm")
20290 (synopsis "Extended Rasch modeling")
20291 (description
20292 "This package provides tools to fit @dfn{Rasch models} (RM), @dfn{linear
20293 logistic test models} (LLTM), @dfn{rating scale model} (RSM), @dfn{linear
20294 rating scale models} (LRSM), @dfn{partial credit models} (PCM), and
20295 @dfn{linear partial credit models} (LPCM). Missing values are allowed in the
20296 data matrix. Additional features are the ML estimation of the person
20297 parameters, Andersen's LR-test, item-specific Wald test, Martin-Loef-Test,
20298 nonparametric Monte-Carlo Tests, itemfit and personfit statistics including
20299 infit and outfit measures, ICC and other plots, automated stepwise item
20300 elimination, and a simulation module for various binary data matrices.")
20301 (license license:gpl3)))
20302
20303 (define-public r-irtoys
20304 (package
20305 (name "r-irtoys")
20306 (version "0.2.1")
20307 (source
20308 (origin
20309 (method url-fetch)
20310 (uri (cran-uri "irtoys" version))
20311 (sha256
20312 (base32
20313 "0h6iiaxikhbxhbyksbjnb09qdxinlkwr2v9yzs5wslbni14paq5q"))))
20314 (properties `((upstream-name . "irtoys")))
20315 (build-system r-build-system)
20316 (propagated-inputs
20317 `(("r-ltm" ,r-ltm)
20318 ("r-sm" ,r-sm)))
20319 (home-page "https://cran.r-project.org/package=irtoys")
20320 (synopsis "Collection of functions related to Item Response Theory (IRT)")
20321 (description
20322 "This package provides a collection of functions useful in learning and
20323 practicing @dfn{Item Response Theory} (IRT), which can be combined into larger
20324 programs. It provides basic CTT analysis, a simple common interface to the
20325 estimation of item parameters in IRT models for binary responses with three
20326 different programs (ICL, BILOG-MG, and ltm), ability estimation (MLE, BME,
20327 EAP, WLE, plausible values), item and person fit statistics, scaling
20328 methods (MM, MS, Stocking-Lord, and the complete Hebaera method), and a rich
20329 array of parametric and non-parametric (kernel) plots. It estimates and plots
20330 Haberman's interaction model when all items are dichotomously scored.")
20331 (license license:gpl2+)))
20332
20333 (define-public r-iheatmapr
20334 (package
20335 (name "r-iheatmapr")
20336 (version "0.4.12")
20337 (source
20338 (origin
20339 (method url-fetch)
20340 (uri (cran-uri "iheatmapr" version))
20341 (sha256
20342 (base32
20343 "0s479j9l35xiss599vablxgvg6i2j9zq9sxphsq4vdk3bafg84bw"))))
20344 (properties `((upstream-name . "iheatmapr")))
20345 (build-system r-build-system)
20346 (propagated-inputs
20347 `(("r-fastcluster" ,r-fastcluster)
20348 ("r-ggdendro" ,r-ggdendro)
20349 ("r-htmlwidgets" ,r-htmlwidgets)
20350 ("r-jsonlite" ,r-jsonlite)
20351 ("r-knitr" ,r-knitr)
20352 ("r-magrittr" ,r-magrittr)
20353 ("r-plyr" ,r-plyr)
20354 ("r-rcolorbrewer" ,r-rcolorbrewer)
20355 ("r-s4vectors" ,r-s4vectors)
20356 ("r-scales" ,r-scales)))
20357 (home-page "https://docs.ropensci.org/iheatmapr")
20358 (synopsis "Interactive, Complex Heatmaps")
20359 (description
20360 "iheatmapr is an R package for building complex, interactive heatmaps
20361 using modular building blocks. \"Complex\" heatmaps are heatmaps in which
20362 subplots along the rows or columns of the main heatmap add more information
20363 about each row or column. For example, a one column additional heatmap may
20364 indicate what group a particular row or column belongs to. Complex heatmaps
20365 may also include multiple side by side heatmaps which show different types of
20366 data for the same conditions. Interactivity can improve complex heatmaps by
20367 providing tooltips with information about each cell and enabling zooming into
20368 interesting features. iheatmapr uses the plotly library for interactivity.")
20369 (license license:expat)))
20370
20371 (define-public r-packrat
20372 (package
20373 (name "r-packrat")
20374 (version "0.5.0")
20375 (source
20376 (origin
20377 (method url-fetch)
20378 (uri (cran-uri "packrat" version))
20379 (sha256
20380 (base32
20381 "1xy5dd2hrpqa07jfl4s7dsrya05mf36ms74j833scdz0zf89586n"))))
20382 (properties `((upstream-name . "packrat")))
20383 (build-system r-build-system)
20384 (home-page "https://github.com/rstudio/packrat/")
20385 (synopsis "Dependency management R projects")
20386 (description
20387 "This package provides a dependency manager for R projects that allows
20388 you to manage the R packages your project depends on in an isolated, portable,
20389 and reproducible way.")
20390 (license license:gpl2)))
20391
20392 (define-public r-rsconnect
20393 (package
20394 (name "r-rsconnect")
20395 (version "0.8.16")
20396 (source
20397 (origin
20398 (method url-fetch)
20399 (uri (cran-uri "rsconnect" version))
20400 (sha256
20401 (base32
20402 "05ii0p0p7xpf8z0c1594s5q7wpwcs7lmlddrd67s5p2ka5m8qwiz"))))
20403 (properties `((upstream-name . "rsconnect")))
20404 (build-system r-build-system)
20405 (propagated-inputs
20406 `(("r-curl" ,r-curl)
20407 ("r-digest" ,r-digest)
20408 ("r-jsonlite" ,r-jsonlite)
20409 ("r-openssl" ,r-openssl)
20410 ("r-packrat" ,r-packrat)
20411 ("r-rstudioapi" ,r-rstudioapi)
20412 ("r-yaml" ,r-yaml)))
20413 (home-page "https://github.com/rstudio/rsconnect")
20414 (synopsis "Deployment interface for R Markdown documents and Shiny applications")
20415 (description
20416 "This package provides a programmatic deployment interface for RPubs,
20417 shinyapps.io, and RStudio Connect. Supported content types include R Markdown
20418 documents, Shiny applications, Plumber APIs, plots, and static web content.")
20419 (license license:gpl2)))
20420
20421 ;; This package includes minified JavaScript files. When upgrading please
20422 ;; check that there are no new minified JavaScript files.
20423 (define-public r-dygraphs
20424 (package
20425 (name "r-dygraphs")
20426 (version "1.1.1.6")
20427 (source
20428 (origin
20429 (method url-fetch)
20430 (uri (cran-uri "dygraphs" version))
20431 (sha256
20432 (base32
20433 "022j007mzfa9k2n31yg4aizcsf571vv3jip092h23rqj03rk3ly3"))))
20434 (properties `((upstream-name . "dygraphs")))
20435 (build-system r-build-system)
20436 (arguments
20437 `(#:modules ((guix build utils)
20438 (guix build r-build-system)
20439 (srfi srfi-1)
20440 (ice-9 popen))
20441 #:phases
20442 (modify-phases %standard-phases
20443 (add-after 'unpack 'process-javascript
20444 (lambda* (#:key inputs #:allow-other-keys)
20445 (with-directory-excursion "inst/htmlwidgets/lib/"
20446 (call-with-values
20447 (lambda ()
20448 (unzip2
20449 `(("dygraphs/dygraph-combined-dev.js"
20450 "dygraph-combined.js")
20451 (,(assoc-ref inputs "js-jquery")
20452 "jquery/jquery.min.js")
20453 (,(assoc-ref inputs "js-fquarter")
20454 "fquarter/moment-fquarter.min.js"))))
20455 (lambda (sources targets)
20456 (for-each (lambda (source target)
20457 (format #t "Processing ~a --> ~a~%"
20458 source target)
20459 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
20460 (call-with-output-file target
20461 (lambda (port)
20462 (dump-port minified port)))))
20463 sources targets))))
20464 #t)))))
20465 (native-inputs
20466 `(("uglify-js" ,uglify-js)
20467 ;; They actually use version 1.11.1, but this more recent version
20468 ;; should be just fine.
20469 ("js-jquery"
20470 ,(origin
20471 (method url-fetch)
20472 (uri "https://code.jquery.com/jquery-1.12.4.js")
20473 (sha256
20474 (base32
20475 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
20476 ("js-fquarter"
20477 ,(origin
20478 (method url-fetch)
20479 (uri (string-append "https://raw.githubusercontent.com/robgallen/"
20480 "moment-fquarter/1.0.1/moment-fquarter.js"))
20481 (sha256
20482 (base32
20483 "01mdnsaibm9jy2f1qpbn692hpv309lhj5si9nagib4dawmrkffij"))))))
20484 (propagated-inputs
20485 `(("r-htmltools" ,r-htmltools)
20486 ("r-htmlwidgets" ,r-htmlwidgets)
20487 ("r-magrittr" ,r-magrittr)
20488 ("r-xts" ,r-xts)
20489 ("r-zoo" ,r-zoo)))
20490 (home-page "https://github.com/rstudio/dygraphs")
20491 (synopsis "Interface to Dygraphs interactive time series charting library")
20492 (description
20493 "This package provides an R interface to the dygraphs JavaScript charting
20494 library (a copy of which is included in the package). It provides rich
20495 facilities for charting time-series data in R, including highly configurable
20496 series- and axis-display and interactive features like zoom/pan and
20497 series/point highlighting.")
20498 (license license:expat)))
20499
20500 (define-public r-shinystan
20501 (package
20502 (name "r-shinystan")
20503 (version "2.5.0")
20504 (source
20505 (origin
20506 (method url-fetch)
20507 (uri (cran-uri "shinystan" version))
20508 (sha256
20509 (base32
20510 "18alf5kiqw7y2l6m5nxxizwc2znsf9frxfsqhvgcad8hld9cbya5"))))
20511 (properties `((upstream-name . "shinystan")))
20512 (build-system r-build-system)
20513 (propagated-inputs
20514 `(("r-bayesplot" ,r-bayesplot)
20515 ("r-colourpicker" ,r-colourpicker)
20516 ("r-dt" ,r-dt)
20517 ("r-dygraphs" ,r-dygraphs)
20518 ("r-ggplot2" ,r-ggplot2)
20519 ("r-gridextra" ,r-gridextra)
20520 ("r-gtools" ,r-gtools)
20521 ("r-markdown" ,r-markdown)
20522 ("r-reshape2" ,r-reshape2)
20523 ("r-rsconnect" ,r-rsconnect)
20524 ("r-rstan" ,r-rstan)
20525 ("r-shiny" ,r-shiny)
20526 ("r-shinyjs" ,r-shinyjs)
20527 ("r-shinythemes" ,r-shinythemes)
20528 ("r-threejs" ,r-threejs)
20529 ("r-xtable" ,r-xtable)
20530 ("r-xts" ,r-xts)))
20531 (home-page "https://mc-stan.org/")
20532 (synopsis "Interactive visual and numerical analysis for Bayesian models")
20533 (description
20534 "This package provides a graphical user interface for interactive
20535 @dfn{Markov chain Monte Carlo} (MCMC) diagnostics and plots and tables helpful
20536 for analyzing a posterior sample. The interface is powered by the Shiny web
20537 application framework and works with the output of MCMC programs written in
20538 any programming language (and has extended functionality for Stan models fit
20539 using the @code{rstan} and @code{rstanarm} packages).")
20540 (license license:gpl3+)))
20541
20542 (define-public r-rstantools
20543 (package
20544 (name "r-rstantools")
20545 (version "2.0.0")
20546 (source
20547 (origin
20548 (method url-fetch)
20549 (uri (cran-uri "rstantools" version))
20550 (sha256
20551 (base32
20552 "1il0pn4ksbdkska5fmhvgaicvwnnc6cs08g6ags9fj1xkjiqmrsa"))))
20553 (properties `((upstream-name . "rstantools")))
20554 (build-system r-build-system)
20555 (inputs `(("pandoc" ,ghc-pandoc)))
20556 (propagated-inputs
20557 `(("r-desc" ,r-desc)
20558 ("r-rcpp" ,r-rcpp)))
20559 (home-page "https://mc-stan.org/rstantools/")
20560 (synopsis "Tools for developing R packages interfacing with Stan")
20561 (description
20562 "This package provides various tools for developers of R packages
20563 interfacing with @url{https://mc-stan.org, Stan}, including functions to set
20564 up the required package structure, S3 generics and default methods to unify
20565 function naming across Stan-based R packages, and vignettes with
20566 recommendations for developers.")
20567 (license license:gpl3+)))
20568
20569 (define-public r-loo
20570 (package
20571 (name "r-loo")
20572 (version "2.2.0")
20573 (source
20574 (origin
20575 (method url-fetch)
20576 (uri (cran-uri "loo" version))
20577 (sha256
20578 (base32
20579 "1hq1zcj76x55z9kic6cwf7mfq9pzqfbr341jbc9wp7x8ac4zcva6"))))
20580 (properties `((upstream-name . "loo")))
20581 (build-system r-build-system)
20582 (inputs
20583 `(("pandoc" ,ghc-pandoc)
20584 ("pandoc-citeproc" ,ghc-pandoc-citeproc)))
20585 (propagated-inputs
20586 `(("r-checkmate" ,r-checkmate)
20587 ("r-matrixstats" ,r-matrixstats)))
20588 (home-page "https://mc-stan.org/loo/")
20589 (synopsis "Leave-One-Out cross-validation and WAIC for Bayesian models")
20590 (description
20591 "This package provides an implementation of efficient approximate
20592 @dfn{leave-one-out} (LOO) cross-validation for Bayesian models fit using
20593 Markov chain Monte Carlo, as described in @url{doi:10.1007/s11222-016-9696-4}.
20594 The approximation uses @dfn{Pareto smoothed importance sampling} (PSIS), a new
20595 procedure for regularizing importance weights. As a byproduct of the
20596 calculations, we also obtain approximate standard errors for estimated
20597 predictive errors and for the comparison of predictive errors between models.
20598 The package also provides methods for using stacking and other model weighting
20599 techniques to average Bayesian predictive distributions.")
20600 (license license:gpl3+)))
20601
20602 (define-public r-rstan
20603 (package
20604 (name "r-rstan")
20605 (version "2.19.3")
20606 (source
20607 (origin
20608 (method url-fetch)
20609 (uri (cran-uri "rstan" version))
20610 (sha256
20611 (base32
20612 "128ndwjrhf8b1qvvqz4bl13qlm8718z9qs5ryc6gsdr3vk65s0np"))))
20613 (properties `((upstream-name . "rstan")))
20614 (build-system r-build-system)
20615 (arguments
20616 `(#:phases
20617 (modify-phases %standard-phases
20618 (add-before 'install 'set-timezone
20619 ;; This package is picky about timezones.
20620 (lambda* (#:key inputs #:allow-other-keys)
20621 (setenv "TZ" "UTC+1")
20622 (setenv "TZDIR"
20623 (string-append (assoc-ref inputs "tzdata")
20624 "/share/zoneinfo"))
20625 #t)))))
20626 (native-inputs
20627 `(("tzdata" ,tzdata-for-tests)
20628 ("pandoc" ,ghc-pandoc)))
20629 (propagated-inputs
20630 `(("r-bh" ,r-bh)
20631 ("r-ggplot2" ,r-ggplot2)
20632 ("r-gridextra" ,r-gridextra)
20633 ("r-inline" ,r-inline)
20634 ("r-loo" ,r-loo)
20635 ("r-pkgbuild" ,r-pkgbuild)
20636 ("r-rcpp" ,r-rcpp)
20637 ("r-rcppeigen" ,r-rcppeigen)
20638 ("r-stanheaders" ,r-stanheaders)))
20639 (home-page "https://discourse.mc-stan.org/")
20640 (synopsis "R interface to Stan")
20641 (description
20642 "User-facing R functions are provided to parse, compile, test, estimate,
20643 and analyze Stan models by accessing the header-only Stan library provided by
20644 the StanHeaders package. The Stan project develops a probabilistic
20645 programming language that implements full Bayesian statistical inference via
20646 Markov Chain Monte Carlo, rough Bayesian inference via 'variational'
20647 approximation, and (optionally penalized) maximum likelihood estimation via
20648 optimization. In all three cases, automatic differentiation is used to
20649 quickly and accurately evaluate gradients without burdening the user with the
20650 need to derive the partial derivatives.")
20651 (license license:gpl3+)))
20652
20653 (define-public r-rstanarm
20654 (package
20655 (name "r-rstanarm")
20656 (version "2.19.3")
20657 (source
20658 (origin
20659 (method url-fetch)
20660 (uri (cran-uri "rstanarm" version))
20661 (sha256
20662 (base32
20663 "0gxjq8bdlvdd8kn3dhp12xlymdab036r7n12lzmd3xlkl4cnxq3s"))))
20664 (properties `((upstream-name . "rstanarm")))
20665 (build-system r-build-system)
20666 (inputs
20667 `(("pandoc" ,ghc-pandoc)
20668 ("pandoc-citeproc" ,ghc-pandoc-citeproc)))
20669 (propagated-inputs
20670 `(("r-bayesplot" ,r-bayesplot)
20671 ("r-bh" ,r-bh)
20672 ("r-ggplot2" ,r-ggplot2)
20673 ("r-lme4" ,r-lme4)
20674 ("r-loo" ,r-loo)
20675 ("r-matrix" ,r-matrix)
20676 ("r-nlme" ,r-nlme)
20677 ("r-rcpp" ,r-rcpp)
20678 ("r-rcppeigen" ,r-rcppeigen)
20679 ("r-rcppparallel" ,r-rcppparallel)
20680 ("r-rstan" ,r-rstan)
20681 ("r-rstantools" ,r-rstantools)
20682 ("r-shinystan" ,r-shinystan)
20683 ("r-stanheaders" ,r-stanheaders)
20684 ("r-survival" ,r-survival)))
20685 (home-page "https://mc-stan.org/rstanarm/")
20686 (synopsis "Bayesian applied regression modeling via Stan")
20687 (description
20688 "This package estimates previously compiled regression models using the
20689 @code{rstan} package, which provides the R interface to the Stan C++ library
20690 for Bayesian estimation. Users specify models via the customary R syntax with
20691 a formula and @code{data.frame} plus some additional arguments for priors.")
20692 (license license:gpl3+)))
20693
20694 (define-public r-kendall
20695 (package
20696 (name "r-kendall")
20697 (version "2.2")
20698 (source
20699 (origin
20700 (method url-fetch)
20701 (uri (cran-uri "Kendall" version))
20702 (sha256
20703 (base32
20704 "0z2yr3x2nvdm81w2imb61hxwcbmg14kfb2bxgh3wmkmv3wfjwkwn"))))
20705 (properties `((upstream-name . "Kendall")))
20706 (build-system r-build-system)
20707 (propagated-inputs
20708 `(("r-boot" ,r-boot)))
20709 (native-inputs
20710 `(("gfortran" ,gfortran)))
20711 (home-page "https://cran.r-project.org/web/packages/Kendall/")
20712 (synopsis "Kendall rank correlation and Mann-Kendall trend test")
20713 (description
20714 "This package computes the Kendall rank correlation and Mann-Kendall
20715 trend test.")
20716 (license license:gpl2+)))
20717
20718 (define-public r-zyp
20719 (package
20720 (name "r-zyp")
20721 (version "0.10-1.1")
20722 (source
20723 (origin
20724 (method url-fetch)
20725 (uri (cran-uri "zyp" version))
20726 (sha256
20727 (base32
20728 "03cxpkfbhrx1fy8l0dl9a13ghz93cqq6877wa8rig09ksdiivaw9"))))
20729 (properties `((upstream-name . "zyp")))
20730 (build-system r-build-system)
20731 (propagated-inputs
20732 `(("r-kendall" ,r-kendall)))
20733 (home-page "https://cran.r-project.org/web/packages/zyp/")
20734 (synopsis "Zhang + Yue-Pilon Trends Package")
20735 (description
20736 "This package contains an efficient implementation of Sen's slope
20737 method (Sen, 1968) plus implementation of Xuebin Zhang's (Zhang, 1999) and
20738 Yue-Pilon's (Yue, 2002) pre-whitening approaches to determining trends in
20739 climate data.")
20740 (license license:lgpl2.1)))
20741
20742 (define-public r-zvcv
20743 (package
20744 (name "r-zvcv")
20745 (version "1.0.0")
20746 (source
20747 (origin
20748 (method url-fetch)
20749 (uri (cran-uri "ZVCV" version))
20750 (sha256
20751 (base32
20752 "1npw836q2skx54843lgxvb0rfwafckjc8k8dljykm60ad3z7zak8"))))
20753 (properties `((upstream-name . "ZVCV")))
20754 (build-system r-build-system)
20755 (propagated-inputs
20756 `(("r-abind" ,r-abind)
20757 ("r-glmnet" ,r-glmnet)
20758 ("r-mvtnorm" ,r-mvtnorm)
20759 ("r-partitions" ,r-partitions)
20760 ("r-rcpp" ,r-rcpp)
20761 ("r-rcpparmadillo" ,r-rcpparmadillo)))
20762 (home-page "https://cran.r-project.org/web/packages/ZVCV/")
20763 (synopsis "Zero-Variance Control Variates")
20764 (description
20765 "@dfn{Zero-variance control variates} (ZV-CV) is a post-processing method
20766 to reduce the variance of Monte Carlo estimators of expectations using the
20767 derivatives of the log target. Once the derivatives are available, the only
20768 additional computational effort is in solving a linear regression problem.
20769 This method has been extended to higher dimensions using regularisation. This
20770 package can be used to easily perform ZV-CV or regularised ZV-CV when a set of
20771 samples, derivatives and function evaluations are available. Additional
20772 functions for applying ZV-CV to two estimators for the normalising constant of
20773 the posterior distribution in Bayesian statistics are also supplied.")
20774 (license license:gpl2+)))
20775
20776 (define-public r-ztype
20777 (package
20778 (name "r-ztype")
20779 (version "0.1.0")
20780 (source
20781 (origin
20782 (method url-fetch)
20783 (uri (cran-uri "ztype" version))
20784 (sha256
20785 (base32
20786 "0brbq2rgkl4mhjbb70kkfv47lzs66k9ppfs2klavcbripirxn5fx"))))
20787 (properties `((upstream-name . "ztype")))
20788 (build-system r-build-system)
20789 (propagated-inputs
20790 `(("r-assertthat" ,r-assertthat)
20791 ("r-dplyr" ,r-dplyr)
20792 ("r-ggplot2" ,r-ggplot2)
20793 ("r-lubridate" ,r-lubridate)
20794 ("r-magrittr" ,r-magrittr)
20795 ("r-rvest" ,r-rvest)
20796 ("r-stringr" ,r-stringr)))
20797 (home-page "https://cran.r-project.org/web/packages/ztype/")
20798 (synopsis "Run a Ztype game loaded with R functions")
20799 (description
20800 "How fast can you type R functions on your keyboard? Find out by running
20801 a @code{zty.pe} game: export R functions as instructions to type to destroy
20802 opponents' vessels.")
20803 (license license:gpl3)))
20804
20805 (define-public r-zseq
20806 (package
20807 (name "r-zseq")
20808 (version "0.2.0")
20809 (source
20810 (origin
20811 (method url-fetch)
20812 (uri (cran-uri "Zseq" version))
20813 (sha256
20814 (base32
20815 "06dndi2b1q79bmxax11bv0l5ifcz1mhpvbn90y6a6xymrgcq0ivi"))))
20816 (properties `((upstream-name . "Zseq")))
20817 (build-system r-build-system)
20818 (propagated-inputs
20819 `(("r-gmp" ,r-gmp)))
20820 (home-page "https://cran.r-project.org/web/packages/Zseq/")
20821 (synopsis "Integer sequence generator")
20822 (description
20823 "This package generates well-known integer sequences. The @code{gmp}
20824 package is adopted for computing with arbitrarily large numbers. Every
20825 function has a hyperlink to its corresponding item in the @dfn{On-Line
20826 Encyclopedia of Integer Sequences} (OEIS) in the function help page.")
20827 (license license:gpl3+)))
20828
20829 (define-public r-isoband
20830 (package
20831 (name "r-isoband")
20832 (version "0.2.1")
20833 (source
20834 (origin
20835 (method url-fetch)
20836 (uri (cran-uri "isoband" version))
20837 (sha256
20838 (base32
20839 "1ndlnv4g9pbd02y50sx4ffg2ccwqbi7fm2v1lh22wdd8pq33d20q"))))
20840 (properties `((upstream-name . "isoband")))
20841 (build-system r-build-system)
20842 (propagated-inputs
20843 `(("r-rcpp" ,r-rcpp)
20844 ("r-testthat" ,r-testthat)))
20845 (native-inputs
20846 `(("r-knitr" ,r-knitr)))
20847 (home-page "https://github.com/wilkelab/isoband")
20848 (synopsis "Generate isolines and isobands from regularly spaced elevation grids")
20849 (description
20850 "This package provides a fast C++ implementation to generate contour
20851 lines (isolines) and contour polygons (isobands) from regularly spaced grids
20852 containing elevation data.")
20853 (license license:expat)))
20854
20855 (define-public r-ppcor
20856 (package
20857 (name "r-ppcor")
20858 (version "1.1")
20859 (source
20860 (origin
20861 (method url-fetch)
20862 (uri (cran-uri "ppcor" version))
20863 (sha256
20864 (base32
20865 "1x9b2kb8s0bp92b17gby0jwzzr3i4cf3ap9c4nq7m8fav72g0y3a"))))
20866 (properties `((upstream-name . "ppcor")))
20867 (build-system r-build-system)
20868 (propagated-inputs
20869 `(("r-mass" ,r-mass)))
20870 (home-page "https://cran.r-project.org/web/packages/ppcor/")
20871 (synopsis "Partial and semi-partial correlation")
20872 (description
20873 "This package provides users not only with a function to readily
20874 calculate the higher-order partial and semi-partial correlations but also with
20875 statistics and p-values of the correlation coefficients.")
20876 (license license:gpl2)))
20877
20878 (define-public r-hrbrthemes
20879 (package
20880 (name "r-hrbrthemes")
20881 (version "0.8.0")
20882 (source
20883 (origin
20884 (method url-fetch)
20885 (uri (cran-uri "hrbrthemes" version))
20886 (sha256
20887 (base32 "057h60b5p53dcyjyfwlgjc1ry968s9s64dw78p443w8717zk7zpc"))))
20888 (properties `((upstream-name . "hrbrthemes")))
20889 (build-system r-build-system)
20890 (propagated-inputs
20891 `(("r-extrafont" ,r-extrafont)
20892 ("r-gdtools" ,r-gdtools)
20893 ("r-ggplot2" ,r-ggplot2)
20894 ("r-htmltools" ,r-htmltools)
20895 ("r-knitr" ,r-knitr)
20896 ("r-magrittr" ,r-magrittr)
20897 ("r-rmarkdown" ,r-rmarkdown)
20898 ("r-scales" ,r-scales)))
20899 (native-inputs
20900 `(("r-knitr" ,r-knitr)))
20901 (home-page "https://github.com/hrbrmstr/hrbrthemes/")
20902 (synopsis "Additional themes, theme components and utilities for @code{ggplot2}")
20903 (description
20904 "This package provides a compilation of extra @code{ggplot2} themes,
20905 scales and utilities, including a spell check function for plot label fields
20906 and an overall emphasis on typography.")
20907 (license license:expat)))
20908
20909 (define-public r-crochet
20910 (package
20911 (name "r-crochet")
20912 (version "2.2.0")
20913 (source
20914 (origin
20915 (method url-fetch)
20916 (uri (cran-uri "crochet" version))
20917 (sha256
20918 (base32
20919 "1cbv79nyycxk6f8ldcsnn2pvgxqlnrj0qs19nhafnq2clxy863k6"))))
20920 (build-system r-build-system)
20921 (home-page "https://github.com/agrueneberg/crochet")
20922 (synopsis "Implementation Helper for Matrix-Like Types")
20923 (description
20924 "Functions to help implement the extraction / subsetting / indexing
20925 function @code{[} and replacement function @code{[<-} of custom matrix-like
20926 types (based on S3, S4, etc.), modeled as closely to the base matrix class
20927 as possible (with tests to prove it).")
20928 (license license:expat)))
20929
20930 (define-public r-boa
20931 (package
20932 (name "r-boa")
20933 (version "1.1.8-2")
20934 (source
20935 (origin
20936 (method url-fetch)
20937 (uri (cran-uri "boa" version))
20938 (sha256
20939 (base32
20940 "04lhqk5qfvaz1jk90glr2yi5vq7cdy0w8m6g2lnzk359l9y41zhp"))))
20941 (properties `((upstream-name . "boa")))
20942 (build-system r-build-system)
20943 (home-page "http://www.jstatsoft.org/v21/i11")
20944 (synopsis "Library for @dfn{Bayesian Output Analysis Program} (BOA) for MCMC")
20945 (description
20946 "This package provides a menu-driven program and library of functions for
20947 carrying out convergence diagnostics and statistical and graphical analysis of
20948 @dfn{Markov chain Monte Carlo} (MCMC) sampling output.")
20949 (license license:gpl2+)))
20950
20951 (define-public r-httpcode
20952 (package
20953 (name "r-httpcode")
20954 (version "0.3.0")
20955 (source (origin
20956 (method url-fetch)
20957 (uri (cran-uri "httpcode" version))
20958 (sha256
20959 (base32
20960 "0xig0rvc81hg7mw0iq9s0an1nw24fg0kfs2p2n6dzhwl9w506fjr"))))
20961 (build-system r-build-system)
20962 (home-page "https://github.com/sckott/httpcode")
20963 (synopsis "HTTP status code helper")
20964 (description "@code{httpcode} provides functionality for finding and
20965 explaining the meaning of @code{HTTP} status codes. Functions are included for
20966 searching for codes by full or partial number, by message, and to get
20967 appropriate dog and cat images for many status codes.")
20968 (license license:expat)))
20969
20970 (define-public r-latex2exp
20971 (package
20972 (name "r-latex2exp")
20973 (version "0.4.0")
20974 (source (origin
20975 (method url-fetch)
20976 (uri (cran-uri "latex2exp" version))
20977 (sha256
20978 (base32
20979 "12nbcgfmv13k6sc6m326ras9bcvy380b7rxcxphn06r3cfkby0zw"))))
20980 (build-system r-build-system)
20981 (propagated-inputs
20982 `(("r-stringr" ,r-stringr)
20983 ("r-magrittr", r-magrittr)))
20984 (home-page "https://github.com/stefano-meschiari/latex2exp/")
20985 (synopsis "Use LaTeX expressions in plots")
20986 (description "@code{latex2exp} parses and converts LaTeX math formulas to
20987 R's plotmath expressions, used to enter mathematical formulas and symbols to be
20988 rendered as text, axis labels, etc. throughout R's plotting system.")
20989 (license license:expat)))
20990
20991 (define-public r-oai
20992 (package
20993 (name "r-oai")
20994 (version "0.3.0")
20995 (source (origin
20996 (method url-fetch)
20997 (uri (cran-uri "oai" version))
20998 (sha256
20999 (base32
21000 "1ipw9bq3ra66d1ddj1rylyyd20mlcb2i7phzhywra53s1fdifq1g"))))
21001 (build-system r-build-system)
21002 (propagated-inputs
21003 `(("r-xml2" ,r-xml2)
21004 ("r-httr" ,r-httr)
21005 ("r-plyr" ,r-plyr)
21006 ("r-stringr" ,r-stringr)
21007 ("r-tibble" ,r-tibble)))
21008 (home-page "https://github.com/ropensci/oai/")
21009 (synopsis "General purpose OAI-PMH services client")
21010 (description "@code{oai} provides a general purpose client to work with
21011 any @dfn{Open Archives Initiative Protocol for 'Metadata' Harvesting} (OAI-PMH)
21012 service. Functions are provided to work with the OAI-PMH verbs:
21013 @code{GetRecord}, @code{Identify}, @code{ListIdentifiers},
21014 @code{ListMetadataFormats}, @code{ListRecords}, and @code{ListSets}.")
21015 (license license:expat)))
21016
21017 (define-public r-argon2
21018 (package
21019 (name "r-argon2")
21020 (version "0.2-0")
21021 (source
21022 (origin
21023 (method url-fetch)
21024 (uri (cran-uri "argon2" version))
21025 (sha256
21026 (base32
21027 "0kqn06rpb39jlzizjlnc5c44mfic8llrshxn7ljgmyj35lbqwxqh"))))
21028 (properties `((upstream-name . "argon2")))
21029 (build-system r-build-system)
21030 (home-page "https://github.com/wrathematics/argon2")
21031 (synopsis "Secure password hashing based on the argon2 algorithm")
21032 (description
21033 "This package provides utilities for secure password hashing via the
21034 argon2 algorithm.")
21035 (license license:bsd-2)))
21036
21037 (define-public r-getpass
21038 (package
21039 (name "r-getpass")
21040 (version "0.2-2")
21041 (source
21042 (origin
21043 (method url-fetch)
21044 (uri (cran-uri "getPass" version))
21045 (sha256
21046 (base32
21047 "03ydafhh0sk3rcnpr3paajyji64x2ddp6p814p9mvbmyrblcgzcc"))))
21048 (properties `((upstream-name . "getPass")))
21049 (build-system r-build-system)
21050 (propagated-inputs
21051 `(("r-rstudioapi" ,r-rstudioapi)))
21052 (home-page "https://github.com/wrathematics/getPass")
21053 (synopsis "Masked user input")
21054 (description
21055 "This package provides a micro-package for reading \"passwords\", i.e.
21056 reading user input with masking, so that the input is not displayed as it is
21057 typed. Currently, RStudio, the command line (every OS), and any platform
21058 where tcltk is present are supported.")
21059 (license license:bsd-2)))
21060
21061 (define-public r-remoter
21062 (package
21063 (name "r-remoter")
21064 (version "0.4-0")
21065 (source
21066 (origin
21067 (method url-fetch)
21068 (uri (cran-uri "remoter" version))
21069 (sha256
21070 (base32
21071 "1a7m63l8phv5jnazvdqdrqkaqjwqzaac5y4jm2jn0ypy4n8jvkfl"))))
21072 (properties `((upstream-name . "remoter")))
21073 (build-system r-build-system)
21074 (propagated-inputs
21075 `(("r-argon2" ,r-argon2)
21076 ("r-getpass" ,r-getpass)
21077 ("r-pbdzmq" ,r-pbdzmq)
21078 ("r-png" ,r-png)))
21079 (home-page "https://github.com/RBigData/remoter")
21080 (synopsis "Control a remote R session from a local one")
21081 (description
21082 "This package provides a set of utilities for client/server computing
21083 with R, controlling a remote R session (the server) from a local one (the
21084 client).")
21085 (license license:bsd-2)))
21086
21087 (define-public r-asd
21088 (package
21089 (name "r-asd")
21090 (version "2.2")
21091 (source
21092 (origin
21093 (method url-fetch)
21094 (uri (cran-uri "asd" version))
21095 (sha256
21096 (base32
21097 "0p3r4qjam3sl3rpcilb0pgx4xx3ly71xqnvkv31vzjs885lgxz4l"))))
21098 (properties `((upstream-name . "asd")))
21099 (build-system r-build-system)
21100 (propagated-inputs
21101 `(("r-mvtnorm" ,r-mvtnorm)))
21102 (home-page "https://cran.r-project.org/web/packages/asd")
21103 (synopsis "Simulations for Adaptive Seamless Designs")
21104 (description
21105 "This package provdes means to run simulations for adaptive seamless
21106 designs with and without early outcomes for treatment selection and
21107 subpopulation type designs.")
21108 (license license:gpl3)))
21109
21110 (define-public r-nbconvertr
21111 (package
21112 (name "r-nbconvertr")
21113 (version "1.3.2")
21114 (source
21115 (origin
21116 (method url-fetch)
21117 (uri (cran-uri "nbconvertR" version))
21118 (sha256
21119 (base32
21120 "0yhmz177r1miain65vspclahhz8cg7638ldbpsw8ylgf7a60l0sg"))))
21121 (properties `((upstream-name . "nbconvertR")))
21122 (build-system r-build-system)
21123 (inputs
21124 `(("jupyter" ,python-nbconvert)
21125 ("pandoc" ,ghc-pandoc)))
21126 (home-page "https://cran.r-project.org/web/packages/nbconvertR/")
21127 (synopsis "Vignette engine wrapping Jupyter notebooks")
21128 (description
21129 "This package calls the Jupyter script @code{nbconvert} to create
21130 vignettes from notebooks. Those notebooks (@code{.ipynb} files) are files
21131 containing rich text, code, and its output. Code cells can be edited and
21132 evaluated interactively.")
21133 (license license:gpl3)))
21134
21135 (define-public r-bridgesampling
21136 (package
21137 (name "r-bridgesampling")
21138 (version "1.0-0")
21139 (source
21140 (origin
21141 (method url-fetch)
21142 (uri (cran-uri "bridgesampling" version))
21143 (sha256
21144 (base32
21145 "1awhvv0v42w2q6llqi1wqpaiv5zx74cqzigdsvphy2jfp8ajw64y"))))
21146 (properties
21147 `((upstream-name . "bridgesampling")))
21148 (build-system r-build-system)
21149 (propagated-inputs
21150 `(("r-brobdingnag" ,r-brobdingnag)
21151 ("r-coda" ,r-coda)
21152 ("r-matrix" ,r-matrix)
21153 ("r-mvtnorm" ,r-mvtnorm)
21154 ("r-scales" ,r-scales)
21155 ("r-stringr" ,r-stringr)))
21156 (native-inputs
21157 `(("r-knitr" ,r-knitr)))
21158 (home-page "https://github.com/quentingronau/bridgesampling")
21159 (synopsis "Bridge sampling for marginal likelihoods and Bayes factors")
21160 (description
21161 "This package provides functions for estimating marginal likelihoods,
21162 Bayes factors, posterior model probabilities, and normalizing constants in
21163 general, via different versions of bridge sampling.")
21164 (license license:gpl2+)))
21165
21166 (define-public r-tea
21167 (package
21168 (name "r-tea")
21169 (version "1.1")
21170 (source
21171 (origin
21172 (method url-fetch)
21173 (uri (cran-uri "tea" version))
21174 (sha256
21175 (base32
21176 "0ql7lrxk0ihm49kqsvz79ig8i54rwiy9nxav4v9hy72j9kj5bgjn"))))
21177 (properties
21178 `((upstream-name . "tea")))
21179 (build-system r-build-system)
21180 (propagated-inputs
21181 `(("r-matrix" ,r-matrix)))
21182 (home-page "https://cran.r-project.org/web/packages/tea/")
21183 (synopsis "Threshold estimation approaches")
21184 (description
21185 "This package provides different approaches for selecting the threshold
21186 in generalized Pareto distributions. Most of them are based on minimizing the
21187 AMSE-criterion or atleast by reducing the bias of the assumed GPD-model.
21188 Others are heuristically motivated by searching for stable sample paths, i.e.
21189 a nearly constant region of the tail index estimator with respect to k, which
21190 is the number of data in the tail. The third class is motivated by graphical
21191 inspection. In addition, a sequential testing procedure for GPD-GoF-tests
21192 is also implemented here.")
21193 (license license:gpl3)))
21194
21195 (define-public r-awsmethods
21196 (package
21197 (name "r-awsmethods")
21198 (version "1.1-1")
21199 (source
21200 (origin
21201 (method url-fetch)
21202 (uri (cran-uri "awsMethods" version))
21203 (sha256
21204 (base32
21205 "0hbmrcpdyg15zg4rysscsmxpxlpy0dkxx2aa63qibq7l1k14v4sh"))))
21206 (properties
21207 `((upstream-name . "awsMethods")))
21208 (build-system r-build-system)
21209 (home-page "http://www.wias-berlin.de/software/imaging/")
21210 (synopsis "Class and methods definitions")
21211 (description
21212 "This package defines the generic method @code{extract} and provides
21213 @code{openMP} support as needed in several packages like
21214 @code{aws}, @code{adimpro}, @code{fmri}, and @code{dwi}.")
21215 (license license:gpl2+)))
21216
21217 (define-public r-aws
21218 (package
21219 (name "r-aws")
21220 (version "2.4-2")
21221 (source
21222 (origin
21223 (method url-fetch)
21224 (uri (cran-uri "aws" version))
21225 (sha256
21226 (base32
21227 "1czlsy64nx6j7h1smgb561yyv3f98pwqwglk77yla4mx3fp14bvq"))))
21228 (properties
21229 `((upstream-name . "aws")))
21230 (build-system r-build-system)
21231 (propagated-inputs
21232 `(("r-awsmethods" ,r-awsmethods)
21233 ("r-gsl" ,r-gsl)))
21234 (native-inputs
21235 `(("gfortran" ,gfortran)))
21236 (home-page "https://cran.r-project.org/web/packages/aws/")
21237 (synopsis "Adaptive weights smoothing")
21238 (description
21239 "This package provides a collection of R-functions implementing adaptive
21240 smoothing procedures in 1D, 2D and 3D. This includes the
21241 Propagation-Separation approach to adaptive smoothing, the @dfn{Intersecting
21242 Confidence Intervals} (ICI), variational approaches, and a non-local means
21243 filter.")
21244 (license license:gpl2+)))
21245
21246 (define-public r-sgloptim
21247 (package
21248 (name "r-sgloptim")
21249 (version "1.3.8")
21250 (source
21251 (origin
21252 (method url-fetch)
21253 (uri (cran-uri "sglOptim" version))
21254 (sha256
21255 (base32
21256 "15bkkvgp9v9vsp65wps48g3c2fa0fj1025hbrziywq14j7wayyjr"))))
21257 (properties
21258 `((upstream-name . "sglOptim")))
21259 (build-system r-build-system)
21260 (propagated-inputs
21261 `(("r-bh" ,r-bh)
21262 ("r-doparallel" ,r-doparallel)
21263 ("r-foreach" ,r-foreach)
21264 ("r-matrix" ,r-matrix)
21265 ("r-rcpp" ,r-rcpp)
21266 ("r-rcpparmadillo" ,r-rcpparmadillo)
21267 ("r-rcppprogress" ,r-rcppprogress)))
21268 (native-inputs
21269 `(("r-knitr" ,r-knitr)))
21270 (home-page "https://github.com/nielsrhansen/sglOptim")
21271 (synopsis "Generic sparse group Lasso solver")
21272 (description
21273 "This package provides a fast generic solver for sparse group lasso
21274 optimization problems. The loss (objective) function must be defined in a C++
21275 module. The optimization problem is solved using a coordinate gradient
21276 descent algorithm. Convergence of the algorithm is established and the
21277 algorithm is applicable to a broad class of loss functions. Use of parallel
21278 computing for cross validation and subsampling is supported through the
21279 @code{foreach} and @code{doParallel} packages.")
21280 (license license:gpl2+)))
21281
21282 (define-public r-grouped
21283 (package
21284 (name "r-grouped")
21285 (version "0.6-0")
21286 (source
21287 (origin
21288 (method url-fetch)
21289 (uri (cran-uri "grouped" version))
21290 (sha256
21291 (base32
21292 "1glxgacpwk7yjbkwg5ci6bmb2il6hf5zhydwi5bbq6hc032m9976"))))
21293 (properties
21294 `((upstream-name . "grouped")))
21295 (build-system r-build-system)
21296 (propagated-inputs
21297 `(("r-mass" ,r-mass)))
21298 (home-page "https://cran.r-project.org/web/packages/grouped/")
21299 (synopsis "Regression analysis of grouped and coarse data")
21300 (description
21301 "This package provides regression models for grouped and coarse data,
21302 under the coarsened at random assumption.")
21303 (license license:gpl2+)))
21304
21305 (define-public r-stam
21306 (package
21307 (name "r-stam")
21308 (version "0.0-1")
21309 (source
21310 (origin
21311 (method url-fetch)
21312 (uri (cran-uri "stam" version))
21313 (sha256
21314 (base32
21315 "1x1j45fir64kffny0nssb2hwn4rcp8gd2cjv6fw4yy0l4d0xi5iv"))))
21316 (properties
21317 `((upstream-name . "stam")))
21318 (build-system r-build-system)
21319 (propagated-inputs
21320 `(("r-np" ,r-np)
21321 ("r-sp" ,r-sp)))
21322 (home-page "https://cran.r-project.org/web/packages/stam")
21323 (synopsis "Spatio-temporal analysis and modelling")
21324 (description
21325 "This package provides various methods to conduct Spatio-Temporal
21326 Analysis and Modelling, including Exploratory Spatio-Temporal Analysis and
21327 Inferred Spatio-Temporal Modelling.")
21328 (license license:gpl2+)))
21329
21330 (define-public r-dcv
21331 (package
21332 (name "r-dcv")
21333 (version "0.1.1")
21334 (source
21335 (origin
21336 (method url-fetch)
21337 (uri (cran-uri "dcv" version))
21338 (sha256
21339 (base32
21340 "12c716x8dnxnqksibpmyysqp2axggvy9dpd55s9bhnsvqvi6dshj"))))
21341 (properties
21342 `((upstream-name . "dcv")))
21343 (build-system r-build-system)
21344 (propagated-inputs
21345 `(("r-lmtest" ,r-lmtest)))
21346 (home-page "https://cran.r-project.org/web/packages/dcv/")
21347 (synopsis "Conventional cross-validation statistics for climate-growth model")
21348 (description
21349 "This package performs several conventional cross-validation statistical
21350 methods for climate-growth model in the climate reconstruction from tree
21351 rings, including Sign Test statistic, Reduction of Error statistic, Product
21352 Mean Test, Durbin-Watson statistic etc.")
21353 (license license:gpl2)))
21354
21355 (define-public r-rcdd
21356 (package
21357 (name "r-rcdd")
21358 (version "1.2-2")
21359 (source
21360 (origin
21361 (method url-fetch)
21362 (uri (cran-uri "rcdd" version))
21363 (sha256
21364 (base32
21365 "0pzpbqnlgzr240iici70278py5wnbbxkzlgn112f9wv5ga3riric"))))
21366 (properties
21367 `((upstream-name . "rcdd")))
21368 (build-system r-build-system)
21369 (inputs
21370 `(("gmp" ,gmp)))
21371 (home-page "https://www.stat.umn.edu/geyer/rcdd/")
21372 (synopsis "Computational geometry")
21373 (description
21374 "This package converts back and forth between two representations of a
21375 convex polytope: as solution of a set of linear equalities and inequalities
21376 and as convex hull of set of points and rays. Also does linear programming
21377 and redundant generator elimination. All functions can use exact
21378 infinite-precision rational arithmetic.")
21379 (license license:gpl2)))
21380
21381 (define-public r-rxnat
21382 (package
21383 (name "r-rxnat")
21384 (version "1.0.8")
21385 (source
21386 (origin
21387 (method url-fetch)
21388 (uri (cran-uri "Rxnat" version))
21389 (sha256
21390 (base32
21391 "12xcs2l6vn50bwzfmv60j1qahjw2npfm1a3yjhffcxzh6p8chwbg"))))
21392 (properties
21393 `((upstream-name . "Rxnat")))
21394 (build-system r-build-system)
21395 (propagated-inputs
21396 `(("r-httr" ,r-httr)
21397 ("r-rcurl" ,r-rcurl)))
21398 (native-inputs
21399 `(("r-knitr" ,r-knitr)))
21400 (home-page "https://cran.r-project.org/web/packages/Rxnat/")
21401 (synopsis "Queries and extracts images from neuroimaging datasets")
21402 (description
21403 "This package allows communication with the Extensible Neuroimaging
21404 Archive Toolkit. Rxnat uses the XNAT REST API to perform data queries and
21405 download images.")
21406 (license license:gpl2)))